diff --git a/CommonData.py b/CommonData.py index f721e9a..e30af36 100644 --- a/CommonData.py +++ b/CommonData.py @@ -62,39 +62,35 @@ def __init__(self): self.Land_app = { 'cmpLandDies':{"Name":"Compost application diesel use","amount":0.8,"unit":'L/Mg compost'}, - 'NO3runoff':{"Name":"Nitrogen runoff to surface water","amount":0.15,"unit":'kg N/kg N applied', - 'uncertainty_type':5,'loc': 0.15 ,'scale':0.05,'minimum':0.0,'maximum':0.30}, + 'NO3':{"Name":"Fraction of N content that is emitted as NO3 ","amount":0.20,"unit":None, + 'uncertainty_type':4,'minimum':0.03,'maximum':0.87}, - 'NO3leach':{"Name":"Nitrogen leaching to ground water","amount":0.20,"unit":'kg N/kg N applied', - 'uncertainty_type':5,'loc': 0.20 ,'scale':0.15,'minimum':0.07,'maximum':0.60}, + 'frac_gw':{"Name":"Fraction of NO3 that is emitted to groundwater","amount":0.50,"unit":None, + 'uncertainty_type':4,'minimum':0.30,'maximum':0.90}, 'MFEN':{"Name":"Nitrogen mineral fertilizer equivalent","amount":0.6,"unit":'kg N/kg N applied', 'uncertainty_type':4 ,'minimum':0.2,'maximum':0.8}, 'MFEP':{"Name":"Phosphorus mineral fertilizer equivalent","amount":0.9,"unit":'kg N/kg N applied', - 'uncertainty_type':4,'minimum':0.6,'maximum':1}, + 'uncertainty_type':4,'minimum':0.8,'maximum':1}, 'MFEK':{"Name":"Potassium mineral fertilizer equivalent","amount":0.9,"unit":'kg N/kg N applied', - 'uncertainty_type':4,'minimum':0.6,'maximum':1}, + 'uncertainty_type':4,'minimum':0.8,'maximum':1}, 'DslAppN':{"Name":"Fertilizer - Diesel fuel for application per kg N","amount":0.00229 ,"unit":'L/kg'}, 'DslAppP':{"Name":"Fertilizer - Diesel fuel for application per kg P","amount":0.00186 ,"unit":'L/kg'}, 'DslAppK':{"Name":"Fertilizer - Diesel fuel for application per kg K","amount":0.00125 ,"unit":'L/kg'}, - 'fert_NO3Run':{"Name":"Fertilizer - Nitrate runoff to surface water","amount":10 ,"unit":'%', - 'uncertainty_type':5,'loc': 10,'scale':10 ,'minimum':5,'maximum':40}, + 'R_NO3':{"Name":"Ratio of NO3 emission from fertilizer to compost ","amount":0.50 ,"unit":None, + 'uncertainty_type':4 ,'minimum':0.35,'maximum':.70}, - 'fert_NO3Leach':{"Name":"Fertilizer - Nitrate leaching to ground water","amount":10 ,"unit":'%', - 'uncertainty_type':5,'loc': 10,'scale':10 ,'minimum':5,'maximum':40}, - 'fert_N2O':{"Name":"Fertilizer - N released as N2O","amount":1.8 ,"unit":'%', - 'uncertainty_type':5,'loc': 1.8 ,'scale':0.04,'minimum':1.2,'maximum':2.5}, + 'R_N2O':{"Name":"Ratio of N2O emission from fertilizer to compost","amount":0.60 ,"unit":None, + 'uncertainty_type':4,'minimum':0.50,'maximum':0.85}, - 'fert_NH3':{"Name":"Fertilizer - N as NH3","amount":25 ,"unit":'%', - 'uncertainty_type':5,'loc': 25 ,'scale':10,'minimum':1,'maximum':50}, + 'R_NH3':{"Name":"Ratio of NH3 emission from fertilizer to compost","amount":0.25 ,"unit":None, + 'uncertainty_type':4,'minimum':0.20,'maximum':0.30}, - 'fert_NH3Evap':{"Name":"Fertilizer - NH3 evaporated","amount":5 ,"unit":'%', - 'uncertainty_type':5,'loc': 5,'scale':1,'minimum':3,'maximum':7} } ### Monte_carlo diff --git a/CommonData_for_Sensitivity_Analysis.py b/CommonData_for_Sensitivity_Analysis.py new file mode 100644 index 0000000..af828e5 --- /dev/null +++ b/CommonData_for_Sensitivity_Analysis.py @@ -0,0 +1,92 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Jul 1 20:05:32 2019 + +@author: msardar2 +""" +import pandas as pd +import numpy as np +from MC import * +class CommonData(MC): + def __init__(self): +### Materials + self.Index = ['Unit','Yard_Trimmings_Leaves', 'Yard_Trimmings_Grass', 'Yard_Trimmings_Branches', 'Food_Waste_Vegetable', 'Food_Waste_Non_Vegetable', + 'Wood', 'Wood_Other', 'Textiles', 'Rubber_Leather', 'Newsprint', 'Corr_Cardboard', 'Office_Paper', 'Magazines', 'third_Class_Mail', + 'Folding_Containers', 'Paper_Bags', 'Mixed_Paper', 'Paper_Non_recyclable', 'HDPE_Translucent_Containers', 'HDPE_Pigmented_Containers', + 'PET_Containers', 'Plastic_Other_1_Polypropylene', 'Plastic_Other_2', 'Mixed_Plastic', 'Plastic_Film', 'Plastic_Non_Recyclable', + 'Ferrous_Cans', 'Ferrous_Metal_Other', 'Aluminum_Cans', 'Aluminum_Foil', 'Aluminum_Other', 'Ferrous_Non_recyclable', 'Al_Non_recyclable', + 'Glass_Brown', 'Glass_Green', 'Glass_Clear', 'Mixed_Glass', 'Glass_Non_recyclable', 'Misc_Organic', 'Misc_Inorganic', 'E_waste', + 'Aerobic_Residual', 'Anaerobic_Residual', 'Bottom_Ash', 'Fly_Ash', 'Diapers_and_sanitary_products', 'Waste_Fraction_47', 'Waste_Fraction_48', + 'Waste_Fraction_49', 'Waste_Fraction_50', 'Waste_Fraction_51', 'Waste_Fraction_52', 'Waste_Fraction_53', 'Waste_Fraction_54', 'Waste_Fraction_55', + 'Waste_Fraction_56', 'Waste_Fraction_57', 'Waste_Fraction_58', 'Waste_Fraction_59', 'Waste_Fraction_60'] + +### Molecular Weights + self.MW= {"C":{"Name":"Carbon MW","amount":12.011,"unit":"g/mol","Reference":None}, + "P":{"Name":"Phosphorus MW","amount":30.974,"unit":"g/mol","Reference":None}, + "H":{"Name":"Hydrogen MW","amount":1.008,"unit":"g/mol","Reference":None}, + "N":{"Name":"Nitrogen MW","amount":14.007,"unit":"g/mol","Reference":None}, + "O":{"Name":"Oxygen MW","amount":15.999,"unit":"g/mol","Reference":None}, + "K":{"Name":"K MW","amount":39.098,"unit":"g/mol","Reference":None}, + "S":{"Name":"S MW","amount":32.065,"unit":None,"Reference":None}, + "Cl":{"Name":"Cl MW","amount":35.453,"unit":None,"Reference":None}, + "H2":{"Name":"H2 MW","amount":2 * 1.008 ,"unit":"g/mol","Reference":None}, + "CO":{"Name":"CO MW","amount":12.011+15.999 ,"unit":"g/mol","Reference":None}, + "CO2":{"Name":"CO2 MW","amount":15.999 * 2 +12.011 ,"unit":"g/mol","Reference":None}, + "CH4":{"Name":"CH4 MW","amount":12.011 + 4 * 1.008,"unit":"g/mol","Reference":None}, + "H2O":{"Name":"H2O MW","amount":15.999 + 2 * 1.008,"unit":"g/mol","Reference":None}, + "SO2":{"Name":"SO2 MW","amount":2 * 15.999 + 32.065,"unit":"g/mol","Reference":None}, + "HCl":{"Name":"HCl MW","amount": 35.453 + 1.008 ,"unit":"g/mol","Reference":None}, + "NOx":{"Name":"HCl MW","amount": 14.007 + 2 * 15.999 ,"unit":"g/mol","Reference":None}, + "Hydrocarbons":{"Name":"Hydrocarbons MW","amount":86.18,"unit":None,"Reference":None}, + "Nitrous_Oxide":{"Name":"Nitrous_Oxide MW","amount": 2 * 14.007 + 15.999 ,"unit":None,"Reference":None}, + "Ammonia":{"Name":"Ammonia MW","amount": 14.007 + 3 * 1.008 ,"unit":None,"Reference":None}, + "Ammonium":{"Name":"Ammonium MW","amount": 14.007 + 4 * 1.008 ,"unit":None,"Reference":None}, + "Nitrate":{"Name":"Ammonia MW","amount": 14.007 + 3 * 15.999 ,"unit":None,"Reference":None} + } + +### Unit Conversion + self.UC = {'BTU_KJ':{"Name":"BTU to KJ","amount":1.055,"unit":"kJ","Reference":None}, + 'KJ_BTU':{"Name":"KJ to BTU","amount":1 / 1.055,"unit":"BTU","Reference":None}} + + +### STP Measurements + self.STP = {'mole_to_L':{"Name":"mole to Liter","amount":22.41 ,"unit":"L","Reference":None}, + 'm3CH4_to_kg':{"Name":"m3 CH4 to kg CH4","amount": 0.71589 ,"unit":"kg","Reference":None}, + 'm3CO2_to_kg':{"Name":"m3 CO2 to kg","amount": self.MW['CO2']['amount']/22.41 ,"unit":"kg","Reference":None}, + "Density_Air":{"Name":"Density_Air","amount":22.4,"unit":"L/mol","Reference":None} + } + + self.Evap_heat = {"Water_Evap_Heat":{"Name":"Water_Evap_Heat","amount":2.26,"unit":"MJ/Kg","Reference":None}} + +### Land application inputs + self.Land_app = { + 'cmpLandDies':{"Name":"Compost application diesel use","amount":0.8,"unit":'L/Mg compost'}, + + 'NO3':{"Name":"Fraction of N content that is emitted as NO3 ","amount":0.20,"unit":None}, + + 'frac_gw':{"Name":"Fraction of NO3 that is emitted to groundwater","amount":0.50,"unit":None}, + + 'MFEN':{"Name":"Nitrogen mineral fertilizer equivalent","amount":0.6,"unit":'kg N/kg N applied','list':np.linspace(0,1,10).tolist()*10}, + + 'MFEP':{"Name":"Phosphorus mineral fertilizer equivalent","amount":0.9,"unit":'kg N/kg N applied'}, + + 'MFEK':{"Name":"Potassium mineral fertilizer equivalent","amount":0.9,"unit":'kg N/kg N applied'}, + + 'DslAppN':{"Name":"Fertilizer - Diesel fuel for application per kg N","amount":0.00229 ,"unit":'L/kg'}, + 'DslAppP':{"Name":"Fertilizer - Diesel fuel for application per kg P","amount":0.00186 ,"unit":'L/kg'}, + 'DslAppK':{"Name":"Fertilizer - Diesel fuel for application per kg K","amount":0.00125 ,"unit":'L/kg'}, + + 'R_NO3':{"Name":"Ratio of NO3 emission from fertilizer to compost ","amount":0.50 ,"unit":None}, + + + 'R_N2O':{"Name":"Ratio of N2O emission from fertilizer to compost","amount":0.60 ,"unit":None}, + + 'R_NH3':{"Name":"Ratio of NH3 emission from fertilizer to compost","amount":0.25 ,"unit":None }, + + } + +### Monte_carlo + def setup_MC(self,seed=None): + self.CommonData_Input_list = {'Land_app':self.Land_app} + super().__init__(self.CommonData_Input_list) + super().setup_MC(seed) \ No newline at end of file diff --git a/Compost_analysis.py b/Compost_analysis.py new file mode 100644 index 0000000..b7ecc2a --- /dev/null +++ b/Compost_analysis.py @@ -0,0 +1,233 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Sep 1 21:54:07 2019 + +@author: msmsa +""" + +import numpy as np +import pandas as pd +from Compost_input import * +from CommonData import * +from stats_arrays import * +from flow import * + +class compost: + def __init__(self): + self.CommonData = CommonData() + self.AD_input= AD_input() + ### Read Material properties + self.Material_Properties=pd.read_excel("Material properties.xlsx",index_col = 'Materials') + self.Material_Properties.fillna(0,inplace=True) + self.process_data=pd.read_excel("Material properties - process modles.xlsx", sheet_name = 'AD', index_col = 'Parameter') + self.process_data.fillna(0,inplace=True) + self.Index = ['Compost'] + self.Assumed_Comp = pd.Series(self.AD_input.Assumed_Comp,index=self.Index) + ### Mass Flows + def calc(self): + self.LCI = pd.DataFrame(index = self.Index) +### Initial mass + self.Compost = flow() + self.Compost.init_flow() + +### Primary Pre_screen + self.S1_unders,self.S1_overs=AD_screen(self.Input,self.process_data['Percent screened out in primary pre-screening (not sent to reactor)'][3:]/100, self.Material_Properties[4:],self.LCI) + +### Secondary Pre_screen + self.S2_to_curing,self.S2_residuls=AD_screen(self.S1_overs,self.process_data['Percent screened out in secondary pre-screening (residual not sent to composting)'][3:]/100, self.Material_Properties[4:],self.LCI) + # Dsl use for grinding + add_LCI('Diesel Total', self.S2_to_curing.data['mass']/1000 *self.AD_input.shredding['Mtgp']['amount']*self.AD_input.shredding['Mtgf']['amount'] ,self.LCI) + + add_LCI('Residual', self.S2_residuls.data['mass']/1000 ,self.LCI) + + +### Adding Water + water_flow = (self.S1_unders.data['mass']*self.AD_input.Material_Properties['ad_mcReactor']['amount'] - self.S1_unders.data['moist_cont'])\ + /(1-self.AD_input.Material_Properties['ad_mcReactor']['amount']) + self.to_reactor = add_water_AD(self.S1_unders,water_flow,self.Material_Properties[4:]) + +### Reactor + self.digestate = Reactor(self.to_reactor,self.CommonData,self.process_data[3:],self.AD_input,self.Material_Properties[4:],self.AD_input.emission_factor,self.LCI) + +### Dewatering + self.Dig_to_Curing_1,self.liq_rem,self.liq_treatment_vol = Dewater(self.digestate,self.CommonData,self.process_data[3:],self.AD_input,self.Material_Properties[4:],water_flow,self.Assumed_Comp,self.LCI) + +### Mix Dig_to_Curing_1 and S2_to_curing + self.Dig_to_Curing = AD_mix(self.Dig_to_Curing_1,self.S2_to_curing,self.Material_Properties[4:]) + +### Curing + self.compot_to_ps,self.WC_SC = AD_curing(self.Dig_to_Curing,self.to_reactor,self.CommonData,self.process_data[3:],self.AD_input,self.Assumed_Comp,self.Material_Properties[4:],self.LCI) + +### Post_screen + self.FinalCompost = AD_Post_screen(self.compot_to_ps,self.WC_SC,self.AD_input,self.Assumed_Comp,self.Material_Properties[4:],self.LCI) + +### POTW + POTW (self.liq_treatment_vol,self.liq_rem,self.to_reactor,self.Dig_to_Curing,self.FinalCompost,self.Index,self.AD_input,self.Assumed_Comp,self.Material_Properties[4:],self.CommonData,self.LCI) + +### AD Diesel and electricity use (general) + add_LCI('Diesel Total', self.AD_input.Fac_Energy['Dsl_facility']['amount'] ,self.LCI) + add_LCI('Electricity Use', self.AD_input.Fac_Energy['elec_facility']['amount'] ,self.LCI) + add_LCI('Electricity Use', self.AD_input.Fac_Energy['elec_preproc']['amount'] ,self.LCI) + +### Compost use + AD_compost_use(self.FinalCompost,self.CommonData,self.process_data[3:],self.Material_Properties[4:],self.Assumed_Comp,self.AD_input,self.LCI) + +### Transportation Compost + add_LCI('Full_Medium-duty truck transport of compost to land application', self.FinalCompost.data['mass'] * self.AD_input.Land_app['distLand']['amount'] ,self.LCI) + add_LCI('Empty_Medium-duty truck transport return from land application', self.FinalCompost.data['mass']/1000 / self.AD_input.Land_app['land_payload']['amount']* self.AD_input.Land_app['distLand']['amount'] ,self.LCI) + +### process_data update + def create_uncertainty_from_inputs(self,seed=None): + self.process_data_1=pd.read_excel("Material properties - process modles.xlsx", sheet_name = 'AD', index_col = 'Parameter') + self.uncertain_dict = dict() + cols = list(self.process_data_1) + for col in range(0,len(cols),7): + self.uncertain_dict[cols[col]] = list() + for val in range(len(self.process_data[cols[col]][3:])): + self.uncertain_dict[cols[col]].append(dict()) + if not np.isnan(self.process_data_1[cols[col+1]][3+val]): + self.uncertain_dict[cols[col]][val]['uncertainty_type'] = int(self.process_data_1[cols[col+1]][3+val]) + self.uncertain_dict[cols[col]][val]['loc'] = self.process_data_1[cols[col+2]][3+val] + self.uncertain_dict[cols[col]][val]['scale'] = self.process_data_1[cols[col+3]][3+val] + self.uncertain_dict[cols[col]][val]['shape'] = self.process_data_1[cols[col+4]][3+val] + self.uncertain_dict[cols[col]][val]['minimum'] = self.process_data_1[cols[col+5]][3+val] + self.uncertain_dict[cols[col]][val]['maximum'] = self.process_data_1[cols[col+6]][3+val] + else: + self.uncertain_dict[cols[col]][val]['uncertainty_type'] = 1 + + self.variables = dict() + self.rng = dict() + for key in self.uncertain_dict.keys(): + self.variables[key] = UncertaintyBase.from_dicts(*self.uncertain_dict[key]) + self.rng[key] = MCRandomNumberGenerator(self.variables[key],seed=seed) + + def uncertainty_input_next(self): + data = dict() + for key in self.rng.keys(): + data[key] = self.rng[key].next() + for val in range(len(self.process_data[key][3:])): + if not np.isnan(data[key][val]): + self.process_data.at[(self.process_data_1.index.values[3+val]),key] = data[key][val] + + def setup_MC(self,seed=None): + self.AD_input.setup_MC(seed) + #self.create_uncertainty_from_inputs() + + def MC_calc(self): + input_list = self.AD_input.gen_MC() + #self.uncertainty_input_next() + self.calc() + return(input_list) + + def report(self): +### Output + self.AD = {} + Waste={} + Technosphere={} + Biosphere={} + self.AD ["process name"] = 'COMP' + self.AD ["Waste"] = Waste + self.AD ["Technosphere"] = Technosphere + self.AD ["Biosphere"] = Biosphere + + for x in [Waste,Technosphere, Biosphere]: + for y in self.Index: + x[y]={} + + + for y in self.Index: +### Output Waste Database + Waste[y]['Other_Residual'] = self.LCI['Residual'][y] + +### Output Technospphere Database + Technosphere[y][('Technosphere', 'Electricity_production')] = self.LCI['Electricity Production'][y] + Technosphere[y][('Technosphere', 'Electricity_consumption')] = self.LCI['Electricity Use'][y] + Technosphere[y][('Technosphere', 'Equipment_Diesel')] = self.LCI['Diesel Total'][y] + Technosphere[y][('Technosphere', 'Internal_Process_Transportation_Heavy_Duty_Diesel_Truck')] = self.LCI['Full_Total heavy duty truck tranport'][y] + Technosphere[y][('Technosphere', 'Internal_Process_Transportation_Medium_Duty_Diesel_Truck')] = self.LCI['Full_Medium-duty truck transport of compost to land application'] [y] + Technosphere[y][('Technosphere', 'Empty_Return_Heavy_Duty_Diesel_Truck')] = self.LCI['Empty_Total heavy duty truck empty return'][y] + Technosphere[y][('Technosphere', 'Empty_Return_Medium_Duty_Diesel_Truck')] = self.LCI['Empty_Medium-duty truck transport return from land application'][y] + + if self.AD_input.AD_operation['fertOff']['amount'] == 1 and self.AD_input.AD_operation['choice_BU']['amount'] == 1: + Technosphere[y][('Technosphere', 'Nitrogen_Fertilizer')] = self.LCI['Nitrogen Mineral Fertilizer Equivalent mass to offset'][y] + Technosphere[y][('Technosphere', 'Phosphorous_Fertilizer')] = self.LCI['Phosphorous Mineral Fertilizer Equivalent mass to offset'][y] + Technosphere[y][('Technosphere', 'Potassium_Fertilizer')] = self.LCI['Potassium Mineral Fertilizer Equivalent mass to offset'][y] + else: + Technosphere[y][('Technosphere', 'Nitrogen_Fertilizer')] = 0 + Technosphere[y][('Technosphere', 'Phosphorous_Fertilizer')] = 0 + Technosphere[y][('Technosphere', 'Potassium_Fertilizer')] = 0 + + if self.AD_input.AD_operation['peatOff']['amount'] == 1 and self.AD_input.AD_operation['choice_BU']['amount'] == 1: + Technosphere[y][('Technosphere', 'Peat')] = self.LCI['Peat Equivalent mass to offset'][y] + else: + Technosphere[y][('Technosphere', 'Peat')] = 0 + + if self.AD_input.AD_operation['choice_BU']['amount'] == 0: + Technosphere[y][('Technosphere', 'compost_to_LF')] = self.LCI['compost_to_LF'][y] + else: + Technosphere[y][('Technosphere', 'compost_to_LF')] = 0 + +### Output Biosphere Database + Biosphere[y][('biosphere3', '87883a4e-1e3e-4c9d-90c0-f1bea36f8014')]= self.LCI['Ammonia'][y] #Ammonia ('air',) + Biosphere[y][('biosphere3', 'e4e9febc-07c1-403d-8d3a-6707bb4d96e6')]= self.LCI['Direct Carbon Storage and Humus Formation'][y]# Carbon dioxide, from soil or biomass stock ('air',) + Biosphere[y][('biosphere3', 'eba59fd6-f37e-41dc-9ca3-c7ea22d602c7')]= self.LCI['CO2-biogenic emissions from digested liquids treatment'][y] + self.LCI['Carbon dioxide, non-fossil _ Curing'][y]\ + + self.LCI['Carbon dioxide, non-fossil _ Land application'][y] + self.LCI['Carbon dioxide, non-fossil (in biogas)'][y] \ + + self.LCI['Carbon dioxide, non-fossil from comubstion'][y] # Carbon dioxide, non-fossil ('air',) + Biosphere[y][('biosphere3', '2cb2333c-1599-46cf-8435-3dffce627524')]= self.LCI['Carbon monoxide (CO)'][y] # Carbon monoxide, non-fossil ('air',) + Biosphere[y][('biosphere3', '20185046-64bb-4c09-a8e7-e8a9e144ca98')]= self.LCI['Dinitrogen monoxide'][y] # Dinitrogen monoxide ('air',) + Biosphere[y][('biosphere3', 'da1157e2-7593-4dfd-80dd-a3449b37a4d8')]= self.LCI['Methane, non-fossil'][y] + self.LCI['Methane, non-fossil (unburned)'][y] \ + + self.LCI['Fugitive (Leaked) Methane'][y] # Methane, non-fossil ('air',) + Biosphere[y][('biosphere3', 'c1b91234-6f24-417b-8309-46111d09c457')]= self.LCI['Nitrogen oxides (as NO2)'][y] # Nitrogen oxides ('air',) + Biosphere[y][('biosphere3', 'd3260d0e-8203-4cbb-a45a-6a13131a5108')]= self.LCI['NMVOC, non-methane volatile organic compounds, unspecified origin'][y] + self.LCI['NMVOCs'][y]#NMVOC, non-methane volatile organic compounds, unspecified origin ('air',) + Biosphere[y][('biosphere3', '21e46cb8-6233-4c99-bac3-c41d2ab99498')]= self.LCI['PM2.5'][y] #Particulates, < 2.5 um ('air',) + Biosphere[y][('biosphere3', 'fd7aa71c-508c-480d-81a6-8052aad92646')]= self.LCI['Sulfur dioxide (SO2)'][y] # Sulfur dioxide ('air',) + Biosphere[y][('biosphere3', '8c8ffaa5-84ed-4668-ba7d-80fd0f47013f')]= self.LCI['Arsenic'][y] # Arsenic, ion ('water', 'surface water') + Biosphere[y][('biosphere3', '2c872773-0a29-4831-93b9-d49b116fa7d5')]= self.LCI['Barium'][y] # Barium ('water', 'surface water') + Biosphere[y][('biosphere3', '70d467b6-115e-43c5-add2-441de9411348')]= self.LCI['BOD'][y] # BOD5, Biological Oxygen Demand ('water', 'surface water') + Biosphere[y][('biosphere3', 'af83b42f-a4e6-4457-be74-46a87798f82a')]= self.LCI['Cadmium'][y] # Cadmium, ion ('water', 'surface water') + Biosphere[y][('biosphere3', 'e34d3da4-a3d5-41be-84b5-458afe32c990')]= self.LCI['Chromium'][y] # Chromium, ion ('water', 'surface water') + Biosphere[y][('biosphere3', 'fc0b5c85-3b49-42c2-a3fd-db7e57b696e3')]= self.LCI['COD'][y] # COD, Chemical Oxygen Demand ('water', 'surface water') + Biosphere[y][('biosphere3', '6d9550e2-e670-44c1-bad8-c0c4975ffca7')]= self.LCI['Copper'][y] # Copper, ion ('water', 'surface water') + Biosphere[y][('biosphere3', '7c335b9c-a403-47a8-bb6d-2e7d3c3a230e')]= self.LCI['Iron'][y] # Iron, ion ('water', 'surface water') + Biosphere[y][('biosphere3', 'b3ebdcc3-c588-4997-95d2-9785b26b34e1')]= self.LCI['Lead'][y] # Lead ('water', 'surface water') + Biosphere[y][('biosphere3', '66bfb434-78ab-4183-b1a7-7f87d08974fa')]= self.LCI['Mercury'][y] # Mercury ('water', 'surface water') + Biosphere[y][('biosphere3', 'ae70ca6c-807a-482b-9ddc-e449b4893fe3')]= self.LCI['Total N'][y] # Nitrogen ('water', 'surface water') + Biosphere[y][('biosphere3', '1727b41d-377e-43cd-bc01-9eaba946eccb')]= self.LCI['Phosphate'][y] # Phosphate ('water', 'surface water') + Biosphere[y][('biosphere3', '544dbea9-1d18-44ff-b92b-7866e3baa6dd')]= self.LCI['Selenium'][y] # Selenium ('water', 'surface water') + Biosphere[y][('biosphere3', 'af9793ba-25a1-4928-a14a-4bcf7d5bd3f7')]= self.LCI['Silver'][y] # Silver, ion ('water', 'surface water') + Biosphere[y][('biosphere3', '3844f446-ded5-4727-8421-17a00ef4eba7')]= self.LCI['Total suspended solids'][y] # Suspended solids, unspecified ('water', 'surface water') + Biosphere[y][('biosphere3', '541b633c-17a3-4047-bce6-0c0e4fdb7c10')]= self.LCI['Zinc'][y] # Zinc, ion ('water', 'surface water') + + if self.AD_input.AD_operation['choice_BU']['amount'] == 1: + Biosphere[y][('biosphere3', 'b9291c72-4b1d-4275-8068-4c707dc3ce33')]= self.LCI['Nitrate (ground water)'][y] #Nitrate ('water', 'ground-') + Biosphere[y][('biosphere3', '7ce56135-2ca5-4fba-ad52-d62a34bfeb35')]= self.LCI['Nitrate (Surface water)'][y] #Nitrate ('water', 'surface water') + else: + Biosphere[y][('biosphere3', 'b9291c72-4b1d-4275-8068-4c707dc3ce33')]= 0 #Nitrate ('water', 'ground-') + Biosphere[y][('biosphere3', '7ce56135-2ca5-4fba-ad52-d62a34bfeb35')]= 0 #Nitrate ('water', 'surface water') + + + + if self.AD_input.AD_operation['choice_BU']['amount'] == 0: + Biosphere[y][('biosphere3', '736f52e8-9703-4076-8909-7ae80a7f8005')]= self.LCI['Ammonium, ion (ground water)'][y] #'Ammonium, ion' (kilogram, None, ('water', 'ground-')) + Biosphere[y][('biosphere3', '13331e67-6006-48c4-bdb4-340c12010036')]= self.LCI['Ammonium, ion (surface water)'][y] # 'Ammonium, ion' (kilogram, None, ('water', 'surface water')) + else: + Biosphere[y][('biosphere3', '736f52e8-9703-4076-8909-7ae80a7f8005')]= 0 #'Ammonium, ion' (kilogram, None, ('water', 'ground-')) + Biosphere[y][('biosphere3', '13331e67-6006-48c4-bdb4-340c12010036')]= 0 # 'Ammonium, ion' (kilogram, None, ('water', 'surface water')) + + + return(self.AD) + +""" +A=AD() +A.calc() +AA=A.report() +AAA=A.LCI + +from time import time +B = time() +A=AD() +for i in range(100): + A.calc() + A.report() +print(time()-B) +""" diff --git a/Compost_input.py b/Compost_input.py index 90b481e..3da9739 100644 --- a/Compost_input.py +++ b/Compost_input.py @@ -17,87 +17,87 @@ def __init__(self): 'land_payload':{"Name":"Actual payload of truck used to haul soil amendment","amount":7.3,"unit":'Mg',"Reference":None}, 'PeatSubFac':{"Name":"Volumetric peat replacement factor","amount":0.9,"unit":None,"Reference":'17', - 'uncertainty_type':5,'loc': 0.9,'scale':0.2 ,'minimum':0,'maximum':1}, + 'uncertainty_type':5,'loc':0.8,'minimum':0.22,'maximum':1}, 'densPeat':{"Name":"Density of peat","amount":200,"unit":'kg/m3',"Reference":'17', - 'uncertainty_type':5,'loc': 200, 'scale':57,'minimum':50,'maximum':500}, + 'uncertainty_type':3,'loc': 200, 'scale':57}, - 'moistPeat':{"Name":"moistPeat","amount":0.436,"unit":None, - 'uncertainty_type':5,'loc': 0.436, 'scale':0.047,'minimum':0.33,'maximum':0.53}, + 'moistPeat':{"Name":"moistPeat","amount":0.56,"unit":None, + 'uncertainty_type':3,'loc': 0.56, 'scale':0.05}, 'CContPeat':{"Name":"CContPeat","amount":0.504,"unit":None, - 'uncertainty_type':5,'loc': 0.504, 'scale':0.015,'minimum':0.45,'maximum':0.54}, + 'uncertainty_type':5,'loc': 0.504,'minimum':0.48,'maximum':0.63}, 'CstorePeat':{"Name":"CstorePeat","amount":0.10,"unit":None, - 'uncertainty_type':3,'loc': 0.10, 'scale':0.03,'minimum':0.02,'maximum':0.16}, + 'uncertainty_type':4,'minimum':0.02,'maximum':0.16}, 'perN2Oevap':{"Name":"Percent of applied N evaporated as N2O","amount":1.8,"unit":'%', - 'uncertainty_type':5,'loc': 1.8 ,'scale':0.4,'minimum':1.2,'maximum':2.5}, + 'uncertainty_type':4,'minimum':1.3,'maximum':2.2}, - 'perNH3evap':{"Name":"Percent of Ammonia that evaporates","amount":0,"unit":'%',"Reference":'16', - 'uncertainty_type':5,'loc': 15 ,'scale':5,'minimum':5,'maximum':20}, + 'perNH3evap':{"Name":"Percent of Ammonia that evaporates","amount":15,"unit":'%',"Reference":'16', + 'uncertainty_type':5,'loc':15,'minimum':10,'maximum':20}, 'perNasNH3fc':{"Name":"Percent N that is Ammonia","amount":25,"unit":'%',"Reference":'16', - 'uncertainty_type':5,'loc': 25 ,'scale':10,'minimum':1,'maximum':50}, + 'uncertainty_type':4,'minimum':1,'maximum':50}, } ### Facility Operation self.operation = { - 'choice_BU':{'Name':'Digestate Beneficial Use (1) or No Beneficial Use (0)','amount':1,'unit':'0/1','Referenc':None}, + 'choice_BU':{'Name':'Digestate Beneficial Use (1) or No Beneficial Use (0)','amount':0,'unit':'0/1','Referenc':None}, 'peatOff':{'Name':'Digestate Beneficial Use offsets Peat (1 - Yes; 0 - No)','amount':1,'unit':'0/1','Referenc':None}, 'fertOff':{'Name':'Digestate Beneficial Use offsets Fertilizer (1 - Yes; 0 - No)','amount':1,'unit':'0/1','Referenc':None}, 'allocation_ADC':{'Name':'Allocation factor of LF material use to ADC','amount':0.5,'unit':'frac', - 'uncertainty_type':5,'loc': 0.5, 'scale':0.25,'minimum':0,'maximum':1}} + 'uncertainty_type':4,'minimum':0,'maximum':1}} ### Material Properties self.Material_Properties ={ 'mcFC':{'Name':'Finished compost moisture content','amount':0.45 ,'unit':'mass water/total mass','Referenc':None, - 'uncertainty_type':5,'loc': 0.45 ,'scale':0.09,'minimum':0.18,'maximum':0.67}, + 'uncertainty_type':4,'minimum':0.18,'maximum':0.67}, 'densFC':{'Name':'Density of final compost','amount':700 ,'unit':'kg/m3','Referenc':2, - 'uncertainty_type':5,'loc': 700 ,'scale':50,'minimum':570,'maximum':800} + 'uncertainty_type':3,'loc': 700 ,'scale':110} } ### Soil Sequestration self.Soil_seq ={ 'perCStor':{"Name":"Percent of carbon in finished compost remaining after 100 years","amount":10,"unit":'%' - ,'uncertainty_type':5,'loc': 10 ,'scale':3,'minimum':2,'maximum':16}, + ,'uncertainty_type':4,'minimum':2,'maximum':16}, 'humFormFac':{"Name":"100 year carbon storage from humus formation","amount":0,"unit":'kg-C/kg-C in compost',"Reference":'4'} } ### Initial flow self.initflow ={'mass':{"Name":"mass","amount":1000}, - 'C_cont':{"Name":"C_cont","amount":0.30,'uncertainty_type':5,'loc': 0.30 ,'scale':0.10,'minimum':0.10,'maximum':0.47}, - 'N_cont':{"Name":"N_cont","amount":0.015,'uncertainty_type':5,'loc': 0.015 ,'scale':0.005,'minimum':0.0051,'maximum':0.028}, - 'P_cont':{"Name":"P_cont","amount":0.005,'uncertainty_type':5,'loc': 0.005 ,'scale':0.002,'minimum':0.0015,'maximum':0.0093}, - 'K_cont':{"Name":"K_cont","amount":0.01,'uncertainty_type':5,'loc': 0.01 ,'scale':0.005,'minimum':0.0007,'maximum':0.023} + 'C_cont':{"Name":"C_cont","amount":0.30,'uncertainty_type':4,'minimum':0.10,'maximum':0.47}, + 'N_cont':{"Name":"N_cont","amount":0.015,'uncertainty_type':4,'minimum':0.0051,'maximum':0.028}, + 'P_cont':{"Name":"P_cont","amount":0.005,'uncertainty_type':4,'minimum':0.0015,'maximum':0.0093}, + 'K_cont':{"Name":"K_cont","amount":0.01,'uncertainty_type':4,'minimum':0.0007,'maximum':0.023} } ### Landfill - self.Landfill ={'CH4_Collected':{"Name":"CH4_Collected","amount":61, - 'uncertainty_type':3,'loc': 61 ,'scale':4,'minimum':50,'maximum':70}, + self.Landfill ={'CH4_Collected':{"Name":"CH4_Collected","amount":60, + 'uncertainty_type':3,'loc': 60 ,'scale':4}, - 'Frac_oxidized':{"Name":"Frac_oxidized","amount":0.16, - 'uncertainty_type':3,'loc': 0.16,'scale':0.035,'minimum':0.10,'maximum':0.26}, + 'Frac_oxidized':{"Name":"Frac_oxidized","amount":0.17, + 'uncertainty_type':3,'loc': 0.17,'scale':0.03}, - 'Frac_flared':{"Name":"Frac_flared","amount":0.34, - 'uncertainty_type':3,'loc': 0.34 , 'scale':0.132,'minimum':0.13,'maximum':0.62}, + 'Frac_flared':{"Name":"Frac_flared","amount":0.31, + 'uncertainty_type':3,'loc': 0.31 , 'scale':0.12}, - 'percCStor_LF':{"Name":"Percent of carbon in compost remaining after 100 years","amount":85,"unit":'%' - ,'uncertainty_type':3,'loc':85,'scale':5,'minimum':72,'maximum':96}, + 'percCStor_LF':{"Name":"Percent of carbon in compost remaining after 100 years","amount":90,"unit":'%' + ,'uncertainty_type':3,'loc':90,'scale':3}, - 'Elec_eff':{"Name":"Elec_eff in LF","amount":0.36,"unit":None - ,'uncertainty_type':5,'loc': 0.36 ,'scale':0.03,'minimum':0.28,'maximum':0.42}, + 'Elec_eff':{"Name":"Elec_eff in LF","amount":0.30,"unit":None + ,'uncertainty_type':4,'minimum':0.20,'maximum':0.37}, 'CH4_LHV':{"Name":"CH4_LHV","amount":50,"unit":'MJ/kg'}, 'frac_CH4':{"Name":"frac_CH4 in biogas produced in LF","amount":0.5,"unit":None - ,'uncertainty_type':5,'loc': 0.5 ,'scale':0.02,'minimum':0.45,'maximum':0.55}, + ,'uncertainty_type':4,'minimum':0.45,'maximum':0.55}, 'DC_subs_fac':{'Name':'DC_subs_fac','amount':0.9,'unit':'frac', - 'uncertainty_type':5,'loc': 0.9 ,'scale':0.2,'minimum':0,'maximum':1}, + 'uncertainty_type':4,'minimum':0,'maximum':1}, 'Soil_dens':{'Name':'Soil_dens','amount':1600,'unit':'kg/m3', - 'uncertainty_type':5,'loc': 1600 ,'scale':50,'minimum':1500,'maximum':1700}, + 'uncertainty_type':5,'loc': 1600 ,'minimum':1400,'maximum':1800}, 'DC_thickness':{'Name':'DC_thickness','amount':15,'unit':'cm'}, diff --git a/Compost_input_for_Sensitivity_Analysis.py b/Compost_input_for_Sensitivity_Analysis.py new file mode 100644 index 0000000..69f4482 --- /dev/null +++ b/Compost_input_for_Sensitivity_Analysis.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +""" +Created on Wed Jul 17 16:37:44 2019 + +@author: msardar2 +""" +import pandas as pd +import numpy as np +from MC import * +class Compost_input(MC): + def __init__(self): + +### Land application inputs + self.Land_app = { + 'distLand':{"Name":"Distance to application site","amount":20,"unit":'km',"Reference":None}, + 'erLand':{"Name":"Empty return from land application (0=no; 1=yes)","amount":1,"unit":'0/1',"Reference":None}, + 'land_payload':{"Name":"Actual payload of truck used to haul soil amendment","amount":7.3,"unit":'Mg',"Reference":None}, + + 'PeatSubFac':{"Name":"Volumetric peat replacement factor","amount":0.9,"unit":None,"Reference":'17'}, + + 'densPeat':{"Name":"Density of peat","amount":200,"unit":'kg/m3',"Reference":'17'}, + + 'moistPeat':{"Name":"moistPeat","amount":0.56,"unit":None}, + + 'CContPeat':{"Name":"CContPeat","amount":0.504,"unit":None}, + + 'CstorePeat':{"Name":"CstorePeat","amount":0.10,"unit":None}, + + 'perN2Oevap':{"Name":"Percent of applied N evaporated as N2O","amount":1.8,"unit":'%'}, + + 'perNH3evap':{"Name":"Percent of Ammonia that evaporates","amount":15,"unit":'%',"Reference":'16'}, + + 'perNasNH3fc':{"Name":"Percent N that is Ammonia","amount":25,"unit":'%',"Reference":'16'}, + } + +### Facility Operation + self.operation = { + 'choice_BU':{'Name':'Digestate Beneficial Use (1) or No Beneficial Use (0)','amount':1,'unit':'0/1','Referenc':None}, + 'peatOff':{'Name':'Digestate Beneficial Use offsets Peat (1 - Yes; 0 - No)','amount':1,'unit':'0/1','Referenc':None}, + 'fertOff':{'Name':'Digestate Beneficial Use offsets Fertilizer (1 - Yes; 0 - No)','amount':1,'unit':'0/1','Referenc':None}, + 'allocation_ADC':{'Name':'Allocation factor of LF material use to ADC','amount':0.5,'unit':'frac'}} + +### Material Properties + self.Material_Properties ={ + 'mcFC':{'Name':'Finished compost moisture content','amount':0.45 ,'unit':'mass water/total mass','Referenc':None}, + 'densFC':{'Name':'Density of final compost','amount':700 ,'unit':'kg/m3','Referenc':2} + } + +### Soil Sequestration + self.Soil_seq ={ + 'perCStor':{"Name":"Percent of carbon in finished compost remaining after 100 years","amount":10,"unit":'%'}, + 'humFormFac':{"Name":"100 year carbon storage from humus formation","amount":0,"unit":'kg-C/kg-C in compost',"Reference":'4'} + } + +### Initial flow + self.initflow ={'mass':{"Name":"mass","amount":1000}, + 'C_cont':{"Name":"C_cont","amount":0.30}, + 'N_cont':{"Name":"N_cont","amount":0.015,'list':np.repeat(np.linspace(0.0051,0.028,10),10)}, + 'P_cont':{"Name":"P_cont","amount":0.005}, + 'K_cont':{"Name":"K_cont","amount":0.01} + } + +### Landfill + self.Landfill ={'CH4_Collected':{"Name":"CH4_Collected","amount":60}, + + 'Frac_oxidized':{"Name":"Frac_oxidized","amount":0.17}, + + 'Frac_flared':{"Name":"Frac_flared","amount":0.31}, + + 'percCStor_LF':{"Name":"Percent of carbon in compost remaining after 100 years","amount":90,"unit":'%'}, + + 'Elec_eff':{"Name":"Elec_eff in LF","amount":0.30,"unit":None}, + + 'CH4_LHV':{"Name":"CH4_LHV","amount":50,"unit":'MJ/kg'}, + + 'frac_CH4':{"Name":"frac_CH4 in biogas produced in LF","amount":0.5,"unit":None}, + + 'DC_subs_fac':{'Name':'DC_subs_fac','amount':0.9,'unit':'frac'}, + + 'Soil_dens':{'Name':'Soil_dens','amount':1600,'unit':'kg/m3'}, + + 'DC_thickness':{'Name':'DC_thickness','amount':15,'unit':'cm'}, + + 'ADC_thickness':{'Name':'ADC_thickness','amount':22.5,'unit':'cm'} + + } + +### Monte_carlo + def setup_MC(self,seed=None): + self.Compost_Input_list = {'Land_app':self.Land_app,'operation':self.operation,'Material_Properties':self.Material_Properties, + 'Soil_seq':self.Soil_seq,'initflow':self.initflow,'Lanfill':self.Landfill} + super().__init__(self.Compost_Input_list) + super().setup_MC(seed) + + diff --git a/Compost_use b/Compost_use new file mode 100644 index 0000000..75683d6 Binary files /dev/null and b/Compost_use differ diff --git a/Compost_use.py b/Compost_use.py index e8fe1f6..8dcc5df 100644 --- a/Compost_use.py +++ b/Compost_use.py @@ -122,18 +122,3 @@ def report(self): return(self.Compost_use ) - -""" -A=AD() -A.calc() -AA=A.report() -AAA=A.LCI - -from time import time -B = time() -A=AD() -for i in range(100): - A.calc() - A.report() -print(time()-B) -""" diff --git a/IPCC.xlsx b/IPCC.xlsx new file mode 100644 index 0000000..69261d8 Binary files /dev/null and b/IPCC.xlsx differ diff --git a/Import_IPCC_new.py b/Import_IPCC_new.py new file mode 100644 index 0000000..a5a7dcf --- /dev/null +++ b/Import_IPCC_new.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Sep 23 14:17:37 2019 + +@author: msardar2 +""" +import pandas as pd +from ast import literal_eval +from brightway2 import * + +Data_1 = pd.read_excel('IPCC.xlsx',sheet_name = '2013',dtype={'Key':object}) +IPCC2013_1=[] +IPCC2013_2=[] +for i in range(len(Data_1.Key)): + IPCC2013_1.append((literal_eval(Data_1['Key'][i]), Data_1['IPCC 2013, Ecoinvent V3.5, climate change, GWP 100a, bioCO2=0'][i])) + IPCC2013_2.append((literal_eval(Data_1['Key'][i]), Data_1['IPCC 2013, Ecoinvent V3.5, climate change, GWP 100a, bioCO2=1'][i])) + +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0')).register() +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0')).write(IPCC2013_1) + +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1')).register() +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1')).write(IPCC2013_2) + +Data_2 = pd.read_excel('IPCC.xlsx',sheet_name = '2007') +IPCC2007_1=[] +IPCC2007_2=[] +for i in range(len(Data_2.Key)): + IPCC2007_1.append((literal_eval(Data_2['Key'][i]), Data_2['IPCC 2007, Ecoinvent V3.5, climate change, GWP 100a, bioCO2=0'][i])) + IPCC2007_2.append((literal_eval(Data_2['Key'][i]), Data_2['IPCC 2007, Ecoinvent V3.5, climate change, GWP 100a, bioCO2=1'][i])) + +Method(('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0')).register() +Method(('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0')).write(IPCC2007_1) + +Method(('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1')).register() +Method(('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1')).write(IPCC2007_2) + +Data_3 = pd.read_excel('IPCC.xlsx',sheet_name = '2013 (C1 = 36)') +IPCC2013_3=[] +IPCC2013_4=[] +for i in range(len(Data_3.Key)): + IPCC2013_3.append((literal_eval(Data_3['Key'][i]), Data_3['IPCC 2013, Ecoinvent V3.5, climate change, GWP 100a, bioCO2=0, C1_36'][i])) + IPCC2013_4.append((literal_eval(Data_3['Key'][i]), Data_3['IPCC 2013, Ecoinvent V3.5, climate change, GWP 100a, bioCO2=1, C1_36'][i])) + +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0, C1_36')).register() +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0, C1_36')).write(IPCC2013_3) + +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1, C1_36')).register() +Method(('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1, C1_36')).write(IPCC2013_4) + +methods.flush() + + +# ============================================================================= +# +# m=[('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1'), +# ('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0'), +# ('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0'), +# ('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1'), +# ('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0, C1_36'), +# ('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1, C1_36')] +# +# +# for x in m: +# method = x +# demand = {('Technosphere', 'Electricity_consumption'):1} +# A = LCA(demand, method) +# A.lci() +# A.lcia() +# print(x,'\n',A.score,'\n','\n') +# ============================================================================= + diff --git a/MC_simulation.py b/MC_simulation.py new file mode 100644 index 0000000..c705e8b --- /dev/null +++ b/MC_simulation.py @@ -0,0 +1,83 @@ +from project_class import * +from building_matrices import * +import pickle +from CommonData import * +from Compost_use import * +from time import time +from Store_results import * +from brightway2 import * +if __name__=='__main__': + demo = pickle.load(open("Compost_use","rb")) + + project = "Compost_use" + projects.set_current(project) + db = Database("waste") + functional_unit = {db.get("scenario1") : 1} + method = [('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1, C1_36'), + ('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0, C1_36'), + ('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1'), + ('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0'), + ('SWOLF_Acidification','SWOLF'), + ('SWOLF_Eutrophication','SWOLF'), + ('SWOLF_PhotochemicalSmog','SWOLF'), + ('SWOLF_CED','SWOLF') + ] + + Treatment_processes = {} + Treatment_processes['Compost_use']={'input_type':[],'model': Compost_use()} + + process_models = list() + process_model_names = list() + process_models.append(Treatment_processes['Compost_use']['model']) + process_model_names.append('Compost_use') + + CommonData = CommonData() + + t1 = time() + n=2000 + a = ParallelData(functional_unit, method, project,process_models=process_models,process_model_names=process_model_names,common_data =CommonData ,seed = 100) + a.run(4,n) + t2=time() + print(n, 'runs in: ', t2-t1) + + Results=store_results(a.results) + AAA = Results + #Results.to_pickle('BU1_Peat') + #Results=pd.read_pickle('BU1_Peat') + + + +# ============================================================================= +# contour plots +# ('initflow', 'C_cont') +# 'list': np.linspace(0.10,0.47,10).tolist()*10 +# ('Lanfill', 'percCStor_LF') +# 'list': np.repeat(np.linspace(40,100,10),10) +# +# +# ============================================================================= + +# ============================================================================= +# +# ('Land_app', 'PeatSubFac') +# 'list': np.linspace(0,1,10).tolist()*10 +# ('Land_app', 'densPeat') +# 'list': np.repeat(np.linspace(100,600,10),10) +# +# ============================================================================= + + +# ============================================================================= +# ('initflow', 'C_cont') +# 'list':np.repeat(np.linspace(0.10,0.47,10),10) +# ('Material_Properties', 'mcFC') +# 'list':np.linspace(0.18,0.67,10).tolist()*10 +# ============================================================================= + +# ('initflow', 'N_cont') +# 'list':np.repeat(np.linspace(0.0051,0.028,10),10) +# MFEN +# 'list':np.linspace(0,1,10).tolist()*10 + + + \ No newline at end of file diff --git a/Project_Compost Utilization analysis.py b/Project_Compost Utilization analysis.py new file mode 100644 index 0000000..a2fc997 --- /dev/null +++ b/Project_Compost Utilization analysis.py @@ -0,0 +1,45 @@ + -*- coding: utf-8 -*- +""" +Created on Wed May 22 19:19:12 2019 + +@author: msmsa +""" +from project_class import * +from building_matrices import * +from Compost_use import * +from brightway2 import * +from time import time +from SWOLF_method import * + +Treatment_processes = {} +Treatment_processes['Compost_use']={'input_type':[],'model': Compost_use()} + +demo = project("Compost_use",Treatment_processes) +demo.init_project('SWOLF_AccountMode_LCI DATA.csv') +demo.write_project() +demo.group_exchanges() +import_methods() +from Import_IPCC_new import * + +scenario1 = {"Compost_use":{"Compost":1}} +demo.process_start_scenario(scenario1,'scenario1') + +import pickle +file = open('Compost_use', 'wb') +pickle.dump(demo, file) + + + +method = ('SWOLF_IPCC','SWOLF') +demo.Do_LCA("scenario1",method,1) + + +project = "Compost_use" +projects.set_current(project) +db = Database("waste") +functional_unit = {db.get("scenario1") : 1} +method = ('SWOLF_IPCC','SWOLF') +A=LCA(functional_unit,method) +A.lci() +A.lcia() +print(A.score) \ No newline at end of file diff --git a/SWOLF _ ImpactMethods.csv b/SWOLF _ ImpactMethods.csv new file mode 100644 index 0000000..3b279f5 --- /dev/null +++ b/SWOLF _ ImpactMethods.csv @@ -0,0 +1,1753 @@ +,key,name,CF1,CF2,CF3,CF4,CF5,CF6,CF7 +0,"('biosphere3', '38a622c6-f086-4763-a952-7c6b3b1c42ba')","'1,4-Butanediol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.877584851,0 +1,"('biosphere3', '541a823c-0aad-4dc4-9123-d4af4647d942')","'1-Pentanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.83E+00,0.00E+00,0.213832412,0 +2,"('biosphere3', '8cbaa905-41b0-4327-8403-bf1c8eb25429')","'1-Pentene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,7.21E+00,0.00E+00,0,0 +3,"('biosphere3', 'e6137e6e-84a6-4fa1-a5bf-47c8153d7c05')","'2,4-D' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,103.1690867,2.32E-06 +4,"('biosphere3', 'a0fec60d-3f74-48bf-a2d2-58c30fc13e53')","'2-Aminopropanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +5,"('biosphere3', 'd5649872-502b-4d23-b882-26d74a9fc4b4')","'2-Methyl pentane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.50E+00,0.00E+00,0,0 +6,"('biosphere3', 'e2d860e3-1038-4386-a5f1-25ad75d18bbd')","'2-Methyl-1-propanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.51E+00,0.00E+00,0.201500545,2.14E-08 +7,"('biosphere3', '79a87f98-0b00-4e7e-86f8-70667307f696')","'2-Methyl-2-butene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.41E+01,0.00E+00,0,0 +8,"('biosphere3', '90d374f1-b739-45b2-a734-d6bdd8c8dc9c')","'2-Nitrobenzoic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +9,"('biosphere3', 'cbf58f64-9286-406f-8dcb-ef1d81eec980')","'2-Propanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.14E-01,0.00E+00,0.080509249,0 +10,"('biosphere3', 'c6310f81-3859-4c5c-990a-4662ba179693')","'3-Methyl-1-butanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.254007819,0 +11,"('biosphere3', '9fbec2f4-6b42-4e63-9573-14e04befe20f')","'4-Methyl-2-pentanone' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.88E+00,0.00E+00,0.020571924,3.98E-09 +12,"('biosphere3', '922a7ccf-3338-43ad-bd7e-77d51df051ab')","'Acenaphthene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.596102855,2.09E-09 +13,"('biosphere3', '1f4afa32-a9a2-40da-8396-104452cb637f')","'Acenaphthene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.029619636,2.80E-08 +14,"('biosphere3', '99c07b66-c039-4896-866d-06abdaa9d46a')","'Acenaphthene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.463136417,5.39E-08 +15,"('biosphere3', '73a06727-fec3-4d8d-8de5-ef1a0cc2c280')","'Acephate' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,105.7442922,0.00036805 +16,"('biosphere3', 'fc9f9a81-c4b9-4dce-bc20-9f04e05ca2f1')","'Acetaldehyde' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,6.54E+00,0.00E+00,0.296430618,5.63E-08 +17,"('biosphere3', 'e3e8f6a2-c45e-4685-9859-698b2eadaf5b')","'Acetaldehyde' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,6.54E+00,0.00E+00,0.292418003,5.83E-07 +18,"('biosphere3', '5ad58fcc-e9ba-4155-a3c9-e4ffb3065a6f')","'Acetaldehyde' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.54E+00,0.00E+00,0.288405389,1.11E-06 +19,"('biosphere3', 'c3de45a3-e6fd-494e-aa85-d352b478e87b')","'Acetamide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.582607562,1.97E-07 +20,"('biosphere3', 'c5cc0625-6e01-4639-b053-5d1d9d22a53c')","'Acetic acid' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,6.85E-01,0.00E+00,10.24915717,0 +21,"('biosphere3', 'd157416d-db9b-4f88-a7f3-a9a5f1ea88f2')","'Acetic acid' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,6.85E-01,0.00E+00,10.38255572,0 +22,"('biosphere3', 'b9b68c0c-053e-41de-ab72-8dfe1c3f5755')","'Acetic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.85E-01,0.00E+00,10.51595427,0 +23,"('biosphere3', '7a2d7097-20c4-4b5f-b2ee-bcfc2ba1378f')","'Acetone' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,3.56E-01,0.00E+00,0.079034697,2.83E-09 +24,"('biosphere3', 'f3d5fd96-8805-4d3d-867a-5df27975b07f')","'Acetone' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,3.56E-01,0.00E+00,0.079150389,6.25E-09 +25,"('biosphere3', '1f130425-11f9-4ec2-8d2f-d282acaacf5c')","'Acetone' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.56E-01,0.00E+00,0.079266081,9.67E-09 +26,"('biosphere3', 'f7553ef8-e4f3-4b9c-98be-81fa36315648')","'Acetonitrile' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.740570516,2.96E-08 +27,"('biosphere3', '1dcae348-9373-4ff6-96f0-1a444fa96587')","'Acifluorfen' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,1.65E-06 +28,"('biosphere3', '12840cef-c3b8-4ef2-b7d4-3a73dbd6a280')","'Acrolein' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,7.45E+00,0.00E+00,108.5753067,5.56E-05 +29,"('biosphere3', 'd896ced7-a107-4017-b284-d95a8ef3e735')","'Acrolein' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,7.45E+00,0.00E+00,106.6102461,0.00073174 +30,"('biosphere3', '7ed6dc0d-9c2e-4046-a44b-e8a708c2081e')","'Acrolein' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,7.45E+00,0.00E+00,104.6451855,0.00140792 +31,"('biosphere3', '42f51ad5-6190-4641-b961-f411310554e9')","'Acrylic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14.54163513,9.71E-05 +32,"('biosphere3', '02703daf-fde4-489a-b7e5-523e46151312')","'Actinides, radioactive, unspecified' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +33,"('biosphere3', '72958cbe-6609-46c2-bbfa-ee4ab826ca12')","'Aerosols, radioactive, unspecified' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +34,"('biosphere3', 'de9e0841-d02a-4af0-993a-39e32e69e7d3')","'Alachlor' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1920.935036,0 +35,"('biosphere3', 'ba1a3dcb-d53a-42fd-80f0-d09f3a12ffe2')","'Aldehydes, unspecified' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +36,"('biosphere3', '06f0a67c-ec68-435d-8c32-0decd79a4a1a')","'Aldehydes, unspecified' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +37,"('biosphere3', 'd961f86b-e36b-4ac6-8cd4-b253e496de79')","'Aldehydes, unspecified' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +38,"('biosphere3', '46e63323-cffd-4c46-829b-5f006b50fa9b')","'Aluminium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +39,"('biosphere3', '9c3bd678-1b2f-4b95-a245-d5c8a3fe326b')","'Aluminium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +40,"('biosphere3', 'ff65658c-2d39-44a2-b23e-7ec3c644f064')","'Aluminium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +41,"('biosphere3', '6f0b8b7c-3888-4174-b7e3-916d42d678ee')","'Aluminium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +42,"('biosphere3', '0f440cc0-0f74-446d-99d6-8ff0e97a2444')","'Ammonia' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,1.88E+00,1.19E-01,0.00E+00,0.00E+00,0,0 +43,"('biosphere3', '87883a4e-1e3e-4c9d-90c0-f1bea36f8014')","'Ammonia' (kilogram, None, ('air',))",0,1.88E+00,1.19E-01,0.00E+00,0.00E+00,0,0 +44,"('biosphere3', '9990b51b-7023-4700-bca0-1a32ef921f74')","'Ammonia' (kilogram, None, ('air', 'urban air close to ground'))",0,1.88E+00,1.19E-01,0.00E+00,0.00E+00,0,0 +45,"('biosphere3', '11f41c41-7733-49bc-b1b1-1f00fbade521')","'Ammonium carbonate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +46,"('biosphere3', '79def65c-bd77-4fb2-a1df-f4dba98ada8f')","'Aniline' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.007767568,1.78E-06 +47,"('biosphere3', '48adac6a-94d3-4a65-901b-e60824c01a65')","'Anthranilic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +48,"('biosphere3', 'fa39136e-1ef6-43c1-af68-104da104568d')","'Antimony' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,493.0497906,0.000154513 +49,"('biosphere3', '43b29ad9-26dd-4838-b931-6216e55a0120')","'Antimony' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,493.0497906,0.000154513 +50,"('biosphere3', '77927dac-dea3-429d-a434-d5a71d92c4f7')","'Antimony' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,491.036034,0.000170539 +51,"('biosphere3', '3ea5684a-6d64-4f96-8c09-1d90f997c9d4')","'Antimony' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,489.0222775,0.000186565 +52,"('biosphere3', '7567e592-ecfa-467b-9f11-19f11786505b')","'Antimony-124' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +53,"('biosphere3', '51f80fcc-8eb0-4912-afbd-e9b9861e45a4')","'Antimony-125' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +54,"('biosphere3', '38321e66-f6ab-4908-b26f-c17267559bc5')","'Argon-40' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +55,"('biosphere3', '091d8157-f865-4858-8ceb-0a49ac84614b')","'Argon-41' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +56,"('biosphere3', 'ed751c30-a896-44f3-9a83-2a5328dde94d')","'Arsenic' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6437.001348,0.01676327 +57,"('biosphere3', '7348af7c-e102-4a03-a0df-efce16469eed')","'Arsenic' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6437.001348,0.01676327 +58,"('biosphere3', 'dc6dbdaa-9f13-43a8-8af5-6603688c6ad0')","'Arsenic' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6405.04499,0.017129612 +59,"('biosphere3', 'f4d0a2c8-efef-4188-85da-5801097389a2')","'Arsenic' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6373.088632,0.017495954 +60,"('biosphere3', 'fd9a5a38-992d-4c53-9b0f-16a69d37fb54')","'Arsine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +61,"('biosphere3', 'c63b5ff6-0ca1-44a0-92ba-f634fb8373ad')","'Atrazine' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3287.781362,1.95E-06 +62,"('biosphere3', '0b5b83a4-ef85-4db6-a739-79f8e00d5dac')","'Azoxystrobin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2258.577663,0 +63,"('biosphere3', 'cd5898ca-96ad-4038-b7ac-edf544d2800a')","'Barium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,612.0648333,3.86E-05 +64,"('biosphere3', '24cf82f8-c517-4fef-8f93-17519adb855e')","'Barium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,612.0648333,3.86E-05 +65,"('biosphere3', '7e246e3a-5cff-43fc-a8e6-02d191424559')","'Barium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,609.6410529,4.19E-05 +66,"('biosphere3', '5ffb3576-740f-41ba-814f-8538d83a4b3b')","'Barium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,607.2172724,4.52E-05 +67,"('biosphere3', '3f206533-f017-4d74-8a2d-e563af85d417')","'Barium-140' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +68,"('biosphere3', '29bb09a9-cfef-419e-8322-88e2f6bc0558')","'Bentazone' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7.464759481,1.75E-07 +69,"('biosphere3', 'a65f4744-f555-44cb-8534-aa5adc72d7a7')","'Benzal chloride' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +70,"('biosphere3', '36b918a7-5b52-4853-812a-1f49c2366d89')","'Benzal chloride' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +71,"('biosphere3', 'fe65f7e4-ee5b-4a6f-9d60-6c2f829dca3f')","'Benzaldehyde' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.142499094,7.79E-08 +72,"('biosphere3', 'eb15dd66-43ee-4161-ac90-2cd6d19ca72d')","'Benzene' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.063812343,1.50E-07 +73,"('biosphere3', '5e883a00-04e6-4d96-8dce-12d7117c6635')","'Benzene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,7.21E-01,0.00E+00,0.063812343,1.50E-07 +74,"('biosphere3', '28999907-a8a7-45b3-857e-836495ca2aa0')","'Benzene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,7.21E-01,0.00E+00,0.0639986,3.72E-07 +75,"('biosphere3', '1bb6a502-3ff9-4a79-835c-5588b855f1f5')","'Benzene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,7.21E-01,0.00E+00,0.064184856,5.94E-07 +76,"('biosphere3', '9645e02f-855a-4b9f-8baf-f34a08fa80c4')","'Benzene, dichloro' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.754061574,5.75E-08 +77,"('biosphere3', 'e0e605c8-370b-4b5a-b6d4-2e7a5a1a6709')","'Benzene, ethyl-' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,3.04E+00,0.00E+00,0.027150515,5.65E-08 +78,"('biosphere3', '88ef28f1-cfd5-44a0-ac34-01acf2db84a0')","'Benzene, ethyl-' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,3.04E+00,0.00E+00,0.028375653,3.40E-07 +79,"('biosphere3', '7c09916a-b6b5-47f5-bdf6-30d2511beb82')","'Benzene, ethyl-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.04E+00,0.00E+00,0.029600791,6.23E-07 +80,"('biosphere3', '04f42988-6207-4d09-a91f-155be8d27eb0')","'Benzene, hexachloro-' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,624.2731987,9.63E-05 +81,"('biosphere3', '1af44724-172c-462b-b277-bb4b2fd32c33')","'Benzene, hexachloro-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,626.6336236,0.000101082 +82,"('biosphere3', 'c75dd699-08a5-4215-acf5-e618995e768f')","'Benzene, pentachloro-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,342.0626109,2.46E-05 +83,"('biosphere3', '81c4ba39-8a3f-4a43-97b4-401605bbebf5')","'Benzo(a)pyrene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,43.5330803,2.48E-05 +84,"('biosphere3', '5e13c2ab-5466-4ff5-816d-702dfdf25f76')","'Benzo(a)pyrene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,107.014536,3.49E-05 +85,"('biosphere3', '2cbb504a-ce2f-40e9-9d38-e130e95a1242')","'Benzo(a)pyrene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,170.4959918,4.50E-05 +86,"('biosphere3', '5457df7d-0461-407c-9f09-0338dbff77ef')","'Beryllium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1631.165194,0.00855734 +87,"('biosphere3', '5d4b497b-d265-42d1-a41a-113785a6d694')","'Beryllium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1631.165194,0.00855734 +88,"('biosphere3', '20557d93-2b1c-49b5-b6c0-3528a8bbc307')","'Beryllium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1621.987585,0.047116574 +89,"('biosphere3', '19e97bd6-d0ae-4208-bd77-d58e5d46d827')","'Beryllium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1612.809976,0.085675808 +90,"('biosphere3', 'd03809fd-dae9-4771-aec0-934a40bbb7e5')","'Boric acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +91,"('biosphere3', '0fbca534-f355-4477-b29f-7b5fc2fbce64')","'Boron' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +92,"('biosphere3', '512364ac-5bba-4b77-8712-981247617519')","'Boron' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +93,"('biosphere3', 'b8fc2875-a1ce-4a7c-a73d-6ba5b26319d3')","'Boron' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +94,"('biosphere3', '3e419ebc-c0f1-4f85-a544-cf3460a680b6')","'Boron' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +95,"('biosphere3', '0367c22a-f1f5-48bc-8dea-95e784d19df2')","'Boron trifluoride' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +96,"('biosphere3', 'd32f9dd8-9514-4c22-8c99-2e108609731f')","'Bromine' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +97,"('biosphere3', 'c24f5894-f95e-4661-ba76-130397348894')","'Bromine' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +98,"('biosphere3', '77c46f0e-c8c0-4bc3-992c-2a9725d49f70')","'Bromine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +99,"('biosphere3', '91c76c8e-d725-475d-9be6-a90b99747075')","'Butadiene' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,4.15E-08 +100,"('biosphere3', '8a970585-5ce2-4226-b60d-df1c34649a56')","'Butadiene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.26E+01,0.00E+00,0,4.15E-08 +101,"('biosphere3', '5064da53-d4ec-44ee-ba23-b20a4f8c4964')","'Butadiene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.26E+01,0.00E+00,0,1.43E-06 +102,"('biosphere3', 'e7140812-ce3d-49f5-97b0-2fef538217a5')","'Butadiene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.26E+01,0.00E+00,0,2.81E-06 +103,"('biosphere3', 'fa5512cf-04a2-4014-8e96-d3e2d137f0df')","'Butane' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.15E+00,0.00E+00,0,0 +104,"('biosphere3', '982b0510-96ac-4bcb-a758-e98006b95f4d')","'Butane' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.15E+00,0.00E+00,0,0 +105,"('biosphere3', '892f10da-7bf2-42b3-b171-221989661a05')","'Butane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.15E+00,0.00E+00,0,0 +106,"('biosphere3', 'efc4290c-1404-4e01-8b5e-e75c6d90615c')","'Butanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.88E+00,0.00E+00,0.11031405,5.27E-08 +107,"('biosphere3', '53fc7ec9-1b3f-4d89-ade6-8ca2934c1695')","'Butene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +108,"('biosphere3', '9036f1b8-4be6-4d97-96d8-c504acdfa2f0')","'Butyrolactone' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,30.31622065,0 +109,"('biosphere3', '23eaa36d-add4-4219-961e-ca7104dc0de9')","'Cadmium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3955.359738,0.046678373 +110,"('biosphere3', 'dd1bbaa1-d1f1-4584-aeb2-6f02bfb04e87')","'Cadmium' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3955.359738,0.046678373 +111,"('biosphere3', 'e2d58f90-9aac-4ac4-87f7-bbd6cfc358e3')","'Cadmium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3955.359738,0.046678373 +112,"('biosphere3', '1c5a7322-9261-4d59-a692-adde6c12de92')","'Cadmium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3938.524791,0.045698222 +113,"('biosphere3', '36e53653-1338-42c7-816c-f6667809e0b1')","'Cadmium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3921.689844,0.04471807 +114,"('biosphere3', 'cac53ea3-b11c-47a6-adfd-678672a088e6')","'Calcium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +115,"('biosphere3', '15fd8f0f-c3c2-4f63-b8d0-86793a22aacd')","'Calcium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +116,"('biosphere3', 'b87016c6-ac91-4414-98ce-fb665e0a6d2e')","'Calcium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +117,"('biosphere3', 'a912f450-5233-489b-a2e9-8c029fab480f')","'Calcium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +118,"('biosphere3', '02eb30a8-ed7c-456b-a1fe-2cdffea4fb8d')","'Carbaryl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1134.315045,2.82E-06 +119,"('biosphere3', '16eeda8a-1ea2-408e-ab37-2648495058dd')","'Carbon dioxide, fossil' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",1,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +120,"('biosphere3', 'aa7cac3a-3625-41d4-bc54-33e2cf11ec46')","'Carbon dioxide, fossil' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +121,"('biosphere3', '349b29d1-3e58-4c66-98b9-9d1a076efd2e')","'Carbon dioxide, fossil' (kilogram, None, ('air',))",1,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +122,"('biosphere3', 'f9749677-9c9f-4678-ab55-c607dfdc2cb9')","'Carbon dioxide, fossil' (kilogram, None, ('air', 'urban air close to ground'))",1,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +123,"('biosphere3', '78eb1859-abd9-44c6-9ce3-f3b5b33d619c')","'Carbon dioxide, from soil or biomass stock' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +124,"('biosphere3', 'e4e9febc-07c1-403d-8d3a-6707bb4d96e6')","'Carbon dioxide, from soil or biomass stock' (kilogram, None, ('air',))",1,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +125,"('biosphere3', 'd6235194-e4e6-4548-bfa3-ac095131aef4')","'Carbon dioxide, non-fossil' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +126,"('biosphere3', 'eba59fd6-f37e-41dc-9ca3-c7ea22d602c7')","'Carbon dioxide, non-fossil' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +127,"('biosphere3', '73ed05cc-9727-4abf-9516-4b5c0fe54a16')","'Carbon dioxide, non-fossil' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +128,"('biosphere3', '15f9ebbb-b1b5-4bf7-88c6-d99424f5eced')","'Carbon disulfide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.306544061,4.67E-05 +129,"('biosphere3', 'd94a5a1a-bc06-48fd-b6d9-7477ea65cacd')","'Carbon disulfide' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.307011338,4.99E-05 +130,"('biosphere3', '14b6726a-44bf-4ad4-b933-02470d84c22a')","'Carbon disulfide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.307478615,5.31E-05 +131,"('biosphere3', 'a3beb5ac-5149-47f6-a035-53fc5030f10a')","'Carbon monoxide, fossil' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",1.5714,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +132,"('biosphere3', '099b36ab-4c03-4587-87f4-2f81e337afb8')","'Carbon monoxide, fossil' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1.5714,0.00E+00,0.00E+00,5.56E-02,0.00E+00,0,0 +133,"('biosphere3', 'ba2f3f82-c93a-47a5-822a-37ec97495275')","'Carbon monoxide, fossil' (kilogram, None, ('air',))",1.5714,0.00E+00,0.00E+00,5.56E-02,0.00E+00,0,0 +134,"('biosphere3', '6edcc2df-88a3-48e1-83d8-ffc38d31c35b')","'Carbon monoxide, fossil' (kilogram, None, ('air', 'urban air close to ground'))",1.5714,0.00E+00,0.00E+00,5.56E-02,0.00E+00,0,0 +135,"('biosphere3', '68b9b577-90cf-49e4-88bb-a55d80f3ac5d')","'Carbon monoxide, from soil or biomass stock' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1.5714,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +136,"('biosphere3', 'b821ad93-ba6a-4d74-b6ae-ca12cd9563d7')","'Carbon monoxide, non-fossil' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,5.56E-02,0.00E+00,0,0 +137,"('biosphere3', '2cb2333c-1599-46cf-8435-3dffce627524')","'Carbon monoxide, non-fossil' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,5.56E-02,0.00E+00,0,0 +138,"('biosphere3', '9afa0173-ecbd-4f2c-9c5c-b3128a032812')","'Carbon monoxide, non-fossil' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,5.56E-02,0.00E+00,0,0 +139,"('biosphere3', '19256c0f-bea8-4e61-9499-8cc2f84953f8')","'Carbon-14' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +140,"('biosphere3', '476ff60f-c2a2-43d6-bbe7-b4c4eea6960a')","'Carbonyl sulfide' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +141,"('biosphere3', '9f1f46bb-5629-4fd5-bed0-06f58800017a')","'Carfentrazone-ethyl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6746.647913,0 +142,"('biosphere3', '7d65e225-0ca3-4467-82f8-a8c09d66eac0')","'Cerium-141' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +143,"('biosphere3', '39b3200d-f95a-413a-9c96-6d90345d9dca')","'Cesium-134' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +144,"('biosphere3', 'a9e65945-a4dd-42c2-89cf-81ad2eb6b0fd')","'Cesium-137' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +145,"('biosphere3', 'b34d0551-cb9a-4d3f-95ad-2cdb380d5cd1')","'Chloramine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14691.33244,6.79E-07 +146,"('biosphere3', '85807a72-053a-48bf-8604-47b242211d1f')","'Chlorimuron-ethyl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +147,"('biosphere3', '5370addb-668e-4223-9a58-8ae947807c27')","'Chlorine' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +148,"('biosphere3', 'c76ddd9e-fd9c-47c5-9b95-ad924146f0bb')","'Chlorine' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +149,"('biosphere3', '39d1390a-ded6-41cb-a536-d47510bf2fbc')","'Chlorine' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +150,"('biosphere3', '247ac273-60fa-4e21-9408-793f75fa1d37')","'Chlorine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +151,"('biosphere3', 'ed38a7d2-ffa5-4c28-9aea-dd9df0d1898b')","'Chloroacetic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,758.7943034,0 +152,"('biosphere3', 'fa9b9736-6de8-4bd6-ba22-1bd78c798373')","'Chloroform' (kilogram, None, ('air', 'non-urban air or from high stacks'))",31,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.281794448,1.09E-06 +153,"('biosphere3', 'fbf6ab3a-74e3-4cbe-b61d-959728bdce46')","'Chloroform' (kilogram, None, ('air',))",31,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.281948739,1.55E-06 +154,"('biosphere3', '4cadbc9f-0472-4bb9-a942-df5b90e37878')","'Chloroform' (kilogram, None, ('air', 'urban air close to ground'))",31,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.28210303,2.01E-06 +155,"('biosphere3', '0131a35d-1d37-46ee-aed2-5ca12ac07ad4')","'Chlorosilane, trimethyl-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +156,"('biosphere3', 'd46ae140-6502-4335-ab1c-9d6eab19ce78')","'Chlorosulfonic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,86.41294637,0 +157,"('biosphere3', '0822b867-9dca-4d5a-93c3-319d39b592cd')","'Chlorpyrifos' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9534.982446,5.53E-06 +158,"('biosphere3', '2a5ed451-12a2-47db-b4dc-fa0bfbc01d79')","'Chromium' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,521.3592427,1.59E-09 +159,"('biosphere3', '4d40d8e3-9bc7-4ab1-ac5c-4f4a76fda8e5')","'Chromium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,521.3592427,1.59E-09 +160,"('biosphere3', 'e142b577-e934-4085-9a07-3983d4d92afb')","'Chromium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,519.2528295,2.58E-09 +161,"('biosphere3', '7705f0e1-5b14-44f4-b330-1245b5c7fc08')","'Chromium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,517.1464162,3.57E-09 +162,"('biosphere3', 'af60ad28-ce2b-4ea0-9277-983538e1a739')","'Chromium IV' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,41802.21762,0.005446564 +163,"('biosphere3', 'c2e854f9-fe22-4fe7-9083-cf6d0a8c7254')","'Chromium VI' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,42142.76446,0.004289593 +164,"('biosphere3', '03b279a7-4626-4703-a451-d0650599dbd9')","'Chromium VI' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,42142.76446,0.004289593 +165,"('biosphere3', '81e17d9a-3e0b-414e-9b2e-eca7e5b3bd4a')","'Chromium VI' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,41972.49104,0.004868078 +166,"('biosphere3', '7a59e8d5-cd11-4ee7-b1ca-30979d2b0b3a')","'Chromium VI' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,41802.21762,0.005446564 +167,"('biosphere3', 'caffa231-9312-46b9-bbdf-c2782d225ef0')","'Chromium-51' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +168,"('biosphere3', 'b52924d8-e53f-4bd4-bb9e-1902db1784b2')","'Clethodim' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,11.42180532,0 +169,"('biosphere3', '5041394a-2d8f-4f9c-b399-a9f3a54ff235')","'Cloransulam-methyl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +170,"('biosphere3', '74eb3f02-09ec-46ce-8ee8-d67d0900136b')","'Cobalt' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1722.648457,0 +171,"('biosphere3', 'b10faa87-2c1d-4f6e-aa65-9f80b376939a')","'Cobalt' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1722.648457,0 +172,"('biosphere3', 'f0e28a62-ddf9-4c93-af81-676a58c3f2d4')","'Cobalt' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1714.296418,0 +173,"('biosphere3', 'ca04300a-8338-4601-ba7c-66c10a4f6322')","'Cobalt' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1705.944379,0 +174,"('biosphere3', '033fb239-a6c7-4486-9f92-f5a80b346778')","'Cobalt-58' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +175,"('biosphere3', '441ef9b3-0df0-461b-bd84-358973e0c2ca')","'Cobalt-60' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +176,"('biosphere3', 'fd153f15-1d16-410a-91fa-04d205e36c43')","'Copper' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23320.11995,1.36E-05 +177,"('biosphere3', '3573a5af-88f8-4f74-ade7-cd269cbc4e66')","'Copper' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23320.11995,1.36E-05 +178,"('biosphere3', 'e336eee7-148a-4d1c-8027-780cbfafa12b')","'Copper' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23320.11995,1.36E-05 +179,"('biosphere3', 'ec8144d6-d123-43b1-9c17-a295422a0498')","'Copper' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23205.11836,1.34E-05 +180,"('biosphere3', '88cde01c-df69-40bb-9b14-6eac71bea5b8')","'Copper' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23090.11677,1.32E-05 +181,"('biosphere3', '1a796dc4-5dcb-40da-a609-3a5a40655fad')","'Cumene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,2.52E+00,0.00E+00,0.074077151,2.02E-09 +182,"('biosphere3', 'a192f5ac-fb5d-4e14-ac11-3c38283da9d0')","'Cumene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,2.52E+00,0.00E+00,0.082402303,1.11E-08 +183,"('biosphere3', '35c746fb-2d4a-4d06-9955-1973ce67b74e')","'Cumene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.52E+00,0.00E+00,0.090727455,2.02E-08 +184,"('biosphere3', '9e8d685c-9948-4dc0-9c0b-d5c511e14d05')","'Cyanide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +185,"('biosphere3', 'd3e038e1-728c-4dea-ac30-c9abbbfcbc84')","'Cyanide' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +186,"('biosphere3', '921df5eb-cde6-40ea-8744-c02746db0a3c')","'Cyanide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +187,"('biosphere3', '932d7913-eb64-484c-b2ec-7aae36e29017')","'Cyanoacetic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +188,"('biosphere3', '5512f026-b3a9-419a-b787-c0be0b39be1c')","'Cyclohexane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.25E+00,0.00E+00,0.000595652,2.14E-08 +189,"('biosphere3', '2a042136-80fd-4c1c-8996-65a7985497d3')","'Cyclohexane (for all cycloalkanes)' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +190,"('biosphere3', 'ffaaffd3-5deb-4508-9e5f-e47f551ac2b8')","'Cyfluthrin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7861577.05,5.50E-06 +191,"('biosphere3', '54287273-55f8-4e8f-a115-8ff1aa5025d3')","'Cyhalothrin, gamma-' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +192,"('biosphere3', 'bc878fc6-d8a0-462f-91e1-11fb93b7928d')","'Dicamba' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,339.3177772,1.58E-06 +193,"('biosphere3', '89951b1a-9b6b-4bc7-82fc-6fc263e91936')","'Diethyl ether' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.76E+00,0.00E+00,0.001810619,1.25E-08 +194,"('biosphere3', '7e7039a1-6186-4ef6-a7e6-d135b7fe5601')","'Diethylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.114424316,0 +195,"('biosphere3', 'd439867e-7ef9-41aa-91e2-de8a922f9158')","'Diethylene glycol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.35E+00,0.00E+00,0,0 +196,"('biosphere3', 'bedc1f3e-71d2-4bb9-9699-c77603031f81')","'Diflubenzuron' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,203864.2011,1.44E-06 +197,"('biosphere3', '7ee1a767-185e-444b-913d-6acbfdbab3bd')","'Dimethyl malonate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,24.17399503,0 +198,"('biosphere3', 'edf9fe90-37ee-4d8b-af9b-2e959422abfd')","'Dimethylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.17E+00,0.00E+00,0.244852481,0 +199,"('biosphere3', '473826ae-125a-4b02-8c8e-c84322491d80')","'Dinitrogen monoxide' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",298,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +200,"('biosphere3', 'afd6d670-bbb0-4625-9730-04088a5b035e')","'Dinitrogen monoxide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",298,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +201,"('biosphere3', '20185046-64bb-4c09-a8e7-e8a9e144ca98')","'Dinitrogen monoxide' (kilogram, None, ('air',))",298,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +202,"('biosphere3', '6dc1b46f-ee89-4495-95c4-b8a637bcd6cb')","'Dinitrogen monoxide' (kilogram, None, ('air', 'urban air close to ground'))",298,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +203,"('biosphere3', 'f77c5e36-ee47-4437-b757-03139bb1d6d6')","'Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,106410.8281,28.49436228 +204,"('biosphere3', '082903e4-45d8-4078-94cb-736b15279277')","'Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,124675.9183,29.05797942 +205,"('biosphere3', '237a5f15-8119-472a-8988-88b7ecb42405')","'Dioxins, measured as 2,3,7,8-tetrachlorodibenzo-p-dioxin' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,142941.0086,29.62159656 +206,"('biosphere3', '9a1e90d7-af5d-41ab-bf7b-d4d4248d9e24')","'Dipropylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.407043417,0 +207,"('biosphere3', '57af157e-2054-407d-949b-8cc9c2aa4655')","'Elemental carbon' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +208,"('biosphere3', '4f446a20-f1a5-4bde-a7a0-441315db1833')","'Esfenvalerate' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,259125.7444,0 +209,"('biosphere3', 'e7e0031e-791d-42f4-b26c-ec322db637bc')","'Ethane' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,2.81E-01,0.00E+00,0,0 +210,"('biosphere3', '8e30c990-5ed4-4f94-9d0e-2f5e4ff1a1f9')","'Ethane' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,2.81E-01,0.00E+00,0,0 +211,"('biosphere3', '9ea11aea-7cb7-4b38-b936-a42c2a4bac97')","'Ethane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.81E-01,0.00E+00,0,0 +212,"('biosphere3', '16fcd4f9-0bb8-4b84-8334-3ffb1a17aa74')","'Ethane, 1,1,1,2-tetrafluoro-, HFC-134a' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1430,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,1.65E-08 +213,"('biosphere3', 'e87f039d-d9ce-4242-ac18-c9284cc80f3d')","'Ethane, 1,1,1,2-tetrafluoro-, HFC-134a' (kilogram, None, ('air',))",1430,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,1.72E-08 +214,"('biosphere3', 'fa0c2bee-8dd9-4f8a-8489-b1f3b43de958')","'Ethane, 1,1,1,2-tetrafluoro-, HFC-134a' (kilogram, None, ('air', 'urban air close to ground'))",1430,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,1.78E-08 +215,"('biosphere3', '99585564-bfce-4845-9aaa-2f24b8f26a41')","'Ethane, 1,1,1-trichloro-, HCFC-140' (kilogram, None, ('air', 'non-urban air or from high stacks'))",146,0.00E+00,0.00E+00,4.88E-03,0.00E+00,0.204908393,1.64E-08 +216,"('biosphere3', 'ce6294f5-2ed7-46ee-a967-33e265e34455')","'Ethane, 1,1,1-trichloro-, HCFC-140' (kilogram, None, ('air',))",146,0.00E+00,0.00E+00,4.88E-03,0.00E+00,0.204953177,1.77E-08 +217,"('biosphere3', 'cacfd448-6c2d-4061-9363-fd506b979f25')","'Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113' (kilogram, None, ('air',))",6130,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,4.10E-07 +218,"('biosphere3', '9b132374-dce2-4ce0-86aa-53201b30f617')","'Ethane, 1,1,2-trichloro-1,2,2-trifluoro-, CFC-113' (kilogram, None, ('air', 'urban air close to ground'))",6130,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,4.12E-07 +219,"('biosphere3', '1c4a106a-53bc-40f5-bcae-d30ab191dbfe')","'Ethane, 1,1-difluoro-, HFC-152a' (kilogram, None, ('air', 'non-urban air or from high stacks'))",124,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +220,"('biosphere3', '393d0862-04cc-45ae-8d08-9dc2a4461b35')","'Ethane, 1,1-difluoro-, HFC-152a' (kilogram, None, ('air', 'urban air close to ground'))",124,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +221,"('biosphere3', '89324b2f-1e73-4eb1-9716-96b9be0349ac')","'Ethane, 1,2-dichloro-' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.151546558,2.43E-07 +222,"('biosphere3', '03758df7-503a-400e-bc7b-ec05825761a5')","'Ethane, 1,2-dichloro-' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.151629931,4.15E-07 +223,"('biosphere3', '468bebea-17ee-49d3-b11d-c603d91c67c8')","'Ethane, 1,2-dichloro-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.151713304,5.87E-07 +224,"('biosphere3', '1584734d-c5c8-42a5-aa51-0f6a92a9cc0d')","'Ethane, 1,2-dichloro-1,1,2,2-tetrafluoro-, CFC-114' (kilogram, None, ('air', 'non-urban air or from high stacks'))",10000,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +225,"('biosphere3', '60268f3d-468b-487e-acb1-24d7250cb6b3')","'Ethane, 2-chloro-1,1,1,2-tetrafluoro-, HCFC-124' (kilogram, None, ('air',))",609,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +226,"('biosphere3', 'acc39720-dda7-4b3a-80c7-c6394cad4191')","'Ethane, hexafluoro-, HFC-116' (kilogram, None, ('air',))",12200,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +227,"('biosphere3', 'df5dd437-2e12-4af6-8f7a-9c8224857dc5')","'Ethane, hexafluoro-, HFC-116' (kilogram, None, ('air', 'urban air close to ground'))",12200,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +228,"('biosphere3', '0d3ccb17-b3fe-4c08-b7cb-458ed3ababf1')","'Ethanol' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.53E+00,0.00E+00,0.151221907,6.38E-10 +229,"('biosphere3', 'd3f5d0b9-0155-4800-9dbb-b0583948c8c6')","'Ethanol' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.53E+00,0.00E+00,0.152821078,2.14E-09 +230,"('biosphere3', '379a827c-3290-4810-9689-b9e892945836')","'Ethanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.53E+00,0.00E+00,0.154420248,3.64E-09 +231,"('biosphere3', '87f683ed-44ae-41a6-b4bc-230622f8cfef')","'Ethene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,9.00E+00,0.00E+00,0,0 +232,"('biosphere3', '9c2a7dc9-8b1f-46ba-bc16-0d761a4f6016')","'Ethene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,9.00E+00,0.00E+00,0,0 +233,"('biosphere3', '36270548-9316-424b-9aeb-e0de134b0be1')","'Ethene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,9.00E+00,0.00E+00,0,0 +234,"('biosphere3', '2a51889e-9264-45df-9753-64c25a755d9e')","'Ethene, chloro-' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,3.70E-06 +235,"('biosphere3', '127ff74d-018b-43b9-8a4e-fb5577d5ee5a')","'Ethene, chloro-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,6.78E-06 +236,"('biosphere3', '754028fd-e650-4804-922e-694a764ba578')","'Ethene, tetrachloro-' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,3.08E-02,0.00E+00,0.721533746,1.06E-06 +237,"('biosphere3', '9bc66656-9f37-44bc-ae0b-5d5243b8137e')","'Ethene, tetrachloro-' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,3.08E-02,0.00E+00,0.723338789,1.56E-06 +238,"('biosphere3', 'd2d4b344-3c58-4b0c-868a-ac0bdb2027dc')","'Ethene, tetrachloro-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.08E-02,0.00E+00,0.725143832,2.05E-06 +239,"('biosphere3', '41cce80a-82c1-4caa-b6ef-718ec4b83fd6')","'Ethyl acetate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.26E-01,0.00E+00,0.113169917,8.63E-09 +240,"('biosphere3', '6bd1ea0d-0fbb-46cd-a6b4-e699febbf4e8')","'Ethyl cellulose' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +241,"('biosphere3', '4569028c-d2d9-4937-bd92-44a6c72e2b1b')","'Ethylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,5.78E+00,0.00E+00,0.23144992,0 +242,"('biosphere3', 'c6d0e9b0-aadb-407b-9f39-8fbab93ffa55')","'Ethylene diamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +243,"('biosphere3', 'ffa34df1-d949-48e3-b602-183eee5df605')","'Ethylene glycol monoethyl ether' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.71E+00,0.00E+00,1.831131325,1.36E-07 +244,"('biosphere3', '0bb66845-6ccf-4648-b565-2e704989d7c0')","'Ethylene oxide' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.006214759,4.42E-07 +245,"('biosphere3', '43a411aa-8f29-4744-bc56-1deaa8105338')","'Ethylene oxide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,3.92E-02,0.00E+00,1.006214759,4.42E-07 +246,"('biosphere3', '4407dc37-09ec-4d52-b65a-9c3f0a88306d')","'Ethylene oxide' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,3.92E-02,0.00E+00,1.007022717,8.30E-07 +247,"('biosphere3', '4446c2d0-1bc1-422f-9b97-0867d5602dbb')","'Ethylene oxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,3.92E-02,0.00E+00,1.007830675,1.22E-06 +248,"('biosphere3', 'e64254e3-07d3-4330-b6de-6a858f108124')","'Ethyne' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,9.54E-01,0.00E+00,0,0 +249,"('biosphere3', '42a2f3e7-5393-4a69-9b0b-f70a9139ee24')","'Ethyne' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,9.54E-01,0.00E+00,0,0 +250,"('biosphere3', '1a13d6e7-45c9-427a-a3c9-38887ce7b86a')","'Ethyne' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,9.54E-01,0.00E+00,0,0 +251,"('biosphere3', 'f28d5dfb-632d-469b-b0c2-a55ce78155ff')","'Fenoxaprop' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +252,"('biosphere3', '3563bb9d-4020-4635-890b-6de95036911f')","'Fluazifop-p-butyl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,206.6045491,0 +253,"('biosphere3', '17b87359-36f1-4ad3-a019-73e40fc2efc7')","'Flufenacet' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3770.745038,0 +254,"('biosphere3', '421d36f5-2678-4c1b-ba10-6b43521f0859')","'Flumetsulam' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8673.147587,0 +255,"('biosphere3', '361176bc-ebe3-4f2b-8905-c87feec17d74')","'Flumiclorac-pentyl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1283.109173,0 +256,"('biosphere3', 'c1bcea7e-26d9-4714-950b-c425d78179fa')","'Flumioxazin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1719.720222,0 +257,"('biosphere3', 'd976062e-565d-4d61-933e-545c9d020f0a')","'Fluorine' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +258,"('biosphere3', 'b8d738ce-98cd-4487-88f9-686209bd1376')","'Fluorine' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +259,"('biosphere3', '1c389e81-9f9d-4e52-a6e9-11cc6b73d90d')","'Fluorine' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +260,"('biosphere3', 'aa567547-9821-456a-8412-e726735eeb29')","'Fluorine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +261,"('biosphere3', '521f6650-daec-4724-b40b-bf7fea17ceb2')","'Fluosilicic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +262,"('biosphere3', '9c54d6d2-16c9-40c1-86e4-57246f1e5820')","'Fomesafen' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,25.30247552,8.33E-06 +263,"('biosphere3', '22b0b296-d066-4159-a44b-69fdb17dc802')","'Formaldehyde' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,25.98236363,1.46E-06 +264,"('biosphere3', '9167dca7-615e-435c-8ba6-dbbf50e50e34')","'Formaldehyde' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,9.46E+00,0.00E+00,25.98236363,1.46E-06 +265,"('biosphere3', 'a861cfae-a310-4e9d-b9eb-5d555c9a684c')","'Formaldehyde' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,9.46E+00,0.00E+00,26.80367535,1.36E-05 +266,"('biosphere3', '20664d0e-24e3-4daa-8c5c-2ade6e0c2723')","'Formaldehyde' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,9.46E+00,0.00E+00,27.62498708,2.57E-05 +267,"('biosphere3', '2becddd1-aa5a-4c35-be0e-aefb9bd469f8')","'Formamide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.692326331,0 +268,"('biosphere3', 'e7f7fd97-a1c8-4be9-8a21-68ef06437d20')","'Formic acid' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,6.60E-02,0.00E+00,8.960304469,0 +269,"('biosphere3', '2cbe35d9-052c-4fe8-8eb2-08769f10b2c7')","'Formic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.60E-02,0.00E+00,9.20440888,0 +270,"('biosphere3', '142ce3b0-4bd6-47a3-9991-7c657c947ffe')","'Furan' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,9.15E+00,0.00E+00,0.002331002,1.54E-06 +271,"('biosphere3', '284d6491-de2c-4124-95db-7732cbb5136c')","'Furan' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,9.15E+00,0.00E+00,0.002555711,3.57E-05 +272,"('biosphere3', 'bd02a7ec-dcb5-4609-bc96-cc7a96601ce2')","'Glyphosate' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,13.41222339,2.22E-08 +273,"('biosphere3', '07f704a2-2746-4364-bcfd-606cefc30715')","'Heat, waste' (megajoule, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +274,"('biosphere3', 'f2d84834-d0b3-42e5-b41a-f04cc80337a4')","'Heat, waste' (megajoule, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +275,"('biosphere3', 'b411ec8b-c60a-4235-a3b2-8bf8443cbc55')","'Heat, waste' (megajoule, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +276,"('biosphere3', '76c79f4e-3cda-428e-b8f0-0ba8bbf272b6')","'Helium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +277,"('biosphere3', 'f2e74872-f56d-4e49-8dfd-1428c6fbd59c')","'Helium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +278,"('biosphere3', 'a91c4052-de24-456d-a1d5-4e2d9db201e3')","'Helium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +279,"('biosphere3', 'f4bb66f1-c78c-409f-8368-85c1205a3573')","'Heptane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.07E+00,0.00E+00,1.69E-05,0 +280,"('biosphere3', '41067ac7-bf36-47ef-a19f-683d9b758a28')","'Hexane' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.24E+00,0.00E+00,5.76E-05,2.64E-08 +281,"('biosphere3', '6b248529-b754-4be7-8b1a-91b9756fc2bc')","'Hexane' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.24E+00,0.00E+00,0.000135016,1.36E-07 +282,"('biosphere3', '3bbc78d0-08c4-48ef-a863-704e32fddcb3')","'Hexane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.24E+00,0.00E+00,0.000212392,2.46E-07 +283,"('biosphere3', '5f4baaf6-055e-491e-9852-258897ab5194')","'Hydrocarbons, aliphatic, alkanes, cyclic' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +284,"('biosphere3', '18282ab8-5b46-4c56-9038-588ed28a4a95')","'Hydrocarbons, aliphatic, alkanes, cyclic' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +285,"('biosphere3', '17a98e7f-a8fd-431d-9bb6-6c4bf3fc5517')","'Hydrocarbons, aliphatic, alkanes, unspecified' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +286,"('biosphere3', '2451f9df-0596-49ec-8380-08e4ad75a153')","'Hydrocarbons, aliphatic, alkanes, unspecified' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +287,"('biosphere3', 'bfa26b15-5340-441e-acb4-0bb19a4028d3')","'Hydrocarbons, aliphatic, alkanes, unspecified' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +288,"('biosphere3', '2d50f4c8-a917-4496-a7d9-470b080faf68')","'Hydrocarbons, aliphatic, unsaturated' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +289,"('biosphere3', '4cff006f-c6df-42a8-9dee-cc064f14326e')","'Hydrocarbons, aliphatic, unsaturated' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +290,"('biosphere3', '34837fe3-4332-493c-86bb-95a207d9c234')","'Hydrocarbons, aliphatic, unsaturated' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +291,"('biosphere3', 'c67be924-e68d-4bc1-9dd9-25f33a6cad34')","'Hydrocarbons, aromatic' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +292,"('biosphere3', '3cca7f02-58b0-4b49-9938-e0f8bea03064')","'Hydrocarbons, aromatic' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +293,"('biosphere3', '8b5d5c1d-c786-4367-94f0-fae42cd3ac0a')","'Hydrocarbons, aromatic' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +294,"('biosphere3', 'd6626dfb-3ac8-4169-9e75-54c41ef2a582')","'Hydrocarbons, chlorinated' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +295,"('biosphere3', 'd14eb0da-95fd-46c3-90db-55ca33d78701')","'Hydrocarbons, chlorinated' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +296,"('biosphere3', '626dd1d8-5355-40cb-8569-9c87c2c6ab18')","'Hydrocarbons, chlorinated' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +297,"('biosphere3', 'f9abb851-8731-4c5b-b057-863996a1f94a')","'Hydrocarbons, unspecified' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +298,"('biosphere3', 'b301fa9a-ba60-4eac-8ccc-6ccbdf099b35')","'Hydrogen' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +299,"('biosphere3', '8e906def-6bd5-4248-ac2b-94e6eedde3c9')","'Hydrogen' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +300,"('biosphere3', '50f3bc1e-fafc-44a2-9800-4468d8c3b643')","'Hydrogen chloride' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +301,"('biosphere3', '68e32537-beae-41c2-be72-74df4d273c11')","'Hydrogen chloride' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,8.80E-01,0.00E+00,0.00E+00,0.00E+00,0,0 +302,"('biosphere3', 'c941d6d0-a56c-4e6c-95de-ac685635218d')","'Hydrogen chloride' (kilogram, None, ('air',))",0,8.80E-01,0.00E+00,0.00E+00,0.00E+00,0,0 +303,"('biosphere3', 'afcbd980-14c2-4e1d-a0aa-5f6464e5c76b')","'Hydrogen chloride' (kilogram, None, ('air', 'urban air close to ground'))",0,8.80E-01,0.00E+00,0.00E+00,0.00E+00,0,0 +304,"('biosphere3', '8b7dc667-f04e-492c-a161-80b1482126b0')","'Hydrogen fluoride' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,1.60E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +305,"('biosphere3', '24541c8c-9f11-49ae-9de5-456f238a3f5e')","'Hydrogen fluoride' (kilogram, None, ('air',))",0,1.60E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +306,"('biosphere3', '257eacb9-96fe-4a3d-961a-f5e6c7823ff0')","'Hydrogen fluoride' (kilogram, None, ('air', 'urban air close to ground'))",0,1.60E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +307,"('biosphere3', '8d179ea0-7b52-441e-954b-b5349d66340f')","'Hydrogen peroxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +308,"('biosphere3', '0b0ea9d1-9c54-4e23-bcfc-1b8fc2cf0358')","'Hydrogen sulfide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +309,"('biosphere3', '20d4d821-f4f7-4017-8810-f822fcdf619e')","'Hydrogen sulfide' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +310,"('biosphere3', 'e3cfaa07-9b68-4461-a06f-a0e4e59d41d3')","'Hydrogen sulfide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +311,"('biosphere3', '0cdaaa7e-3c23-419d-8ad5-12dc93c2e1e3')","'Hydrogen-3, Tritium' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +312,"('biosphere3', '334548b2-e05c-4e7b-9746-c27dd2aaa58c')","'Imazamox' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,910.5227643,0 +313,"('biosphere3', '51dfb4b5-5422-40b7-8692-1ca3559c0a8b')","'Imazaquin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +314,"('biosphere3', '66288ede-0d82-4069-886a-d8b2f38f0128')","'Imazethapyr' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,96.22935832,1.65E-07 +315,"('biosphere3', '1471acca-34ab-4e04-9bd6-e3825b20580f')","'Iodine' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +316,"('biosphere3', '446d8fe4-fde6-4640-bc23-f04a663bbc04')","'Iodine' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +317,"('biosphere3', 'f9923ae7-bdab-44d8-897c-44310aea76b7')","'Iodine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +318,"('biosphere3', '4649902d-edc5-4d34-ae55-59993fe732d9')","'Iodine-129' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +319,"('biosphere3', '03e91172-fca0-47f3-9014-22ae3136251b')","'Iodine-131' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +320,"('biosphere3', 'eadea134-34d3-4581-9b0b-a59533dfd526')","'Iodine-133' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +321,"('biosphere3', 'e8bd2edd-f937-49f6-9e8b-9f445278775e')","'Iron' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +322,"('biosphere3', '76152de4-9499-48f7-af98-a5d41842484a')","'Iron' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +323,"('biosphere3', '8dba66e2-0f2e-4038-84ef-1e40b4f573a6')","'Iron' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +324,"('biosphere3', '32cd0492-c0cb-4898-a2b1-675eedc5b688')","'Iron' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +325,"('biosphere3', 'b465eb7f-dfe9-4057-ad17-c451d58fd753')","'Isocyanic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +326,"('biosphere3', 'bf633941-aa40-4c37-b361-b5cbfb1089f5')","'Isoprene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.06E+01,0.00E+00,2.89E-05,1.46E-09 +327,"('biosphere3', '0c209634-80bb-4909-8442-3189b7cb01d7')","'Isoprene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.06E+01,0.00E+00,5.69E-05,6.81E-08 +328,"('biosphere3', 'f72fe27e-d3bf-45f7-8950-542c72cb4502')","'Isopropylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.183766566,0 +329,"('biosphere3', '28be1d65-6b09-4ebd-8599-4366c3c2abab')","'Krypton-85' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +330,"('biosphere3', '8aa45af3-ff38-4330-9870-81fd360db53b')","'Krypton-85m' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +331,"('biosphere3', 'c5cd9e97-8986-4cb5-b3a5-adac2cc40d1a')","'Krypton-87' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +332,"('biosphere3', '56ce80e5-9a77-4a80-ad65-6208db560be5')","'Krypton-88' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +333,"('biosphere3', '24594cef-c50b-4e02-a5e3-c40cb06fea18')","'Krypton-89' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +334,"('biosphere3', '7ad7644f-8796-438e-a15b-86345622886b')","'Lactic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +335,"('biosphere3', '470558a5-494c-4298-8cf8-9a64900b8d65')","'Lactofen' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +336,"('biosphere3', '201afd00-a74f-4ede-bbf7-770e39ed6471')","'Lanthanum-140' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +337,"('biosphere3', '9ee7f4ab-b826-47ae-8623-e138f944b42e')","'Lead' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,176.062889,0.00959508 +338,"('biosphere3', 'fe4613d7-1ed8-427d-9b06-c8e8f4f5e1b1')","'Lead' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,176.062889,0.00959508 +339,"('biosphere3', '2718482b-8399-442e-b89a-52fbcc22d2e6')","'Lead' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,176.062889,0.00959508 +340,"('biosphere3', '8e123669-94d3-41d8-9480-a79211fe7c43')","'Lead' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,174.8632489,0.009471147 +341,"('biosphere3', '6a903634-c97f-4c49-a7c0-88f0e6ac7a23')","'Lead' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,173.6636087,0.009347214 +342,"('biosphere3', 'e8783a01-d3f5-4c08-b7b0-12af0f33c20d')","'Lead-210' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +343,"('biosphere3', '00e73fdb-98df-4a03-8290-79931cddfd12')","'Lead-210' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +344,"('biosphere3', '356c6086-4835-4a0d-b1f2-10f8b6656d23')","'Lead-210' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +345,"('biosphere3', '85466e0f-e5b5-4084-9338-59e317f7cb09')","'Lithium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +346,"('biosphere3', '59542265-cf1b-4ad9-8477-699179fe2b2b')","'Magnesium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +347,"('biosphere3', '0437e787-ef47-4a50-b11f-df7c743e860c')","'Magnesium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +348,"('biosphere3', 'aeefa758-5f4f-4bb4-a28a-4075e81f2fde')","'Magnesium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +349,"('biosphere3', 'ebfe261d-ab0d-4ade-8743-183c8c6bdcc6')","'Magnesium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +350,"('biosphere3', '0af26a55-d357-469f-abad-8ced785cb4fb')","'Manganese' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +351,"('biosphere3', '2460f868-54a9-404c-bec8-c809a44ae72c')","'Manganese' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +352,"('biosphere3', '295060ba-3c3d-45e4-99ca-e17b1204b553')","'Manganese' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +353,"('biosphere3', 'b0546417-3064-4878-bd6f-2da75cefdf63')","'Manganese' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +354,"('biosphere3', '46a9723a-aca5-4b66-9367-47412ec9e3a0')","'Manganese-54' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +355,"('biosphere3', 'dc90db73-6f27-403d-baf1-cb7e0b6cae31')","'Mercury' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,12297.33467,0.861765404 +356,"('biosphere3', '48aa661d-be05-4c24-94fe-8d6feb3dcb31')","'Mercury' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,12297.33467,0.861765404 +357,"('biosphere3', '5ec9c16a-959d-44cd-be7d-a935727d2151')","'Mercury' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,12297.33467,0.861765404 +358,"('biosphere3', '71234253-b3a7-4dfe-b166-a484ad15bee7')","'Mercury' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,12181.60116,0.841983552 +359,"('biosphere3', 'a850e6de-a007-432f-be7f-ce6e2cf1f2ae')","'Mercury' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,12065.86764,0.8222017 +360,"('biosphere3', 'b53d3744-3629-4219-be20-980865e54031')","'Methane' (kilogram, None, ('air', 'urban air close to ground'))",25,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +361,"('biosphere3', '8c283de2-50d3-40c8-8bff-1e172c3398f8')","'Methane, bromo-, Halon 1001' (kilogram, None, ('air',))",5,0.00E+00,0.00E+00,1.87E-02,0.00E+00,11.64402781,9.55E-05 +362,"('biosphere3', '494eb62d-3e16-4a81-b344-6d6dfd9fd4e2')","'Methane, bromochlorodifluoro-, Halon 1211' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1890,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +363,"('biosphere3', '82957257-07f3-4536-ac8b-175cb2353c75')","'Methane, bromotrifluoro-, Halon 1301' (kilogram, None, ('air', 'non-urban air or from high stacks'))",7140,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +364,"('biosphere3', '18ddd879-5496-4419-8ab7-e0d3864d977d')","'Methane, bromotrifluoro-, Halon 1301' (kilogram, None, ('air', 'urban air close to ground'))",7140,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +365,"('biosphere3', '56b7d3b6-83d7-42b0-a65b-5ad23e29db47')","'Methane, chlorodifluoro-, HCFC-22' (kilogram, None, ('air', 'non-urban air or from high stacks'))",1810,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,8.80E-09 +366,"('biosphere3', '8ca6c84b-7f56-47e6-8d17-4f2dbc49a943')","'Methane, chlorodifluoro-, HCFC-22' (kilogram, None, ('air', 'urban air close to ground'))",1810,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,9.57E-09 +367,"('biosphere3', 'd4b61c6c-a620-4a91-afc6-ca87ef97b55a')","'Methane, dichloro-, HCC-30' (kilogram, None, ('air', 'non-urban air or from high stacks'))",8.7,0.00E+00,0.00E+00,4.14E-02,0.00E+00,0.096914312,5.61E-07 +368,"('biosphere3', '2716807d-0266-48ff-bb7a-6e6c5fbfd5c5')","'Methane, dichloro-, HCC-30' (kilogram, None, ('air', 'urban air close to ground'))",8.7,0.00E+00,0.00E+00,4.14E-02,0.00E+00,0.097015436,1.13E-06 +369,"('biosphere3', 'e93ba406-3df8-4e34-be54-0d556b2bb629')","'Methane, dichlorodifluoro-, CFC-12' (kilogram, None, ('air', 'non-urban air or from high stacks'))",10900,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,2.30E-05 +370,"('biosphere3', 'c0e8ec60-a5ae-432e-97a5-cf76b6247a00')","'Methane, dichlorodifluoro-, CFC-12' (kilogram, None, ('air',))",10900,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,2.31E-05 +371,"('biosphere3', '31a3e44c-4098-461e-aba2-f79540e05087')","'Methane, dichlorodifluoro-, CFC-12' (kilogram, None, ('air', 'urban air close to ground'))",10900,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,2.32E-05 +372,"('biosphere3', '3c8af80d-7ff8-43f4-b1a7-cef73b1b4682')","'Methane, dichlorofluoro-, HCFC-21' (kilogram, None, ('air', 'urban air close to ground'))",151,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +373,"('biosphere3', '6b1b495b-70ee-4be6-b1c2-3031aa4d6add')","'Methane, fossil' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",25,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +374,"('biosphere3', '70ef743b-3ed5-4a6d-b192-fb6d62378555')","'Methane, fossil' (kilogram, None, ('air', 'non-urban air or from high stacks'))",25,0.00E+00,0.00E+00,1.44E-02,0.00E+00,0,0 +375,"('biosphere3', '0795345f-c7ae-410c-ad25-1845784c75f5')","'Methane, fossil' (kilogram, None, ('air',))",25,0.00E+00,0.00E+00,1.44E-02,0.00E+00,0,0 +376,"('biosphere3', '5f7aad3d-566c-4d0d-ad59-e765f971aa0f')","'Methane, fossil' (kilogram, None, ('air', 'urban air close to ground'))",25,0.00E+00,0.00E+00,1.44E-02,0.00E+00,0,0 +377,"('biosphere3', '9541a975-800f-4fed-9edf-28f6e411a015')","'Methane, from soil or biomass stock' (kilogram, None, ('air', 'non-urban air or from high stacks'))",25,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +378,"('biosphere3', 'ed63abd0-7cc6-4825-8759-b367e560fe95')","'Methane, monochloro-, R-40' (kilogram, None, ('air', 'non-urban air or from high stacks'))",13,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.063131177,4.41E-07 +379,"('biosphere3', '57bdb443-d4a6-423d-8024-959b8261d02e')","'Methane, non-fossil' (kilogram, None, ('air', 'non-urban air or from high stacks'))",25,0.00E+00,0.00E+00,1.44E-02,0.00E+00,0,0 +380,"('biosphere3', 'da1157e2-7593-4dfd-80dd-a3449b37a4d8')","'Methane, non-fossil' (kilogram, None, ('air',))",25,0.00E+00,0.00E+00,1.44E-02,0.00E+00,0,0 +381,"('biosphere3', 'baf58fc9-573c-419c-8c16-831ac03203b9')","'Methane, non-fossil' (kilogram, None, ('air', 'urban air close to ground'))",25,0.00E+00,0.00E+00,1.44E-02,0.00E+00,0,0 +382,"('biosphere3', '86d12e70-0c64-4ecf-ba52-114fa0c5d402')","'Methane, tetrachloro-, R-10' (kilogram, None, ('air',))",1400,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.066649883,0.000201498 +383,"('biosphere3', '5c97dd6c-aaa5-4477-aaf8-dbd0674499c4')","'Methane, tetrachloro-, R-10' (kilogram, None, ('air', 'urban air close to ground'))",1400,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.066749126,0.000207153 +384,"('biosphere3', '33681770-a0e1-4ce8-93c3-941fd607fa5f')","'Methane, tetrafluoro-, R-14' (kilogram, None, ('air',))",7390,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +385,"('biosphere3', 'dfe1da1e-7756-4f7e-a393-6d5e2342a962')","'Methane, tetrafluoro-, R-14' (kilogram, None, ('air', 'urban air close to ground'))",7390,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +386,"('biosphere3', '33a69662-583b-45b8-8cb9-94f59fca9133')","'Methane, trichlorofluoro-, CFC-11' (kilogram, None, ('air', 'urban air close to ground'))",4750,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,1.81E-06 +387,"('biosphere3', '8f87dcf1-0177-4d62-bea0-a5dd8647ef8c')","'Methane, trifluoro-, HFC-23' (kilogram, None, ('air', 'urban air close to ground'))",14800,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +388,"('biosphere3', '6f3fd3ca-1340-421a-9149-98a21c102041')","'Methanesulfonic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +389,"('biosphere3', '1d2439de-751b-469a-ba3e-fda8fe9802b2')","'Methanol' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,6.72E-01,0.00E+00,0.222257882,4.13E-09 +390,"('biosphere3', '0ebdb68a-f50d-4b0c-ad4b-3a1104d8b454')","'Methanol' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,6.72E-01,0.00E+00,0.223958111,1.02E-08 +391,"('biosphere3', 'f873299d-0675-4fdc-ad01-c5a4b951b583')","'Methanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.72E-01,0.00E+00,0.22565834,1.63E-08 +392,"('biosphere3', 'ef06f2a4-4b8c-4740-9e06-0c2126d1839a')","'Methyl acetate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,7.20E-02,0.00E+00,0.576607505,0 +393,"('biosphere3', '6994b171-4ce1-4877-9c17-c206180fcea3')","'Methyl acrylate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.62762952,0 +394,"('biosphere3', '7238734e-18ef-4759-914d-61e9ed11bd4e')","'Methyl amine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +395,"('biosphere3', '055bf521-b162-4172-b7db-da4df197d671')","'Methyl borate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +396,"('biosphere3', '26b5c174-e20e-430a-a4b1-44de4af8b40f')","'Methyl ethyl ketone' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.057728292,1.27E-09 +397,"('biosphere3', 'a71b27f2-3bcb-4bcc-a0c6-b6a123f0b42e')","'Methyl formate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,5.70E-02,0.00E+00,0.529308946,0 +398,"('biosphere3', '80ef64e4-312c-485a-be3d-30856adc0c11')","'Methyl lactate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.67E+00,0.00E+00,2.241083646,0 +399,"('biosphere3', '23b6a72b-f926-40e3-b88a-0fb565d36de1')","'Methyl parathion' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,411.1785638,4.69E-06 +400,"('biosphere3', 'b90c9726-20b9-4d44-b169-368273e9a3d4')","'Metolachlor' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1170.784617,1.42E-07 +401,"('biosphere3', 'a1201fc1-a799-4832-940b-a0b247f2cf42')","'Metribuzin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,658.9867109,5.44E-07 +402,"('biosphere3', '35b4d818-1019-413b-b99d-d351d8a67ac4')","'Molybdenum' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,118.3029799,0.001690823 +403,"('biosphere3', '5fa36ce3-aed0-443b-a09d-4cdf25b41995')","'Molybdenum' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,118.3029799,0.001690823 +404,"('biosphere3', '640e30d2-3158-4a1a-82ef-fd0c72922c9a')","'Molybdenum' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,117.8250086,0.001662043 +405,"('biosphere3', 'c26d4716-ce1e-43da-a662-cd9498b1e8bc')","'Molybdenum' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,117.3470372,0.001633263 +406,"('biosphere3', 'f3f34697-7231-4575-aaf5-e35b972d329a')","'Monochloroethane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,4.58E-08 +407,"('biosphere3', 'b9f74a13-1d9c-444e-ba61-1ea1abac70b7')","'Monoethanolamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4.14229732,0 +408,"('biosphere3', 'cfdbc576-e8dc-44ef-bdf2-ddd7009ce57e')","'m-Xylene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,9.75E+00,0.00E+00,0.018466297,0 +409,"('biosphere3', '10571d92-ea97-4ac6-adb6-b25893a631cb')","'m-Xylene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,9.75E+00,0.00E+00,0.020485791,0 +410,"('biosphere3', 'c89873de-cd23-4323-a948-f5cfeebd2fc9')","'Nickel' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6137.384705,5.00E-05 +411,"('biosphere3', '0545c382-2312-43b6-9ec3-63dbb1438565')","'Nickel' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6137.384705,5.00E-05 +412,"('biosphere3', 'e8fc62ba-678e-4706-97d2-b79d83e227d5')","'Nickel' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6137.384705,5.00E-05 +413,"('biosphere3', 'a5506f4b-113f-4713-95c3-c819dde6e48b')","'Nickel' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6109.772661,5.47E-05 +414,"('biosphere3', 'e43a270f-4f88-4789-a0b8-7aba56677743')","'Nickel' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6082.160616,5.93E-05 +415,"('biosphere3', '6f1e995b-5915-4363-bd2c-d1e76ee446e0')","'Niobium-95' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +416,"('biosphere3', '205617ae-ebc5-4245-8df6-8710d5d40615')","'Nitrate' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +417,"('biosphere3', 'cbd70647-6237-462a-9d01-d197a8b08506')","'Nitrate' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +418,"('biosphere3', '15ca802b-f541-44aa-bd33-35560a053193')","'Nitrate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +419,"('biosphere3', '1753af55-cfa1-4fb2-a059-33594a759982')","'Nitrobenzene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,5.65E-02,0.00E+00,10.95063499,9.45E-06 +420,"('biosphere3', 'e5ea66ee-28e2-4e9b-9a25-4414551d821c')","'Nitrogen' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +421,"('biosphere3', '1fdc280a-34d3-4513-b110-3f526b17c443')","'Nitrogen fluoride' (kilogram, None, ('air', 'urban air close to ground'))",17200,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +422,"('biosphere3', '4841a0fe-c250-4a39-94a1-1bc31426c0f1')","'Nitrogen oxides' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +423,"('biosphere3', '77357947-ccc5-438e-9996-95e65e1e1bce')","'Nitrogen oxides' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,7.00E-01,4.43E-02,2.48E+01,0.00E+00,0,0 +424,"('biosphere3', 'c1b91234-6f24-417b-8309-46111d09c457')","'Nitrogen oxides' (kilogram, None, ('air',))",0,7.00E-01,4.43E-02,2.48E+01,0.00E+00,0,0 +425,"('biosphere3', 'd068f3e2-b033-417b-a359-ca4f25da9731')","'Nitrogen oxides' (kilogram, None, ('air', 'urban air close to ground'))",0,7.00E-01,4.43E-02,2.48E+01,0.00E+00,0,0 +426,"('biosphere3', '36c96aed-9335-4564-8cdd-46f01a13700c')","'NMVOC, non-methane volatile organic compounds, unspecified origin' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +427,"('biosphere3', '33b38ccb-593b-4b11-b965-10d747ba3556')","'NMVOC, non-methane volatile organic compounds, unspecified origin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +428,"('biosphere3', 'd3260d0e-8203-4cbb-a45a-6a13131a5108')","'NMVOC, non-methane volatile organic compounds, unspecified origin' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +429,"('biosphere3', '175baa64-d985-4c5e-84ef-67cc3a1cf952')","'NMVOC, non-methane volatile organic compounds, unspecified origin' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +430,"('biosphere3', 'bd64a010-0115-47ca-942f-cbdac1d26b87')","'Noble gases, radioactive, unspecified' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +431,"('biosphere3', 'a4420691-4666-4855-9124-3030ed233407')","'o-Nitrotoluene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,27.44900717,8.99E-06 +432,"('biosphere3', 'd7a10d03-8f76-4b5f-8dd5-5b0f827568fc')","'Organic carbon' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +433,"('biosphere3', '5a6eb27d-9157-46d5-be32-92bbd543ada9')","'o-Xylene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,7.64E+00,0.00E+00,0.032142253,0 +434,"('biosphere3', '2058d91e-bb9f-4fce-8e53-131825b14a23')","'Ozone' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +435,"('biosphere3', 'd4f71fc2-2fb6-4d80-b3cd-6e4f197a114f')","'Ozone' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +436,"('biosphere3', '13d898ac-b9be-4723-a153-565e2a9144ac')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +437,"('biosphere3', '3e5d7d91-67d7-4afb-91dd-36fab58e4685')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +438,"('biosphere3', '9d1efa17-070a-4602-a65f-daf5056b0647')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +439,"('biosphere3', '428e384f-5146-4023-9e62-cca1db3ed321')","'Paraffins' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +440,"('biosphere3', 'a794b444-2b77-4449-8592-0efda101b0c2')","'Paraquat' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1333.794438,1.63E-06 +441,"('biosphere3', '051aaf7a-6c1a-4e86-999f-85d5f0830df6')","'Particulates, < 2.5 um' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +442,"('biosphere3', 'ddd99a3a-be86-423d-b36a-a9dc8af1b1f8')","'Particulates, < 2.5 um' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +443,"('biosphere3', '66f50b33-fd62-4fdd-a373-c5b0de7de00d')","'Particulates, < 2.5 um' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +444,"('biosphere3', '21e46cb8-6233-4c99-bac3-c41d2ab99498')","'Particulates, < 2.5 um' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +445,"('biosphere3', '230d8a0a-517c-43fe-8357-1818dd12997a')","'Particulates, < 2.5 um' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +446,"('biosphere3', 'b001715e-60e4-4f1d-949d-1acfab65bd8f')","'Particulates, > 10 um' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +447,"('biosphere3', '7678cec7-b8e1-439d-8242-99cd452834b1')","'Particulates, > 10 um' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +448,"('biosphere3', '66020d27-7ae4-4e59-83a3-89214b72c40a')","'Particulates, > 10 um' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +449,"('biosphere3', '1eb1b94c-e9d8-47ab-969b-9cca920157d8')","'Particulates, > 10 um' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +450,"('biosphere3', '5716c728-bd33-414d-8691-16e5534f5d37')","'Particulates, > 2.5 um, and < 10um' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +451,"('biosphere3', '295c9740-6fdb-4676-9eb8-15e3786f713d')","'Particulates, > 2.5 um, and < 10um' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +452,"('biosphere3', 'b967e1bf-f09b-4c89-8740-ace21db47bba')","'Particulates, > 2.5 um, and < 10um' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +453,"('biosphere3', 'ccb169c3-8aae-4727-89bb-a7dd122946f3')","'Particulates, > 2.5 um, and < 10um' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +454,"('biosphere3', 'e4e17609-7a80-455d-a4e3-88af8695f987')","'Pendimethalin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2426.799901,1.01E-07 +455,"('biosphere3', '2f052025-4072-4d8e-b22d-68d50bfb260c')","'Pentane' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.31E+00,0.00E+00,0.005981655,0 +456,"('biosphere3', '516606eb-99f6-4e8c-b99a-6b439aaed48c')","'Pentane' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.31E+00,0.00E+00,0.010018139,0 +457,"('biosphere3', '0b9698ec-8b52-4986-8f9f-ad30915aa00c')","'Pentane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.31E+00,0.00E+00,0.014054623,0 +458,"('biosphere3', 'e2ccc98a-6d4e-443b-b11f-d16f32782833')","'Perfluoropentane' (kilogram, None, ('air',))",9160,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +459,"('biosphere3', '77fc7d6f-d243-428d-a4f1-19e08364e9da')","'Permethrin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6050.100803,5.07E-07 +460,"('biosphere3', '63974d2c-11f3-45eb-be9c-726261b04d85')","'Phenol' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,2.76E+00,0.00E+00,15.56100073,1.32E-08 +461,"('biosphere3', '5896c761-4e02-4573-8747-c4bbf73162c0')","'Phenol' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,2.76E+00,0.00E+00,19.60225162,4.86E-08 +462,"('biosphere3', 'd761d96f-d236-4131-89c8-ad3269d02a6b')","'Phenol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.76E+00,0.00E+00,23.64350251,8.41E-08 +463,"('biosphere3', 'e4f501bb-02e2-4562-be3c-5a047b6d2581')","'Phenol, 2,4-dichloro' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1194.236921,2.72E-05 +464,"('biosphere3', 'dc46afa7-0142-49e8-a353-ab6a1327bbc8')","'Phenol, pentachloro-' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3414.137148,1.18E-05 +465,"('biosphere3', 'cec6e39b-700c-432f-8c80-4840b0ddc92e')","'Phenol, pentachloro-' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3981.805444,1.27E-05 +466,"('biosphere3', '08b928d8-1812-4e0b-b057-4bcaaba24865')","'Phenol, pentachloro-' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4549.47374,1.37E-05 +467,"('biosphere3', 'fba3ef86-de65-4079-868d-8b6438d46092')","'Phosphine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +468,"('biosphere3', '5d0058e0-ad1b-4c15-b0ff-a665bb04154f')","'Phosphoric acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +469,"('biosphere3', 'e2d35af7-9806-46ff-9b75-b124a48fa5a1')","'Phosphorus' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,1.12E+00,0.00E+00,0.00E+00,0,0 +470,"('biosphere3', 'ea4e9316-5080-4b3b-bbf3-1949f6d7577a')","'Phosphorus' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,1.12E+00,0.00E+00,0.00E+00,0,0 +471,"('biosphere3', 'd761f94e-517d-41cf-89fa-17dc72f7a69b')","'Phosphorus' (kilogram, None, ('air',))",0,0.00E+00,1.12E+00,0.00E+00,0.00E+00,0,0 +472,"('biosphere3', '198ce8e3-f05a-4bec-9f7f-325347453326')","'Phosphorus' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,1.12E+00,0.00E+00,0.00E+00,0,0 +473,"('biosphere3', '16addd86-288b-419a-8217-75e4197c5f9d')","'Phosphorus trichloride' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +474,"('biosphere3', 'd4238781-b3da-4efc-b20f-a5ec1d9d85b6')","'Platinum' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +475,"('biosphere3', 'e4ad89a2-c1d3-4d0b-ad44-2a7ff00b1f39')","'Platinum' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +476,"('biosphere3', '59c2b461-3992-4b18-8f27-699f4880cc4e')","'Plutonium-238' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +477,"('biosphere3', '4f3ee6dc-f092-429b-82bc-b9538bdb751b')","'Plutonium-alpha' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +478,"('biosphere3', '44dd80c7-9960-4881-8431-939509b81f53')","'Polonium-210' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +479,"('biosphere3', '13738d15-2256-40f6-99da-d802e5f4c747')","'Polonium-210' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +480,"('biosphere3', 'ab046420-da89-48e5-9e05-2a2b703eb2fe')","'Polonium-210' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +481,"('biosphere3', 'c9b97088-efc6-43c1-8d26-f78d6cdbb50b')","'Polychlorinated biphenyls' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,224.3936913,9.05E-05 +482,"('biosphere3', '456b8003-1508-4000-a53c-752e02023445')","'Polychlorinated biphenyls' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,234.0309776,9.27E-05 +483,"('biosphere3', '926fdcf3-6c44-44e2-acb6-159060ac65cf')","'Potassium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +484,"('biosphere3', '9597c1a2-ecda-4a89-97c5-efcdc679058d')","'Potassium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +485,"('biosphere3', '756b1234-887b-406e-88ed-b50ba4694f09')","'Potassium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +486,"('biosphere3', 'aac39edf-68c5-4f38-9aa9-17e3ca265109')","'Potassium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +487,"('biosphere3', '7069a2cd-257a-4a29-b10f-1e21ed853709')","'Potassium-40' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +488,"('biosphere3', '4bc2ecf7-fbc3-4c74-81f6-30f9f4425d30')","'Potassium-40' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +489,"('biosphere3', 'e47a779e-8fcb-4d0e-bcff-b9b14a5be827')","'Potassium-40' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +490,"('biosphere3', '555aed47-6c62-4cbe-b9b8-d01229284c8a')","'Propanal' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.382028044,0 +491,"('biosphere3', 'eeaeefc1-0af9-45e5-99a8-2333a387f0ae')","'Propanal' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.375666926,0 +492,"('biosphere3', '9beb60a3-3a8c-4345-9a0e-107eec2f709f')","'Propane' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,4.89E-01,0.00E+00,0,0 +493,"('biosphere3', '3a6c936c-0276-4f11-9d98-1bd011387a6e')","'Propane' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,4.89E-01,0.00E+00,0,0 +494,"('biosphere3', '98c66fdb-091d-46e9-a533-686f821e8f6a')","'Propane' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,4.89E-01,0.00E+00,0,0 +495,"('biosphere3', '4a6af581-af93-4d79-9f45-a5c43f463bbb')","'Propanol' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.50E+00,0.00E+00,0.093292536,0 +496,"('biosphere3', '23856318-9583-426b-ab04-12e4506b60a8')","'Propene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.17E+01,0.00E+00,0,0 +497,"('biosphere3', '64165202-4870-47d0-8602-b85e5d672865')","'Propene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.17E+01,0.00E+00,0,0 +498,"('biosphere3', 'ada09403-d5f2-4496-9201-a6dcca0b1717')","'Propene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.17E+01,0.00E+00,0,0 +499,"('biosphere3', '06699be8-f522-427e-89b5-8ad948a39ecb')","'Propiconazole' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,295.1108069,1.08E-06 +500,"('biosphere3', '0f907765-2a94-48a8-8978-55a2757d3e24')","'Propionic acid' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.22E+00,0.00E+00,10.32276954,0 +501,"('biosphere3', 'a1ecc854-a399-4b01-bae2-3a88b12ed44f')","'Propionic acid' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.22E+00,0.00E+00,10.53472203,0 +502,"('biosphere3', 'f1c0cd31-8d5e-4bc9-91f6-79e76329234e')","'Propionic acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.22E+00,0.00E+00,10.74667451,0 +503,"('biosphere3', '8c6412f6-e293-499a-897a-e33e3774b665')","'Propylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.095306039,0 +504,"('biosphere3', 'f276d4ca-b1ad-4575-9442-e35b5e3b618b')","'Propylene oxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,2.94E-01,0.00E+00,1.304292416,8.10E-06 +505,"('biosphere3', 'fb13070e-06f1-4964-832f-a23945b880cc')","'Protactinium-234' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +506,"('biosphere3', '99c0e2e2-6433-44f9-84f8-8cfa35c9099e')","'Pyraclostrobin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +507,"('biosphere3', '7c034422-6b7a-49c8-afcf-d02cadce9cd5')","'Quizalofop-ethyl' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1028.900828,3.47E-06 +508,"('biosphere3', 'ca828b6a-5c31-4cce-941e-cc7c1900e6fe')","'Radioactive species, other beta emitters' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +509,"('biosphere3', 'bc13f992-b93e-4ef3-921a-2898e7674a7c')","'Radioactive species, other beta emitters' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +510,"('biosphere3', 'd1679eda-eac2-4be4-876f-3be480c53dc4')","'Radium-226' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +511,"('biosphere3', 'b912f4b4-34ac-4ec1-aba1-01b9c83683e5')","'Radium-226' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +512,"('biosphere3', '1c02cff4-e852-489b-893c-d3ed30eb8ca5')","'Radium-226' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +513,"('biosphere3', '793f8194-88c0-4315-b59e-58de48ba6ce4')","'Radium-228' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +514,"('biosphere3', 'd5ca33b3-f101-4371-b684-c720463ae2ab')","'Radium-228' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +515,"('biosphere3', 'deafd761-4499-40e3-8667-06c91f204f6f')","'Radium-228' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +516,"('biosphere3', 'e70d3563-78c4-42cf-8cf3-5ac42c499589')","'Radon-220' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +517,"('biosphere3', 'b613b3b0-a98d-4b7a-a908-999ccfe1452d')","'Radon-220' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +518,"('biosphere3', '98bd0642-19d0-4c76-930e-03136c21cc20')","'Radon-220' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +519,"('biosphere3', '4ac6979b-55f2-42ae-8d7e-37846e92506c')","'Radon-222' (kilo Becquerel, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +520,"('biosphere3', '1551f1cd-7cb7-4f68-a628-cb9301323c7b')","'Radon-222' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +521,"('biosphere3', 'cb3265f8-49a0-4b09-9bd9-c374370c4cc4')","'Radon-222' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +522,"('biosphere3', '6fd55524-c309-4eb8-bff6-9c606e3a82d7')","'Radon-222' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +523,"('biosphere3', '22798ed2-c8bb-42d5-8d7c-8e3b14d3bc3e')","'Ruthenium-103' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +524,"('biosphere3', '3a3489d9-0d1f-4fb1-910a-1fdc7f1e4f71')","'Scandium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +525,"('biosphere3', '17505bf8-40af-4580-8608-5841ff063d23')","'Scandium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +526,"('biosphere3', '8000fc7d-edfe-4970-9224-a4c05281d46b')","'Scandium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +527,"('biosphere3', 'bba88093-bd9b-4b95-b869-74e718b796dc')","'Scandium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +528,"('biosphere3', '93e71b71-05d4-4a44-a85a-592a6f21cf0c')","'Selenium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2989.82139,0 +529,"('biosphere3', 'fbfabc26-84d9-46cd-9d1b-1a0060325b64')","'Selenium' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2989.82139,0 +530,"('biosphere3', 'e6551223-73b6-4289-b841-c5cdeb25abd9')","'Selenium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2989.82139,0 +531,"('biosphere3', '454c61fd-c52b-4a04-9731-f141bb7b5264')","'Selenium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2976.965009,0 +532,"('biosphere3', 'a79be2ee-ac83-4328-a136-a34ba1f99089')","'Selenium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2964.108628,0 +533,"('biosphere3', '88f99b72-03aa-4ed5-a3b7-33791ef70932')","'Sethoxydim' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,37.39328139,2.87E-08 +534,"('biosphere3', '2cea4705-5460-4f03-80ca-1aaf90f17c3a')","'Silicon' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +535,"('biosphere3', '479daf8f-657e-46a6-bdea-3cb2c61c44b1')","'Silicon' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +536,"('biosphere3', 'e98b9661-2844-49dc-9ae4-855b9912c700')","'Silicon' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +537,"('biosphere3', '997dccfb-6574-46b8-ad93-7f31074abf9a')","'Silicon' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +538,"('biosphere3', 'ee7b9d2a-a8d7-4df3-ad61-7dd51a39480d')","'Silicon tetrafluoride' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +539,"('biosphere3', '0ed1b1a1-e56d-4860-bac7-d76a39bde930')","'Silver' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,80815.45971,0.026354512 +540,"('biosphere3', '35df5fe0-c90d-43b4-a35a-3d97022114d2')","'Silver' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,80815.45971,0.026354512 +541,"('biosphere3', 'ebb88ef4-50ab-4e3b-9251-c5fcdf6b4768')","'Silver' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,80437.47463,0.025841984 +542,"('biosphere3', 'c6462d84-caa9-425a-a923-45238690c6f3')","'Silver' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,80059.48955,0.025329457 +543,"('biosphere3', '2c9e7fba-dd57-4294-8a5e-2aa489930f69')","'Silver-110' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +544,"('biosphere3', '01248058-8a0f-40f6-8555-13ec37c7931d')","'Sodium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +545,"('biosphere3', '3d719c07-ec27-4971-b7cc-4bcf17d77dd3')","'Sodium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +546,"('biosphere3', '235b2f02-ff98-4da9-82e2-e4246c7b7990')","'Sodium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +547,"('biosphere3', '98eb1d16-9d7a-4716-9be4-1449341a832f')","'Sodium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +548,"('biosphere3', '21b46c65-491e-40a9-ac74-5877af997d7c')","'Sodium chlorate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +549,"('biosphere3', '7a63162b-4ffe-447f-ba52-782d5548b774')","'Sodium dichromate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +550,"('biosphere3', '4764f5f1-69bc-4ebb-b7c6-6b54c251056e')","'Sodium formate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.534489261,0 +551,"('biosphere3', '7dd10f03-00ef-483e-88c7-ba23e5330316')","'Sodium hydroxide' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +552,"('biosphere3', '834e7547-a8ea-4765-a76e-357612ba65c4')","'Sodium hydroxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +553,"('biosphere3', 'ba317646-ea99-4060-838f-7933b10f0033')","'Sodium tetrahydridoborate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +554,"('biosphere3', 'ae2c3adf-7f7d-4973-a8e8-3fe1300f8183')","'Strontium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +555,"('biosphere3', '890c2697-3463-4466-bebb-aecc1e1e730b')","'Strontium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +556,"('biosphere3', '0d9f52b2-f2d5-46a3-90a3-e22ef252cc37')","'Strontium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +557,"('biosphere3', 'abb7f444-e74a-46b5-a6a5-080a847cbbc5')","'Strontium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +558,"('biosphere3', '2d456fb8-592b-46a7-97f0-81fc2a18e587')","'Styrene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,1.73E+00,0.00E+00,0.011138637,1.99E-08 +559,"('biosphere3', '9cec94a2-e7fe-43f4-82f4-293c477f86dc')","'Styrene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,1.73E+00,0.00E+00,0.015515034,6.14E-07 +560,"('biosphere3', 'd85a44cb-8407-4997-a146-581e4f35f39d')","'Styrene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,1.73E+00,0.00E+00,0.019891431,1.21E-06 +561,"('biosphere3', 'a259eb99-e741-49e6-8b3f-8985c018be28')","'Sulfate' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +562,"('biosphere3', '006aa3f7-59ba-450f-aa45-a2b2d1752647')","'Sulfate' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +563,"('biosphere3', '9b00c244-fcce-4d38-922b-601a81f2ba34')","'Sulfate' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +564,"('biosphere3', '826677aa-8347-4494-85da-a26fe3e1e824')","'Sulfate' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +565,"('biosphere3', '27d03876-622e-4951-8547-ce331b7d3521')","'Sulfentrazone' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4323.582104,0 +566,"('biosphere3', '16521d00-4b6f-464f-b5dd-8da4a27b15ca')","'Sulfur dioxide' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +567,"('biosphere3', '78c3efe4-421c-4d30-82e4-b97ac5124993')","'Sulfur dioxide' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,1.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +568,"('biosphere3', 'fd7aa71c-508c-480d-81a6-8052aad92646')","'Sulfur dioxide' (kilogram, None, ('air',))",0,1.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +569,"('biosphere3', '8c52f40c-69b7-4538-8923-b371523c71f5')","'Sulfur dioxide' (kilogram, None, ('air', 'urban air close to ground'))",0,1.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +570,"('biosphere3', 'c7c769bb-89b9-4459-afed-e3acecd39339')","'Sulfur hexafluoride' (kilogram, None, ('air', 'non-urban air or from high stacks'))",22800,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +571,"('biosphere3', '35d1dff5-b535-4628-9826-4a8fce08a1f2')","'Sulfur hexafluoride' (kilogram, None, ('air',))",22800,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +572,"('biosphere3', '856c9aa2-c20c-49a8-9417-c71bdb5f17b0')","'Sulfur hexafluoride' (kilogram, None, ('air', 'urban air close to ground'))",22800,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +573,"('biosphere3', 'ba5fc0b6-770b-4da1-9b3f-e3b5087f07cd')","'Sulfur oxides' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +574,"('biosphere3', '5c9d8310-f7e1-4e98-8e73-7eece0435676')","'Sulfuric acid' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,77.99165987,0 +575,"('biosphere3', '99c65c6a-6871-40ba-af79-5bd6851688e4')","'Sulfuric acid' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,78.51042188,0 +576,"('biosphere3', '7ecc2b66-8dde-4266-8832-f492f564377b')","'Sulfuric acid' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,79.02918389,0 +577,"('biosphere3', '8c52f40c-69b7-4538-8923-b371523c71f5')","'Sulfur dioxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +578,"('biosphere3', 'b00950bc-99cb-4ee2-bbc0-5f878ea170c3')","'Sulfur trioxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +579,"('biosphere3', 'a793710a-1990-4e65-a95e-cfbbc5332355')","'t-Butyl methyl ether' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,7.34E-01,0.00E+00,0.027286752,1.29E-07 +580,"('biosphere3', 'cdf99498-1489-4226-97ad-94fa85b0528b')","'t-Butylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.181066781,0 +581,"('biosphere3', '10b69d7a-018d-44c6-9a5e-e67fc9475b86')","'Terpenes' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +582,"('biosphere3', '2a1c80de-a083-470b-80dd-ba11a5aeea8c')","'Tetramethyl ammonium hydroxide' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +583,"('biosphere3', '9540d6dc-b589-4fbb-8260-1b6a88b8bf11')","'Thallium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14197.9185,0.000693142 +584,"('biosphere3', '18aa2daa-0188-4328-b24b-1ad1398ecf81')","'Thallium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14141.60617,0.000705843 +585,"('biosphere3', '50deb561-3de9-4b25-9b61-1695ad2dd136')","'Thallium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14085.29383,0.000718544 +586,"('biosphere3', '98fc8cad-e186-4353-8ffb-92ddae8cc685')","'Thifensulfuron' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,35564.42609,9.44E-06 +587,"('biosphere3', 'd90a3903-d98e-4750-9dc4-647f2c6af3ec')","'Thiodicarb' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,857.1196209,2.52E-06 +588,"('biosphere3', 'd28f10c4-a8d0-4891-b7a4-362e12360079')","'Thorium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +589,"('biosphere3', 'c93b5919-6b01-46c9-8510-cc94d1712168')","'Thorium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +590,"('biosphere3', 'cb16ed3f-19b5-45c6-b504-b2be562d0002')","'Thorium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +591,"('biosphere3', 'bae57811-0343-41be-97cf-2c74279dd638')","'Thorium-228' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +592,"('biosphere3', 'ecc877ac-3c34-4838-b1f8-6ae0ff2cd2fc')","'Thorium-228' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +593,"('biosphere3', '6e769b2f-11ce-4ec1-ad99-a27c93361e72')","'Thorium-228' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +594,"('biosphere3', '4eb24f81-0468-4b92-bae3-8b12dfc90438')","'Thorium-230' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +595,"('biosphere3', '4c54be62-05f1-4201-940d-f161537be704')","'Thorium-232' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +596,"('biosphere3', '08ebf986-d40a-4538-8aa7-21da2f99edf7')","'Thorium-232' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +597,"('biosphere3', 'e17ab5b1-0e70-409c-b7fd-0a01e6a26de3')","'Thorium-232' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +598,"('biosphere3', '8e2a5517-13ff-4423-b1ec-3632b0a72bf5')","'Thorium-234' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +599,"('biosphere3', '8a422b03-1055-4bc8-b439-27bf8d7eef57')","'Tin' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1364.568232,0 +600,"('biosphere3', 'f563b90e-a300-4403-b278-d2fdcd73e5a7')","'Tin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1364.568232,0 +601,"('biosphere3', '2a7b68ff-f12a-44c6-8b31-71ec91d29889')","'Tin' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1355.849216,0 +602,"('biosphere3', '19b6e569-85a4-4ea9-a590-d61a21e3c846')","'Tin' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1347.130201,0 +603,"('biosphere3', 'b3701449-fe4b-4513-b4a4-065e62f03e5c')","'Titanium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +604,"('biosphere3', '4a156a66-eb3e-4f87-90a2-ccd13bf942ff')","'Titanium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +605,"('biosphere3', 'b15d845f-810e-4614-8633-af8bab2014ee')","'Titanium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +606,"('biosphere3', 'f8f772bc-7204-4fda-aa97-080fd0f1b34c')","'Titanium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +607,"('biosphere3', '77f17646-cede-4a49-99dd-55950098b077')","'Toluene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,4.00E+00,0.00E+00,0.012421127,9.91E-09 +608,"('biosphere3', '3b1ecf8e-1d2c-4330-81da-a79f9068976d')","'Toluene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,4.00E+00,0.00E+00,0.012773923,5.30E-08 +609,"('biosphere3', '39946c56-cdf6-4a22-9ac9-1cd333b65533')","'Toluene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,4.00E+00,0.00E+00,0.013126719,9.62E-08 +610,"('biosphere3', 'a3833724-a816-4c9e-b6fd-ac43e8aeedc2')","'Toluene, 2-chloro' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +611,"('biosphere3', 'd1a0b5a7-beb7-47e6-83b7-99560324008f')","'Trifloxystrobin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +612,"('biosphere3', '8a2c92a3-7210-4560-bfd9-d3cc7d09ad72')","'Trifluralin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,192.9994421,1.87E-06 +613,"('biosphere3', '37d7d60d-3682-4da4-aa64-99c51b5d524b')","'Trimethylamine' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,6.32E+00,0.00E+00,0.021957877,0 +614,"('biosphere3', '714958de-a211-4a3c-8dce-848ccb79b094')","'Tungsten' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +615,"('biosphere3', '89ca077d-583d-4293-8d32-248f12bd3e5b')","'Tungsten' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +616,"('biosphere3', '2e518059-747c-4ff1-8da3-17134c547ac2')","'Uranium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +617,"('biosphere3', '595f08d9-6304-497e-bb7d-48b6d2d8bff3')","'Uranium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +618,"('biosphere3', '52317c31-7bdc-47de-9c23-ecf55127de75')","'Uranium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +619,"('biosphere3', '16916dd2-a145-4cb2-9769-19c551b2ff5e')","'Uranium alpha' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +620,"('biosphere3', 'ac98d2a4-4985-49f9-b4e2-fc896ef145b6')","'Uranium-234' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +621,"('biosphere3', '6b44284d-6941-4ae6-815e-ce87f5b603bb')","'Uranium-235' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +622,"('biosphere3', 'e6aafd63-a6d5-41f7-9b82-45f791c7037c')","'Uranium-238' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +623,"('biosphere3', 'c36056d2-5101-4198-b13b-fdc0a8cf27ee')","'Uranium-238' (kilo Becquerel, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +624,"('biosphere3', '543421e8-f0b3-45a2-b0ed-03489e878138')","'Uranium-238' (kilo Becquerel, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +625,"('biosphere3', 'b8de5961-4e83-4731-bac1-77a4d01234a4')","'Vanadium' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,46651.91044,9.23E-05 +626,"('biosphere3', '481c0dd4-3ab2-47b5-94c4-b990e8a9dde5')","'Vanadium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,46651.91044,9.23E-05 +627,"('biosphere3', '591b0a62-8064-4697-86ed-47bfa1f8b5e6')","'Vanadium' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,46440.32137,9.46E-05 +628,"('biosphere3', '2cba713d-ab0b-44cb-babb-f8cac262554f')","'Vanadium' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,46228.7323,9.69E-05 +629,"('biosphere3', 'f14b59ff-d438-442d-8bad-b53694b8263a')","'Water' (cubic meter, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +630,"('biosphere3', '09872080-d143-4fb1-a3a5-647b077107ff')","'Water' (cubic meter, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +631,"('biosphere3', '075e433b-4be4-448e-9510-9a5029c1ce94')","'Water' (cubic meter, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +632,"('biosphere3', '5d368100-b1bc-4456-8420-e469edccf349')","'Water' (cubic meter, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +633,"('biosphere3', 'b13777bb-a8b6-4be4-8f6b-675ac75f31b2')","'Xenon-131m' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +634,"('biosphere3', 'f5f7c4c3-ce9d-47ec-8c97-62d70b286203')","'Xenon-133' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +635,"('biosphere3', '9d95796e-84c7-4a73-aaba-8ad4f664e58f')","'Xenon-133m' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +636,"('biosphere3', '14ca107c-315a-410b-af1b-35a886faebce')","'Xenon-135' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +637,"('biosphere3', 'b3fd01ce-4eb3-461f-8639-4c7aa166f40e')","'Xenon-135m' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +638,"('biosphere3', '001790f3-fd86-4a0d-a2a1-06c7099d90c8')","'Xenon-137' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +639,"('biosphere3', '7c44db6f-bf0e-4a63-bd94-d376ec941786')","'Xenon-138' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +640,"('biosphere3', 'a1d277aa-7aea-4b5e-8aa9-2789ba8ff333')","'Xylene' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.010018347,1.19E-08 +641,"('biosphere3', '5c234628-ab1e-4284-ae2b-f1c2f6883f71')","'Xylene' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.010646068,1.15E-07 +642,"('biosphere3', 'ed8da356-ed40-4a35-8de4-57aee1d3c279')","'Xylene' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.011273789,2.19E-07 +643,"('biosphere3', '781bfb14-d34f-4f99-9d15-d67171d6fc24')","'Zeta-cypermethrin' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,381628.0696,2.45E-06 +644,"('biosphere3', '8f871bab-96dc-49d9-bf08-12cdd0715901')","'Zinc' (kilogram, None, ('air', 'low population density, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,16872.47176,0.015958213 +645,"('biosphere3', '87a69874-34f9-4070-a525-aa301ab2634b')","'Zinc' (kilogram, None, ('air', 'lower stratosphere + upper troposphere'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,16872.47176,0.015958213 +646,"('biosphere3', 'ada3ecfe-8244-4389-bcce-e83ca4f66e09')","'Zinc' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,16872.47176,0.015958213 +647,"('biosphere3', '5ce378a0-b48d-471c-977d-79681521efde')","'Zinc' (kilogram, None, ('air',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,16778.41789,0.0155956 +648,"('biosphere3', '748f22a9-eba4-4726-bef5-92c7442ce189')","'Zinc' (kilogram, None, ('air', 'urban air close to ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,16684.36402,0.015232986 +649,"('biosphere3', 'cf5e52c1-b1fc-46c8-b6f9-8e085657632e')","'Zinc-65' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +650,"('biosphere3', 'eebb4011-af1d-4a45-8bc5-a20b6c06fbf4')","'Zirconium' (kilogram, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +651,"('biosphere3', 'fa260f53-4850-4585-9b67-5cdbc603c5ef')","'Zirconium-95' (kilo Becquerel, None, ('air', 'non-urban air or from high stacks'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +652,"('biosphere3', '8bc65fca-548d-4831-b102-391bbdd6bc8c')","'Aluminium, 24% in bauxite, 11% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +653,"('biosphere3', 'a45cd247-3532-4e27-bddc-b519fdb5e08f')","'Aluminium, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +654,"('biosphere3', '6df9ea09-115a-4678-9f30-d92c877a46ec')","'Anhydrite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +655,"('biosphere3', '8b46f615-69c9-4ca3-815e-a7bde116d202')","'Argon-40' (kilogram, None, ('natural resource', 'in air'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +656,"('biosphere3', 'c13beafb-2aed-4a52-b09a-78d28913b6ce')","'Barite, 15% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +657,"('biosphere3', 'ac3a8914-35f0-4c34-a956-f26b3a053e4a')","'Basalt, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +658,"('biosphere3', 'eead2933-c2be-4a53-a0bd-bd33b67e4145')","'Borax, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +659,"('biosphere3', '61341186-aac8-4088-a2b7-ba50093bab6c')","'Bromine, 0.23% in water' (kilogram, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +660,"('biosphere3', '621b1cf1-9b47-4c44-b71e-ebeb9afd9bbc')","'Cadmium, 0.30% in sulfide, Cd 0.18%, Pb, Zn, Ag, In, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +661,"('biosphere3', '99ee393d-4bd1-4cc8-b0a0-d956865fb7bf')","'Calcite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +662,"('biosphere3', 'cc6a1abb-b123-4ca6-8f16-38209df609be')","'Carbon dioxide, in air' (kilogram, None, ('natural resource', 'in air'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +663,"('biosphere3', '8c2fe757-6866-4ed2-9f89-81012ad774a0')","'Carbon, organic, in soil or biomass stock' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +664,"('biosphere3', '7a636bea-94c0-4774-a791-2512b7fbda94')","'Cerium, 24% in bastnasite, 2.4% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +665,"('biosphere3', 'ef6dd09f-bddc-49b4-a207-dbaec2f07bb5')","'Chromium, 25.5% in chromite, 11.6% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +666,"('biosphere3', 'c5f5aeb8-7558-4a0c-9594-27621b9cfbc5')","'Chrysotile, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +667,"('biosphere3', '15545dca-018d-4f7f-aa1f-796b707180af')","'Cinnabar, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +668,"('biosphere3', '93806a54-46f5-409c-99c5-4144a1e73b5d')","'Clay, bentonite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +669,"('biosphere3', 'f7519ca9-5ffc-41c3-a33e-806da82cfc0e')","'Clay, unspecified, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +670,"('biosphere3', '024c9722-1e88-412b-8c4b-10c532be8dca')","'Coal, brown, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,9.90E+00,0,0 +671,"('biosphere3', 'b6d0042d-0ef8-49ed-9162-a07ff1ccf750')","'Coal, hard, unspecified, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,1.91E+01,0,0 +672,"('biosphere3', 'd0779a5e-6969-4144-954e-ceb81fb83f15')","'Cobalt, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +673,"('biosphere3', 'ec72c523-9e1a-466a-98c3-e4098e90fd27')","'Colemanite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +674,"('biosphere3', '1aee4aa7-32e0-48e7-a6b5-73d8acf672d3')","'Copper, 0.52% in sulfide, Cu 0.27% and Mo 8.2E-3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +675,"('biosphere3', '1b35070a-eb57-4f0f-a27f-5ba181ff0d4d')","'Copper, 0.59% in sulfide, Cu 0.22% and Mo 8.2E-3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +676,"('biosphere3', '19988f5b-a9a6-48f3-9e8e-150b66a1bf12')","'Copper, 0.97% in sulfide, Cu 0.36% and Mo 4.1E-2% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +677,"('biosphere3', '79df5650-160a-4ab7-a14f-cc8162877f4a')","'Copper, 0.99% in sulfide, Cu 0.36% and Mo 8.2E-3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +678,"('biosphere3', 'ed5ace5c-a203-4816-b33b-9fe0c5f0f519')","'Copper, 1.13% in sulfide, Cu 0.76% and Ni 0.76% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +679,"('biosphere3', '31998285-fb5c-411d-b853-ce78be2a0b49')","'Copper, 1.18% in sulfide, Cu 0.39% and Mo 8.2E-3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +680,"('biosphere3', 'c8f18160-6937-4bb9-ad0c-dffa942ca41e')","'Copper, 1.42% in sulfide, Cu 0.81% and Mo 8.2E-3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +681,"('biosphere3', 'b569dc97-52fe-4e39-9627-183b1002c287')","'Copper, 2.19% in sulfide, Cu 1.83% and Mo 8.2E-3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +682,"('biosphere3', '5afa470c-ab8c-4ec3-8a18-5c0bed973571')","'Copper, Cu 0.38%, in mixed ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +683,"('biosphere3', '73b7f080-b7ae-417c-b740-b4c9eabfb35a')","'Cu, Cu 3.2E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +684,"('biosphere3', '8508a83c-6a37-4159-93cc-21a2645390ab')","'Cu, Cu 5.2E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +685,"('biosphere3', '9877ce00-65f8-4c0c-9fcf-92aa53a2c9c0')","'Diatomite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +686,"('biosphere3', 'c7aee986-b7d8-4ad9-ad45-1ac0d68e6b78')","'Dolomite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +687,"('biosphere3', '7c954971-4bce-41db-9e8b-2b2f049539d7')","'Europium, 0.06% in bastnasite, 0.006% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +688,"('biosphere3', '26296ec9-ff93-41e6-bbbf-6175af04284d')","'Feldspar, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +689,"('biosphere3', 'e5fadc0b-1d79-4604-ac32-fd3321f27933')","'Fluorine, 4.5% in apatite, 1% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +690,"('biosphere3', '355785ee-56e0-455b-aaa6-bee43c82b49c')","'Fluorine, 4.5% in apatite, 3% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +691,"('biosphere3', 'de2d220b-9fe8-4c39-bef7-a76c00d6ff33')","'Fluorspar, 92%, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +692,"('biosphere3', 'b878ca93-d699-421e-a4b6-f694dc627062')","'Gadolinium, 0.15% in bastnasite, 0.015% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +693,"('biosphere3', 'e2c5109f-9a68-4828-b824-eb2193864803')","'Gallium, 0.014% in bauxite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +694,"('biosphere3', '0878c1c6-4c1d-4f90-a2de-a9383855d5c6')","'Gallium, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +695,"('biosphere3', '43b2649e-26f8-400d-bc0a-a0667e850915')","'Gangue, bauxite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +696,"('biosphere3', '3ed5f377-344f-423a-b5ec-9a9a1162b944')","'Gas, mine, off-gas, process, coal mining' (cubic meter, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,3.98E+01,0,0 +697,"('biosphere3', '7c337428-fb1b-45c7-bbb2-2ee4d29e17ba')","'Gas, natural, in ground' (cubic meter, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,3.83E+01,0,0 +698,"('biosphere3', 'ff741136-d6ee-444a-a15b-3b308e376db8')","'Gold, Au 1.1E-4%, Ag 4.2E-3%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +699,"('biosphere3', '7cd1d217-70a7-4452-abc4-3b1100763d6d')","'Gold, Au 1.3E-4%, Ag 4.6E-5%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +700,"('biosphere3', 'a8896ed6-4c9d-4b06-a356-49d8cdd9e9d7')","'Gold, Au 1.4E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +701,"('biosphere3', '2d65a3f7-2a10-4a10-ac9e-a0cc7cd57979')","'Gold, Au 2.1E-4%, Ag 2.1E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +702,"('biosphere3', '95268685-7bea-4883-a412-119d7e88372c')","'Gold, Au 4.3E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +703,"('biosphere3', '8c888d2b-d608-4dac-bad5-1c2a17050838')","'Gold, Au 4.9E-5%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +704,"('biosphere3', '3eece329-cf79-4167-93c2-b8d7d7eb5058')","'Gold, Au 6.7E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +705,"('biosphere3', 'd28f9d42-5df5-41c3-be59-fdfa7ff57112')","'Gold, Au 7.1E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +706,"('biosphere3', 'cf3d3dbc-0e4b-402d-92a1-8ea6b4869ed5')","'Gold, Au 9.7E-4%, in mixed ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +707,"('biosphere3', 'a4375a18-172c-4f82-90b7-bca972f75548')","'Granite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +708,"('biosphere3', '238f8ea9-98df-41dc-ab93-ea5b549a0b96')","'Gravel, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +709,"('biosphere3', '11a2a7b1-ab2f-47b8-9e29-6f33d5207fa6')","'Gypsum, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +710,"('biosphere3', 'e5cbe371-d33e-46ef-a832-a176f5e28520')","'Indium, 0.005% in sulfide, In 0.003%, Pb, Zn, Ag, Cd, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +711,"('biosphere3', '7de77239-7074-4443-9dc9-4492c5e2ef35')","'Iodine, 0.03% in water' (kilogram, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +712,"('biosphere3', 'f77aacc3-2c22-4bda-99ab-fe1110a1b891')","'Iron, 46% in ore, 25% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +713,"('biosphere3', '99c56f25-9ebb-4e6a-a3e2-e4dc61e9d697')","'Iron, 72% in magnetite, 14% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +714,"('biosphere3', 'ee540366-b970-46af-94d8-4c253ded5577')","'Kaolinite, 24% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +715,"('biosphere3', '38eff837-5465-47a9-a1c9-e1edd70922ef')","'Kieserite, 25% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +716,"('biosphere3', '4602b501-1c9b-4af7-bb1c-864c70c3e855')","'Krypton, in air' (kilogram, None, ('natural resource', 'in air'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +717,"('biosphere3', 'd61418f3-c1a4-4b95-807c-06b7e1fa2915')","'Lanthanum, 7.2% in bastnasite, 0.72% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +718,"('biosphere3', '4f701354-38fd-40b0-8c90-4c1df36ec45a')","'Lead, 5.0% in sulfide, Pb 3.0%, Zn, Ag, Cd, In, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +719,"('biosphere3', '2d9f9c6b-8dca-4641-8ff9-53cb8beabd13')","'Lead, Pb 0.014%, in mixed ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +720,"('biosphere3', 'a9ad523f-b721-4f07-ad9f-584053f3454d')","'Lithium, 0.15% in brine, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +721,"('biosphere3', 'd2bf022d-9cbf-4f19-a8ec-7f507746942b')","'Magnesite, 60% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +722,"('biosphere3', '752d138f-3723-42c1-bf5c-ca5316809c4c')","'Magnesium, 0.13% in water' (kilogram, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +723,"('biosphere3', '9f9f1f14-6eee-4067-b4a5-80e75fc7b295')","'Manganese, 35.7% in sedimentary deposit, 14.2% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +724,"('biosphere3', '5666353e-2db2-41d3-8414-404709151422')","'Metamorphous rock, graphite containing, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +725,"('biosphere3', '06874cbb-2daf-4981-a55e-2c38be5b7277')","'Molybdenum, 0.010% in sulfide, Mo 8.2E-3% and Cu 1.83% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +726,"('biosphere3', '5514ccd2-469f-4074-9905-529154e7f742')","'Molybdenum, 0.014% in sulfide, Mo 8.2E-3% and Cu 0.81% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +727,"('biosphere3', 'ac8571b8-b00b-479d-93cf-b9374feaee05')","'Molybdenum, 0.016% in sulfide, Mo 8.2E-3% and Cu 0.27% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +728,"('biosphere3', 'a76cf135-2be1-4e53-9423-9211acd100f1')","'Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.22% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +729,"('biosphere3', '30fed59d-d722-482f-be4f-f3d93bdd2527')","'Molybdenum, 0.022% in sulfide, Mo 8.2E-3% and Cu 0.36% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +730,"('biosphere3', '719def62-0941-4264-bc54-97093d847d7a')","'Molybdenum, 0.025% in sulfide, Mo 8.2E-3% and Cu 0.39% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +731,"('biosphere3', 'eda28c96-8899-4d84-bf18-35c3f1de518e')","'Molybdenum, 0.11% in sulfide, Mo 4.1E-2% and Cu 0.36% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +732,"('biosphere3', 'c970e81e-1c4e-4f21-814c-0c25444f41d2')","'Neodymium, 4% in bastnasite, 0.4% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +733,"('biosphere3', '0d7f8b87-12f4-4e83-a5a2-854e2f2b47de')","'Ni, Ni 2.3E+0%, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Cu 3.2E+0% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +734,"('biosphere3', 'febbfa6e-44d4-42a0-abcd-aec8a428f75e')","'Ni, Ni 3.7E-2%, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Cu 5.2E-2% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +735,"('biosphere3', '86c6e6cd-c2f5-4977-bad6-ce9cd48cf721')","'Nickel, 1.13% in sulfide, Ni 0.76% and Cu 0.76% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +736,"('biosphere3', 'e47e4e5f-6528-413d-a8fb-1cd1875fbd73')","'Nickel, 1.98% in silicates, 1.04% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +737,"('biosphere3', 'e3f5fd63-7dcb-41f1-9b8a-a48a8d68bc65')","'Nitrogen' (kilogram, None, ('natural resource', 'in air'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +738,"('biosphere3', 'c5aafa60-495c-461c-a1d4-b262a34c45b9')","'Occupation, annual crop' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +739,"('biosphere3', '9e80f7cd-47fa-4c7f-8f2c-bdb9731b3196')","'Occupation, annual crop, greenhouse' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +740,"('biosphere3', 'c4a82f46-381f-474c-a362-3363064b9c33')","'Occupation, annual crop, irrigated' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +741,"('biosphere3', '9fd128fe-d8c5-476f-af42-2795d5f5d227')","'Occupation, annual crop, irrigated, intensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +742,"('biosphere3', 'a6889a22-e99e-42ea-85cd-4a68d7975dcd')","'Occupation, annual crop, non-irrigated' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +743,"('biosphere3', '1b0a8570-eab4-46c2-9b67-c9b918e75676')","'Occupation, annual crop, non-irrigated, extensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +744,"('biosphere3', 'e063ee9c-9850-42b5-b01e-4cc9b5ad7152')","'Occupation, annual crop, non-irrigated, intensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +745,"('biosphere3', '4b6b9b76-3199-4bd0-b11d-f8f2efbeac4e')","'Occupation, construction site' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +746,"('biosphere3', '1eaa9ea4-40b8-414a-b198-5626400372e1')","'Occupation, dump site' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +747,"('biosphere3', '2925111b-3464-4e34-9d02-b73c1c033e91')","'Occupation, forest, extensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +748,"('biosphere3', 'aca1714f-0040-4a65-a73a-0e38aa9f50f4')","'Occupation, forest, intensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +749,"('biosphere3', 'fe9c3a98-a6d2-452d-a9a4-a13e64f1b95b')","'Occupation, industrial area' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +750,"('biosphere3', '69dfa439-8e4e-4cae-bb0c-85a8aa8b9a73')","'Occupation, lake, artificial' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +751,"('biosphere3', '379ba5c9-5c3a-43d0-8e2d-605ad9c39e46')","'Occupation, mineral extraction site' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +752,"('biosphere3', '59ded913-17fe-4b3e-80cb-79b97cdbef9a')","'Occupation, pasture, man made' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +753,"('biosphere3', '19f84b2e-e6ff-4351-ba3a-8b650fc20d14')","'Occupation, pasture, man made, extensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +754,"('biosphere3', '98b723d4-3362-4b38-8b1e-1bedacfd5e27')","'Occupation, pasture, man made, intensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +755,"('biosphere3', 'e9007a6f-7244-44d4-a561-91ae1b6c6cfc')","'Occupation, permanent crop' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +756,"('biosphere3', '3afbc2d8-1b51-4d43-87a7-e68291c1e999')","'Occupation, permanent crop, irrigated, intensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +757,"('biosphere3', 'c9461a73-d00a-4fc7-a890-a9eda6af3185')","'Occupation, permanent crop, non-irrigated, intensive' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +758,"('biosphere3', 'c14ea750-4a9f-41fa-bcc1-4a1d84466f43')","'Occupation, river, artificial' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +759,"('biosphere3', '70c4c6d8-ed81-4763-ae6d-39e54ef0b1fa')","'Occupation, seabed, drilling and mining' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +760,"('biosphere3', '9db06277-b6d9-4c48-8cfb-de342e928a50')","'Occupation, seabed, infrastructure' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +761,"('biosphere3', 'c199261c-8234-43c5-b906-5b67707e4395')","'Occupation, shrub land, sclerophyllous' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +762,"('biosphere3', '062a6faf-b1a5-4a6a-aa02-47ae3ec566a8')","'Occupation, traffic area, rail network' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +763,"('biosphere3', '956c5f83-65c8-4607-9749-147cfb9c8f70')","'Occupation, traffic area, rail/road embankment' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +764,"('biosphere3', '26efe47c-92a5-4dea-b4d0-eac13e418a58')","'Occupation, traffic area, road network' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +765,"('biosphere3', '56ec994a-eb96-42e8-93eb-4970e30e6362')","'Occupation, urban, discontinuously built' (square meter-year, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +766,"('biosphere3', '88d06db9-59a1-4719-9174-afeb1fa4026a')","'Oil, crude, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,4.58E+01,0,0 +767,"('biosphere3', 'd7cadc9a-f42c-4711-a8e2-0b626c0a4c7a')","'Olivine, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +768,"('biosphere3', 'af01e564-f816-4906-bd4f-b7c932f926b9')","'Oxygen' (kilogram, None, ('natural resource', 'in air'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +769,"('biosphere3', '4b8ac2cb-3fa6-4047-a9ab-183d9e63ccac')","'Pd, Pd 2.0E-4%, Pt 4.8E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +770,"('biosphere3', '535bbc83-033b-42fe-9a68-8dc9eb420385')","'Pd, Pd 7.3E-4%, Pt 2.5E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +771,"('biosphere3', 'c5035ce2-5ee5-431f-a287-4b25da42be74')","'Peat, in ground' (kilogram, None, ('natural resource', 'biotic'))",0,0.00E+00,0.00E+00,0.00E+00,9.90E+00,0,0 +772,"('biosphere3', '09a68c14-01f6-4dee-ba29-8b7f400b72b5')","'Perlite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +773,"('biosphere3', 'a64e65fe-3c33-44f1-bd2d-ab7fac07653f')","'Phosphorus, 18% in apatite, 12% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +774,"('biosphere3', '9a7380d1-6e23-48ad-b35a-14bd1ecb3133')","'Phosphorus, 18% in apatite, 4% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +775,"('biosphere3', '909bc093-18b2-4a7e-8131-16f68eebc193')","'Praseodymium, 0.42% in bastnasite, 0.042% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +776,"('biosphere3', '3250f566-58bc-46d3-ab88-1d2e23ca3e1b')","'Pt, Pt 2.5E-4%, Pd 7.3E-4%, Rh 2.0E-5%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +777,"('biosphere3', '636a8446-9899-43a6-b4bf-213f25d69c88')","'Pt, Pt 4.8E-4%, Pd 2.0E-4%, Rh 2.4E-5%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +778,"('biosphere3', '4402f445-984c-4728-be22-6f9aea1146b9')","'Pumice, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +779,"('biosphere3', 'c73e75dc-c02d-4192-ab43-faf29c119fae')","'Pyrite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +780,"('biosphere3', '7005a356-23d8-4d38-9dbc-fa75401b400e')","'Rh, Rh 2.0E-5%, Pt 2.5E-4%, Pd 7.3E-4%, Ni 2.3E+0%, Cu 3.2E+0% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +781,"('biosphere3', 'f7360584-688a-4b6f-bc4a-db00a1e7b022')","'Rh, Rh 2.4E-5%, Pt 4.8E-4%, Pd 2.0E-4%, Ni 3.7E-2%, Cu 5.2E-2% in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +782,"('biosphere3', 'a3930b4d-74da-4489-9a50-d175c25d4fe8')","'Rhenium, in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +783,"('biosphere3', 'f46130cc-dbd4-4a3b-a537-5efbcd89063f')","'Samarium, 0.3% in bastnasite, 0.03% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +784,"('biosphere3', '423ef039-6057-4f63-94bd-e9410d024bd0')","'Sand, unspecified, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +785,"('biosphere3', '9e9b6792-40e6-4d62-a3e0-ebebc0c65166')","'Shale, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +786,"('biosphere3', 'c15f6c4d-bf7a-4a7c-91c6-53aad6a630a8')","'Silver, 0.007% in sulfide, Ag 0.004%, Pb, Zn, Cd, In, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +787,"('biosphere3', '14946240-b1ee-412c-b900-ed5728a4e684')","'Silver, 3.2ppm in sulfide, Ag 1.2ppm, Cu and Te, in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +788,"('biosphere3', 'd02343bd-b00d-4fb3-9bda-2e8183f3b012')","'Silver, Ag 2.1E-4%, Au 2.1E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +789,"('biosphere3', 'd76320f7-6761-4864-92a6-660fa3453ffa')","'Silver, Ag 4.2E-3%, Au 1.1E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +790,"('biosphere3', '6f70e7c7-ef61-4489-b4f3-157e7e8541ef')","'Silver, Ag 4.6E-5%, Au 1.3E-4%, in ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +791,"('biosphere3', 'cfaa80f4-8e19-4fd6-942a-eaea14812896')","'Silver, Ag 9.7E-4%, in mixed ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +792,"('biosphere3', '0b9159dd-305d-4add-802f-f7b780ed0289')","'Sodium chloride, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +793,"('biosphere3', 'a2a4f255-ad47-4cf8-b6a9-e10885d61407')","'Sodium nitrate, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +794,"('biosphere3', '5bbcdc6d-b1a7-4b63-b625-76060c767de7')","'Sodium sulphate, various forms, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +795,"('biosphere3', '5324b57a-96f1-4dc3-9dc5-544881960f4f')","'Spodumene, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +796,"('biosphere3', '3e0034cd-21d6-4582-9fbf-09c26edd05df')","'Stibnite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +797,"('biosphere3', '852281f6-db73-4250-84d3-86b569fce0c1')","'Sulfur, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +798,"('biosphere3', 'd80610f2-df83-4e2a-9dc3-f74fced6577f')","'Sylvite, 25 % in sylvinite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +799,"('biosphere3', 'bc97531c-12d8-4113-bcb2-663a47d12d0f')","'Talc, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +800,"('biosphere3', '5f1d740e-804d-4080-8ef9-aeaa0d8e1115')","'Tantalum, 81.9% in tantalite, 1.6E-4% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +801,"('biosphere3', '7a81cd45-7f4c-40b3-989c-6a65f42df999')","'Tellurium, 0.5ppm in sulfide, Te 0.2ppm, Cu and Ag, in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +802,"('biosphere3', '31b4eea9-640e-4056-ac2f-0555627af18a')","'Tin, 79% in cassiterite, 0.1% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +803,"('biosphere3', '90a94ea5-bca4-483d-a591-2e886c0ff47f')","'TiO2, 54% in ilmenite, 18% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +804,"('biosphere3', '78cd4852-e7b9-4301-adf7-51e730b0356a')","'TiO2, 54% in ilmenite, 2.6% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +805,"('biosphere3', 'ec0fa5ce-51b4-4792-a8e8-c4ee668eddc3')","'TiO2, 95% in rutile, 0.40% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +806,"('biosphere3', 'f05cca02-ec18-4acc-9939-59658ff9a554')","'Transformation, from annual crop' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +807,"('biosphere3', '101f15ac-0698-49dd-b177-471a813ef78e')","'Transformation, from annual crop, greenhouse' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +808,"('biosphere3', '10ebc72c-2c4b-45ea-abd8-cb7fe0805883')","'Transformation, from annual crop, irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +809,"('biosphere3', '4b420f19-0421-461e-a0b6-7efbf580089b')","'Transformation, from annual crop, non-irrigated' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +810,"('biosphere3', 'c7869c43-266c-429d-bfd5-6b578ed32ce8')","'Transformation, from annual crop, non-irrigated, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +811,"('biosphere3', 'ab3e851e-21c9-47cf-8e7d-5f96dfae3ba5')","'Transformation, from annual crop, non-irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +812,"('biosphere3', '4d166779-88fd-441b-9537-f3b974e3bff7')","'Transformation, from arable land, unspecified use' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +813,"('biosphere3', '4da2ea28-8273-4901-9931-264169ec7731')","'Transformation, from cropland fallow (non-use)' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +814,"('biosphere3', 'c1513682-45ad-444e-afb5-27c660714e88')","'Transformation, from dump site, inert material landfill' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +815,"('biosphere3', '7fdc928c-f347-45e7-82d7-046acdf878ae')","'Transformation, from dump site, residual material landfill' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +816,"('biosphere3', 'b79e26a0-88db-441f-b79b-508506e81b93')","'Transformation, from dump site, sanitary landfill' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +817,"('biosphere3', '7d5b5802-3698-4be8-98f8-ab7c1a2e9328')","'Transformation, from dump site, slag compartment' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +818,"('biosphere3', 'e71f95a5-fd82-4128-9fd1-be3f0e85d0fc')","'Transformation, from forest, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +819,"('biosphere3', 'e717f3cc-ac70-4c9b-be56-1614239b917e')","'Transformation, from forest, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +820,"('biosphere3', '9d136389-8670-45ae-ad1d-a06848a1fd1d')","'Transformation, from forest, primary (non-use)' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +821,"('biosphere3', '9cc80820-fcf9-4ea9-8e67-0aa423eba6a4')","'Transformation, from forest, secondary (non-use)' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +822,"('biosphere3', '0930b6b8-d9c6-4462-966f-ac7495b63bed')","'Transformation, from forest, unspecified' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +823,"('biosphere3', 'b905c2e0-a0db-4e66-80d2-8bdfc93c6218')","'Transformation, from grassland, natural (non-use)' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +824,"('biosphere3', '2e002771-9f22-43e3-9990-f06f8235700b')","'Transformation, from heterogeneous, agricultural' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +825,"('biosphere3', 'b6dcefd8-3848-4338-9c3e-fe6e91f20937')","'Transformation, from industrial area' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +826,"('biosphere3', '64d99cb5-3b4f-4195-b86f-c5f45b4dcd19')","'Transformation, from mineral extraction site' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +827,"('biosphere3', '2c126bcc-bb63-4d63-bd72-f02a1e616809')","'Transformation, from pasture, man made' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +828,"('biosphere3', '82f2476e-988b-4d7a-bde6-5da9337d1f65')","'Transformation, from pasture, man made, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +829,"('biosphere3', '592bf69f-8551-4611-8942-4620be0adabe')","'Transformation, from pasture, man made, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +830,"('biosphere3', 'fcb77a5a-6882-4aeb-82a9-ba57688d2224')","'Transformation, from permanent crop' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +831,"('biosphere3', 'd585d599-05f1-47ff-8c41-790f51830b9b')","'Transformation, from permanent crop, irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +832,"('biosphere3', 'fa288b80-6ef1-4e80-b534-5c2e5c492fd8')","'Transformation, from permanent crop, non-irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +833,"('biosphere3', 'bbcdd18c-4d16-4c28-b031-d988884030a7')","'Transformation, from seabed, infrastructure' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +834,"('biosphere3', '928ba839-d6e5-4d1e-b5fd-122998a9bbe2')","'Transformation, from seabed, unspecified' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +835,"('biosphere3', '17a5a406-333f-4b9e-8852-c2de50bc9585')","'Transformation, from shrub land, sclerophyllous' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +836,"('biosphere3', '29630a65-f38c-48a5-9744-c0121f586640')","'Transformation, from unspecified' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +837,"('biosphere3', '0782d8ff-80e5-47a7-a2ba-3ba40ab60b60')","'Transformation, from wetland, inland (non-use)' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +838,"('biosphere3', 'c3f83a91-4888-41a4-add9-fd01678a1e5f')","'Transformation, to annual crop' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +839,"('biosphere3', '49c23685-ef19-495b-9a6b-4a91a7ceb710')","'Transformation, to annual crop, greenhouse' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +840,"('biosphere3', 'a70f8014-0de5-477f-9f10-712b5c280b8e')","'Transformation, to annual crop, irrigated, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +841,"('biosphere3', 'c3c3d385-57fa-4d47-a2c5-d838006e7985')","'Transformation, to annual crop, irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +842,"('biosphere3', 'e97b784a-ec09-4b1b-9f14-cc0ce9799c9e')","'Transformation, to annual crop, non-irrigated' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +843,"('biosphere3', '91a067cc-543a-4d73-a0c0-feb1f8935756')","'Transformation, to annual crop, non-irrigated, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +844,"('biosphere3', '2e52cbfa-94d7-432b-892f-431daa71a6ef')","'Transformation, to annual crop, non-irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +845,"('biosphere3', '2f1e926a-ec96-432b-b2a6-bd5e3de2ff87')","'Transformation, to arable land, unspecified use' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +846,"('biosphere3', '54b82481-32a3-4e82-bac7-1df475dbc80c')","'Transformation, to cropland fallow (non-use)' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +847,"('biosphere3', '90a5a447-af6f-421a-8201-011f07ad1150')","'Transformation, to dump site' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +848,"('biosphere3', 'd10b390c-9d0c-4f59-b31d-3d0d70e77a35')","'Transformation, to dump site, inert material landfill' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +849,"('biosphere3', '8f5c8cb3-dccd-45da-9f1f-d1c61cd789c3')","'Transformation, to dump site, residual material landfill' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +850,"('biosphere3', '1a568858-efa8-4c2a-b46e-82b6e66b6072')","'Transformation, to dump site, sanitary landfill' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +851,"('biosphere3', 'd73b27a2-81bd-4264-baa5-ce4aca3545be')","'Transformation, to dump site, slag compartment' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +852,"('biosphere3', '88e8456c-dc23-4bb4-aed5-a4186a2fbf77')","'Transformation, to forest, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +853,"('biosphere3', '994d61de-fbb0-4187-a4d4-b11c3c2b9102')","'Transformation, to forest, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +854,"('biosphere3', 'bba9f623-5919-4ef3-b98d-c94af1553179')","'Transformation, to forest, unspecified' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +855,"('biosphere3', 'fdda4f8e-b620-4df6-92a9-101a251d2f42')","'Transformation, to heterogeneous, agricultural' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +856,"('biosphere3', '4624deff-2016-41d4-b2bf-3db8dab88779')","'Transformation, to industrial area' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +857,"('biosphere3', '84b65d8f-2edd-4ddd-8f68-ca28d1c681b0')","'Transformation, to lake, artificial' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +858,"('biosphere3', '626915e9-2424-4059-8b6a-fae47161acdf')","'Transformation, to mineral extraction site' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +859,"('biosphere3', '7a16b680-6d9a-4db3-a23e-0ec64aca5995')","'Transformation, to pasture, man made' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +860,"('biosphere3', '7464da86-f239-4bef-a778-04d5818bb956')","'Transformation, to pasture, man made, extensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +861,"('biosphere3', 'ec242c43-095c-4b42-8907-e0f13573f0a4')","'Transformation, to pasture, man made, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +862,"('biosphere3', '6e02ccfc-9eb5-4a51-be9a-870c1087c833')","'Transformation, to permanent crop' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +863,"('biosphere3', '93ac2969-a4e9-49b5-8b97-5cbc6b9b2601')","'Transformation, to permanent crop, irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +864,"('biosphere3', 'aa784c1b-0d0b-4c69-b631-b045d6ee61af')","'Transformation, to permanent crop, non-irrigated, intensive' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +865,"('biosphere3', '090e9aa9-a9a9-4878-9634-3ad0ba7fbc91')","'Transformation, to river, artificial' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +866,"('biosphere3', '9b5b8c40-38fe-42fb-8130-56c15e485fd0')","'Transformation, to seabed, drilling and mining' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +867,"('biosphere3', 'c7d2cf2d-0d21-45f7-9769-b07f3e53b76a')","'Transformation, to seabed, infrastructure' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +868,"('biosphere3', 'ebb16be1-8db3-42a2-8123-418787422cfe')","'Transformation, to seabed, unspecified' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +869,"('biosphere3', '9089d7ad-09b1-4174-a188-8844ebde2d5d')","'Transformation, to shrub land, sclerophyllous' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +870,"('biosphere3', '0abf9db7-b5a2-4c18-8ec6-aca3a7fb5579')","'Transformation, to traffic area, rail network' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +871,"('biosphere3', '04eb0695-e67b-46e5-9516-da6bde119822')","'Transformation, to traffic area, rail/road embankment' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +872,"('biosphere3', 'a42347d2-09f1-405e-95dd-bf6ac03765d8')","'Transformation, to traffic area, road network' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +873,"('biosphere3', '512a5356-8059-4772-a43f-42e3c4f3d299')","'Transformation, to unspecified' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +874,"('biosphere3', '55beee8d-d04e-4307-bb0e-4e113dc07ee7')","'Transformation, to urban, discontinuously built' (square meter, None, ('natural resource', 'land'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +875,"('biosphere3', 'd0696f95-6cb3-453b-b849-c99ba9c90c28')","'Ulexite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +876,"('biosphere3', '2ba5e39b-adb6-4767-a51d-90c1cf32fe98')","'Uranium, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +877,"('biosphere3', 'bea19217-6a28-4711-8142-2e71090c0b46')","'Vermiculite, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +878,"('biosphere3', 'f6df5030-8e06-4276-bfeb-219db8dab104')","'Volume occupied, final repository for low-active radioactive waste' (cubic meter, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +879,"('biosphere3', 'adb4b590-7fb2-47b6-84e7-d4746a94c7b5')","'Volume occupied, final repository for radioactive waste' (cubic meter, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +880,"('biosphere3', '9a9d71c7-79f7-42d0-af47-282d22a7cf07')","'Volume occupied, reservoir' (cubic meter-year, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +881,"('biosphere3', '8bd1295e-4af1-4177-88a2-6f56ac8e4546')","'Volume occupied, underground deposit' (cubic meter, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +882,"('biosphere3', 'fc1c42ce-a759-49fa-b987-f1ec5e503db1')","'Water, cooling, unspecified natural origin' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +883,"('biosphere3', '1acb026e-9de6-48fe-9e0d-be4d24125bbc')","'Water, lake' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +884,"('biosphere3', '8c75e7ab-8ab8-41e4-b394-c166ff5b050d')","'Water, river' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +885,"('biosphere3', '629ffbca-ca71-4e4b-a006-ca9bdd9cd1df')","'Water, salt, ocean' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +886,"('biosphere3', '79238018-8ec1-4615-9469-2b0df95a43c3')","'Water, salt, sole' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +887,"('biosphere3', '8c1494a5-4987-4715-aa2d-1908c495f4eb')","'Water, turbine use, unspecified natural origin' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +888,"('biosphere3', '831f249e-53f2-49cf-a93c-7cee105f048e')","'Water, unspecified natural origin' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +889,"('biosphere3', '67c40aae-d403-464d-9649-c12695e43ad8')","'Water, well, in ground' (cubic meter, None, ('natural resource', 'in water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +890,"('biosphere3', 'bac875f4-75fb-4dde-841a-b07d3a41bcd1')","'Wood, hard, standing' (cubic meter, None, ('natural resource', 'biotic'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +891,"('biosphere3', 'b073ec00-a5bf-4b64-bda0-ef366a3ac9bb')","'Wood, soft, standing' (cubic meter, None, ('natural resource', 'biotic'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +892,"('biosphere3', '23e83c1f-07c9-4b5f-a898-0f4f09a6691f')","'Wood, unspecified, standing' (cubic meter, None, ('natural resource', 'biotic'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +893,"('biosphere3', 'c52e8414-f232-4c6a-bff2-5726189789ee')","'Xenon, in air' (kilogram, None, ('natural resource', 'in air'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +894,"('biosphere3', '3faef344-9e52-47a3-a317-e17b824cc540')","'Zinc, 9.0% in sulfide, Zn 5.3%, Pb, Ag, Cd, In, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +895,"('biosphere3', 'f8f1ba14-9934-4678-8a78-e2cf1fce7775')","'Zinc, Zn 0.63%, in mixed ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +896,"('biosphere3', 'fcee6eab-e906-4ddf-bc14-2b131b937893')","'Zirconium, 50% in zircon, 0.39% in crude ore, in ground' (kilogram, None, ('natural resource', 'in ground'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +897,"('biosphere3', 'f681eb3c-854a-4f78-bcfe-76dfbcf9df3c')","'2,4-D' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,181.9075713,2.22E-06 +898,"('biosphere3', 'cdcdbfc9-3d5f-4e78-8033-8dbecbb2cfec')","'Acephate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,252.348006,0.000350741 +899,"('biosphere3', 'eb23cf3a-b866-458d-94b3-9aee4145fcc9')","'Acetamide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.789914178,1.11E-07 +900,"('biosphere3', '92ee2fc1-238c-465d-9887-418af42db9c7')","'Acetochlor' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7610.914674,0 +901,"('biosphere3', 'c89708f7-cb6c-4691-b8cc-cf2cb03b14a6')","'Acifluorfen' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,2.39E-07 +902,"('biosphere3', 'dc64ecac-a65f-4d9a-9de6-557f1135659f')","'Aclonifen' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8495.546994,0 +903,"('biosphere3', 'f809b5e9-ed1b-4117-8bc7-9acf883ec7f5')","'Alachlor' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9281.126561,0 +904,"('biosphere3', 'fbe48c6a-321d-44ae-8883-b6fa4e0f4e77')","'Aldicarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,11852.49488,4.44E-05 +905,"('biosphere3', '594fdc19-25cd-4c22-b3f3-58b1f2f42965')","'Aldrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,589.3948167,0.00011611 +906,"('biosphere3', 'ce2ceed1-2503-4566-8175-f4456dbac42b')","'Alpha-cypermethrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,48797.72881,2.02E-07 +907,"('biosphere3', '2baa4381-b781-4f5e-90de-508b0fa3fd1f')","'Aluminium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +908,"('biosphere3', '765546a9-b056-4d27-ad14-2f016511bdcb')","'Aluminium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +909,"('biosphere3', 'e0401210-0377-4670-84af-12247ca20bed')","'Aluminium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +910,"('biosphere3', 'e1327ebe-ac90-4d12-8787-09649213ce63')","'Ametryn' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5287.316292,0 +911,"('biosphere3', 'feb606a8-c259-4169-9652-6b38467739f7')","'Amidosulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +912,"('biosphere3', 'cc91124e-c4b4-4e39-95b1-1c27b35cbe66')","'Amitraz' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +913,"('biosphere3', '3fe03409-76e1-4228-8fd7-77c4c6a0d9f3')","'Anthraquinone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,30.64354091,0 +914,"('biosphere3', 'f4cf8d5c-f030-4b55-a3af-e3c20b855ee8')","'Antimony' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,614.9593454,0.00020946 +915,"('biosphere3', 'c49fb4cd-eed0-4438-9052-9612473cdbae')","'Antimony' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,614.9593454,0.00020946 +916,"('biosphere3', '4673a799-36a5-4359-ac6a-fa933281bc93')","'Arsenic' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8050.899947,0.029416629 +917,"('biosphere3', 'ebc4c2a3-c004-4053-8048-f41fdd9324c8')","'Arsenic' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8050.899947,0.014650209 +918,"('biosphere3', 'fc84887d-158e-4067-80dc-9743165bd70d')","'Arsenic' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8050.899947,0.014650209 +919,"('biosphere3', '042de84f-261d-4e29-bb7d-f43601cc2c7d')","'Asulam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,49.33836188,2.51E-07 +920,"('biosphere3', 'efd3798a-ff6b-46ef-b408-0e74d80548cc')","'Atrazine' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,11406.42649,2.22E-06 +921,"('biosphere3', 'c10f1360-e1dc-44fa-8c2d-00bdd8524724')","'Azinphos-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,44920.27413,5.69E-06 +922,"('biosphere3', 'e69b028e-e549-4869-ae4a-b85ef8bcb7a9')","'Azoxystrobin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,819.7509007,0 +923,"('biosphere3', 'f8199e39-7354-44ad-92d8-6a2cc3bac24e')","'Barium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,763.1005379,4.91E-05 +924,"('biosphere3', '5719929a-8c5b-48cc-a039-b11a9f380467')","'Barium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,763.1005379,4.91E-05 +925,"('biosphere3', '99cd88f6-16b7-4b28-895c-2f42101f634b')","'Barium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,763.1005379,4.91E-05 +926,"('biosphere3', '3301e59e-2f7b-46bd-b185-32ef8caac4ea')","'Benfluralin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,129.8491928,6.17E-08 +927,"('biosphere3', 'a25e7873-b0fd-46eb-81da-e49d84c2ac25')","'Benomyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,358.5619854,5.68E-09 +928,"('biosphere3', '31b12a79-5555-4eb6-8cae-4b13b53ef8af')","'Bensulfuron methyl ester' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,30.75838945,2.84E-07 +929,"('biosphere3', '237ea455-6c82-4254-af86-9409df922094')","'Bentazone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,49.52827456,6.19E-07 +930,"('biosphere3', 'db0bac33-49e5-4888-89bd-15f4bfe11e51')","'Bifenox' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,740.7226251,0 +931,"('biosphere3', 'f2efe6b2-21ae-4ed0-aacf-2a6d41d8e801')","'Bifenthrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5733.52633,3.55E-07 +932,"('biosphere3', 'a74f6771-955e-4343-b796-4775067d51f5')","'Bitertanol' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,73.9902503,4.10E-07 +933,"('biosphere3', '62399986-3e4f-4522-b389-75eed416d838')","'Boron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +934,"('biosphere3', '58a3086e-3ded-4751-a313-05608f725081')","'Boron' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +935,"('biosphere3', 'e3b7b5aa-514e-430e-9544-07d8f5b8d494')","'Boron' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +936,"('biosphere3', 'f7ffe5fc-0bb1-4b41-87de-ed914fa637f1')","'Bromacil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,893.1260307,0 +937,"('biosphere3', '45afb543-bc53-471e-8fc9-6ed3a5775071')","'Bromine' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +938,"('biosphere3', 'e24da787-41ae-4aa3-b13b-36862b5fd10e')","'Bromoxynil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,869.047925,6.03E-07 +939,"('biosphere3', '5c049e3f-9246-47d0-ad60-7caaad814b2e')","'Bromuconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,946.627179,0 +940,"('biosphere3', 'e429b852-e421-4fcb-8a9b-b0241863bfb2')","'Cadmium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4936.045753,0.129743067 +941,"('biosphere3', '89721e33-60fa-4447-bfc6-2f27d44a7893')","'Cadmium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4936.045753,0.000217617 +942,"('biosphere3', '12d6029e-3801-42ee-a1bc-1ebf936884fc')","'Cadmium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4936.045753,0.000217617 +943,"('biosphere3', 'f16fa1da-e426-4820-bf9d-71595c22283b')","'Calcium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +944,"('biosphere3', '57117e3c-15aa-4b4d-b953-6d33986aa5aa')","'Calcium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +945,"('biosphere3', 'e681e6ba-2d66-4f17-8812-e8c74bdcf7e8')","'Calcium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +946,"('biosphere3', '718a3fe1-6ad8-42b6-8869-db317e79c03d')","'Captan' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,10008.34096,4.74E-07 +947,"('biosphere3', 'cd08eddd-d946-40cf-b0b5-87f6dbd7eb21')","'Carbaryl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3071.942565,1.78E-06 +948,"('biosphere3', 'bc0a4d1f-3ada-4dd8-8ab4-97dc45db3295')","'Carbendazim' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,54554.08444,2.07E-07 +949,"('biosphere3', '21f84442-7dc8-492a-8253-867dd1caf8d6')","'Carbetamide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,243.1041592,0 +950,"('biosphere3', '3c054a6e-2f9c-4e5e-9231-c61bc85a250a')","'Carbofuran' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21581.81317,1.50E-05 +951,"('biosphere3', '62859da4-f3c5-417b-a575-8b00d8d658b1')","'Carbon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +952,"('biosphere3', '7f8fd1ca-0412-4b2e-90fd-a9d294d947a3')","'Carbon' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +953,"('biosphere3', 'd07867e3-66a8-4454-babd-78dc7f9a21f8')","'Carfentrazone ethyl ester' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4084.809994,0 +954,"('biosphere3', '91d68678-7ed7-417a-86a7-a486c7b8a973')","'Carfentrazone-ethyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4084.809994,0 +955,"('biosphere3', '99fd89e9-829f-4998-9ac0-85da6442fd02')","'Chlorfenvinphos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17300.82408,0.000235649 +956,"('biosphere3', '2e3da68d-e404-4377-bce9-b35244980811')","'Chloridazon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1108.358159,0 +957,"('biosphere3', '6ab08314-53e1-4c4b-963f-3c6e6970273d')","'Chloride' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +958,"('biosphere3', 'b1991748-2151-4b51-8cdb-a8b4203677dc')","'Chloride' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +959,"('biosphere3', '6c97741f-8760-4a39-9e90-b534ca137a36')","'Chloride' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +960,"('biosphere3', 'af99a064-3ca7-43cd-9c72-cf20d245b0a8')","'Chlorimuron-ethyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +961,"('biosphere3', '42ac7dee-8152-4874-a742-c1c432792a3a')","'Chlorine' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +962,"('biosphere3', 'f0fb5b72-294e-4d86-b433-883e5f6e97fd')","'Chlormequat' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,9.74E-08 +963,"('biosphere3', '06b8a67f-5044-4060-be71-04e1dfc31e24')","'Chlorothalonil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,57823.87668,4.76E-07 +964,"('biosphere3', 'e8bc4c9e-c34f-4983-aea0-2433f3397a3a')","'Chlorotoluron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,352.6219012,0 +965,"('biosphere3', '736923cd-6eb7-4896-98f8-46951d56da97')","'Chlorpyrifos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,105993.6812,3.21E-05 +966,"('biosphere3', '4dbacf72-5a37-407e-9f02-1e618e58075a')","'Chlorsulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1727.752749,7.74E-07 +967,"('biosphere3', '69b50a29-addb-455f-823d-ed2ed68e8bb5')","'Choline chloride' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4.726464449,0 +968,"('biosphere3', 'e7881581-21b3-4f5c-bd63-6b0684b5e712')","'Chromium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,650.1791382,1.78E-09 +969,"('biosphere3', 'e65a9c58-21f1-48b6-b738-d05a8f10e5f3')","'Chromium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,650.1791382,1.52E-09 +970,"('biosphere3', 'e0336c9b-a0ff-4ae3-b8bb-ca1e46bbbc11')","'Chromium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,650.1791382,1.52E-09 +971,"('biosphere3', '68ba2022-830e-45fb-8c85-b35e94754ae9')","'Chromium VI' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,52555.16048,0.005356349 +972,"('biosphere3', 'c0f2ec91-162c-4706-b08c-9aa212fbe176')","'Cinidon-ethyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +973,"('biosphere3', '873d28d3-e53b-46a6-aaa0-63b923f0a56c')","'Clethodim' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8.478125632,0 +974,"('biosphere3', '29fba89c-b900-4160-a5f1-129916933bca')","'Clodinafop-propargyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,585.8376259,0 +975,"('biosphere3', '7120eec5-cf9a-4c69-83f2-f1a58813754c')","'Clomazone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,479.7232752,0 +976,"('biosphere3', 'a40f1ce3-e72f-48fa-8bba-174a1d4bf922')","'Clopyralid' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,269.8800362,0 +977,"('biosphere3', '50eebfd4-1b99-45d6-a149-68a6d4568cb4')","'Cloquintocet-mexyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8.872703308,0 +978,"('biosphere3', 'd0431945-ea71-4257-9be6-78a849cd5440')","'Cloransulam-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +979,"('biosphere3', '9542444c-7c7a-48e2-bc9c-9c7c34fb7b3e')","'Cobalt' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2153.790769,0 +980,"('biosphere3', '381a22c9-3722-4378-810d-86958f7b6d32')","'Cobalt' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2153.790769,0 +981,"('biosphere3', '12051b95-831a-49c0-9a70-fbc0e8fb9af9')","'Cobalt' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2153.790769,0 +982,"('biosphere3', '7e66a41c-d311-4949-bdd8-eef09cdcfa47')","'Copper' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,29164.37192,3.74E-05 +983,"('biosphere3', '0a5e8a67-f9ae-48b3-bfa7-e9d37c30a191')","'Copper' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,29164.37192,4.55E-07 +984,"('biosphere3', '44d3e792-7c9e-48ab-9de9-acfa2e097f26')","'Copper' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,29164.37192,4.55E-07 +985,"('biosphere3', '111c5f0c-3dda-4b7c-a5e2-aaada6ab6f79')","'Cycloxydim' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.139142624,0 +986,"('biosphere3', 'dd786e61-d387-4dc4-8314-2a5f958e7168')","'Cyfluthrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,677723.6248,3.93E-07 +987,"('biosphere3', '0ec92f76-932f-4407-bd4f-eb9aa426e099')","'Cyhalothrin, gamma-' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4954.653738,5.62E-07 +988,"('biosphere3', '7427c8ff-5f18-4e0e-9633-64c088b69fd8')","'Cymoxanil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1274.349805,0 +989,"('biosphere3', 'e7f1df40-788a-4403-81ea-e5e9e84e32d7')","'Cypermethrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,70127.43106,2.60E-07 +990,"('biosphere3', 'c9727abf-58b7-4f90-a670-86f7101e741d')","'Cyproconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,115.4630533,0 +991,"('biosphere3', 'b45f25fe-a5bb-42ac-9859-304bf6ccfd83')","'Cyprodinil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,280.3192621,0 +992,"('biosphere3', '282973e4-3c2d-4a9c-a3f2-d39a5b36aa76')","'Deltamethrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1409.813935,1.41E-07 +993,"('biosphere3', 'c4302ab1-eb6d-458b-86ad-f7d7d4df411e')","'Diazinon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +994,"('biosphere3', '44b7826f-6f4c-44f3-81eb-ad3426073fae')","'Dicamba' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,476.0762071,1.12E-06 +995,"('biosphere3', '02dd7309-b7c2-47bb-82c8-09345be9c2bb')","'Dichlorprop-P' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +996,"('biosphere3', '009f3374-e604-4e24-88f5-d785cd93aac7')","'Diclofop' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +997,"('biosphere3', '0f02d06c-c44d-4681-a677-eff6aa3cd7e0')","'Diclofop-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,285.0918569,0 +998,"('biosphere3', '98287294-2ab7-4781-bb9e-5d045cdce2a2')","'Dicrotophos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1534.677339,9.34E-06 +999,"('biosphere3', '5458bee1-0c04-445c-b617-a7315d6a2b9f')","'Difenoconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1921.726541,0 +1000,"('biosphere3', 'b918120c-5dd9-4a28-86ee-9b05a42bdd01')","'Diflubenzuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,169738.0331,3.50E-07 +1001,"('biosphere3', '016da38a-40a6-483c-b328-9782dc46e802')","'Diflufenican' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5.522477872,0 +1002,"('biosphere3', 'cc667a3d-e88b-42f7-b265-461b7d66837f')","'Diflufenzopyr-sodium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1003,"('biosphere3', 'b3b430f2-1a9e-4db3-8379-85097a24de1f')","'Dimethachlor' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1747.275462,0 +1004,"('biosphere3', '71525276-3417-4d4b-9af8-0baa265de4a2')","'Dimethenamid' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,20486.62835,0 +1005,"('biosphere3', '28f19625-5e6a-4902-8c18-4b519db19d86')","'Dimethoate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3621.596791,1.59E-06 +1006,"('biosphere3', '23f4021a-5b2d-4e16-ba87-76e871b32392')","'Dimethomorph' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14.03134668,0 +1007,"('biosphere3', '063a0cee-aa71-4ea6-85ca-045c74ca1a66')","'Diquat' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1008,"('biosphere3', '0e0554ad-f6aa-472e-88e0-489f19bec2bb')","'Diquat dibromide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1009,"('biosphere3', '31913320-21f3-4cc2-b09a-a15ac9b65f5e')","'Dithianon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,365.7065026,1.07E-07 +1010,"('biosphere3', '934c5e25-5370-421c-b079-07d01c49dedb')","'Diuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4019.340357,1.07E-06 +1011,"('biosphere3', 'bc86067c-20e8-46e7-8419-de1eee73ccdd')","'Elemental carbon' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1012,"('biosphere3', '69da88e0-7fb1-4223-bb2d-b6e86e2af891')","'Endosulfan' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4538.020496,1.37E-06 +1013,"('biosphere3', '97afe0e8-be32-431e-94ea-a1fa5d156c76')","'Endothall' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23.96460189,7.80E-08 +1014,"('biosphere3', '1afedfb8-dfbd-4722-a5fc-f678c593d907')","'Epoxiconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,105.7795183,0 +1015,"('biosphere3', 'fd950a9b-db9f-41c9-a8b0-d61f152f6ef2')","'EPTC' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,97.07350922,7.86E-07 +1016,"('biosphere3', '59177170-590b-4d94-833a-e23d899f422e')","'Esfenvalerate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,112006.4298,0 +1017,"('biosphere3', 'b028ffea-ecff-4f0e-a2b0-a84eb647cdae')","'Ethalfluralin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1018,"('biosphere3', '0ba582f8-3360-441a-a93c-ea15e87f7b0c')","'Ethephon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,560.0652845,2.83E-06 +1019,"('biosphere3', 'a2f886e3-8db8-4bce-bedf-b2004b4cc558')","'Ethofumesate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,202.5805656,0 +1020,"('biosphere3', '21b5487b-4086-490b-9f98-1f5503feee7c')","'Ethoprop' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17345.46423,0.000123512 +1021,"('biosphere3', 'e91313f6-129e-4bdb-8217-61756ce5b37b')","'Fenamiphos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,28046.64296,1.10E-05 +1022,"('biosphere3', '27b0b1f4-8cd4-4277-bfdd-1cab2f9c5e1c')","'Fenbuconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,30.60619078,8.17E-09 +1023,"('biosphere3', '5229d225-38a2-4ec9-a7ed-4fd906a57c76')","'Fenoxaprop' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1024,"('biosphere3', 'b700cb75-eeff-444c-aabc-ea4dbd7a630e')","'Fenoxaprop ethyl ester' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,170.5124376,0 +1025,"('biosphere3', 'b6e37022-cef7-4b2a-9e1e-f6ae4a0503e7')","'Fenoxaprop-P ethyl ester' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1026,"('biosphere3', 'd18c4258-de90-4c4b-8a63-7c92335716ae')","'Fenoxycarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,633.5565523,0 +1027,"('biosphere3', 'd317b7de-adc0-478c-8c7f-9d6d0f476e97')","'Fenpiclonil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,384.0826701,0 +1028,"('biosphere3', '823b5396-5fc6-427e-8a03-aeeff965e986')","'Fenpropidin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1029,"('biosphere3', 'c8896e68-6c78-43be-a31b-bc5d2307f40a')","'Fenpropimorph' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1030,"('biosphere3', '4dd95929-09d1-4c60-8792-4c9b6404d168')","'Fentin hydroxide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,813.4815315,5.58E-08 +1031,"('biosphere3', 'b7cd268b-1b52-45f1-91fe-cd51bf59d21d')","'Fipronil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,32315.10688,1.41E-05 +1032,"('biosphere3', '0015ec22-72cb-4af1-8c7b-0ba0d041553c')","'Florasulam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1033,"('biosphere3', '82f5987e-39bf-4055-8f4e-ea3a1882306f')","'Fluazifop-P-butyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,164.6428089,0 +1034,"('biosphere3', '4a786a72-4967-453c-b752-2cb1eaf73a0b')","'Flucarbazone sodium salt' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1035,"('biosphere3', '9e253ace-bf5e-40f2-b9d3-104595b327e4')","'Fludioxonil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2660.182572,0 +1036,"('biosphere3', 'e9889638-ea4c-45b8-90fa-3201b43191e3')","'Flufenacet' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6137.049376,0 +1037,"('biosphere3', 'e401b1cf-f424-4837-a5f0-410514498b58')","'Flumetsulam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,10219.64559,0 +1038,"('biosphere3', '4f5a338d-a56a-417d-ae4d-cfd6f51a4729')","'Flumiclorac-pentyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,868.2752463,0 +1039,"('biosphere3', 'a1693936-2774-4f31-8e5b-c513a5870015')","'Flumioxazin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,10054.75336,0 +1040,"('biosphere3', 'a768b3a4-dce7-48f2-bb44-89c8a4ba00d1')","'Fluoride' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1041,"('biosphere3', 'de875382-6ef2-454c-b828-2c3a5080d39c')","'Fluoride' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1042,"('biosphere3', '0c77f5af-0a0b-4205-acb6-0b031c22029f')","'Flupyrsulfuron-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1043,"('biosphere3', 'd1812c3b-7f5e-4ce3-80b2-e599642168cf')","'Fluquinconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1044,"('biosphere3', '20834550-2d87-47d0-9d3c-fd65c108c72b')","'Fluroxypyr' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1116.704606,0 +1045,"('biosphere3', '48e16ea8-128c-4d96-a4f4-668f12249434')","'Flurtamone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1046,"('biosphere3', 'c4cb99f9-ed0e-4543-8596-da56a8de8e40')","'Flusilazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1047,"('biosphere3', 'df260d38-1369-4524-a83a-bbd8ace56681')","'Flutolanil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1048,"('biosphere3', '928f64ab-0d84-4923-802f-1fa42ea251f2')","'Folpet' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,381053.7565,6.85E-07 +1049,"('biosphere3', 'cc05b490-fe4b-47ac-893c-951b0f359285')","'Fomesafen' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21.61353929,1.86E-06 +1050,"('biosphere3', 'b11d2f9f-1fee-49ca-aef6-de238b8f98c9')","'Foramsulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1051,"('biosphere3', '4c44e04f-9b3d-4389-bf08-1bddf9dfa9e7')","'Fosetyl-aluminium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4.202464925,1.42E-10 +1052,"('biosphere3', '2b6c2cee-deb2-49f1-a552-a666a41fc14e')","'Fungicides, unspecified' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1053,"('biosphere3', 'af97a8ee-abed-4866-9330-89844b9f135e')","'Furathiocarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1054,"('biosphere3', 'b7a0a14a-b0b2-4aeb-923f-5c2ec1251dd5')","'Glufosinate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1055,"('biosphere3', '52be5a94-fe48-4ec3-b694-44d08262bbad')","'Glufosinate ammonium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1056,"('biosphere3', '3850d44e-8919-47bc-9c0a-51ccc4ec9d9f')","'Glyphosate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,103.9440773,7.63E-08 +1057,"('biosphere3', 'b4f9a201-2a20-4f41-a572-eabc98c75e1b')","'Glyphosate' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,103.9440773,5.19E-08 +1058,"('biosphere3', 'b59aad72-50dd-4938-93bd-9ed99ab720af')","'Halosulfuron-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,62492.71879,0 +1059,"('biosphere3', '66a6dad0-e450-4206-88e1-f823a04f8b1d')","'Haloxyfop- (R) Methylester' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1060,"('biosphere3', '3941d87e-6d5c-45d0-9fd5-16e3b948431c')","'Hexazinone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23322.81089,4.08E-07 +1061,"('biosphere3', '4c99e2cb-60ae-499e-aae1-c983fb3bd9f2')","'Hydramethylnon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,98.00404444,4.89E-05 +1062,"('biosphere3', 'f5613910-92ec-4bf3-9585-926749432289')","'Imazamox' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1035.782178,0 +1063,"('biosphere3', 'a72e7983-329f-4fb7-9b05-77efe97717e4')","'Imazapyr' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,210.7204231,0 +1064,"('biosphere3', '77152ee4-bf01-4720-a95f-19bde9bdcda8')","'Imazaquin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1065,"('biosphere3', '3bf44c34-e91e-449a-878c-9a6e8220cb63')","'Imazethapyr' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,90.65429258,3.50E-08 +1066,"('biosphere3', '10507b66-45a2-4f20-ae9c-609e8b4d07c8')","'Imidacloprid' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,96.65682185,1.14E-07 +1067,"('biosphere3', 'df1cc3ea-7a3c-40ca-8349-42b89ff59063')","'Iodosulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1068,"('biosphere3', 'c4ab841c-b243-45fe-b5f9-258a00016fc9')","'Iodosulfuron-methyl-sodium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1069,"('biosphere3', '6744b13d-2908-4725-88a3-1afd6696c899')","'Ioxynil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1044.859483,0 +1070,"('biosphere3', '299f371a-61c1-4ea2-8c38-901aa74acf7d')","'Iprodion' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,16219.05949,3.49E-06 +1071,"('biosphere3', 'db364689-e1a3-4629-8835-e6c59d6daf09')","'Iron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1072,"('biosphere3', '98693cdf-d9fc-43ed-bfe6-78dfe5742d33')","'Iron' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1073,"('biosphere3', 'ce567bdc-76ec-4ca0-be79-8bb796e448b3')","'Iron' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1074,"('biosphere3', '04f9be83-433e-4564-af72-98e463e5b616')","'Isoproturon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9461.352075,0 +1075,"('biosphere3', '90f7c1f9-e57e-4806-a154-5be9a6e1ac2e')","'Isoxaflutole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,161.2421325,0 +1076,"('biosphere3', 'e7c5db65-775c-4ada-8a63-32c67792bd52')","'Kresoxim-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,90.09562197,1.06E-09 +1077,"('biosphere3', '8c823f73-5fc6-4334-8a96-651365e7b542')","'Lactofen' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1078,"('biosphere3', 'f1b48f46-77aa-4dba-bd83-87e220816f42')","'Lambda-cyhalothrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,133638.4039,0 +1079,"('biosphere3', '4010918f-7fd0-4925-8fbb-8fd7a44a806c')","'Lead' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,221.4977919,0.026577247 +1080,"('biosphere3', '67652827-017f-4856-8d0a-c97bac4c6562')","'Lead' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,221.4977919,7.10E-05 +1081,"('biosphere3', '739234c8-5359-48b4-983f-9cb170d68c8d')","'Lead' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,221.4977919,7.10E-05 +1082,"('biosphere3', '6b7a3386-4aa7-4e58-9450-41130dbfa099')","'Lenacil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6449.382805,0 +1083,"('biosphere3', '971f25e5-1501-454a-8a5a-2723f84d7974')","'Linuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,11123.30312,6.04E-06 +1084,"('biosphere3', '6230c099-a983-4d9d-98a8-a0697962bec3')","'Lithium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1085,"('biosphere3', 'e8475907-2081-4fd5-9526-bfcef88380db')","'Magnesium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1086,"('biosphere3', '581ddcdf-82b7-4f87-83ee-761a44fea7f7')","'Magnesium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1087,"('biosphere3', 'dd7748c9-be28-4c89-b8b1-ed5ac14599a2')","'Malathion' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1088,"('biosphere3', '863ebe6d-0f48-4c32-94df-a6369f963a2e')","'Maleic hydrazide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1089,"('biosphere3', '4f6390e3-bca5-4d3b-aead-7d63f2534440')","'Mancozeb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1748.637207,1.14E-07 +1090,"('biosphere3', 'd689f35b-5ebf-4b87-bb12-c4e316219275')","'Maneb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2289.781129,1.40E-07 +1091,"('biosphere3', '9ba8c05d-1593-45a5-8d3b-5c4f3e9fef32')","'Manganese' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1092,"('biosphere3', '9c706cff-cb82-4207-a589-95896e04dc08')","'Manganese' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1093,"('biosphere3', '6b7fbea6-4a86-40f9-954d-3c9b3611abfd')","'Manganese' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1094,"('biosphere3', 'e5492922-eaf5-4409-aa49-7f2a35cd0336')","'MCPA' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,194.2419717,8.86E-06 +1095,"('biosphere3', '415f43c0-3908-418d-95cd-fca46ec371b9')","'MCPB' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,266.8531152,4.68E-07 +1096,"('biosphere3', 'bef7c90d-9f65-483c-b6b6-4b5d1086c878')","'Mecoprop' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,255.2536459,7.42E-06 +1097,"('biosphere3', '0f901f59-84bd-42a5-9a4c-04bd8cac7fb9')","'Mecoprop-P' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,124.9728791,0 +1098,"('biosphere3', '8ebbd256-8114-4438-98c9-bbed994c140b')","'Mefenpyr' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1099,"('biosphere3', 'f97ee737-45ca-4a19-bbf4-30746bfa6fb4')","'Mefenpyr-diethyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1100,"('biosphere3', '6008086f-5522-493a-8bfe-60e6d0d53b34')","'Mepiquat chloride' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.034758837,1.63E-12 +1101,"('biosphere3', 'ed2d49f8-110d-4db4-9488-f61c349e6117')","'Mercury' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15597.06515,2.388009245 +1102,"('biosphere3', 'e2128dc4-e065-4030-81b3-c978d7bc48ec')","'Mercury' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15597.06515,0.010123129 +1103,"('biosphere3', '6248aeed-1ce1-49ee-be1c-3471ebf0a82e')","'Mesosulfuron-methyl (prop)' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1104,"('biosphere3', '8b1020ea-0714-40df-8ea9-450e26963a43')","'Mesotrione' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1105,"('biosphere3', '08f3db43-3185-4d9d-846a-404e27928eaf')","'Metalaxil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,225.0913469,2.68E-07 +1106,"('biosphere3', '4fde8c19-5560-4fc4-a416-7b244f7439ec')","'Metalaxyl-M' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,507.8834624,0 +1107,"('biosphere3', '597847df-518f-4bd6-ae50-1de01f2761a4')","'Metaldehyde' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1108,"('biosphere3', 'fbebc389-bce6-4540-8869-50076139f370')","'Metamitron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23.16387391,0 +1109,"('biosphere3', '00acb9f0-1640-4f8c-89ef-d857e1428be0')","'Metam-sodium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5393.370771,0 +1110,"('biosphere3', '89dd5dfb-aa72-4c48-aaf7-b0aa16497029')","'Metazachlor' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,220.374273,0 +1111,"('biosphere3', '1defe52a-bc9b-4c03-90fb-91bd35f6ce49')","'Metconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1112,"('biosphere3', '7b34b63f-b1a0-4b25-ae5e-dc1368b4512a')","'Methoxyfenozide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1388.798808,0 +1113,"('biosphere3', '4218b9ea-78e7-44b5-b4e1-5a0fca05aeb8')","'Methyl parathion' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1240.168413,2.82E-06 +1114,"('biosphere3', '4412a76b-eb71-4fd3-afc9-6871a58cae5f')","'Metiram' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.423126355,9.97E-11 +1115,"('biosphere3', 'd2885a24-b728-4832-8638-15697630eff9')","'Metolachlor' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5957.959915,2.78E-07 +1116,"('biosphere3', 'b7feaed4-a5d3-4601-894c-e10f9dc7575b')","'Metosulam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1117,"('biosphere3', '171aebab-b5e0-493f-8776-43e1a694666f')","'Metribuzin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1915.770898,5.93E-07 +1118,"('biosphere3', 'c2c2b2c4-0a30-4c79-8d1f-0735a95a8962')","'Metsulfuron-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6441.702873,3.40E-07 +1119,"('biosphere3', '5a405a78-45bb-49de-8ecc-48a5d9cf9721')","'Mineral oil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1120,"('biosphere3', 'aa2f15ce-fc50-4252-89d8-89e06b4f588a')","'Molinate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,745.4217087,2.38E-05 +1121,"('biosphere3', '9cf3a683-ed3d-40e9-b039-7653e4fc9e20')","'Molybdenum' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,147.5338596,0.004662037 +1122,"('biosphere3', '8b531ec0-ca7a-49cd-bef0-56f110112f34')","'Molybdenum' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,147.5338596,3.85E-05 +1123,"('biosphere3', '33456751-d78b-465d-8635-52d71e77cf54')","'Monocrotophos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1267.945099,6.27E-05 +1124,"('biosphere3', 'ef4884eb-c75d-4ef8-9170-11b20401cbca')","'MSMA' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17.36188718,0 +1125,"('biosphere3', '9122eb15-12c8-4621-a036-209f6c06e3fb')","'Napropamide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,126.2046533,6.44E-08 +1126,"('biosphere3', 'b4580545-243d-48d2-a3a0-2633a4f46fb1')","'Nickel' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7664.978129,0.000111674 +1127,"('biosphere3', 'a72a45ee-395a-4d25-b893-9d183e43e76e')","'Nickel' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7664.978129,2.08E-05 +1128,"('biosphere3', '2bcad3b3-5305-481c-a166-ad5e6eac2675')","'Nickel' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7664.978129,2.08E-05 +1129,"('biosphere3', '504672ba-784f-4c87-bf3e-ede17992e4a2')","'Nicosulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,215.5308466,0 +1130,"('biosphere3', '774c181d-18a7-4096-aa99-56801ef6b909')","'Nitrate' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1131,"('biosphere3', 'eadc37a4-8b1e-4dd2-8f4a-39d89d5f39ba')","'Nitrogen' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1132,"('biosphere3', 'd41ee922-fa80-45e3-a317-3e9b72ee385d')","'Oils, non-fossil' (kilogram, None, ('soil', 'forestry'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1133,"('biosphere3', 'be4835bf-5252-48c1-be48-14f59d533bbd')","'Oils, non-fossil' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1134,"('biosphere3', 'c161d9b4-2237-4053-b549-9e0cfc201e0d')","'Oils, non-fossil' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1135,"('biosphere3', '85403ceb-612c-494a-bcab-901946278f58')","'Oils, unspecified' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1136,"('biosphere3', '7538ab50-2ef6-4e49-880d-48d5b283a79b')","'Oils, unspecified' (kilogram, None, ('soil', 'forestry'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1137,"('biosphere3', 'e9bf9e2d-4bd1-4679-86ff-e34f6b750ea0')","'Oils, unspecified' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1138,"('biosphere3', '21f77eaa-6f3e-426d-8932-fde33cd936d6')","'Oils, unspecified' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1139,"('biosphere3', '365010c0-d4dd-4281-a1a7-7e2302c4105f')","'Orbencarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,129.4728531,0 +1140,"('biosphere3', 'e61443a5-41b6-4407-a1cd-116bdfb38a67')","'Organic carbon' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1141,"('biosphere3', '662c6aea-3c5b-4205-a3e0-942f29af03c4')","'Oryzalin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,10478.71448,3.37E-07 +1142,"('biosphere3', 'aaa7a82f-7d09-48ed-8f08-8eb3c7eeb928')","'Oxamyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5616.262911,1.86E-06 +1143,"('biosphere3', '83cc3810-ac58-40a3-97af-04a855d4c809')","'Oxydemeton-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1425.34543,0 +1144,"('biosphere3', '19ca9276-e5c6-47f5-a3a4-18284d2a27c3')","'Oxyfluorfen' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,89.98044993,3.57E-06 +1145,"('biosphere3', '6d74bab2-969f-419c-a2dc-4dde50cf2553')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1146,"('biosphere3', 'e170546d-a672-4840-bd7a-1c7f8b627286')","'Paraquat' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,156.2309363,8.53E-09 +1147,"('biosphere3', 'e7d1072e-68ab-4fb4-b141-feb865e3082d')","'Parathion' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,83124.28655,2.93E-06 +1148,"('biosphere3', '9cbbd44e-bc02-4586-9d58-e223db6f5e24')","'Pendimethalin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2932.025786,1.07E-07 +1149,"('biosphere3', '5da998ca-223d-47bb-a516-2ee8c9bf6f2c')","'Permethrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,781.1036719,4.03E-08 +1150,"('biosphere3', '18fb2184-d78e-467f-9eac-116bd534739f')","'Pesticides, unspecified' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1151,"('biosphere3', '50fb73f7-935a-4cf8-81a0-ff3ca0ea35f9')","'Phenmedipham' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,248.7435612,1.54E-08 +1152,"('biosphere3', '24d49070-45df-4627-84fa-2d8adeca255b')","'Phorate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6039.63943,6.30E-06 +1153,"('biosphere3', 'b268aafb-2e5a-4bb1-a3ab-37f378ee8090')","'Phosmet' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,477399.9009,7.48E-06 +1154,"('biosphere3', 'c89a0749-40a5-4c9c-8770-c4295ea34977')","'Phosphorus' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1155,"('biosphere3', '2f8952b0-c90c-4e3d-b546-52b862fc8f11')","'Phosphorus' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1156,"('biosphere3', '83d5b12c-781b-463a-81a2-cdc5918f75cf')","'Picloram' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1116.900695,4.85E-07 +1157,"('biosphere3', '1a7fba0e-91a3-4ac2-a58e-44575eeed078')","'Picoxystrobin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1158,"('biosphere3', '13be989f-9a8e-420d-b27d-47c3565eb77c')","'Piperonyl butoxide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1159,"('biosphere3', '1c0699e2-9be2-4c30-8328-fc0ad8caac58')","'Pirimicarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,349.550094,9.89E-07 +1160,"('biosphere3', 'b717518e-b8b6-44fa-a8e1-f9fde2436caf')","'Potassium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1161,"('biosphere3', 'bc269269-1874-4423-b5f0-eed0f5227684')","'Potassium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1162,"('biosphere3', '73b26c10-3c57-4732-8a36-6d1d98d6c925')","'Potassium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1163,"('biosphere3', 'b1fedd38-0f13-4baa-a6e9-ccc453e5b2f5')","'Primisulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1164,"('biosphere3', '99f1e4a4-2f47-4098-8f28-4c736a5b675d')","'Prochloraz' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,19162.55654,3.25E-05 +1165,"('biosphere3', '364cef97-0380-4d40-8b47-35e073f0c54f')","'Procymidone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1166,"('biosphere3', 'cab8d859-018a-4919-9324-f3febdea35e0')","'Profenofos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1167,"('biosphere3', '2e718246-b4f2-44e3-bcc5-2ce3496d2db6')","'Prohexadione-calcium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1168,"('biosphere3', '7000de19-18c4-4bfd-90a2-9b1f2346eb99')","'Prometryn' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,24118.1778,2.70E-07 +1169,"('biosphere3', '30e130e0-ff90-4e07-9cda-c53b81e0bbe6')","'Pronamide' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,498.1355563,1.31E-06 +1170,"('biosphere3', '0a0a8657-0cc0-4132-a31b-cb4b0a0f3f3a')","'Propachlor' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4596.606593,1.83E-07 +1171,"('biosphere3', 'c1ad9058-6019-4835-ab47-d3e3f35b94d9')","'Propamocarb HCl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6.271041981,0 +1172,"('biosphere3', 'a9224ed8-bdfd-4e66-9e97-df752e2485ef')","'Propanil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,60375.47899,1.43E-06 +1173,"('biosphere3', '6b3026ac-76b1-493d-bbcc-1281ac24905e')","'Propargite' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,310.2595888,4.73E-07 +1174,"('biosphere3', 'f7c6455a-51e5-4aba-8361-99b98d47c47b')","'Propiconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,285.0691571,4.27E-07 +1175,"('biosphere3', '3aa9471c-359f-40b4-b0c7-266123f2623e')","'Propoxycarbazone-sodium (prop)' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1176,"('biosphere3', '04cd03b8-8206-4d3a-a910-59ffc0550c2c')","'Prosulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3507.530003,0 +1177,"('biosphere3', 'cfa6de56-8a29-4a27-8868-fb6d1f092d36')","'Prothioconazol' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1178,"('biosphere3', '066a904d-beba-47a4-a153-3981ca3554e0')","'Pymetrozine' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,11.64309686,0 +1179,"('biosphere3', 'c7328f5c-abaa-4786-a9ef-6706a9108382')","'Pyraclostrobin (prop)' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1180,"('biosphere3', '6f478f7b-1817-4316-8dd8-c65fdc1c6be7')","'Pyrethrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1165.755883,2.90E-07 +1181,"('biosphere3', 'b2663551-c9e2-446c-88e1-0a87435667dc')","'Pyrimethanil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,116.155359,0 +1182,"('biosphere3', 'c6b0b28d-dddf-4610-b62e-971d328fae57')","'Pyrithiobac sodium salt' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,153.0021978,0 +1183,"('biosphere3', '658441e6-f7a0-4ce5-bbe7-329a2a9e31c8')","'Quinclorac' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,145.5141013,0 +1184,"('biosphere3', '80059f17-e3f9-4041-9fdc-31658ce27288')","'Quinoxyfen' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1185,"('biosphere3', '99f78a2c-48e3-492c-aa5a-ed0c2f24a1a0')","'Quintozene' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,937.4124331,1.02E-05 +1186,"('biosphere3', 'f9c73aca-3d5c-4072-81dd-b8e0643530a6')","'Quizalofop ethyl ester' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,461.500421,8.77E-07 +1187,"('biosphere3', 'be206401-d803-4b14-8319-53b916e9beef')","'Quizalofop-P' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1188,"('biosphere3', '7bddbf65-6f39-4ae1-bddf-d8d4632c8efe')","'Quizalofop-p-ethyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1189,"('biosphere3', '8b4f0e68-38d5-4bee-b647-680d3a117560')","'Rimsulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3701.972219,0 +1190,"('biosphere3', '6d9d5607-330d-4f8d-95bb-e6280c9dad6c')","'Rotenone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,18.90675745,4.52E-08 +1191,"('biosphere3', 'c6ce1ad0-d8da-41d0-8db1-cabc3760b422')","'Selenium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3731.258616,0 +1192,"('biosphere3', '45acd8c0-657f-46d3-8026-4b3c9fadaeb6')","'Selenium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3731.258616,0 +1193,"('biosphere3', '82688564-c9d5-43ab-876e-1eb16fd97130')","'Sethoxydim' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,47.18626877,4.37E-08 +1194,"('biosphere3', '39f248d5-dd9b-4460-8f34-3415dc3f3e43')","'Silicon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1195,"('biosphere3', 'a57cb19d-f436-4c0c-a2ab-097c544bd95f')","'Silicon' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1196,"('biosphere3', '6575edf4-826c-4e99-a21a-08a1afec1396')","'Silicon' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1197,"('biosphere3', '1417474c-bf73-4ffc-9eff-94a994bf76a8')","'Silthiofam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1198,"('biosphere3', 'fce0b9ae-53c8-4ab0-9e7a-7f5c2ed2c856')","'Silver' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,100987.4334,0.073156956 +1199,"('biosphere3', '7da45a0b-0dcf-413c-8de0-44d8ebca9e6e')","'Silver' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,100987.4334,0.073156956 +1200,"('biosphere3', '3ac07adf-7b44-46f7-9470-b7b1bf0ba961')","'Simazine' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,12634.63998,8.77E-06 +1201,"('biosphere3', 'cc1c987a-2b6e-4cbc-969a-73f1c96de448')","'Sodium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1202,"('biosphere3', '4573f0c9-0fdd-413f-ae74-e27290f40743')","'Sodium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1203,"('biosphere3', 'f7340d88-d66b-45c8-89af-251646b2c12e')","'Spinosad' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1204,"('biosphere3', 'f8448f5d-a27f-4fa9-a731-94cb3b9eb7f3')","'Spiroxamine' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1205,"('biosphere3', '7f0873fe-731e-4b99-a384-17f0ad36a318')","'Strontium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1206,"('biosphere3', 'ee018b5e-c9c3-486b-aeb4-ef045a4e3ccd')","'Strontium' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1207,"('biosphere3', '4c0a6227-af22-45cb-b75b-b276ce0e4d47')","'Strontium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1208,"('biosphere3', 'e2f205c4-2146-4578-8cd4-e6f309521ef4')","'Sulfate' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1209,"('biosphere3', '7ab9afec-40e0-41b0-82b1-6cb15c84e949')","'Sulfentrazone' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5256.022376,0 +1210,"('biosphere3', '4518a791-f5dd-4ee2-ab87-2f8ffca6b230')","'Sulfosate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1211,"('biosphere3', '6a9afa4e-3b29-4695-b742-56c893060dd3')","'Sulfosulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1581.689868,0 +1212,"('biosphere3', 'd4049741-cef2-4edd-a3af-9728b9e3a568')","'Sulfur' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1213,"('biosphere3', '16f40b1c-f7c8-4100-9916-81a260493951')","'Sulfur' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1214,"('biosphere3', '9bb73c31-c01d-4384-b567-15c1544ae581')","'Sulfuric acid' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,92.49135491,0 +1215,"('biosphere3', '32451556-ee07-4e36-bd8a-09f8847f9c83')","'Sulfur' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1216,"('biosphere3', '723a8b35-613c-4dbb-91af-ed3c06e273cc')","'TCMTB' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4553.227967,0 +1217,"('biosphere3', 'a805071f-ce96-4d72-bdd5-4334d9aa3c23')","'Tebuconazole' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1218,"('biosphere3', 'd00c7ea5-29e7-445c-b20e-672d421f3ea4')","'Tebufenpyrad' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1219,"('biosphere3', '57d8084d-08e2-4212-9abf-3f051bee142e')","'Tebupirimphos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3383.333753,0 +1220,"('biosphere3', '3d92a9a3-8942-4ed9-8522-fe027656e9e9')","'Tebutam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1221,"('biosphere3', 'ad419049-3445-481f-97a3-3d4529ee924f')","'Teflubenzuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,41283.75821,4.97E-05 +1222,"('biosphere3', '273b51ae-dcc4-45c6-b8da-f6ba0313edf8')","'Tefluthrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4664.853113,0 +1223,"('biosphere3', 'a110815e-69d2-43bd-8bf8-4e842e5895e3')","'Terbacil' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2525.614961,1.32E-06 +1224,"('biosphere3', '15057e97-7b47-405e-8222-6ed5cf4e0087')","'Terbufos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,53712.03118,0.000412023 +1225,"('biosphere3', '9a8e2785-9175-4818-83ae-fc394e2d695a')","'Thiamethoxam' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1226,"('biosphere3', '68f5b661-cd07-445f-b14b-0fa266b3b168')","'Thidiazuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,862.9181674,0 +1227,"('biosphere3', '4bafafca-ff89-46aa-9aaf-c93667df13a4')","'Thifensulfuron-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,41325.57199,6.56E-06 +1228,"('biosphere3', '5d02269c-1130-47a5-aa86-00d79802dc88')","'Thiobencarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1025.563114,6.93E-07 +1229,"('biosphere3', '44230d0d-f11f-473e-8b43-75656dcac834')","'Thiodicarb' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4345.118683,2.43E-07 +1230,"('biosphere3', 'f992dcb8-c19c-46b1-a36b-3053ef83b755')","'Thiram' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15803.20423,1.89E-07 +1231,"('biosphere3', '168c970b-91c9-4427-a3a0-6686ad6cc2c4')","'Tin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1714.419845,0 +1232,"('biosphere3', '334f3d29-ec7d-4ca4-9e65-524c64c6649c')","'Titanium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1233,"('biosphere3', '6bc9e39e-bfc5-4929-88d9-863684901143')","'Titanium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1234,"('biosphere3', '9de9178b-6d1b-476d-af1f-a16a7b3031a9')","'Tolylfluanid' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15771.03438,0 +1235,"('biosphere3', 'ad83a9b9-77ce-4a23-852d-d606ec7f8ffb')","'Tralkoxydim' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1236,"('biosphere3', '7e7dafac-5f96-495c-8a34-11fdc6e9f4e8')","'Triadimenol' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,319.7613738,5.63E-07 +1237,"('biosphere3', 'c5c25aa6-d630-40bd-bed7-4e718c877ef4')","'Tri-allate' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,236.8213632,2.44E-06 +1238,"('biosphere3', 'e9d1e8d9-2db3-40d8-b7a9-8f39a0bd5ae0')","'Triasulfuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6056.636506,2.11E-05 +1239,"('biosphere3', '395bf19a-d3e3-4185-9bee-141fdbfd6afe')","'Tribenuron' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1240,"('biosphere3', 'ebb21cc2-3bb4-45eb-8f7f-58bf297f6431')","'Tribenuron-methyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,175.1738657,3.62E-06 +1241,"('biosphere3', '9f6d9658-e3f7-4c8b-96da-bfec6511ae7d')","'Tribufos' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,38.44382376,6.72E-06 +1242,"('biosphere3', '51e8811b-04e2-4801-987c-fb0015535965')","'Trichlorfon' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,52549.7251,5.38E-06 +1243,"('biosphere3', 'e44fd74a-5967-4e79-bad0-08e7363b630c')","'Triclopyr' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1315.304465,0 +1244,"('biosphere3', 'fa1a376f-567a-47b2-98e9-b3e5a5e4d224')","'Trifloxystrobin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1245,"('biosphere3', '91b452dc-ddbd-40a4-9281-33303109495e')","'Trifluralin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,592.5107504,1.98E-06 +1246,"('biosphere3', '2ffd03dc-a8df-467d-a362-b1f9f3136abc')","'Triforine' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1194.664832,1.73E-06 +1247,"('biosphere3', '51c7daf4-14e1-45e9-aa67-051c4ddcd9da')","'Trinexapac-ethyl' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,163.5021226,0 +1248,"('biosphere3', 'adfb11ec-7a41-47da-abc2-c92c59810e50')","'Vanadium' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,58269.36996,0.000139543 +1249,"('biosphere3', '4122276a-89a6-4e31-ad7d-19568cecf9ce')","'Vanadium' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,58269.36996,0.000139543 +1250,"('biosphere3', '7db70809-e30b-4633-992e-2cfe03891907')","'Vinclozolin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1059.064568,2.16E-06 +1251,"('biosphere3', 'b6e1f836-2b5c-4bd5-bc8c-af065ee7c230')","'Zeta-cypermethrin' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,70127.43106,2.60E-07 +1252,"('biosphere3', '84aa799e-9d98-4d34-85e0-516d28ab1be9')","'Zinc' (kilogram, None, ('soil', 'agricultural'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21139.01691,0.043525572 +1253,"('biosphere3', 'b88999ec-84fd-462d-9dec-7e20a4636a58')","'Zinc' (kilogram, None, ('soil', 'industrial'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21139.01691,0.000702025 +1254,"('biosphere3', '77887584-ddca-4920-952c-3609730e0c13')","'Zinc' (kilogram, None, ('soil',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21139.01691,0.000702025 +1255,"('biosphere3', 'd6911d36-3fec-41fe-8ef9-540f6543a240')","'1,4-Butanediol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7.309331982,0 +1256,"('biosphere3', 'e4526360-b2a1-4e77-9f00-57dbfe228bde')","'1-Pentanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15.56803808,0 +1257,"('biosphere3', 'f3cf9958-739f-41c1-a679-f550cf0e9b6c')","'1-Pentene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1258,"('biosphere3', '96db42b8-64e4-4a84-9b16-cd8f73c615d6')","'2-Aminopropanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1259,"('biosphere3', '79240a49-80cf-4be4-b5c2-bfdd3f4aa249')","'2-Methyl-1-propanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8.538837126,2.04E-08 +1260,"('biosphere3', '2df5a2fe-1ab2-48e7-a9a6-1085703b17be')","'2-Methyl-2-butene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1261,"('biosphere3', 'caeb15fa-9711-4d37-99a2-d12c7823b8bc')","'2-Propanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.463416525,0 +1262,"('biosphere3', '6abb5a34-7f0b-4a9a-8452-211a0ebee04d')","'3-Methyl-1-butanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21.41549991,0 +1263,"('biosphere3', '179c3a4c-4d0c-4928-b099-2652fac747cd')","'4-Methyl-2-pentanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14.57226884,0 +1264,"('biosphere3', '1a19ad61-abd0-4d42-9828-8fae315c0b06')","'4-Methyl-2-pentanone' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6.025672019,1.92E-09 +1265,"('biosphere3', 'f9d36529-abde-4ed2-a82c-d365ae2c713f')","'4-Methyl-2-pentanone' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6.025672019,1.92E-09 +1266,"('biosphere3', 'a6ad3fc7-c019-454f-a899-43be7913a598')","'Acenaphthene' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.365080472,2.88E-08 +1267,"('biosphere3', '5c238e5f-97c8-4837-8d67-48899ddd43be')","'Acenaphthene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4115.812247,2.58E-07 +1268,"('biosphere3', '9dc481e4-e4cd-4cb1-a03e-d539f774e958')","'Acenaphthylene' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1269,"('biosphere3', 'ec4a104f-eab5-4a06-bd0a-e1c34d888718')","'Acenaphthylene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1270,"('biosphere3', '7a65d41a-561b-4090-bd81-13672abce16f')","'Acetaldehyde' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,47.17247194,5.41E-07 +1271,"('biosphere3', '061c7a46-3728-48fa-8240-7a8841e6ca6f')","'Acetic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,49.83912567,0 +1272,"('biosphere3', '0e8f17d0-3e52-4f6f-bef9-60f6007a7aab')","'Acetone' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.213309066,5.86E-09 +1273,"('biosphere3', 'd78a3d22-4bed-4ad3-8a9c-1cc4645188d0')","'Acetone' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.213309066,5.86E-09 +1274,"('biosphere3', 'b4604f84-4a09-412e-86ed-078533d9da5d')","'Acetonitrile' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9.856873669,5.72E-08 +1275,"('biosphere3', 'd1528862-956f-4441-b2ac-cce8ae963805')","'Acetyl chloride' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,133.5325887,0 +1276,"('biosphere3', 'ce6e5657-5e48-472d-b67e-fab246234be6')","'Acidity, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1277,"('biosphere3', 'b37294bd-947d-4f35-b9e6-3eb259c05ff5')","'Acidity, unspecified' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1278,"('biosphere3', 'eabb67d6-08cc-4c6e-ad95-6509e778730a')","'Acrylate, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1279,"('biosphere3', '34550110-0552-46d2-b07d-6b9599892278')","'Actinides, radioactive, unspecified' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1280,"('biosphere3', '921ddc9c-6898-4ad0-a00d-7c9add941c85')","'Allyl chloride' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,150.1079947,8.43E-07 +1281,"('biosphere3', '2e0c9efa-d55c-49db-8be3-0376d5921ff4')","'Aluminium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1282,"('biosphere3', '01056d4b-f9b0-4dfc-b8d9-8407c8376efb')","'Aluminium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1283,"('biosphere3', '0ace7678-a181-48e8-8728-d912a8b56c57')","'Aluminium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1284,"('biosphere3', '97e498ec-f323-4ec6-bcc0-d8a4c853bae3')","'Aluminium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1285,"('biosphere3', '7880e65c-0321-4295-ba55-3186ad36e489')","'Aluminium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1286,"('biosphere3', '736f52e8-9703-4076-8909-7ae80a7f8005')","'Ammonium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,7.79E-01,0.00E+00,0.00E+00,0,0 +1287,"('biosphere3', '130cedc6-f6ed-4f1b-bd1e-881177f79e74')","'Ammonium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,7.79E-01,0.00E+00,0.00E+00,0,0 +1288,"('biosphere3', 'bc069d24-fbbd-4c05-8b6e-4089dc8249ae')","'Ammonium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,7.79E-01,0.00E+00,0.00E+00,0,0 +1289,"('biosphere3', '13331e67-6006-48c4-bdb4-340c12010036')","'Ammonium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,7.79E-01,0.00E+00,0.00E+00,0,0 +1290,"('biosphere3', 'fb005c47-7b90-41f3-a5ca-f0eb11db354a')","'Ammonium, ion' (kilogram, None, ('water',))",0,0.00E+00,7.79E-01,0.00E+00,0.00E+00,0,0 +1291,"('biosphere3', 'ca389e38-d086-4527-914c-9c09ea14ae4d')","'Aniline' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,630.6490501,3.48E-06 +1292,"('biosphere3', '5df5cb9f-812c-4ce8-ab1c-df6ab4d31900')","'Antimony' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,614.9593454,0.000364133 +1293,"('biosphere3', '83cf77ca-867b-4eef-b0f0-78d71b3d91d5')","'Antimony' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,614.9593454,0.000364133 +1294,"('biosphere3', '34b96163-a3df-4bc1-8224-e2a9fe01b23f')","'Antimony' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1221.5184,0.000364133 +1295,"('biosphere3', 'b2dc8668-86de-4207-b20e-dc81dea63c98')","'Antimony' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1221.5184,0.000364133 +1296,"('biosphere3', 'ad1ed615-e2cf-49e3-bd34-4589b4583222')","'Antimony-122' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1297,"('biosphere3', '077b92b0-0610-48ba-9ff8-55c13e98364b')","'Antimony-124' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1298,"('biosphere3', '01f511e2-7030-45f0-abb7-c24a4fae698b')","'Antimony-125' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1299,"('biosphere3', '46e6f5f7-6541-494f-a9bb-66918fb5d592')","'AOX, Adsorbable Organic Halogen as Cl' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1300,"('biosphere3', 'e395a1a3-6915-4b72-a533-ff1a82fc3da1')","'AOX, Adsorbable Organic Halogen as Cl' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1301,"('biosphere3', 'a4f6341b-1762-4222-9024-bfd91f63588f')","'AOX, Adsorbable Organic Halogen as Cl' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1302,"('biosphere3', '1f607ae2-b42d-4411-90b8-e9bbac66a554')","'Arsenic, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8050.899947,0.027700631 +1303,"('biosphere3', 'e60edb16-3c74-415b-9aff-a22a6f49fecb')","'Arsenic, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8050.899947,0.027700631 +1304,"('biosphere3', 'd70b4182-d633-4178-84c0-8854f5f6594b')","'Arsenic, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9.59E-17,0.002272495 +1305,"('biosphere3', '8c8ffaa5-84ed-4668-ba7d-80fd0f47013f')","'Arsenic, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15222.651,0.027700631 +1306,"('biosphere3', 'e1bd008f-c3c2-47f1-ab60-35e1a842acc0')","'Arsenic, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15222.651,0.027700631 +1307,"('biosphere3', '60ea7a31-8f27-46af-bfe5-66417f00088b')","'Barite' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1308,"('biosphere3', 'd68f41b3-6887-49a8-8efa-96812f8ec9f6')","'Barium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,763.1005379,9.82E-05 +1309,"('biosphere3', '3184c902-c587-4fd7-bd89-769d3cf30072')","'Barium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,763.1005379,9.82E-05 +1310,"('biosphere3', '95ad40ec-c34b-49fc-a7dc-0e13172ac105')","'Barium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.45E-17,3.03E-06 +1311,"('biosphere3', '2c872773-0a29-4831-93b9-d49b116fa7d5')","'Barium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1526.106911,9.82E-05 +1312,"('biosphere3', '0e1c17ae-8144-4714-a7cd-786a5480f423')","'Barium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1526.106911,9.82E-05 +1313,"('biosphere3', '08439a5d-5036-4e9f-89df-08239a6dbc33')","'Barium-140' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1314,"('biosphere3', '8205df0a-7e09-4b14-9391-1b149368fcf5')","'Benzal chloride' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1315,"('biosphere3', '19108dfd-9b70-4fca-bac5-d523f8b5d3c0')","'Benzene' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.013004649,3.12E-08 +1316,"('biosphere3', 'a1891db2-db98-45fc-ae0e-b3d3c17850c5')","'Benzene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,65.98305935,3.04E-07 +1317,"('biosphere3', '31ba993d-f8aa-44c0-bae1-b6c2081144f6')","'Benzene' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,65.98305935,3.04E-07 +1318,"('biosphere3', 'e38eb567-b080-4f80-894c-f6984eec5119')","'Benzene, chloro-' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,393.2620782,1.72E-07 +1319,"('biosphere3', 'a5634f8a-d2f3-4e9a-8ee5-6f11234b9b1e')","'Benzene, ethyl-' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.002464845,6.52E-09 +1320,"('biosphere3', '4abbbc48-a8d0-4c3a-9dea-4e67f1505230')","'Benzene, ethyl-' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,174.8943287,8.46E-08 +1321,"('biosphere3', '3dd549fd-825c-4ceb-a5f9-2988d322dc5d')","'Benzene, ethyl-' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,174.8943287,8.46E-08 +1322,"('biosphere3', '096bf756-c3fa-4470-9059-ac1b059081e0')","'Benzyl alcohol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,200.4375969,0 +1323,"('biosphere3', 'fa89c354-2263-4ed2-ac56-99946be5c665')","'Beryllium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2044.440962,4.44E-06 +1324,"('biosphere3', '24e0a9cb-a789-46e2-a25c-0278a90d67e5')","'Beryllium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2044.440962,4.44E-06 +1325,"('biosphere3', '276e755c-ed57-466a-b555-4658c791f385')","'Beryllium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3719.353479,4.44E-06 +1326,"('biosphere3', '8d0ca1a5-6a40-4eda-861a-a0fccdc81b19')","'Beryllium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3719.353479,4.44E-06 +1327,"('biosphere3', '57c27ba7-a61a-4932-8cd5-095c88ff0245')","'BOD5, Biological Oxygen Demand' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1328,"('biosphere3', 'aedea697-930a-4a0e-9e4f-b9c369aa9a33')","'BOD5, Biological Oxygen Demand' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1329,"('biosphere3', 'f012d2d5-ebb4-4531-8285-0b98af3dcbd4')","'BOD5, Biological Oxygen Demand' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1330,"('biosphere3', '70d467b6-115e-43c5-add2-441de9411348')","'BOD5, Biological Oxygen Demand' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1331,"('biosphere3', '91955aba-6ebc-4413-9342-f0298860b4aa')","'BOD5, Biological Oxygen Demand' (kilogram, None, ('water',))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1332,"('biosphere3', '0a11b30c-b502-414a-8b73-31375233cc17')","'Borate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1333,"('biosphere3', '242b4a08-f6ff-496d-ae0f-bf8f8bc77692')","'Boron' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1334,"('biosphere3', '061d04a0-af1d-4884-bdd3-997b6cd5550f')","'Boron' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1335,"('biosphere3', '5baed830-f676-4031-a036-8a9599bd7237')","'Boron' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1336,"('biosphere3', '94e22edc-fe4b-4bab-9a09-a081595389cc')","'Boron' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1337,"('biosphere3', '4a15cd40-96e6-4912-8298-c0fa8f9e2aee')","'Boron' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1338,"('biosphere3', 'd1fd0de4-afa8-4385-b91b-023493b68782')","'Bromate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1339,"('biosphere3', 'e29dddef-173f-4a4b-8265-b3d1703bc204')","'Bromide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1340,"('biosphere3', 'b311427f-0de3-4190-84a5-05c8460c62d1')","'Bromine' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1341,"('biosphere3', '20bc9500-2e2f-4cba-9332-8ea17d362aba')","'Bromine' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1342,"('biosphere3', 'b2208d0f-61a7-4813-9861-af03bf496a05')","'Bromine' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1343,"('biosphere3', 'bac53020-1fed-4119-9242-33e4a2597560')","'Bromine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1344,"('biosphere3', 'b935e766-fece-4a4f-8f60-b735ea7b214d')","'Bromine' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1345,"('biosphere3', 'f6e3ce3b-ce57-4313-ac88-59a8361925cf')","'Butanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5.515563795,3.75E-08 +1346,"('biosphere3', '6ce302db-96b8-4a21-9237-050ecde39aee')","'Butene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1347,"('biosphere3', '487b617a-40fc-4968-bfac-91cbe400f163')","'Butyl acetate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,28.37379926,0 +1348,"('biosphere3', '681a6b38-cc7c-4968-aedc-80ce8033a101')","'Butyrolactone' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,154.6464492,0 +1349,"('biosphere3', '3937f5a5-b4a4-434d-9fc3-1d29064fc3f8')","'Cadmium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4936.045753,0.00042819 +1350,"('biosphere3', '4ce23896-a82f-49f1-a8e3-8848734805a3')","'Cadmium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4936.045753,0.00042819 +1351,"('biosphere3', '62fcd384-906d-474f-a84b-9f944b78f804')","'Cadmium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.27E-17,0.000158995 +1352,"('biosphere3', 'af83b42f-a4e6-4457-be74-46a87798f82a')","'Cadmium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9712.29169,0.00042819 +1353,"('biosphere3', '2712fe5f-0d3c-4c8e-8bc4-26c604413849')","'Cadmium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9712.29169,0.00042819 +1354,"('biosphere3', '1d0f4392-8c91-4d01-8a5d-f8fe1f5b05c9')","'Calcium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1355,"('biosphere3', 'ae28c923-a4a3-4f00-b862-1ae6e748efb9')","'Calcium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1356,"('biosphere3', '55bf893f-0d89-429c-be59-2f99b33ddb11')","'Calcium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1357,"('biosphere3', 'ac066c02-b403-407b-a1f0-b29ad0f8188f')","'Calcium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1358,"('biosphere3', '08151735-9d1b-4b1c-a8b1-f341ade54f2f')","'Calcium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1359,"('biosphere3', '9c8c0e5d-5315-44b9-81e6-e447e5cb869c')","'Carbon disulfide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,153.4230857,3.75E-05 +1360,"('biosphere3', '2c931139-2463-4abd-9dc0-3523477499db')","'Carbonate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1361,"('biosphere3', '5bf42116-d991-4688-bf12-e3a6d9330b68')","'Carboxylic acids, unspecified' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1362,"('biosphere3', 'ad66ad26-6fee-4457-b99b-ad8476062ca1')","'Carboxylic acids, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1363,"('biosphere3', 'af99ce19-4a31-4c6f-b050-491e2b6f1ad1')","'Cerium-141' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1364,"('biosphere3', '6f020607-b818-408d-a4b0-2c6465a6826d')","'Cerium-144' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1365,"('biosphere3', 'e189eb4e-0f6a-4054-aaf8-47df28c87ec4')","'Cesium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1366,"('biosphere3', '96f0a692-ddb9-4a4c-8236-7c943929653d')","'Cesium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1367,"('biosphere3', 'fe9552bd-49c9-4e37-8c13-eeee4ddb8e34')","'Cesium-134' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1368,"('biosphere3', 'fd000a8d-2e90-4042-b148-cfb6bdfbbff5')","'Cesium-136' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1369,"('biosphere3', '0097bf60-3729-40b6-94d0-06bd6146cfc2')","'Cesium-137' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1370,"('biosphere3', '42901ad7-4be5-47d9-82cd-380ca34281c1')","'Cesium-137' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1371,"('biosphere3', '398ff31a-d870-4542-8ce0-9fea0e7d8110')","'Chloramine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,71953.13214,5.23E-07 +1372,"('biosphere3', '25131632-4b24-4625-8940-60d00385dad5')","'Chlorate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1373,"('biosphere3', '85bec19f-c785-4364-8ef6-472b8e9dd90e')","'Chloride' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1374,"('biosphere3', 'ea70cc93-c68c-4228-8b8e-1b189b4c705c')","'Chloride' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1375,"('biosphere3', '97818104-9cc2-4323-97d5-c896ce171f86')","'Chloride' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1376,"('biosphere3', '5e050fab-1837-4c42-b597-ed2f376f768f')","'Chloride' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1377,"('biosphere3', '6d25e386-4ef9-4d40-85c6-e694f523a4da')","'Chloride' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1378,"('biosphere3', 'bd7b7cdb-34ff-422c-b994-6f0fe77a901f')","'Chlorides, unspecified' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1379,"('biosphere3', '6b9753b0-7284-4dd1-891b-01ba9f3fe5f7')","'Chlorinated solvents, unspecified' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1380,"('biosphere3', '0561e8f7-bb2b-45b7-b4ab-e750f6842981')","'Chlorinated solvents, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1381,"('biosphere3', 'd17f1c53-ff95-4005-9f1b-131ca9791cdb')","'Chlorine' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1382,"('biosphere3', 'ce312691-69ee-4cdb-9bd6-f717955b94b8')","'Chlorine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1383,"('biosphere3', 'e8641a14-fd07-4090-8daf-2cce2a557a81')","'Chlorine' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1384,"('biosphere3', 'a0a9fc24-9752-434a-b115-96d161bf5059')","'Chloroacetic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2928.070247,0 +1385,"('biosphere3', 'bcbf2ad9-c338-4e11-be56-9e07113dafb3')","'Chloroacetyl chloride' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1386,"('biosphere3', 'ec2c6f72-1ca3-428b-90e5-e9feb4b58381')","'Chloroform' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,41.17887996,1.57E-06 +1387,"('biosphere3', '0098b967-2131-43d2-b684-254583fbadc7')","'Chlorosulfonic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,553.8045239,0 +1388,"('biosphere3', '9bbae55a-35de-4eff-a219-814a9fec5ac2')","'Chromium VI' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,52555.16048,0.0106652 +1389,"('biosphere3', 'ef475b50-9cd0-4e7c-9c59-07868fe16e91')","'Chromium VI' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,52555.16048,0.0106652 +1390,"('biosphere3', '8216fc31-15a1-4d33-858f-e09650b14c63')","'Chromium VI' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,104644.2764,0.0106652 +1391,"('biosphere3', 'a9ec0c9b-982a-4329-99ae-dab1f9fb62d3')","'Chromium VI' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,104644.2764,0.0106652 +1392,"('biosphere3', '1c87de06-e58f-4684-a54c-d29f1a251a87')","'Chromium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,650.1791382,3.03E-09 +1393,"('biosphere3', 'd98f0ec0-bf19-4c90-a457-a8593dec497f')","'Chromium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.70E-18,1.46E-09 +1394,"('biosphere3', 'e34d3da4-a3d5-41be-84b5-458afe32c990')","'Chromium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1294.592668,3.03E-09 +1395,"('biosphere3', '30f484ee-dec4-47ae-8e92-d00d4b93fe05')","'Chromium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1294.592668,3.03E-09 +1396,"('biosphere3', '7529a948-b5ac-4eb9-8349-2a3677b8fe14')","'Chromium-51' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1397,"('biosphere3', 'f0d1c319-249f-4a89-b0e7-3a5a90a54036')","'Cobalt' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2153.790769,0 +1398,"('biosphere3', '1e904267-caa3-40e6-a3a0-fc104489770b')","'Cobalt' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2153.790769,0 +1399,"('biosphere3', 'caf066cf-40ce-47a8-ba4c-969fcd6019c7')","'Cobalt' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,9.29E-18,0 +1400,"('biosphere3', 'd4291dd5-dae8-47fa-bf06-466fcecbc210')","'Cobalt' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4099.422994,0 +1401,"('biosphere3', '33627701-feca-434d-a192-674a450eaaf7')","'Cobalt' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4099.422994,0 +1402,"('biosphere3', 'de30c59a-c312-4a4e-8025-df5aa48c83e3')","'Cobalt-57' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1403,"('biosphere3', 'f7fc4f19-e01f-4909-aab5-f7612354e7a0')","'Cobalt-58' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1404,"('biosphere3', '0fc1db69-f50d-4a88-b9d8-1446e691063c')","'Cobalt-60' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1405,"('biosphere3', 'be10dd54-eb4d-48ae-9e14-7d79ce8b170d')","'COD, Chemical Oxygen Demand' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1406,"('biosphere3', 'a8fea8cf-9b09-49fc-aa58-5a732494a2a0')","'COD, Chemical Oxygen Demand' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1407,"('biosphere3', 'ec76fb5c-b402-416b-825c-53e074fe7525')","'COD, Chemical Oxygen Demand' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1408,"('biosphere3', 'fc0b5c85-3b49-42c2-a3fd-db7e57b696e3')","'COD, Chemical Oxygen Demand' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1409,"('biosphere3', '961ccd56-2eee-4f57-bb18-fc4362b49000')","'COD, Chemical Oxygen Demand' (kilogram, None, ('water',))",0,0.00E+00,5.00E-02,0.00E+00,0.00E+00,0,0 +1410,"('biosphere3', 'c3b659e5-35f1-408c-8cb5-b5f9b295c76e')","'Copper, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,29164.37192,8.63E-07 +1411,"('biosphere3', '40229ebf-9346-4f20-910a-f8ea3bd88d44')","'Copper, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,29164.37192,8.63E-07 +1412,"('biosphere3', 'd8f9ccf6-fd32-4348-83c0-1cee724af9ae')","'Copper, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.03E-16,2.22E-07 +1413,"('biosphere3', '6d9550e2-e670-44c1-bad8-c0c4975ffca7')","'Copper, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,55247.57233,8.63E-07 +1414,"('biosphere3', '615b1460-6860-4cf6-8678-ad92c03c5e8b')","'Copper, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,55247.57233,8.63E-07 +1415,"('biosphere3', '5cf55e96-d9dc-4b84-9c7e-a4b8ade70bf4')","'Cumene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,665.0701881,2.77E-08 +1416,"('biosphere3', '1febb3ea-a4ee-4b7d-a6e7-0c4b6da28188')","'Cyanide' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1417,"('biosphere3', 'c9e29113-8f61-41bb-8bc1-b49c6f152fd9')","'Cyanide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1418,"('biosphere3', 'c4d10bd2-09da-4082-8cb3-022c92c53221')","'Cyanide' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1419,"('biosphere3', '1fd12487-3082-4e34-b211-8ba77d1f51f6')","'Cyclohexane' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,48.68874262,1.30E-08 +1420,"('biosphere3', 'd26099e9-c6bc-4d7f-a0bd-29c884965ba5')","'Dichromate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1421,"('biosphere3', '66611217-6711-4b3a-8966-4ab2b7107ca6')","'Diethylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,65.46735262,0 +1422,"('biosphere3', '992bd199-894d-4be6-9837-d85e8e5b3f45')","'Diethylene glycol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1423,"('biosphere3', 'e9514abc-d441-49cb-84f6-0815ffa693fc')","'Diisobutyl ketone' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,44.03938065,0 +1424,"('biosphere3', '66c985be-8604-48ec-92e1-4e172128dc11')","'Dimethyl ether' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1425,"('biosphere3', 'd9977222-46f1-447f-8d65-f34f060b1087')","'Dimethylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,86.1910343,0 +1426,"('biosphere3', 'f87e0478-9ba4-4d6b-a1ca-5667d07f3465')","'Dipropylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,375.1534011,0 +1427,"('biosphere3', '54c743a4-5438-4f3c-8e84-89b3e6ec0cc0')","'Dissolved solids' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1428,"('biosphere3', '901a459c-9a1c-46a0-a785-6ec01a33b04f')","'Dissolved solids' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1429,"('biosphere3', 'cfecebe1-1e13-458d-85bc-d40a9f934927')","'Dissolved solids' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1430,"('biosphere3', '5ce634de-b810-4533-9efb-719c38fe7c09')","'Dissolved solids' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1431,"('biosphere3', '73eed463-4986-4d81-8bae-60dae5be49d0')","'DOC, Dissolved Organic Carbon' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1432,"('biosphere3', '725c7923-0ed8-43e5-b485-fad7e34bef08')","'DOC, Dissolved Organic Carbon' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1433,"('biosphere3', '72f14baf-d36c-4f8e-8c17-5304a995f00a')","'DOC, Dissolved Organic Carbon' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1434,"('biosphere3', '960c0f37-f34c-4fc1-b77c-22d8b35fd8d5')","'DOC, Dissolved Organic Carbon' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1435,"('biosphere3', '79607917-9e12-4292-b289-21ff2b36e04b')","'DOC, Dissolved Organic Carbon' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1436,"('biosphere3', '36609913-7c42-457a-89cc-00e2d9f0f867')","'Elemental carbon' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1437,"('biosphere3', '9b77be37-3f9d-4ecf-b7b1-86e8390bcf2e')","'Ethane, 1,1,1-trichloro-, HCFC-140' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21.69292211,1.62E-08 +1438,"('biosphere3', '250dd08a-ee61-4a2b-86f8-b21e9ebe6ed9')","'Ethane, 1,2-dichloro-' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15.11823004,1.63E-06 +1439,"('biosphere3', '42ebce6e-222e-442b-be25-3d8f711ce5cf')","'Ethanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.113644032,2.54E-09 +1440,"('biosphere3', 'fdb29dc7-261d-4f8f-8e7d-c73899480bf8')","'Ethanol' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.113644032,2.54E-09 +1441,"('biosphere3', 'fe8f6da1-2dc8-4df8-8aea-d0675be0dfcf')","'Ethene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1442,"('biosphere3', 'cfe43cd8-3356-4d29-bb02-5b9c9ede0aec')","'Ethene, chloro-' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,8.01E-06 +1443,"('biosphere3', 'edd13644-5212-4e83-9fee-9358521a6b42')","'Ethyl acetate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,5.866490471,4.30E-09 +1444,"('biosphere3', '2e2a9226-1d5a-4adf-aa0f-6a4b9499e8d7')","'Ethylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,31.3245702,0 +1445,"('biosphere3', '6ba443e3-9361-47c9-a2cd-c9f4957217b7')","'Ethylene diamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1446,"('biosphere3', '6192f17c-9390-4381-9e58-99e384428da5')","'Ethylene glycol monoethyl ether' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,33.88259089,1.87E-07 +1447,"('biosphere3', '17bd5f8c-bd48-4cfc-80c0-1aa251f4bf43')","'Ethylene oxide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,23.53458419,1.72E-06 +1448,"('biosphere3', 'b84e31d0-cf7b-4c3f-bc8a-3cc93bdb30d9')","'Fluoride' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1449,"('biosphere3', '7ae3e6e8-75e6-4566-b18f-6d848086c4e5')","'Fluoride' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1450,"('biosphere3', 'c796eed5-8e5d-43bb-8dd9-feaae3e90511')","'Fluoride' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1451,"('biosphere3', '00d2fef1-e4d4-4a16-8e81-b8cc514e4c25')","'Fluoride' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1452,"('biosphere3', '96b0e9d0-5bfc-4113-ac30-c9b8a310b534')","'Fluoride' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1453,"('biosphere3', '8bd0fbe9-8a4f-4367-bf7e-5cc52bc80185')","'Fluosilicic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1454,"('biosphere3', '2061c1e1-6a81-47ad-8a1d-81dd30783f2c')","'Fluosilicic acid' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1455,"('biosphere3', '1ed87d8c-afc2-47f1-af5a-df78ed6bad83')","'Formaldehyde' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,297.4211231,4.48E-07 +1456,"('biosphere3', '66729b69-c76f-43b2-bd9a-4a03c4983afd')","'Formaldehyde' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,297.4211231,4.48E-07 +1457,"('biosphere3', '01174955-d4f9-4825-9188-791b79abc8e1')","'Formamide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7.034963091,0 +1458,"('biosphere3', '42411268-27a7-4276-9896-e47900fa0606')","'Formate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1459,"('biosphere3', '3a285c11-632b-4106-8e15-3ac4a0da78de')","'Formic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,44.39859781,0 +1460,"('biosphere3', '2f1d0962-be5d-4e6d-9c9b-0846722d9c65')","'Glutaraldehyde' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.083560019,0 +1461,"('biosphere3', '152e5a83-96e8-4f54-af42-4f0925a771ac')","'Heat, waste' (megajoule, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1462,"('biosphere3', 'e55802e0-4678-42df-978e-e18aa552c33e')","'Hexane' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,64.77661365,2.65E-07 +1463,"('biosphere3', 'faf05b06-da29-4af5-aa37-cfa4b802a297')","'Hydrocarbons, aliphatic, alkanes, unspecified' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1464,"('biosphere3', 'b902d333-ded6-4c87-be52-8fc03fe6dfd4')","'Hydrocarbons, aliphatic, alkanes, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1465,"('biosphere3', 'b066708e-5bab-45ee-9244-e1be2fa5b5f3')","'Hydrocarbons, aliphatic, unsaturated' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1466,"('biosphere3', '19b55ff9-4964-45d1-95b6-e24d7f4ffbd3')","'Hydrocarbons, aliphatic, unsaturated' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1467,"('biosphere3', 'ef7bc7b8-f85b-4687-9cb1-eb60384650fa')","'Hydrocarbons, aliphatic, unsaturated' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1468,"('biosphere3', '67799e83-54c8-4c89-90dc-1a7fa7780d2b')","'Hydrocarbons, aromatic' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1469,"('biosphere3', 'c308f812-7e5a-483a-ac1f-1f5742a53784')","'Hydrocarbons, aromatic' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1470,"('biosphere3', '049a1473-3a62-4121-982b-5d15d0f2c683')","'Hydrocarbons, unspecified' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1471,"('biosphere3', '49c42751-1b0b-4ab1-8e70-032e991ce6fd')","'Hydrocarbons, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1472,"('biosphere3', 'e620a933-c348-4e7e-8893-ab0a0f681c7e')","'Hydrocarbons, unspecified' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1473,"('biosphere3', '7dd051f1-c653-44d9-90e4-828f144253c3')","'Hydrochloric acid' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1474,"('biosphere3', '98313bb5-3f35-4e11-bf3e-03ad2dae591b')","'Hydrogen peroxide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1475,"('biosphere3', '554be2fb-9bb9-46c6-a4df-46df0d53cb65')","'Hydrogen sulfide' (kilogram, None, ('water', 'ground-, long-term'))",0,1.88E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1476,"('biosphere3', '50790dc4-dd52-4811-b124-d9e9c920cd70')","'Hydrogen sulfide' (kilogram, None, ('water', 'surface water'))",0,1.88E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1477,"('biosphere3', '58fabee9-b4b6-48ee-857a-e16ed31bb354')","'Hydrogen-3, Tritium' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1478,"('biosphere3', '134ec0d7-3701-473c-a1a1-1982fd48ef4d')","'Hydrogen-3, Tritium' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1479,"('biosphere3', '0ec59d21-92c1-492e-8e1e-f0f33f94f1b5')","'Hydroxide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1480,"('biosphere3', 'd9224532-4d6d-4400-8a78-83fca1649548')","'Hydroxide' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1481,"('biosphere3', 'd4f02ee2-ecb5-4572-91c8-c20cd2abb2c3')","'Hypochlorite' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1482,"('biosphere3', '84f7125c-2ada-4bb1-abc6-554c40d1eeed')","'Hypochlorite' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1483,"('biosphere3', '2ef56ffc-fa69-4b57-a936-3d588923ea8b')","'Iodide' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1484,"('biosphere3', 'b5fae91e-cff0-4513-a997-cdb6922f1ab4')","'Iodide' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1485,"('biosphere3', '4b09c2cb-937f-43a5-a3f8-b20ff8f047d3')","'Iodide' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1486,"('biosphere3', 'e6360e00-79a2-455e-ac9d-2e3159736771')","'Iodide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1487,"('biosphere3', 'ab9fef9d-1b47-4d79-a28a-0132dfa18020')","'Iodine-131' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1488,"('biosphere3', 'c708b024-c922-4c43-8a49-81c472c48f75')","'Iodine-133' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1489,"('biosphere3', 'e3043a7f-5347-4c7b-89ee-93f11b2f6d9b')","'Iron' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1490,"('biosphere3', '33fd8342-58e7-45c9-ad92-0951c002c403')","'Iron, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1491,"('biosphere3', '9b6d6f07-ebc6-447d-a3c0-f2017d77d852')","'Iron, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1492,"('biosphere3', '2c9a7182-37c8-4777-a37a-9a007c3edb2f')","'Iron, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1493,"('biosphere3', '7c335b9c-a403-47a8-bb6d-2e7d3c3a230e')","'Iron, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1494,"('biosphere3', 'de444dc0-5964-4501-8367-50ba53bfc6b9')","'Iron, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1495,"('biosphere3', 'e43640a9-526c-42bd-86e5-4425c9e239ed')","'Iron-59' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1496,"('biosphere3', '2b178c09-89d4-49be-afbb-ec21bc158d9c')","'Isopropylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,63.90756306,0 +1497,"('biosphere3', '602604be-f24c-41f0-8d02-f05d0e005fb0')","'Lactic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1498,"('biosphere3', '90a39372-8b3f-4c99-acfd-6ea211791714')","'Lanthanum-140' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1499,"('biosphere3', 'c864aa15-0abc-41ad-9889-348106e485d8')","'Lead' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,221.4977919,0.000120183 +1500,"('biosphere3', '0ff15165-d761-48c9-9814-2d1dcdd56857')","'Lead' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,221.4977919,0.000120183 +1501,"('biosphere3', 'e9e856c2-868e-435e-8425-8df1c9297cfc')","'Lead' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.39E-19,0.000109187 +1502,"('biosphere3', 'b3ebdcc3-c588-4997-95d2-9785b26b34e1')","'Lead' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,374.7120873,0.000120183 +1503,"('biosphere3', '31c4d160-b21e-41b3-b9c1-3d7a72377653')","'Lead' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,374.7120873,0.000120183 +1504,"('biosphere3', '85365e41-8102-4f9b-afb7-d7d7e6e07249')","'Lead-210' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1505,"('biosphere3', '8844a749-f21f-4968-bff9-c4d970efe790')","'Lead-210' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1506,"('biosphere3', '6b000ac5-e791-4ca8-ad17-a72d2ca6eca7')","'Lead-210' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1507,"('biosphere3', '2cfc5ba4-3db2-4193-9e81-b61e75ba1706')","'Lead-210' (kilo Becquerel, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1508,"('biosphere3', '4569494e-085e-413a-8fef-63a3c419e0cf')","'Lithium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1509,"('biosphere3', 'e98084d6-88a2-48cf-9ad5-6462fe9cf857')","'Lithium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1510,"('biosphere3', 'eb2bfdf1-1881-40e8-bebb-d674b2a79149')","'Lithium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1511,"('biosphere3', '24acc516-974c-4ff3-b7e1-5950b8d37206')","'Magnesium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1512,"('biosphere3', 'ce9fd912-233a-4807-a33e-0323b1e4a7a2')","'Magnesium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1513,"('biosphere3', '1a217018-e3e5-499c-9eb5-5aacb9e6ae9a')","'Magnesium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1514,"('biosphere3', '7bdab722-11d0-4c42-a099-6f9ed510a44a')","'Magnesium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1515,"('biosphere3', '9783014c-4ec6-4c9c-84d7-d34c8b390a0b')","'Magnesium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1516,"('biosphere3', '44f28e11-061d-44fd-8f25-dc62a9f1fa57')","'Manganese' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1517,"('biosphere3', '835d0907-a668-4d92-b6b6-7b56fa343713')","'Manganese' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1518,"('biosphere3', 'c91fd4bf-ed70-4e2f-a34f-159773f981b6')","'Manganese' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1519,"('biosphere3', 'f532985c-90b7-46fc-aac9-b039b40e22f1')","'Manganese' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1520,"('biosphere3', '10cbd2f7-c41b-4bb4-b636-d8fc15cf0282')","'Manganese' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1521,"('biosphere3', '9a12a4c4-c03e-43fb-a448-4d911f539e64')","'Manganese-54' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1522,"('biosphere3', 'e1aa92d7-9297-452e-ade0-e5e2acc52ad7')","'Mercury' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15597.06515,0.014334437 +1523,"('biosphere3', '40f89b03-64f8-466d-9480-bca47d8a435c')","'Mercury' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15597.06515,0.014334437 +1524,"('biosphere3', 'fd61d155-3b34-46d5-8769-efb3e806f545')","'Mercury' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.78E-17,0.011415397 +1525,"('biosphere3', '66bfb434-78ab-4183-b1a7-7f87d08974fa')","'Mercury' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,22085.57778,0.014334437 +1526,"('biosphere3', '9325957a-bee5-4f2d-8bd1-458729c5e49e')","'Mercury' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,22085.57778,0.014334437 +1527,"('biosphere3', '1b6a35b8-f6c8-404d-9c0e-e09b8fdb2d9e')","'Methane, dichloro-, HCC-30' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14.60862113,7.68E-07 +1528,"('biosphere3', '9d9e8c2a-645e-4a88-bfcf-3b100b09196b')","'Methanol' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.001491373,2.96E-11 +1529,"('biosphere3', 'e1b4f61b-e191-4c48-852b-58b11b2245eb')","'Methanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.647038699,1.05E-08 +1530,"('biosphere3', 'ee2c5c6c-ff01-4151-8332-d4bf1508c759')","'Methanol' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.647038699,1.05E-08 +1531,"('biosphere3', '98b0b2a5-8c73-4cf0-be04-a6a4e8889bb1')","'Methyl acetate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,15.34645981,0 +1532,"('biosphere3', '59e05e46-aeee-4b33-8878-746810c16cbf')","'Methyl acrylate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,672.6937696,0 +1533,"('biosphere3', 'b1945566-c8ad-4d48-9135-c39eedde1e63')","'Methyl amine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1534,"('biosphere3', 'af3b0f01-3f06-46c7-a3b7-66bfec083264')","'Methyl formate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17.659463,0 +1535,"('biosphere3', '3635d239-8c0f-4ebf-bc6c-07ca00bbc14c')","'Methyl pentane' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1536,"('biosphere3', '3822809c-cc03-469d-ac2a-9f85842f8440')","'Molybdenum' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,147.5338596,7.66E-05 +1537,"('biosphere3', '7d3f7498-3596-478a-9fa1-72201ef94082')","'Molybdenum' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,147.5338596,7.66E-05 +1538,"('biosphere3', '163926e2-b4cc-42bb-ba7d-401028140985')","'Molybdenum' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7.40E-19,2.94E-06 +1539,"('biosphere3', '442511cc-a98b-4242-9229-5736cb9a9399')","'Molybdenum' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,293.7594298,7.66E-05 +1540,"('biosphere3', 'fdaaef05-0d10-4032-b2e7-85cae3c7bd5c')","'Molybdenum' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,293.7594298,7.66E-05 +1541,"('biosphere3', 'a7ea85d9-b9d1-4054-ba58-4e6bf4d858d0')","'Molybdenum-99' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1542,"('biosphere3', 'aca00a43-1ff9-489e-8fc6-00d2551eece8')","'Monochloroethane' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,2.32E-08 +1543,"('biosphere3', 'e40fb8b9-a290-44df-9d22-71a164f0c2d9')","'m-Xylene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,293.3776396,0 +1544,"('biosphere3', 'feb813f2-ff76-4f52-a966-55297494de4a')","'m-Xylene' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,293.3776396,0 +1545,"('biosphere3', '56815b4f-6138-4e0b-9fac-c94fd6b102b3')","'Nickel' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7664.978129,4.04E-05 +1546,"('biosphere3', 'e030108f-2125-4bcb-a73b-ad72130fcca3')","'Nickel, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7664.978129,4.04E-05 +1547,"('biosphere3', '9f69cb8e-51fe-447b-a1ac-4da74de8ebe4')","'Nickel, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7664.978129,4.04E-05 +1548,"('biosphere3', '23cb10a4-6228-4ce4-9fb5-7043bc31faec')","'Nickel, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,4.52E-17,4.15E-06 +1549,"('biosphere3', '9798359e-a3ee-4362-a038-23a188582c6e')","'Nickel, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14879.59311,4.04E-05 +1550,"('biosphere3', '6ec6cdaa-5a01-46d4-b716-1905e56690ea')","'Nickel, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,14879.59311,4.04E-05 +1551,"('biosphere3', 'dec2d31c-00b1-454a-9b2a-37875c0af04a')","'Niobium-95' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1552,"('biosphere3', 'b9291c72-4b1d-4275-8068-4c707dc3ce33')","'Nitrate' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,2.37E-01,0.00E+00,0.00E+00,0,0 +1553,"('biosphere3', 'b61057a3-a0bc-4158-882e-b819c4797419')","'Nitrate' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,2.37E-01,0.00E+00,0.00E+00,0,0 +1554,"('biosphere3', '43c700bb-0b3b-4fb1-8bd1-3d1da82b6844')","'Nitrate' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,2.37E-01,0.00E+00,0.00E+00,0,0 +1555,"('biosphere3', '7ce56135-2ca5-4fba-ad52-d62a34bfeb35')","'Nitrate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,2.37E-01,0.00E+00,0.00E+00,0,0 +1556,"('biosphere3', '5189de76-6bbb-44ba-8c42-5714f1b4371f')","'Nitrate' (kilogram, None, ('water',))",0,0.00E+00,2.37E-01,0.00E+00,0.00E+00,0,0 +1557,"('biosphere3', 'f5d022f1-c26d-4044-ac88-d7c5bbff83c4')","'Nitrite' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1558,"('biosphere3', '2f19a0af-a516-4f89-88ba-4c6b7cd52650')","'Nitrite' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1559,"('biosphere3', '0017271e-7df5-40bc-833a-36110c1fe5d5')","'Nitrite' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1560,"('biosphere3', 'ac84dcb0-8ff0-4aa5-a9c4-f6c5129f6f86')","'Nitrobenzene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,179.424851,6.76E-06 +1561,"('biosphere3', '0c150bb4-fd1a-43f8-b6c9-5dfda8dadb6c')","'Nitrogen' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,9.86E-01,0.00E+00,0.00E+00,0,0 +1562,"('biosphere3', '996829cc-2d40-418a-beda-7c50399952f9')","'Nitrogen' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,9.86E-01,0.00E+00,0.00E+00,0,0 +1563,"('biosphere3', 'ae70ca6c-807a-482b-9ddc-e449b4893fe3')","'Nitrogen' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,9.86E-01,0.00E+00,0.00E+00,0,0 +1564,"('biosphere3', 'dcfe0815-6fa3-4e1d-a55e-155b29904f1d')","'Nitrogen' (kilogram, None, ('water',))",0,0.00E+00,9.86E-01,0.00E+00,0.00E+00,0,0 +1565,"('biosphere3', 'b646bb3e-65e2-4f85-8376-9408e94e4b59')","'Nitrogen, organic bound' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1566,"('biosphere3', '15cfc784-a719-4230-ad2e-f4104d56c427')","'Nitrogen, organic bound' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1567,"('biosphere3', '77c7dcf8-1d10-4725-9f8f-bcdccaed0836')","'Nitrogen, organic bound' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1568,"('biosphere3', 'd43f7827-b47b-4652-8366-f370995fd206')","'Nitrogen, organic bound' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1569,"('biosphere3', '79b3f708-dd3f-4ccb-9121-a4cdd46e0dc4')","'o-Dichlorobenzene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,586.9844536,7.18E-08 +1570,"('biosphere3', '8244db98-b33f-4f4e-98e5-39dd130a1713')","'Oils, non-fossil' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1571,"('biosphere3', '5d830756-4153-4cc9-ade4-69f8c19e150f')","'Oils, unspecified' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1572,"('biosphere3', '82c27b2a-69a8-4b1e-ad4e-4de9475630c6')","'Oils, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1573,"('biosphere3', '6da0e891-3648-43a5-b0cf-f1872c57db8d')","'Oils, unspecified' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1574,"('biosphere3', '9a891f6c-937c-4226-9702-4a552973ae3f')","'Organic carbon' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1575,"('biosphere3', '1b279330-0469-4d04-9fe2-4e9a38011f0c')","'o-Xylene' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,220.7674809,0 +1576,"('biosphere3', '2cfcbe85-0dfd-4414-8683-ecc74392346c')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1577,"('biosphere3', '300bed66-a3c8-46cf-92c2-92d28dff9f91')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1578,"('biosphere3', '16167d62-361c-4ed9-bfeb-3ad4545e794c')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1579,"('biosphere3', 'f21b8022-f20d-4752-8cd6-728f56cf9c43')","'PAH, polycyclic aromatic hydrocarbons' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1580,"('biosphere3', '230c08c9-70b7-4d28-a649-f5f85fbc3162')","'Paraffins' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1581,"('biosphere3', 'b59faa48-28a7-485e-b8c1-6284dff23282')","'Perchlorate, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1582,"('biosphere3', 'a3436836-e2fe-4c30-b9a7-0098b489374f')","'Phenol' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.009892341,4.30E-10 +1583,"('biosphere3', '64836dd0-8b0f-41ba-a7d3-be54358fc4b3')","'Phenol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,933.0530804,1.45E-07 +1584,"('biosphere3', '39153cb9-a8fe-4fc8-beef-1bf1edceb8e7')","'Phenol' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,933.0530804,1.45E-07 +1585,"('biosphere3', '329fc7d8-4011-4327-84e4-34ff76f0e42d')","'Phosphate' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,2.38E+00,0.00E+00,0.00E+00,0,0 +1586,"('biosphere3', '490b267b-f429-4d9a-ac79-224e37fb4d58')","'Phosphate' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,2.38E+00,0.00E+00,0.00E+00,0,0 +1587,"('biosphere3', '3aaf9017-0d8a-42aa-9a60-cbc39e994e73')","'Phosphate' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,2.38E+00,0.00E+00,0.00E+00,0,0 +1588,"('biosphere3', '1727b41d-377e-43cd-bc01-9eaba946eccb')","'Phosphate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,2.38E+00,0.00E+00,0.00E+00,0,0 +1589,"('biosphere3', 'c8791f3c-3c4a-4278-91c0-483797d14da2')","'Phosphate' (kilogram, None, ('water',))",0,0.00E+00,2.38E+00,0.00E+00,0.00E+00,0,0 +1590,"('biosphere3', 'b1fca66f-8e83-469a-a7b5-018e14d5d545')","'Phosphorus' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,7.29E+00,0.00E+00,0.00E+00,0,0 +1591,"('biosphere3', '62f3d964-9b53-4d01-9ee0-04112dcfc6d2')","'Phosphorus' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,7.29E+00,0.00E+00,0.00E+00,0,0 +1592,"('biosphere3', 'b2631209-8374-431e-b7d5-56c96c6b6d79')","'Phosphorus' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,7.29E+00,0.00E+00,0.00E+00,0,0 +1593,"('biosphere3', '2d4b8ec1-8d53-4e62-8a11-ebc45909b02e')","'Phosphorus' (kilogram, None, ('water',))",0,0.00E+00,7.29E+00,0.00E+00,0.00E+00,0,0 +1594,"('biosphere3', '48725db0-ff99-4074-90a0-bb22165432bb')","'Polonium-210' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1595,"('biosphere3', 'c6976591-c1f2-4c53-b9ff-182db73f0a7f')","'Polonium-210' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1596,"('biosphere3', 'f81d8b52-b588-45d6-ba49-e7d53ade5bb5')","'Polonium-210' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1597,"('biosphere3', 'c21a1397-82dc-427a-a6cb-c790ba2626f4')","'Potassium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1598,"('biosphere3', 'a07b8a8c-8cab-4656-a82f-310e8069e323')","'Potassium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1599,"('biosphere3', 'b93fc4df-91b2-4ac4-a315-89147515ddfb')","'Potassium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1600,"('biosphere3', '297cc04f-e215-433c-ae3b-d1e34464c785')","'Potassium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1601,"('biosphere3', '1653bf60-f682-4088-b02d-6dc44eae2786')","'Potassium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1602,"('biosphere3', 'f970ac84-3896-4168-a701-c73bf475edbb')","'Potassium-40' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1603,"('biosphere3', 'c52555d3-077e-4970-9089-f5d30ab1212e')","'Potassium-40' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1604,"('biosphere3', '7a35cc5e-9093-4ef6-bf78-37221ebcb1bb')","'Potassium-40' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1605,"('biosphere3', 'f13b60bd-4185-4a76-ba54-fc25ce180de4')","'Propanal' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,85.64783359,0 +1606,"('biosphere3', '3277a622-8234-4c73-ba22-526cf9a0fccc')","'Propanol' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.972313815,0 +1607,"('biosphere3', '1469e83d-2ac9-4e64-84e0-cfe37c85fd9d')","'Propene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1608,"('biosphere3', '374b89b9-1abe-4557-aff3-fb772bffe01b')","'Propionic acid' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,70.66263771,0 +1609,"('biosphere3', '813b3b1d-4b12-44cd-bbb9-5c384ba019d2')","'Propylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17.4700358,0 +1610,"('biosphere3', 'b1b1fd04-fad3-4e5d-a8ae-e15ff7fdcca5')","'Propylene oxide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,29.00523942,4.54E-06 +1611,"('biosphere3', '34d04e86-d650-4f1e-96d5-7f09132fddcc')","'Protactinium-234' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1612,"('biosphere3', '43b60c00-8156-49a1-9a9d-f68ccca0d000')","'Radioactive species, alpha emitters' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1613,"('biosphere3', '2bbffe32-86bd-485c-95a2-844bbfd42840')","'Radioactive species, Nuclides, unspecified' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1614,"('biosphere3', '47a8b1b4-d9f3-4dee-b47a-dac7e75cccbc')","'Radioactive species, Nuclides, unspecified' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1615,"('biosphere3', '0a7de246-d762-4210-8656-56e1f26249b6')","'Radium-224' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1616,"('biosphere3', '8812d57e-ae84-497e-a778-e5c318120205')","'Radium-224' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1617,"('biosphere3', '788c0461-92d9-4a39-b89b-e3c42a5c68ae')","'Radium-226' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1618,"('biosphere3', '74a0aabb-e11b-4f3b-8921-45e447b33393')","'Radium-226' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1619,"('biosphere3', '15648250-4537-4960-a6dc-0802d39c26a7')","'Radium-226' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1620,"('biosphere3', 'd65a94b4-0479-42cc-8274-2db66e1e6aeb')","'Radium-226' (kilo Becquerel, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1621,"('biosphere3', '09257283-72d9-4d13-838b-ee7f28e6d146')","'Radium-228' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1622,"('biosphere3', 'd2312bc4-af11-445f-aa07-20d95b2794bd')","'Radium-228' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1623,"('biosphere3', '4ea9bb4f-e4ab-45d7-beb5-dc07fc1c685a')","'Radium-228' (kilo Becquerel, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1624,"('biosphere3', 'ebc5f04e-ae40-49b1-b07b-495f67e26c28')","'Rubidium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1625,"('biosphere3', '82bb882b-572f-4af0-b35b-4c846ee49dda')","'Rubidium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1626,"('biosphere3', '40d16700-3130-41da-8e94-e1b127741f59')","'Ruthenium-103' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1627,"('biosphere3', '0a6ae675-cdf2-475d-b4ef-486e78757d65')","'Scandium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1628,"('biosphere3', 'f6266ac7-9608-47f2-bc91-3857eb366446')","'Scandium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1629,"('biosphere3', '2f6bb945-2e93-4ea8-b3b6-7930c3680486')","'Scandium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1630,"('biosphere3', '1be475e0-ccef-4145-98e0-0d47c570a71b')","'Selenium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3731.258616,0 +1631,"('biosphere3', '4d54a415-82d7-49ac-88e1-712bd0009363')","'Selenium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3731.258616,0 +1632,"('biosphere3', '62cc5e18-da24-4fb7-9f7c-1601fedba341')","'Selenium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.00E-17,0 +1633,"('biosphere3', '544dbea9-1d18-44ff-b92b-7866e3baa6dd')","'Selenium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7324.676499,0 +1634,"('biosphere3', '6284e146-54b2-4067-a478-9b8ee24c6400')","'Selenium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,7324.676499,0 +1635,"('biosphere3', 'fc91fc6f-596e-424a-9ee4-4432d718a66f')","'Silicon' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1636,"('biosphere3', 'ce88a9b6-0afa-4f68-9b32-8c3438bf4025')","'Silicon' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1637,"('biosphere3', '5fefa2d0-133d-444f-b1fe-596d15f4673e')","'Silicon' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1638,"('biosphere3', 'fc2371dc-5bff-41f6-a155-697fbf727b56')","'Silicon' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1639,"('biosphere3', '71cfe87c-ab80-421e-adba-afb7d5bd0861')","'Silver, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,100987.4334,0.000354949 +1640,"('biosphere3', '94426df9-63b1-4dc6-ad1b-3509e22f1154')","'Silver, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,100987.4334,0.000354949 +1641,"('biosphere3', '21c257b2-57ce-4a6e-b4bd-40f0f75f310f')","'Silver, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.40E-16,8.72E-05 +1642,"('biosphere3', 'af9793ba-25a1-4928-a14a-4bcf7d5bd3f7')","'Silver, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,194088.6647,0.000354949 +1643,"('biosphere3', '6aa8673f-f7e3-4270-93dc-e97b745fced7')","'Silver, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,194088.6647,0.000354949 +1644,"('biosphere3', '9f826bcb-5efc-4977-93f2-8415e3f957df')","'Silver-110' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1645,"('biosphere3', '73a1b292-e31d-4100-a413-304795a3656f')","'Sodium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1646,"('biosphere3', '7fdd39dc-4b73-4fa3-a28c-18f52ddce951')","'Sodium chlorate' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1647,"('biosphere3', '8de41dc8-4edd-4183-9cf7-fffd7d38ee23')","'Sodium formate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2.298905884,0 +1648,"('biosphere3', 'ee9fdd7c-5e29-4bdb-852a-3258f06ec2ab')","'Sodium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1649,"('biosphere3', 'fb83d61e-6fe3-4da7-8eb2-b0e2dc85a76d')","'Sodium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1650,"('biosphere3', '9310f497-3205-4717-aaa8-1a94c321f7d8')","'Sodium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1651,"('biosphere3', '1fc409bc-b8e7-48b2-92d5-2ced4aa7bae2')","'Sodium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1652,"('biosphere3', '5ac961f0-8e53-42ff-b13f-1a7fb9133868')","'Sodium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1653,"('biosphere3', 'b696e904-e0a3-4e5a-bca7-500e6661e665')","'Sodium-24' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1654,"('biosphere3', 'ca53777e-d36e-4db0-95ce-009f1d8593b8')","'Solids, inorganic' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1655,"('biosphere3', 'ae0d4a92-45f4-4293-9fdd-2bbe078bc75f')","'Solids, inorganic' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1656,"('biosphere3', '0b111253-26b5-4a03-97fb-ed7799c21797')","'Solids, inorganic' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1657,"('biosphere3', '070f9c6e-584d-40ed-8b07-6b1f7f75dd3f')","'Strontium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1658,"('biosphere3', '8f1b69d9-fc00-4b46-99f9-7a57fd71dad2')","'Strontium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1659,"('biosphere3', '836493d4-5c50-4713-b2a8-7979b830c1a5')","'Strontium' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1660,"('biosphere3', '4295ed5b-9824-4bbf-97a4-fc4cabd87f0d')","'Strontium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1661,"('biosphere3', 'b26b758d-85cc-41b8-872c-3683caa638d1')","'Strontium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1662,"('biosphere3', '08b681c9-b5fc-46c8-beb5-5ee8bf31cef9')","'Strontium-89' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1663,"('biosphere3', '48524bfc-be91-406e-986b-9550744e0360')","'Strontium-90' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1664,"('biosphere3', 'cebdf8ce-efe8-4218-a32c-612b14e352bb')","'Strontium-90' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1665,"('biosphere3', '31eacbfc-683a-4d36-afc1-80dee42a3b94')","'Sulfate' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1666,"('biosphere3', 'bfc0bf1c-e5e2-4702-a502-08c892031837')","'Sulfate' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1667,"('biosphere3', '5efff566-462f-4ded-b5b4-6761cf50c376')","'Sulfate' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1668,"('biosphere3', '37d35fd0-7f07-4b9b-92eb-de3c27050172')","'Sulfate' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1669,"('biosphere3', '28bca51a-6cc7-46af-961a-fd2b675a1376')","'Sulfate' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1670,"('biosphere3', 'b8c794de-ac20-47f6-ae87-84d91e95da93')","'Sulfate, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1671,"('biosphere3', '4870313f-52a4-4c41-8a08-a25745f2fce9')","'Sulfide' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1672,"('biosphere3', '0e940fff-f3ba-41b4-a5c6-d53a88bfc707')","'Sulfide' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1673,"('biosphere3', 'ad0ce2f1-e6ca-4ab4-a9e7-b9c0137a8e00')","'Sulfite' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1674,"('biosphere3', '871b6f07-de14-48d4-b4aa-7745872c7e9a')","'Sulfur' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1675,"('biosphere3', '16d8a28a-bf21-46ff-ae18-6da39e53fa17')","'Sulfur' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1676,"('biosphere3', '5ac2254e-6b60-45f5-a700-6e0b93f411c8')","'Sulfur' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1677,"('biosphere3', 'c2cc0ba3-a0c4-4bb4-9b85-3ff9dae2061f')","'Sulfur' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1678,"('biosphere3', '51c35cf0-3417-4d42-936f-9a6fd7a2638a')","'Suspended solids, unspecified' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1679,"('biosphere3', 'dc08e010-0bf9-4a36-a1dd-779684c84b3b')","'Suspended solids, unspecified' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1680,"('biosphere3', '3844f446-ded5-4727-8421-17a00ef4eba7')","'Suspended solids, unspecified' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1681,"('biosphere3', '693921ef-e02d-4072-add0-55aa4631b213')","'Suspended solids, unspecified' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1682,"('biosphere3', 'c5b4869c-f131-4a8c-911f-f252cafb2e30')","'t-Butyl methyl ether' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.002408606,1.82E-09 +1683,"('biosphere3', '77fd3c56-5c3e-4070-93fa-de03fa455d47')","'t-Butyl methyl ether' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,6.633173494,2.63E-08 +1684,"('biosphere3', 'a66849fd-060a-40b5-bd9d-04caa632b75c')","'t-Butylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,125.3892977,0 +1685,"('biosphere3', 'f09c1931-85fb-4f50-be9d-15d5c0f5e11e')","'Technetium-99m' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1686,"('biosphere3', '2f36d881-55bd-44ed-a383-a97cd4c53b16')","'Tellurium-123m' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1687,"('biosphere3', '6d3849fb-dbf1-40cf-905e-ba11be1ba9f4')","'Tellurium-132' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1688,"('biosphere3', '7da26881-518f-4b1b-87bf-7d1f633a7c1a')","'Thallium' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17701.23878,0.001784951 +1689,"('biosphere3', '7e9baf19-8fa4-49c6-a3c2-2e875217e60b')","'Thallium' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,17701.23878,0.001784951 +1690,"('biosphere3', 'd9008a06-991c-4acc-a33e-5483ffd2491e')","'Thallium' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,35389.40773,0.001784951 +1691,"('biosphere3', '32fccda4-0d99-40ab-b65f-c7203080b62b')","'Thallium' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,35389.40773,0.001784951 +1692,"('biosphere3', 'caae5c9b-66bf-4e1a-aa73-f84d11a41753')","'Thorium-228' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1693,"('biosphere3', '27d2b49d-9ecb-4b0a-80dc-9c6598464c6a')","'Thorium-228' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1694,"('biosphere3', '714732d3-61e1-4bad-a4e3-a4f3573d8bc6')","'Thorium-228' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1695,"('biosphere3', '9b2f96e6-564c-4fdb-ace4-077b2d2fd132')","'Thorium-230' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1696,"('biosphere3', 'ffbe8447-6d78-46dd-8378-47019a82ce82')","'Thorium-232' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1697,"('biosphere3', 'edc41c91-7e10-41df-8c75-d4850a2e5eb9')","'Thorium-232' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1698,"('biosphere3', '409f6c8a-95df-4e86-8306-5439bd0643c8')","'Thorium-234' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1699,"('biosphere3', 'f73177d8-5e57-4f0d-ba34-6889cfdfed40')","'Tin, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1714.419845,0 +1700,"('biosphere3', '60a6702f-20ad-444f-a6df-f6374f1e3183')","'Tin, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1714.419845,0 +1701,"('biosphere3', '3ddb2e36-bc1b-43a5-8ef4-cbcdbeeeea70')","'Tin, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2978.232971,0 +1702,"('biosphere3', 'd5c40848-fc29-47fa-90a4-46db64a45a4e')","'Tin, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,2978.232971,0 +1703,"('biosphere3', 'e2380d91-f278-41ee-9926-15272a7d1443')","'Titanium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1704,"('biosphere3', '2a46e7f4-c66c-43e5-8a8a-d119c4098aff')","'Titanium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1705,"('biosphere3', '2beb46d1-2d1d-48ca-bf95-f0668fed29bf')","'Titanium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1706,"('biosphere3', 'ff36578b-f403-4656-b934-81d8d4e02dc8')","'Titanium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1707,"('biosphere3', 'a4c31e2a-915e-4ab2-accd-d3ae93d2e01e')","'Titanium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1708,"('biosphere3', '73b225ab-ddc4-4a38-9ed0-ceedee987424')","'TOC, Total Organic Carbon' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1709,"('biosphere3', '8734eb08-50cf-4f5a-8d1a-db76d38efe3c')","'TOC, Total Organic Carbon' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1710,"('biosphere3', 'd1c0567e-ff1a-4cb7-a4f0-de28b2d99b63')","'TOC, Total Organic Carbon' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1711,"('biosphere3', 'f65558fb-61a1-4e48-b4f2-60d62f14b085')","'TOC, Total Organic Carbon' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1712,"('biosphere3', 'cec4a04d-562a-4a38-a98f-5fb3d07eea6b')","'TOC, Total Organic Carbon' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1713,"('biosphere3', 'f2d5f01a-3e16-4a6c-a3dc-f6ee9a728957')","'Toluene' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.001163678,1.01E-09 +1714,"('biosphere3', 'bb33742a-c5d5-4607-805f-13e4d3a155fd')","'Toluene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,55.92445707,2.11E-08 +1715,"('biosphere3', '826c7733-9b0a-4ec5-9f35-32294f9138e3')","'Toluene' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,55.92445707,2.11E-08 +1716,"('biosphere3', 'ea5789d9-c0f9-4aeb-9df9-0caaf211534b')","'Toluene, 2-chloro' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,188.8615743,2.75E-07 +1717,"('biosphere3', 'f4498c00-c870-40fb-a2b3-49b6f522d324')","'Tributyltin compounds' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1718,"('biosphere3', '4b22b04e-4cfa-4a8c-b1da-6cd436d03ef6')","'Triethylene glycol' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,8.46E-09,0 +1719,"('biosphere3', '58eea1e4-bf8e-409c-9d92-4b3d90d85ae0')","'Triethylene glycol' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.387328218,0 +1720,"('biosphere3', 'fb353f43-7c91-4877-999a-b40db6cb7a8e')","'Trimethylamine' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,19.86544205,0 +1721,"('biosphere3', '3277c200-21e3-4b45-8dcc-97cdc2e4c245')","'Tungsten' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1722,"('biosphere3', '10319ea8-90db-4340-be33-b7182dca01db')","'Tungsten' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1723,"('biosphere3', '7673fea9-b4ab-403e-b011-f1fb5a74ea2a')","'Tungsten' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1724,"('biosphere3', '8b2d16fd-5147-4382-afbc-3a7ed73a4f82')","'Uranium alpha' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1725,"('biosphere3', '4f1d83f7-671d-4865-b42a-e6f01661ec17')","'Uranium-234' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1726,"('biosphere3', 'a50b408b-d437-44f8-b1db-d75be4d3f22b')","'Uranium-235' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1727,"('biosphere3', '16cd83f0-c5c0-4b6f-8dd0-26d4e3b9a017')","'Uranium-238' (kilo Becquerel, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1728,"('biosphere3', 'c407952d-43b2-49c4-a756-26e5e76bfbbf')","'Uranium-238' (kilo Becquerel, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1729,"('biosphere3', 'ab9983bf-92f0-4e39-81b2-09c874a002cc')","'Uranium-238' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1730,"('biosphere3', '493d1ae0-4f36-4279-9c5e-0c40fb029950')","'Urea' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,10.24292353,0 +1731,"('biosphere3', 'ed1fd27e-014a-41cf-842f-7b2022b0be79')","'Vanadium, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,58269.36996,0.000194386 +1732,"('biosphere3', '41dbbe1f-06e1-4a34-8497-5986be8f9e51')","'Vanadium, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,58269.36996,0.000194386 +1733,"('biosphere3', 'dbdc3ea8-cc2b-4dbe-82b9-e954e333281d')","'Vanadium, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,1.15E-15,1.20E-05 +1734,"('biosphere3', 'a46a250e-297d-43e9-b1c4-052cdcfb79c5')","'Vanadium, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,112885.9751,0.000194386 +1735,"('biosphere3', '20839113-fbf2-4d2f-bab8-66861f86bc60')","'Vanadium, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,112885.9751,0.000194386 +1736,"('biosphere3', '113746e5-66a9-4d8c-b72b-4a99e7fcd052')","'VOC, volatile organic compounds, unspecified origin' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1737,"('biosphere3', '0b94989b-2551-4069-bb11-4f9f48988cad')","'VOC, volatile organic compounds, unspecified origin' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1738,"('biosphere3', '51254820-3456-4373-b7b4-056cf7b16e01')","'Water' (cubic meter, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1739,"('biosphere3', '4f0f15b3-b227-4cdc-b0b3-6412d55695d5')","'Water' (cubic meter, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1740,"('biosphere3', 'db4566b1-bd88-427d-92da-2d25879063b9')","'Water' (cubic meter, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1741,"('biosphere3', '2404b41a-2eed-4e9d-8ab6-783946fdf5d6')","'Water' (cubic meter, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1742,"('biosphere3', '6d9e9a11-4d99-4489-a0ab-4cd1b6b8eaef')","'Xylene' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0.000905963,1.17E-09 +1743,"('biosphere3', '29190509-6cc8-47e1-bc99-5ff994e39b74')","'Xylene' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,77.43346254,1.95E-08 +1744,"('biosphere3', '045f7de9-60d5-4916-a504-5a1002a6e97e')","'Xylene' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,77.43346254,1.95E-08 +1745,"('biosphere3', '7e769b3e-03fb-4b53-be15-85a910dcfea9')","'Zinc, ion' (kilogram, None, ('water', 'ground-'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21139.01691,0.00128139 +1746,"('biosphere3', 'bdce3a7c-e008-4391-be26-285f71a02453')","'Zinc, ion' (kilogram, None, ('water', 'ground-, long-term'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,21139.01691,0.00128139 +1747,"('biosphere3', '2195d86f-e4c8-4e86-9f18-b5b065b1df7e')","'Zinc, ion' (kilogram, None, ('water', 'ocean'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,3.27E-15,0.000302224 +1748,"('biosphere3', '541b633c-17a3-4047-bce6-0c0e4fdb7c10')","'Zinc, ion' (kilogram, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,38584.58479,0.00128139 +1749,"('biosphere3', '2c7be02c-791f-4fef-b231-b90321bbeb30')","'Zinc, ion' (kilogram, None, ('water',))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,38584.58479,0.00128139 +1750,"('biosphere3', '6fb4d755-f17a-4d1e-a5ce-aad7829ef61f')","'Zinc-65' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 +1751,"('biosphere3', '8db2694c-9a3f-4f8d-a915-cd8a380f5394')","'Zirconium-95' (kilo Becquerel, None, ('water', 'surface water'))",0,0.00E+00,0.00E+00,0.00E+00,0.00E+00,0,0 diff --git a/SWOLF_method.py b/SWOLF_method.py index 0f5a287..46c7815 100644 --- a/SWOLF_method.py +++ b/SWOLF_method.py @@ -6,7 +6,7 @@ """ import pandas as pd from brightway2 import * -from biosphere_keys import * +from Required_keys import * def import_methods(): keys = biosphere_keys @@ -22,7 +22,7 @@ def import_methods(): ### Add the Characterization factors to the SWOLF_IPPC.csv file from the SWOLF and read it again to have characterization factors - Data = pd.read_csv("SWOLF _ IPPC.csv") + Data = pd.read_csv("SWOLF _ ImpactMethods.csv") SWOLF_IPCC = [] SWOLF_Acidification = [] diff --git a/process_model_msm3.py b/process_model_msm3.py index 49b06cc..32da3eb 100644 --- a/process_model_msm3.py +++ b/process_model_msm3.py @@ -6,7 +6,6 @@ """ import pandas as pd import numpy as np -from biosphere_key import * from brightway2 import * # Reading the keys from Required_keys import * diff --git a/technosphere_LCIA.py b/technosphere_LCIA.py new file mode 100644 index 0000000..fd9365e --- /dev/null +++ b/technosphere_LCIA.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Dec 9 12:32:37 2019 + +@author: msardar2 +""" +from brightway2 import * +project = "Compost_use" +projects.set_current(project) + +method = [('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1, C1_36'), + ('IPCC 2013, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0, C1_36'), + ('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=1'), + ('IPCC 2007, Ecoinvent V3.5', 'climate change', 'GWP 100a, bioCO2=0'), + ('SWOLF_Acidification','SWOLF'), + ('SWOLF_Eutrophication','SWOLF'), + ('SWOLF_PhotochemicalSmog','SWOLF'), + ('SWOLF_CED','SWOLF') + ] + +tech= [('Technosphere', 'Electricity_production'), + ('Technosphere', 'Equipment_Diesel'), + ('Technosphere', 'Nitrogen_Fertilizer'), + ('Technosphere', 'Phosphorous_Fertilizer'), + ('Technosphere', 'Potassium_Fertilizer'), + ('Technosphere', 'Peat'), + ('Technosphere', 'market_for_excavation_skid_steer_loader'), + ('Technosphere', 'compost_to_LF') + ] + + +import pandas as pd +AA= pd.DataFrame(columns=['tech_flow','method','score']) + +C=[] +CC=[] +CCC=[] +for j in tech: + for i in method: + A= LCA({j:1},i) + A.lci() + A.lcia() + C.append(j) + CC.append(i) + CCC.append(A.score) + +AA['tech_flow']=C +AA['method']=CC +AA['score']=CCC \ No newline at end of file diff --git a/trad_landfill - Composting ratio.xlsb b/trad_landfill - Composting ratio.xlsb new file mode 100644 index 0000000..022dab1 Binary files /dev/null and b/trad_landfill - Composting ratio.xlsb differ