From 2b619c9b353da1c188c48901500119828cd6c3c4 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Wed, 10 Jan 2024 14:36:08 +0000 Subject: [PATCH 01/59] Allow reading extensions from yaml The extensions consist of two addresses: (1) 'extension_file' includes the address of a script for any decorations of existing nodes/arcs/models objects; (2) 'new_classes' includes the new node name and the associated script address. It is noted that only the folder address is provided rather than the exact script address. --- wsimod/orchestration/model.py | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index e01e3b68..584c55ab 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -194,7 +194,21 @@ def load(self, address, config_name="config.yml", overrides={}): constants.NON_ADDITIVE_POLLUTANTS = data["non_additive_pollutants"] constants.FLOAT_ACCURACY = float(data["float_accuracy"]) self.__dict__.update(Model().__dict__) - + + """ + FLAG: + E.G. ADDITION FOR NEW CLASSES + """ + + if 'extensions' in data.keys(): + if 'new_classes' in data['extensions'].keys(): + import wsimod + for class_name, class_address in data['extensions']['new_classes'].items(): + sys.path.append(class_address) + new_node = __import__(class_name, fromlist=['']) + setattr(wsimod.nodes, class_name, getattr(new_node, class_name)) + self.nodes_type[class_name] = {} + nodes = data["nodes"] for name, node in nodes.items(): @@ -216,6 +230,18 @@ def load(self, address, config_name="config.yml", overrides={}): self.add_arcs(list(arcs.values())) if "dates" in data.keys(): self.dates = [to_datetime(x) for x in data["dates"]] + + """ + FLAG: + E.G. ADDITION FOR EXTENSIONS SCRIPT + + if you want this to work with 'model.save' functionality, you'll probably + need to store the extensions and new classes addresses in the model object + """ + if 'extensions' in data.keys(): + sys.path.append(data['extensions']['extension_file']) + from model_extensions import extensions + extensions(self) def save(self, address, config_name="config.yml", compress=False): """Save the model object to a yaml file and input data to csv.gz format in From 2bd40c685c67642460974c35f88694076b6b850b Mon Sep 17 00:00:00 2001 From: liuly12 Date: Wed, 10 Jan 2024 14:38:09 +0000 Subject: [PATCH 02/59] the yaml file for testing the customisation --- docs/demo/data/processed/settings_saved.yaml | 1616 ++++++++++++++++++ 1 file changed, 1616 insertions(+) create mode 100644 docs/demo/data/processed/settings_saved.yaml diff --git a/docs/demo/data/processed/settings_saved.yaml b/docs/demo/data/processed/settings_saved.yaml new file mode 100644 index 00000000..97497237 --- /dev/null +++ b/docs/demo/data/processed/settings_saved.yaml @@ -0,0 +1,1616 @@ +extensions: + extension_file: C:\Users\leyan\Documents\GitHub\wsi\docs\demo\data\processed + new_classes: + Groundwater_h: C:\Users\leyan\Documents\GitHub\wsi\docs\demo\data\processed + +nodes: + my_sewer: + type_: Sewer + name: my_sewer + capacity: 0.04 + + my_land: + type_: Land + name: my_land + filename: timeseries_data_saved.csv + surfaces: + Impervious: + type_: ImperviousSurface + surface: urban + area: 10 + pollutant_load: + phosphate: 1.0e-07 + Pervious: + type_: PerviousSurface + surface: rural + area: 100 + depth: 0.5 + pollutant_load: + phosphate: 1.0e-07 + + my_groundwater: + type_: Groundwater + name: my_groundwater + capacity: 100 + area: 100 + + my_river: + type_: Node + name: my_river + + my_outlet: + type_: Waste + name: my_outlet + + my_reservoir: + type_: Reservoir + node_type_override: RiverReservoir + name: my_reservoir + capacity: 10 + area: 5 + initial_storage: 6 + environmental_flow: 0.1 + filename: timeseries_data_saved.csv + + gw1: + type_: Groundwater_h + name: gw1 + area: 100 + h_initial: 7.5 + z_surface: 20 + s: 0.3 + c_riverbed: 0 + c_aquifer: {'gw2' : 0.1} + + gw2: + type_: Groundwater_h + name: gw2 + area: 100 + h_initial: 10 + z_surface: 20 + s: 0.3 + c_riverbed: 0 + c_aquifer: {'gw1' : 0.1} + +arcs: + urban_drainage: + type_: Arc + name: urban_drainage + in_port: my_land + out_port: my_sewer + + percolation: + type_: Arc + name: percolation + in_port: my_land + out_port: my_groundwater + + runoff: + type_: Arc + name: runoff + in_port: my_land + out_port: my_river + + storm_outflow: + type_: Arc + name: storm_outflow + in_port: my_sewer + out_port: my_river + + baseflow: + type_: Arc + name: baseflow + in_port: my_groundwater + out_port: my_river + + catchment_outflow: + type_: Arc + name: catchment_outflow + in_port: my_river + out_port: my_outlet + + reservoir_outflow: + type_: Arc + name: reservoir_outflow + in_port: my_reservoir + out_port: my_outlet + + gw1_gw2: + type_: Arc + name: gw1_gw2 + in_port: gw1 + out_port: gw2 + + gw2_gw1: + type_: Arc + name: gw2_gw1 + in_port: gw2 + out_port: gw1 + +pollutants: +- do +- org-phosphorus +- phosphate +- ammonia +- solids +- bod +- cod +- ph +- temperature +- nitrate +- nitrite +- org-nitrogen +additive_pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- bod +- cod +- nitrate +- nitrite +- org-nitrogen +non_additive_pollutants: +- do +- temperature +- ph +float_accuracy: 1.0e-6 + +dates: +- "2009-03-03" +- "2009-03-04" +- "2009-03-05" +- "2009-03-06" +- "2009-03-07" +- "2009-03-08" +- "2009-03-09" +- "2009-03-10" +- "2009-03-11" +- "2009-03-12" +- "2009-03-13" +- "2009-03-14" +- "2009-03-15" +- "2009-03-16" +- "2009-03-17" +- "2009-03-18" +- "2009-03-19" +- "2009-03-20" +- "2009-03-21" +- "2009-03-22" +- "2009-03-23" +- "2009-03-24" +- "2009-03-25" +- "2009-03-26" +- "2009-03-27" +- "2009-03-28" +- "2009-03-29" +- "2009-03-30" +- "2009-03-31" +- "2009-04-01" +- "2009-04-02" +- "2009-04-03" +- "2009-04-04" +- "2009-04-05" +- "2009-04-06" +- "2009-04-07" +- "2009-04-08" +- "2009-04-09" +- "2009-04-10" +- "2009-04-11" +- "2009-04-12" +- "2009-04-13" +- "2009-04-14" +- "2009-04-15" +- "2009-04-16" +- "2009-04-17" +- "2009-04-18" +- "2009-04-19" +- "2009-04-20" +- "2009-04-21" +- "2009-04-22" +- "2009-04-23" +- "2009-04-24" +- "2009-04-25" +- "2009-04-26" +- "2009-04-27" +- "2009-04-28" +- "2009-04-29" +- "2009-04-30" +- "2009-05-01" +- "2009-05-02" +- "2009-05-03" +- "2009-05-04" +- "2009-05-05" +- "2009-05-06" +- "2009-05-07" +- "2009-05-08" +- "2009-05-09" +- "2009-05-10" +- "2009-05-11" +- "2009-05-12" +- "2009-05-13" +- "2009-05-14" +- "2009-05-15" +- "2009-05-16" +- "2009-05-17" +- "2009-05-18" +- "2009-05-19" +- "2009-05-20" +- "2009-05-21" +- "2009-05-22" +- "2009-05-23" +- "2009-05-24" +- "2009-05-25" +- "2009-05-26" +- "2009-05-27" +- "2009-05-28" +- "2009-05-29" +- "2009-05-30" +- "2009-05-31" +- "2009-06-01" +- "2009-06-02" +- "2009-06-03" +- "2009-06-04" +- "2009-06-05" +- "2009-06-06" +- "2009-06-07" +- "2009-06-08" +- "2009-06-09" +- "2009-06-10" +- "2009-06-11" +- "2009-06-12" +- "2009-06-13" +- "2009-06-14" +- "2009-06-15" +- "2009-06-16" +- "2009-06-17" +- "2009-06-18" +- "2009-06-19" +- "2009-06-20" +- "2009-06-21" +- "2009-06-22" +- "2009-06-23" +- "2009-06-24" +- "2009-06-25" +- "2009-06-26" +- "2009-06-27" +- "2009-06-28" +- "2009-06-29" +- "2009-06-30" +- "2009-07-01" +- "2009-07-02" +- "2009-07-03" +- "2009-07-04" +- "2009-07-05" +- "2009-07-06" +- "2009-07-07" +- "2009-07-08" +- "2009-07-09" +- "2009-07-10" +- "2009-07-11" +- "2009-07-12" +- "2009-07-13" +- "2009-07-14" +- "2009-07-15" +- "2009-07-16" +- "2009-07-17" +- "2009-07-18" +- "2009-07-19" +- "2009-07-20" +- "2009-07-21" +- "2009-07-22" +- "2009-07-23" +- "2009-07-24" +- "2009-07-25" +- "2009-07-26" +- "2009-07-27" +- "2009-07-28" +- "2009-07-29" +- "2009-07-30" +- "2009-07-31" +- "2009-08-01" +- "2009-08-02" +- "2009-08-03" +- "2009-08-04" +- "2009-08-05" +- "2009-08-06" +- "2009-08-07" +- "2009-08-08" +- "2009-08-09" +- "2009-08-10" +- "2009-08-11" +- "2009-08-12" +- "2009-08-13" +- "2009-08-14" +- "2009-08-15" +- "2009-08-16" +- "2009-08-17" +- "2009-08-18" +- "2009-08-19" +- "2009-08-20" +- "2009-08-21" +- "2009-08-22" +- "2009-08-23" +- "2009-08-24" +- "2009-08-25" +- "2009-08-26" +- "2009-08-27" +- "2009-08-28" +- "2009-08-29" +- "2009-08-30" +- "2009-08-31" +- "2009-09-01" +- "2009-09-02" +- "2009-09-03" +- "2009-09-04" +- "2009-09-05" +- "2009-09-06" +- "2009-09-07" +- "2009-09-08" +- "2009-09-09" +- "2009-09-10" +- "2009-09-11" +- "2009-09-12" +- "2009-09-13" +- "2009-09-14" +- "2009-09-15" +- "2009-09-16" +- "2009-09-17" +- "2009-09-18" +- "2009-09-19" +- "2009-09-20" +- "2009-09-21" +- "2009-09-22" +- "2009-09-23" +- "2009-09-24" +- "2009-09-25" +- "2009-09-26" +- "2009-09-27" +- "2009-09-28" +- "2009-09-29" +- "2009-09-30" +- "2009-10-01" +- "2009-10-02" +- "2009-10-03" +- "2009-10-04" +- "2009-10-05" +- "2009-10-06" +- "2009-10-07" +- "2009-10-08" +- "2009-10-09" +- "2009-10-10" +- "2009-10-11" +- "2009-10-12" +- "2009-10-13" +- "2009-10-14" +- "2009-10-15" +- "2009-10-16" +- "2009-10-17" +- "2009-10-18" +- "2009-10-19" +- "2009-10-20" +- "2009-10-21" +- "2009-10-22" +- "2009-10-23" +- "2009-10-24" +- "2009-10-25" +- "2009-10-26" +- "2009-10-27" +- "2009-10-28" +- "2009-10-29" +- "2009-10-30" +- "2009-10-31" +- "2009-11-01" +- "2009-11-02" +- "2009-11-03" +- "2009-11-04" +- "2009-11-05" +- "2009-11-06" +- "2009-11-07" +- "2009-11-08" +- "2009-11-09" +- "2009-11-10" +- "2009-11-11" +- "2009-11-12" +- "2009-11-13" +- "2009-11-14" +- "2009-11-15" +- "2009-11-16" +- "2009-11-17" +- "2009-11-18" +- "2009-11-19" +- "2009-11-20" +- "2009-11-21" +- "2009-11-22" +- "2009-11-23" +- "2009-11-24" +- "2009-11-25" +- "2009-11-26" +- "2009-11-27" +- "2009-11-28" +- "2009-11-29" +- "2009-11-30" +- "2009-12-01" +- "2009-12-02" +- "2009-12-03" +- "2009-12-04" +- "2009-12-05" +- "2009-12-06" +- "2009-12-07" +- "2009-12-08" +- "2009-12-09" +- "2009-12-10" +- "2009-12-11" +- "2009-12-12" +- "2009-12-13" +- "2009-12-14" +- "2009-12-15" +- "2009-12-16" +- "2009-12-17" +- "2009-12-18" +- "2009-12-19" +- "2009-12-20" +- "2009-12-21" +- "2009-12-22" +- "2009-12-23" +- "2009-12-24" +- "2009-12-25" +- "2009-12-26" +- "2009-12-27" +- "2009-12-28" +- "2009-12-29" +- "2009-12-30" +- "2009-12-31" +- "2010-01-01" +- "2010-01-02" +- "2010-01-03" +- "2010-01-04" +- "2010-01-05" +- "2010-01-06" +- "2010-01-07" +- "2010-01-08" +- "2010-01-09" +- "2010-01-10" +- "2010-01-11" +- "2010-01-12" +- "2010-01-13" +- "2010-01-14" +- "2010-01-15" +- "2010-01-16" +- "2010-01-17" +- "2010-01-18" +- "2010-01-19" +- "2010-01-20" +- "2010-01-21" +- "2010-01-22" +- "2010-01-23" +- "2010-01-24" +- "2010-01-25" +- "2010-01-26" +- "2010-01-27" +- "2010-01-28" +- "2010-01-29" +- "2010-01-30" +- "2010-01-31" +- "2010-02-01" +- "2010-02-02" +- "2010-02-03" +- "2010-02-04" +- "2010-02-05" +- "2010-02-06" +- "2010-02-07" +- "2010-02-08" +- "2010-02-09" +- "2010-02-10" +- "2010-02-11" +- "2010-02-12" +- "2010-02-13" +- "2010-02-14" +- "2010-02-15" +- "2010-02-16" +- "2010-02-17" +- "2010-02-18" +- "2010-02-19" +- "2010-02-20" +- "2010-02-21" +- "2010-02-22" +- "2010-02-23" +- "2010-02-24" +- "2010-02-25" +- "2010-02-26" +- "2010-02-27" +- "2010-02-28" +- "2010-03-01" +- "2010-03-02" +- "2010-03-03" +- "2010-03-04" +- "2010-03-05" +- "2010-03-06" +- "2010-03-07" +- "2010-03-08" +- "2010-03-09" +- "2010-03-10" +- "2010-03-11" +- "2010-03-12" +- "2010-03-13" +- "2010-03-14" +- "2010-03-15" +- "2010-03-16" +- "2010-03-17" +- "2010-03-18" +- "2010-03-19" +- "2010-03-20" +- "2010-03-21" +- "2010-03-22" +- "2010-03-23" +- "2010-03-24" +- "2010-03-25" +- "2010-03-26" +- "2010-03-27" +- "2010-03-28" +- "2010-03-29" +- "2010-03-30" +- "2010-03-31" +- "2010-04-01" +- "2010-04-02" +- "2010-04-03" +- "2010-04-04" +- "2010-04-05" +- "2010-04-06" +- "2010-04-07" +- "2010-04-08" +- "2010-04-09" +- "2010-04-10" +- "2010-04-11" +- "2010-04-12" +- "2010-04-13" +- "2010-04-14" +- "2010-04-15" +- "2010-04-16" +- "2010-04-17" +- "2010-04-18" +- "2010-04-19" +- "2010-04-20" +- "2010-04-21" +- "2010-04-22" +- "2010-04-23" +- "2010-04-24" +- "2010-04-25" +- "2010-04-26" +- "2010-04-27" +- "2010-04-28" +- "2010-04-29" +- "2010-04-30" +- "2010-05-01" +- "2010-05-02" +- "2010-05-03" +- "2010-05-04" +- "2010-05-05" +- "2010-05-06" +- "2010-05-07" +- "2010-05-08" +- "2010-05-09" +- "2010-05-10" +- "2010-05-11" +- "2010-05-12" +- "2010-05-13" +- "2010-05-14" +- "2010-05-15" +- "2010-05-16" +- "2010-05-17" +- "2010-05-18" +- "2010-05-19" +- "2010-05-20" +- "2010-05-21" +- "2010-05-22" +- "2010-05-23" +- "2010-05-24" +- "2010-05-25" +- "2010-05-26" +- "2010-05-27" +- "2010-05-28" +- "2010-05-29" +- "2010-05-30" +- "2010-05-31" +- "2010-06-01" +- "2010-06-02" +- "2010-06-03" +- "2010-06-04" +- "2010-06-05" +- "2010-06-06" +- "2010-06-07" +- "2010-06-08" +- "2010-06-09" +- "2010-06-10" +- "2010-06-11" +- "2010-06-12" +- "2010-06-13" +- "2010-06-14" +- "2010-06-15" +- "2010-06-16" +- "2010-06-17" +- "2010-06-18" +- "2010-06-19" +- "2010-06-20" +- "2010-06-21" +- "2010-06-22" +- "2010-06-23" +- "2010-06-24" +- "2010-06-25" +- "2010-06-26" +- "2010-06-27" +- "2010-06-28" +- "2010-06-29" +- "2010-06-30" +- "2010-07-01" +- "2010-07-02" +- "2010-07-03" +- "2010-07-04" +- "2010-07-05" +- "2010-07-06" +- "2010-07-07" +- "2010-07-08" +- "2010-07-09" +- "2010-07-10" +- "2010-07-11" +- "2010-07-12" +- "2010-07-13" +- "2010-07-14" +- "2010-07-15" +- "2010-07-16" +- "2010-07-17" +- "2010-07-18" +- "2010-07-19" +- "2010-07-20" +- "2010-07-21" +- "2010-07-22" +- "2010-07-23" +- "2010-07-24" +- "2010-07-25" +- "2010-07-26" +- "2010-07-27" +- "2010-07-28" +- "2010-07-29" +- "2010-07-30" +- "2010-07-31" +- "2010-08-01" +- "2010-08-02" +- "2010-08-03" +- "2010-08-04" +- "2010-08-05" +- "2010-08-06" +- "2010-08-07" +- "2010-08-08" +- "2010-08-09" +- "2010-08-10" +- "2010-08-11" +- "2010-08-12" +- "2010-08-13" +- "2010-08-14" +- "2010-08-15" +- "2010-08-16" +- "2010-08-17" +- "2010-08-18" +- "2010-08-19" +- "2010-08-20" +- "2010-08-21" +- "2010-08-22" +- "2010-08-23" +- "2010-08-24" +- "2010-08-25" +- "2010-08-26" +- "2010-08-27" +- "2010-08-28" +- "2010-08-29" +- "2010-08-30" +- "2010-08-31" +- "2010-09-01" +- "2010-09-02" +- "2010-09-03" +- "2010-09-04" +- "2010-09-05" +- "2010-09-06" +- "2010-09-07" +- "2010-09-08" +- "2010-09-09" +- "2010-09-10" +- "2010-09-11" +- "2010-09-12" +- "2010-09-13" +- "2010-09-14" +- "2010-09-15" +- "2010-09-16" +- "2010-09-17" +- "2010-09-18" +- "2010-09-19" +- "2010-09-20" +- "2010-09-21" +- "2010-09-22" +- "2010-09-23" +- "2010-09-24" +- "2010-09-25" +- "2010-09-26" +- "2010-09-27" +- "2010-09-28" +- "2010-09-29" +- "2010-09-30" +- "2010-10-01" +- "2010-10-02" +- "2010-10-03" +- "2010-10-04" +- "2010-10-05" +- "2010-10-06" +- "2010-10-07" +- "2010-10-08" +- "2010-10-09" +- "2010-10-10" +- "2010-10-11" +- "2010-10-12" +- "2010-10-13" +- "2010-10-14" +- "2010-10-15" +- "2010-10-16" +- "2010-10-17" +- "2010-10-18" +- "2010-10-19" +- "2010-10-20" +- "2010-10-21" +- "2010-10-22" +- "2010-10-23" +- "2010-10-24" +- "2010-10-25" +- "2010-10-26" +- "2010-10-27" +- "2010-10-28" +- "2010-10-29" +- "2010-10-30" +- "2010-10-31" +- "2010-11-01" +- "2010-11-02" +- "2010-11-03" +- "2010-11-04" +- "2010-11-05" +- "2010-11-06" +- "2010-11-07" +- "2010-11-08" +- "2010-11-09" +- "2010-11-10" +- "2010-11-11" +- "2010-11-12" +- "2010-11-13" +- "2010-11-14" +- "2010-11-15" +- "2010-11-16" +- "2010-11-17" +- "2010-11-18" +- "2010-11-19" +- "2010-11-20" +- "2010-11-21" +- "2010-11-22" +- "2010-11-23" +- "2010-11-24" +- "2010-11-25" +- "2010-11-26" +- "2010-11-27" +- "2010-11-28" +- "2010-11-29" +- "2010-11-30" +- "2010-12-01" +- "2010-12-02" +- "2010-12-03" +- "2010-12-04" +- "2010-12-05" +- "2010-12-06" +- "2010-12-07" +- "2010-12-08" +- "2010-12-09" +- "2010-12-10" +- "2010-12-11" +- "2010-12-12" +- "2010-12-13" +- "2010-12-14" +- "2010-12-15" +- "2010-12-16" +- "2010-12-17" +- "2010-12-18" +- "2010-12-19" +- "2010-12-20" +- "2010-12-21" +- "2010-12-22" +- "2010-12-23" +- "2010-12-24" +- "2010-12-25" +- "2010-12-26" +- "2010-12-27" +- "2010-12-28" +- "2010-12-29" +- "2010-12-30" +- "2010-12-31" +- "2011-01-01" +- "2011-01-02" +- "2011-01-03" +- "2011-01-04" +- "2011-01-05" +- "2011-01-06" +- "2011-01-07" +- "2011-01-08" +- "2011-01-09" +- "2011-01-10" +- "2011-01-11" +- "2011-01-12" +- "2011-01-13" +- "2011-01-14" +- "2011-01-15" +- "2011-01-16" +- "2011-01-17" +- "2011-01-18" +- "2011-01-19" +- "2011-01-20" +- "2011-01-21" +- "2011-01-22" +- "2011-01-23" +- "2011-01-24" +- "2011-01-25" +- "2011-01-26" +- "2011-01-27" +- "2011-01-28" +- "2011-01-29" +- "2011-01-30" +- "2011-01-31" +- "2011-02-01" +- "2011-02-02" +- "2011-02-03" +- "2011-02-04" +- "2011-02-05" +- "2011-02-06" +- "2011-02-07" +- "2011-02-08" +- "2011-02-09" +- "2011-02-10" +- "2011-02-11" +- "2011-02-12" +- "2011-02-13" +- "2011-02-14" +- "2011-02-15" +- "2011-02-16" +- "2011-02-17" +- "2011-02-18" +- "2011-02-19" +- "2011-02-20" +- "2011-02-21" +- "2011-02-22" +- "2011-02-23" +- "2011-02-24" +- "2011-02-25" +- "2011-02-26" +- "2011-02-27" +- "2011-02-28" +- "2011-03-01" +- "2011-03-02" +- "2011-03-03" +- "2011-03-04" +- "2011-03-05" +- "2011-03-06" +- "2011-03-07" +- "2011-03-08" +- "2011-03-09" +- "2011-03-10" +- "2011-03-11" +- "2011-03-12" +- "2011-03-13" +- "2011-03-14" +- "2011-03-15" +- "2011-03-16" +- "2011-03-17" +- "2011-03-18" +- "2011-03-19" +- "2011-03-20" +- "2011-03-21" +- "2011-03-22" +- "2011-03-23" +- "2011-03-24" +- "2011-03-25" +- "2011-03-26" +- "2011-03-27" +- "2011-03-28" +- "2011-03-29" +- "2011-03-30" +- "2011-03-31" +- "2011-04-01" +- "2011-04-02" +- "2011-04-03" +- "2011-04-04" +- "2011-04-05" +- "2011-04-06" +- "2011-04-07" +- "2011-04-08" +- "2011-04-09" +- "2011-04-10" +- "2011-04-11" +- "2011-04-12" +- "2011-04-13" +- "2011-04-14" +- "2011-04-15" +- "2011-04-16" +- "2011-04-17" +- "2011-04-18" +- "2011-04-19" +- "2011-04-20" +- "2011-04-21" +- "2011-04-22" +- "2011-04-23" +- "2011-04-24" +- "2011-04-25" +- "2011-04-26" +- "2011-04-27" +- "2011-04-28" +- "2011-04-29" +- "2011-04-30" +- "2011-05-01" +- "2011-05-02" +- "2011-05-03" +- "2011-05-04" +- "2011-05-05" +- "2011-05-06" +- "2011-05-07" +- "2011-05-08" +- "2011-05-09" +- "2011-05-10" +- "2011-05-11" +- "2011-05-12" +- "2011-05-13" +- "2011-05-14" +- "2011-05-15" +- "2011-05-16" +- "2011-05-17" +- "2011-05-18" +- "2011-05-19" +- "2011-05-20" +- "2011-05-21" +- "2011-05-22" +- "2011-05-23" +- "2011-05-24" +- "2011-05-25" +- "2011-05-26" +- "2011-05-27" +- "2011-05-28" +- "2011-05-29" +- "2011-05-30" +- "2011-05-31" +- "2011-06-01" +- "2011-06-02" +- "2011-06-03" +- "2011-06-04" +- "2011-06-05" +- "2011-06-06" +- "2011-06-07" +- "2011-06-08" +- "2011-06-09" +- "2011-06-10" +- "2011-06-11" +- "2011-06-12" +- "2011-06-13" +- "2011-06-14" +- "2011-06-15" +- "2011-06-16" +- "2011-06-17" +- "2011-06-18" +- "2011-06-19" +- "2011-06-20" +- "2011-06-21" +- "2011-06-22" +- "2011-06-23" +- "2011-06-24" +- "2011-06-25" +- "2011-06-26" +- "2011-06-27" +- "2011-06-28" +- "2011-06-29" +- "2011-06-30" +- "2011-07-01" +- "2011-07-02" +- "2011-07-03" +- "2011-07-04" +- "2011-07-05" +- "2011-07-06" +- "2011-07-07" +- "2011-07-08" +- "2011-07-09" +- "2011-07-10" +- "2011-07-11" +- "2011-07-12" +- "2011-07-13" +- "2011-07-14" +- "2011-07-15" +- "2011-07-16" +- "2011-07-17" +- "2011-07-18" +- "2011-07-19" +- "2011-07-20" +- "2011-07-21" +- "2011-07-22" +- "2011-07-23" +- "2011-07-24" +- "2011-07-25" +- "2011-07-26" +- "2011-07-27" +- "2011-07-28" +- "2011-07-29" +- "2011-07-30" +- "2011-07-31" +- "2011-08-01" +- "2011-08-02" +- "2011-08-03" +- "2011-08-04" +- "2011-08-05" +- "2011-08-06" +- "2011-08-07" +- "2011-08-08" +- "2011-08-09" +- "2011-08-10" +- "2011-08-11" +- "2011-08-12" +- "2011-08-13" +- "2011-08-14" +- "2011-08-15" +- "2011-08-16" +- "2011-08-17" +- "2011-08-18" +- "2011-08-19" +- "2011-08-20" +- "2011-08-21" +- "2011-08-22" +- "2011-08-23" +- "2011-08-24" +- "2011-08-25" +- "2011-08-26" +- "2011-08-27" +- "2011-08-28" +- "2011-08-29" +- "2011-08-30" +- "2011-08-31" +- "2011-09-01" +- "2011-09-02" +- "2011-09-03" +- "2011-09-04" +- "2011-09-05" +- "2011-09-06" +- "2011-09-07" +- "2011-09-08" +- "2011-09-09" +- "2011-09-10" +- "2011-09-11" +- "2011-09-12" +- "2011-09-13" +- "2011-09-14" +- "2011-09-15" +- "2011-09-16" +- "2011-09-17" +- "2011-09-18" +- "2011-09-19" +- "2011-09-20" +- "2011-09-21" +- "2011-09-22" +- "2011-09-23" +- "2011-09-24" +- "2011-09-25" +- "2011-09-26" +- "2011-09-27" +- "2011-09-28" +- "2011-09-29" +- "2011-09-30" +- "2011-10-01" +- "2011-10-02" +- "2011-10-03" +- "2011-10-04" +- "2011-10-05" +- "2011-10-06" +- "2011-10-07" +- "2011-10-08" +- "2011-10-09" +- "2011-10-10" +- "2011-10-11" +- "2011-10-12" +- "2011-10-13" +- "2011-10-14" +- "2011-10-15" +- "2011-10-16" +- "2011-10-17" +- "2011-10-18" +- "2011-10-19" +- "2011-10-20" +- "2011-10-21" +- "2011-10-22" +- "2011-10-23" +- "2011-10-24" +- "2011-10-25" +- "2011-10-26" +- "2011-10-27" +- "2011-10-28" +- "2011-10-29" +- "2011-10-30" +- "2011-10-31" +- "2011-11-01" +- "2011-11-02" +- "2011-11-03" +- "2011-11-04" +- "2011-11-05" +- "2011-11-06" +- "2011-11-07" +- "2011-11-08" +- "2011-11-09" +- "2011-11-10" +- "2011-11-11" +- "2011-11-12" +- "2011-11-13" +- "2011-11-14" +- "2011-11-15" +- "2011-11-16" +- "2011-11-17" +- "2011-11-18" +- "2011-11-19" +- "2011-11-20" +- "2011-11-21" +- "2011-11-22" +- "2011-11-23" +- "2011-11-24" +- "2011-11-25" +- "2011-11-26" +- "2011-11-27" +- "2011-11-28" +- "2011-11-29" +- "2011-11-30" +- "2011-12-01" +- "2011-12-02" +- "2011-12-03" +- "2011-12-04" +- "2011-12-05" +- "2011-12-06" +- "2011-12-07" +- "2011-12-08" +- "2011-12-09" +- "2011-12-10" +- "2011-12-11" +- "2011-12-12" +- "2011-12-13" +- "2011-12-14" +- "2011-12-15" +- "2011-12-16" +- "2011-12-17" +- "2011-12-18" +- "2011-12-19" +- "2011-12-20" +- "2011-12-21" +- "2011-12-22" +- "2011-12-23" +- "2011-12-24" +- "2011-12-25" +- "2011-12-26" +- "2011-12-27" +- "2011-12-28" +- "2011-12-29" +- "2011-12-30" +- "2011-12-31" +- "2012-01-01" +- "2012-01-02" +- "2012-01-03" +- "2012-01-04" +- "2012-01-05" +- "2012-01-06" +- "2012-01-07" +- "2012-01-08" +- "2012-01-09" +- "2012-01-10" +- "2012-01-11" +- "2012-01-12" +- "2012-01-13" +- "2012-01-14" +- "2012-01-15" +- "2012-01-16" +- "2012-01-17" +- "2012-01-18" +- "2012-01-19" +- "2012-01-20" +- "2012-01-21" +- "2012-01-22" +- "2012-01-23" +- "2012-01-24" +- "2012-01-25" +- "2012-01-26" +- "2012-01-27" +- "2012-01-28" +- "2012-01-29" +- "2012-01-30" +- "2012-01-31" +- "2012-02-01" +- "2012-02-02" +- "2012-02-03" +- "2012-02-04" +- "2012-02-05" +- "2012-02-06" +- "2012-02-07" +- "2012-02-08" +- "2012-02-09" +- "2012-02-10" +- "2012-02-11" +- "2012-02-12" +- "2012-02-13" +- "2012-02-14" +- "2012-02-15" +- "2012-02-16" +- "2012-02-17" +- "2012-02-18" +- "2012-02-19" +- "2012-02-20" +- "2012-02-21" +- "2012-02-22" +- "2012-02-23" +- "2012-02-24" +- "2012-02-25" +- "2012-02-26" +- "2012-02-27" +- "2012-02-28" +- "2012-02-29" +- "2012-03-01" +- "2012-03-02" +- "2012-03-03" +- "2012-03-04" +- "2012-03-05" +- "2012-03-06" +- "2012-03-07" +- "2012-03-08" +- "2012-03-09" +- "2012-03-10" +- "2012-03-11" +- "2012-03-12" +- "2012-03-13" +- "2012-03-14" +- "2012-03-15" +- "2012-03-16" +- "2012-03-17" +- "2012-03-18" +- "2012-03-19" +- "2012-03-20" +- "2012-03-21" +- "2012-03-22" +- "2012-03-23" +- "2012-03-24" +- "2012-03-25" +- "2012-03-26" +- "2012-03-27" +- "2012-03-28" +- "2012-03-29" +- "2012-03-30" +- "2012-03-31" +- "2012-04-01" +- "2012-04-02" +- "2012-04-03" +- "2012-04-04" +- "2012-04-05" +- "2012-04-06" +- "2012-04-07" +- "2012-04-08" +- "2012-04-09" +- "2012-04-10" +- "2012-04-11" +- "2012-04-12" +- "2012-04-13" +- "2012-04-14" +- "2012-04-15" +- "2012-04-16" +- "2012-04-17" +- "2012-04-18" +- "2012-04-19" +- "2012-04-20" +- "2012-04-21" +- "2012-04-22" +- "2012-04-23" +- "2012-04-24" +- "2012-04-25" +- "2012-04-26" +- "2012-04-27" +- "2012-04-28" +- "2012-04-29" +- "2012-04-30" +- "2012-05-01" +- "2012-05-02" +- "2012-05-03" +- "2012-05-04" +- "2012-05-05" +- "2012-05-06" +- "2012-05-07" +- "2012-05-08" +- "2012-05-09" +- "2012-05-10" +- "2012-05-11" +- "2012-05-12" +- "2012-05-13" +- "2012-05-14" +- "2012-05-15" +- "2012-05-16" +- "2012-05-17" +- "2012-05-18" +- "2012-05-19" +- "2012-05-20" +- "2012-05-21" +- "2012-05-22" +- "2012-05-23" +- "2012-05-24" +- "2012-05-25" +- "2012-05-26" +- "2012-05-27" +- "2012-05-28" +- "2012-05-29" +- "2012-05-30" +- "2012-05-31" +- "2012-06-01" +- "2012-06-02" +- "2012-06-03" +- "2012-06-04" +- "2012-06-05" +- "2012-06-06" +- "2012-06-07" +- "2012-06-08" +- "2012-06-09" +- "2012-06-10" +- "2012-06-11" +- "2012-06-12" +- "2012-06-13" +- "2012-06-14" +- "2012-06-15" +- "2012-06-16" +- "2012-06-17" +- "2012-06-18" +- "2012-06-19" +- "2012-06-20" +- "2012-06-21" +- "2012-06-22" +- "2012-06-23" +- "2012-06-24" +- "2012-06-25" +- "2012-06-26" +- "2012-06-27" +- "2012-06-28" +- "2012-06-29" +- "2012-06-30" +- "2012-07-01" +- "2012-07-02" +- "2012-07-03" +- "2012-07-04" +- "2012-07-05" +- "2012-07-06" +- "2012-07-07" +- "2012-07-08" +- "2012-07-09" +- "2012-07-10" +- "2012-07-11" +- "2012-07-12" +- "2012-07-13" +- "2012-07-14" +- "2012-07-15" +- "2012-07-16" +- "2012-07-17" +- "2012-07-18" +- "2012-07-19" +- "2012-07-20" +- "2012-07-21" +- "2012-07-22" +- "2012-07-23" +- "2012-07-24" +- "2012-07-25" +- "2012-07-26" +- "2012-07-27" +- "2012-07-28" +- "2012-07-29" +- "2012-07-30" +- "2012-07-31" +- "2012-08-01" +- "2012-08-02" +- "2012-08-03" +- "2012-08-04" +- "2012-08-05" +- "2012-08-06" +- "2012-08-07" +- "2012-08-08" +- "2012-08-09" +- "2012-08-10" +- "2012-08-11" +- "2012-08-12" +- "2012-08-13" +- "2012-08-14" +- "2012-08-15" +- "2012-08-16" +- "2012-08-17" +- "2012-08-18" +- "2012-08-19" +- "2012-08-20" +- "2012-08-21" +- "2012-08-22" +- "2012-08-23" +- "2012-08-24" +- "2012-08-25" +- "2012-08-26" +- "2012-08-27" +- "2012-08-28" +- "2012-08-29" +- "2012-08-30" +- "2012-08-31" +- "2012-09-01" +- "2012-09-02" +- "2012-09-03" +- "2012-09-04" +- "2012-09-05" +- "2012-09-06" +- "2012-09-07" +- "2012-09-08" +- "2012-09-09" +- "2012-09-10" +- "2012-09-11" +- "2012-09-12" +- "2012-09-13" +- "2012-09-14" +- "2012-09-15" +- "2012-09-16" +- "2012-09-17" +- "2012-09-18" +- "2012-09-19" +- "2012-09-20" +- "2012-09-21" +- "2012-09-22" +- "2012-09-23" +- "2012-09-24" +- "2012-09-25" +- "2012-09-26" +- "2012-09-27" +- "2012-09-28" +- "2012-09-29" +- "2012-09-30" +- "2012-10-01" +- "2012-10-02" +- "2012-10-03" +- "2012-10-04" +- "2012-10-05" +- "2012-10-06" +- "2012-10-07" +- "2012-10-08" +- "2012-10-09" +- "2012-10-10" +- "2012-10-11" +- "2012-10-12" +- "2012-10-13" +- "2012-10-14" +- "2012-10-15" +- "2012-10-16" +- "2012-10-17" +- "2012-10-18" +- "2012-10-19" +- "2012-10-20" +- "2012-10-21" +- "2012-10-22" +- "2012-10-23" +- "2012-10-24" +- "2012-10-25" +- "2012-10-26" +- "2012-10-27" +- "2012-10-28" +- "2012-10-29" +- "2012-10-30" +- "2012-10-31" +- "2012-11-01" +- "2012-11-02" +- "2012-11-03" +- "2012-11-04" +- "2012-11-05" +- "2012-11-06" +- "2012-11-07" +- "2012-11-08" +- "2012-11-09" +- "2012-11-10" +- "2012-11-11" +- "2012-11-12" +- "2012-11-13" +- "2012-11-14" +- "2012-11-15" +- "2012-11-16" +- "2012-11-17" +- "2012-11-18" +- "2012-11-19" +- "2012-11-20" +- "2012-11-21" +- "2012-11-22" +- "2012-11-23" +- "2012-11-24" +- "2012-11-25" +- "2012-11-26" +- "2012-11-27" +- "2012-11-28" +- "2012-11-29" +- "2012-11-30" +- "2012-12-01" +- "2012-12-02" +- "2012-12-03" +- "2012-12-04" +- "2012-12-05" +- "2012-12-06" +- "2012-12-07" +- "2012-12-08" +- "2012-12-09" +- "2012-12-10" +- "2012-12-11" +- "2012-12-12" +- "2012-12-13" +- "2012-12-14" +- "2012-12-15" +- "2012-12-16" +- "2012-12-17" +- "2012-12-18" +- "2012-12-19" +- "2012-12-20" +- "2012-12-21" +- "2012-12-22" +- "2012-12-23" +- "2012-12-24" +- "2012-12-25" +- "2012-12-26" +- "2012-12-27" +- "2012-12-28" +- "2012-12-29" +- "2012-12-30" +- "2012-12-31" +- "2013-01-01" +- "2013-01-02" +- "2013-01-03" +- "2013-01-04" +- "2013-01-05" +- "2013-01-06" +- "2013-01-07" +- "2013-01-08" +- "2013-01-09" +- "2013-01-10" +- "2013-01-11" +- "2013-01-12" +- "2013-01-13" +- "2013-01-14" +- "2013-01-15" +- "2013-01-16" +- "2013-01-17" +- "2013-01-18" +- "2013-01-19" +- "2013-01-20" +- "2013-01-21" +- "2013-01-22" +- "2013-01-23" +- "2013-01-24" +- "2013-01-25" +- "2013-01-26" +- "2013-01-27" +- "2013-01-28" +- "2013-01-29" +- "2013-01-30" +- "2013-01-31" +- "2013-02-01" +- "2013-02-02" +- "2013-02-03" +- "2013-02-04" +- "2013-02-05" +- "2013-02-06" +- "2013-02-07" +- "2013-02-08" +- "2013-02-09" +- "2013-02-10" +- "2013-02-11" +- "2013-02-12" +- "2013-02-13" +- "2013-02-14" +- "2013-02-15" +- "2013-02-16" +- "2013-02-17" +- "2013-02-18" +- "2013-02-19" +- "2013-02-20" +- "2013-02-21" +- "2013-02-22" +- "2013-02-23" +- "2013-02-24" +- "2013-02-25" + From ca33762905eaa47b8bac2752a7e6761451856537 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Wed, 10 Jan 2024 14:38:30 +0000 Subject: [PATCH 03/59] the data for testing the customisation --- .../data/processed/timeseries_data_saved.csv | 4369 +++++++++++++++++ 1 file changed, 4369 insertions(+) create mode 100644 docs/demo/data/processed/timeseries_data_saved.csv diff --git a/docs/demo/data/processed/timeseries_data_saved.csv b/docs/demo/data/processed/timeseries_data_saved.csv new file mode 100644 index 00000000..79836043 --- /dev/null +++ b/docs/demo/data/processed/timeseries_data_saved.csv @@ -0,0 +1,4369 @@ +site,time,variable,value +oxford_land,2009-03-03,precipitation,0.015 +oxford_land,2009-03-04,precipitation,0.0001 +oxford_land,2009-03-05,precipitation,0 +oxford_land,2009-03-06,precipitation,0 +oxford_land,2009-03-07,precipitation,0.0017 +oxford_land,2009-03-08,precipitation,0.0037 +oxford_land,2009-03-09,precipitation,0.0013 +oxford_land,2009-03-10,precipitation,0.0001 +oxford_land,2009-03-11,precipitation,0.0001 +oxford_land,2009-03-12,precipitation,0.0001 +oxford_land,2009-03-13,precipitation,0 +oxford_land,2009-03-14,precipitation,0 +oxford_land,2009-03-15,precipitation,0 +oxford_land,2009-03-16,precipitation,0 +oxford_land,2009-03-17,precipitation,0 +oxford_land,2009-03-18,precipitation,0 +oxford_land,2009-03-19,precipitation,0 +oxford_land,2009-03-20,precipitation,0 +oxford_land,2009-03-21,precipitation,0 +oxford_land,2009-03-22,precipitation,0 +oxford_land,2009-03-23,precipitation,0.0005 +oxford_land,2009-03-24,precipitation,0.0005 +oxford_land,2009-03-25,precipitation,0.0009 +oxford_land,2009-03-26,precipitation,0.0009 +oxford_land,2009-03-27,precipitation,0.0004 +oxford_land,2009-03-28,precipitation,0.0016 +oxford_land,2009-03-29,precipitation,0 +oxford_land,2009-03-30,precipitation,0 +oxford_land,2009-03-31,precipitation,0 +oxford_land,2009-04-01,precipitation,0 +oxford_land,2009-04-02,precipitation,0 +oxford_land,2009-04-03,precipitation,0.0002 +oxford_land,2009-04-04,precipitation,0 +oxford_land,2009-04-05,precipitation,0 +oxford_land,2009-04-06,precipitation,0.0009 +oxford_land,2009-04-07,precipitation,0.005 +oxford_land,2009-04-08,precipitation,0.0014 +oxford_land,2009-04-09,precipitation,0.0017 +oxford_land,2009-04-10,precipitation,0.0019 +oxford_land,2009-04-11,precipitation,0 +oxford_land,2009-04-12,precipitation,0 +oxford_land,2009-04-13,precipitation,0.0001 +oxford_land,2009-04-14,precipitation,0.0051 +oxford_land,2009-04-15,precipitation,0.0011 +oxford_land,2009-04-16,precipitation,0.0082 +oxford_land,2009-04-17,precipitation,0.0009 +oxford_land,2009-04-18,precipitation,0 +oxford_land,2009-04-19,precipitation,0 +oxford_land,2009-04-20,precipitation,0 +oxford_land,2009-04-21,precipitation,0 +oxford_land,2009-04-22,precipitation,0 +oxford_land,2009-04-23,precipitation,0 +oxford_land,2009-04-24,precipitation,0.0015 +oxford_land,2009-04-25,precipitation,0 +oxford_land,2009-04-26,precipitation,0.0056 +oxford_land,2009-04-27,precipitation,0.0054 +oxford_land,2009-04-28,precipitation,0.0007 +oxford_land,2009-04-29,precipitation,0.0005 +oxford_land,2009-04-30,precipitation,0.0019 +oxford_land,2009-05-01,precipitation,0.0002 +oxford_land,2009-05-02,precipitation,0 +oxford_land,2009-05-03,precipitation,0 +oxford_land,2009-05-04,precipitation,0.0001 +oxford_land,2009-05-05,precipitation,0 +oxford_land,2009-05-06,precipitation,0 +oxford_land,2009-05-07,precipitation,0.0013 +oxford_land,2009-05-08,precipitation,0.0007 +oxford_land,2009-05-09,precipitation,0 +oxford_land,2009-05-10,precipitation,0 +oxford_land,2009-05-11,precipitation,0 +oxford_land,2009-05-12,precipitation,0.0008 +oxford_land,2009-05-13,precipitation,0.0012 +oxford_land,2009-05-14,precipitation,0.0137 +oxford_land,2009-05-15,precipitation,0.0014 +oxford_land,2009-05-16,precipitation,0.0034 +oxford_land,2009-05-17,precipitation,0.0066 +oxford_land,2009-05-18,precipitation,0.0065 +oxford_land,2009-05-19,precipitation,0.0035 +oxford_land,2009-05-20,precipitation,0.0001 +oxford_land,2009-05-21,precipitation,0.0003 +oxford_land,2009-05-22,precipitation,0 +oxford_land,2009-05-23,precipitation,0 +oxford_land,2009-05-24,precipitation,0 +oxford_land,2009-05-25,precipitation,0.0024 +oxford_land,2009-05-26,precipitation,0.0008 +oxford_land,2009-05-27,precipitation,0.0013 +oxford_land,2009-05-28,precipitation,0 +oxford_land,2009-05-29,precipitation,0 +oxford_land,2009-05-30,precipitation,0 +oxford_land,2009-05-31,precipitation,0 +oxford_land,2009-06-01,precipitation,0 +oxford_land,2009-06-02,precipitation,0 +oxford_land,2009-06-03,precipitation,0 +oxford_land,2009-06-04,precipitation,0 +oxford_land,2009-06-05,precipitation,0.0084 +oxford_land,2009-06-06,precipitation,0.0154 +oxford_land,2009-06-07,precipitation,0.0049 +oxford_land,2009-06-08,precipitation,0.0002 +oxford_land,2009-06-09,precipitation,0 +oxford_land,2009-06-10,precipitation,0.0095 +oxford_land,2009-06-11,precipitation,0 +oxford_land,2009-06-12,precipitation,0 +oxford_land,2009-06-13,precipitation,0 +oxford_land,2009-06-14,precipitation,0 +oxford_land,2009-06-15,precipitation,0.0015 +oxford_land,2009-06-16,precipitation,0 +oxford_land,2009-06-17,precipitation,0.0012 +oxford_land,2009-06-18,precipitation,0 +oxford_land,2009-06-19,precipitation,0.0023 +oxford_land,2009-06-20,precipitation,0.0002 +oxford_land,2009-06-21,precipitation,0.0001 +oxford_land,2009-06-22,precipitation,0.0013 +oxford_land,2009-06-23,precipitation,0 +oxford_land,2009-06-24,precipitation,0 +oxford_land,2009-06-25,precipitation,0.0037 +oxford_land,2009-06-26,precipitation,0.005 +oxford_land,2009-06-27,precipitation,0.0004 +oxford_land,2009-06-28,precipitation,0.0001 +oxford_land,2009-06-29,precipitation,0.0003 +oxford_land,2009-06-30,precipitation,0.0001 +oxford_land,2009-07-01,precipitation,0 +oxford_land,2009-07-02,precipitation,0.0006 +oxford_land,2009-07-03,precipitation,0.0001 +oxford_land,2009-07-04,precipitation,0 +oxford_land,2009-07-05,precipitation,0.0003 +oxford_land,2009-07-06,precipitation,0.0025 +oxford_land,2009-07-07,precipitation,0.011 +oxford_land,2009-07-08,precipitation,0.0013 +oxford_land,2009-07-09,precipitation,0 +oxford_land,2009-07-10,precipitation,0.0008 +oxford_land,2009-07-11,precipitation,0.0088 +oxford_land,2009-07-12,precipitation,0.0013 +oxford_land,2009-07-13,precipitation,0.0009 +oxford_land,2009-07-14,precipitation,0.0025 +oxford_land,2009-07-15,precipitation,0.0001 +oxford_land,2009-07-16,precipitation,0.0082 +oxford_land,2009-07-17,precipitation,0.0034 +oxford_land,2009-07-18,precipitation,0.0015 +oxford_land,2009-07-19,precipitation,0.0066 +oxford_land,2009-07-20,precipitation,0.0088 +oxford_land,2009-07-21,precipitation,0.0054 +oxford_land,2009-07-22,precipitation,0.0003 +oxford_land,2009-07-23,precipitation,0.0011 +oxford_land,2009-07-24,precipitation,0.0021 +oxford_land,2009-07-25,precipitation,0.0001 +oxford_land,2009-07-26,precipitation,0.0073 +oxford_land,2009-07-27,precipitation,0.0003 +oxford_land,2009-07-28,precipitation,0.0004 +oxford_land,2009-07-29,precipitation,0.0172 +oxford_land,2009-07-30,precipitation,0.0017 +oxford_land,2009-07-31,precipitation,0.0023 +oxford_land,2009-08-01,precipitation,0.0041 +oxford_land,2009-08-02,precipitation,0 +oxford_land,2009-08-03,precipitation,0.0016 +oxford_land,2009-08-04,precipitation,0.0217 +oxford_land,2009-08-05,precipitation,0.0006 +oxford_land,2009-08-06,precipitation,0.0185 +oxford_land,2009-08-07,precipitation,0 +oxford_land,2009-08-08,precipitation,0 +oxford_land,2009-08-09,precipitation,0 +oxford_land,2009-08-10,precipitation,0.0004 +oxford_land,2009-08-11,precipitation,0 +oxford_land,2009-08-12,precipitation,0.002 +oxford_land,2009-08-13,precipitation,0 +oxford_land,2009-08-14,precipitation,0 +oxford_land,2009-08-15,precipitation,0 +oxford_land,2009-08-16,precipitation,0 +oxford_land,2009-08-17,precipitation,0 +oxford_land,2009-08-18,precipitation,0 +oxford_land,2009-08-19,precipitation,0.0001 +oxford_land,2009-08-20,precipitation,0.0003 +oxford_land,2009-08-21,precipitation,0.0047 +oxford_land,2009-08-22,precipitation,0 +oxford_land,2009-08-23,precipitation,0 +oxford_land,2009-08-24,precipitation,0.0003 +oxford_land,2009-08-25,precipitation,0.0023 +oxford_land,2009-08-26,precipitation,0.0028 +oxford_land,2009-08-27,precipitation,0.0003 +oxford_land,2009-08-28,precipitation,0.0022 +oxford_land,2009-08-29,precipitation,0 +oxford_land,2009-08-30,precipitation,0.0002 +oxford_land,2009-08-31,precipitation,0.0001 +oxford_land,2009-09-01,precipitation,0.0071 +oxford_land,2009-09-02,precipitation,0.0087 +oxford_land,2009-09-03,precipitation,0.0008 +oxford_land,2009-09-04,precipitation,0 +oxford_land,2009-09-05,precipitation,0 +oxford_land,2009-09-06,precipitation,0 +oxford_land,2009-09-07,precipitation,0.0001 +oxford_land,2009-09-08,precipitation,0.0003 +oxford_land,2009-09-09,precipitation,0 +oxford_land,2009-09-10,precipitation,0 +oxford_land,2009-09-11,precipitation,0 +oxford_land,2009-09-12,precipitation,0 +oxford_land,2009-09-13,precipitation,0 +oxford_land,2009-09-14,precipitation,0 +oxford_land,2009-09-15,precipitation,0 +oxford_land,2009-09-16,precipitation,0 +oxford_land,2009-09-17,precipitation,0 +oxford_land,2009-09-18,precipitation,0 +oxford_land,2009-09-19,precipitation,0 +oxford_land,2009-09-20,precipitation,0 +oxford_land,2009-09-21,precipitation,0 +oxford_land,2009-09-22,precipitation,0.0001 +oxford_land,2009-09-23,precipitation,0 +oxford_land,2009-09-24,precipitation,0 +oxford_land,2009-09-25,precipitation,0 +oxford_land,2009-09-26,precipitation,0 +oxford_land,2009-09-27,precipitation,0 +oxford_land,2009-09-28,precipitation,0 +oxford_land,2009-09-29,precipitation,0 +oxford_land,2009-09-30,precipitation,0.0001 +oxford_land,2009-10-01,precipitation,0 +oxford_land,2009-10-02,precipitation,0.0002 +oxford_land,2009-10-03,precipitation,0.0007 +oxford_land,2009-10-04,precipitation,0 +oxford_land,2009-10-05,precipitation,0.0043 +oxford_land,2009-10-06,precipitation,0.0059 +oxford_land,2009-10-07,precipitation,0.006 +oxford_land,2009-10-08,precipitation,0 +oxford_land,2009-10-09,precipitation,0.0009 +oxford_land,2009-10-10,precipitation,0 +oxford_land,2009-10-11,precipitation,0.004 +oxford_land,2009-10-12,precipitation,0 +oxford_land,2009-10-13,precipitation,0 +oxford_land,2009-10-14,precipitation,0 +oxford_land,2009-10-15,precipitation,0.0016 +oxford_land,2009-10-16,precipitation,0 +oxford_land,2009-10-17,precipitation,0 +oxford_land,2009-10-18,precipitation,0 +oxford_land,2009-10-19,precipitation,0.0004 +oxford_land,2009-10-20,precipitation,0.0053 +oxford_land,2009-10-21,precipitation,0.0003 +oxford_land,2009-10-22,precipitation,0.0034 +oxford_land,2009-10-23,precipitation,0.0039 +oxford_land,2009-10-24,precipitation,0.0027 +oxford_land,2009-10-25,precipitation,0.0009 +oxford_land,2009-10-26,precipitation,0.0033 +oxford_land,2009-10-27,precipitation,0 +oxford_land,2009-10-28,precipitation,0 +oxford_land,2009-10-29,precipitation,0 +oxford_land,2009-10-30,precipitation,0.0073 +oxford_land,2009-10-31,precipitation,0.0061 +oxford_land,2009-11-01,precipitation,0.0054 +oxford_land,2009-11-02,precipitation,0.0054 +oxford_land,2009-11-03,precipitation,0.0056 +oxford_land,2009-11-04,precipitation,0.0022 +oxford_land,2009-11-05,precipitation,0.0011 +oxford_land,2009-11-06,precipitation,0.0021 +oxford_land,2009-11-07,precipitation,0.0005 +oxford_land,2009-11-08,precipitation,0.0008 +oxford_land,2009-11-09,precipitation,0.0027 +oxford_land,2009-11-10,precipitation,0.0015 +oxford_land,2009-11-11,precipitation,0.0039 +oxford_land,2009-11-12,precipitation,0.0113 +oxford_land,2009-11-13,precipitation,0.0147 +oxford_land,2009-11-14,precipitation,0.0046 +oxford_land,2009-11-15,precipitation,0.0041 +oxford_land,2009-11-16,precipitation,0.0006 +oxford_land,2009-11-17,precipitation,0.0002 +oxford_land,2009-11-18,precipitation,0.0003 +oxford_land,2009-11-19,precipitation,0.0046 +oxford_land,2009-11-20,precipitation,0.0008 +oxford_land,2009-11-21,precipitation,0.0112 +oxford_land,2009-11-22,precipitation,0.0128 +oxford_land,2009-11-23,precipitation,0.0037 +oxford_land,2009-11-24,precipitation,0.0103 +oxford_land,2009-11-25,precipitation,0.0054 +oxford_land,2009-11-26,precipitation,0.0057 +oxford_land,2009-11-27,precipitation,0.0039 +oxford_land,2009-11-28,precipitation,0.0053 +oxford_land,2009-11-29,precipitation,0.013 +oxford_land,2009-11-30,precipitation,0 +oxford_land,2009-12-01,precipitation,0.0018 +oxford_land,2009-12-02,precipitation,0.0039 +oxford_land,2009-12-03,precipitation,0.0002 +oxford_land,2009-12-04,precipitation,0.0044 +oxford_land,2009-12-05,precipitation,0.0152 +oxford_land,2009-12-06,precipitation,0.0013 +oxford_land,2009-12-07,precipitation,0.006 +oxford_land,2009-12-08,precipitation,0.003 +oxford_land,2009-12-09,precipitation,0.0012 +oxford_land,2009-12-10,precipitation,0.0001 +oxford_land,2009-12-11,precipitation,0.0001 +oxford_land,2009-12-12,precipitation,0.0001 +oxford_land,2009-12-13,precipitation,0.0002 +oxford_land,2009-12-14,precipitation,0.0029 +oxford_land,2009-12-15,precipitation,0.0015 +oxford_land,2009-12-16,precipitation,0.0028 +oxford_land,2009-12-17,precipitation,0 +oxford_land,2009-12-18,precipitation,0 +oxford_land,2009-12-19,precipitation,0.0007 +oxford_land,2009-12-20,precipitation,0.0001 +oxford_land,2009-12-21,precipitation,0.0011 +oxford_land,2009-12-22,precipitation,0.0004 +oxford_land,2009-12-23,precipitation,0.0045 +oxford_land,2009-12-24,precipitation,0.001 +oxford_land,2009-12-25,precipitation,0.001 +oxford_land,2009-12-26,precipitation,0.0018 +oxford_land,2009-12-27,precipitation,0 +oxford_land,2009-12-28,precipitation,0.0013 +oxford_land,2009-12-29,precipitation,0.0169 +oxford_land,2009-12-30,precipitation,0.0048 +oxford_land,2009-12-31,precipitation,0 +oxford_land,2010-01-01,precipitation,0 +oxford_land,2010-01-02,precipitation,0.0001 +oxford_land,2010-01-03,precipitation,0 +oxford_land,2010-01-04,precipitation,0.0001 +oxford_land,2010-01-05,precipitation,0.0087 +oxford_land,2010-01-06,precipitation,0.0017 +oxford_land,2010-01-07,precipitation,0.0001 +oxford_land,2010-01-08,precipitation,0 +oxford_land,2010-01-09,precipitation,0 +oxford_land,2010-01-10,precipitation,0.0031 +oxford_land,2010-01-11,precipitation,0.0003 +oxford_land,2010-01-12,precipitation,0.0042 +oxford_land,2010-01-13,precipitation,0.0016 +oxford_land,2010-01-14,precipitation,0.0031 +oxford_land,2010-01-15,precipitation,0.0078 +oxford_land,2010-01-16,precipitation,0.0031 +oxford_land,2010-01-17,precipitation,0.0001 +oxford_land,2010-01-18,precipitation,0.0001 +oxford_land,2010-01-19,precipitation,0.0055 +oxford_land,2010-01-20,precipitation,0.0051 +oxford_land,2010-01-21,precipitation,0.0084 +oxford_land,2010-01-22,precipitation,0.0108 +oxford_land,2010-01-23,precipitation,0 +oxford_land,2010-01-24,precipitation,0.0002 +oxford_land,2010-01-25,precipitation,0 +oxford_land,2010-01-26,precipitation,0 +oxford_land,2010-01-27,precipitation,0.0003 +oxford_land,2010-01-28,precipitation,0.0081 +oxford_land,2010-01-29,precipitation,0.0004 +oxford_land,2010-01-30,precipitation,0 +oxford_land,2010-01-31,precipitation,0 +oxford_land,2010-02-01,precipitation,0.0007 +oxford_land,2010-02-02,precipitation,0.0023 +oxford_land,2010-02-03,precipitation,0.0016 +oxford_land,2010-02-04,precipitation,0.0016 +oxford_land,2010-02-05,precipitation,0.0003 +oxford_land,2010-02-06,precipitation,0.0001 +oxford_land,2010-02-07,precipitation,0.0005 +oxford_land,2010-02-08,precipitation,0.0004 +oxford_land,2010-02-09,precipitation,0.0001 +oxford_land,2010-02-10,precipitation,0.0002 +oxford_land,2010-02-11,precipitation,0 +oxford_land,2010-02-12,precipitation,0.0003 +oxford_land,2010-02-13,precipitation,0.0004 +oxford_land,2010-02-14,precipitation,0 +oxford_land,2010-02-15,precipitation,0.0015 +oxford_land,2010-02-16,precipitation,0.0025 +oxford_land,2010-02-17,precipitation,0.0022 +oxford_land,2010-02-18,precipitation,0.0075 +oxford_land,2010-02-19,precipitation,0.0006 +oxford_land,2010-02-20,precipitation,0.0008 +oxford_land,2010-02-21,precipitation,0.0037 +oxford_land,2010-02-22,precipitation,0.0018 +oxford_land,2010-02-23,precipitation,0.0027 +oxford_land,2010-02-24,precipitation,0.0018 +oxford_land,2010-02-25,precipitation,0.0051 +oxford_land,2010-02-26,precipitation,0.0061 +oxford_land,2010-02-27,precipitation,0.01 +oxford_land,2010-02-28,precipitation,0.0005 +oxford_land,2010-03-01,precipitation,0 +oxford_land,2010-03-02,precipitation,0 +oxford_land,2010-03-03,precipitation,0 +oxford_land,2010-03-04,precipitation,0 +oxford_land,2010-03-05,precipitation,0 +oxford_land,2010-03-06,precipitation,0 +oxford_land,2010-03-07,precipitation,0 +oxford_land,2010-03-08,precipitation,0 +oxford_land,2010-03-09,precipitation,0 +oxford_land,2010-03-10,precipitation,0 +oxford_land,2010-03-11,precipitation,0.0001 +oxford_land,2010-03-12,precipitation,0.0011 +oxford_land,2010-03-13,precipitation,0 +oxford_land,2010-03-14,precipitation,0 +oxford_land,2010-03-15,precipitation,0 +oxford_land,2010-03-16,precipitation,0 +oxford_land,2010-03-17,precipitation,0 +oxford_land,2010-03-18,precipitation,0.0021 +oxford_land,2010-03-19,precipitation,0.0099 +oxford_land,2010-03-20,precipitation,0.0033 +oxford_land,2010-03-21,precipitation,0 +oxford_land,2010-03-22,precipitation,0.0026 +oxford_land,2010-03-23,precipitation,0.0035 +oxford_land,2010-03-24,precipitation,0.011 +oxford_land,2010-03-25,precipitation,0.006 +oxford_land,2010-03-26,precipitation,0.0025 +oxford_land,2010-03-27,precipitation,0.0003 +oxford_land,2010-03-28,precipitation,0.0028 +oxford_land,2010-03-29,precipitation,0.0023 +oxford_land,2010-03-30,precipitation,0.0058 +oxford_land,2010-03-31,precipitation,0.0007 +oxford_land,2010-04-01,precipitation,0.0042 +oxford_land,2010-04-02,precipitation,0.0039 +oxford_land,2010-04-03,precipitation,0.0074 +oxford_land,2010-04-04,precipitation,0.0002 +oxford_land,2010-04-05,precipitation,0 +oxford_land,2010-04-06,precipitation,0.0004 +oxford_land,2010-04-07,precipitation,0.0001 +oxford_land,2010-04-08,precipitation,0 +oxford_land,2010-04-09,precipitation,0 +oxford_land,2010-04-10,precipitation,0 +oxford_land,2010-04-11,precipitation,0 +oxford_land,2010-04-12,precipitation,0 +oxford_land,2010-04-13,precipitation,0 +oxford_land,2010-04-14,precipitation,0 +oxford_land,2010-04-15,precipitation,0 +oxford_land,2010-04-16,precipitation,0 +oxford_land,2010-04-17,precipitation,0 +oxford_land,2010-04-18,precipitation,0 +oxford_land,2010-04-19,precipitation,0 +oxford_land,2010-04-20,precipitation,0 +oxford_land,2010-04-21,precipitation,0 +oxford_land,2010-04-22,precipitation,0 +oxford_land,2010-04-23,precipitation,0 +oxford_land,2010-04-24,precipitation,0.0016 +oxford_land,2010-04-25,precipitation,0.0006 +oxford_land,2010-04-26,precipitation,0 +oxford_land,2010-04-27,precipitation,0 +oxford_land,2010-04-28,precipitation,0 +oxford_land,2010-04-29,precipitation,0.0041 +oxford_land,2010-04-30,precipitation,0.0013 +oxford_land,2010-05-01,precipitation,0.0199 +oxford_land,2010-05-02,precipitation,0.0003 +oxford_land,2010-05-03,precipitation,0.0003 +oxford_land,2010-05-04,precipitation,0 +oxford_land,2010-05-05,precipitation,0.0004 +oxford_land,2010-05-06,precipitation,0 +oxford_land,2010-05-07,precipitation,0.001 +oxford_land,2010-05-08,precipitation,0.0007 +oxford_land,2010-05-09,precipitation,0 +oxford_land,2010-05-10,precipitation,0 +oxford_land,2010-05-11,precipitation,0 +oxford_land,2010-05-12,precipitation,0.0008 +oxford_land,2010-05-13,precipitation,0.0001 +oxford_land,2010-05-14,precipitation,0 +oxford_land,2010-05-15,precipitation,0.0002 +oxford_land,2010-05-16,precipitation,0.0032 +oxford_land,2010-05-17,precipitation,0 +oxford_land,2010-05-18,precipitation,0 +oxford_land,2010-05-19,precipitation,0 +oxford_land,2010-05-20,precipitation,0 +oxford_land,2010-05-21,precipitation,0 +oxford_land,2010-05-22,precipitation,0 +oxford_land,2010-05-23,precipitation,0 +oxford_land,2010-05-24,precipitation,0 +oxford_land,2010-05-25,precipitation,0 +oxford_land,2010-05-26,precipitation,0.0049 +oxford_land,2010-05-27,precipitation,0 +oxford_land,2010-05-28,precipitation,0.0005 +oxford_land,2010-05-29,precipitation,0.0065 +oxford_land,2010-05-30,precipitation,0 +oxford_land,2010-05-31,precipitation,0.0017 +oxford_land,2010-06-01,precipitation,0.0027 +oxford_land,2010-06-02,precipitation,0 +oxford_land,2010-06-03,precipitation,0 +oxford_land,2010-06-04,precipitation,0 +oxford_land,2010-06-05,precipitation,0 +oxford_land,2010-06-06,precipitation,0.0023 +oxford_land,2010-06-07,precipitation,0.0129 +oxford_land,2010-06-08,precipitation,0.0079 +oxford_land,2010-06-09,precipitation,0.0012 +oxford_land,2010-06-10,precipitation,0 +oxford_land,2010-06-11,precipitation,0 +oxford_land,2010-06-12,precipitation,0.0002 +oxford_land,2010-06-13,precipitation,0.0051 +oxford_land,2010-06-14,precipitation,0.0001 +oxford_land,2010-06-15,precipitation,0.0002 +oxford_land,2010-06-16,precipitation,0 +oxford_land,2010-06-17,precipitation,0 +oxford_land,2010-06-18,precipitation,0.0007 +oxford_land,2010-06-19,precipitation,0 +oxford_land,2010-06-20,precipitation,0 +oxford_land,2010-06-21,precipitation,0 +oxford_land,2010-06-22,precipitation,0 +oxford_land,2010-06-23,precipitation,0 +oxford_land,2010-06-24,precipitation,0 +oxford_land,2010-06-25,precipitation,0 +oxford_land,2010-06-26,precipitation,0 +oxford_land,2010-06-27,precipitation,0 +oxford_land,2010-06-28,precipitation,0.0003 +oxford_land,2010-06-29,precipitation,0.0001 +oxford_land,2010-06-30,precipitation,0 +oxford_land,2010-07-01,precipitation,0.0005 +oxford_land,2010-07-02,precipitation,0.0001 +oxford_land,2010-07-03,precipitation,0 +oxford_land,2010-07-04,precipitation,0 +oxford_land,2010-07-05,precipitation,0 +oxford_land,2010-07-06,precipitation,0 +oxford_land,2010-07-07,precipitation,0 +oxford_land,2010-07-08,precipitation,0 +oxford_land,2010-07-09,precipitation,0 +oxford_land,2010-07-10,precipitation,0.0002 +oxford_land,2010-07-11,precipitation,0.0002 +oxford_land,2010-07-12,precipitation,0.0006 +oxford_land,2010-07-13,precipitation,0.0026 +oxford_land,2010-07-14,precipitation,0.0038 +oxford_land,2010-07-15,precipitation,0.0067 +oxford_land,2010-07-16,precipitation,0.0035 +oxford_land,2010-07-17,precipitation,0 +oxford_land,2010-07-18,precipitation,0 +oxford_land,2010-07-19,precipitation,0.0003 +oxford_land,2010-07-20,precipitation,0.0006 +oxford_land,2010-07-21,precipitation,0.0001 +oxford_land,2010-07-22,precipitation,0.0061 +oxford_land,2010-07-23,precipitation,0 +oxford_land,2010-07-24,precipitation,0 +oxford_land,2010-07-25,precipitation,0.0011 +oxford_land,2010-07-26,precipitation,0.0002 +oxford_land,2010-07-27,precipitation,0.0007 +oxford_land,2010-07-28,precipitation,0 +oxford_land,2010-07-29,precipitation,0 +oxford_land,2010-07-30,precipitation,0.0011 +oxford_land,2010-07-31,precipitation,0 +oxford_land,2010-08-01,precipitation,0 +oxford_land,2010-08-02,precipitation,0 +oxford_land,2010-08-03,precipitation,0.0004 +oxford_land,2010-08-04,precipitation,0.0036 +oxford_land,2010-08-05,precipitation,0 +oxford_land,2010-08-06,precipitation,0.0009 +oxford_land,2010-08-07,precipitation,0.0015 +oxford_land,2010-08-08,precipitation,0 +oxford_land,2010-08-09,precipitation,0.0042 +oxford_land,2010-08-10,precipitation,0.0089 +oxford_land,2010-08-11,precipitation,0 +oxford_land,2010-08-12,precipitation,0.0013 +oxford_land,2010-08-13,precipitation,0.0058 +oxford_land,2010-08-14,precipitation,0.0038 +oxford_land,2010-08-15,precipitation,0 +oxford_land,2010-08-16,precipitation,0.0007 +oxford_land,2010-08-17,precipitation,0.0002 +oxford_land,2010-08-18,precipitation,0.0008 +oxford_land,2010-08-19,precipitation,0.0041 +oxford_land,2010-08-20,precipitation,0.0024 +oxford_land,2010-08-21,precipitation,0.0044 +oxford_land,2010-08-22,precipitation,0.0299 +oxford_land,2010-08-23,precipitation,0.0065 +oxford_land,2010-08-24,precipitation,0.0001 +oxford_land,2010-08-25,precipitation,0.0349 +oxford_land,2010-08-26,precipitation,0.0057 +oxford_land,2010-08-27,precipitation,0.0001 +oxford_land,2010-08-28,precipitation,0 +oxford_land,2010-08-29,precipitation,0.0011 +oxford_land,2010-08-30,precipitation,0 +oxford_land,2010-08-31,precipitation,0 +oxford_land,2010-09-01,precipitation,0 +oxford_land,2010-09-02,precipitation,0 +oxford_land,2010-09-03,precipitation,0 +oxford_land,2010-09-04,precipitation,0.0002 +oxford_land,2010-09-05,precipitation,0.0019 +oxford_land,2010-09-06,precipitation,0.0106 +oxford_land,2010-09-07,precipitation,0.0005 +oxford_land,2010-09-08,precipitation,0 +oxford_land,2010-09-09,precipitation,0.0004 +oxford_land,2010-09-10,precipitation,0.001 +oxford_land,2010-09-11,precipitation,0.0001 +oxford_land,2010-09-12,precipitation,0 +oxford_land,2010-09-13,precipitation,0.0006 +oxford_land,2010-09-14,precipitation,0.002 +oxford_land,2010-09-15,precipitation,0.0002 +oxford_land,2010-09-16,precipitation,0.0002 +oxford_land,2010-09-17,precipitation,0 +oxford_land,2010-09-18,precipitation,0.0001 +oxford_land,2010-09-19,precipitation,0.0001 +oxford_land,2010-09-20,precipitation,0 +oxford_land,2010-09-21,precipitation,0 +oxford_land,2010-09-22,precipitation,0.0053 +oxford_land,2010-09-23,precipitation,0.0032 +oxford_land,2010-09-24,precipitation,0.0001 +oxford_land,2010-09-25,precipitation,0 +oxford_land,2010-09-26,precipitation,0.0003 +oxford_land,2010-09-27,precipitation,0.0004 +oxford_land,2010-09-28,precipitation,0.0038 +oxford_land,2010-09-29,precipitation,0.0043 +oxford_land,2010-09-30,precipitation,0.0079 +oxford_land,2010-10-01,precipitation,0.0123 +oxford_land,2010-10-02,precipitation,0.0117 +oxford_land,2010-10-03,precipitation,0.0012 +oxford_land,2010-10-04,precipitation,0.0013 +oxford_land,2010-10-05,precipitation,0.0048 +oxford_land,2010-10-06,precipitation,0.0001 +oxford_land,2010-10-07,precipitation,0.0005 +oxford_land,2010-10-08,precipitation,0 +oxford_land,2010-10-09,precipitation,0 +oxford_land,2010-10-10,precipitation,0 +oxford_land,2010-10-11,precipitation,0 +oxford_land,2010-10-12,precipitation,0 +oxford_land,2010-10-13,precipitation,0 +oxford_land,2010-10-14,precipitation,0 +oxford_land,2010-10-15,precipitation,0.0007 +oxford_land,2010-10-16,precipitation,0.0001 +oxford_land,2010-10-17,precipitation,0 +oxford_land,2010-10-18,precipitation,0.001 +oxford_land,2010-10-19,precipitation,0.0031 +oxford_land,2010-10-20,precipitation,0 +oxford_land,2010-10-21,precipitation,0 +oxford_land,2010-10-22,precipitation,0.0052 +oxford_land,2010-10-23,precipitation,0.0018 +oxford_land,2010-10-24,precipitation,0.0001 +oxford_land,2010-10-25,precipitation,0.0007 +oxford_land,2010-10-26,precipitation,0.0054 +oxford_land,2010-10-27,precipitation,0.0007 +oxford_land,2010-10-28,precipitation,0.0002 +oxford_land,2010-10-29,precipitation,0.0002 +oxford_land,2010-10-30,precipitation,0.0006 +oxford_land,2010-10-31,precipitation,0.0002 +oxford_land,2010-11-01,precipitation,0.0003 +oxford_land,2010-11-02,precipitation,0.0004 +oxford_land,2010-11-03,precipitation,0.0004 +oxford_land,2010-11-04,precipitation,0.0003 +oxford_land,2010-11-05,precipitation,0.0115 +oxford_land,2010-11-06,precipitation,0.005 +oxford_land,2010-11-07,precipitation,0.0122 +oxford_land,2010-11-08,precipitation,0.0046 +oxford_land,2010-11-09,precipitation,0.0002 +oxford_land,2010-11-10,precipitation,0.0043 +oxford_land,2010-11-11,precipitation,0.0031 +oxford_land,2010-11-12,precipitation,0.0029 +oxford_land,2010-11-13,precipitation,0.001 +oxford_land,2010-11-14,precipitation,0.0004 +oxford_land,2010-11-15,precipitation,0.0002 +oxford_land,2010-11-16,precipitation,0.0012 +oxford_land,2010-11-17,precipitation,0.0044 +oxford_land,2010-11-18,precipitation,0.0005 +oxford_land,2010-11-19,precipitation,0.0009 +oxford_land,2010-11-20,precipitation,0.0003 +oxford_land,2010-11-21,precipitation,0.0001 +oxford_land,2010-11-22,precipitation,0 +oxford_land,2010-11-23,precipitation,0 +oxford_land,2010-11-24,precipitation,0 +oxford_land,2010-11-25,precipitation,0 +oxford_land,2010-11-26,precipitation,0 +oxford_land,2010-11-27,precipitation,0.0001 +oxford_land,2010-11-28,precipitation,0 +oxford_land,2010-11-29,precipitation,0.0009 +oxford_land,2010-11-30,precipitation,0.0008 +oxford_land,2010-12-01,precipitation,0.0002 +oxford_land,2010-12-02,precipitation,0 +oxford_land,2010-12-03,precipitation,0.0022 +oxford_land,2010-12-04,precipitation,0.0022 +oxford_land,2010-12-05,precipitation,0.0001 +oxford_land,2010-12-06,precipitation,0 +oxford_land,2010-12-07,precipitation,0 +oxford_land,2010-12-08,precipitation,0.0001 +oxford_land,2010-12-09,precipitation,0.0001 +oxford_land,2010-12-10,precipitation,0 +oxford_land,2010-12-11,precipitation,0 +oxford_land,2010-12-12,precipitation,0 +oxford_land,2010-12-13,precipitation,0 +oxford_land,2010-12-14,precipitation,0.0009 +oxford_land,2010-12-15,precipitation,0.0001 +oxford_land,2010-12-16,precipitation,0.0036 +oxford_land,2010-12-17,precipitation,0.0038 +oxford_land,2010-12-18,precipitation,0.0049 +oxford_land,2010-12-19,precipitation,0 +oxford_land,2010-12-20,precipitation,0.0009 +oxford_land,2010-12-21,precipitation,0.0005 +oxford_land,2010-12-22,precipitation,0.0001 +oxford_land,2010-12-23,precipitation,0 +oxford_land,2010-12-24,precipitation,0 +oxford_land,2010-12-25,precipitation,0 +oxford_land,2010-12-26,precipitation,0.0001 +oxford_land,2010-12-27,precipitation,0.0062 +oxford_land,2010-12-28,precipitation,0.0019 +oxford_land,2010-12-29,precipitation,0.0009 +oxford_land,2010-12-30,precipitation,0.0001 +oxford_land,2010-12-31,precipitation,0 +oxford_land,2011-01-01,precipitation,0.0009 +oxford_land,2011-01-02,precipitation,0 +oxford_land,2011-01-03,precipitation,0.0002 +oxford_land,2011-01-04,precipitation,0.0005 +oxford_land,2011-01-05,precipitation,0.0018 +oxford_land,2011-01-06,precipitation,0.0106 +oxford_land,2011-01-07,precipitation,0.005 +oxford_land,2011-01-08,precipitation,0 +oxford_land,2011-01-09,precipitation,0.0001 +oxford_land,2011-01-10,precipitation,0.0076 +oxford_land,2011-01-11,precipitation,0.0069 +oxford_land,2011-01-12,precipitation,0.0098 +oxford_land,2011-01-13,precipitation,0.0057 +oxford_land,2011-01-14,precipitation,0.0012 +oxford_land,2011-01-15,precipitation,0.0004 +oxford_land,2011-01-16,precipitation,0.0062 +oxford_land,2011-01-17,precipitation,0.0066 +oxford_land,2011-01-18,precipitation,0 +oxford_land,2011-01-19,precipitation,0.0001 +oxford_land,2011-01-20,precipitation,0 +oxford_land,2011-01-21,precipitation,0 +oxford_land,2011-01-22,precipitation,0.0001 +oxford_land,2011-01-23,precipitation,0 +oxford_land,2011-01-24,precipitation,0 +oxford_land,2011-01-25,precipitation,0.0017 +oxford_land,2011-01-26,precipitation,0.0003 +oxford_land,2011-01-27,precipitation,0 +oxford_land,2011-01-28,precipitation,0 +oxford_land,2011-01-29,precipitation,0 +oxford_land,2011-01-30,precipitation,0 +oxford_land,2011-01-31,precipitation,0 +oxford_land,2011-02-01,precipitation,0.0001 +oxford_land,2011-02-02,precipitation,0.001 +oxford_land,2011-02-03,precipitation,0.0003 +oxford_land,2011-02-04,precipitation,0.0005 +oxford_land,2011-02-05,precipitation,0.0002 +oxford_land,2011-02-06,precipitation,0 +oxford_land,2011-02-07,precipitation,0.0002 +oxford_land,2011-02-08,precipitation,0.0001 +oxford_land,2011-02-09,precipitation,0.0003 +oxford_land,2011-02-10,precipitation,0.005 +oxford_land,2011-02-11,precipitation,0.0008 +oxford_land,2011-02-12,precipitation,0.0014 +oxford_land,2011-02-13,precipitation,0.0109 +oxford_land,2011-02-14,precipitation,0.0011 +oxford_land,2011-02-15,precipitation,0.0046 +oxford_land,2011-02-16,precipitation,0.0001 +oxford_land,2011-02-17,precipitation,0 +oxford_land,2011-02-18,precipitation,0.0079 +oxford_land,2011-02-19,precipitation,0.0005 +oxford_land,2011-02-20,precipitation,0.0021 +oxford_land,2011-02-21,precipitation,0.002 +oxford_land,2011-02-22,precipitation,0.0026 +oxford_land,2011-02-23,precipitation,0.0006 +oxford_land,2011-02-24,precipitation,0 +oxford_land,2011-02-25,precipitation,0.0112 +oxford_land,2011-02-26,precipitation,0.0016 +oxford_land,2011-02-27,precipitation,0.004 +oxford_land,2011-02-28,precipitation,0.0001 +oxford_land,2011-03-01,precipitation,0 +oxford_land,2011-03-02,precipitation,0 +oxford_land,2011-03-03,precipitation,0 +oxford_land,2011-03-04,precipitation,0 +oxford_land,2011-03-05,precipitation,0.0002 +oxford_land,2011-03-06,precipitation,0 +oxford_land,2011-03-07,precipitation,0 +oxford_land,2011-03-08,precipitation,0.0008 +oxford_land,2011-03-09,precipitation,0.0005 +oxford_land,2011-03-10,precipitation,0 +oxford_land,2011-03-11,precipitation,0 +oxford_land,2011-03-12,precipitation,0.0013 +oxford_land,2011-03-13,precipitation,0 +oxford_land,2011-03-14,precipitation,0 +oxford_land,2011-03-15,precipitation,0 +oxford_land,2011-03-16,precipitation,0 +oxford_land,2011-03-17,precipitation,0.0004 +oxford_land,2011-03-18,precipitation,0.002 +oxford_land,2011-03-19,precipitation,0 +oxford_land,2011-03-20,precipitation,0 +oxford_land,2011-03-21,precipitation,0 +oxford_land,2011-03-22,precipitation,0 +oxford_land,2011-03-23,precipitation,0 +oxford_land,2011-03-24,precipitation,0 +oxford_land,2011-03-25,precipitation,0 +oxford_land,2011-03-26,precipitation,0 +oxford_land,2011-03-27,precipitation,0 +oxford_land,2011-03-28,precipitation,0 +oxford_land,2011-03-29,precipitation,0.0002 +oxford_land,2011-03-30,precipitation,0.0052 +oxford_land,2011-03-31,precipitation,0 +oxford_land,2011-04-01,precipitation,0.0001 +oxford_land,2011-04-02,precipitation,0 +oxford_land,2011-04-03,precipitation,0.0013 +oxford_land,2011-04-04,precipitation,0.0006 +oxford_land,2011-04-05,precipitation,0 +oxford_land,2011-04-06,precipitation,0 +oxford_land,2011-04-07,precipitation,0 +oxford_land,2011-04-08,precipitation,0 +oxford_land,2011-04-09,precipitation,0 +oxford_land,2011-04-10,precipitation,0 +oxford_land,2011-04-11,precipitation,0.0002 +oxford_land,2011-04-12,precipitation,0 +oxford_land,2011-04-13,precipitation,0.0007 +oxford_land,2011-04-14,precipitation,0 +oxford_land,2011-04-15,precipitation,0 +oxford_land,2011-04-16,precipitation,0 +oxford_land,2011-04-17,precipitation,0 +oxford_land,2011-04-18,precipitation,0 +oxford_land,2011-04-19,precipitation,0 +oxford_land,2011-04-20,precipitation,0 +oxford_land,2011-04-21,precipitation,0 +oxford_land,2011-04-22,precipitation,0 +oxford_land,2011-04-23,precipitation,0.0001 +oxford_land,2011-04-24,precipitation,0 +oxford_land,2011-04-25,precipitation,0 +oxford_land,2011-04-26,precipitation,0.0001 +oxford_land,2011-04-27,precipitation,0 +oxford_land,2011-04-28,precipitation,0.0001 +oxford_land,2011-04-29,precipitation,0.0007 +oxford_land,2011-04-30,precipitation,0.0001 +oxford_land,2011-05-01,precipitation,0 +oxford_land,2011-05-02,precipitation,0 +oxford_land,2011-05-03,precipitation,0 +oxford_land,2011-05-04,precipitation,0 +oxford_land,2011-05-05,precipitation,0 +oxford_land,2011-05-06,precipitation,0.0091 +oxford_land,2011-05-07,precipitation,0.0169 +oxford_land,2011-05-08,precipitation,0.0005 +oxford_land,2011-05-09,precipitation,0.0006 +oxford_land,2011-05-10,precipitation,0.0001 +oxford_land,2011-05-11,precipitation,0.0001 +oxford_land,2011-05-12,precipitation,0.0004 +oxford_land,2011-05-13,precipitation,0 +oxford_land,2011-05-14,precipitation,0.0002 +oxford_land,2011-05-15,precipitation,0 +oxford_land,2011-05-16,precipitation,0 +oxford_land,2011-05-17,precipitation,0.0003 +oxford_land,2011-05-18,precipitation,0.0002 +oxford_land,2011-05-19,precipitation,0 +oxford_land,2011-05-20,precipitation,0 +oxford_land,2011-05-21,precipitation,0.0016 +oxford_land,2011-05-22,precipitation,0.0004 +oxford_land,2011-05-23,precipitation,0.0005 +oxford_land,2011-05-24,precipitation,0 +oxford_land,2011-05-25,precipitation,0.0011 +oxford_land,2011-05-26,precipitation,0.0029 +oxford_land,2011-05-27,precipitation,0.0001 +oxford_land,2011-05-28,precipitation,0.0003 +oxford_land,2011-05-29,precipitation,0.0011 +oxford_land,2011-05-30,precipitation,0.005 +oxford_land,2011-05-31,precipitation,0 +oxford_land,2011-06-01,precipitation,0 +oxford_land,2011-06-02,precipitation,0 +oxford_land,2011-06-03,precipitation,0 +oxford_land,2011-06-04,precipitation,0.0006 +oxford_land,2011-06-05,precipitation,0.0014 +oxford_land,2011-06-06,precipitation,0.0003 +oxford_land,2011-06-07,precipitation,0.0021 +oxford_land,2011-06-08,precipitation,0.0006 +oxford_land,2011-06-09,precipitation,0.0001 +oxford_land,2011-06-10,precipitation,0.0037 +oxford_land,2011-06-11,precipitation,0.0039 +oxford_land,2011-06-12,precipitation,0.0173 +oxford_land,2011-06-13,precipitation,0 +oxford_land,2011-06-14,precipitation,0 +oxford_land,2011-06-15,precipitation,0.0016 +oxford_land,2011-06-16,precipitation,0.0009 +oxford_land,2011-06-17,precipitation,0.0039 +oxford_land,2011-06-18,precipitation,0.0033 +oxford_land,2011-06-19,precipitation,0 +oxford_land,2011-06-20,precipitation,0.005 +oxford_land,2011-06-21,precipitation,0.001 +oxford_land,2011-06-22,precipitation,0.0004 +oxford_land,2011-06-23,precipitation,0.0008 +oxford_land,2011-06-24,precipitation,0.0068 +oxford_land,2011-06-25,precipitation,0 +oxford_land,2011-06-26,precipitation,0 +oxford_land,2011-06-27,precipitation,0.0001 +oxford_land,2011-06-28,precipitation,0 +oxford_land,2011-06-29,precipitation,0 +oxford_land,2011-06-30,precipitation,0 +oxford_land,2011-07-01,precipitation,0 +oxford_land,2011-07-02,precipitation,0 +oxford_land,2011-07-03,precipitation,0 +oxford_land,2011-07-04,precipitation,0 +oxford_land,2011-07-05,precipitation,0.0026 +oxford_land,2011-07-06,precipitation,0.0041 +oxford_land,2011-07-07,precipitation,0.0034 +oxford_land,2011-07-08,precipitation,0.0116 +oxford_land,2011-07-09,precipitation,0.0008 +oxford_land,2011-07-10,precipitation,0 +oxford_land,2011-07-11,precipitation,0 +oxford_land,2011-07-12,precipitation,0 +oxford_land,2011-07-13,precipitation,0 +oxford_land,2011-07-14,precipitation,0 +oxford_land,2011-07-15,precipitation,0.0053 +oxford_land,2011-07-16,precipitation,0.0087 +oxford_land,2011-07-17,precipitation,0.0031 +oxford_land,2011-07-18,precipitation,0.0011 +oxford_land,2011-07-19,precipitation,0.0002 +oxford_land,2011-07-20,precipitation,0.0006 +oxford_land,2011-07-21,precipitation,0.0008 +oxford_land,2011-07-22,precipitation,0.0001 +oxford_land,2011-07-23,precipitation,0 +oxford_land,2011-07-24,precipitation,0 +oxford_land,2011-07-25,precipitation,0 +oxford_land,2011-07-26,precipitation,0 +oxford_land,2011-07-27,precipitation,0 +oxford_land,2011-07-28,precipitation,0.0002 +oxford_land,2011-07-29,precipitation,0 +oxford_land,2011-07-30,precipitation,0 +oxford_land,2011-07-31,precipitation,0.0002 +oxford_land,2011-08-01,precipitation,0 +oxford_land,2011-08-02,precipitation,0.001 +oxford_land,2011-08-03,precipitation,0.0043 +oxford_land,2011-08-04,precipitation,0.0051 +oxford_land,2011-08-05,precipitation,0 +oxford_land,2011-08-06,precipitation,0.0004 +oxford_land,2011-08-07,precipitation,0.0034 +oxford_land,2011-08-08,precipitation,0 +oxford_land,2011-08-09,precipitation,0 +oxford_land,2011-08-10,precipitation,0.0003 +oxford_land,2011-08-11,precipitation,0.0003 +oxford_land,2011-08-12,precipitation,0.002 +oxford_land,2011-08-13,precipitation,0 +oxford_land,2011-08-14,precipitation,0 +oxford_land,2011-08-15,precipitation,0.0007 +oxford_land,2011-08-16,precipitation,0.0003 +oxford_land,2011-08-17,precipitation,0.001 +oxford_land,2011-08-18,precipitation,0.0092 +oxford_land,2011-08-19,precipitation,0 +oxford_land,2011-08-20,precipitation,0.0004 +oxford_land,2011-08-21,precipitation,0 +oxford_land,2011-08-22,precipitation,0.0038 +oxford_land,2011-08-23,precipitation,0.0001 +oxford_land,2011-08-24,precipitation,0.0095 +oxford_land,2011-08-25,precipitation,0.0023 +oxford_land,2011-08-26,precipitation,0.0102 +oxford_land,2011-08-27,precipitation,0.0007 +oxford_land,2011-08-28,precipitation,0.0004 +oxford_land,2011-08-29,precipitation,0 +oxford_land,2011-08-30,precipitation,0 +oxford_land,2011-08-31,precipitation,0 +oxford_land,2011-09-01,precipitation,0 +oxford_land,2011-09-02,precipitation,0 +oxford_land,2011-09-03,precipitation,0.0018 +oxford_land,2011-09-04,precipitation,0.0029 +oxford_land,2011-09-05,precipitation,0.0035 +oxford_land,2011-09-06,precipitation,0.0022 +oxford_land,2011-09-07,precipitation,0.001 +oxford_land,2011-09-08,precipitation,0.0026 +oxford_land,2011-09-09,precipitation,0.0001 +oxford_land,2011-09-10,precipitation,0.0003 +oxford_land,2011-09-11,precipitation,0.0025 +oxford_land,2011-09-12,precipitation,0.0001 +oxford_land,2011-09-13,precipitation,0.002 +oxford_land,2011-09-14,precipitation,0 +oxford_land,2011-09-15,precipitation,0 +oxford_land,2011-09-16,precipitation,0.0008 +oxford_land,2011-09-17,precipitation,0.002 +oxford_land,2011-09-18,precipitation,0.0008 +oxford_land,2011-09-19,precipitation,0.0001 +oxford_land,2011-09-20,precipitation,0.0095 +oxford_land,2011-09-21,precipitation,0.0008 +oxford_land,2011-09-22,precipitation,0 +oxford_land,2011-09-23,precipitation,0 +oxford_land,2011-09-24,precipitation,0.0002 +oxford_land,2011-09-25,precipitation,0.0055 +oxford_land,2011-09-26,precipitation,0 +oxford_land,2011-09-27,precipitation,0.0001 +oxford_land,2011-09-28,precipitation,0 +oxford_land,2011-09-29,precipitation,0 +oxford_land,2011-09-30,precipitation,0 +oxford_land,2011-10-01,precipitation,0 +oxford_land,2011-10-02,precipitation,0 +oxford_land,2011-10-03,precipitation,0.0002 +oxford_land,2011-10-04,precipitation,0.0005 +oxford_land,2011-10-05,precipitation,0.0042 +oxford_land,2011-10-06,precipitation,0.0003 +oxford_land,2011-10-07,precipitation,0.0012 +oxford_land,2011-10-08,precipitation,0.0001 +oxford_land,2011-10-09,precipitation,0 +oxford_land,2011-10-10,precipitation,0 +oxford_land,2011-10-11,precipitation,0 +oxford_land,2011-10-12,precipitation,0 +oxford_land,2011-10-13,precipitation,0 +oxford_land,2011-10-14,precipitation,0 +oxford_land,2011-10-15,precipitation,0 +oxford_land,2011-10-16,precipitation,0 +oxford_land,2011-10-17,precipitation,0.0053 +oxford_land,2011-10-18,precipitation,0 +oxford_land,2011-10-19,precipitation,0.0009 +oxford_land,2011-10-20,precipitation,0 +oxford_land,2011-10-21,precipitation,0 +oxford_land,2011-10-22,precipitation,0 +oxford_land,2011-10-23,precipitation,0 +oxford_land,2011-10-24,precipitation,0.0023 +oxford_land,2011-10-25,precipitation,0.0047 +oxford_land,2011-10-26,precipitation,0.0085 +oxford_land,2011-10-27,precipitation,0.0056 +oxford_land,2011-10-28,precipitation,0 +oxford_land,2011-10-29,precipitation,0.0005 +oxford_land,2011-10-30,precipitation,0.0002 +oxford_land,2011-10-31,precipitation,0.0017 +oxford_land,2011-11-01,precipitation,0.0001 +oxford_land,2011-11-02,precipitation,0.0065 +oxford_land,2011-11-03,precipitation,0.004 +oxford_land,2011-11-04,precipitation,0.0041 +oxford_land,2011-11-05,precipitation,0 +oxford_land,2011-11-06,precipitation,0 +oxford_land,2011-11-07,precipitation,0.0007 +oxford_land,2011-11-08,precipitation,0.0009 +oxford_land,2011-11-09,precipitation,0.0008 +oxford_land,2011-11-10,precipitation,0.0002 +oxford_land,2011-11-11,precipitation,0.0057 +oxford_land,2011-11-12,precipitation,0 +oxford_land,2011-11-13,precipitation,0 +oxford_land,2011-11-14,precipitation,0.0001 +oxford_land,2011-11-15,precipitation,0 +oxford_land,2011-11-16,precipitation,0.0007 +oxford_land,2011-11-17,precipitation,0 +oxford_land,2011-11-18,precipitation,0 +oxford_land,2011-11-19,precipitation,0.0001 +oxford_land,2011-11-20,precipitation,0 +oxford_land,2011-11-21,precipitation,0.0037 +oxford_land,2011-11-22,precipitation,0.0001 +oxford_land,2011-11-23,precipitation,0.0001 +oxford_land,2011-11-24,precipitation,0.0006 +oxford_land,2011-11-25,precipitation,0.0001 +oxford_land,2011-11-26,precipitation,0.0004 +oxford_land,2011-11-27,precipitation,0 +oxford_land,2011-11-28,precipitation,0.0019 +oxford_land,2011-11-29,precipitation,0.0038 +oxford_land,2011-11-30,precipitation,0.0022 +oxford_land,2011-12-01,precipitation,0 +oxford_land,2011-12-02,precipitation,0.0012 +oxford_land,2011-12-03,precipitation,0 +oxford_land,2011-12-04,precipitation,0.0003 +oxford_land,2011-12-05,precipitation,0 +oxford_land,2011-12-06,precipitation,0.0012 +oxford_land,2011-12-07,precipitation,0 +oxford_land,2011-12-08,precipitation,0.0055 +oxford_land,2011-12-09,precipitation,0 +oxford_land,2011-12-10,precipitation,0.0002 +oxford_land,2011-12-11,precipitation,0.0066 +oxford_land,2011-12-12,precipitation,0.0188 +oxford_land,2011-12-13,precipitation,0.0107 +oxford_land,2011-12-14,precipitation,0.0091 +oxford_land,2011-12-15,precipitation,0.0072 +oxford_land,2011-12-16,precipitation,0.0026 +oxford_land,2011-12-17,precipitation,0.0005 +oxford_land,2011-12-18,precipitation,0.0005 +oxford_land,2011-12-19,precipitation,0.0042 +oxford_land,2011-12-20,precipitation,0.0045 +oxford_land,2011-12-21,precipitation,0.0001 +oxford_land,2011-12-22,precipitation,0 +oxford_land,2011-12-23,precipitation,0.0072 +oxford_land,2011-12-24,precipitation,0.0003 +oxford_land,2011-12-25,precipitation,0.0007 +oxford_land,2011-12-26,precipitation,0.0002 +oxford_land,2011-12-27,precipitation,0.0002 +oxford_land,2011-12-28,precipitation,0.0001 +oxford_land,2011-12-29,precipitation,0.0029 +oxford_land,2011-12-30,precipitation,0.0063 +oxford_land,2011-12-31,precipitation,0.0007 +oxford_land,2012-01-01,precipitation,0.0036 +oxford_land,2012-01-02,precipitation,0.0085 +oxford_land,2012-01-03,precipitation,0.0078 +oxford_land,2012-01-04,precipitation,0.0053 +oxford_land,2012-01-05,precipitation,0.0003 +oxford_land,2012-01-06,precipitation,0.0005 +oxford_land,2012-01-07,precipitation,0 +oxford_land,2012-01-08,precipitation,0 +oxford_land,2012-01-09,precipitation,0.0003 +oxford_land,2012-01-10,precipitation,0 +oxford_land,2012-01-11,precipitation,0 +oxford_land,2012-01-12,precipitation,0 +oxford_land,2012-01-13,precipitation,0.0001 +oxford_land,2012-01-14,precipitation,0 +oxford_land,2012-01-15,precipitation,0 +oxford_land,2012-01-16,precipitation,0 +oxford_land,2012-01-17,precipitation,0.0004 +oxford_land,2012-01-18,precipitation,0.0042 +oxford_land,2012-01-19,precipitation,0.0004 +oxford_land,2012-01-20,precipitation,0.0001 +oxford_land,2012-01-21,precipitation,0.0002 +oxford_land,2012-01-22,precipitation,0 +oxford_land,2012-01-23,precipitation,0.0087 +oxford_land,2012-01-24,precipitation,0.0017 +oxford_land,2012-01-25,precipitation,0.004 +oxford_land,2012-01-26,precipitation,0.0035 +oxford_land,2012-01-27,precipitation,0.0014 +oxford_land,2012-01-28,precipitation,0 +oxford_land,2012-01-29,precipitation,0.0002 +oxford_land,2012-01-30,precipitation,0 +oxford_land,2012-01-31,precipitation,0 +oxford_land,2012-02-01,precipitation,0 +oxford_land,2012-02-02,precipitation,0 +oxford_land,2012-02-03,precipitation,0 +oxford_land,2012-02-04,precipitation,0.0101 +oxford_land,2012-02-05,precipitation,0.0013 +oxford_land,2012-02-06,precipitation,0.0008 +oxford_land,2012-02-07,precipitation,0 +oxford_land,2012-02-08,precipitation,0 +oxford_land,2012-02-09,precipitation,0.0044 +oxford_land,2012-02-10,precipitation,0.0001 +oxford_land,2012-02-11,precipitation,0.0001 +oxford_land,2012-02-12,precipitation,0.0002 +oxford_land,2012-02-13,precipitation,0.0007 +oxford_land,2012-02-14,precipitation,0 +oxford_land,2012-02-15,precipitation,0 +oxford_land,2012-02-16,precipitation,0 +oxford_land,2012-02-17,precipitation,0.0001 +oxford_land,2012-02-18,precipitation,0.0027 +oxford_land,2012-02-19,precipitation,0 +oxford_land,2012-02-20,precipitation,0 +oxford_land,2012-02-21,precipitation,0.0002 +oxford_land,2012-02-22,precipitation,0.0009 +oxford_land,2012-02-23,precipitation,0 +oxford_land,2012-02-24,precipitation,0.0002 +oxford_land,2012-02-25,precipitation,0 +oxford_land,2012-02-26,precipitation,0.0001 +oxford_land,2012-02-27,precipitation,0.0009 +oxford_land,2012-02-28,precipitation,0 +oxford_land,2012-02-29,precipitation,0 +oxford_land,2012-03-01,precipitation,0 +oxford_land,2012-03-02,precipitation,0.0004 +oxford_land,2012-03-03,precipitation,0.0062 +oxford_land,2012-03-04,precipitation,0.0079 +oxford_land,2012-03-05,precipitation,0 +oxford_land,2012-03-06,precipitation,0.0012 +oxford_land,2012-03-07,precipitation,0.0017 +oxford_land,2012-03-08,precipitation,0 +oxford_land,2012-03-09,precipitation,0 +oxford_land,2012-03-10,precipitation,0 +oxford_land,2012-03-11,precipitation,0 +oxford_land,2012-03-12,precipitation,0.0002 +oxford_land,2012-03-13,precipitation,0 +oxford_land,2012-03-14,precipitation,0.0001 +oxford_land,2012-03-15,precipitation,0 +oxford_land,2012-03-16,precipitation,0.002 +oxford_land,2012-03-17,precipitation,0.0036 +oxford_land,2012-03-18,precipitation,0.001 +oxford_land,2012-03-19,precipitation,0 +oxford_land,2012-03-20,precipitation,0 +oxford_land,2012-03-21,precipitation,0 +oxford_land,2012-03-22,precipitation,0 +oxford_land,2012-03-23,precipitation,0 +oxford_land,2012-03-24,precipitation,0 +oxford_land,2012-03-25,precipitation,0 +oxford_land,2012-03-26,precipitation,0 +oxford_land,2012-03-27,precipitation,0 +oxford_land,2012-03-28,precipitation,0 +oxford_land,2012-03-29,precipitation,0 +oxford_land,2012-03-30,precipitation,0 +oxford_land,2012-03-31,precipitation,0 +oxford_land,2012-04-01,precipitation,0 +oxford_land,2012-04-02,precipitation,0 +oxford_land,2012-04-03,precipitation,0.0022 +oxford_land,2012-04-04,precipitation,0.0028 +oxford_land,2012-04-05,precipitation,0 +oxford_land,2012-04-06,precipitation,0.0003 +oxford_land,2012-04-07,precipitation,0.0006 +oxford_land,2012-04-08,precipitation,0.0021 +oxford_land,2012-04-09,precipitation,0.0096 +oxford_land,2012-04-10,precipitation,0.0014 +oxford_land,2012-04-11,precipitation,0.0009 +oxford_land,2012-04-12,precipitation,0.0013 +oxford_land,2012-04-13,precipitation,0.002 +oxford_land,2012-04-14,precipitation,0.0003 +oxford_land,2012-04-15,precipitation,0 +oxford_land,2012-04-16,precipitation,0.0047 +oxford_land,2012-04-17,precipitation,0.0038 +oxford_land,2012-04-18,precipitation,0.0098 +oxford_land,2012-04-19,precipitation,0.0029 +oxford_land,2012-04-20,precipitation,0.0018 +oxford_land,2012-04-21,precipitation,0.0021 +oxford_land,2012-04-22,precipitation,0.0028 +oxford_land,2012-04-23,precipitation,0.0044 +oxford_land,2012-04-24,precipitation,0.0074 +oxford_land,2012-04-25,precipitation,0.0099 +oxford_land,2012-04-26,precipitation,0.0064 +oxford_land,2012-04-27,precipitation,0.0091 +oxford_land,2012-04-28,precipitation,0.0177 +oxford_land,2012-04-29,precipitation,0.011 +oxford_land,2012-04-30,precipitation,0.015 +oxford_land,2012-05-01,precipitation,0.0014 +oxford_land,2012-05-02,precipitation,0.0073 +oxford_land,2012-05-03,precipitation,0.0008 +oxford_land,2012-05-04,precipitation,0.0006 +oxford_land,2012-05-05,precipitation,0 +oxford_land,2012-05-06,precipitation,0.0013 +oxford_land,2012-05-07,precipitation,0.0144 +oxford_land,2012-05-08,precipitation,0.0035 +oxford_land,2012-05-09,precipitation,0.0095 +oxford_land,2012-05-10,precipitation,0.002 +oxford_land,2012-05-11,precipitation,0 +oxford_land,2012-05-12,precipitation,0 +oxford_land,2012-05-13,precipitation,0.0011 +oxford_land,2012-05-14,precipitation,0.0026 +oxford_land,2012-05-15,precipitation,0.0017 +oxford_land,2012-05-16,precipitation,0 +oxford_land,2012-05-17,precipitation,0 +oxford_land,2012-05-18,precipitation,0.0021 +oxford_land,2012-05-19,precipitation,0 +oxford_land,2012-05-20,precipitation,0 +oxford_land,2012-05-21,precipitation,0 +oxford_land,2012-05-22,precipitation,0 +oxford_land,2012-05-23,precipitation,0 +oxford_land,2012-05-24,precipitation,0 +oxford_land,2012-05-25,precipitation,0 +oxford_land,2012-05-26,precipitation,0 +oxford_land,2012-05-27,precipitation,0 +oxford_land,2012-05-28,precipitation,0 +oxford_land,2012-05-29,precipitation,0 +oxford_land,2012-05-30,precipitation,0.0002 +oxford_land,2012-05-31,precipitation,0.0002 +oxford_land,2012-06-01,precipitation,0.0002 +oxford_land,2012-06-02,precipitation,0.0111 +oxford_land,2012-06-03,precipitation,0.0193 +oxford_land,2012-06-04,precipitation,0 +oxford_land,2012-06-05,precipitation,0.0052 +oxford_land,2012-06-06,precipitation,0.0037 +oxford_land,2012-06-07,precipitation,0.0168 +oxford_land,2012-06-08,precipitation,0.0021 +oxford_land,2012-06-09,precipitation,0 +oxford_land,2012-06-10,precipitation,0.0073 +oxford_land,2012-06-11,precipitation,0.0174 +oxford_land,2012-06-12,precipitation,0 +oxford_land,2012-06-13,precipitation,0.0001 +oxford_land,2012-06-14,precipitation,0.016 +oxford_land,2012-06-15,precipitation,0.0012 +oxford_land,2012-06-16,precipitation,0.0022 +oxford_land,2012-06-17,precipitation,0.0036 +oxford_land,2012-06-18,precipitation,0 +oxford_land,2012-06-19,precipitation,0 +oxford_land,2012-06-20,precipitation,0.0097 +oxford_land,2012-06-21,precipitation,0.0082 +oxford_land,2012-06-22,precipitation,0.0013 +oxford_land,2012-06-23,precipitation,0.0147 +oxford_land,2012-06-24,precipitation,0.0003 +oxford_land,2012-06-25,precipitation,0 +oxford_land,2012-06-26,precipitation,0.0018 +oxford_land,2012-06-27,precipitation,0.0008 +oxford_land,2012-06-28,precipitation,0.0018 +oxford_land,2012-06-29,precipitation,0.0034 +oxford_land,2012-06-30,precipitation,0.005 +oxford_land,2012-07-01,precipitation,0.0023 +oxford_land,2012-07-02,precipitation,0.005 +oxford_land,2012-07-03,precipitation,0.0082 +oxford_land,2012-07-04,precipitation,0.0029 +oxford_land,2012-07-05,precipitation,0.0012 +oxford_land,2012-07-06,precipitation,0.0133 +oxford_land,2012-07-07,precipitation,0.0063 +oxford_land,2012-07-08,precipitation,0.0017 +oxford_land,2012-07-09,precipitation,0.0006 +oxford_land,2012-07-10,precipitation,0.0024 +oxford_land,2012-07-11,precipitation,0.0064 +oxford_land,2012-07-12,precipitation,0.017 +oxford_land,2012-07-13,precipitation,0.0058 +oxford_land,2012-07-14,precipitation,0.0034 +oxford_land,2012-07-15,precipitation,0.0021 +oxford_land,2012-07-16,precipitation,0.002 +oxford_land,2012-07-17,precipitation,0.0016 +oxford_land,2012-07-18,precipitation,0.0032 +oxford_land,2012-07-19,precipitation,0 +oxford_land,2012-07-20,precipitation,0.0002 +oxford_land,2012-07-21,precipitation,0 +oxford_land,2012-07-22,precipitation,0 +oxford_land,2012-07-23,precipitation,0 +oxford_land,2012-07-24,precipitation,0 +oxford_land,2012-07-25,precipitation,0 +oxford_land,2012-07-26,precipitation,0 +oxford_land,2012-07-27,precipitation,0 +oxford_land,2012-07-28,precipitation,0.0001 +oxford_land,2012-07-29,precipitation,0.0023 +oxford_land,2012-07-30,precipitation,0.0055 +oxford_land,2012-07-31,precipitation,0.0014 +oxford_land,2012-08-01,precipitation,0.0012 +oxford_land,2012-08-02,precipitation,0.0108 +oxford_land,2012-08-03,precipitation,0.0011 +oxford_land,2012-08-04,precipitation,0.005 +oxford_land,2012-08-05,precipitation,0.0077 +oxford_land,2012-08-06,precipitation,0.003 +oxford_land,2012-08-07,precipitation,0.0025 +oxford_land,2012-08-08,precipitation,0 +oxford_land,2012-08-09,precipitation,0 +oxford_land,2012-08-10,precipitation,0 +oxford_land,2012-08-11,precipitation,0.0001 +oxford_land,2012-08-12,precipitation,0.0024 +oxford_land,2012-08-13,precipitation,0.0028 +oxford_land,2012-08-14,precipitation,0.0001 +oxford_land,2012-08-15,precipitation,0.0158 +oxford_land,2012-08-16,precipitation,0.0029 +oxford_land,2012-08-17,precipitation,0.0027 +oxford_land,2012-08-18,precipitation,0 +oxford_land,2012-08-19,precipitation,0.0004 +oxford_land,2012-08-20,precipitation,0 +oxford_land,2012-08-21,precipitation,0.0019 +oxford_land,2012-08-22,precipitation,0.0002 +oxford_land,2012-08-23,precipitation,0 +oxford_land,2012-08-24,precipitation,0.0047 +oxford_land,2012-08-25,precipitation,0.0087 +oxford_land,2012-08-26,precipitation,0 +oxford_land,2012-08-27,precipitation,0.011 +oxford_land,2012-08-28,precipitation,0.0032 +oxford_land,2012-08-29,precipitation,0.014 +oxford_land,2012-08-30,precipitation,0.0016 +oxford_land,2012-08-31,precipitation,0 +oxford_land,2012-09-01,precipitation,0.0001 +oxford_land,2012-09-02,precipitation,0.0001 +oxford_land,2012-09-03,precipitation,0 +oxford_land,2012-09-04,precipitation,0 +oxford_land,2012-09-05,precipitation,0 +oxford_land,2012-09-06,precipitation,0 +oxford_land,2012-09-07,precipitation,0 +oxford_land,2012-09-08,precipitation,0 +oxford_land,2012-09-09,precipitation,0.001 +oxford_land,2012-09-10,precipitation,0.0017 +oxford_land,2012-09-11,precipitation,0 +oxford_land,2012-09-12,precipitation,0.002 +oxford_land,2012-09-13,precipitation,0 +oxford_land,2012-09-14,precipitation,0 +oxford_land,2012-09-15,precipitation,0.0002 +oxford_land,2012-09-16,precipitation,0.0002 +oxford_land,2012-09-17,precipitation,0.0001 +oxford_land,2012-09-18,precipitation,0 +oxford_land,2012-09-19,precipitation,0 +oxford_land,2012-09-20,precipitation,0 +oxford_land,2012-09-21,precipitation,0.0012 +oxford_land,2012-09-22,precipitation,0 +oxford_land,2012-09-23,precipitation,0.0356 +oxford_land,2012-09-24,precipitation,0.0075 +oxford_land,2012-09-25,precipitation,0.0028 +oxford_land,2012-09-26,precipitation,0.0114 +oxford_land,2012-09-27,precipitation,0.0006 +oxford_land,2012-09-28,precipitation,0.0001 +oxford_land,2012-09-29,precipitation,0 +oxford_land,2012-09-30,precipitation,0.0016 +oxford_land,2012-10-01,precipitation,0.0008 +oxford_land,2012-10-02,precipitation,0.005 +oxford_land,2012-10-03,precipitation,0.0034 +oxford_land,2012-10-04,precipitation,0.0138 +oxford_land,2012-10-05,precipitation,0.0152 +oxford_land,2012-10-06,precipitation,0 +oxford_land,2012-10-07,precipitation,0.001 +oxford_land,2012-10-08,precipitation,0.0013 +oxford_land,2012-10-09,precipitation,0 +oxford_land,2012-10-10,precipitation,0.0002 +oxford_land,2012-10-11,precipitation,0.0091 +oxford_land,2012-10-12,precipitation,0.0004 +oxford_land,2012-10-13,precipitation,0.0012 +oxford_land,2012-10-14,precipitation,0.0003 +oxford_land,2012-10-15,precipitation,0.0038 +oxford_land,2012-10-16,precipitation,0.0091 +oxford_land,2012-10-17,precipitation,0.0092 +oxford_land,2012-10-18,precipitation,0.0003 +oxford_land,2012-10-19,precipitation,0.001 +oxford_land,2012-10-20,precipitation,0.0001 +oxford_land,2012-10-21,precipitation,0.0022 +oxford_land,2012-10-22,precipitation,0.0006 +oxford_land,2012-10-23,precipitation,0.0001 +oxford_land,2012-10-24,precipitation,0.0002 +oxford_land,2012-10-25,precipitation,0.0002 +oxford_land,2012-10-26,precipitation,0 +oxford_land,2012-10-27,precipitation,0.0006 +oxford_land,2012-10-28,precipitation,0.0031 +oxford_land,2012-10-29,precipitation,0.0021 +oxford_land,2012-10-30,precipitation,0 +oxford_land,2012-10-31,precipitation,0.014 +oxford_land,2012-11-01,precipitation,0.0031 +oxford_land,2012-11-02,precipitation,0.0011 +oxford_land,2012-11-03,precipitation,0.0132 +oxford_land,2012-11-04,precipitation,0.011 +oxford_land,2012-11-05,precipitation,0 +oxford_land,2012-11-06,precipitation,0.0003 +oxford_land,2012-11-07,precipitation,0.0001 +oxford_land,2012-11-08,precipitation,0 +oxford_land,2012-11-09,precipitation,0.0021 +oxford_land,2012-11-10,precipitation,0.0001 +oxford_land,2012-11-11,precipitation,0.0003 +oxford_land,2012-11-12,precipitation,0.0034 +oxford_land,2012-11-13,precipitation,0.0001 +oxford_land,2012-11-14,precipitation,0.0001 +oxford_land,2012-11-15,precipitation,0 +oxford_land,2012-11-16,precipitation,0.0017 +oxford_land,2012-11-17,precipitation,0 +oxford_land,2012-11-18,precipitation,0 +oxford_land,2012-11-19,precipitation,0.0048 +oxford_land,2012-11-20,precipitation,0.0204 +oxford_land,2012-11-21,precipitation,0.0175 +oxford_land,2012-11-22,precipitation,0.0174 +oxford_land,2012-11-23,precipitation,0.0002 +oxford_land,2012-11-24,precipitation,0.0279 +oxford_land,2012-11-25,precipitation,0.0044 +oxford_land,2012-11-26,precipitation,0.0023 +oxford_land,2012-11-27,precipitation,0.0003 +oxford_land,2012-11-28,precipitation,0 +oxford_land,2012-11-29,precipitation,0 +oxford_land,2012-11-30,precipitation,0 +oxford_land,2012-12-01,precipitation,0 +oxford_land,2012-12-02,precipitation,0.0084 +oxford_land,2012-12-03,precipitation,0.0004 +oxford_land,2012-12-04,precipitation,0.0007 +oxford_land,2012-12-05,precipitation,0 +oxford_land,2012-12-06,precipitation,0.0058 +oxford_land,2012-12-07,precipitation,0.0001 +oxford_land,2012-12-08,precipitation,0 +oxford_land,2012-12-09,precipitation,0.0001 +oxford_land,2012-12-10,precipitation,0 +oxford_land,2012-12-11,precipitation,0.0001 +oxford_land,2012-12-12,precipitation,0 +oxford_land,2012-12-13,precipitation,0.0007 +oxford_land,2012-12-14,precipitation,0.016 +oxford_land,2012-12-15,precipitation,0.0019 +oxford_land,2012-12-16,precipitation,0.0055 +oxford_land,2012-12-17,precipitation,0.0003 +oxford_land,2012-12-18,precipitation,0.0001 +oxford_land,2012-12-19,precipitation,0.021 +oxford_land,2012-12-20,precipitation,0.0041 +oxford_land,2012-12-21,precipitation,0.011 +oxford_land,2012-12-22,precipitation,0.0124 +oxford_land,2012-12-23,precipitation,0.0099 +oxford_land,2012-12-24,precipitation,0.006 +oxford_land,2012-12-25,precipitation,0.0008 +oxford_land,2012-12-26,precipitation,0.0061 +oxford_land,2012-12-27,precipitation,0.0065 +oxford_land,2012-12-28,precipitation,0.0017 +oxford_land,2012-12-29,precipitation,0.014 +oxford_land,2012-12-30,precipitation,0.0012 +oxford_land,2012-12-31,precipitation,0.0054 +oxford_land,2013-01-01,precipitation,0.0001 +oxford_land,2013-01-02,precipitation,0.0001 +oxford_land,2013-01-03,precipitation,0 +oxford_land,2013-01-04,precipitation,0 +oxford_land,2013-01-05,precipitation,0 +oxford_land,2013-01-06,precipitation,0.0002 +oxford_land,2013-01-07,precipitation,0 +oxford_land,2013-01-08,precipitation,0.0028 +oxford_land,2013-01-09,precipitation,0.0002 +oxford_land,2013-01-10,precipitation,0.0006 +oxford_land,2013-01-11,precipitation,0.0038 +oxford_land,2013-01-12,precipitation,0.0001 +oxford_land,2013-01-13,precipitation,0.0007 +oxford_land,2013-01-14,precipitation,0.0053 +oxford_land,2013-01-15,precipitation,0 +oxford_land,2013-01-16,precipitation,0 +oxford_land,2013-01-17,precipitation,0.0033 +oxford_land,2013-01-18,precipitation,0.006 +oxford_land,2013-01-19,precipitation,0.0001 +oxford_land,2013-01-20,precipitation,0.0013 +oxford_land,2013-01-21,precipitation,0.001 +oxford_land,2013-01-22,precipitation,0.0038 +oxford_land,2013-01-23,precipitation,0.0012 +oxford_land,2013-01-24,precipitation,0 +oxford_land,2013-01-25,precipitation,0.0087 +oxford_land,2013-01-26,precipitation,0.0141 +oxford_land,2013-01-27,precipitation,0.0036 +oxford_land,2013-01-28,precipitation,0.0034 +oxford_land,2013-01-29,precipitation,0.0098 +oxford_land,2013-01-30,precipitation,0.0026 +oxford_land,2013-01-31,precipitation,0.0048 +oxford_land,2013-02-01,precipitation,0.0003 +oxford_land,2013-02-02,precipitation,0 +oxford_land,2013-02-03,precipitation,0 +oxford_land,2013-02-04,precipitation,0.0018 +oxford_land,2013-02-05,precipitation,0.0022 +oxford_land,2013-02-06,precipitation,0 +oxford_land,2013-02-07,precipitation,0.0008 +oxford_land,2013-02-08,precipitation,0.0028 +oxford_land,2013-02-09,precipitation,0.007 +oxford_land,2013-02-10,precipitation,0.0162 +oxford_land,2013-02-11,precipitation,0.0003 +oxford_land,2013-02-12,precipitation,0 +oxford_land,2013-02-13,precipitation,0.0091 +oxford_land,2013-02-14,precipitation,0.0001 +oxford_land,2013-02-15,precipitation,0 +oxford_land,2013-02-16,precipitation,0.0001 +oxford_land,2013-02-17,precipitation,0 +oxford_land,2013-02-18,precipitation,0 +oxford_land,2013-02-19,precipitation,0 +oxford_land,2013-02-20,precipitation,0 +oxford_land,2013-02-21,precipitation,0 +oxford_land,2013-02-22,precipitation,0 +oxford_land,2013-02-23,precipitation,0 +oxford_land,2013-02-24,precipitation,0 +oxford_land,2013-02-25,precipitation,0.0001 +oxford_land,2009-03-03,et0,0.002 +oxford_land,2009-03-04,et0,0.002 +oxford_land,2009-03-05,et0,0.002 +oxford_land,2009-03-06,et0,0.002 +oxford_land,2009-03-07,et0,0.002 +oxford_land,2009-03-08,et0,0.002 +oxford_land,2009-03-09,et0,0.002 +oxford_land,2009-03-10,et0,0.002 +oxford_land,2009-03-11,et0,0.002 +oxford_land,2009-03-12,et0,0.002 +oxford_land,2009-03-13,et0,0.002 +oxford_land,2009-03-14,et0,0.002 +oxford_land,2009-03-15,et0,0.002 +oxford_land,2009-03-16,et0,0.002 +oxford_land,2009-03-17,et0,0.002 +oxford_land,2009-03-18,et0,0.002 +oxford_land,2009-03-19,et0,0.002 +oxford_land,2009-03-20,et0,0.002 +oxford_land,2009-03-21,et0,0.002 +oxford_land,2009-03-22,et0,0.002 +oxford_land,2009-03-23,et0,0.002 +oxford_land,2009-03-24,et0,0.002 +oxford_land,2009-03-25,et0,0.002 +oxford_land,2009-03-26,et0,0.002 +oxford_land,2009-03-27,et0,0.002 +oxford_land,2009-03-28,et0,0.002 +oxford_land,2009-03-29,et0,0.002 +oxford_land,2009-03-30,et0,0.002 +oxford_land,2009-03-31,et0,0.002 +oxford_land,2009-04-01,et0,0.002 +oxford_land,2009-04-02,et0,0.002 +oxford_land,2009-04-03,et0,0.002 +oxford_land,2009-04-04,et0,0.002 +oxford_land,2009-04-05,et0,0.002 +oxford_land,2009-04-06,et0,0.002 +oxford_land,2009-04-07,et0,0.002 +oxford_land,2009-04-08,et0,0.002 +oxford_land,2009-04-09,et0,0.002 +oxford_land,2009-04-10,et0,0.002 +oxford_land,2009-04-11,et0,0.002 +oxford_land,2009-04-12,et0,0.002 +oxford_land,2009-04-13,et0,0.002 +oxford_land,2009-04-14,et0,0.002 +oxford_land,2009-04-15,et0,0.002 +oxford_land,2009-04-16,et0,0.002 +oxford_land,2009-04-17,et0,0.002 +oxford_land,2009-04-18,et0,0.002 +oxford_land,2009-04-19,et0,0.002 +oxford_land,2009-04-20,et0,0.002 +oxford_land,2009-04-21,et0,0.002 +oxford_land,2009-04-22,et0,0.002 +oxford_land,2009-04-23,et0,0.002 +oxford_land,2009-04-24,et0,0.002 +oxford_land,2009-04-25,et0,0.002 +oxford_land,2009-04-26,et0,0.002 +oxford_land,2009-04-27,et0,0.002 +oxford_land,2009-04-28,et0,0.002 +oxford_land,2009-04-29,et0,0.002 +oxford_land,2009-04-30,et0,0.002 +oxford_land,2009-05-01,et0,0.002 +oxford_land,2009-05-02,et0,0.002 +oxford_land,2009-05-03,et0,0.002 +oxford_land,2009-05-04,et0,0.002 +oxford_land,2009-05-05,et0,0.002 +oxford_land,2009-05-06,et0,0.002 +oxford_land,2009-05-07,et0,0.002 +oxford_land,2009-05-08,et0,0.002 +oxford_land,2009-05-09,et0,0.002 +oxford_land,2009-05-10,et0,0.002 +oxford_land,2009-05-11,et0,0.002 +oxford_land,2009-05-12,et0,0.002 +oxford_land,2009-05-13,et0,0.002 +oxford_land,2009-05-14,et0,0.002 +oxford_land,2009-05-15,et0,0.002 +oxford_land,2009-05-16,et0,0.002 +oxford_land,2009-05-17,et0,0.002 +oxford_land,2009-05-18,et0,0.002 +oxford_land,2009-05-19,et0,0.002 +oxford_land,2009-05-20,et0,0.002 +oxford_land,2009-05-21,et0,0.002 +oxford_land,2009-05-22,et0,0.002 +oxford_land,2009-05-23,et0,0.002 +oxford_land,2009-05-24,et0,0.002 +oxford_land,2009-05-25,et0,0.002 +oxford_land,2009-05-26,et0,0.002 +oxford_land,2009-05-27,et0,0.002 +oxford_land,2009-05-28,et0,0.002 +oxford_land,2009-05-29,et0,0.002 +oxford_land,2009-05-30,et0,0.002 +oxford_land,2009-05-31,et0,0.002 +oxford_land,2009-06-01,et0,0.002 +oxford_land,2009-06-02,et0,0.002 +oxford_land,2009-06-03,et0,0.002 +oxford_land,2009-06-04,et0,0.002 +oxford_land,2009-06-05,et0,0.002 +oxford_land,2009-06-06,et0,0.002 +oxford_land,2009-06-07,et0,0.002 +oxford_land,2009-06-08,et0,0.002 +oxford_land,2009-06-09,et0,0.002 +oxford_land,2009-06-10,et0,0.002 +oxford_land,2009-06-11,et0,0.002 +oxford_land,2009-06-12,et0,0.002 +oxford_land,2009-06-13,et0,0.002 +oxford_land,2009-06-14,et0,0.002 +oxford_land,2009-06-15,et0,0.002 +oxford_land,2009-06-16,et0,0.002 +oxford_land,2009-06-17,et0,0.002 +oxford_land,2009-06-18,et0,0.002 +oxford_land,2009-06-19,et0,0.002 +oxford_land,2009-06-20,et0,0.002 +oxford_land,2009-06-21,et0,0.002 +oxford_land,2009-06-22,et0,0.002 +oxford_land,2009-06-23,et0,0.002 +oxford_land,2009-06-24,et0,0.002 +oxford_land,2009-06-25,et0,0.002 +oxford_land,2009-06-26,et0,0.002 +oxford_land,2009-06-27,et0,0.002 +oxford_land,2009-06-28,et0,0.002 +oxford_land,2009-06-29,et0,0.002 +oxford_land,2009-06-30,et0,0.002 +oxford_land,2009-07-01,et0,0.002 +oxford_land,2009-07-02,et0,0.002 +oxford_land,2009-07-03,et0,0.002 +oxford_land,2009-07-04,et0,0.002 +oxford_land,2009-07-05,et0,0.002 +oxford_land,2009-07-06,et0,0.002 +oxford_land,2009-07-07,et0,0.002 +oxford_land,2009-07-08,et0,0.002 +oxford_land,2009-07-09,et0,0.002 +oxford_land,2009-07-10,et0,0.002 +oxford_land,2009-07-11,et0,0.002 +oxford_land,2009-07-12,et0,0.002 +oxford_land,2009-07-13,et0,0.002 +oxford_land,2009-07-14,et0,0.002 +oxford_land,2009-07-15,et0,0.002 +oxford_land,2009-07-16,et0,0.002 +oxford_land,2009-07-17,et0,0.002 +oxford_land,2009-07-18,et0,0.002 +oxford_land,2009-07-19,et0,0.002 +oxford_land,2009-07-20,et0,0.002 +oxford_land,2009-07-21,et0,0.002 +oxford_land,2009-07-22,et0,0.002 +oxford_land,2009-07-23,et0,0.002 +oxford_land,2009-07-24,et0,0.002 +oxford_land,2009-07-25,et0,0.002 +oxford_land,2009-07-26,et0,0.002 +oxford_land,2009-07-27,et0,0.002 +oxford_land,2009-07-28,et0,0.002 +oxford_land,2009-07-29,et0,0.002 +oxford_land,2009-07-30,et0,0.002 +oxford_land,2009-07-31,et0,0.002 +oxford_land,2009-08-01,et0,0.002 +oxford_land,2009-08-02,et0,0.002 +oxford_land,2009-08-03,et0,0.002 +oxford_land,2009-08-04,et0,0.002 +oxford_land,2009-08-05,et0,0.002 +oxford_land,2009-08-06,et0,0.002 +oxford_land,2009-08-07,et0,0.002 +oxford_land,2009-08-08,et0,0.002 +oxford_land,2009-08-09,et0,0.002 +oxford_land,2009-08-10,et0,0.002 +oxford_land,2009-08-11,et0,0.002 +oxford_land,2009-08-12,et0,0.002 +oxford_land,2009-08-13,et0,0.002 +oxford_land,2009-08-14,et0,0.002 +oxford_land,2009-08-15,et0,0.002 +oxford_land,2009-08-16,et0,0.002 +oxford_land,2009-08-17,et0,0.002 +oxford_land,2009-08-18,et0,0.002 +oxford_land,2009-08-19,et0,0.002 +oxford_land,2009-08-20,et0,0.002 +oxford_land,2009-08-21,et0,0.002 +oxford_land,2009-08-22,et0,0.002 +oxford_land,2009-08-23,et0,0.002 +oxford_land,2009-08-24,et0,0.002 +oxford_land,2009-08-25,et0,0.002 +oxford_land,2009-08-26,et0,0.002 +oxford_land,2009-08-27,et0,0.002 +oxford_land,2009-08-28,et0,0.002 +oxford_land,2009-08-29,et0,0.002 +oxford_land,2009-08-30,et0,0.002 +oxford_land,2009-08-31,et0,0.002 +oxford_land,2009-09-01,et0,0.002 +oxford_land,2009-09-02,et0,0.002 +oxford_land,2009-09-03,et0,0.002 +oxford_land,2009-09-04,et0,0.002 +oxford_land,2009-09-05,et0,0.002 +oxford_land,2009-09-06,et0,0.002 +oxford_land,2009-09-07,et0,0.002 +oxford_land,2009-09-08,et0,0.002 +oxford_land,2009-09-09,et0,0.002 +oxford_land,2009-09-10,et0,0.002 +oxford_land,2009-09-11,et0,0.002 +oxford_land,2009-09-12,et0,0.002 +oxford_land,2009-09-13,et0,0.002 +oxford_land,2009-09-14,et0,0.002 +oxford_land,2009-09-15,et0,0.002 +oxford_land,2009-09-16,et0,0.002 +oxford_land,2009-09-17,et0,0.002 +oxford_land,2009-09-18,et0,0.002 +oxford_land,2009-09-19,et0,0.002 +oxford_land,2009-09-20,et0,0.002 +oxford_land,2009-09-21,et0,0.002 +oxford_land,2009-09-22,et0,0.002 +oxford_land,2009-09-23,et0,0.002 +oxford_land,2009-09-24,et0,0.002 +oxford_land,2009-09-25,et0,0.002 +oxford_land,2009-09-26,et0,0.002 +oxford_land,2009-09-27,et0,0.002 +oxford_land,2009-09-28,et0,0.002 +oxford_land,2009-09-29,et0,0.002 +oxford_land,2009-09-30,et0,0.002 +oxford_land,2009-10-01,et0,0.002 +oxford_land,2009-10-02,et0,0.002 +oxford_land,2009-10-03,et0,0.002 +oxford_land,2009-10-04,et0,0.002 +oxford_land,2009-10-05,et0,0.002 +oxford_land,2009-10-06,et0,0.002 +oxford_land,2009-10-07,et0,0.002 +oxford_land,2009-10-08,et0,0.002 +oxford_land,2009-10-09,et0,0.002 +oxford_land,2009-10-10,et0,0.002 +oxford_land,2009-10-11,et0,0.002 +oxford_land,2009-10-12,et0,0.002 +oxford_land,2009-10-13,et0,0.002 +oxford_land,2009-10-14,et0,0.002 +oxford_land,2009-10-15,et0,0.002 +oxford_land,2009-10-16,et0,0.002 +oxford_land,2009-10-17,et0,0.002 +oxford_land,2009-10-18,et0,0.002 +oxford_land,2009-10-19,et0,0.002 +oxford_land,2009-10-20,et0,0.002 +oxford_land,2009-10-21,et0,0.002 +oxford_land,2009-10-22,et0,0.002 +oxford_land,2009-10-23,et0,0.002 +oxford_land,2009-10-24,et0,0.002 +oxford_land,2009-10-25,et0,0.002 +oxford_land,2009-10-26,et0,0.002 +oxford_land,2009-10-27,et0,0.002 +oxford_land,2009-10-28,et0,0.002 +oxford_land,2009-10-29,et0,0.002 +oxford_land,2009-10-30,et0,0.002 +oxford_land,2009-10-31,et0,0.002 +oxford_land,2009-11-01,et0,0.002 +oxford_land,2009-11-02,et0,0.002 +oxford_land,2009-11-03,et0,0.002 +oxford_land,2009-11-04,et0,0.002 +oxford_land,2009-11-05,et0,0.002 +oxford_land,2009-11-06,et0,0.002 +oxford_land,2009-11-07,et0,0.002 +oxford_land,2009-11-08,et0,0.002 +oxford_land,2009-11-09,et0,0.002 +oxford_land,2009-11-10,et0,0.002 +oxford_land,2009-11-11,et0,0.002 +oxford_land,2009-11-12,et0,0.002 +oxford_land,2009-11-13,et0,0.002 +oxford_land,2009-11-14,et0,0.002 +oxford_land,2009-11-15,et0,0.002 +oxford_land,2009-11-16,et0,0.002 +oxford_land,2009-11-17,et0,0.002 +oxford_land,2009-11-18,et0,0.002 +oxford_land,2009-11-19,et0,0.002 +oxford_land,2009-11-20,et0,0.002 +oxford_land,2009-11-21,et0,0.002 +oxford_land,2009-11-22,et0,0.002 +oxford_land,2009-11-23,et0,0.002 +oxford_land,2009-11-24,et0,0.002 +oxford_land,2009-11-25,et0,0.002 +oxford_land,2009-11-26,et0,0.002 +oxford_land,2009-11-27,et0,0.002 +oxford_land,2009-11-28,et0,0.002 +oxford_land,2009-11-29,et0,0.002 +oxford_land,2009-11-30,et0,0.002 +oxford_land,2009-12-01,et0,0.002 +oxford_land,2009-12-02,et0,0.002 +oxford_land,2009-12-03,et0,0.002 +oxford_land,2009-12-04,et0,0.002 +oxford_land,2009-12-05,et0,0.002 +oxford_land,2009-12-06,et0,0.002 +oxford_land,2009-12-07,et0,0.002 +oxford_land,2009-12-08,et0,0.002 +oxford_land,2009-12-09,et0,0.002 +oxford_land,2009-12-10,et0,0.002 +oxford_land,2009-12-11,et0,0.002 +oxford_land,2009-12-12,et0,0.002 +oxford_land,2009-12-13,et0,0.002 +oxford_land,2009-12-14,et0,0.002 +oxford_land,2009-12-15,et0,0.002 +oxford_land,2009-12-16,et0,0.002 +oxford_land,2009-12-17,et0,0.002 +oxford_land,2009-12-18,et0,0.002 +oxford_land,2009-12-19,et0,0.002 +oxford_land,2009-12-20,et0,0.002 +oxford_land,2009-12-21,et0,0.002 +oxford_land,2009-12-22,et0,0.002 +oxford_land,2009-12-23,et0,0.002 +oxford_land,2009-12-24,et0,0.002 +oxford_land,2009-12-25,et0,0.002 +oxford_land,2009-12-26,et0,0.002 +oxford_land,2009-12-27,et0,0.002 +oxford_land,2009-12-28,et0,0.002 +oxford_land,2009-12-29,et0,0.002 +oxford_land,2009-12-30,et0,0.002 +oxford_land,2009-12-31,et0,0.002 +oxford_land,2010-01-01,et0,0.002 +oxford_land,2010-01-02,et0,0.002 +oxford_land,2010-01-03,et0,0.002 +oxford_land,2010-01-04,et0,0.002 +oxford_land,2010-01-05,et0,0.002 +oxford_land,2010-01-06,et0,0.002 +oxford_land,2010-01-07,et0,0.002 +oxford_land,2010-01-08,et0,0.002 +oxford_land,2010-01-09,et0,0.002 +oxford_land,2010-01-10,et0,0.002 +oxford_land,2010-01-11,et0,0.002 +oxford_land,2010-01-12,et0,0.002 +oxford_land,2010-01-13,et0,0.002 +oxford_land,2010-01-14,et0,0.002 +oxford_land,2010-01-15,et0,0.002 +oxford_land,2010-01-16,et0,0.002 +oxford_land,2010-01-17,et0,0.002 +oxford_land,2010-01-18,et0,0.002 +oxford_land,2010-01-19,et0,0.002 +oxford_land,2010-01-20,et0,0.002 +oxford_land,2010-01-21,et0,0.002 +oxford_land,2010-01-22,et0,0.002 +oxford_land,2010-01-23,et0,0.002 +oxford_land,2010-01-24,et0,0.002 +oxford_land,2010-01-25,et0,0.002 +oxford_land,2010-01-26,et0,0.002 +oxford_land,2010-01-27,et0,0.002 +oxford_land,2010-01-28,et0,0.002 +oxford_land,2010-01-29,et0,0.002 +oxford_land,2010-01-30,et0,0.002 +oxford_land,2010-01-31,et0,0.002 +oxford_land,2010-02-01,et0,0.002 +oxford_land,2010-02-02,et0,0.002 +oxford_land,2010-02-03,et0,0.002 +oxford_land,2010-02-04,et0,0.002 +oxford_land,2010-02-05,et0,0.002 +oxford_land,2010-02-06,et0,0.002 +oxford_land,2010-02-07,et0,0.002 +oxford_land,2010-02-08,et0,0.002 +oxford_land,2010-02-09,et0,0.002 +oxford_land,2010-02-10,et0,0.002 +oxford_land,2010-02-11,et0,0.002 +oxford_land,2010-02-12,et0,0.002 +oxford_land,2010-02-13,et0,0.002 +oxford_land,2010-02-14,et0,0.002 +oxford_land,2010-02-15,et0,0.002 +oxford_land,2010-02-16,et0,0.002 +oxford_land,2010-02-17,et0,0.002 +oxford_land,2010-02-18,et0,0.002 +oxford_land,2010-02-19,et0,0.002 +oxford_land,2010-02-20,et0,0.002 +oxford_land,2010-02-21,et0,0.002 +oxford_land,2010-02-22,et0,0.002 +oxford_land,2010-02-23,et0,0.002 +oxford_land,2010-02-24,et0,0.002 +oxford_land,2010-02-25,et0,0.002 +oxford_land,2010-02-26,et0,0.002 +oxford_land,2010-02-27,et0,0.002 +oxford_land,2010-02-28,et0,0.002 +oxford_land,2010-03-01,et0,0.002 +oxford_land,2010-03-02,et0,0.002 +oxford_land,2010-03-03,et0,0.002 +oxford_land,2010-03-04,et0,0.002 +oxford_land,2010-03-05,et0,0.002 +oxford_land,2010-03-06,et0,0.002 +oxford_land,2010-03-07,et0,0.002 +oxford_land,2010-03-08,et0,0.002 +oxford_land,2010-03-09,et0,0.002 +oxford_land,2010-03-10,et0,0.002 +oxford_land,2010-03-11,et0,0.002 +oxford_land,2010-03-12,et0,0.002 +oxford_land,2010-03-13,et0,0.002 +oxford_land,2010-03-14,et0,0.002 +oxford_land,2010-03-15,et0,0.002 +oxford_land,2010-03-16,et0,0.002 +oxford_land,2010-03-17,et0,0.002 +oxford_land,2010-03-18,et0,0.002 +oxford_land,2010-03-19,et0,0.002 +oxford_land,2010-03-20,et0,0.002 +oxford_land,2010-03-21,et0,0.002 +oxford_land,2010-03-22,et0,0.002 +oxford_land,2010-03-23,et0,0.002 +oxford_land,2010-03-24,et0,0.002 +oxford_land,2010-03-25,et0,0.002 +oxford_land,2010-03-26,et0,0.002 +oxford_land,2010-03-27,et0,0.002 +oxford_land,2010-03-28,et0,0.002 +oxford_land,2010-03-29,et0,0.002 +oxford_land,2010-03-30,et0,0.002 +oxford_land,2010-03-31,et0,0.002 +oxford_land,2010-04-01,et0,0.002 +oxford_land,2010-04-02,et0,0.002 +oxford_land,2010-04-03,et0,0.002 +oxford_land,2010-04-04,et0,0.002 +oxford_land,2010-04-05,et0,0.002 +oxford_land,2010-04-06,et0,0.002 +oxford_land,2010-04-07,et0,0.002 +oxford_land,2010-04-08,et0,0.002 +oxford_land,2010-04-09,et0,0.002 +oxford_land,2010-04-10,et0,0.002 +oxford_land,2010-04-11,et0,0.002 +oxford_land,2010-04-12,et0,0.002 +oxford_land,2010-04-13,et0,0.002 +oxford_land,2010-04-14,et0,0.002 +oxford_land,2010-04-15,et0,0.002 +oxford_land,2010-04-16,et0,0.002 +oxford_land,2010-04-17,et0,0.002 +oxford_land,2010-04-18,et0,0.002 +oxford_land,2010-04-19,et0,0.002 +oxford_land,2010-04-20,et0,0.002 +oxford_land,2010-04-21,et0,0.002 +oxford_land,2010-04-22,et0,0.002 +oxford_land,2010-04-23,et0,0.002 +oxford_land,2010-04-24,et0,0.002 +oxford_land,2010-04-25,et0,0.002 +oxford_land,2010-04-26,et0,0.002 +oxford_land,2010-04-27,et0,0.002 +oxford_land,2010-04-28,et0,0.002 +oxford_land,2010-04-29,et0,0.002 +oxford_land,2010-04-30,et0,0.002 +oxford_land,2010-05-01,et0,0.002 +oxford_land,2010-05-02,et0,0.002 +oxford_land,2010-05-03,et0,0.002 +oxford_land,2010-05-04,et0,0.002 +oxford_land,2010-05-05,et0,0.002 +oxford_land,2010-05-06,et0,0.002 +oxford_land,2010-05-07,et0,0.002 +oxford_land,2010-05-08,et0,0.002 +oxford_land,2010-05-09,et0,0.002 +oxford_land,2010-05-10,et0,0.002 +oxford_land,2010-05-11,et0,0.002 +oxford_land,2010-05-12,et0,0.002 +oxford_land,2010-05-13,et0,0.002 +oxford_land,2010-05-14,et0,0.002 +oxford_land,2010-05-15,et0,0.002 +oxford_land,2010-05-16,et0,0.002 +oxford_land,2010-05-17,et0,0.002 +oxford_land,2010-05-18,et0,0.002 +oxford_land,2010-05-19,et0,0.002 +oxford_land,2010-05-20,et0,0.002 +oxford_land,2010-05-21,et0,0.002 +oxford_land,2010-05-22,et0,0.002 +oxford_land,2010-05-23,et0,0.002 +oxford_land,2010-05-24,et0,0.002 +oxford_land,2010-05-25,et0,0.002 +oxford_land,2010-05-26,et0,0.002 +oxford_land,2010-05-27,et0,0.002 +oxford_land,2010-05-28,et0,0.002 +oxford_land,2010-05-29,et0,0.002 +oxford_land,2010-05-30,et0,0.002 +oxford_land,2010-05-31,et0,0.002 +oxford_land,2010-06-01,et0,0.002 +oxford_land,2010-06-02,et0,0.002 +oxford_land,2010-06-03,et0,0.002 +oxford_land,2010-06-04,et0,0.002 +oxford_land,2010-06-05,et0,0.002 +oxford_land,2010-06-06,et0,0.002 +oxford_land,2010-06-07,et0,0.002 +oxford_land,2010-06-08,et0,0.002 +oxford_land,2010-06-09,et0,0.002 +oxford_land,2010-06-10,et0,0.002 +oxford_land,2010-06-11,et0,0.002 +oxford_land,2010-06-12,et0,0.002 +oxford_land,2010-06-13,et0,0.002 +oxford_land,2010-06-14,et0,0.002 +oxford_land,2010-06-15,et0,0.002 +oxford_land,2010-06-16,et0,0.002 +oxford_land,2010-06-17,et0,0.002 +oxford_land,2010-06-18,et0,0.002 +oxford_land,2010-06-19,et0,0.002 +oxford_land,2010-06-20,et0,0.002 +oxford_land,2010-06-21,et0,0.002 +oxford_land,2010-06-22,et0,0.002 +oxford_land,2010-06-23,et0,0.002 +oxford_land,2010-06-24,et0,0.002 +oxford_land,2010-06-25,et0,0.002 +oxford_land,2010-06-26,et0,0.002 +oxford_land,2010-06-27,et0,0.002 +oxford_land,2010-06-28,et0,0.002 +oxford_land,2010-06-29,et0,0.002 +oxford_land,2010-06-30,et0,0.002 +oxford_land,2010-07-01,et0,0.002 +oxford_land,2010-07-02,et0,0.002 +oxford_land,2010-07-03,et0,0.002 +oxford_land,2010-07-04,et0,0.002 +oxford_land,2010-07-05,et0,0.002 +oxford_land,2010-07-06,et0,0.002 +oxford_land,2010-07-07,et0,0.002 +oxford_land,2010-07-08,et0,0.002 +oxford_land,2010-07-09,et0,0.002 +oxford_land,2010-07-10,et0,0.002 +oxford_land,2010-07-11,et0,0.002 +oxford_land,2010-07-12,et0,0.002 +oxford_land,2010-07-13,et0,0.002 +oxford_land,2010-07-14,et0,0.002 +oxford_land,2010-07-15,et0,0.002 +oxford_land,2010-07-16,et0,0.002 +oxford_land,2010-07-17,et0,0.002 +oxford_land,2010-07-18,et0,0.002 +oxford_land,2010-07-19,et0,0.002 +oxford_land,2010-07-20,et0,0.002 +oxford_land,2010-07-21,et0,0.002 +oxford_land,2010-07-22,et0,0.002 +oxford_land,2010-07-23,et0,0.002 +oxford_land,2010-07-24,et0,0.002 +oxford_land,2010-07-25,et0,0.002 +oxford_land,2010-07-26,et0,0.002 +oxford_land,2010-07-27,et0,0.002 +oxford_land,2010-07-28,et0,0.002 +oxford_land,2010-07-29,et0,0.002 +oxford_land,2010-07-30,et0,0.002 +oxford_land,2010-07-31,et0,0.002 +oxford_land,2010-08-01,et0,0.002 +oxford_land,2010-08-02,et0,0.002 +oxford_land,2010-08-03,et0,0.002 +oxford_land,2010-08-04,et0,0.002 +oxford_land,2010-08-05,et0,0.002 +oxford_land,2010-08-06,et0,0.002 +oxford_land,2010-08-07,et0,0.002 +oxford_land,2010-08-08,et0,0.002 +oxford_land,2010-08-09,et0,0.002 +oxford_land,2010-08-10,et0,0.002 +oxford_land,2010-08-11,et0,0.002 +oxford_land,2010-08-12,et0,0.002 +oxford_land,2010-08-13,et0,0.002 +oxford_land,2010-08-14,et0,0.002 +oxford_land,2010-08-15,et0,0.002 +oxford_land,2010-08-16,et0,0.002 +oxford_land,2010-08-17,et0,0.002 +oxford_land,2010-08-18,et0,0.002 +oxford_land,2010-08-19,et0,0.002 +oxford_land,2010-08-20,et0,0.002 +oxford_land,2010-08-21,et0,0.002 +oxford_land,2010-08-22,et0,0.002 +oxford_land,2010-08-23,et0,0.002 +oxford_land,2010-08-24,et0,0.002 +oxford_land,2010-08-25,et0,0.002 +oxford_land,2010-08-26,et0,0.002 +oxford_land,2010-08-27,et0,0.002 +oxford_land,2010-08-28,et0,0.002 +oxford_land,2010-08-29,et0,0.002 +oxford_land,2010-08-30,et0,0.002 +oxford_land,2010-08-31,et0,0.002 +oxford_land,2010-09-01,et0,0.002 +oxford_land,2010-09-02,et0,0.002 +oxford_land,2010-09-03,et0,0.002 +oxford_land,2010-09-04,et0,0.002 +oxford_land,2010-09-05,et0,0.002 +oxford_land,2010-09-06,et0,0.002 +oxford_land,2010-09-07,et0,0.002 +oxford_land,2010-09-08,et0,0.002 +oxford_land,2010-09-09,et0,0.002 +oxford_land,2010-09-10,et0,0.002 +oxford_land,2010-09-11,et0,0.002 +oxford_land,2010-09-12,et0,0.002 +oxford_land,2010-09-13,et0,0.002 +oxford_land,2010-09-14,et0,0.002 +oxford_land,2010-09-15,et0,0.002 +oxford_land,2010-09-16,et0,0.002 +oxford_land,2010-09-17,et0,0.002 +oxford_land,2010-09-18,et0,0.002 +oxford_land,2010-09-19,et0,0.002 +oxford_land,2010-09-20,et0,0.002 +oxford_land,2010-09-21,et0,0.002 +oxford_land,2010-09-22,et0,0.002 +oxford_land,2010-09-23,et0,0.002 +oxford_land,2010-09-24,et0,0.002 +oxford_land,2010-09-25,et0,0.002 +oxford_land,2010-09-26,et0,0.002 +oxford_land,2010-09-27,et0,0.002 +oxford_land,2010-09-28,et0,0.002 +oxford_land,2010-09-29,et0,0.002 +oxford_land,2010-09-30,et0,0.002 +oxford_land,2010-10-01,et0,0.002 +oxford_land,2010-10-02,et0,0.002 +oxford_land,2010-10-03,et0,0.002 +oxford_land,2010-10-04,et0,0.002 +oxford_land,2010-10-05,et0,0.002 +oxford_land,2010-10-06,et0,0.002 +oxford_land,2010-10-07,et0,0.002 +oxford_land,2010-10-08,et0,0.002 +oxford_land,2010-10-09,et0,0.002 +oxford_land,2010-10-10,et0,0.002 +oxford_land,2010-10-11,et0,0.002 +oxford_land,2010-10-12,et0,0.002 +oxford_land,2010-10-13,et0,0.002 +oxford_land,2010-10-14,et0,0.002 +oxford_land,2010-10-15,et0,0.002 +oxford_land,2010-10-16,et0,0.002 +oxford_land,2010-10-17,et0,0.002 +oxford_land,2010-10-18,et0,0.002 +oxford_land,2010-10-19,et0,0.002 +oxford_land,2010-10-20,et0,0.002 +oxford_land,2010-10-21,et0,0.002 +oxford_land,2010-10-22,et0,0.002 +oxford_land,2010-10-23,et0,0.002 +oxford_land,2010-10-24,et0,0.002 +oxford_land,2010-10-25,et0,0.002 +oxford_land,2010-10-26,et0,0.002 +oxford_land,2010-10-27,et0,0.002 +oxford_land,2010-10-28,et0,0.002 +oxford_land,2010-10-29,et0,0.002 +oxford_land,2010-10-30,et0,0.002 +oxford_land,2010-10-31,et0,0.002 +oxford_land,2010-11-01,et0,0.002 +oxford_land,2010-11-02,et0,0.002 +oxford_land,2010-11-03,et0,0.002 +oxford_land,2010-11-04,et0,0.002 +oxford_land,2010-11-05,et0,0.002 +oxford_land,2010-11-06,et0,0.002 +oxford_land,2010-11-07,et0,0.002 +oxford_land,2010-11-08,et0,0.002 +oxford_land,2010-11-09,et0,0.002 +oxford_land,2010-11-10,et0,0.002 +oxford_land,2010-11-11,et0,0.002 +oxford_land,2010-11-12,et0,0.002 +oxford_land,2010-11-13,et0,0.002 +oxford_land,2010-11-14,et0,0.002 +oxford_land,2010-11-15,et0,0.002 +oxford_land,2010-11-16,et0,0.002 +oxford_land,2010-11-17,et0,0.002 +oxford_land,2010-11-18,et0,0.002 +oxford_land,2010-11-19,et0,0.002 +oxford_land,2010-11-20,et0,0.002 +oxford_land,2010-11-21,et0,0.002 +oxford_land,2010-11-22,et0,0.002 +oxford_land,2010-11-23,et0,0.002 +oxford_land,2010-11-24,et0,0.002 +oxford_land,2010-11-25,et0,0.002 +oxford_land,2010-11-26,et0,0.002 +oxford_land,2010-11-27,et0,0.002 +oxford_land,2010-11-28,et0,0.002 +oxford_land,2010-11-29,et0,0.002 +oxford_land,2010-11-30,et0,0.002 +oxford_land,2010-12-01,et0,0.002 +oxford_land,2010-12-02,et0,0.002 +oxford_land,2010-12-03,et0,0.002 +oxford_land,2010-12-04,et0,0.002 +oxford_land,2010-12-05,et0,0.002 +oxford_land,2010-12-06,et0,0.002 +oxford_land,2010-12-07,et0,0.002 +oxford_land,2010-12-08,et0,0.002 +oxford_land,2010-12-09,et0,0.002 +oxford_land,2010-12-10,et0,0.002 +oxford_land,2010-12-11,et0,0.002 +oxford_land,2010-12-12,et0,0.002 +oxford_land,2010-12-13,et0,0.002 +oxford_land,2010-12-14,et0,0.002 +oxford_land,2010-12-15,et0,0.002 +oxford_land,2010-12-16,et0,0.002 +oxford_land,2010-12-17,et0,0.002 +oxford_land,2010-12-18,et0,0.002 +oxford_land,2010-12-19,et0,0.002 +oxford_land,2010-12-20,et0,0.002 +oxford_land,2010-12-21,et0,0.002 +oxford_land,2010-12-22,et0,0.002 +oxford_land,2010-12-23,et0,0.002 +oxford_land,2010-12-24,et0,0.002 +oxford_land,2010-12-25,et0,0.002 +oxford_land,2010-12-26,et0,0.002 +oxford_land,2010-12-27,et0,0.002 +oxford_land,2010-12-28,et0,0.002 +oxford_land,2010-12-29,et0,0.002 +oxford_land,2010-12-30,et0,0.002 +oxford_land,2010-12-31,et0,0.002 +oxford_land,2011-01-01,et0,0.002 +oxford_land,2011-01-02,et0,0.002 +oxford_land,2011-01-03,et0,0.002 +oxford_land,2011-01-04,et0,0.002 +oxford_land,2011-01-05,et0,0.002 +oxford_land,2011-01-06,et0,0.002 +oxford_land,2011-01-07,et0,0.002 +oxford_land,2011-01-08,et0,0.002 +oxford_land,2011-01-09,et0,0.002 +oxford_land,2011-01-10,et0,0.002 +oxford_land,2011-01-11,et0,0.002 +oxford_land,2011-01-12,et0,0.002 +oxford_land,2011-01-13,et0,0.002 +oxford_land,2011-01-14,et0,0.002 +oxford_land,2011-01-15,et0,0.002 +oxford_land,2011-01-16,et0,0.002 +oxford_land,2011-01-17,et0,0.002 +oxford_land,2011-01-18,et0,0.002 +oxford_land,2011-01-19,et0,0.002 +oxford_land,2011-01-20,et0,0.002 +oxford_land,2011-01-21,et0,0.002 +oxford_land,2011-01-22,et0,0.002 +oxford_land,2011-01-23,et0,0.002 +oxford_land,2011-01-24,et0,0.002 +oxford_land,2011-01-25,et0,0.002 +oxford_land,2011-01-26,et0,0.002 +oxford_land,2011-01-27,et0,0.002 +oxford_land,2011-01-28,et0,0.002 +oxford_land,2011-01-29,et0,0.002 +oxford_land,2011-01-30,et0,0.002 +oxford_land,2011-01-31,et0,0.002 +oxford_land,2011-02-01,et0,0.002 +oxford_land,2011-02-02,et0,0.002 +oxford_land,2011-02-03,et0,0.002 +oxford_land,2011-02-04,et0,0.002 +oxford_land,2011-02-05,et0,0.002 +oxford_land,2011-02-06,et0,0.002 +oxford_land,2011-02-07,et0,0.002 +oxford_land,2011-02-08,et0,0.002 +oxford_land,2011-02-09,et0,0.002 +oxford_land,2011-02-10,et0,0.002 +oxford_land,2011-02-11,et0,0.002 +oxford_land,2011-02-12,et0,0.002 +oxford_land,2011-02-13,et0,0.002 +oxford_land,2011-02-14,et0,0.002 +oxford_land,2011-02-15,et0,0.002 +oxford_land,2011-02-16,et0,0.002 +oxford_land,2011-02-17,et0,0.002 +oxford_land,2011-02-18,et0,0.002 +oxford_land,2011-02-19,et0,0.002 +oxford_land,2011-02-20,et0,0.002 +oxford_land,2011-02-21,et0,0.002 +oxford_land,2011-02-22,et0,0.002 +oxford_land,2011-02-23,et0,0.002 +oxford_land,2011-02-24,et0,0.002 +oxford_land,2011-02-25,et0,0.002 +oxford_land,2011-02-26,et0,0.002 +oxford_land,2011-02-27,et0,0.002 +oxford_land,2011-02-28,et0,0.002 +oxford_land,2011-03-01,et0,0.002 +oxford_land,2011-03-02,et0,0.002 +oxford_land,2011-03-03,et0,0.002 +oxford_land,2011-03-04,et0,0.002 +oxford_land,2011-03-05,et0,0.002 +oxford_land,2011-03-06,et0,0.002 +oxford_land,2011-03-07,et0,0.002 +oxford_land,2011-03-08,et0,0.002 +oxford_land,2011-03-09,et0,0.002 +oxford_land,2011-03-10,et0,0.002 +oxford_land,2011-03-11,et0,0.002 +oxford_land,2011-03-12,et0,0.002 +oxford_land,2011-03-13,et0,0.002 +oxford_land,2011-03-14,et0,0.002 +oxford_land,2011-03-15,et0,0.002 +oxford_land,2011-03-16,et0,0.002 +oxford_land,2011-03-17,et0,0.002 +oxford_land,2011-03-18,et0,0.002 +oxford_land,2011-03-19,et0,0.002 +oxford_land,2011-03-20,et0,0.002 +oxford_land,2011-03-21,et0,0.002 +oxford_land,2011-03-22,et0,0.002 +oxford_land,2011-03-23,et0,0.002 +oxford_land,2011-03-24,et0,0.002 +oxford_land,2011-03-25,et0,0.002 +oxford_land,2011-03-26,et0,0.002 +oxford_land,2011-03-27,et0,0.002 +oxford_land,2011-03-28,et0,0.002 +oxford_land,2011-03-29,et0,0.002 +oxford_land,2011-03-30,et0,0.002 +oxford_land,2011-03-31,et0,0.002 +oxford_land,2011-04-01,et0,0.002 +oxford_land,2011-04-02,et0,0.002 +oxford_land,2011-04-03,et0,0.002 +oxford_land,2011-04-04,et0,0.002 +oxford_land,2011-04-05,et0,0.002 +oxford_land,2011-04-06,et0,0.002 +oxford_land,2011-04-07,et0,0.002 +oxford_land,2011-04-08,et0,0.002 +oxford_land,2011-04-09,et0,0.002 +oxford_land,2011-04-10,et0,0.002 +oxford_land,2011-04-11,et0,0.002 +oxford_land,2011-04-12,et0,0.002 +oxford_land,2011-04-13,et0,0.002 +oxford_land,2011-04-14,et0,0.002 +oxford_land,2011-04-15,et0,0.002 +oxford_land,2011-04-16,et0,0.002 +oxford_land,2011-04-17,et0,0.002 +oxford_land,2011-04-18,et0,0.002 +oxford_land,2011-04-19,et0,0.002 +oxford_land,2011-04-20,et0,0.002 +oxford_land,2011-04-21,et0,0.002 +oxford_land,2011-04-22,et0,0.002 +oxford_land,2011-04-23,et0,0.002 +oxford_land,2011-04-24,et0,0.002 +oxford_land,2011-04-25,et0,0.002 +oxford_land,2011-04-26,et0,0.002 +oxford_land,2011-04-27,et0,0.002 +oxford_land,2011-04-28,et0,0.002 +oxford_land,2011-04-29,et0,0.002 +oxford_land,2011-04-30,et0,0.002 +oxford_land,2011-05-01,et0,0.002 +oxford_land,2011-05-02,et0,0.002 +oxford_land,2011-05-03,et0,0.002 +oxford_land,2011-05-04,et0,0.002 +oxford_land,2011-05-05,et0,0.002 +oxford_land,2011-05-06,et0,0.002 +oxford_land,2011-05-07,et0,0.002 +oxford_land,2011-05-08,et0,0.002 +oxford_land,2011-05-09,et0,0.002 +oxford_land,2011-05-10,et0,0.002 +oxford_land,2011-05-11,et0,0.002 +oxford_land,2011-05-12,et0,0.002 +oxford_land,2011-05-13,et0,0.002 +oxford_land,2011-05-14,et0,0.002 +oxford_land,2011-05-15,et0,0.002 +oxford_land,2011-05-16,et0,0.002 +oxford_land,2011-05-17,et0,0.002 +oxford_land,2011-05-18,et0,0.002 +oxford_land,2011-05-19,et0,0.002 +oxford_land,2011-05-20,et0,0.002 +oxford_land,2011-05-21,et0,0.002 +oxford_land,2011-05-22,et0,0.002 +oxford_land,2011-05-23,et0,0.002 +oxford_land,2011-05-24,et0,0.002 +oxford_land,2011-05-25,et0,0.002 +oxford_land,2011-05-26,et0,0.002 +oxford_land,2011-05-27,et0,0.002 +oxford_land,2011-05-28,et0,0.002 +oxford_land,2011-05-29,et0,0.002 +oxford_land,2011-05-30,et0,0.002 +oxford_land,2011-05-31,et0,0.002 +oxford_land,2011-06-01,et0,0.002 +oxford_land,2011-06-02,et0,0.002 +oxford_land,2011-06-03,et0,0.002 +oxford_land,2011-06-04,et0,0.002 +oxford_land,2011-06-05,et0,0.002 +oxford_land,2011-06-06,et0,0.002 +oxford_land,2011-06-07,et0,0.002 +oxford_land,2011-06-08,et0,0.002 +oxford_land,2011-06-09,et0,0.002 +oxford_land,2011-06-10,et0,0.002 +oxford_land,2011-06-11,et0,0.002 +oxford_land,2011-06-12,et0,0.002 +oxford_land,2011-06-13,et0,0.002 +oxford_land,2011-06-14,et0,0.002 +oxford_land,2011-06-15,et0,0.002 +oxford_land,2011-06-16,et0,0.002 +oxford_land,2011-06-17,et0,0.002 +oxford_land,2011-06-18,et0,0.002 +oxford_land,2011-06-19,et0,0.002 +oxford_land,2011-06-20,et0,0.002 +oxford_land,2011-06-21,et0,0.002 +oxford_land,2011-06-22,et0,0.002 +oxford_land,2011-06-23,et0,0.002 +oxford_land,2011-06-24,et0,0.002 +oxford_land,2011-06-25,et0,0.002 +oxford_land,2011-06-26,et0,0.002 +oxford_land,2011-06-27,et0,0.002 +oxford_land,2011-06-28,et0,0.002 +oxford_land,2011-06-29,et0,0.002 +oxford_land,2011-06-30,et0,0.002 +oxford_land,2011-07-01,et0,0.002 +oxford_land,2011-07-02,et0,0.002 +oxford_land,2011-07-03,et0,0.002 +oxford_land,2011-07-04,et0,0.002 +oxford_land,2011-07-05,et0,0.002 +oxford_land,2011-07-06,et0,0.002 +oxford_land,2011-07-07,et0,0.002 +oxford_land,2011-07-08,et0,0.002 +oxford_land,2011-07-09,et0,0.002 +oxford_land,2011-07-10,et0,0.002 +oxford_land,2011-07-11,et0,0.002 +oxford_land,2011-07-12,et0,0.002 +oxford_land,2011-07-13,et0,0.002 +oxford_land,2011-07-14,et0,0.002 +oxford_land,2011-07-15,et0,0.002 +oxford_land,2011-07-16,et0,0.002 +oxford_land,2011-07-17,et0,0.002 +oxford_land,2011-07-18,et0,0.002 +oxford_land,2011-07-19,et0,0.002 +oxford_land,2011-07-20,et0,0.002 +oxford_land,2011-07-21,et0,0.002 +oxford_land,2011-07-22,et0,0.002 +oxford_land,2011-07-23,et0,0.002 +oxford_land,2011-07-24,et0,0.002 +oxford_land,2011-07-25,et0,0.002 +oxford_land,2011-07-26,et0,0.002 +oxford_land,2011-07-27,et0,0.002 +oxford_land,2011-07-28,et0,0.002 +oxford_land,2011-07-29,et0,0.002 +oxford_land,2011-07-30,et0,0.002 +oxford_land,2011-07-31,et0,0.002 +oxford_land,2011-08-01,et0,0.002 +oxford_land,2011-08-02,et0,0.002 +oxford_land,2011-08-03,et0,0.002 +oxford_land,2011-08-04,et0,0.002 +oxford_land,2011-08-05,et0,0.002 +oxford_land,2011-08-06,et0,0.002 +oxford_land,2011-08-07,et0,0.002 +oxford_land,2011-08-08,et0,0.002 +oxford_land,2011-08-09,et0,0.002 +oxford_land,2011-08-10,et0,0.002 +oxford_land,2011-08-11,et0,0.002 +oxford_land,2011-08-12,et0,0.002 +oxford_land,2011-08-13,et0,0.002 +oxford_land,2011-08-14,et0,0.002 +oxford_land,2011-08-15,et0,0.002 +oxford_land,2011-08-16,et0,0.002 +oxford_land,2011-08-17,et0,0.002 +oxford_land,2011-08-18,et0,0.002 +oxford_land,2011-08-19,et0,0.002 +oxford_land,2011-08-20,et0,0.002 +oxford_land,2011-08-21,et0,0.002 +oxford_land,2011-08-22,et0,0.002 +oxford_land,2011-08-23,et0,0.002 +oxford_land,2011-08-24,et0,0.002 +oxford_land,2011-08-25,et0,0.002 +oxford_land,2011-08-26,et0,0.002 +oxford_land,2011-08-27,et0,0.002 +oxford_land,2011-08-28,et0,0.002 +oxford_land,2011-08-29,et0,0.002 +oxford_land,2011-08-30,et0,0.002 +oxford_land,2011-08-31,et0,0.002 +oxford_land,2011-09-01,et0,0.002 +oxford_land,2011-09-02,et0,0.002 +oxford_land,2011-09-03,et0,0.002 +oxford_land,2011-09-04,et0,0.002 +oxford_land,2011-09-05,et0,0.002 +oxford_land,2011-09-06,et0,0.002 +oxford_land,2011-09-07,et0,0.002 +oxford_land,2011-09-08,et0,0.002 +oxford_land,2011-09-09,et0,0.002 +oxford_land,2011-09-10,et0,0.002 +oxford_land,2011-09-11,et0,0.002 +oxford_land,2011-09-12,et0,0.002 +oxford_land,2011-09-13,et0,0.002 +oxford_land,2011-09-14,et0,0.002 +oxford_land,2011-09-15,et0,0.002 +oxford_land,2011-09-16,et0,0.002 +oxford_land,2011-09-17,et0,0.002 +oxford_land,2011-09-18,et0,0.002 +oxford_land,2011-09-19,et0,0.002 +oxford_land,2011-09-20,et0,0.002 +oxford_land,2011-09-21,et0,0.002 +oxford_land,2011-09-22,et0,0.002 +oxford_land,2011-09-23,et0,0.002 +oxford_land,2011-09-24,et0,0.002 +oxford_land,2011-09-25,et0,0.002 +oxford_land,2011-09-26,et0,0.002 +oxford_land,2011-09-27,et0,0.002 +oxford_land,2011-09-28,et0,0.002 +oxford_land,2011-09-29,et0,0.002 +oxford_land,2011-09-30,et0,0.002 +oxford_land,2011-10-01,et0,0.002 +oxford_land,2011-10-02,et0,0.002 +oxford_land,2011-10-03,et0,0.002 +oxford_land,2011-10-04,et0,0.002 +oxford_land,2011-10-05,et0,0.002 +oxford_land,2011-10-06,et0,0.002 +oxford_land,2011-10-07,et0,0.002 +oxford_land,2011-10-08,et0,0.002 +oxford_land,2011-10-09,et0,0.002 +oxford_land,2011-10-10,et0,0.002 +oxford_land,2011-10-11,et0,0.002 +oxford_land,2011-10-12,et0,0.002 +oxford_land,2011-10-13,et0,0.002 +oxford_land,2011-10-14,et0,0.002 +oxford_land,2011-10-15,et0,0.002 +oxford_land,2011-10-16,et0,0.002 +oxford_land,2011-10-17,et0,0.002 +oxford_land,2011-10-18,et0,0.002 +oxford_land,2011-10-19,et0,0.002 +oxford_land,2011-10-20,et0,0.002 +oxford_land,2011-10-21,et0,0.002 +oxford_land,2011-10-22,et0,0.002 +oxford_land,2011-10-23,et0,0.002 +oxford_land,2011-10-24,et0,0.002 +oxford_land,2011-10-25,et0,0.002 +oxford_land,2011-10-26,et0,0.002 +oxford_land,2011-10-27,et0,0.002 +oxford_land,2011-10-28,et0,0.002 +oxford_land,2011-10-29,et0,0.002 +oxford_land,2011-10-30,et0,0.002 +oxford_land,2011-10-31,et0,0.002 +oxford_land,2011-11-01,et0,0.002 +oxford_land,2011-11-02,et0,0.002 +oxford_land,2011-11-03,et0,0.002 +oxford_land,2011-11-04,et0,0.002 +oxford_land,2011-11-05,et0,0.002 +oxford_land,2011-11-06,et0,0.002 +oxford_land,2011-11-07,et0,0.002 +oxford_land,2011-11-08,et0,0.002 +oxford_land,2011-11-09,et0,0.002 +oxford_land,2011-11-10,et0,0.002 +oxford_land,2011-11-11,et0,0.002 +oxford_land,2011-11-12,et0,0.002 +oxford_land,2011-11-13,et0,0.002 +oxford_land,2011-11-14,et0,0.002 +oxford_land,2011-11-15,et0,0.002 +oxford_land,2011-11-16,et0,0.002 +oxford_land,2011-11-17,et0,0.002 +oxford_land,2011-11-18,et0,0.002 +oxford_land,2011-11-19,et0,0.002 +oxford_land,2011-11-20,et0,0.002 +oxford_land,2011-11-21,et0,0.002 +oxford_land,2011-11-22,et0,0.002 +oxford_land,2011-11-23,et0,0.002 +oxford_land,2011-11-24,et0,0.002 +oxford_land,2011-11-25,et0,0.002 +oxford_land,2011-11-26,et0,0.002 +oxford_land,2011-11-27,et0,0.002 +oxford_land,2011-11-28,et0,0.002 +oxford_land,2011-11-29,et0,0.002 +oxford_land,2011-11-30,et0,0.002 +oxford_land,2011-12-01,et0,0.002 +oxford_land,2011-12-02,et0,0.002 +oxford_land,2011-12-03,et0,0.002 +oxford_land,2011-12-04,et0,0.002 +oxford_land,2011-12-05,et0,0.002 +oxford_land,2011-12-06,et0,0.002 +oxford_land,2011-12-07,et0,0.002 +oxford_land,2011-12-08,et0,0.002 +oxford_land,2011-12-09,et0,0.002 +oxford_land,2011-12-10,et0,0.002 +oxford_land,2011-12-11,et0,0.002 +oxford_land,2011-12-12,et0,0.002 +oxford_land,2011-12-13,et0,0.002 +oxford_land,2011-12-14,et0,0.002 +oxford_land,2011-12-15,et0,0.002 +oxford_land,2011-12-16,et0,0.002 +oxford_land,2011-12-17,et0,0.002 +oxford_land,2011-12-18,et0,0.002 +oxford_land,2011-12-19,et0,0.002 +oxford_land,2011-12-20,et0,0.002 +oxford_land,2011-12-21,et0,0.002 +oxford_land,2011-12-22,et0,0.002 +oxford_land,2011-12-23,et0,0.002 +oxford_land,2011-12-24,et0,0.002 +oxford_land,2011-12-25,et0,0.002 +oxford_land,2011-12-26,et0,0.002 +oxford_land,2011-12-27,et0,0.002 +oxford_land,2011-12-28,et0,0.002 +oxford_land,2011-12-29,et0,0.002 +oxford_land,2011-12-30,et0,0.002 +oxford_land,2011-12-31,et0,0.002 +oxford_land,2012-01-01,et0,0.002 +oxford_land,2012-01-02,et0,0.002 +oxford_land,2012-01-03,et0,0.002 +oxford_land,2012-01-04,et0,0.002 +oxford_land,2012-01-05,et0,0.002 +oxford_land,2012-01-06,et0,0.002 +oxford_land,2012-01-07,et0,0.002 +oxford_land,2012-01-08,et0,0.002 +oxford_land,2012-01-09,et0,0.002 +oxford_land,2012-01-10,et0,0.002 +oxford_land,2012-01-11,et0,0.002 +oxford_land,2012-01-12,et0,0.002 +oxford_land,2012-01-13,et0,0.002 +oxford_land,2012-01-14,et0,0.002 +oxford_land,2012-01-15,et0,0.002 +oxford_land,2012-01-16,et0,0.002 +oxford_land,2012-01-17,et0,0.002 +oxford_land,2012-01-18,et0,0.002 +oxford_land,2012-01-19,et0,0.002 +oxford_land,2012-01-20,et0,0.002 +oxford_land,2012-01-21,et0,0.002 +oxford_land,2012-01-22,et0,0.002 +oxford_land,2012-01-23,et0,0.002 +oxford_land,2012-01-24,et0,0.002 +oxford_land,2012-01-25,et0,0.002 +oxford_land,2012-01-26,et0,0.002 +oxford_land,2012-01-27,et0,0.002 +oxford_land,2012-01-28,et0,0.002 +oxford_land,2012-01-29,et0,0.002 +oxford_land,2012-01-30,et0,0.002 +oxford_land,2012-01-31,et0,0.002 +oxford_land,2012-02-01,et0,0.002 +oxford_land,2012-02-02,et0,0.002 +oxford_land,2012-02-03,et0,0.002 +oxford_land,2012-02-04,et0,0.002 +oxford_land,2012-02-05,et0,0.002 +oxford_land,2012-02-06,et0,0.002 +oxford_land,2012-02-07,et0,0.002 +oxford_land,2012-02-08,et0,0.002 +oxford_land,2012-02-09,et0,0.002 +oxford_land,2012-02-10,et0,0.002 +oxford_land,2012-02-11,et0,0.002 +oxford_land,2012-02-12,et0,0.002 +oxford_land,2012-02-13,et0,0.002 +oxford_land,2012-02-14,et0,0.002 +oxford_land,2012-02-15,et0,0.002 +oxford_land,2012-02-16,et0,0.002 +oxford_land,2012-02-17,et0,0.002 +oxford_land,2012-02-18,et0,0.002 +oxford_land,2012-02-19,et0,0.002 +oxford_land,2012-02-20,et0,0.002 +oxford_land,2012-02-21,et0,0.002 +oxford_land,2012-02-22,et0,0.002 +oxford_land,2012-02-23,et0,0.002 +oxford_land,2012-02-24,et0,0.002 +oxford_land,2012-02-25,et0,0.002 +oxford_land,2012-02-26,et0,0.002 +oxford_land,2012-02-27,et0,0.002 +oxford_land,2012-02-28,et0,0.002 +oxford_land,2012-02-29,et0,0.002 +oxford_land,2012-03-01,et0,0.002 +oxford_land,2012-03-02,et0,0.002 +oxford_land,2012-03-03,et0,0.002 +oxford_land,2012-03-04,et0,0.002 +oxford_land,2012-03-05,et0,0.002 +oxford_land,2012-03-06,et0,0.002 +oxford_land,2012-03-07,et0,0.002 +oxford_land,2012-03-08,et0,0.002 +oxford_land,2012-03-09,et0,0.002 +oxford_land,2012-03-10,et0,0.002 +oxford_land,2012-03-11,et0,0.002 +oxford_land,2012-03-12,et0,0.002 +oxford_land,2012-03-13,et0,0.002 +oxford_land,2012-03-14,et0,0.002 +oxford_land,2012-03-15,et0,0.002 +oxford_land,2012-03-16,et0,0.002 +oxford_land,2012-03-17,et0,0.002 +oxford_land,2012-03-18,et0,0.002 +oxford_land,2012-03-19,et0,0.002 +oxford_land,2012-03-20,et0,0.002 +oxford_land,2012-03-21,et0,0.002 +oxford_land,2012-03-22,et0,0.002 +oxford_land,2012-03-23,et0,0.002 +oxford_land,2012-03-24,et0,0.002 +oxford_land,2012-03-25,et0,0.002 +oxford_land,2012-03-26,et0,0.002 +oxford_land,2012-03-27,et0,0.002 +oxford_land,2012-03-28,et0,0.002 +oxford_land,2012-03-29,et0,0.002 +oxford_land,2012-03-30,et0,0.002 +oxford_land,2012-03-31,et0,0.002 +oxford_land,2012-04-01,et0,0.002 +oxford_land,2012-04-02,et0,0.002 +oxford_land,2012-04-03,et0,0.002 +oxford_land,2012-04-04,et0,0.002 +oxford_land,2012-04-05,et0,0.002 +oxford_land,2012-04-06,et0,0.002 +oxford_land,2012-04-07,et0,0.002 +oxford_land,2012-04-08,et0,0.002 +oxford_land,2012-04-09,et0,0.002 +oxford_land,2012-04-10,et0,0.002 +oxford_land,2012-04-11,et0,0.002 +oxford_land,2012-04-12,et0,0.002 +oxford_land,2012-04-13,et0,0.002 +oxford_land,2012-04-14,et0,0.002 +oxford_land,2012-04-15,et0,0.002 +oxford_land,2012-04-16,et0,0.002 +oxford_land,2012-04-17,et0,0.002 +oxford_land,2012-04-18,et0,0.002 +oxford_land,2012-04-19,et0,0.002 +oxford_land,2012-04-20,et0,0.002 +oxford_land,2012-04-21,et0,0.002 +oxford_land,2012-04-22,et0,0.002 +oxford_land,2012-04-23,et0,0.002 +oxford_land,2012-04-24,et0,0.002 +oxford_land,2012-04-25,et0,0.002 +oxford_land,2012-04-26,et0,0.002 +oxford_land,2012-04-27,et0,0.002 +oxford_land,2012-04-28,et0,0.002 +oxford_land,2012-04-29,et0,0.002 +oxford_land,2012-04-30,et0,0.002 +oxford_land,2012-05-01,et0,0.002 +oxford_land,2012-05-02,et0,0.002 +oxford_land,2012-05-03,et0,0.002 +oxford_land,2012-05-04,et0,0.002 +oxford_land,2012-05-05,et0,0.002 +oxford_land,2012-05-06,et0,0.002 +oxford_land,2012-05-07,et0,0.002 +oxford_land,2012-05-08,et0,0.002 +oxford_land,2012-05-09,et0,0.002 +oxford_land,2012-05-10,et0,0.002 +oxford_land,2012-05-11,et0,0.002 +oxford_land,2012-05-12,et0,0.002 +oxford_land,2012-05-13,et0,0.002 +oxford_land,2012-05-14,et0,0.002 +oxford_land,2012-05-15,et0,0.002 +oxford_land,2012-05-16,et0,0.002 +oxford_land,2012-05-17,et0,0.002 +oxford_land,2012-05-18,et0,0.002 +oxford_land,2012-05-19,et0,0.002 +oxford_land,2012-05-20,et0,0.002 +oxford_land,2012-05-21,et0,0.002 +oxford_land,2012-05-22,et0,0.002 +oxford_land,2012-05-23,et0,0.002 +oxford_land,2012-05-24,et0,0.002 +oxford_land,2012-05-25,et0,0.002 +oxford_land,2012-05-26,et0,0.002 +oxford_land,2012-05-27,et0,0.002 +oxford_land,2012-05-28,et0,0.002 +oxford_land,2012-05-29,et0,0.002 +oxford_land,2012-05-30,et0,0.002 +oxford_land,2012-05-31,et0,0.002 +oxford_land,2012-06-01,et0,0.002 +oxford_land,2012-06-02,et0,0.002 +oxford_land,2012-06-03,et0,0.002 +oxford_land,2012-06-04,et0,0.002 +oxford_land,2012-06-05,et0,0.002 +oxford_land,2012-06-06,et0,0.002 +oxford_land,2012-06-07,et0,0.002 +oxford_land,2012-06-08,et0,0.002 +oxford_land,2012-06-09,et0,0.002 +oxford_land,2012-06-10,et0,0.002 +oxford_land,2012-06-11,et0,0.002 +oxford_land,2012-06-12,et0,0.002 +oxford_land,2012-06-13,et0,0.002 +oxford_land,2012-06-14,et0,0.002 +oxford_land,2012-06-15,et0,0.002 +oxford_land,2012-06-16,et0,0.002 +oxford_land,2012-06-17,et0,0.002 +oxford_land,2012-06-18,et0,0.002 +oxford_land,2012-06-19,et0,0.002 +oxford_land,2012-06-20,et0,0.002 +oxford_land,2012-06-21,et0,0.002 +oxford_land,2012-06-22,et0,0.002 +oxford_land,2012-06-23,et0,0.002 +oxford_land,2012-06-24,et0,0.002 +oxford_land,2012-06-25,et0,0.002 +oxford_land,2012-06-26,et0,0.002 +oxford_land,2012-06-27,et0,0.002 +oxford_land,2012-06-28,et0,0.002 +oxford_land,2012-06-29,et0,0.002 +oxford_land,2012-06-30,et0,0.002 +oxford_land,2012-07-01,et0,0.002 +oxford_land,2012-07-02,et0,0.002 +oxford_land,2012-07-03,et0,0.002 +oxford_land,2012-07-04,et0,0.002 +oxford_land,2012-07-05,et0,0.002 +oxford_land,2012-07-06,et0,0.002 +oxford_land,2012-07-07,et0,0.002 +oxford_land,2012-07-08,et0,0.002 +oxford_land,2012-07-09,et0,0.002 +oxford_land,2012-07-10,et0,0.002 +oxford_land,2012-07-11,et0,0.002 +oxford_land,2012-07-12,et0,0.002 +oxford_land,2012-07-13,et0,0.002 +oxford_land,2012-07-14,et0,0.002 +oxford_land,2012-07-15,et0,0.002 +oxford_land,2012-07-16,et0,0.002 +oxford_land,2012-07-17,et0,0.002 +oxford_land,2012-07-18,et0,0.002 +oxford_land,2012-07-19,et0,0.002 +oxford_land,2012-07-20,et0,0.002 +oxford_land,2012-07-21,et0,0.002 +oxford_land,2012-07-22,et0,0.002 +oxford_land,2012-07-23,et0,0.002 +oxford_land,2012-07-24,et0,0.002 +oxford_land,2012-07-25,et0,0.002 +oxford_land,2012-07-26,et0,0.002 +oxford_land,2012-07-27,et0,0.002 +oxford_land,2012-07-28,et0,0.002 +oxford_land,2012-07-29,et0,0.002 +oxford_land,2012-07-30,et0,0.002 +oxford_land,2012-07-31,et0,0.002 +oxford_land,2012-08-01,et0,0.002 +oxford_land,2012-08-02,et0,0.002 +oxford_land,2012-08-03,et0,0.002 +oxford_land,2012-08-04,et0,0.002 +oxford_land,2012-08-05,et0,0.002 +oxford_land,2012-08-06,et0,0.002 +oxford_land,2012-08-07,et0,0.002 +oxford_land,2012-08-08,et0,0.002 +oxford_land,2012-08-09,et0,0.002 +oxford_land,2012-08-10,et0,0.002 +oxford_land,2012-08-11,et0,0.002 +oxford_land,2012-08-12,et0,0.002 +oxford_land,2012-08-13,et0,0.002 +oxford_land,2012-08-14,et0,0.002 +oxford_land,2012-08-15,et0,0.002 +oxford_land,2012-08-16,et0,0.002 +oxford_land,2012-08-17,et0,0.002 +oxford_land,2012-08-18,et0,0.002 +oxford_land,2012-08-19,et0,0.002 +oxford_land,2012-08-20,et0,0.002 +oxford_land,2012-08-21,et0,0.002 +oxford_land,2012-08-22,et0,0.002 +oxford_land,2012-08-23,et0,0.002 +oxford_land,2012-08-24,et0,0.002 +oxford_land,2012-08-25,et0,0.002 +oxford_land,2012-08-26,et0,0.002 +oxford_land,2012-08-27,et0,0.002 +oxford_land,2012-08-28,et0,0.002 +oxford_land,2012-08-29,et0,0.002 +oxford_land,2012-08-30,et0,0.002 +oxford_land,2012-08-31,et0,0.002 +oxford_land,2012-09-01,et0,0.002 +oxford_land,2012-09-02,et0,0.002 +oxford_land,2012-09-03,et0,0.002 +oxford_land,2012-09-04,et0,0.002 +oxford_land,2012-09-05,et0,0.002 +oxford_land,2012-09-06,et0,0.002 +oxford_land,2012-09-07,et0,0.002 +oxford_land,2012-09-08,et0,0.002 +oxford_land,2012-09-09,et0,0.002 +oxford_land,2012-09-10,et0,0.002 +oxford_land,2012-09-11,et0,0.002 +oxford_land,2012-09-12,et0,0.002 +oxford_land,2012-09-13,et0,0.002 +oxford_land,2012-09-14,et0,0.002 +oxford_land,2012-09-15,et0,0.002 +oxford_land,2012-09-16,et0,0.002 +oxford_land,2012-09-17,et0,0.002 +oxford_land,2012-09-18,et0,0.002 +oxford_land,2012-09-19,et0,0.002 +oxford_land,2012-09-20,et0,0.002 +oxford_land,2012-09-21,et0,0.002 +oxford_land,2012-09-22,et0,0.002 +oxford_land,2012-09-23,et0,0.002 +oxford_land,2012-09-24,et0,0.002 +oxford_land,2012-09-25,et0,0.002 +oxford_land,2012-09-26,et0,0.002 +oxford_land,2012-09-27,et0,0.002 +oxford_land,2012-09-28,et0,0.002 +oxford_land,2012-09-29,et0,0.002 +oxford_land,2012-09-30,et0,0.002 +oxford_land,2012-10-01,et0,0.002 +oxford_land,2012-10-02,et0,0.002 +oxford_land,2012-10-03,et0,0.002 +oxford_land,2012-10-04,et0,0.002 +oxford_land,2012-10-05,et0,0.002 +oxford_land,2012-10-06,et0,0.002 +oxford_land,2012-10-07,et0,0.002 +oxford_land,2012-10-08,et0,0.002 +oxford_land,2012-10-09,et0,0.002 +oxford_land,2012-10-10,et0,0.002 +oxford_land,2012-10-11,et0,0.002 +oxford_land,2012-10-12,et0,0.002 +oxford_land,2012-10-13,et0,0.002 +oxford_land,2012-10-14,et0,0.002 +oxford_land,2012-10-15,et0,0.002 +oxford_land,2012-10-16,et0,0.002 +oxford_land,2012-10-17,et0,0.002 +oxford_land,2012-10-18,et0,0.002 +oxford_land,2012-10-19,et0,0.002 +oxford_land,2012-10-20,et0,0.002 +oxford_land,2012-10-21,et0,0.002 +oxford_land,2012-10-22,et0,0.002 +oxford_land,2012-10-23,et0,0.002 +oxford_land,2012-10-24,et0,0.002 +oxford_land,2012-10-25,et0,0.002 +oxford_land,2012-10-26,et0,0.002 +oxford_land,2012-10-27,et0,0.002 +oxford_land,2012-10-28,et0,0.002 +oxford_land,2012-10-29,et0,0.002 +oxford_land,2012-10-30,et0,0.002 +oxford_land,2012-10-31,et0,0.002 +oxford_land,2012-11-01,et0,0.002 +oxford_land,2012-11-02,et0,0.002 +oxford_land,2012-11-03,et0,0.002 +oxford_land,2012-11-04,et0,0.002 +oxford_land,2012-11-05,et0,0.002 +oxford_land,2012-11-06,et0,0.002 +oxford_land,2012-11-07,et0,0.002 +oxford_land,2012-11-08,et0,0.002 +oxford_land,2012-11-09,et0,0.002 +oxford_land,2012-11-10,et0,0.002 +oxford_land,2012-11-11,et0,0.002 +oxford_land,2012-11-12,et0,0.002 +oxford_land,2012-11-13,et0,0.002 +oxford_land,2012-11-14,et0,0.002 +oxford_land,2012-11-15,et0,0.002 +oxford_land,2012-11-16,et0,0.002 +oxford_land,2012-11-17,et0,0.002 +oxford_land,2012-11-18,et0,0.002 +oxford_land,2012-11-19,et0,0.002 +oxford_land,2012-11-20,et0,0.002 +oxford_land,2012-11-21,et0,0.002 +oxford_land,2012-11-22,et0,0.002 +oxford_land,2012-11-23,et0,0.002 +oxford_land,2012-11-24,et0,0.002 +oxford_land,2012-11-25,et0,0.002 +oxford_land,2012-11-26,et0,0.002 +oxford_land,2012-11-27,et0,0.002 +oxford_land,2012-11-28,et0,0.002 +oxford_land,2012-11-29,et0,0.002 +oxford_land,2012-11-30,et0,0.002 +oxford_land,2012-12-01,et0,0.002 +oxford_land,2012-12-02,et0,0.002 +oxford_land,2012-12-03,et0,0.002 +oxford_land,2012-12-04,et0,0.002 +oxford_land,2012-12-05,et0,0.002 +oxford_land,2012-12-06,et0,0.002 +oxford_land,2012-12-07,et0,0.002 +oxford_land,2012-12-08,et0,0.002 +oxford_land,2012-12-09,et0,0.002 +oxford_land,2012-12-10,et0,0.002 +oxford_land,2012-12-11,et0,0.002 +oxford_land,2012-12-12,et0,0.002 +oxford_land,2012-12-13,et0,0.002 +oxford_land,2012-12-14,et0,0.002 +oxford_land,2012-12-15,et0,0.002 +oxford_land,2012-12-16,et0,0.002 +oxford_land,2012-12-17,et0,0.002 +oxford_land,2012-12-18,et0,0.002 +oxford_land,2012-12-19,et0,0.002 +oxford_land,2012-12-20,et0,0.002 +oxford_land,2012-12-21,et0,0.002 +oxford_land,2012-12-22,et0,0.002 +oxford_land,2012-12-23,et0,0.002 +oxford_land,2012-12-24,et0,0.002 +oxford_land,2012-12-25,et0,0.002 +oxford_land,2012-12-26,et0,0.002 +oxford_land,2012-12-27,et0,0.002 +oxford_land,2012-12-28,et0,0.002 +oxford_land,2012-12-29,et0,0.002 +oxford_land,2012-12-30,et0,0.002 +oxford_land,2012-12-31,et0,0.002 +oxford_land,2013-01-01,et0,0.002 +oxford_land,2013-01-02,et0,0.002 +oxford_land,2013-01-03,et0,0.002 +oxford_land,2013-01-04,et0,0.002 +oxford_land,2013-01-05,et0,0.002 +oxford_land,2013-01-06,et0,0.002 +oxford_land,2013-01-07,et0,0.002 +oxford_land,2013-01-08,et0,0.002 +oxford_land,2013-01-09,et0,0.002 +oxford_land,2013-01-10,et0,0.002 +oxford_land,2013-01-11,et0,0.002 +oxford_land,2013-01-12,et0,0.002 +oxford_land,2013-01-13,et0,0.002 +oxford_land,2013-01-14,et0,0.002 +oxford_land,2013-01-15,et0,0.002 +oxford_land,2013-01-16,et0,0.002 +oxford_land,2013-01-17,et0,0.002 +oxford_land,2013-01-18,et0,0.002 +oxford_land,2013-01-19,et0,0.002 +oxford_land,2013-01-20,et0,0.002 +oxford_land,2013-01-21,et0,0.002 +oxford_land,2013-01-22,et0,0.002 +oxford_land,2013-01-23,et0,0.002 +oxford_land,2013-01-24,et0,0.002 +oxford_land,2013-01-25,et0,0.002 +oxford_land,2013-01-26,et0,0.002 +oxford_land,2013-01-27,et0,0.002 +oxford_land,2013-01-28,et0,0.002 +oxford_land,2013-01-29,et0,0.002 +oxford_land,2013-01-30,et0,0.002 +oxford_land,2013-01-31,et0,0.002 +oxford_land,2013-02-01,et0,0.002 +oxford_land,2013-02-02,et0,0.002 +oxford_land,2013-02-03,et0,0.002 +oxford_land,2013-02-04,et0,0.002 +oxford_land,2013-02-05,et0,0.002 +oxford_land,2013-02-06,et0,0.002 +oxford_land,2013-02-07,et0,0.002 +oxford_land,2013-02-08,et0,0.002 +oxford_land,2013-02-09,et0,0.002 +oxford_land,2013-02-10,et0,0.002 +oxford_land,2013-02-11,et0,0.002 +oxford_land,2013-02-12,et0,0.002 +oxford_land,2013-02-13,et0,0.002 +oxford_land,2013-02-14,et0,0.002 +oxford_land,2013-02-15,et0,0.002 +oxford_land,2013-02-16,et0,0.002 +oxford_land,2013-02-17,et0,0.002 +oxford_land,2013-02-18,et0,0.002 +oxford_land,2013-02-19,et0,0.002 +oxford_land,2013-02-20,et0,0.002 +oxford_land,2013-02-21,et0,0.002 +oxford_land,2013-02-22,et0,0.002 +oxford_land,2013-02-23,et0,0.002 +oxford_land,2013-02-24,et0,0.002 +oxford_land,2013-02-25,et0,0.002 +oxford_land,2009-03-03,temperature,7.625 +oxford_land,2009-03-04,temperature,7.495833333 +oxford_land,2009-03-05,temperature,7.366666667 +oxford_land,2009-03-06,temperature,7.2375 +oxford_land,2009-03-07,temperature,7.108333333 +oxford_land,2009-03-08,temperature,6.979166667 +oxford_land,2009-03-09,temperature,6.85 +oxford_land,2009-03-10,temperature,7.289285714 +oxford_land,2009-03-11,temperature,7.728571429 +oxford_land,2009-03-12,temperature,8.167857143 +oxford_land,2009-03-13,temperature,8.607142857 +oxford_land,2009-03-14,temperature,9.046428571 +oxford_land,2009-03-15,temperature,9.485714286 +oxford_land,2009-03-16,temperature,9.925 +oxford_land,2009-03-17,temperature,9.70625 +oxford_land,2009-03-18,temperature,9.4875 +oxford_land,2009-03-19,temperature,9.26875 +oxford_land,2009-03-20,temperature,9.05 +oxford_land,2009-03-21,temperature,8.83125 +oxford_land,2009-03-22,temperature,8.6125 +oxford_land,2009-03-23,temperature,8.39375 +oxford_land,2009-03-24,temperature,8.175 +oxford_land,2009-03-25,temperature,8.296875 +oxford_land,2009-03-26,temperature,8.41875 +oxford_land,2009-03-27,temperature,8.540625 +oxford_land,2009-03-28,temperature,8.6625 +oxford_land,2009-03-29,temperature,8.784375 +oxford_land,2009-03-30,temperature,8.90625 +oxford_land,2009-03-31,temperature,9.028125 +oxford_land,2009-04-01,temperature,9.15 +oxford_land,2009-04-02,temperature,9.55 +oxford_land,2009-04-03,temperature,9.95 +oxford_land,2009-04-04,temperature,10.35 +oxford_land,2009-04-05,temperature,10.75 +oxford_land,2009-04-06,temperature,11.15 +oxford_land,2009-04-07,temperature,11.23125 +oxford_land,2009-04-08,temperature,11.3125 +oxford_land,2009-04-09,temperature,11.39375 +oxford_land,2009-04-10,temperature,11.475 +oxford_land,2009-04-11,temperature,11.55625 +oxford_land,2009-04-12,temperature,11.6375 +oxford_land,2009-04-13,temperature,11.71875 +oxford_land,2009-04-14,temperature,11.8 +oxford_land,2009-04-15,temperature,11.85416667 +oxford_land,2009-04-16,temperature,11.90833333 +oxford_land,2009-04-17,temperature,11.9625 +oxford_land,2009-04-18,temperature,12.01666667 +oxford_land,2009-04-19,temperature,12.07083333 +oxford_land,2009-04-20,temperature,12.125 +oxford_land,2009-04-21,temperature,12.1 +oxford_land,2009-04-22,temperature,12.075 +oxford_land,2009-04-23,temperature,12.05 +oxford_land,2009-04-24,temperature,12.025 +oxford_land,2009-04-25,temperature,12 +oxford_land,2009-04-26,temperature,11.975 +oxford_land,2009-04-27,temperature,11.95 +oxford_land,2009-04-28,temperature,12.075 +oxford_land,2009-04-29,temperature,12.2 +oxford_land,2009-04-30,temperature,12.325 +oxford_land,2009-05-01,temperature,12.45 +oxford_land,2009-05-02,temperature,12.575 +oxford_land,2009-05-03,temperature,12.7 +oxford_land,2009-05-04,temperature,12.825 +oxford_land,2009-05-05,temperature,12.95 +oxford_land,2009-05-06,temperature,13.15 +oxford_land,2009-05-07,temperature,13.35 +oxford_land,2009-05-08,temperature,13.55 +oxford_land,2009-05-09,temperature,13.75 +oxford_land,2009-05-10,temperature,13.95 +oxford_land,2009-05-11,temperature,14.15 +oxford_land,2009-05-12,temperature,14 +oxford_land,2009-05-13,temperature,13.85 +oxford_land,2009-05-14,temperature,13.7 +oxford_land,2009-05-15,temperature,13.55 +oxford_land,2009-05-16,temperature,13.4 +oxford_land,2009-05-17,temperature,13.25 +oxford_land,2009-05-18,temperature,13.1 +oxford_land,2009-05-19,temperature,13.64375 +oxford_land,2009-05-20,temperature,14.1875 +oxford_land,2009-05-21,temperature,14.73125 +oxford_land,2009-05-22,temperature,15.275 +oxford_land,2009-05-23,temperature,15.81875 +oxford_land,2009-05-24,temperature,16.3625 +oxford_land,2009-05-25,temperature,16.90625 +oxford_land,2009-05-26,temperature,17.45 +oxford_land,2009-05-27,temperature,17.81666667 +oxford_land,2009-05-28,temperature,18.18333333 +oxford_land,2009-05-29,temperature,18.55 +oxford_land,2009-05-30,temperature,18.91666667 +oxford_land,2009-05-31,temperature,19.28333333 +oxford_land,2009-06-01,temperature,19.65 +oxford_land,2009-06-02,temperature,18.99285714 +oxford_land,2009-06-03,temperature,18.33571429 +oxford_land,2009-06-04,temperature,17.67857143 +oxford_land,2009-06-05,temperature,17.02142857 +oxford_land,2009-06-06,temperature,16.36428571 +oxford_land,2009-06-07,temperature,15.70714286 +oxford_land,2009-06-08,temperature,15.05 +oxford_land,2009-06-09,temperature,15.60357143 +oxford_land,2009-06-10,temperature,16.15714286 +oxford_land,2009-06-11,temperature,16.71071429 +oxford_land,2009-06-12,temperature,17.26428571 +oxford_land,2009-06-13,temperature,17.81785714 +oxford_land,2009-06-14,temperature,18.37142857 +oxford_land,2009-06-15,temperature,18.925 +oxford_land,2009-06-16,temperature,18.69285714 +oxford_land,2009-06-17,temperature,18.46071429 +oxford_land,2009-06-18,temperature,18.22857143 +oxford_land,2009-06-19,temperature,17.99642857 +oxford_land,2009-06-20,temperature,17.76428571 +oxford_land,2009-06-21,temperature,17.53214286 +oxford_land,2009-06-22,temperature,17.3 +oxford_land,2009-06-23,temperature,17.95357143 +oxford_land,2009-06-24,temperature,18.60714286 +oxford_land,2009-06-25,temperature,19.26071429 +oxford_land,2009-06-26,temperature,19.91428571 +oxford_land,2009-06-27,temperature,20.56785714 +oxford_land,2009-06-28,temperature,21.22142857 +oxford_land,2009-06-29,temperature,21.875 +oxford_land,2009-06-30,temperature,21.62857143 +oxford_land,2009-07-01,temperature,21.38214286 +oxford_land,2009-07-02,temperature,21.13571429 +oxford_land,2009-07-03,temperature,20.88928571 +oxford_land,2009-07-04,temperature,20.64285714 +oxford_land,2009-07-05,temperature,20.39642857 +oxford_land,2009-07-06,temperature,20.15 +oxford_land,2009-07-07,temperature,19.97857143 +oxford_land,2009-07-08,temperature,19.80714286 +oxford_land,2009-07-09,temperature,19.63571429 +oxford_land,2009-07-10,temperature,19.46428571 +oxford_land,2009-07-11,temperature,19.29285714 +oxford_land,2009-07-12,temperature,19.12142857 +oxford_land,2009-07-13,temperature,18.95 +oxford_land,2009-07-14,temperature,18.82142857 +oxford_land,2009-07-15,temperature,18.69285714 +oxford_land,2009-07-16,temperature,18.56428571 +oxford_land,2009-07-17,temperature,18.43571429 +oxford_land,2009-07-18,temperature,18.30714286 +oxford_land,2009-07-19,temperature,18.17857143 +oxford_land,2009-07-20,temperature,18.05 +oxford_land,2009-07-21,temperature,18.01428571 +oxford_land,2009-07-22,temperature,17.97857143 +oxford_land,2009-07-23,temperature,17.94285714 +oxford_land,2009-07-24,temperature,17.90714286 +oxford_land,2009-07-25,temperature,17.87142857 +oxford_land,2009-07-26,temperature,17.83571429 +oxford_land,2009-07-27,temperature,17.8 +oxford_land,2009-07-28,temperature,17.809375 +oxford_land,2009-07-29,temperature,17.81875 +oxford_land,2009-07-30,temperature,17.828125 +oxford_land,2009-07-31,temperature,17.8375 +oxford_land,2009-08-01,temperature,17.846875 +oxford_land,2009-08-02,temperature,17.85625 +oxford_land,2009-08-03,temperature,17.865625 +oxford_land,2009-08-04,temperature,17.875 +oxford_land,2009-08-05,temperature,17.95416667 +oxford_land,2009-08-06,temperature,18.03333333 +oxford_land,2009-08-07,temperature,18.1125 +oxford_land,2009-08-08,temperature,18.19166667 +oxford_land,2009-08-09,temperature,18.27083333 +oxford_land,2009-08-10,temperature,18.35 +oxford_land,2009-08-11,temperature,18.475 +oxford_land,2009-08-12,temperature,18.6 +oxford_land,2009-08-13,temperature,18.725 +oxford_land,2009-08-14,temperature,18.85 +oxford_land,2009-08-15,temperature,18.975 +oxford_land,2009-08-16,temperature,19.1 +oxford_land,2009-08-17,temperature,19.225 +oxford_land,2009-08-18,temperature,19.14642857 +oxford_land,2009-08-19,temperature,19.06785714 +oxford_land,2009-08-20,temperature,18.98928571 +oxford_land,2009-08-21,temperature,18.91071429 +oxford_land,2009-08-22,temperature,18.83214286 +oxford_land,2009-08-23,temperature,18.75357143 +oxford_land,2009-08-24,temperature,18.675 +oxford_land,2009-08-25,temperature,18.43611111 +oxford_land,2009-08-26,temperature,18.19722222 +oxford_land,2009-08-27,temperature,17.95833333 +oxford_land,2009-08-28,temperature,17.71944444 +oxford_land,2009-08-29,temperature,17.48055556 +oxford_land,2009-08-30,temperature,17.24166667 +oxford_land,2009-08-31,temperature,17.00277778 +oxford_land,2009-09-01,temperature,16.76388889 +oxford_land,2009-09-02,temperature,16.525 +oxford_land,2009-09-03,temperature,16.425 +oxford_land,2009-09-04,temperature,16.325 +oxford_land,2009-09-05,temperature,16.225 +oxford_land,2009-09-06,temperature,16.125 +oxford_land,2009-09-07,temperature,16.025 +oxford_land,2009-09-08,temperature,16.1 +oxford_land,2009-09-09,temperature,16.175 +oxford_land,2009-09-10,temperature,16.25 +oxford_land,2009-09-11,temperature,16.325 +oxford_land,2009-09-12,temperature,16.4 +oxford_land,2009-09-13,temperature,16.475 +oxford_land,2009-09-14,temperature,16.55 +oxford_land,2009-09-15,temperature,16.625 +oxford_land,2009-09-16,temperature,16.675 +oxford_land,2009-09-17,temperature,16.725 +oxford_land,2009-09-18,temperature,16.775 +oxford_land,2009-09-19,temperature,16.825 +oxford_land,2009-09-20,temperature,16.875 +oxford_land,2009-09-21,temperature,16.925 +oxford_land,2009-09-22,temperature,16.975 +oxford_land,2009-09-23,temperature,17.03571429 +oxford_land,2009-09-24,temperature,17.09642857 +oxford_land,2009-09-25,temperature,17.15714286 +oxford_land,2009-09-26,temperature,17.21785714 +oxford_land,2009-09-27,temperature,17.27857143 +oxford_land,2009-09-28,temperature,17.33928571 +oxford_land,2009-09-29,temperature,17.4 +oxford_land,2009-09-30,temperature,16.92916667 +oxford_land,2009-10-01,temperature,16.45833333 +oxford_land,2009-10-02,temperature,15.9875 +oxford_land,2009-10-03,temperature,15.51666667 +oxford_land,2009-10-04,temperature,15.04583333 +oxford_land,2009-10-05,temperature,14.575 +oxford_land,2009-10-06,temperature,14.478125 +oxford_land,2009-10-07,temperature,14.38125 +oxford_land,2009-10-08,temperature,14.284375 +oxford_land,2009-10-09,temperature,14.1875 +oxford_land,2009-10-10,temperature,14.090625 +oxford_land,2009-10-11,temperature,13.99375 +oxford_land,2009-10-12,temperature,13.896875 +oxford_land,2009-10-13,temperature,13.8 +oxford_land,2009-10-14,temperature,13.45357143 +oxford_land,2009-10-15,temperature,13.10714286 +oxford_land,2009-10-16,temperature,12.76071429 +oxford_land,2009-10-17,temperature,12.41428571 +oxford_land,2009-10-18,temperature,12.06785714 +oxford_land,2009-10-19,temperature,11.72142857 +oxford_land,2009-10-20,temperature,11.375 +oxford_land,2009-10-21,temperature,11.83928571 +oxford_land,2009-10-22,temperature,12.30357143 +oxford_land,2009-10-23,temperature,12.76785714 +oxford_land,2009-10-24,temperature,13.23214286 +oxford_land,2009-10-25,temperature,13.69642857 +oxford_land,2009-10-26,temperature,14.16071429 +oxford_land,2009-10-27,temperature,14.625 +oxford_land,2009-10-28,temperature,14.45714286 +oxford_land,2009-10-29,temperature,14.28928571 +oxford_land,2009-10-30,temperature,14.12142857 +oxford_land,2009-10-31,temperature,13.95357143 +oxford_land,2009-11-01,temperature,13.78571429 +oxford_land,2009-11-02,temperature,13.61785714 +oxford_land,2009-11-03,temperature,13.45 +oxford_land,2009-11-04,temperature,12.99642857 +oxford_land,2009-11-05,temperature,12.54285714 +oxford_land,2009-11-06,temperature,12.08928571 +oxford_land,2009-11-07,temperature,11.63571429 +oxford_land,2009-11-08,temperature,11.18214286 +oxford_land,2009-11-09,temperature,10.72857143 +oxford_land,2009-11-10,temperature,10.275 +oxford_land,2009-11-11,temperature,10.175 +oxford_land,2009-11-12,temperature,10.075 +oxford_land,2009-11-13,temperature,9.975 +oxford_land,2009-11-14,temperature,9.875 +oxford_land,2009-11-15,temperature,9.775 +oxford_land,2009-11-16,temperature,9.675 +oxford_land,2009-11-17,temperature,9.575 +oxford_land,2009-11-18,temperature,9.610714286 +oxford_land,2009-11-19,temperature,9.646428571 +oxford_land,2009-11-20,temperature,9.682142857 +oxford_land,2009-11-21,temperature,9.717857143 +oxford_land,2009-11-22,temperature,9.753571429 +oxford_land,2009-11-23,temperature,9.789285714 +oxford_land,2009-11-24,temperature,9.825 +oxford_land,2009-11-25,temperature,9.335714286 +oxford_land,2009-11-26,temperature,8.846428571 +oxford_land,2009-11-27,temperature,8.357142857 +oxford_land,2009-11-28,temperature,7.867857143 +oxford_land,2009-11-29,temperature,7.378571429 +oxford_land,2009-11-30,temperature,6.889285714 +oxford_land,2009-12-01,temperature,6.4 +oxford_land,2009-12-02,temperature,6.692857143 +oxford_land,2009-12-03,temperature,6.985714286 +oxford_land,2009-12-04,temperature,7.278571429 +oxford_land,2009-12-05,temperature,7.571428571 +oxford_land,2009-12-06,temperature,7.864285714 +oxford_land,2009-12-07,temperature,8.157142857 +oxford_land,2009-12-08,temperature,8.45 +oxford_land,2009-12-09,temperature,8.19375 +oxford_land,2009-12-10,temperature,7.9375 +oxford_land,2009-12-11,temperature,7.68125 +oxford_land,2009-12-12,temperature,7.425 +oxford_land,2009-12-13,temperature,7.16875 +oxford_land,2009-12-14,temperature,6.9125 +oxford_land,2009-12-15,temperature,6.65625 +oxford_land,2009-12-16,temperature,6.4 +oxford_land,2009-12-17,temperature,6.21 +oxford_land,2009-12-18,temperature,6.02 +oxford_land,2009-12-19,temperature,5.83 +oxford_land,2009-12-20,temperature,5.64 +oxford_land,2009-12-21,temperature,5.45 +oxford_land,2009-12-22,temperature,5.26 +oxford_land,2009-12-23,temperature,5.07 +oxford_land,2009-12-24,temperature,4.88 +oxford_land,2009-12-25,temperature,4.69 +oxford_land,2009-12-26,temperature,4.5 +oxford_land,2009-12-27,temperature,4.31 +oxford_land,2009-12-28,temperature,4.12 +oxford_land,2009-12-29,temperature,3.93 +oxford_land,2009-12-30,temperature,3.74 +oxford_land,2009-12-31,temperature,3.55 +oxford_land,2010-01-01,temperature,3.36 +oxford_land,2010-01-02,temperature,3.17 +oxford_land,2010-01-03,temperature,2.98 +oxford_land,2010-01-04,temperature,2.79 +oxford_land,2010-01-05,temperature,2.6 +oxford_land,2010-01-06,temperature,2.646428571 +oxford_land,2010-01-07,temperature,2.692857143 +oxford_land,2010-01-08,temperature,2.739285714 +oxford_land,2010-01-09,temperature,2.785714286 +oxford_land,2010-01-10,temperature,2.832142857 +oxford_land,2010-01-11,temperature,2.878571429 +oxford_land,2010-01-12,temperature,2.925 +oxford_land,2010-01-13,temperature,3.328571429 +oxford_land,2010-01-14,temperature,3.732142857 +oxford_land,2010-01-15,temperature,4.135714286 +oxford_land,2010-01-16,temperature,4.539285714 +oxford_land,2010-01-17,temperature,4.942857143 +oxford_land,2010-01-18,temperature,5.346428571 +oxford_land,2010-01-19,temperature,5.75 +oxford_land,2010-01-20,temperature,5.628571429 +oxford_land,2010-01-21,temperature,5.507142857 +oxford_land,2010-01-22,temperature,5.385714286 +oxford_land,2010-01-23,temperature,5.264285714 +oxford_land,2010-01-24,temperature,5.142857143 +oxford_land,2010-01-25,temperature,5.021428571 +oxford_land,2010-01-26,temperature,4.9 +oxford_land,2010-01-27,temperature,4.910714286 +oxford_land,2010-01-28,temperature,4.921428571 +oxford_land,2010-01-29,temperature,4.932142857 +oxford_land,2010-01-30,temperature,4.942857143 +oxford_land,2010-01-31,temperature,4.953571429 +oxford_land,2010-02-01,temperature,4.964285714 +oxford_land,2010-02-02,temperature,4.975 +oxford_land,2010-02-03,temperature,5.021428571 +oxford_land,2010-02-04,temperature,5.067857143 +oxford_land,2010-02-05,temperature,5.114285714 +oxford_land,2010-02-06,temperature,5.160714286 +oxford_land,2010-02-07,temperature,5.207142857 +oxford_land,2010-02-08,temperature,5.253571429 +oxford_land,2010-02-09,temperature,5.3 +oxford_land,2010-02-10,temperature,5.325 +oxford_land,2010-02-11,temperature,5.35 +oxford_land,2010-02-12,temperature,5.375 +oxford_land,2010-02-13,temperature,5.4 +oxford_land,2010-02-14,temperature,5.425 +oxford_land,2010-02-15,temperature,5.45 +oxford_land,2010-02-16,temperature,5.475 +oxford_land,2010-02-17,temperature,5.35 +oxford_land,2010-02-18,temperature,5.225 +oxford_land,2010-02-19,temperature,5.1 +oxford_land,2010-02-20,temperature,4.975 +oxford_land,2010-02-21,temperature,4.85 +oxford_land,2010-02-22,temperature,4.725 +oxford_land,2010-02-23,temperature,4.6 +oxford_land,2010-02-24,temperature,4.935714286 +oxford_land,2010-02-25,temperature,5.271428571 +oxford_land,2010-02-26,temperature,5.607142857 +oxford_land,2010-02-27,temperature,5.942857143 +oxford_land,2010-02-28,temperature,6.278571429 +oxford_land,2010-03-01,temperature,6.614285714 +oxford_land,2010-03-02,temperature,6.95 +oxford_land,2010-03-03,temperature,6.828571429 +oxford_land,2010-03-04,temperature,6.707142857 +oxford_land,2010-03-05,temperature,6.585714286 +oxford_land,2010-03-06,temperature,6.464285714 +oxford_land,2010-03-07,temperature,6.342857143 +oxford_land,2010-03-08,temperature,6.221428571 +oxford_land,2010-03-09,temperature,6.1 +oxford_land,2010-03-10,temperature,6.335714286 +oxford_land,2010-03-11,temperature,6.571428571 +oxford_land,2010-03-12,temperature,6.807142857 +oxford_land,2010-03-13,temperature,7.042857143 +oxford_land,2010-03-14,temperature,7.278571429 +oxford_land,2010-03-15,temperature,7.514285714 +oxford_land,2010-03-16,temperature,7.75 +oxford_land,2010-03-17,temperature,7.992857143 +oxford_land,2010-03-18,temperature,8.235714286 +oxford_land,2010-03-19,temperature,8.478571429 +oxford_land,2010-03-20,temperature,8.721428571 +oxford_land,2010-03-21,temperature,8.964285714 +oxford_land,2010-03-22,temperature,9.207142857 +oxford_land,2010-03-23,temperature,9.45 +oxford_land,2010-03-24,temperature,9.446428571 +oxford_land,2010-03-25,temperature,9.442857143 +oxford_land,2010-03-26,temperature,9.439285714 +oxford_land,2010-03-27,temperature,9.435714286 +oxford_land,2010-03-28,temperature,9.432142857 +oxford_land,2010-03-29,temperature,9.428571429 +oxford_land,2010-03-30,temperature,9.425 +oxford_land,2010-03-31,temperature,9.421428571 +oxford_land,2010-04-01,temperature,9.417857143 +oxford_land,2010-04-02,temperature,9.414285714 +oxford_land,2010-04-03,temperature,9.410714286 +oxford_land,2010-04-04,temperature,9.407142857 +oxford_land,2010-04-05,temperature,9.403571429 +oxford_land,2010-04-06,temperature,9.4 +oxford_land,2010-04-07,temperature,9.246428571 +oxford_land,2010-04-08,temperature,9.092857143 +oxford_land,2010-04-09,temperature,8.939285714 +oxford_land,2010-04-10,temperature,8.785714286 +oxford_land,2010-04-11,temperature,8.632142857 +oxford_land,2010-04-12,temperature,8.478571429 +oxford_land,2010-04-13,temperature,8.325 +oxford_land,2010-04-14,temperature,8.646875 +oxford_land,2010-04-15,temperature,8.96875 +oxford_land,2010-04-16,temperature,9.290625 +oxford_land,2010-04-17,temperature,9.6125 +oxford_land,2010-04-18,temperature,9.934375 +oxford_land,2010-04-19,temperature,10.25625 +oxford_land,2010-04-20,temperature,10.578125 +oxford_land,2010-04-21,temperature,10.9 +oxford_land,2010-04-22,temperature,11.39583333 +oxford_land,2010-04-23,temperature,11.89166667 +oxford_land,2010-04-24,temperature,12.3875 +oxford_land,2010-04-25,temperature,12.88333333 +oxford_land,2010-04-26,temperature,13.37916667 +oxford_land,2010-04-27,temperature,13.875 +oxford_land,2010-04-28,temperature,13.38571429 +oxford_land,2010-04-29,temperature,12.89642857 +oxford_land,2010-04-30,temperature,12.40714286 +oxford_land,2010-05-01,temperature,11.91785714 +oxford_land,2010-05-02,temperature,11.42857143 +oxford_land,2010-05-03,temperature,10.93928571 +oxford_land,2010-05-04,temperature,10.45 +oxford_land,2010-05-05,temperature,10.55 +oxford_land,2010-05-06,temperature,10.65 +oxford_land,2010-05-07,temperature,10.75 +oxford_land,2010-05-08,temperature,10.85 +oxford_land,2010-05-09,temperature,10.95 +oxford_land,2010-05-10,temperature,11.05 +oxford_land,2010-05-11,temperature,11.15 +oxford_land,2010-05-12,temperature,11.36785714 +oxford_land,2010-05-13,temperature,11.58571429 +oxford_land,2010-05-14,temperature,11.80357143 +oxford_land,2010-05-15,temperature,12.02142857 +oxford_land,2010-05-16,temperature,12.23928571 +oxford_land,2010-05-17,temperature,12.45714286 +oxford_land,2010-05-18,temperature,12.675 +oxford_land,2010-05-19,temperature,13.284375 +oxford_land,2010-05-20,temperature,13.89375 +oxford_land,2010-05-21,temperature,14.503125 +oxford_land,2010-05-22,temperature,15.1125 +oxford_land,2010-05-23,temperature,15.721875 +oxford_land,2010-05-24,temperature,16.33125 +oxford_land,2010-05-25,temperature,16.940625 +oxford_land,2010-05-26,temperature,17.55 +oxford_land,2010-05-27,temperature,17.26071429 +oxford_land,2010-05-28,temperature,16.97142857 +oxford_land,2010-05-29,temperature,16.68214286 +oxford_land,2010-05-30,temperature,16.39285714 +oxford_land,2010-05-31,temperature,16.10357143 +oxford_land,2010-06-01,temperature,15.81428571 +oxford_land,2010-06-02,temperature,15.525 +oxford_land,2010-06-03,temperature,15.7125 +oxford_land,2010-06-04,temperature,15.9 +oxford_land,2010-06-05,temperature,16.0875 +oxford_land,2010-06-06,temperature,16.275 +oxford_land,2010-06-07,temperature,16.4625 +oxford_land,2010-06-08,temperature,16.65 +oxford_land,2010-06-09,temperature,16.51071429 +oxford_land,2010-06-10,temperature,16.37142857 +oxford_land,2010-06-11,temperature,16.23214286 +oxford_land,2010-06-12,temperature,16.09285714 +oxford_land,2010-06-13,temperature,15.95357143 +oxford_land,2010-06-14,temperature,15.81428571 +oxford_land,2010-06-15,temperature,15.675 +oxford_land,2010-06-16,temperature,16.12142857 +oxford_land,2010-06-17,temperature,16.56785714 +oxford_land,2010-06-18,temperature,17.01428571 +oxford_land,2010-06-19,temperature,17.46071429 +oxford_land,2010-06-20,temperature,17.90714286 +oxford_land,2010-06-21,temperature,18.35357143 +oxford_land,2010-06-22,temperature,18.8 +oxford_land,2010-06-23,temperature,19.04642857 +oxford_land,2010-06-24,temperature,19.29285714 +oxford_land,2010-06-25,temperature,19.53928571 +oxford_land,2010-06-26,temperature,19.78571429 +oxford_land,2010-06-27,temperature,20.03214286 +oxford_land,2010-06-28,temperature,20.27857143 +oxford_land,2010-06-29,temperature,20.525 +oxford_land,2010-06-30,temperature,20.22857143 +oxford_land,2010-07-01,temperature,19.93214286 +oxford_land,2010-07-02,temperature,19.63571429 +oxford_land,2010-07-03,temperature,19.33928571 +oxford_land,2010-07-04,temperature,19.04285714 +oxford_land,2010-07-05,temperature,18.74642857 +oxford_land,2010-07-06,temperature,18.45 +oxford_land,2010-07-07,temperature,18.43571429 +oxford_land,2010-07-08,temperature,18.42142857 +oxford_land,2010-07-09,temperature,18.40714286 +oxford_land,2010-07-10,temperature,18.39285714 +oxford_land,2010-07-11,temperature,18.37857143 +oxford_land,2010-07-12,temperature,18.36428571 +oxford_land,2010-07-13,temperature,18.35 +oxford_land,2010-07-14,temperature,18.60416667 +oxford_land,2010-07-15,temperature,18.85833333 +oxford_land,2010-07-16,temperature,19.1125 +oxford_land,2010-07-17,temperature,19.36666667 +oxford_land,2010-07-18,temperature,19.62083333 +oxford_land,2010-07-19,temperature,19.875 +oxford_land,2010-07-20,temperature,19.9375 +oxford_land,2010-07-21,temperature,20 +oxford_land,2010-07-22,temperature,20.0625 +oxford_land,2010-07-23,temperature,20.125 +oxford_land,2010-07-24,temperature,20.1875 +oxford_land,2010-07-25,temperature,20.25 +oxford_land,2010-07-26,temperature,20.3125 +oxford_land,2010-07-27,temperature,20.375 +oxford_land,2010-07-28,temperature,20.28214286 +oxford_land,2010-07-29,temperature,20.18928571 +oxford_land,2010-07-30,temperature,20.09642857 +oxford_land,2010-07-31,temperature,20.00357143 +oxford_land,2010-08-01,temperature,19.91071429 +oxford_land,2010-08-02,temperature,19.81785714 +oxford_land,2010-08-03,temperature,19.725 +oxford_land,2010-08-04,temperature,19.38571429 +oxford_land,2010-08-05,temperature,19.04642857 +oxford_land,2010-08-06,temperature,18.70714286 +oxford_land,2010-08-07,temperature,18.36785714 +oxford_land,2010-08-08,temperature,18.02857143 +oxford_land,2010-08-09,temperature,17.68928571 +oxford_land,2010-08-10,temperature,17.35 +oxford_land,2010-08-11,temperature,17.25714286 +oxford_land,2010-08-12,temperature,17.16428571 +oxford_land,2010-08-13,temperature,17.07142857 +oxford_land,2010-08-14,temperature,16.97857143 +oxford_land,2010-08-15,temperature,16.88571429 +oxford_land,2010-08-16,temperature,16.79285714 +oxford_land,2010-08-17,temperature,16.7 +oxford_land,2010-08-18,temperature,16.77142857 +oxford_land,2010-08-19,temperature,16.84285714 +oxford_land,2010-08-20,temperature,16.91428571 +oxford_land,2010-08-21,temperature,16.98571429 +oxford_land,2010-08-22,temperature,17.05714286 +oxford_land,2010-08-23,temperature,17.12857143 +oxford_land,2010-08-24,temperature,17.2 +oxford_land,2010-08-25,temperature,16.85 +oxford_land,2010-08-26,temperature,16.5 +oxford_land,2010-08-27,temperature,16.15 +oxford_land,2010-08-28,temperature,15.8 +oxford_land,2010-08-29,temperature,15.45 +oxford_land,2010-08-30,temperature,15.1 +oxford_land,2010-08-31,temperature,14.75 +oxford_land,2010-09-01,temperature,14.84166667 +oxford_land,2010-09-02,temperature,14.93333333 +oxford_land,2010-09-03,temperature,15.025 +oxford_land,2010-09-04,temperature,15.11666667 +oxford_land,2010-09-05,temperature,15.20833333 +oxford_land,2010-09-06,temperature,15.3 +oxford_land,2010-09-07,temperature,15.325 +oxford_land,2010-09-08,temperature,15.35 +oxford_land,2010-09-09,temperature,15.375 +oxford_land,2010-09-10,temperature,15.4 +oxford_land,2010-09-11,temperature,15.425 +oxford_land,2010-09-12,temperature,15.45 +oxford_land,2010-09-13,temperature,15.475 +oxford_land,2010-09-14,temperature,15.5 +oxford_land,2010-09-15,temperature,15.28214286 +oxford_land,2010-09-16,temperature,15.06428571 +oxford_land,2010-09-17,temperature,14.84642857 +oxford_land,2010-09-18,temperature,14.62857143 +oxford_land,2010-09-19,temperature,14.41071429 +oxford_land,2010-09-20,temperature,14.19285714 +oxford_land,2010-09-21,temperature,13.975 +oxford_land,2010-09-22,temperature,13.75 +oxford_land,2010-09-23,temperature,13.525 +oxford_land,2010-09-24,temperature,13.3 +oxford_land,2010-09-25,temperature,13.075 +oxford_land,2010-09-26,temperature,12.85 +oxford_land,2010-09-27,temperature,12.625 +oxford_land,2010-09-28,temperature,12.4 +oxford_land,2010-09-29,temperature,12.58214286 +oxford_land,2010-09-30,temperature,12.76428571 +oxford_land,2010-10-01,temperature,12.94642857 +oxford_land,2010-10-02,temperature,13.12857143 +oxford_land,2010-10-03,temperature,13.31071429 +oxford_land,2010-10-04,temperature,13.49285714 +oxford_land,2010-10-05,temperature,13.675 +oxford_land,2010-10-06,temperature,13.51428571 +oxford_land,2010-10-07,temperature,13.35357143 +oxford_land,2010-10-08,temperature,13.19285714 +oxford_land,2010-10-09,temperature,13.03214286 +oxford_land,2010-10-10,temperature,12.87142857 +oxford_land,2010-10-11,temperature,12.71071429 +oxford_land,2010-10-12,temperature,12.55 +oxford_land,2010-10-13,temperature,12.16785714 +oxford_land,2010-10-14,temperature,11.78571429 +oxford_land,2010-10-15,temperature,11.40357143 +oxford_land,2010-10-16,temperature,11.02142857 +oxford_land,2010-10-17,temperature,10.63928571 +oxford_land,2010-10-18,temperature,10.25714286 +oxford_land,2010-10-19,temperature,9.875 +oxford_land,2010-10-20,temperature,9.496428571 +oxford_land,2010-10-21,temperature,9.117857143 +oxford_land,2010-10-22,temperature,8.739285714 +oxford_land,2010-10-23,temperature,8.360714286 +oxford_land,2010-10-24,temperature,7.982142857 +oxford_land,2010-10-25,temperature,7.603571429 +oxford_land,2010-10-26,temperature,7.225 +oxford_land,2010-10-27,temperature,7.721428571 +oxford_land,2010-10-28,temperature,8.217857143 +oxford_land,2010-10-29,temperature,8.714285714 +oxford_land,2010-10-30,temperature,9.210714286 +oxford_land,2010-10-31,temperature,9.707142857 +oxford_land,2010-11-01,temperature,10.20357143 +oxford_land,2010-11-02,temperature,10.7 +oxford_land,2010-11-03,temperature,10.325 +oxford_land,2010-11-04,temperature,9.95 +oxford_land,2010-11-05,temperature,9.575 +oxford_land,2010-11-06,temperature,9.2 +oxford_land,2010-11-07,temperature,8.825 +oxford_land,2010-11-08,temperature,8.45 +oxford_land,2010-11-09,temperature,8.075 +oxford_land,2010-11-10,temperature,7.742857143 +oxford_land,2010-11-11,temperature,7.410714286 +oxford_land,2010-11-12,temperature,7.078571429 +oxford_land,2010-11-13,temperature,6.746428571 +oxford_land,2010-11-14,temperature,6.414285714 +oxford_land,2010-11-15,temperature,6.082142857 +oxford_land,2010-11-16,temperature,5.75 +oxford_land,2010-11-17,temperature,5.878571429 +oxford_land,2010-11-18,temperature,6.007142857 +oxford_land,2010-11-19,temperature,6.135714286 +oxford_land,2010-11-20,temperature,6.264285714 +oxford_land,2010-11-21,temperature,6.392857143 +oxford_land,2010-11-22,temperature,6.521428571 +oxford_land,2010-11-23,temperature,6.65 +oxford_land,2010-11-24,temperature,5.903571429 +oxford_land,2010-11-25,temperature,5.157142857 +oxford_land,2010-11-26,temperature,4.410714286 +oxford_land,2010-11-27,temperature,3.664285714 +oxford_land,2010-11-28,temperature,2.917857143 +oxford_land,2010-11-29,temperature,2.171428571 +oxford_land,2010-11-30,temperature,1.425 +oxford_land,2010-12-01,temperature,1.453571429 +oxford_land,2010-12-02,temperature,1.482142857 +oxford_land,2010-12-03,temperature,1.510714286 +oxford_land,2010-12-04,temperature,1.539285714 +oxford_land,2010-12-05,temperature,1.567857143 +oxford_land,2010-12-06,temperature,1.596428571 +oxford_land,2010-12-07,temperature,1.625 +oxford_land,2010-12-08,temperature,1.853571429 +oxford_land,2010-12-09,temperature,2.082142857 +oxford_land,2010-12-10,temperature,2.310714286 +oxford_land,2010-12-11,temperature,2.539285714 +oxford_land,2010-12-12,temperature,2.767857143 +oxford_land,2010-12-13,temperature,2.996428571 +oxford_land,2010-12-14,temperature,3.225 +oxford_land,2010-12-15,temperature,2.807142857 +oxford_land,2010-12-16,temperature,2.389285714 +oxford_land,2010-12-17,temperature,1.971428571 +oxford_land,2010-12-18,temperature,1.553571429 +oxford_land,2010-12-19,temperature,1.135714286 +oxford_land,2010-12-20,temperature,0.717857143 +oxford_land,2010-12-21,temperature,0.3 +oxford_land,2010-12-22,temperature,0.533928571 +oxford_land,2010-12-23,temperature,0.767857143 +oxford_land,2010-12-24,temperature,1.001785714 +oxford_land,2010-12-25,temperature,1.235714286 +oxford_land,2010-12-26,temperature,1.469642857 +oxford_land,2010-12-27,temperature,1.703571429 +oxford_land,2010-12-28,temperature,1.9375 +oxford_land,2010-12-29,temperature,2.171428571 +oxford_land,2010-12-30,temperature,2.405357143 +oxford_land,2010-12-31,temperature,2.639285714 +oxford_land,2011-01-01,temperature,2.873214286 +oxford_land,2011-01-02,temperature,3.107142857 +oxford_land,2011-01-03,temperature,3.341071429 +oxford_land,2011-01-04,temperature,3.575 +oxford_land,2011-01-05,temperature,3.85 +oxford_land,2011-01-06,temperature,4.125 +oxford_land,2011-01-07,temperature,4.4 +oxford_land,2011-01-08,temperature,4.675 +oxford_land,2011-01-09,temperature,4.95 +oxford_land,2011-01-10,temperature,5.225 +oxford_land,2011-01-11,temperature,5.5 +oxford_land,2011-01-12,temperature,5.707142857 +oxford_land,2011-01-13,temperature,5.914285714 +oxford_land,2011-01-14,temperature,6.121428571 +oxford_land,2011-01-15,temperature,6.328571429 +oxford_land,2011-01-16,temperature,6.535714286 +oxford_land,2011-01-17,temperature,6.742857143 +oxford_land,2011-01-18,temperature,6.95 +oxford_land,2011-01-19,temperature,6.8 +oxford_land,2011-01-20,temperature,6.65 +oxford_land,2011-01-21,temperature,6.5 +oxford_land,2011-01-22,temperature,6.35 +oxford_land,2011-01-23,temperature,6.2 +oxford_land,2011-01-24,temperature,6.05 +oxford_land,2011-01-25,temperature,5.9 +oxford_land,2011-01-26,temperature,5.521428571 +oxford_land,2011-01-27,temperature,5.142857143 +oxford_land,2011-01-28,temperature,4.764285714 +oxford_land,2011-01-29,temperature,4.385714286 +oxford_land,2011-01-30,temperature,4.007142857 +oxford_land,2011-01-31,temperature,3.628571429 +oxford_land,2011-02-01,temperature,3.25 +oxford_land,2011-02-02,temperature,3.803571429 +oxford_land,2011-02-03,temperature,4.357142857 +oxford_land,2011-02-04,temperature,4.910714286 +oxford_land,2011-02-05,temperature,5.464285714 +oxford_land,2011-02-06,temperature,6.017857143 +oxford_land,2011-02-07,temperature,6.571428571 +oxford_land,2011-02-08,temperature,7.125 +oxford_land,2011-02-09,temperature,7.15 +oxford_land,2011-02-10,temperature,7.175 +oxford_land,2011-02-11,temperature,7.2 +oxford_land,2011-02-12,temperature,7.225 +oxford_land,2011-02-13,temperature,7.25 +oxford_land,2011-02-14,temperature,7.275 +oxford_land,2011-02-15,temperature,7.134375 +oxford_land,2011-02-16,temperature,6.99375 +oxford_land,2011-02-17,temperature,6.853125 +oxford_land,2011-02-18,temperature,6.7125 +oxford_land,2011-02-19,temperature,6.571875 +oxford_land,2011-02-20,temperature,6.43125 +oxford_land,2011-02-21,temperature,6.290625 +oxford_land,2011-02-22,temperature,6.15 +oxford_land,2011-02-23,temperature,6.035714286 +oxford_land,2011-02-24,temperature,5.921428571 +oxford_land,2011-02-25,temperature,5.807142857 +oxford_land,2011-02-26,temperature,5.692857143 +oxford_land,2011-02-27,temperature,5.578571429 +oxford_land,2011-02-28,temperature,5.464285714 +oxford_land,2011-03-01,temperature,5.35 +oxford_land,2011-03-02,temperature,5.367857143 +oxford_land,2011-03-03,temperature,5.385714286 +oxford_land,2011-03-04,temperature,5.403571429 +oxford_land,2011-03-05,temperature,5.421428571 +oxford_land,2011-03-06,temperature,5.439285714 +oxford_land,2011-03-07,temperature,5.457142857 +oxford_land,2011-03-08,temperature,5.475 +oxford_land,2011-03-09,temperature,5.921428571 +oxford_land,2011-03-10,temperature,6.367857143 +oxford_land,2011-03-11,temperature,6.814285714 +oxford_land,2011-03-12,temperature,7.260714286 +oxford_land,2011-03-13,temperature,7.707142857 +oxford_land,2011-03-14,temperature,8.153571429 +oxford_land,2011-03-15,temperature,8.6 +oxford_land,2011-03-16,temperature,8.782142857 +oxford_land,2011-03-17,temperature,8.964285714 +oxford_land,2011-03-18,temperature,9.146428571 +oxford_land,2011-03-19,temperature,9.328571429 +oxford_land,2011-03-20,temperature,9.510714286 +oxford_land,2011-03-21,temperature,9.692857143 +oxford_land,2011-03-22,temperature,9.875 +oxford_land,2011-03-23,temperature,9.925 +oxford_land,2011-03-24,temperature,9.975 +oxford_land,2011-03-25,temperature,10.025 +oxford_land,2011-03-26,temperature,10.075 +oxford_land,2011-03-27,temperature,10.125 +oxford_land,2011-03-28,temperature,10.175 +oxford_land,2011-03-29,temperature,10.225 +oxford_land,2011-03-30,temperature,10.27142857 +oxford_land,2011-03-31,temperature,10.31785714 +oxford_land,2011-04-01,temperature,10.36428571 +oxford_land,2011-04-02,temperature,10.41071429 +oxford_land,2011-04-03,temperature,10.45714286 +oxford_land,2011-04-04,temperature,10.50357143 +oxford_land,2011-04-05,temperature,10.55 +oxford_land,2011-04-06,temperature,11.0125 +oxford_land,2011-04-07,temperature,11.475 +oxford_land,2011-04-08,temperature,11.9375 +oxford_land,2011-04-09,temperature,12.4 +oxford_land,2011-04-10,temperature,12.8625 +oxford_land,2011-04-11,temperature,13.325 +oxford_land,2011-04-12,temperature,13.275 +oxford_land,2011-04-13,temperature,13.225 +oxford_land,2011-04-14,temperature,13.175 +oxford_land,2011-04-15,temperature,13.125 +oxford_land,2011-04-16,temperature,13.075 +oxford_land,2011-04-17,temperature,13.025 +oxford_land,2011-04-18,temperature,12.975 +oxford_land,2011-04-19,temperature,12.925 +oxford_land,2011-04-20,temperature,13.175 +oxford_land,2011-04-21,temperature,13.425 +oxford_land,2011-04-22,temperature,13.675 +oxford_land,2011-04-23,temperature,13.925 +oxford_land,2011-04-24,temperature,14.175 +oxford_land,2011-04-25,temperature,14.425 +oxford_land,2011-04-26,temperature,14.675 +oxford_land,2011-04-27,temperature,14.41785714 +oxford_land,2011-04-28,temperature,14.16071429 +oxford_land,2011-04-29,temperature,13.90357143 +oxford_land,2011-04-30,temperature,13.64642857 +oxford_land,2011-05-01,temperature,13.38928571 +oxford_land,2011-05-02,temperature,13.13214286 +oxford_land,2011-05-03,temperature,12.875 +oxford_land,2011-05-04,temperature,13.32916667 +oxford_land,2011-05-05,temperature,13.78333333 +oxford_land,2011-05-06,temperature,14.2375 +oxford_land,2011-05-07,temperature,14.69166667 +oxford_land,2011-05-08,temperature,15.14583333 +oxford_land,2011-05-09,temperature,15.6 +oxford_land,2011-05-10,temperature,15.32857143 +oxford_land,2011-05-11,temperature,15.05714286 +oxford_land,2011-05-12,temperature,14.78571429 +oxford_land,2011-05-13,temperature,14.51428571 +oxford_land,2011-05-14,temperature,14.24285714 +oxford_land,2011-05-15,temperature,13.97142857 +oxford_land,2011-05-16,temperature,13.7 +oxford_land,2011-05-17,temperature,13.73125 +oxford_land,2011-05-18,temperature,13.7625 +oxford_land,2011-05-19,temperature,13.79375 +oxford_land,2011-05-20,temperature,13.825 +oxford_land,2011-05-21,temperature,13.85625 +oxford_land,2011-05-22,temperature,13.8875 +oxford_land,2011-05-23,temperature,13.91875 +oxford_land,2011-05-24,temperature,13.95 +oxford_land,2011-05-25,temperature,13.91428571 +oxford_land,2011-05-26,temperature,13.87857143 +oxford_land,2011-05-27,temperature,13.84285714 +oxford_land,2011-05-28,temperature,13.80714286 +oxford_land,2011-05-29,temperature,13.77142857 +oxford_land,2011-05-30,temperature,13.73571429 +oxford_land,2011-05-31,temperature,13.7 +oxford_land,2011-06-01,temperature,13.94285714 +oxford_land,2011-06-02,temperature,14.18571429 +oxford_land,2011-06-03,temperature,14.42857143 +oxford_land,2011-06-04,temperature,14.67142857 +oxford_land,2011-06-05,temperature,14.91428571 +oxford_land,2011-06-06,temperature,15.15714286 +oxford_land,2011-06-07,temperature,15.4 +oxford_land,2011-06-08,temperature,15.36785714 +oxford_land,2011-06-09,temperature,15.33571429 +oxford_land,2011-06-10,temperature,15.30357143 +oxford_land,2011-06-11,temperature,15.27142857 +oxford_land,2011-06-12,temperature,15.23928571 +oxford_land,2011-06-13,temperature,15.20714286 +oxford_land,2011-06-14,temperature,15.175 +oxford_land,2011-06-15,temperature,15.325 +oxford_land,2011-06-16,temperature,15.475 +oxford_land,2011-06-17,temperature,15.625 +oxford_land,2011-06-18,temperature,15.775 +oxford_land,2011-06-19,temperature,15.925 +oxford_land,2011-06-20,temperature,16.075 +oxford_land,2011-06-21,temperature,16.225 +oxford_land,2011-06-22,temperature,16.51428571 +oxford_land,2011-06-23,temperature,16.80357143 +oxford_land,2011-06-24,temperature,17.09285714 +oxford_land,2011-06-25,temperature,17.38214286 +oxford_land,2011-06-26,temperature,17.67142857 +oxford_land,2011-06-27,temperature,17.96071429 +oxford_land,2011-06-28,temperature,18.25 +oxford_land,2011-06-29,temperature,18.21071429 +oxford_land,2011-06-30,temperature,18.17142857 +oxford_land,2011-07-01,temperature,18.13214286 +oxford_land,2011-07-02,temperature,18.09285714 +oxford_land,2011-07-03,temperature,18.05357143 +oxford_land,2011-07-04,temperature,18.01428571 +oxford_land,2011-07-05,temperature,17.975 +oxford_land,2011-07-06,temperature,17.85 +oxford_land,2011-07-07,temperature,17.725 +oxford_land,2011-07-08,temperature,17.6 +oxford_land,2011-07-09,temperature,17.475 +oxford_land,2011-07-10,temperature,17.35 +oxford_land,2011-07-11,temperature,17.225 +oxford_land,2011-07-12,temperature,17.1 +oxford_land,2011-07-13,temperature,16.975 +oxford_land,2011-07-14,temperature,16.85 +oxford_land,2011-07-15,temperature,16.725 +oxford_land,2011-07-16,temperature,16.6 +oxford_land,2011-07-17,temperature,16.475 +oxford_land,2011-07-18,temperature,16.35 +oxford_land,2011-07-19,temperature,16.225 +oxford_land,2011-07-20,temperature,16.28928571 +oxford_land,2011-07-21,temperature,16.35357143 +oxford_land,2011-07-22,temperature,16.41785714 +oxford_land,2011-07-23,temperature,16.48214286 +oxford_land,2011-07-24,temperature,16.54642857 +oxford_land,2011-07-25,temperature,16.61071429 +oxford_land,2011-07-26,temperature,16.675 +oxford_land,2011-07-27,temperature,17.06071429 +oxford_land,2011-07-28,temperature,17.44642857 +oxford_land,2011-07-29,temperature,17.83214286 +oxford_land,2011-07-30,temperature,18.21785714 +oxford_land,2011-07-31,temperature,18.60357143 +oxford_land,2011-08-01,temperature,18.98928571 +oxford_land,2011-08-02,temperature,19.375 +oxford_land,2011-08-03,temperature,18.90357143 +oxford_land,2011-08-04,temperature,18.43214286 +oxford_land,2011-08-05,temperature,17.96071429 +oxford_land,2011-08-06,temperature,17.48928571 +oxford_land,2011-08-07,temperature,17.01785714 +oxford_land,2011-08-08,temperature,16.54642857 +oxford_land,2011-08-09,temperature,16.075 +oxford_land,2011-08-10,temperature,16.17142857 +oxford_land,2011-08-11,temperature,16.26785714 +oxford_land,2011-08-12,temperature,16.36428571 +oxford_land,2011-08-13,temperature,16.46071429 +oxford_land,2011-08-14,temperature,16.55714286 +oxford_land,2011-08-15,temperature,16.65357143 +oxford_land,2011-08-16,temperature,16.75 +oxford_land,2011-08-17,temperature,16.57857143 +oxford_land,2011-08-18,temperature,16.40714286 +oxford_land,2011-08-19,temperature,16.23571429 +oxford_land,2011-08-20,temperature,16.06428571 +oxford_land,2011-08-21,temperature,15.89285714 +oxford_land,2011-08-22,temperature,15.72142857 +oxford_land,2011-08-23,temperature,15.55 +oxford_land,2011-08-24,temperature,15.52857143 +oxford_land,2011-08-25,temperature,15.50714286 +oxford_land,2011-08-26,temperature,15.48571429 +oxford_land,2011-08-27,temperature,15.46428571 +oxford_land,2011-08-28,temperature,15.44285714 +oxford_land,2011-08-29,temperature,15.42142857 +oxford_land,2011-08-30,temperature,15.4 +oxford_land,2011-08-31,temperature,15.39642857 +oxford_land,2011-09-01,temperature,15.39285714 +oxford_land,2011-09-02,temperature,15.38928571 +oxford_land,2011-09-03,temperature,15.38571429 +oxford_land,2011-09-04,temperature,15.38214286 +oxford_land,2011-09-05,temperature,15.37857143 +oxford_land,2011-09-06,temperature,15.375 +oxford_land,2011-09-07,temperature,15.30714286 +oxford_land,2011-09-08,temperature,15.23928571 +oxford_land,2011-09-09,temperature,15.17142857 +oxford_land,2011-09-10,temperature,15.10357143 +oxford_land,2011-09-11,temperature,15.03571429 +oxford_land,2011-09-12,temperature,14.96785714 +oxford_land,2011-09-13,temperature,14.9 +oxford_land,2011-09-14,temperature,14.83214286 +oxford_land,2011-09-15,temperature,14.76428571 +oxford_land,2011-09-16,temperature,14.69642857 +oxford_land,2011-09-17,temperature,14.62857143 +oxford_land,2011-09-18,temperature,14.56071429 +oxford_land,2011-09-19,temperature,14.49285714 +oxford_land,2011-09-20,temperature,14.425 +oxford_land,2011-09-21,temperature,14.48333333 +oxford_land,2011-09-22,temperature,14.54166667 +oxford_land,2011-09-23,temperature,14.6 +oxford_land,2011-09-24,temperature,14.65833333 +oxford_land,2011-09-25,temperature,14.71666667 +oxford_land,2011-09-26,temperature,14.775 +oxford_land,2011-09-27,temperature,14.909375 +oxford_land,2011-09-28,temperature,15.04375 +oxford_land,2011-09-29,temperature,15.178125 +oxford_land,2011-09-30,temperature,15.3125 +oxford_land,2011-10-01,temperature,15.446875 +oxford_land,2011-10-02,temperature,15.58125 +oxford_land,2011-10-03,temperature,15.715625 +oxford_land,2011-10-04,temperature,15.85 +oxford_land,2011-10-05,temperature,15.67857143 +oxford_land,2011-10-06,temperature,15.50714286 +oxford_land,2011-10-07,temperature,15.33571429 +oxford_land,2011-10-08,temperature,15.16428571 +oxford_land,2011-10-09,temperature,14.99285714 +oxford_land,2011-10-10,temperature,14.82142857 +oxford_land,2011-10-11,temperature,14.65 +oxford_land,2011-10-12,temperature,14.11785714 +oxford_land,2011-10-13,temperature,13.58571429 +oxford_land,2011-10-14,temperature,13.05357143 +oxford_land,2011-10-15,temperature,12.52142857 +oxford_land,2011-10-16,temperature,11.98928571 +oxford_land,2011-10-17,temperature,11.45714286 +oxford_land,2011-10-18,temperature,10.925 +oxford_land,2011-10-19,temperature,10.95357143 +oxford_land,2011-10-20,temperature,10.98214286 +oxford_land,2011-10-21,temperature,11.01071429 +oxford_land,2011-10-22,temperature,11.03928571 +oxford_land,2011-10-23,temperature,11.06785714 +oxford_land,2011-10-24,temperature,11.09642857 +oxford_land,2011-10-25,temperature,11.125 +oxford_land,2011-10-26,temperature,11.30357143 +oxford_land,2011-10-27,temperature,11.48214286 +oxford_land,2011-10-28,temperature,11.66071429 +oxford_land,2011-10-29,temperature,11.83928571 +oxford_land,2011-10-30,temperature,12.01785714 +oxford_land,2011-10-31,temperature,12.19642857 +oxford_land,2011-11-01,temperature,12.375 +oxford_land,2011-11-02,temperature,11.77857143 +oxford_land,2011-11-03,temperature,11.18214286 +oxford_land,2011-11-04,temperature,10.58571429 +oxford_land,2011-11-05,temperature,9.989285714 +oxford_land,2011-11-06,temperature,9.392857143 +oxford_land,2011-11-07,temperature,8.796428571 +oxford_land,2011-11-08,temperature,8.2 +oxford_land,2011-11-09,temperature,8.510714286 +oxford_land,2011-11-10,temperature,8.821428571 +oxford_land,2011-11-11,temperature,9.132142857 +oxford_land,2011-11-12,temperature,9.442857143 +oxford_land,2011-11-13,temperature,9.753571429 +oxford_land,2011-11-14,temperature,10.06428571 +oxford_land,2011-11-15,temperature,10.375 +oxford_land,2011-11-16,temperature,10.23928571 +oxford_land,2011-11-17,temperature,10.10357143 +oxford_land,2011-11-18,temperature,9.967857143 +oxford_land,2011-11-19,temperature,9.832142857 +oxford_land,2011-11-20,temperature,9.696428571 +oxford_land,2011-11-21,temperature,9.560714286 +oxford_land,2011-11-22,temperature,9.425 +oxford_land,2011-11-23,temperature,9.317857143 +oxford_land,2011-11-24,temperature,9.210714286 +oxford_land,2011-11-25,temperature,9.103571429 +oxford_land,2011-11-26,temperature,8.996428571 +oxford_land,2011-11-27,temperature,8.889285714 +oxford_land,2011-11-28,temperature,8.782142857 +oxford_land,2011-11-29,temperature,8.675 +oxford_land,2011-11-30,temperature,8.175 +oxford_land,2011-12-01,temperature,7.675 +oxford_land,2011-12-02,temperature,7.175 +oxford_land,2011-12-03,temperature,6.675 +oxford_land,2011-12-04,temperature,6.175 +oxford_land,2011-12-05,temperature,5.675 +oxford_land,2011-12-06,temperature,5.175 +oxford_land,2011-12-07,temperature,5.217857143 +oxford_land,2011-12-08,temperature,5.260714286 +oxford_land,2011-12-09,temperature,5.303571429 +oxford_land,2011-12-10,temperature,5.346428571 +oxford_land,2011-12-11,temperature,5.389285714 +oxford_land,2011-12-12,temperature,5.432142857 +oxford_land,2011-12-13,temperature,5.475 +oxford_land,2011-12-14,temperature,5.104166667 +oxford_land,2011-12-15,temperature,4.733333333 +oxford_land,2011-12-16,temperature,4.3625 +oxford_land,2011-12-17,temperature,3.991666667 +oxford_land,2011-12-18,temperature,3.620833333 +oxford_land,2011-12-19,temperature,3.25 +oxford_land,2011-12-20,temperature,3.563333333 +oxford_land,2011-12-21,temperature,3.876666667 +oxford_land,2011-12-22,temperature,4.19 +oxford_land,2011-12-23,temperature,4.503333333 +oxford_land,2011-12-24,temperature,4.816666667 +oxford_land,2011-12-25,temperature,5.13 +oxford_land,2011-12-26,temperature,5.443333333 +oxford_land,2011-12-27,temperature,5.756666667 +oxford_land,2011-12-28,temperature,6.07 +oxford_land,2011-12-29,temperature,6.383333333 +oxford_land,2011-12-30,temperature,6.696666667 +oxford_land,2011-12-31,temperature,7.01 +oxford_land,2012-01-01,temperature,7.323333333 +oxford_land,2012-01-02,temperature,7.636666667 +oxford_land,2012-01-03,temperature,7.95 +oxford_land,2012-01-04,temperature,7.985714286 +oxford_land,2012-01-05,temperature,8.021428571 +oxford_land,2012-01-06,temperature,8.057142857 +oxford_land,2012-01-07,temperature,8.092857143 +oxford_land,2012-01-08,temperature,8.128571429 +oxford_land,2012-01-09,temperature,8.164285714 +oxford_land,2012-01-10,temperature,8.2 +oxford_land,2012-01-11,temperature,7.345833333 +oxford_land,2012-01-12,temperature,6.491666667 +oxford_land,2012-01-13,temperature,5.6375 +oxford_land,2012-01-14,temperature,4.783333333 +oxford_land,2012-01-15,temperature,3.929166667 +oxford_land,2012-01-16,temperature,3.075 +oxford_land,2012-01-17,temperature,3.44375 +oxford_land,2012-01-18,temperature,3.8125 +oxford_land,2012-01-19,temperature,4.18125 +oxford_land,2012-01-20,temperature,4.55 +oxford_land,2012-01-21,temperature,4.91875 +oxford_land,2012-01-22,temperature,5.2875 +oxford_land,2012-01-23,temperature,5.65625 +oxford_land,2012-01-24,temperature,6.025 +oxford_land,2012-01-25,temperature,5.753571429 +oxford_land,2012-01-26,temperature,5.482142857 +oxford_land,2012-01-27,temperature,5.210714286 +oxford_land,2012-01-28,temperature,4.939285714 +oxford_land,2012-01-29,temperature,4.667857143 +oxford_land,2012-01-30,temperature,4.396428571 +oxford_land,2012-01-31,temperature,4.125 +oxford_land,2012-02-01,temperature,3.917857143 +oxford_land,2012-02-02,temperature,3.710714286 +oxford_land,2012-02-03,temperature,3.503571429 +oxford_land,2012-02-04,temperature,3.296428571 +oxford_land,2012-02-05,temperature,3.089285714 +oxford_land,2012-02-06,temperature,2.882142857 +oxford_land,2012-02-07,temperature,2.675 +oxford_land,2012-02-08,temperature,2.835714286 +oxford_land,2012-02-09,temperature,2.996428571 +oxford_land,2012-02-10,temperature,3.157142857 +oxford_land,2012-02-11,temperature,3.317857143 +oxford_land,2012-02-12,temperature,3.478571429 +oxford_land,2012-02-13,temperature,3.639285714 +oxford_land,2012-02-14,temperature,3.8 +oxford_land,2012-02-15,temperature,4.125 +oxford_land,2012-02-16,temperature,4.45 +oxford_land,2012-02-17,temperature,4.775 +oxford_land,2012-02-18,temperature,5.1 +oxford_land,2012-02-19,temperature,5.425 +oxford_land,2012-02-20,temperature,5.75 +oxford_land,2012-02-21,temperature,6.075 +oxford_land,2012-02-22,temperature,6.5 +oxford_land,2012-02-23,temperature,6.925 +oxford_land,2012-02-24,temperature,7.35 +oxford_land,2012-02-25,temperature,7.775 +oxford_land,2012-02-26,temperature,8.2 +oxford_land,2012-02-27,temperature,8.625 +oxford_land,2012-02-28,temperature,8.38125 +oxford_land,2012-02-29,temperature,8.1375 +oxford_land,2012-03-01,temperature,7.89375 +oxford_land,2012-03-02,temperature,7.65 +oxford_land,2012-03-03,temperature,7.40625 +oxford_land,2012-03-04,temperature,7.1625 +oxford_land,2012-03-05,temperature,6.91875 +oxford_land,2012-03-06,temperature,6.675 +oxford_land,2012-03-07,temperature,7.032142857 +oxford_land,2012-03-08,temperature,7.389285714 +oxford_land,2012-03-09,temperature,7.746428571 +oxford_land,2012-03-10,temperature,8.103571429 +oxford_land,2012-03-11,temperature,8.460714286 +oxford_land,2012-03-12,temperature,8.817857143 +oxford_land,2012-03-13,temperature,9.175 +oxford_land,2012-03-14,temperature,9.1 +oxford_land,2012-03-15,temperature,9.025 +oxford_land,2012-03-16,temperature,8.95 +oxford_land,2012-03-17,temperature,8.875 +oxford_land,2012-03-18,temperature,8.8 +oxford_land,2012-03-19,temperature,8.725 +oxford_land,2012-03-20,temperature,8.65 +oxford_land,2012-03-21,temperature,8.910714286 +oxford_land,2012-03-22,temperature,9.171428571 +oxford_land,2012-03-23,temperature,9.432142857 +oxford_land,2012-03-24,temperature,9.692857143 +oxford_land,2012-03-25,temperature,9.953571429 +oxford_land,2012-03-26,temperature,10.21428571 +oxford_land,2012-03-27,temperature,10.475 +oxford_land,2012-03-28,temperature,10.44642857 +oxford_land,2012-03-29,temperature,10.41785714 +oxford_land,2012-03-30,temperature,10.38928571 +oxford_land,2012-03-31,temperature,10.36071429 +oxford_land,2012-04-01,temperature,10.33214286 +oxford_land,2012-04-02,temperature,10.30357143 +oxford_land,2012-04-03,temperature,10.275 +oxford_land,2012-04-04,temperature,10.19285714 +oxford_land,2012-04-05,temperature,10.11071429 +oxford_land,2012-04-06,temperature,10.02857143 +oxford_land,2012-04-07,temperature,9.946428571 +oxford_land,2012-04-08,temperature,9.864285714 +oxford_land,2012-04-09,temperature,9.782142857 +oxford_land,2012-04-10,temperature,9.7 +oxford_land,2012-04-11,temperature,9.682142857 +oxford_land,2012-04-12,temperature,9.664285714 +oxford_land,2012-04-13,temperature,9.646428571 +oxford_land,2012-04-14,temperature,9.628571429 +oxford_land,2012-04-15,temperature,9.610714286 +oxford_land,2012-04-16,temperature,9.592857143 +oxford_land,2012-04-17,temperature,9.575 +oxford_land,2012-04-18,temperature,9.667857143 +oxford_land,2012-04-19,temperature,9.760714286 +oxford_land,2012-04-20,temperature,9.853571429 +oxford_land,2012-04-21,temperature,9.946428571 +oxford_land,2012-04-22,temperature,10.03928571 +oxford_land,2012-04-23,temperature,10.13214286 +oxford_land,2012-04-24,temperature,10.225 +oxford_land,2012-04-25,temperature,10.35357143 +oxford_land,2012-04-26,temperature,10.48214286 +oxford_land,2012-04-27,temperature,10.61071429 +oxford_land,2012-04-28,temperature,10.73928571 +oxford_land,2012-04-29,temperature,10.86785714 +oxford_land,2012-04-30,temperature,10.99642857 +oxford_land,2012-05-01,temperature,11.125 +oxford_land,2012-05-02,temperature,11.08928571 +oxford_land,2012-05-03,temperature,11.05357143 +oxford_land,2012-05-04,temperature,11.01785714 +oxford_land,2012-05-05,temperature,10.98214286 +oxford_land,2012-05-06,temperature,10.94642857 +oxford_land,2012-05-07,temperature,10.91071429 +oxford_land,2012-05-08,temperature,10.875 +oxford_land,2012-05-09,temperature,10.975 +oxford_land,2012-05-10,temperature,11.075 +oxford_land,2012-05-11,temperature,11.175 +oxford_land,2012-05-12,temperature,11.275 +oxford_land,2012-05-13,temperature,11.375 +oxford_land,2012-05-14,temperature,11.475 +oxford_land,2012-05-15,temperature,11.709375 +oxford_land,2012-05-16,temperature,11.94375 +oxford_land,2012-05-17,temperature,12.178125 +oxford_land,2012-05-18,temperature,12.4125 +oxford_land,2012-05-19,temperature,12.646875 +oxford_land,2012-05-20,temperature,12.88125 +oxford_land,2012-05-21,temperature,13.115625 +oxford_land,2012-05-22,temperature,13.35 +oxford_land,2012-05-23,temperature,14.01071429 +oxford_land,2012-05-24,temperature,14.67142857 +oxford_land,2012-05-25,temperature,15.33214286 +oxford_land,2012-05-26,temperature,15.99285714 +oxford_land,2012-05-27,temperature,16.65357143 +oxford_land,2012-05-28,temperature,17.31428571 +oxford_land,2012-05-29,temperature,17.975 +oxford_land,2012-05-30,temperature,17.4625 +oxford_land,2012-05-31,temperature,16.95 +oxford_land,2012-06-01,temperature,16.4375 +oxford_land,2012-06-02,temperature,15.925 +oxford_land,2012-06-03,temperature,15.4125 +oxford_land,2012-06-04,temperature,14.9 +oxford_land,2012-06-05,temperature,14.3875 +oxford_land,2012-06-06,temperature,13.875 +oxford_land,2012-06-07,temperature,13.675 +oxford_land,2012-06-08,temperature,13.475 +oxford_land,2012-06-09,temperature,13.275 +oxford_land,2012-06-10,temperature,13.075 +oxford_land,2012-06-11,temperature,12.875 +oxford_land,2012-06-12,temperature,12.675 +oxford_land,2012-06-13,temperature,13.06071429 +oxford_land,2012-06-14,temperature,13.44642857 +oxford_land,2012-06-15,temperature,13.83214286 +oxford_land,2012-06-16,temperature,14.21785714 +oxford_land,2012-06-17,temperature,14.60357143 +oxford_land,2012-06-18,temperature,14.98928571 +oxford_land,2012-06-19,temperature,15.375 +oxford_land,2012-06-20,temperature,15.34583333 +oxford_land,2012-06-21,temperature,15.31666667 +oxford_land,2012-06-22,temperature,15.2875 +oxford_land,2012-06-23,temperature,15.25833333 +oxford_land,2012-06-24,temperature,15.22916667 +oxford_land,2012-06-25,temperature,15.2 +oxford_land,2012-06-26,temperature,15.171875 +oxford_land,2012-06-27,temperature,15.14375 +oxford_land,2012-06-28,temperature,15.115625 +oxford_land,2012-06-29,temperature,15.0875 +oxford_land,2012-06-30,temperature,15.059375 +oxford_land,2012-07-01,temperature,15.03125 +oxford_land,2012-07-02,temperature,15.003125 +oxford_land,2012-07-03,temperature,14.975 +oxford_land,2012-07-04,temperature,15.16785714 +oxford_land,2012-07-05,temperature,15.36071429 +oxford_land,2012-07-06,temperature,15.55357143 +oxford_land,2012-07-07,temperature,15.74642857 +oxford_land,2012-07-08,temperature,15.93928571 +oxford_land,2012-07-09,temperature,16.13214286 +oxford_land,2012-07-10,temperature,16.325 +oxford_land,2012-07-11,temperature,16.19583333 +oxford_land,2012-07-12,temperature,16.06666667 +oxford_land,2012-07-13,temperature,15.9375 +oxford_land,2012-07-14,temperature,15.80833333 +oxford_land,2012-07-15,temperature,15.67916667 +oxford_land,2012-07-16,temperature,15.55 +oxford_land,2012-07-17,temperature,15.8375 +oxford_land,2012-07-18,temperature,16.125 +oxford_land,2012-07-19,temperature,16.4125 +oxford_land,2012-07-20,temperature,16.7 +oxford_land,2012-07-21,temperature,16.9875 +oxford_land,2012-07-22,temperature,17.275 +oxford_land,2012-07-23,temperature,17.5625 +oxford_land,2012-07-24,temperature,17.85 +oxford_land,2012-07-25,temperature,17.51071429 +oxford_land,2012-07-26,temperature,17.17142857 +oxford_land,2012-07-27,temperature,16.83214286 +oxford_land,2012-07-28,temperature,16.49285714 +oxford_land,2012-07-29,temperature,16.15357143 +oxford_land,2012-07-30,temperature,15.81428571 +oxford_land,2012-07-31,temperature,15.475 +oxford_land,2012-08-01,temperature,15.49642857 +oxford_land,2012-08-02,temperature,15.51785714 +oxford_land,2012-08-03,temperature,15.53928571 +oxford_land,2012-08-04,temperature,15.56071429 +oxford_land,2012-08-05,temperature,15.58214286 +oxford_land,2012-08-06,temperature,15.60357143 +oxford_land,2012-08-07,temperature,15.625 +oxford_land,2012-08-08,temperature,15.83928571 +oxford_land,2012-08-09,temperature,16.05357143 +oxford_land,2012-08-10,temperature,16.26785714 +oxford_land,2012-08-11,temperature,16.48214286 +oxford_land,2012-08-12,temperature,16.69642857 +oxford_land,2012-08-13,temperature,16.91071429 +oxford_land,2012-08-14,temperature,17.125 +oxford_land,2012-08-15,temperature,17.25357143 +oxford_land,2012-08-16,temperature,17.38214286 +oxford_land,2012-08-17,temperature,17.51071429 +oxford_land,2012-08-18,temperature,17.63928571 +oxford_land,2012-08-19,temperature,17.76785714 +oxford_land,2012-08-20,temperature,17.89642857 +oxford_land,2012-08-21,temperature,18.025 +oxford_land,2012-08-22,temperature,17.72857143 +oxford_land,2012-08-23,temperature,17.43214286 +oxford_land,2012-08-24,temperature,17.13571429 +oxford_land,2012-08-25,temperature,16.83928571 +oxford_land,2012-08-26,temperature,16.54285714 +oxford_land,2012-08-27,temperature,16.24642857 +oxford_land,2012-08-28,temperature,15.95 +oxford_land,2012-08-29,temperature,15.93928571 +oxford_land,2012-08-30,temperature,15.92857143 +oxford_land,2012-08-31,temperature,15.91785714 +oxford_land,2012-09-01,temperature,15.90714286 +oxford_land,2012-09-02,temperature,15.89642857 +oxford_land,2012-09-03,temperature,15.88571429 +oxford_land,2012-09-04,temperature,15.875 +oxford_land,2012-09-05,temperature,15.77857143 +oxford_land,2012-09-06,temperature,15.68214286 +oxford_land,2012-09-07,temperature,15.58571429 +oxford_land,2012-09-08,temperature,15.48928571 +oxford_land,2012-09-09,temperature,15.39285714 +oxford_land,2012-09-10,temperature,15.29642857 +oxford_land,2012-09-11,temperature,15.2 +oxford_land,2012-09-12,temperature,15.00357143 +oxford_land,2012-09-13,temperature,14.80714286 +oxford_land,2012-09-14,temperature,14.61071429 +oxford_land,2012-09-15,temperature,14.41428571 +oxford_land,2012-09-16,temperature,14.21785714 +oxford_land,2012-09-17,temperature,14.02142857 +oxford_land,2012-09-18,temperature,13.825 +oxford_land,2012-09-19,temperature,13.47916667 +oxford_land,2012-09-20,temperature,13.13333333 +oxford_land,2012-09-21,temperature,12.7875 +oxford_land,2012-09-22,temperature,12.44166667 +oxford_land,2012-09-23,temperature,12.09583333 +oxford_land,2012-09-24,temperature,11.75 +oxford_land,2012-09-25,temperature,11.84642857 +oxford_land,2012-09-26,temperature,11.94285714 +oxford_land,2012-09-27,temperature,12.03928571 +oxford_land,2012-09-28,temperature,12.13571429 +oxford_land,2012-09-29,temperature,12.23214286 +oxford_land,2012-09-30,temperature,12.32857143 +oxford_land,2012-10-01,temperature,12.425 +oxford_land,2012-10-02,temperature,12.225 +oxford_land,2012-10-03,temperature,12.025 +oxford_land,2012-10-04,temperature,11.825 +oxford_land,2012-10-05,temperature,11.625 +oxford_land,2012-10-06,temperature,11.425 +oxford_land,2012-10-07,temperature,11.225 +oxford_land,2012-10-08,temperature,11.025 +oxford_land,2012-10-09,temperature,10.884375 +oxford_land,2012-10-10,temperature,10.74375 +oxford_land,2012-10-11,temperature,10.603125 +oxford_land,2012-10-12,temperature,10.4625 +oxford_land,2012-10-13,temperature,10.321875 +oxford_land,2012-10-14,temperature,10.18125 +oxford_land,2012-10-15,temperature,10.040625 +oxford_land,2012-10-16,temperature,9.9 +oxford_land,2012-10-17,temperature,10.17142857 +oxford_land,2012-10-18,temperature,10.44285714 +oxford_land,2012-10-19,temperature,10.71428571 +oxford_land,2012-10-20,temperature,10.98571429 +oxford_land,2012-10-21,temperature,11.25714286 +oxford_land,2012-10-22,temperature,11.52857143 +oxford_land,2012-10-23,temperature,11.8 +oxford_land,2012-10-24,temperature,11.25833333 +oxford_land,2012-10-25,temperature,10.71666667 +oxford_land,2012-10-26,temperature,10.175 +oxford_land,2012-10-27,temperature,9.633333333 +oxford_land,2012-10-28,temperature,9.091666667 +oxford_land,2012-10-29,temperature,8.55 +oxford_land,2012-10-30,temperature,8.221875 +oxford_land,2012-10-31,temperature,7.89375 +oxford_land,2012-11-01,temperature,7.565625 +oxford_land,2012-11-02,temperature,7.2375 +oxford_land,2012-11-03,temperature,6.909375 +oxford_land,2012-11-04,temperature,6.58125 +oxford_land,2012-11-05,temperature,6.253125 +oxford_land,2012-11-06,temperature,5.925 +oxford_land,2012-11-07,temperature,6.408333333 +oxford_land,2012-11-08,temperature,6.891666667 +oxford_land,2012-11-09,temperature,7.375 +oxford_land,2012-11-10,temperature,7.858333333 +oxford_land,2012-11-11,temperature,8.341666667 +oxford_land,2012-11-12,temperature,8.825 +oxford_land,2012-11-13,temperature,8.646428571 +oxford_land,2012-11-14,temperature,8.467857143 +oxford_land,2012-11-15,temperature,8.289285714 +oxford_land,2012-11-16,temperature,8.110714286 +oxford_land,2012-11-17,temperature,7.932142857 +oxford_land,2012-11-18,temperature,7.753571429 +oxford_land,2012-11-19,temperature,7.575 +oxford_land,2012-11-20,temperature,7.614285714 +oxford_land,2012-11-21,temperature,7.653571429 +oxford_land,2012-11-22,temperature,7.692857143 +oxford_land,2012-11-23,temperature,7.732142857 +oxford_land,2012-11-24,temperature,7.771428571 +oxford_land,2012-11-25,temperature,7.810714286 +oxford_land,2012-11-26,temperature,7.85 +oxford_land,2012-11-27,temperature,7.515625 +oxford_land,2012-11-28,temperature,7.18125 +oxford_land,2012-11-29,temperature,6.846875 +oxford_land,2012-11-30,temperature,6.5125 +oxford_land,2012-12-01,temperature,6.178125 +oxford_land,2012-12-02,temperature,5.84375 +oxford_land,2012-12-03,temperature,5.509375 +oxford_land,2012-12-04,temperature,5.175 +oxford_land,2012-12-05,temperature,5.067857143 +oxford_land,2012-12-06,temperature,4.960714286 +oxford_land,2012-12-07,temperature,4.853571429 +oxford_land,2012-12-08,temperature,4.746428571 +oxford_land,2012-12-09,temperature,4.639285714 +oxford_land,2012-12-10,temperature,4.532142857 +oxford_land,2012-12-11,temperature,4.425 +oxford_land,2012-12-12,temperature,4.670833333 +oxford_land,2012-12-13,temperature,4.916666667 +oxford_land,2012-12-14,temperature,5.1625 +oxford_land,2012-12-15,temperature,5.408333333 +oxford_land,2012-12-16,temperature,5.654166667 +oxford_land,2012-12-17,temperature,5.9 +oxford_land,2012-12-18,temperature,6.029761905 +oxford_land,2012-12-19,temperature,6.15952381 +oxford_land,2012-12-20,temperature,6.289285714 +oxford_land,2012-12-21,temperature,6.419047619 +oxford_land,2012-12-22,temperature,6.548809524 +oxford_land,2012-12-23,temperature,6.678571429 +oxford_land,2012-12-24,temperature,6.808333333 +oxford_land,2012-12-25,temperature,6.938095238 +oxford_land,2012-12-26,temperature,7.067857143 +oxford_land,2012-12-27,temperature,7.197619048 +oxford_land,2012-12-28,temperature,7.327380952 +oxford_land,2012-12-29,temperature,7.457142857 +oxford_land,2012-12-30,temperature,7.586904762 +oxford_land,2012-12-31,temperature,7.716666667 +oxford_land,2013-01-01,temperature,7.846428571 +oxford_land,2013-01-02,temperature,7.976190476 +oxford_land,2013-01-03,temperature,8.105952381 +oxford_land,2013-01-04,temperature,8.235714286 +oxford_land,2013-01-05,temperature,8.36547619 +oxford_land,2013-01-06,temperature,8.495238095 +oxford_land,2013-01-07,temperature,8.625 +oxford_land,2013-01-08,temperature,8.060714286 +oxford_land,2013-01-09,temperature,7.496428571 +oxford_land,2013-01-10,temperature,6.932142857 +oxford_land,2013-01-11,temperature,6.367857143 +oxford_land,2013-01-12,temperature,5.803571429 +oxford_land,2013-01-13,temperature,5.239285714 +oxford_land,2013-01-14,temperature,4.675 +oxford_land,2013-01-15,temperature,4.453571429 +oxford_land,2013-01-16,temperature,4.232142857 +oxford_land,2013-01-17,temperature,4.010714286 +oxford_land,2013-01-18,temperature,3.789285714 +oxford_land,2013-01-19,temperature,3.567857143 +oxford_land,2013-01-20,temperature,3.346428571 +oxford_land,2013-01-21,temperature,3.125 +oxford_land,2013-01-22,temperature,3.328571429 +oxford_land,2013-01-23,temperature,3.532142857 +oxford_land,2013-01-24,temperature,3.735714286 +oxford_land,2013-01-25,temperature,3.939285714 +oxford_land,2013-01-26,temperature,4.142857143 +oxford_land,2013-01-27,temperature,4.346428571 +oxford_land,2013-01-28,temperature,4.55 +oxford_land,2013-01-29,temperature,4.842857143 +oxford_land,2013-01-30,temperature,5.135714286 +oxford_land,2013-01-31,temperature,5.428571429 +oxford_land,2013-02-01,temperature,5.721428571 +oxford_land,2013-02-02,temperature,6.014285714 +oxford_land,2013-02-03,temperature,6.307142857 +oxford_land,2013-02-04,temperature,6.6 +oxford_land,2013-02-05,temperature,6.232142857 +oxford_land,2013-02-06,temperature,5.864285714 +oxford_land,2013-02-07,temperature,5.496428571 +oxford_land,2013-02-08,temperature,5.128571429 +oxford_land,2013-02-09,temperature,4.760714286 +oxford_land,2013-02-10,temperature,4.392857143 +oxford_land,2013-02-11,temperature,4.025 +oxford_land,2013-02-12,temperature,4.285714286 +oxford_land,2013-02-13,temperature,4.546428571 +oxford_land,2013-02-14,temperature,4.807142857 +oxford_land,2013-02-15,temperature,5.067857143 +oxford_land,2013-02-16,temperature,5.328571429 +oxford_land,2013-02-17,temperature,5.589285714 +oxford_land,2013-02-18,temperature,5.85 +oxford_land,2013-02-19,temperature,5.635714286 +oxford_land,2013-02-20,temperature,5.421428571 +oxford_land,2013-02-21,temperature,5.207142857 +oxford_land,2013-02-22,temperature,4.992857143 +oxford_land,2013-02-23,temperature,4.778571429 +oxford_land,2013-02-24,temperature,4.564285714 +oxford_land,2013-02-25,temperature,4.35 From 92d4a2608d5aa20cf167f955f8771ba120744351 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Wed, 10 Jan 2024 14:39:23 +0000 Subject: [PATCH 04/59] the extension_file script for enabling decoration of existing nodes/arcs/models objects --- docs/demo/data/processed/model_extensions.py | 307 +++++++++++++++++++ 1 file changed, 307 insertions(+) create mode 100644 docs/demo/data/processed/model_extensions.py diff --git a/docs/demo/data/processed/model_extensions.py b/docs/demo/data/processed/model_extensions.py new file mode 100644 index 00000000..b0e3d30e --- /dev/null +++ b/docs/demo/data/processed/model_extensions.py @@ -0,0 +1,307 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Dec 19 10:50:55 2023 + +@author: bdobson +""" +from wsimod.core import constants +import sys +import os +from tqdm import tqdm +from math import log10 +from wsimod.nodes.land import ImperviousSurface +from wsimod.nodes.nodes import QueueTank, Tank, ResidenceTank + +def extensions(model): + # Apply customations + model.nodes['my_groundwater'].residence_time *= 2 + + # Add dcorator to a reservoir + model.nodes['my_reservoir'].net_evaporation = model.nodes['my_reservoir'].empty_vqip() + model.nodes['my_reservoir'].mass_balance_out.append(lambda self=model.nodes['my_reservoir']: self.net_evaporation) + model.nodes['my_reservoir'].net_precipitation = model.nodes['my_reservoir'].empty_vqip() + model.nodes['my_reservoir'].mass_balance_in.append(lambda self=model.nodes['my_reservoir']: self.net_precipitation) + + model.nodes['my_reservoir'].make_abstractions = wrapper_reservoir(model.nodes['my_reservoir'], model.nodes['my_reservoir'].make_abstractions) + + # Change model.run because new function has been introduced by the new node + model.run = wrapper_run(model) + +def wrapper_reservoir(node, func): + def reservoir_functions_wrapper(): + # Initialise mass balance VQIPs + vqip_out = node.empty_vqip() + vqip_in = node.empty_vqip() + + # Calculate net change + net_in = node.get_data_input('precipitation') - node.get_data_input('et0') + net_in *= node.tank.area + + if net_in > 0: + # Add precipitation + vqip_in = node.v_change_vqip(node.empty_vqip(), net_in) + _ = node.tank.push_storage(vqip_in, force = True) + + else: + # Remove evaporation + evap = node.tank.evaporate(-net_in) + vqip_out = node.v_change_vqip(vqip_out, evap) + + # Store in mass balance states + node.net_evaporation = vqip_out + node.net_precipitation = vqip_in + + node.satisfy_environmental() + # Call whatever else was going happen + return func() + return reservoir_functions_wrapper + +def wrapper_run(self): + def run(#self, + dates = None, + settings = None, + record_arcs = None, + record_tanks = None, + verbose = True, + record_all = True, + other_attr = {}): + """Run the model object with the default orchestration + + Args: + dates (list, optional): Dates to simulate. Defaults to None, which + simulates all dates that the model has data for. + settings (dict, optional): Dict to specify what results are stored, + not currently used. Defaults to None. + record_arcs (list, optional): List of arcs to store result for. + Defaults to None. + record_tanks (list, optional): List of nodes with water stores to + store results for. Defaults to None. + verbose (bool, optional): Prints updates on simulation if true. + Defaults to True. + record_all (bool, optional): Specifies to store all results. + Defaults to True. + other_attr (dict, optional): Dict to store additional attributes of + specified nodes/arcs. Example: + {'arc.name1': ['arc.attribute1'], + 'arc.name2': ['arc.attribute1', 'arc.attribute2'], + 'node.name1': ['node.attribute1'], + 'node.name2': ['node.attribute1', 'node.attribute2']} + Defaults to None. + + Returns: + flows: simulated flows in a list of dicts + tanks: simulated tanks storages in a list of dicts + node_mb: mass balance differences in a list of dicts (not currently used) + surfaces: simulated surface storages of land nodes in a list of dicts + requested_attr: timeseries of attributes of specified nodes/arcs requested by the users + """ + + if record_arcs is None: + record_arcs = self.arcs.keys() + + if record_tanks is None: + record_tanks = [] + + if settings is None: + settings = self.default_settings() + + def blockPrint(): + stdout = sys.stdout + sys.stdout = open(os.devnull, 'w') + return stdout + def enablePrint(stdout): + sys.stdout = stdout + if not verbose: + stdout = blockPrint() + if dates is None: + dates = self.dates + + flows = [] + tanks = [] + node_mb = [] + surfaces = [] + for date in tqdm(dates, disable = (not verbose)): + # for date in dates: + for node in self.nodelist: + node.t = date + node.monthyear = date.to_period('M') + + #Run FWTW + for node in self.nodes_type['FWTW'].values(): + node.treat_water() + + #Create demand (gets pushed to sewers) + for node in self.nodes_type['Demand'].values(): + node.create_demand() + + #Create runoff (impervious gets pushed to sewers, pervious to groundwater) + for node in self.nodes_type['Land'].values(): + node.run() + + #Infiltrate GW + for node in self.nodes_type['Groundwater'].values(): + node.infiltrate() + for node in self.nodes_type['Groundwater_h'].values(): + node.infiltrate() + + #Discharge sewers (pushed to other sewers or WWTW) + for node in self.nodes_type['Sewer'].values(): + node.make_discharge() + + #Foul second so that it can discharge any misconnection + for node in self.nodes_type['Foul'].values(): + node.make_discharge() + + #Discharge WWTW + for node in self.nodes_type['WWTW'].values(): + node.calculate_discharge() + + #Discharge GW + for node in self.nodes_type['Groundwater'].values(): + node.distribute() + + for node in self.nodes_type['Groundwater_h'].values(): + node.distribute_gw_gw() + for node in self.nodes_type['Groundwater_h'].values(): + node.distribute_gw_rw() + + #river + # for node in self.nodes_type['Lake'].values(): + # node.calculate_discharge() + for node in self.nodes_type['River'].values(): + node.calculate_discharge() + + #Abstract + for node in self.nodes_type['Reservoir'].values(): + node.make_abstractions() + + for node in self.nodes_type['Land'].values(): + node.apply_irrigation() + + for node in self.nodes_type['WWTW'].values(): + node.make_discharge() + + #Catchment routing + for node in self.nodes_type['Catchment'].values(): + node.route() + + #river + # for node in self.nodes_type['Lake'].values(): + # node.distribute() + for node_name in self.river_discharge_order: + self.nodes[node_name].distribute() + + + #mass balance checking + #nodes/system + sys_in = self.empty_vqip() + sys_out = self.empty_vqip() + sys_ds = self.empty_vqip() + + #arcs + for arc in self.arcs.values(): + in_, ds_, out_ = arc.arc_mass_balance() + for v in constants.ADDITIVE_POLLUTANTS + ['volume']: + sys_in[v] += in_[v] + sys_out[v] += out_[v] + sys_ds[v] += ds_[v] + for node in self.nodelist: + # print(node.name) + in_, ds_, out_ = node.node_mass_balance() + + # temp = {'name' : node.name, + # 'time' : date} + # for lab, dict_ in zip(['in','ds','out'], [in_, ds_, out_]): + # for key, value in dict_.items(): + # temp[(lab, key)] = value + # node_mb.append(temp) + + for v in constants.ADDITIVE_POLLUTANTS + ['volume']: + sys_in[v] += in_[v] + sys_out[v] += out_[v] + sys_ds[v] += ds_[v] + + for v in constants.ADDITIVE_POLLUTANTS + ['volume']: + + #Find the largest value of in_, out_, ds_ + largest = max(sys_in[v], sys_in[v], sys_in[v]) + + if largest > constants.FLOAT_ACCURACY: + #Convert perform comparison in a magnitude to match the largest value + magnitude = 10**int(log10(largest)) + in_10 = sys_in[v] / magnitude + out_10 = sys_in[v] / magnitude + ds_10 = sys_in[v] / magnitude + else: + in_10 = sys_in[v] + ds_10 = sys_in[v] + out_10 = sys_in[v] + + if (in_10 - ds_10 - out_10) > constants.FLOAT_ACCURACY: + print("system mass balance error for " + v + " of " + str(sys_in[v] - sys_ds[v] - sys_out[v])) + + #Store results + for arc in record_arcs: + arc = self.arcs[arc] + flows.append({'arc' : arc.name, + 'flow' : arc.vqip_out['volume'], + 'time' : date}) + for pol in constants.POLLUTANTS: + flows[-1][pol] = arc.vqip_out[pol] + + for node in record_tanks: + node = self.nodes[node] + tanks.append({'node' : node.name, + 'storage' : node.tank.storage['volume'], + 'time' : date}) + if record_all: + for node in self.nodes.values(): + for prop_ in dir(node): + prop = node.__getattribute__(prop_) + if prop.__class__ in [QueueTank, Tank, ResidenceTank]: + tanks.append({'node' : node.name, + 'time' : date, + 'storage' : prop.storage['volume'], + 'prop' : prop_}) + for pol in constants.POLLUTANTS: + tanks[-1][pol] = prop.storage[pol] + + for name, node in self.nodes_type['Land'].items(): + for surface in node.surfaces: + if not isinstance(surface,ImperviousSurface): + surfaces.append({'node' : name, + 'surface' : surface.surface, + 'percolation' : surface.percolation['volume'], + 'subsurface_r' : surface.subsurface_flow['volume'], + 'surface_r' : surface.infiltration_excess['volume'], + 'storage' : surface.storage['volume'], + 'evaporation' : surface.evaporation['volume'], + 'precipitation' : surface.precipitation['volume'], + 'tank_recharge' : surface.tank_recharge, + 'capacity' : surface.capacity, + 'time' : date, + 'et0_coef' : surface.et0_coefficient, + # 'crop_factor' : surface.crop_factor + }) + for pol in constants.POLLUTANTS: + surfaces[-1][pol] = surface.storage[pol] + else: + surfaces.append({'node' : name, + 'surface' : surface.surface, + 'storage' : surface.storage['volume'], + 'evaporation' : surface.evaporation['volume'], + 'precipitation' : surface.precipitation['volume'], + 'capacity' : surface.capacity, + 'time' : date}) + for pol in constants.POLLUTANTS: + surfaces[-1][pol] = surface.storage[pol] + + for node in self.nodes.values(): + node.end_timestep() + + for arc in self.arcs.values(): + arc.end_timestep() + if not verbose: + enablePrint(stdout) + return flows, tanks, node_mb, surfaces + return run \ No newline at end of file From 2463949b2a316286145a9b9c3058c5ae26156a20 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Wed, 10 Jan 2024 14:40:26 +0000 Subject: [PATCH 05/59] the new node for testing the customisation --- docs/demo/data/processed/Groundwater_h.py | 227 ++++++++++++++++++++++ 1 file changed, 227 insertions(+) create mode 100644 docs/demo/data/processed/Groundwater_h.py diff --git a/docs/demo/data/processed/Groundwater_h.py b/docs/demo/data/processed/Groundwater_h.py new file mode 100644 index 00000000..6cab4420 --- /dev/null +++ b/docs/demo/data/processed/Groundwater_h.py @@ -0,0 +1,227 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Dec 24 10:09:12 2023 + +@author: leyan +""" + +from wsimod.nodes.storage import Storage +from wsimod.core import constants + +class Groundwater_h(Storage): + def __init__(self, + h_initial = 200, + z_surface = 250, + s = 0.1, + c_riverbed = 0, + c_aquifer = {}, + infiltration_threshold = 1, + infiltration_pct = 0, + data_input_dict = {}, + **kwargs): + # TODO can infiltrate to sewers? + """A head-driven storage for groundwater. Can also infiltrate to sewers. + + Args: + h_initial (float, compulsory): initial groundwater head (m asl). Defaults to 200. + z_surface (float, compulsoty): elevation of land surface (m asl), + which determines the maximum storage capacity. Default to 250. + s (float, optional): storage coefficient (-). Defaults to 0.1. + A (float, compulsory): area of the groundwater body (polygon) (m2). Defaults to 0. + c_riverbed (float, compulsory): the river bed conductance + (which could be taken from the BGWM parameterisation) (1/day). Defaults to 0. + data_input_dict (dict, optional): Dictionary of data inputs relevant for + the node (though I don't think it is used). Defaults to {}. + c_aquifer (dict, optional): aquifer conductance, which can be + calculated from parameterisation of British Groundwater Model + for any polygonal mesh (m2/day). Defaults to {}. + + Functions intended to call in orchestration: + infiltrate (before sewers are discharged) + + distribute + + Key assumptions: + - Conceptualises groundwater as a tank. The total volume of storage is controlled by a storage coefficient. + - Exchange flow between groundwater bodies is driven by head difference through an aquifer conductance. + - River-groundwater interactions are bi-directional, which is determined by the head difference. + - Infiltration to `sewer.py/Sewer` nodes occurs when the storage + in the tank is greater than a specified threshold, at a rate + proportional to the sqrt of volume above the threshold. (Note, + this behaviour is __not validated__ and a high uncertainty process + in general) + - If `decays` are provided to model water quality transformations, + see `core.py/DecayObj`. + + Input data and parameter requirements: + - Groundwater tank `capacity`, `area`, and `datum`. + _Units_: cubic metres, squared metres, metres + - Infiltration behaviour determined by an `infiltration_threshold` + and `infiltration_pct`. + _Units_: proportion of capacity + - Optional dictionary of decays with pollutants as keys and decay + parameters (a constant and a temperature sensitivity exponent) + as values. + _Units_: - + """ + self.h = h_initial + self.z_surface = z_surface + self.s = s + self.c_riverbed = c_riverbed + self.c_aquifer = c_aquifer + # + self.infiltration_threshold = infiltration_threshold + self.infiltration_pct = infiltration_pct + #TODO not used data_input + self.data_input_dict = data_input_dict + super().__init__(**kwargs) + + # update tank + self.tank.specific_yield = self.s + ########################################################################################### + def wrapper(self): + def get_head(#self, + datum = None, non_head_storage = 0): + """Area volume calculation for head calcuations. Datum and storage + that does not contribute to head can be specified + + Args: + datum (float, optional): Value to add to pressure head in tank. + Defaults to None. + non_head_storage (float, optional): Amount of storage that does + not contribute to generation of head. The tank must exceed + this value to generate any pressure head. Defaults to 0. + + Returns: + head (float): Total head in tank + + Examples: + >>> my_tank = Tank(datum = 10, initial_storage = 5, capacity = 10, area = 2) + >>> print(my_tank.get_head()) + 12.5 + >>> print(my_tank.get_head(non_head_storage = 1)) + 12 + >>> print(my_tank.get_head(non_head_storage = 1, datum = 0)) + 2 + + """ + #If datum not provided use object datum + if datum is None: + datum = self.datum + + #Calculate pressure head generating storage + head_storage = max(self.storage['volume'] - non_head_storage, 0) + + #Perform head calculation + head = head_storage / self.area / self.specific_yield + datum + + return head + return get_head + + self.tank.get_head = wrapper(self.tank) + ########################################################################################### + self.tank.storage['volume'] = (self.h - self.datum) * self.area * self.s # [m3] + self.tank.capacity = (self.z_surface - self.datum) * self.area * self.s # [m3] + #Update handlers + self.push_check_handler['Groundwater_h'] = self.push_check_head + self.push_check_handler[('River', 'head')] = self.push_check_head + self.push_check_handler[('River', 'c_riverbed')] = self.push_check_criverbed + + def distribute_gw_rw(self): + ## pumping rate via pull_request through arcs + ## recharge rate via push_request through arcs + """Calculate exchange between Rivers and Groundwater_h + """ + ## river-groundwater exchange + # query river elevation + # list of arcs that connect with gw bodies + _, arcs = self.get_direction_arcs(direction='push', of_type=['River']) + # if there is only one river arc + if len(arcs) == 1: + arc = arcs[0] + z_river = arc.send_push_check(tag=('Groundwater_h', 'datum'))['volume'] # [m asl] + length = arc.send_push_check(tag=('Groundwater_h', 'length'))['volume'] # [m] + width = arc.send_push_check(tag=('Groundwater_h', 'width'))['volume'] # [m] + # calculate riverbed hydraulic conductance + C_riverbed = self.c_riverbed * length * width # [m2/day] + # calculate river-gw flux + flux = C_riverbed * (self.h - z_river) # [m3/day] + if flux > 0: + to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards + retained = self.push_distributed(to_send, of_type = ['River']) + _ = self.tank.push_storage(retained, force = True) + if retained['volume'] > constants.FLOAT_ACCURACY: + print('Groundwater to river: gw baseflow unable to push into river at '+self.name) + # else: wait river to discharge back + # TODO may need consider when one river connects to multiple gws + elif len(arcs) > 1: + print('WARNING: '+self.name+' connects with more than one river - cannot model this at this stage and please re-setup the model') + + def distribute_gw_gw(self): + """Calculate exchange between Groundwater_h and Groundwater_h + """ + ## groundwater-groundwater exchange + # list of arcs that connect with gw bodies + _, arcs = self.get_direction_arcs(direction='push', of_type=['Groundwater_h']) + for arc in arcs: + h = arc.send_push_check(tag='Groundwater_h')['volume'] # check the head of the adjacent groundwater_h + # if h < self.h, there will be flux discharged outside + if h < self.h: + # get the c_aquifer [m2/day] + adj_node_name = arc.out_port.name # get the name of the adjacent gw_h + if adj_node_name in self.c_aquifer.keys(): + c_aquifer = self.c_aquifer[adj_node_name] + else: + print('ERROR: the name of '+adj_node_name+' is not consistent with the c_aquifer input in '+self.name+', please recheck') + # calculate the flux + flux = c_aquifer * (self.h - h) # [m3/day] + if flux > 0: + to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards + retained = arc.send_push_request(to_send) + _ = self.tank.push_storage(retained, force = True) + if retained['volume'] > constants.FLOAT_ACCURACY: + print('Groundwater to groundwater: gw baseflow unable to push from '+self.name+' into '+adj_node_name) + # if h > self.h, wait the adjacent node to push flux here + + def infiltrate(self): + # TODO could use head-drive approach here + """Calculate amount of water available for infiltration and send to sewers + """ + #Calculate infiltration + avail = self.tank.get_avail()['volume'] + avail = max(avail - self.tank.capacity * self.infiltration_threshold, 0) + avail = (avail * self.infiltration_pct) ** 0.5 + + #Push to sewers + to_send = self.tank.pull_storage({'volume' : avail}) + retained = self.push_distributed(to_send, of_type = 'Sewer') + _ = self.tank.push_storage(retained, force = True) + #Any not sent is left in tank + if retained['volume'] > constants.FLOAT_ACCURACY: + #print('unable to infiltrate') + pass + + def push_check_head(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.h + """ + reply = self.empty_vqip() + reply['volume'] = self.h + + return reply + + def push_check_criverbed(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.c_riverbed + """ + reply = self.empty_vqip() + reply['volume'] = self.c_riverbed + + return reply + + def end_timestep(self): + """Update tank states & self.h + """ + self.tank.end_timestep() + self.h = self.tank.get_head() + \ No newline at end of file From cf4f6f4329d4f371093c0da47ece5c4a064a5cfe Mon Sep 17 00:00:00 2001 From: liuly12 Date: Wed, 10 Jan 2024 14:41:08 +0000 Subject: [PATCH 06/59] the results output from the example of customisation --- docs/demo/data/processed/flows.csv | 13105 ++++++++++++++++++++++++ docs/demo/data/processed/surfaces.csv | 2913 ++++++ docs/demo/data/processed/tanks.csv | 11649 +++++++++++++++++++++ 3 files changed, 27667 insertions(+) create mode 100644 docs/demo/data/processed/flows.csv create mode 100644 docs/demo/data/processed/surfaces.csv create mode 100644 docs/demo/data/processed/tanks.csv diff --git a/docs/demo/data/processed/flows.csv b/docs/demo/data/processed/flows.csv new file mode 100644 index 00000000..219246a6 --- /dev/null +++ b/docs/demo/data/processed/flows.csv @@ -0,0 +1,13105 @@ +,arc,flow,time,do,org-phosphorus,phosphate,ammonia,solids,bod,cod,ph,temperature,nitrate,nitrite,org-nitrogen +0,urban_drainage,0.04,2009-03-03,0.0,0.0,3.076923076923077e-07,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 +1,percolation,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,runoff,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3,storm_outflow,0.04,2009-03-03,0.0,0.0,3.076923076923077e-07,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 +4,baseflow,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5,catchment_outflow,0.04,2009-03-03,0.0,0.0,3.076923076923077e-07,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 +6,reservoir_outflow,0.1,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7,gw1_gw2,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8,gw2_gw1,0.25,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9,urban_drainage,0.04,2009-03-04,0.0,0.0,9.534127843986998e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +10,percolation,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11,runoff,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12,storm_outflow,0.04,2009-03-04,0.0,0.0,9.534127843986998e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +13,baseflow,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +14,catchment_outflow,0.04,2009-03-04,0.0,0.0,9.534127843986998e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +15,reservoir_outflow,0.1,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +16,gw1_gw2,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +17,gw2_gw1,0.24833333333333332,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +18,urban_drainage,0.010999999999999992,2009-03-05,0.0,0.0,1.7388949079089924e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +19,percolation,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +20,runoff,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +21,storm_outflow,0.010999999999999992,2009-03-05,0.0,0.0,1.7388949079089924e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +22,baseflow,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +23,catchment_outflow,0.010999999999999992,2009-03-05,0.0,0.0,1.7388949079089924e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +24,reservoir_outflow,0.10000000000000002,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +25,gw1_gw2,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +26,gw2_gw1,0.24667777777777766,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +27,urban_drainage,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +28,percolation,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +29,runoff,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +30,storm_outflow,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +31,baseflow,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +32,catchment_outflow,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +33,reservoir_outflow,0.1,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +34,gw1_gw2,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +35,gw2_gw1,0.24503325925925906,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +36,urban_drainage,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +37,percolation,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +38,runoff,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +39,storm_outflow,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +40,baseflow,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +41,catchment_outflow,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +42,reservoir_outflow,0.09999999999999999,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +43,gw1_gw2,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +44,gw2_gw1,0.24339970419753065,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +45,urban_drainage,0.017,2009-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +46,percolation,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +47,runoff,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +48,storm_outflow,0.017,2009-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +49,baseflow,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +50,catchment_outflow,0.017,2009-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +51,reservoir_outflow,0.09999999999999999,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +52,gw1_gw2,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +53,gw2_gw1,0.24177703950288043,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +54,urban_drainage,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +55,percolation,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +56,runoff,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +57,storm_outflow,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +58,baseflow,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +59,catchment_outflow,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +60,reservoir_outflow,0.1,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +61,gw1_gw2,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +62,gw2_gw1,0.24016519257286112,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +63,urban_drainage,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +64,percolation,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +65,runoff,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +66,storm_outflow,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +67,baseflow,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +68,catchment_outflow,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +69,reservoir_outflow,0.1,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +70,gw1_gw2,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +71,gw2_gw1,0.238564091289042,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +72,urban_drainage,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +73,percolation,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +74,runoff,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +75,storm_outflow,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +76,baseflow,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +77,catchment_outflow,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +78,reservoir_outflow,0.1,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +79,gw1_gw2,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +80,gw2_gw1,0.23697366401378162,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +81,urban_drainage,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +82,percolation,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +83,runoff,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +84,storm_outflow,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +85,baseflow,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +86,catchment_outflow,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +87,reservoir_outflow,0.1,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +88,gw1_gw2,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +89,gw2_gw1,0.2353938395870233,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +90,urban_drainage,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +91,percolation,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +92,runoff,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +93,storm_outflow,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +94,baseflow,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +95,catchment_outflow,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +96,reservoir_outflow,0.1,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +97,gw1_gw2,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +98,gw2_gw1,0.2338245473231096,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +99,urban_drainage,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +100,percolation,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +101,runoff,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +102,storm_outflow,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +103,baseflow,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +104,catchment_outflow,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +105,reservoir_outflow,0.09999999999999999,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +106,gw1_gw2,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +107,gw2_gw1,0.23226571700762236,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +108,urban_drainage,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +109,percolation,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +110,runoff,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +111,storm_outflow,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +112,baseflow,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +113,catchment_outflow,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +114,reservoir_outflow,0.10000000000000002,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +115,gw1_gw2,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +116,gw2_gw1,0.2307172788942382,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +117,urban_drainage,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +118,percolation,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +119,runoff,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +120,storm_outflow,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +121,baseflow,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +122,catchment_outflow,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +123,reservoir_outflow,0.1,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +124,gw1_gw2,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +125,gw2_gw1,0.22917916370160996,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +126,urban_drainage,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +127,percolation,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +128,runoff,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +129,storm_outflow,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +130,baseflow,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +131,catchment_outflow,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +132,reservoir_outflow,0.1,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +133,gw1_gw2,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +134,gw2_gw1,0.22765130261026592,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +135,urban_drainage,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +136,percolation,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +137,runoff,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +138,storm_outflow,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +139,baseflow,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +140,catchment_outflow,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +141,reservoir_outflow,0.1,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +142,gw1_gw2,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +143,gw2_gw1,0.2261336272595308,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +144,urban_drainage,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +145,percolation,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +146,runoff,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +147,storm_outflow,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +148,baseflow,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +149,catchment_outflow,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +150,reservoir_outflow,0.1,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +151,gw1_gw2,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +152,gw2_gw1,0.22462606974446742,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +153,urban_drainage,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +154,percolation,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +155,runoff,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +156,storm_outflow,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +157,baseflow,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +158,catchment_outflow,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +159,reservoir_outflow,0.1,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +160,gw1_gw2,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +161,gw2_gw1,0.2231285626128374,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +162,urban_drainage,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +163,percolation,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +164,runoff,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +165,storm_outflow,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +166,baseflow,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +167,catchment_outflow,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +168,reservoir_outflow,0.1,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +169,gw1_gw2,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +170,gw2_gw1,0.22164103886208528,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +171,urban_drainage,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +172,percolation,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +173,runoff,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +174,storm_outflow,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +175,baseflow,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +176,catchment_outflow,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +177,reservoir_outflow,0.1,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +178,gw1_gw2,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +179,gw2_gw1,0.2201634319363381,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +180,urban_drainage,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +181,percolation,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +182,runoff,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +183,storm_outflow,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +184,baseflow,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +185,catchment_outflow,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +186,reservoir_outflow,0.1,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +187,gw1_gw2,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +188,gw2_gw1,0.21869567572342924,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +189,urban_drainage,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +190,percolation,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +191,runoff,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +192,storm_outflow,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +193,baseflow,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +194,catchment_outflow,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +195,reservoir_outflow,0.1,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +196,gw1_gw2,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +197,gw2_gw1,0.21723770455193955,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +198,urban_drainage,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +199,percolation,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +200,runoff,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +201,storm_outflow,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +202,baseflow,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +203,catchment_outflow,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +204,reservoir_outflow,0.1,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +205,gw1_gw2,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +206,gw2_gw1,0.21578945318826,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +207,urban_drainage,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +208,percolation,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +209,runoff,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +210,storm_outflow,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +211,baseflow,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +212,catchment_outflow,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +213,reservoir_outflow,0.1,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +214,gw1_gw2,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +215,gw2_gw1,0.21435085683367144,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +216,urban_drainage,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +217,percolation,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +218,runoff,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +219,storm_outflow,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +220,baseflow,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +221,catchment_outflow,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +222,reservoir_outflow,0.1,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +223,gw1_gw2,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +224,gw2_gw1,0.21292185112144715,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +225,urban_drainage,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +226,percolation,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +227,runoff,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +228,storm_outflow,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +229,baseflow,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +230,catchment_outflow,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +231,reservoir_outflow,0.1,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +232,gw1_gw2,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +233,gw2_gw1,0.21150237211397072,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +234,urban_drainage,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +235,percolation,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +236,runoff,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +237,storm_outflow,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +238,baseflow,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +239,catchment_outflow,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +240,reservoir_outflow,0.1,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +241,gw1_gw2,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +242,gw2_gw1,0.21009235629987755,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +243,urban_drainage,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +244,percolation,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +245,runoff,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +246,storm_outflow,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +247,baseflow,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +248,catchment_outflow,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +249,reservoir_outflow,0.09999999999999999,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +250,gw1_gw2,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +251,gw2_gw1,0.2086917405912118,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +252,urban_drainage,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +253,percolation,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +254,runoff,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +255,storm_outflow,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +256,baseflow,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +257,catchment_outflow,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +258,reservoir_outflow,0.1,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +259,gw1_gw2,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +260,gw2_gw1,0.2073004623206038,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +261,urban_drainage,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +262,percolation,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +263,runoff,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +264,storm_outflow,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +265,baseflow,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +266,catchment_outflow,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +267,reservoir_outflow,0.1,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +268,gw1_gw2,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +269,gw2_gw1,0.20591845923846624,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +270,urban_drainage,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +271,percolation,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +272,runoff,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +273,storm_outflow,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +274,baseflow,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +275,catchment_outflow,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +276,reservoir_outflow,0.09999999999999999,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +277,gw1_gw2,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +278,gw2_gw1,0.20454566951020975,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +279,urban_drainage,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +280,percolation,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +281,runoff,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +282,storm_outflow,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +283,baseflow,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +284,catchment_outflow,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +285,reservoir_outflow,0.10000000000000002,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +286,gw1_gw2,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +287,gw2_gw1,0.2031820317134751,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +288,urban_drainage,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +289,percolation,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +290,runoff,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +291,storm_outflow,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +292,baseflow,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +293,catchment_outflow,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +294,reservoir_outflow,0.10000000000000002,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +295,gw1_gw2,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +296,gw2_gw1,0.2018274848353853,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +297,urban_drainage,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +298,percolation,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +299,runoff,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +300,storm_outflow,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +301,baseflow,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +302,catchment_outflow,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +303,reservoir_outflow,0.1,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +304,gw1_gw2,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +305,gw2_gw1,0.2004819682698159,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +306,urban_drainage,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +307,percolation,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +308,runoff,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +309,storm_outflow,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +310,baseflow,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +311,catchment_outflow,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +312,reservoir_outflow,0.1,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +313,gw1_gw2,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +314,gw2_gw1,0.19914542181468367,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +315,urban_drainage,0.029999999999999995,2009-04-07,0.0,0.0,3.0000000000000008e-05,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +316,percolation,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +317,runoff,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +318,storm_outflow,0.029999999999999995,2009-04-07,0.0,0.0,3.0000000000000008e-05,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +319,baseflow,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +320,catchment_outflow,0.029999999999999995,2009-04-07,0.0,0.0,3.0000000000000008e-05,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +321,reservoir_outflow,0.09999999999999999,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +322,gw1_gw2,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +323,gw2_gw1,0.19781778566925257,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +324,urban_drainage,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +325,percolation,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +326,runoff,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +327,storm_outflow,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +328,baseflow,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +329,catchment_outflow,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +330,reservoir_outflow,0.1,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +331,gw1_gw2,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +332,gw2_gw1,0.1964990004314575,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +333,urban_drainage,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +334,percolation,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +335,runoff,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +336,storm_outflow,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +337,baseflow,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +338,catchment_outflow,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +339,reservoir_outflow,0.1,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +340,gw1_gw2,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +341,gw2_gw1,0.19518900709524767,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +342,urban_drainage,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +343,percolation,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +344,runoff,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +345,storm_outflow,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +346,baseflow,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +347,catchment_outflow,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +348,reservoir_outflow,0.1,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +349,gw1_gw2,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +350,gw2_gw1,0.19388774704794623,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +351,urban_drainage,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +352,percolation,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +353,runoff,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +354,storm_outflow,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +355,baseflow,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +356,catchment_outflow,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +357,reservoir_outflow,0.1,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +358,gw1_gw2,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +359,gw2_gw1,0.19259516206762664,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +360,urban_drainage,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +361,percolation,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +362,runoff,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +363,storm_outflow,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +364,baseflow,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +365,catchment_outflow,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +366,reservoir_outflow,0.1,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +367,gw1_gw2,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +368,gw2_gw1,0.19131119432050908,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +369,urban_drainage,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +370,percolation,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +371,runoff,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +372,storm_outflow,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +373,baseflow,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +374,catchment_outflow,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +375,reservoir_outflow,0.1,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +376,gw1_gw2,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +377,gw2_gw1,0.19003578635837232,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +378,urban_drainage,0.031000000000000003,2009-04-14,0.0,0.0,7.0000000000000024e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 +379,percolation,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +380,runoff,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +381,storm_outflow,0.031000000000000003,2009-04-14,0.0,0.0,7.0000000000000024e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 +382,baseflow,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +383,catchment_outflow,0.031000000000000003,2009-04-14,0.0,0.0,7.0000000000000024e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 +384,reservoir_outflow,0.09999999999999999,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +385,gw1_gw2,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +386,gw2_gw1,0.18876888111598317,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +387,urban_drainage,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +388,percolation,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +389,runoff,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +390,storm_outflow,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +391,baseflow,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +392,catchment_outflow,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +393,reservoir_outflow,0.1,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +394,gw1_gw2,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +395,gw2_gw1,0.18751042190854325,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +396,urban_drainage,0.04,2009-04-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +397,percolation,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +398,runoff,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +399,storm_outflow,0.04,2009-04-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +400,baseflow,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +401,catchment_outflow,0.04,2009-04-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +402,reservoir_outflow,0.1,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +403,gw1_gw2,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +404,gw2_gw1,0.18626035242915295,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +405,urban_drainage,0.011000000000000005,2009-04-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +406,percolation,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +407,runoff,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +408,storm_outflow,0.011000000000000005,2009-04-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +409,baseflow,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +410,catchment_outflow,0.011000000000000005,2009-04-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +411,reservoir_outflow,0.10000000000000002,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +412,gw1_gw2,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +413,gw2_gw1,0.1850186167462921,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +414,urban_drainage,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +415,percolation,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +416,runoff,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +417,storm_outflow,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +418,baseflow,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +419,catchment_outflow,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +420,reservoir_outflow,0.1,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +421,gw1_gw2,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +422,gw2_gw1,0.1837851593013168,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +423,urban_drainage,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +424,percolation,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +425,runoff,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +426,storm_outflow,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +427,baseflow,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +428,catchment_outflow,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +429,reservoir_outflow,0.1,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +430,gw1_gw2,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +431,gw2_gw1,0.18255992490597467,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +432,urban_drainage,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +433,percolation,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +434,runoff,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +435,storm_outflow,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +436,baseflow,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +437,catchment_outflow,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +438,reservoir_outflow,0.1,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +439,gw1_gw2,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +440,gw2_gw1,0.1813428587399349,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +441,urban_drainage,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +442,percolation,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +443,runoff,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +444,storm_outflow,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +445,baseflow,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +446,catchment_outflow,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +447,reservoir_outflow,0.1,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +448,gw1_gw2,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +449,gw2_gw1,0.18013390634833534,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +450,urban_drainage,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +451,percolation,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +452,runoff,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +453,storm_outflow,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +454,baseflow,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +455,catchment_outflow,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +456,reservoir_outflow,0.1,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +457,gw1_gw2,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +458,gw2_gw1,0.17893301363934633,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +459,urban_drainage,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +460,percolation,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +461,runoff,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +462,storm_outflow,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +463,baseflow,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +464,catchment_outflow,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +465,reservoir_outflow,0.10000000000000002,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +466,gw1_gw2,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +467,gw2_gw1,0.17774012688175092,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +468,urban_drainage,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +469,percolation,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +470,runoff,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +471,storm_outflow,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +472,baseflow,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +473,catchment_outflow,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +474,reservoir_outflow,0.1,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +475,gw1_gw2,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +476,gw2_gw1,0.1765551927025392,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +477,urban_drainage,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +478,percolation,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +479,runoff,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +480,storm_outflow,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +481,baseflow,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +482,catchment_outflow,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +483,reservoir_outflow,0.1,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +484,gw1_gw2,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +485,gw2_gw1,0.17537815808452228,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +486,urban_drainage,0.036,2009-04-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 +487,percolation,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +488,runoff,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +489,storm_outflow,0.036,2009-04-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 +490,baseflow,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +491,catchment_outflow,0.036,2009-04-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 +492,reservoir_outflow,0.09999999999999999,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +493,gw1_gw2,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +494,gw2_gw1,0.17420897036395877,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +495,urban_drainage,0.034,2009-04-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +496,percolation,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +497,runoff,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +498,storm_outflow,0.034,2009-04-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +499,baseflow,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +500,catchment_outflow,0.034,2009-04-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +501,reservoir_outflow,0.1,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +502,gw1_gw2,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +503,gw2_gw1,0.17304757722819888,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +504,urban_drainage,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +505,percolation,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +506,runoff,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +507,storm_outflow,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +508,baseflow,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +509,catchment_outflow,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +510,reservoir_outflow,0.1,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +511,gw1_gw2,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +512,gw2_gw1,0.17189392671334427,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +513,urban_drainage,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +514,percolation,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +515,runoff,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +516,storm_outflow,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +517,baseflow,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +518,catchment_outflow,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +519,reservoir_outflow,0.055500000000008605,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +520,gw1_gw2,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +521,gw2_gw1,0.17074796720192192,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +522,urban_drainage,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +523,percolation,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +524,runoff,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +525,storm_outflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +526,baseflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +527,catchment_outflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +528,reservoir_outflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +529,gw1_gw2,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +530,gw2_gw1,0.16960964742057583,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +531,urban_drainage,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +532,percolation,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +533,runoff,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +534,storm_outflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +535,baseflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +536,catchment_outflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +537,reservoir_outflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +538,gw1_gw2,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +539,gw2_gw1,0.1684789164377719,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +540,urban_drainage,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +541,percolation,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +542,runoff,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +543,storm_outflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +544,baseflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +545,catchment_outflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +546,reservoir_outflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +547,gw1_gw2,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +548,gw2_gw1,0.16735572366152002,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +549,urban_drainage,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +550,percolation,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +551,runoff,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +552,storm_outflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +553,baseflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +554,catchment_outflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +555,reservoir_outflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +556,gw1_gw2,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +557,gw2_gw1,0.16624001883711,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +558,urban_drainage,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +559,percolation,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +560,runoff,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +561,storm_outflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +562,baseflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +563,catchment_outflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +564,reservoir_outflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +565,gw1_gw2,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +566,gw2_gw1,0.16513175204486252,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +567,urban_drainage,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +568,percolation,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +569,runoff,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +570,storm_outflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +571,baseflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +572,catchment_outflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +573,reservoir_outflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +574,gw1_gw2,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +575,gw2_gw1,0.1640308736978966,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +576,urban_drainage,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +577,percolation,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +578,runoff,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +579,storm_outflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +580,baseflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +581,catchment_outflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +582,reservoir_outflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +583,gw1_gw2,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +584,gw2_gw1,0.1629373345399107,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +585,urban_drainage,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +586,percolation,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +587,runoff,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +588,storm_outflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +589,baseflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +590,catchment_outflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +591,reservoir_outflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +592,gw1_gw2,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +593,gw2_gw1,0.16185108564297793,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +594,urban_drainage,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +595,percolation,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +596,runoff,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +597,storm_outflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +598,baseflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +599,catchment_outflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +600,reservoir_outflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +601,gw1_gw2,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +602,gw2_gw1,0.160772078405358,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +603,urban_drainage,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +604,percolation,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +605,runoff,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +606,storm_outflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +607,baseflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +608,catchment_outflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +609,reservoir_outflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +610,gw1_gw2,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +611,gw2_gw1,0.1597002645493225,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +612,urban_drainage,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +613,percolation,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +614,runoff,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +615,storm_outflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +616,baseflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +617,catchment_outflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +618,reservoir_outflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +619,gw1_gw2,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +620,gw2_gw1,0.1586355961189937,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +621,urban_drainage,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +622,percolation,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +623,runoff,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +624,storm_outflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +625,baseflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +626,catchment_outflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +627,reservoir_outflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +628,gw1_gw2,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +629,gw2_gw1,0.15757802547820055,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +630,urban_drainage,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +631,percolation,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +632,runoff,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +633,storm_outflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +634,baseflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +635,catchment_outflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +636,reservoir_outflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +637,gw1_gw2,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +638,gw2_gw1,0.15652750530834603,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +639,urban_drainage,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +640,percolation,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +641,runoff,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +642,storm_outflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +643,baseflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +644,catchment_outflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +645,reservoir_outflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +646,gw1_gw2,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +647,gw2_gw1,0.1554839886062901,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +648,urban_drainage,0.04,2009-05-14,0.0,0.0,5.811965811965813e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +649,percolation,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +650,runoff,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +651,storm_outflow,0.04,2009-05-14,0.0,0.0,5.811965811965813e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +652,baseflow,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +653,catchment_outflow,0.04,2009-05-14,0.0,0.0,5.811965811965813e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +654,reservoir_outflow,0.0585,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +655,gw1_gw2,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +656,gw2_gw1,0.15444742868224834,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +657,urban_drainage,0.04,2009-05-15,0.0,0.0,6.866498134103769e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +658,percolation,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +659,runoff,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +660,storm_outflow,0.04,2009-05-15,0.0,0.0,6.866498134103769e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +661,baseflow,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +662,catchment_outflow,0.04,2009-05-15,0.0,0.0,6.866498134103769e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +663,reservoir_outflow,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +664,gw1_gw2,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +665,gw2_gw1,0.15341777915769983,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +666,urban_drainage,0.04,2009-05-16,0.0,0.0,5.619143159049264e-06,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 +667,percolation,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +668,runoff,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +669,storm_outflow,0.04,2009-05-16,0.0,0.0,5.619143159049264e-06,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 +670,baseflow,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +671,catchment_outflow,0.04,2009-05-16,0.0,0.0,5.619143159049264e-06,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 +672,reservoir_outflow,0.006999999999999999,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +673,gw1_gw2,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +674,gw2_gw1,0.15239499396331546,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +675,urban_drainage,0.04,2009-05-17,0.0,0.0,1.335210113632281e-06,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 +676,percolation,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +677,runoff,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +678,storm_outflow,0.04,2009-05-17,0.0,0.0,1.335210113632281e-06,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 +679,baseflow,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +680,catchment_outflow,0.04,2009-05-17,0.0,0.0,1.335210113632281e-06,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 +681,reservoir_outflow,0.023,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +682,gw1_gw2,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +683,gw2_gw1,0.15137902733689323,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +684,urban_drainage,0.04,2009-05-18,0.0,0.0,9.765591294634837e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 +685,percolation,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +686,runoff,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +687,storm_outflow,0.04,2009-05-18,0.0,0.0,9.765591294634837e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 +688,baseflow,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +689,catchment_outflow,0.04,2009-05-18,0.0,0.0,9.765591294634837e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 +690,reservoir_outflow,0.0225,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +691,gw1_gw2,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +692,gw2_gw1,0.15036983382131394,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +693,urban_drainage,0.031,2009-05-19,0.0,0.0,1.3906236517853935e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +694,percolation,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +695,runoff,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +696,storm_outflow,0.031,2009-05-19,0.0,0.0,1.3906236517853935e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +697,baseflow,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +698,catchment_outflow,0.031,2009-05-19,0.0,0.0,1.3906236517853935e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +699,reservoir_outflow,0.0075,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +700,gw1_gw2,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +701,gw2_gw1,0.14936736826250546,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +702,urban_drainage,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +703,percolation,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +704,runoff,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +705,storm_outflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +706,baseflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +707,catchment_outflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +708,reservoir_outflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +709,gw1_gw2,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +710,gw2_gw1,0.148371585807422,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +711,urban_drainage,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +712,percolation,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +713,runoff,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +714,storm_outflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +715,baseflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +716,catchment_outflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +717,reservoir_outflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +718,gw1_gw2,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +719,gw2_gw1,0.14738244190203922,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +720,urban_drainage,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +721,percolation,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +722,runoff,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +723,storm_outflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +724,baseflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +725,catchment_outflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +726,reservoir_outflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +727,gw1_gw2,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +728,gw2_gw1,0.14639989228935876,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +729,urban_drainage,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +730,percolation,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +731,runoff,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +732,storm_outflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +733,baseflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +734,catchment_outflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +735,reservoir_outflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +736,gw1_gw2,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +737,gw2_gw1,0.14542389300742967,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +738,urban_drainage,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +739,percolation,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +740,runoff,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +741,storm_outflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +742,baseflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +743,catchment_outflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +744,reservoir_outflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +745,gw1_gw2,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +746,gw2_gw1,0.14445440038738014,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +747,urban_drainage,0.0039999999999999975,2009-05-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +748,percolation,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +749,runoff,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +750,storm_outflow,0.0039999999999999975,2009-05-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +751,baseflow,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +752,catchment_outflow,0.0039999999999999975,2009-05-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +753,reservoir_outflow,0.0019999999999999987,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +754,gw1_gw2,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +755,gw2_gw1,0.14349137105146426,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +756,urban_drainage,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +757,percolation,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +758,runoff,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +759,storm_outflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +760,baseflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +761,catchment_outflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +762,reservoir_outflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +763,gw1_gw2,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +764,gw2_gw1,0.14253476191112122,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +765,urban_drainage,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +766,percolation,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +767,runoff,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +768,storm_outflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +769,baseflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +770,catchment_outflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +771,reservoir_outflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +772,gw1_gw2,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +773,gw2_gw1,0.1415845301650469,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +774,urban_drainage,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +775,percolation,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +776,runoff,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +777,storm_outflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +778,baseflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +779,catchment_outflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +780,reservoir_outflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +781,gw1_gw2,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +782,gw2_gw1,0.14064063329727983,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +783,urban_drainage,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +784,percolation,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +785,runoff,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +786,storm_outflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +787,baseflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +788,catchment_outflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +789,reservoir_outflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +790,gw1_gw2,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +791,gw2_gw1,0.13970302907529852,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +792,urban_drainage,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +793,percolation,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +794,runoff,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +795,storm_outflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +796,baseflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +797,catchment_outflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +798,reservoir_outflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +799,gw1_gw2,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +800,gw2_gw1,0.1387716755481296,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +801,urban_drainage,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +802,percolation,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +803,runoff,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +804,storm_outflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +805,baseflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +806,catchment_outflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +807,reservoir_outflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +808,gw1_gw2,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +809,gw2_gw1,0.13784653104447547,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +810,urban_drainage,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +811,percolation,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +812,runoff,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +813,storm_outflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +814,baseflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +815,catchment_outflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +816,reservoir_outflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +817,gw1_gw2,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +818,gw2_gw1,0.13692755417084543,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +819,urban_drainage,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +820,percolation,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +821,runoff,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +822,storm_outflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +823,baseflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +824,catchment_outflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +825,reservoir_outflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +826,gw1_gw2,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +827,gw2_gw1,0.13601470380970646,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +828,urban_drainage,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +829,percolation,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +830,runoff,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +831,storm_outflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +832,baseflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +833,catchment_outflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +834,reservoir_outflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +835,gw1_gw2,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +836,gw2_gw1,0.13510793911764196,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +837,urban_drainage,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +838,percolation,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +839,runoff,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +840,storm_outflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +841,baseflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +842,catchment_outflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +843,reservoir_outflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +844,gw1_gw2,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +845,gw2_gw1,0.1342072195235245,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +846,urban_drainage,0.04,2009-06-05,0.0,0.0,6.875000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 +847,percolation,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +848,runoff,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +849,storm_outflow,0.04,2009-06-05,0.0,0.0,6.875000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 +850,baseflow,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +851,catchment_outflow,0.04,2009-06-05,0.0,0.0,6.875000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 +852,reservoir_outflow,0.032,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +853,gw1_gw2,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +854,gw2_gw1,0.13331250472670073,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +855,urban_drainage,0.04,2009-06-06,0.0,0.0,1.2974683544303798e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 +856,percolation,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +857,runoff,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +858,storm_outflow,0.04,2009-06-06,0.0,0.0,1.2974683544303798e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 +859,baseflow,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +860,catchment_outflow,0.04,2009-06-06,0.0,0.0,1.2974683544303798e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 +861,reservoir_outflow,0.067,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +862,gw1_gw2,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +863,gw2_gw1,0.1324237546951899,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +864,urban_drainage,0.04,2009-06-07,0.0,0.0,1.3136140532162232e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +865,percolation,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +866,runoff,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +867,storm_outflow,0.04,2009-06-07,0.0,0.0,1.3136140532162232e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +868,baseflow,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +869,catchment_outflow,0.04,2009-06-07,0.0,0.0,1.3136140532162232e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +870,reservoir_outflow,0.014499999999999999,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +871,gw1_gw2,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +872,gw2_gw1,0.1315409296638883,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +873,urban_drainage,0.04,2009-06-08,0.0,0.0,2.0287270077992797e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +874,percolation,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +875,runoff,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +876,storm_outflow,0.04,2009-06-08,0.0,0.0,2.0287270077992797e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +877,baseflow,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +878,catchment_outflow,0.04,2009-06-08,0.0,0.0,2.0287270077992797e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +879,reservoir_outflow,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +880,gw1_gw2,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +881,gw2_gw1,0.1306639901327957,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +882,urban_drainage,0.028999999999999988,2009-06-09,0.0,0.0,3.485190584554117e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +883,percolation,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +884,runoff,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +885,storm_outflow,0.028999999999999988,2009-06-09,0.0,0.0,3.485190584554117e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +886,baseflow,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +887,catchment_outflow,0.028999999999999988,2009-06-09,0.0,0.0,3.485190584554117e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +888,reservoir_outflow,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +889,gw1_gw2,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +890,gw2_gw1,0.12979289686524373,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +891,urban_drainage,0.04,2009-06-10,0.0,0.0,5.333333333333329e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +892,percolation,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +893,runoff,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +894,storm_outflow,0.04,2009-06-10,0.0,0.0,5.333333333333329e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +895,baseflow,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +896,catchment_outflow,0.04,2009-06-10,0.0,0.0,5.333333333333329e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +897,reservoir_outflow,0.0375,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +898,gw1_gw2,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +899,gw2_gw1,0.12892761088614205,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +900,urban_drainage,0.014999999999999982,2009-06-11,0.0,0.0,1.466666666666666e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +901,percolation,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +902,runoff,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +903,storm_outflow,0.014999999999999982,2009-06-11,0.0,0.0,1.466666666666666e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +904,baseflow,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +905,catchment_outflow,0.014999999999999982,2009-06-11,0.0,0.0,1.466666666666666e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +906,reservoir_outflow,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +907,gw1_gw2,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +908,gw2_gw1,0.1280680934802346,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +909,urban_drainage,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +910,percolation,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +911,runoff,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +912,storm_outflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +913,baseflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +914,catchment_outflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +915,reservoir_outflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +916,gw1_gw2,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +917,gw2_gw1,0.12721430619036642,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +918,urban_drainage,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +919,percolation,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +920,runoff,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +921,storm_outflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +922,baseflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +923,catchment_outflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +924,reservoir_outflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +925,gw1_gw2,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +926,gw2_gw1,0.12636621081576377,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +927,urban_drainage,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +928,percolation,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +929,runoff,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +930,storm_outflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +931,baseflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +932,catchment_outflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +933,reservoir_outflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +934,gw1_gw2,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +935,gw2_gw1,0.1255237694103256,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +936,urban_drainage,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +937,percolation,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +938,runoff,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +939,storm_outflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +940,baseflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +941,catchment_outflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +942,reservoir_outflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +943,gw1_gw2,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +944,gw2_gw1,0.1246869442809233,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +945,urban_drainage,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +946,percolation,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +947,runoff,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +948,storm_outflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +949,baseflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +950,catchment_outflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +951,reservoir_outflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +952,gw1_gw2,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +953,gw2_gw1,0.12385569798571705,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +954,urban_drainage,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +955,percolation,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +956,runoff,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +957,storm_outflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +958,baseflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +959,catchment_outflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +960,reservoir_outflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +961,gw1_gw2,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +962,gw2_gw1,0.12302999333247905,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +963,urban_drainage,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +964,percolation,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +965,runoff,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +966,storm_outflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +967,baseflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +968,catchment_outflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +969,reservoir_outflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +970,gw1_gw2,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +971,gw2_gw1,0.1222097933769291,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +972,urban_drainage,0.002999999999999999,2009-06-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +973,percolation,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +974,runoff,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +975,storm_outflow,0.002999999999999999,2009-06-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +976,baseflow,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +977,catchment_outflow,0.002999999999999999,2009-06-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +978,reservoir_outflow,0.0014999999999999996,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +979,gw1_gw2,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +980,gw2_gw1,0.12139506142108286,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +981,urban_drainage,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +982,percolation,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +983,runoff,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +984,storm_outflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +985,baseflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +986,catchment_outflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +987,reservoir_outflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +988,gw1_gw2,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +989,gw2_gw1,0.12058576101160892,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +990,urban_drainage,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +991,percolation,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +992,runoff,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +993,storm_outflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +994,baseflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +995,catchment_outflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +996,reservoir_outflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +997,gw1_gw2,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +998,gw2_gw1,0.11978185593819822,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +999,urban_drainage,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1000,percolation,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1001,runoff,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1002,storm_outflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1003,baseflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1004,catchment_outflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1005,reservoir_outflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1006,gw1_gw2,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1007,gw2_gw1,0.11898331023194367,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1008,urban_drainage,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1009,percolation,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1010,runoff,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1011,storm_outflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1012,baseflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1013,catchment_outflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1014,reservoir_outflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1015,gw1_gw2,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1016,gw2_gw1,0.11819008816373061,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1017,urban_drainage,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1018,percolation,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1019,runoff,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1020,storm_outflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1021,baseflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1022,catchment_outflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1023,reservoir_outflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1024,gw1_gw2,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1025,gw2_gw1,0.11740215424263917,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1026,urban_drainage,0.017,2009-06-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 +1027,percolation,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1028,runoff,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1029,storm_outflow,0.017,2009-06-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 +1030,baseflow,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1031,catchment_outflow,0.017,2009-06-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 +1032,reservoir_outflow,0.0085,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1033,gw1_gw2,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1034,gw2_gw1,0.11661947321435484,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1035,urban_drainage,0.029999999999999995,2009-06-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +1036,percolation,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1037,runoff,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1038,storm_outflow,0.029999999999999995,2009-06-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +1039,baseflow,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1040,catchment_outflow,0.029999999999999995,2009-06-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +1041,reservoir_outflow,0.015,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1042,gw1_gw2,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1043,gw2_gw1,0.11584201005959241,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1044,urban_drainage,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1045,percolation,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1046,runoff,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1047,storm_outflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1048,baseflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1049,catchment_outflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1050,reservoir_outflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1051,gw1_gw2,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1052,gw2_gw1,0.11506972999252857,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1053,urban_drainage,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1054,percolation,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1055,runoff,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1056,storm_outflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1057,baseflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1058,catchment_outflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1059,reservoir_outflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1060,gw1_gw2,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1061,gw2_gw1,0.11430259845924501,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1062,urban_drainage,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1063,percolation,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1064,runoff,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1065,storm_outflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1066,baseflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1067,catchment_outflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1068,reservoir_outflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1069,gw1_gw2,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1070,gw2_gw1,0.11354058113618369,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1071,urban_drainage,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1072,percolation,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1073,runoff,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1074,storm_outflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1075,baseflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1076,catchment_outflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1077,reservoir_outflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1078,gw1_gw2,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1079,gw2_gw1,0.11278364392860905,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1080,urban_drainage,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1081,percolation,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1082,runoff,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1083,storm_outflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1084,baseflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1085,catchment_outflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1086,reservoir_outflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1087,gw1_gw2,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1088,gw2_gw1,0.11203175296908477,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1089,urban_drainage,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1090,percolation,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1091,runoff,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1092,storm_outflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1093,baseflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1094,catchment_outflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1095,reservoir_outflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1096,gw1_gw2,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1097,gw2_gw1,0.11128487461595765,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1098,urban_drainage,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1099,percolation,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1100,runoff,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1101,storm_outflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1102,baseflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1103,catchment_outflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1104,reservoir_outflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1105,gw1_gw2,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1106,gw2_gw1,0.11054297545185127,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1107,urban_drainage,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1108,percolation,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1109,runoff,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1110,storm_outflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1111,baseflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1112,catchment_outflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1113,reservoir_outflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1114,gw1_gw2,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1115,gw2_gw1,0.1098060222821724,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1116,urban_drainage,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1117,percolation,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1118,runoff,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1119,storm_outflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1120,baseflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1121,catchment_outflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1122,reservoir_outflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1123,gw1_gw2,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1124,gw2_gw1,0.10907398213362463,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1125,urban_drainage,0.005,2009-07-06,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 +1126,percolation,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1127,runoff,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1128,storm_outflow,0.005,2009-07-06,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 +1129,baseflow,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1130,catchment_outflow,0.005,2009-07-06,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 +1131,reservoir_outflow,0.0025,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1132,gw1_gw2,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1133,gw2_gw1,0.10834682225273369,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1134,urban_drainage,0.04,2009-07-07,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1135,percolation,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1136,runoff,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1137,storm_outflow,0.04,2009-07-07,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1138,baseflow,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1139,catchment_outflow,0.04,2009-07-07,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1140,reservoir_outflow,0.045,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1141,gw1_gw2,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1142,gw2_gw1,0.10762451010438223,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1143,urban_drainage,0.04,2009-07-08,0.0,0.0,1.44702842377261e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1144,percolation,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1145,runoff,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1146,storm_outflow,0.04,2009-07-08,0.0,0.0,1.44702842377261e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1147,baseflow,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1148,catchment_outflow,0.04,2009-07-08,0.0,0.0,1.44702842377261e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1149,reservoir_outflow,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1150,gw1_gw2,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1151,gw2_gw1,0.10690701337035301,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1152,urban_drainage,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1153,percolation,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1154,runoff,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1155,storm_outflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1156,baseflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1157,catchment_outflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1158,reservoir_outflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1159,gw1_gw2,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1160,gw2_gw1,0.1061942999478843,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1161,urban_drainage,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1162,percolation,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1163,runoff,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1164,storm_outflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1165,baseflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1166,catchment_outflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1167,reservoir_outflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1168,gw1_gw2,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1169,gw2_gw1,0.10548633794823131,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1170,urban_drainage,0.04,2009-07-11,0.0,0.0,1.8285453716370265e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1171,percolation,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1172,runoff,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1173,storm_outflow,0.04,2009-07-11,0.0,0.0,1.8285453716370265e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1174,baseflow,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1175,catchment_outflow,0.04,2009-07-11,0.0,0.0,1.8285453716370265e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1176,reservoir_outflow,0.034,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1177,gw1_gw2,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1178,gw2_gw1,0.10478309569524331,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1179,urban_drainage,0.021000000000000005,2009-07-12,0.0,0.0,2.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1180,percolation,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1181,runoff,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1182,storm_outflow,0.021000000000000005,2009-07-12,0.0,0.0,2.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1183,baseflow,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1184,catchment_outflow,0.021000000000000005,2009-07-12,0.0,0.0,2.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1185,reservoir_outflow,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1186,gw1_gw2,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1187,gw2_gw1,0.10408454172394173,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1188,urban_drainage,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1189,percolation,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1190,runoff,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1191,storm_outflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1192,baseflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1193,catchment_outflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1194,reservoir_outflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1195,gw1_gw2,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1196,gw2_gw1,0.10339064477911536,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1197,urban_drainage,0.005,2009-07-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 +1198,percolation,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1199,runoff,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1200,storm_outflow,0.005,2009-07-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 +1201,baseflow,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1202,catchment_outflow,0.005,2009-07-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 +1203,reservoir_outflow,0.0025,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1204,gw1_gw2,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1205,gw2_gw1,0.1027013738139214,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1206,urban_drainage,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1207,percolation,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1208,runoff,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1209,storm_outflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1210,baseflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1211,catchment_outflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1212,reservoir_outflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1213,gw1_gw2,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1214,gw2_gw1,0.10201669798849516,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1215,urban_drainage,0.04,2009-07-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 +1216,percolation,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1217,runoff,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1218,storm_outflow,0.04,2009-07-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 +1219,baseflow,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1220,catchment_outflow,0.04,2009-07-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 +1221,reservoir_outflow,0.031000000000000003,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1222,gw1_gw2,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1223,gw2_gw1,0.10133658666857191,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1224,urban_drainage,0.036000000000000004,2009-07-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 +1225,percolation,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1226,runoff,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1227,storm_outflow,0.036000000000000004,2009-07-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 +1228,baseflow,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1229,catchment_outflow,0.036000000000000004,2009-07-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 +1230,reservoir_outflow,0.006999999999999999,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1231,gw1_gw2,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1232,gw2_gw1,0.10066100942411449,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1233,urban_drainage,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1234,percolation,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1235,runoff,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1236,storm_outflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1237,baseflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1238,catchment_outflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1239,reservoir_outflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1240,gw1_gw2,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1241,gw2_gw1,0.0999899360279537,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1242,urban_drainage,0.04,2009-07-19,0.0,0.0,1.7391304347826088e-06,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 +1243,percolation,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1244,runoff,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1245,storm_outflow,0.04,2009-07-19,0.0,0.0,1.7391304347826088e-06,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 +1246,baseflow,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1247,catchment_outflow,0.04,2009-07-19,0.0,0.0,1.7391304347826088e-06,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 +1248,reservoir_outflow,0.023,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1249,gw1_gw2,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1250,gw2_gw1,0.09932333645443414,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1251,urban_drainage,0.04,2009-07-20,0.0,0.0,6.815511163337248e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 +1252,percolation,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1253,runoff,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1254,storm_outflow,0.04,2009-07-20,0.0,0.0,6.815511163337248e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 +1255,baseflow,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1256,catchment_outflow,0.04,2009-07-20,0.0,0.0,6.815511163337248e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 +1257,reservoir_outflow,0.034,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1258,gw1_gw2,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1259,gw2_gw1,0.09866118087807117,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1260,urban_drainage,0.04,2009-07-21,0.0,0.0,9.290108522845095e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1261,percolation,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1262,runoff,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1263,storm_outflow,0.04,2009-07-21,0.0,0.0,9.290108522845095e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1264,baseflow,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1265,catchment_outflow,0.04,2009-07-21,0.0,0.0,9.290108522845095e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1266,reservoir_outflow,0.017,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1267,gw1_gw2,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1268,gw2_gw1,0.09800343967221732,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1269,urban_drainage,0.011000000000000003,2009-07-22,0.0,0.0,1.6503075965991565e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1270,percolation,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1271,runoff,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1272,storm_outflow,0.011000000000000003,2009-07-22,0.0,0.0,1.6503075965991565e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1273,baseflow,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1274,catchment_outflow,0.011000000000000003,2009-07-22,0.0,0.0,1.6503075965991565e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1275,reservoir_outflow,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1276,gw1_gw2,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1277,gw2_gw1,0.0973500834077358,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1278,urban_drainage,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1279,percolation,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1280,runoff,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1281,storm_outflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1282,baseflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1283,catchment_outflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1284,reservoir_outflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1285,gw1_gw2,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1286,gw2_gw1,0.09670108285168447,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1287,urban_drainage,0.0009999999999999983,2009-07-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 +1288,percolation,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1289,runoff,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1290,storm_outflow,0.0009999999999999983,2009-07-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 +1291,baseflow,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1292,catchment_outflow,0.0009999999999999983,2009-07-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 +1293,reservoir_outflow,0.0004999999999999991,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1294,gw1_gw2,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1295,gw2_gw1,0.0960564089660064,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1296,urban_drainage,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1297,percolation,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1298,runoff,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1299,storm_outflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1300,baseflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1301,catchment_outflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1302,reservoir_outflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1303,gw1_gw2,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1304,gw2_gw1,0.0954160329062333,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1305,urban_drainage,0.04,2009-07-26,0.0,0.0,1.5094339622641509e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 +1306,percolation,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1307,runoff,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1308,storm_outflow,0.04,2009-07-26,0.0,0.0,1.5094339622641509e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 +1309,baseflow,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1310,catchment_outflow,0.04,2009-07-26,0.0,0.0,1.5094339622641509e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 +1311,reservoir_outflow,0.0265,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1312,gw1_gw2,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1313,gw2_gw1,0.09477992602019167,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1314,urban_drainage,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1315,percolation,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1316,runoff,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1317,storm_outflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1318,baseflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1319,catchment_outflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1320,reservoir_outflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1321,gw1_gw2,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1322,gw2_gw1,0.0941480598467237,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1323,urban_drainage,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1324,percolation,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1325,runoff,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1326,storm_outflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1327,baseflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1328,catchment_outflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1329,reservoir_outflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1330,gw1_gw2,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1331,gw2_gw1,0.09352040611441233,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1332,urban_drainage,0.039999999999999994,2009-07-29,0.0,0.0,9.185700099304864e-07,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1333,percolation,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1334,runoff,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1335,storm_outflow,0.039999999999999994,2009-07-29,0.0,0.0,9.185700099304864e-07,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1336,baseflow,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1337,catchment_outflow,0.039999999999999994,2009-07-29,0.0,0.0,9.185700099304864e-07,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1338,reservoir_outflow,0.076,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1339,gw1_gw2,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1340,gw2_gw1,0.09289693674031625,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1341,urban_drainage,0.04,2009-07-30,0.0,0.0,1.310824230387289e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1342,percolation,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1343,runoff,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1344,storm_outflow,0.04,2009-07-30,0.0,0.0,1.310824230387289e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1345,baseflow,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1346,catchment_outflow,0.04,2009-07-30,0.0,0.0,1.310824230387289e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1347,reservoir_outflow,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1348,gw1_gw2,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1349,gw2_gw1,0.09227762382871402,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1350,urban_drainage,0.04,2009-07-31,0.0,0.0,1.811762109676707e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 +1351,percolation,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1352,runoff,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1353,storm_outflow,0.04,2009-07-31,0.0,0.0,1.811762109676707e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 +1354,baseflow,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1355,catchment_outflow,0.04,2009-07-31,0.0,0.0,1.811762109676707e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 +1356,reservoir_outflow,0.0014999999999999996,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1357,gw1_gw2,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1358,gw2_gw1,0.09166243966985609,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1359,urban_drainage,0.04,2009-08-01,0.0,0.0,1.848611085087823e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 +1360,percolation,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1361,runoff,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1362,storm_outflow,0.04,2009-08-01,0.0,0.0,1.848611085087823e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 +1363,baseflow,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1364,catchment_outflow,0.04,2009-08-01,0.0,0.0,1.848611085087823e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 +1365,reservoir_outflow,0.010500000000000002,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1366,gw1_gw2,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1367,gw2_gw1,0.09105135673872376,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1368,urban_drainage,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1369,percolation,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1370,runoff,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1371,storm_outflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1372,baseflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1373,catchment_outflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1374,reservoir_outflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1375,gw1_gw2,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1376,gw2_gw1,0.09044434769379901,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1377,urban_drainage,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1378,percolation,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1379,runoff,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1380,storm_outflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1381,baseflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1382,catchment_outflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1383,reservoir_outflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1384,gw1_gw2,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1385,gw2_gw1,0.08984138537584041,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1386,urban_drainage,0.04,2009-08-04,0.0,0.0,7.311266198281305e-07,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1387,percolation,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1388,runoff,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1389,storm_outflow,0.04,2009-08-04,0.0,0.0,7.311266198281305e-07,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1390,baseflow,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1391,catchment_outflow,0.04,2009-08-04,0.0,0.0,7.311266198281305e-07,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1392,reservoir_outflow,0.0985,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1393,gw1_gw2,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1394,gw2_gw1,0.08924244280666792,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1395,urban_drainage,0.04,2009-08-05,0.0,0.0,1.0824257294616538e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1396,percolation,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1397,runoff,0.0029788582833558063,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.95416667,0.0,0.0,0.0 +1398,storm_outflow,0.04,2009-08-05,0.0,0.0,1.0824257294616538e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1399,baseflow,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1400,catchment_outflow,0.042978858283355806,2009-08-05,0.0,0.0,1.0824257294616538e-06,0.0,0.0,0.0,0.0,0.0,17.880487030137946,0.0,0.0,0.0 +1401,reservoir_outflow,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1402,gw1_gw2,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1403,gw2_gw1,0.0886474931879569,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1404,urban_drainage,0.04,2009-08-06,0.0,0.0,5.652606348304117e-07,0.0,0.0,0.0,0.0,0.0,17.972481341231344,0.0,0.0,0.0 +1405,percolation,0.026148777566410188,2009-08-06,0.0,0.0,2.210869346925628e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1406,runoff,0.17891268861228024,2009-08-06,0.0,0.0,7.369564489752096e-06,0.0,0.0,0.0,0.0,0.0,17.49119580627303,0.0,0.0,0.0 +1407,storm_outflow,0.04,2009-08-06,0.0,0.0,5.652606348304117e-07,0.0,0.0,0.0,0.0,0.0,17.972481341231344,0.0,0.0,0.0 +1408,baseflow,6.537194391602547e-05,2009-08-06,0.0,0.0,5.52717336731407e-09,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1409,catchment_outflow,0.21897806055619629,2009-08-06,0.0,0.0,7.940352297949822e-06,0.0,0.0,0.0,0.0,0.0,17.578940283833244,0.0,0.0,0.0 +1410,reservoir_outflow,0.0825,2009-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1411,gw1_gw2,0.0,2009-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1412,gw2_gw1,0.08805650990003731,2009-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1413,urban_drainage,0.04,2009-08-07,0.0,0.0,8.119203112564128e-07,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1414,percolation,0.025625802015081984,2009-08-07,0.0,0.0,2.1666519599871155e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1415,runoff,0.06973007351042718,2009-08-07,0.0,0.0,5.895651591801677e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1416,storm_outflow,0.04,2009-08-07,0.0,0.0,8.119203112564128e-07,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1417,baseflow,0.00012927301909394036,2009-08-07,0.0,0.0,1.0929985333863574e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1418,catchment_outflow,0.10985934652952112,2009-08-07,0.0,0.0,6.718501888391954e-06,0.0,0.0,0.0,0.0,0.0,17.30354416062016,0.0,0.0,0.0 +1419,reservoir_outflow,0.0,2009-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1420,gw1_gw2,0.0,2009-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1421,gw2_gw1,0.08746946650070378,2009-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1422,urban_drainage,0.04,2009-08-08,0.0,0.0,1.1919095425072792e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1423,percolation,0.025113285974780342,2009-08-08,0.0,0.0,2.123318920787373e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1424,runoff,0.05578405880834173,2009-08-08,0.0,0.0,4.71652127344134e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1425,storm_outflow,0.04,2009-08-08,0.0,0.0,1.1919095425072792e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1426,baseflow,0.00019173305148315636,2009-08-08,0.0,0.0,1.6210957672497347e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1427,catchment_outflow,0.09597579185982488,2009-08-08,0.0,0.0,5.924641773621116e-06,0.0,0.0,0.0,0.0,0.0,17.358950540917206,0.0,0.0,0.0 +1428,reservoir_outflow,0.0,2009-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1429,gw1_gw2,0.0,2009-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1430,gw2_gw1,0.08688633672403245,2009-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1431,urban_drainage,0.04,2009-08-09,0.0,0.0,1.917343529440752e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1432,percolation,0.02461102025528474,2009-08-09,0.0,0.0,2.080852542371626e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1433,runoff,0.04462724704667339,2009-08-09,0.0,0.0,3.7732170187530727e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1434,storm_outflow,0.04,2009-08-09,0.0,0.0,1.917343529440752e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1435,baseflow,0.00025278126949266033,2009-08-09,0.0,0.0,2.1372561634245166e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1436,catchment_outflow,0.08488002831616605,2009-08-09,0.0,0.0,5.71193310982807e-06,0.0,0.0,0.0,0.0,0.0,17.416262834994903,0.0,0.0,0.0 +1437,reservoir_outflow,0.0,2009-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1438,gw1_gw2,0.0,2009-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1439,gw2_gw1,0.08630709447920548,2009-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1440,urban_drainage,0.03200000000000001,2009-08-10,0.0,0.0,3.3008122353289023e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1441,percolation,0.024118799850179045,2009-08-10,0.0,0.0,2.0392354915241935e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1442,runoff,0.03764932022855343,2009-08-10,0.0,0.0,3.0185736150024592e-06,0.0,0.0,0.0,0.0,0.0,16.994468570615723,0.0,0.0,0.0 +1443,storm_outflow,0.03200000000000001,2009-08-10,0.0,0.0,3.3008122353289023e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1444,baseflow,0.0003124463159443763,2009-08-10,0.0,0.0,2.6417218958970036e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1445,catchment_outflow,0.06996176654449782,2009-08-10,0.0,0.0,6.345803069290331e-06,0.0,0.0,0.0,0.0,0.0,17.441474224179444,0.0,0.0,0.0 +1446,reservoir_outflow,0.0,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1447,gw1_gw2,0.0,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1448,gw2_gw1,0.08573171384934408,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1449,urban_drainage,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1450,percolation,0.02363642385317546,2009-08-11,0.0,0.0,1.9984507816937095e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1451,runoff,0.028561438109870968,2009-08-11,0.0,0.0,2.414858892001967e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1452,storm_outflow,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1453,baseflow,0.000370756259787454,2009-08-11,0.0,0.0,3.134730286580688e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1454,catchment_outflow,0.028932194369658423,2009-08-11,0.0,0.0,2.446206194867774e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1455,reservoir_outflow,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1456,gw1_gw2,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1457,gw2_gw1,0.08516016909034861,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1458,urban_drainage,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1459,percolation,0.025895758441401996,2009-08-12,0.0,0.0,2.204654946353774e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1460,runoff,0.041542213566197056,2009-08-12,0.0,0.0,2.7524643812480347e-06,0.0,0.0,0.0,0.0,0.0,17.381860878758687,0.0,0.0,0.0 +1461,storm_outflow,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1462,baseflow,0.0004345687652414904,2009-08-12,0.0,0.0,3.67805719745268e-08,0.0,0.0,0.0,0.0,0.0,16.925814735320973,0.0,0.0,0.0 +1463,catchment_outflow,0.04197678233143855,2009-08-12,0.0,0.0,2.7892449532225615e-06,0.0,0.0,0.0,0.0,0.0,17.377139616231176,0.0,0.0,0.0 +1464,reservoir_outflow,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1465,gw1_gw2,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1466,gw2_gw1,0.08459243462974637,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1467,urban_drainage,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1468,percolation,0.025377843272573957,2009-08-13,0.0,0.0,2.1605618474266982e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1469,runoff,0.025564821897757536,2009-08-13,0.0,0.0,2.2019715049984285e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1470,storm_outflow,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1471,baseflow,0.0004969269515098215,2009-08-13,0.0,0.0,4.209002516315723e-08,0.0,0.0,0.0,0.0,0.0,16.929672992197066,0.0,0.0,0.0 +1472,catchment_outflow,0.026061748849267357,2009-08-13,0.0,0.0,2.2440615301615858e-06,0.0,0.0,0.0,0.0,0.0,17.014788387022218,0.0,0.0,0.0 +1473,reservoir_outflow,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1474,gw1_gw2,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1475,gw2_gw1,0.0840284850655479,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1476,urban_drainage,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1477,percolation,0.024870286407122476,2009-08-14,0.0,0.0,2.117350610478164e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1478,runoff,0.020451857518206024,2009-08-14,0.0,0.0,1.7615772039987423e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1479,storm_outflow,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1480,baseflow,0.0005578603501488531,2009-08-14,0.0,0.0,4.727817662644475e-08,0.0,0.0,0.0,0.0,0.0,16.932611068915975,0.0,0.0,0.0 +1481,catchment_outflow,0.021009717868354878,2009-08-14,0.0,0.0,1.808855380625187e-06,0.0,0.0,0.0,0.0,0.0,17.014216910499464,0.0,0.0,0.0 +1482,reservoir_outflow,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1483,gw1_gw2,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1484,gw2_gw1,0.0834682951651109,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1485,urban_drainage,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1486,percolation,0.024372880678980028,2009-08-15,0.0,0.0,2.075003598268601e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1487,runoff,0.01636148601456482,2009-08-15,0.0,0.0,1.4092617631989938e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1488,storm_outflow,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1489,baseflow,0.0006173979009709311,2009-08-15,0.0,0.0,5.234749018055014e-08,0.0,0.0,0.0,0.0,0.0,16.93492275849501,0.0,0.0,0.0 +1490,catchment_outflow,0.01697888391553575,2009-08-15,0.0,0.0,1.461609253379544e-06,0.0,0.0,0.0,0.0,0.0,17.013478563245236,0.0,0.0,0.0 +1491,reservoir_outflow,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1492,gw1_gw2,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1493,gw2_gw1,0.08291183986400999,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1494,urban_drainage,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1495,percolation,0.023885423065400428,2009-08-16,0.0,0.0,2.033503526303229e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1496,runoff,0.013089188811651855,2009-08-16,0.0,0.0,1.1274094105591947e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1497,storm_outflow,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1498,baseflow,0.0006755679638820049,2009-08-16,0.0,0.0,5.7300380270856836e-08,0.0,0.0,0.0,0.0,0.0,16.936788815659256,0.0,0.0,0.0 +1499,catchment_outflow,0.01376475677553386,2009-08-16,0.0,0.0,1.1847097908300514e-06,0.0,0.0,0.0,0.0,0.0,17.012533469505485,0.0,0.0,0.0 +1500,reservoir_outflow,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1501,gw1_gw2,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1502,gw2_gw1,0.08235909426491671,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1503,urban_drainage,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1504,percolation,0.02340771460409242,2009-08-17,0.0,0.0,1.9928334557771647e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1505,runoff,0.010471351049321485,2009-08-17,0.0,0.0,9.019275284473559e-07,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1506,storm_outflow,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1507,baseflow,0.0007323983304825309,2009-08-17,0.0,0.0,6.21392129596226e-08,0.0,0.0,0.0,0.0,0.0,16.93832655146428,0.0,0.0,0.0 +1508,catchment_outflow,0.011203749379804015,2009-08-17,0.0,0.0,9.640667414069785e-07,0.0,0.0,0.0,0.0,0.0,17.011336326194805,0.0,0.0,0.0 +1509,reservoir_outflow,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1510,gw1_gw2,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1511,gw2_gw1,0.08181003363648394,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1512,urban_drainage,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1513,percolation,0.022939560312010564,2009-08-18,0.0,0.0,1.952976786661621e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1514,runoff,0.008377080839457188,2009-08-18,0.0,0.0,7.215420227578848e-07,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1515,storm_outflow,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1516,baseflow,0.0007879162354363509,2009-08-18,0.0,0.0,6.68663068938776e-08,0.0,0.0,0.0,0.0,0.0,16.93961542321208,0.0,0.0,0.0 +1517,catchment_outflow,0.009164997074893539,2009-08-18,0.0,0.0,7.884083296517624e-07,0.0,0.0,0.0,0.0,0.0,17.009837987016866,0.0,0.0,0.0 +1518,reservoir_outflow,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1519,gw1_gw2,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1520,gw2_gw1,0.08126463341224072,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1521,urban_drainage,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1522,percolation,0.02248076910577036,2009-08-19,0.0,0.0,1.913917250928389e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1523,runoff,0.0070836084286648995,2009-08-19,0.0,0.0,5.772336182063078e-07,0.0,0.0,0.0,0.0,0.0,17.12705383460734,0.0,0.0,0.0 +1524,storm_outflow,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1525,baseflow,0.000842148367612186,2009-08-19,0.0,0.0,7.148393425396388e-08,0.0,0.0,0.0,0.0,0.0,16.940711162966547,0.0,0.0,0.0 +1526,catchment_outflow,0.007925756796277085,2009-08-19,0.0,0.0,6.487175524602717e-07,0.0,0.0,0.0,0.0,0.0,17.107254062702594,0.0,0.0,0.0 +1527,reservoir_outflow,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1528,gw1_gw2,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1529,gw2_gw1,0.0807228691894924,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1530,urban_drainage,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1531,percolation,0.022031153723654946,2009-08-20,0.0,0.0,1.875638905909821e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1532,runoff,0.006425848602264573,2009-08-20,0.0,0.0,4.617868945650462e-07,0.0,0.0,0.0,0.0,0.0,17.343267312221336,0.0,0.0,0.0 +1533,storm_outflow,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1534,baseflow,0.0008951208810022927,2009-08-20,0.0,0.0,7.599432168310352e-08,0.0,0.0,0.0,0.0,0.0,16.94165401764364,0.0,0.0,0.0 +1535,catchment_outflow,0.007320969483266866,2009-08-20,0.0,0.0,5.377812162481497e-07,0.0,0.0,0.0,0.0,0.0,17.294162825870682,0.0,0.0,0.0 +1536,reservoir_outflow,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1537,gw1_gw2,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1538,gw2_gw1,0.08018471672822916,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1539,urban_drainage,0.02700000000000001,2009-08-21,0.0,0.0,1.1000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1540,percolation,0.026007220973825376,2009-08-21,0.0,0.0,2.271356094842753e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1541,runoff,0.03450852550578415,2009-08-21,0.0,0.0,1.8135294058224649e-06,0.0,0.0,0.0,0.0,0.0,18.176412947912013,0.0,0.0,0.0 +1542,storm_outflow,0.02700000000000001,2009-08-21,0.0,0.0,1.1000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1543,baseflow,0.0009579011312343504,2009-08-21,0.0,0.0,8.148272611600265e-08,0.0,0.0,0.0,0.0,0.0,16.95168299570742,0.0,0.0,0.0 +1544,catchment_outflow,0.06246642663701851,2009-08-21,0.0,0.0,1.289501213193847e-05,0.0,0.0,0.0,0.0,0.0,18.47502080870884,0.0,0.0,0.0 +1545,reservoir_outflow,0.013500000000000002,2009-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1546,gw1_gw2,0.0,2009-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1547,gw2_gw1,0.07965015195004083,2009-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1548,urban_drainage,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1549,percolation,0.025487076554348866,2009-08-22,0.0,0.0,2.2259289729458976e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1550,runoff,0.015209093177557748,2009-08-22,0.0,0.0,1.4508235246579717e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 +1551,storm_outflow,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1552,baseflow,0.0010192240697921367,2009-08-22,0.0,0.0,8.684384173307738e-08,0.0,0.0,0.0,0.0,0.0,16.960293085455767,0.0,0.0,0.0 +1553,catchment_outflow,0.016228317247349886,2009-08-22,0.0,0.0,1.5376673663910492e-06,0.0,0.0,0.0,0.0,0.0,17.539059966725087,0.0,0.0,0.0 +1554,reservoir_outflow,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1555,gw1_gw2,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1556,gw2_gw1,0.07911915093704068,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1557,urban_drainage,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1558,percolation,0.0249773350232619,2009-08-23,0.0,0.0,2.1814103934869803e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1559,runoff,0.0121672745420462,2009-08-23,0.0,0.0,1.1606588197263777e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 +1560,storm_outflow,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1561,baseflow,0.001079119347175811,2009-08-23,0.0,0.0,9.208025811246212e-08,0.0,0.0,0.0,0.0,0.0,16.967764414536127,0.0,0.0,0.0 +1562,catchment_outflow,0.01324639388922201,2009-08-23,0.0,0.0,1.2527390778388399e-06,0.0,0.0,0.0,0.0,0.0,17.528145179230386,0.0,0.0,0.0 +1563,reservoir_outflow,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1564,gw1_gw2,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1565,gw2_gw1,0.07859168993079368,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1566,urban_drainage,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1567,percolation,0.024477788322796658,2009-08-24,0.0,0.0,2.1377821856172407e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1568,runoff,0.010539469487023676,2009-08-24,0.0,0.0,9.285270557811022e-07,0.0,0.0,0.0,0.0,0.0,17.661713344109604,0.0,0.0,0.0 +1569,storm_outflow,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1570,baseflow,0.001137616019614863,2009-08-24,0.0,0.0,9.719451293122406e-08,0.0,0.0,0.0,0.0,0.0,16.9743079252523,0.0,0.0,0.0 +1571,catchment_outflow,0.011677085506638539,2009-08-24,0.0,0.0,1.0257215687123262e-06,0.0,0.0,0.0,0.0,0.0,17.594744286118416,0.0,0.0,0.0 +1572,reservoir_outflow,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1573,gw1_gw2,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1574,gw2_gw1,0.0780677453312551,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1575,urban_drainage,0.002999999999999999,2009-08-25,0.0,0.0,3.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 +1576,percolation,0.025499888280152556,2009-08-25,0.0,0.0,2.2486284511929604e-06,0.0,0.0,0.0,0.0,0.0,17.11098423400969,0.0,0.0,0.0 +1577,runoff,0.01812996329088527,2009-08-25,0.0,0.0,1.2548280089184298e-06,0.0,0.0,0.0,0.0,0.0,17.79433689319692,0.0,0.0,0.0 +1578,storm_outflow,0.002999999999999999,2009-08-25,0.0,0.0,3.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 +1579,baseflow,0.0011985217002662074,2009-08-25,0.0,0.0,1.0257309777687839e-07,0.0,0.0,0.0,0.0,0.0,16.98157777819506,0.0,0.0,0.0 +1580,catchment_outflow,0.022328484991151476,2009-08-25,0.0,0.0,5.357401106695306e-06,0.0,0.0,0.0,0.0,0.0,17.836937777868105,0.0,0.0,0.0 +1581,reservoir_outflow,0.0014999999999999996,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1582,gw1_gw2,0.0,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1583,gw2_gw1,0.0775472936957133,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1584,urban_drainage,0.008,2009-08-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 +1585,percolation,0.026937094321564582,2009-08-26,0.0,0.0,2.4005601463339834e-06,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 +1586,runoff,0.02358369991211151,2009-08-26,0.0,0.0,1.6602099543510197e-06,0.0,0.0,0.0,0.0,0.0,17.65106778701249,0.0,0.0,0.0 +1587,storm_outflow,0.008,2009-08-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 +1588,baseflow,0.0012628681318194532,2009-08-26,0.0,0.0,1.0831806539827116e-07,0.0,0.0,0.0,0.0,0.0,16.989088436127652,0.0,0.0,0.0 +1589,catchment_outflow,0.03284656804393096,2009-08-26,0.0,0.0,2.7685280197492908e-06,0.0,0.0,0.0,0.0,0.0,17.75863588462986,0.0,0.0,0.0 +1590,reservoir_outflow,0.004,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1591,gw1_gw2,0.0,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1592,gw2_gw1,0.07703031173774184,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1593,urban_drainage,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1594,percolation,0.02639835243513329,2009-08-27,0.0,0.0,2.3525489434073035e-06,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 +1595,runoff,0.014201457735402722,2009-08-27,0.0,0.0,1.3281679634808155e-06,0.0,0.0,0.0,0.0,0.0,17.45818087136377,0.0,0.0,0.0 +1596,storm_outflow,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1597,baseflow,0.001325706842577738,2009-08-27,0.0,0.0,1.1392864259329374e-07,0.0,0.0,0.0,0.0,0.0,16.99572610168884,0.0,0.0,0.0 +1598,catchment_outflow,0.01552716457798046,2009-08-27,0.0,0.0,1.4420966060741091e-06,0.0,0.0,0.0,0.0,0.0,17.418696556667307,0.0,0.0,0.0 +1599,reservoir_outflow,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1600,gw1_gw2,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1601,gw2_gw1,0.07651677632615696,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1602,urban_drainage,0.002000000000000001,2009-08-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1603,percolation,0.02730359809474866,2009-08-28,0.0,0.0,2.4518712181212593e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1604,runoff,0.02052709196034963,2009-08-28,0.0,0.0,1.5504452160583251e-06,0.0,0.0,0.0,0.0,0.0,17.36674022057263,0.0,0.0,0.0 +1605,storm_outflow,0.002000000000000001,2009-08-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1606,baseflow,0.0013906515707081653,2009-08-28,0.0,0.0,1.1977349903211365e-07,0.0,0.0,0.0,0.0,0.0,17.00126187340013,0.0,0.0,0.0 +1607,catchment_outflow,0.023917743531057797,2009-08-28,0.0,0.0,3.670218715090439e-06,0.0,0.0,0.0,0.0,0.0,17.374983280836382,0.0,0.0,0.0 +1608,reservoir_outflow,0.0010000000000000005,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1609,gw1_gw2,0.0,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1610,gw2_gw1,0.07600666448398262,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1611,urban_drainage,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1612,percolation,0.026757526132853683,2009-08-29,0.0,0.0,2.402833793758834e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1613,runoff,0.012398620351948393,2009-08-29,0.0,0.0,1.2403561728466599e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 +1614,storm_outflow,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1615,baseflow,0.0014540687571135292,2009-08-29,0.0,0.0,1.2548114976893047e-07,0.0,0.0,0.0,0.0,0.0,17.006195652567865,0.0,0.0,0.0 +1616,catchment_outflow,0.013852689109061922,2009-08-29,0.0,0.0,1.3658373226155903e-06,0.0,0.0,0.0,0.0,0.0,17.22646388714994,0.0,0.0,0.0 +1617,reservoir_outflow,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1618,gw1_gw2,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1619,gw2_gw1,0.07549995338742246,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1620,urban_drainage,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1621,percolation,0.026222375610196618,2009-08-30,0.0,0.0,2.354777117883658e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1622,runoff,0.010275565076465926,2009-08-30,0.0,0.0,9.922849382773277e-07,0.0,0.0,0.0,0.0,0.0,17.251927254153465,0.0,0.0,0.0 +1623,storm_outflow,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1624,baseflow,0.0015159895242462368,2009-08-30,0.0,0.0,1.310543896892173e-07,0.0,0.0,0.0,0.0,0.0,17.010619914362486,0.0,0.0,0.0 +1625,catchment_outflow,0.011791554600712163,2009-08-30,0.0,0.0,1.123339327966545e-06,0.0,0.0,0.0,0.0,0.0,17.220903406015175,0.0,0.0,0.0 +1626,reservoir_outflow,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1627,gw1_gw2,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1628,gw2_gw1,0.07499662036483982,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1629,urban_drainage,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1630,percolation,0.02569792809799268,2009-08-31,0.0,0.0,2.3076815755259847e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1631,runoff,0.008055152246703565,2009-08-31,0.0,0.0,7.938279506218622e-07,0.0,0.0,0.0,0.0,0.0,17.248577968214292,0.0,0.0,0.0 +1632,storm_outflow,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1633,baseflow,0.0015764443706806027,2009-08-31,0.0,0.0,1.364959576538092e-07,0.0,0.0,0.0,0.0,0.0,17.014609116934906,0.0,0.0,0.0 +1634,catchment_outflow,0.009631596617384167,2009-08-31,0.0,0.0,9.303239082756714e-07,0.0,0.0,0.0,0.0,0.0,17.210283291519854,0.0,0.0,0.0 +1635,reservoir_outflow,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1636,gw1_gw2,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1637,gw2_gw1,0.07449664289574098,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1638,urban_drainage,0.04,2009-09-01,0.0,0.0,3.137254901960784e-06,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 +1639,percolation,0.026063716308576592,2009-09-01,0.0,0.0,2.351693012566096e-06,0.0,0.0,0.0,0.0,0.0,17.073117204826293,0.0,0.0,0.0 +1640,runoff,0.012367413642865489,2009-09-01,0.0,0.0,9.356125889995945e-07,0.0,0.0,0.0,0.0,0.0,16.8476888848378,0.0,0.0,0.0 +1641,storm_outflow,0.04,2009-09-01,0.0,0.0,3.137254901960784e-06,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 +1642,baseflow,0.0016376625505253428,2009-09-01,0.0,0.0,1.420339502910899e-07,0.0,0.0,0.0,0.0,0.0,17.016937035778856,0.0,0.0,0.0 +1643,catchment_outflow,0.05400507619339084,2009-09-01,0.0,0.0,4.2149014412514685e-06,0.0,0.0,0.0,0.0,0.0,16.790752969703462,0.0,0.0,0.0 +1644,reservoir_outflow,0.025500000000000002,2009-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1645,gw1_gw2,0.0,2009-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1646,gw2_gw1,0.07399999860976916,2009-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1647,urban_drainage,0.04,2009-09-02,0.0,0.0,9.55253896430367e-07,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1648,percolation,0.03443620635099391,2009-09-02,0.0,0.0,3.180392108137723e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1649,runoff,0.06827653828521603,2009-09-02,0.0,0.0,3.667599923942837e-06,0.0,0.0,0.0,0.0,0.0,16.27517413549115,0.0,0.0,0.0 +1650,storm_outflow,0.04,2009-09-02,0.0,0.0,9.55253896430367e-07,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1651,baseflow,0.0017196589100265142,2009-09-02,0.0,0.0,1.496298456857065e-07,0.0,0.0,0.0,0.0,0.0,17.00408828559599,0.0,0.0,0.0 +1652,catchment_outflow,0.10999619719524253,2009-09-02,0.0,0.0,4.772483666058911e-06,0.0,0.0,0.0,0.0,0.0,16.389669881418783,0.0,0.0,0.0 +1653,reservoir_outflow,0.033499999999999995,2009-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1654,gw1_gw2,0.0,2009-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1655,gw2_gw1,0.07350666528570411,2009-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1656,urban_drainage,0.025999999999999985,2009-09-03,0.0,0.0,1.9074912016088487e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1657,percolation,0.03374748222397403,2009-09-03,0.0,0.0,3.1167842659749688e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1658,runoff,0.03284895008136452,2009-09-03,0.0,0.0,2.9340799391542703e-06,0.0,0.0,0.0,0.0,0.0,16.099870328144203,0.0,0.0,0.0 +1659,storm_outflow,0.025999999999999985,2009-09-03,0.0,0.0,1.9074912016088487e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1660,baseflow,0.0017997284683113827,2009-09-03,0.0,0.0,1.570477317364296e-07,0.0,0.0,0.0,0.0,0.0,16.992659047062975,0.0,0.0,0.0 +1661,catchment_outflow,0.06064867854967589,2009-09-03,0.0,0.0,4.998618872499548e-06,0.0,0.0,0.0,0.0,0.0,16.323058615103978,0.0,0.0,0.0 +1662,reservoir_outflow,0.0,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1663,gw1_gw2,0.0,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1664,gw2_gw1,0.07301662085046595,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1665,urban_drainage,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1666,percolation,0.03307253257949455,2009-09-04,0.0,0.0,3.0544485806554692e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1667,runoff,0.02372502241167207,2009-09-04,0.0,0.0,2.347263951323416e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1668,storm_outflow,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1669,baseflow,0.001877910478589341,2009-09-04,0.0,0.0,1.642912338587272e-07,0.0,0.0,0.0,0.0,0.0,16.98242791464239,0.0,0.0,0.0 +1670,catchment_outflow,0.02560293289026141,2009-09-04,0.0,0.0,2.511555185182143e-06,0.0,0.0,0.0,0.0,0.0,16.13216890136068,0.0,0.0,0.0 +1671,reservoir_outflow,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1672,gw1_gw2,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1673,gw2_gw1,0.0725298433781294,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1674,urban_drainage,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1675,percolation,0.03241108192790466,2009-09-05,0.0,0.0,2.9933596090423596e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1676,runoff,0.018980017929337657,2009-09-05,0.0,0.0,1.8778111610587328e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1677,storm_outflow,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1678,baseflow,0.001954243407212629,2009-09-05,0.0,0.0,1.7136390479668628e-07,0.0,0.0,0.0,0.0,0.0,16.97321724901053,0.0,0.0,0.0 +1679,catchment_outflow,0.020934261336550287,2009-09-05,0.0,0.0,2.0491750658554193e-06,0.0,0.0,0.0,0.0,0.0,16.149663903176528,0.0,0.0,0.0 +1680,reservoir_outflow,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1681,gw1_gw2,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1682,gw2_gw1,0.07204631108894209,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1683,urban_drainage,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1684,percolation,0.031762860289346564,2009-09-06,0.0,0.0,2.933492416861513e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1685,runoff,0.015184014343470125,2009-09-06,0.0,0.0,1.5022489288469862e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1686,storm_outflow,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1687,baseflow,0.002028764949417964,2009-09-06,0.0,0.0,1.7826922607684835e-07,0.0,0.0,0.0,0.0,0.0,16.96488287186836,0.0,0.0,0.0 +1688,catchment_outflow,0.01721277929288809,2009-09-06,0.0,0.0,1.6805181549238345e-06,0.0,0.0,0.0,0.0,0.0,16.170947433644315,0.0,0.0,0.0 +1689,reservoir_outflow,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1690,gw1_gw2,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1691,gw2_gw1,0.07156600234834905,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1692,urban_drainage,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1693,percolation,0.031127603083559635,2009-09-07,0.0,0.0,2.874822568524282e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1694,runoff,0.012437557421779252,2009-09-07,0.0,0.0,1.2017991430775891e-06,0.0,0.0,0.0,0.0,0.0,16.063937519073843,0.0,0.0,0.0 +1695,storm_outflow,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1696,baseflow,0.0021015120447533185,2009-09-07,0.0,0.0,1.8501060943296693e-07,0.0,0.0,0.0,0.0,0.0,16.95730654155062,0.0,0.0,0.0 +1697,catchment_outflow,0.014539069466532571,2009-09-07,0.0,0.0,1.3868097525105561e-06,0.0,0.0,0.0,0.0,0.0,16.19306722475866,0.0,0.0,0.0 +1698,reservoir_outflow,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1699,gw1_gw2,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1700,gw2_gw1,0.07108889566602682,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1701,urban_drainage,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1702,percolation,0.030505051021888444,2009-09-08,0.0,0.0,2.8173261171537965e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1703,runoff,0.010453336242690485,2009-09-08,0.0,0.0,9.614393144620712e-07,0.0,0.0,0.0,0.0,0.0,16.067340323023544,0.0,0.0,0.0 +1704,storm_outflow,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1705,baseflow,0.002172520892196156,2009-09-08,0.0,0.0,1.9159139820226898e-07,0.0,0.0,0.0,0.0,0.0,16.95039037166423,0.0,0.0,0.0 +1706,catchment_outflow,0.01262585713488664,2009-09-08,0.0,0.0,1.1530307126643403e-06,0.0,0.0,0.0,0.0,0.0,16.219286021365548,0.0,0.0,0.0 +1707,reservoir_outflow,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1708,gw1_gw2,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1709,gw2_gw1,0.07061496969491986,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1710,urban_drainage,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1711,percolation,0.029894950001450673,2009-09-09,0.0,0.0,2.760979594810721e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1712,runoff,0.007774215343856705,2009-09-09,0.0,0.0,7.69151451569657e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1713,storm_outflow,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1714,baseflow,0.002241826964969293,2009-09-09,0.0,0.0,1.9801486869379014e-07,0.0,0.0,0.0,0.0,0.0,16.944052631535158,0.0,0.0,0.0 +1715,catchment_outflow,0.010016042308825999,2009-09-09,0.0,0.0,9.671663202634472e-07,0.0,0.0,0.0,0.0,0.0,16.261650463456217,0.0,0.0,0.0 +1716,reservoir_outflow,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1717,gw1_gw2,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1718,gw2_gw1,0.070144203230287,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1719,urban_drainage,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1720,percolation,0.02929705100142166,2009-09-10,0.0,0.0,2.7057600029145063e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1721,runoff,0.006219372275085364,2009-09-10,0.0,0.0,6.153211612557255e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1722,storm_outflow,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1723,baseflow,0.002309465025060424,2009-09-10,0.0,0.0,2.0428423152934193e-07,0.0,0.0,0.0,0.0,0.0,16.938224545160864,0.0,0.0,0.0 +1724,catchment_outflow,0.008528837300145788,2009-09-10,0.0,0.0,8.196053927850674e-07,0.0,0.0,0.0,0.0,0.0,16.301358351127046,0.0,0.0,0.0 +1725,reservoir_outflow,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1726,gw1_gw2,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1727,gw2_gw1,0.06967657520875169,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1728,urban_drainage,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1729,percolation,0.028711109981393233,2009-09-11,0.0,0.0,2.6516448028562167e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1730,runoff,0.004975497820068292,2009-09-11,0.0,0.0,4.922569290045805e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1731,storm_outflow,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1732,baseflow,0.0023754691374512555,2009-09-11,0.0,0.0,2.104026329576591e-07,0.0,0.0,0.0,0.0,0.0,16.932847822248313,0.0,0.0,0.0 +1733,catchment_outflow,0.007350966957519547,2009-09-11,0.0,0.0,7.026595619622396e-07,0.0,0.0,0.0,0.0,0.0,16.345356316365017,0.0,0.0,0.0 +1734,reservoir_outflow,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1735,gw1_gw2,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1736,gw2_gw1,0.0692120647073601,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1737,urban_drainage,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1738,percolation,0.02813688778176536,2009-09-12,0.0,0.0,2.5986119067990923e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1739,runoff,0.003980398256054634,2009-09-12,0.0,0.0,3.9380554320366434e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1740,storm_outflow,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1741,baseflow,0.002439872684062041,2009-09-12,0.0,0.0,2.1637315614226272e-07,0.0,0.0,0.0,0.0,0.0,16.92787273317549,0.0,0.0,0.0 +1742,catchment_outflow,0.006420270940116674,2009-09-12,0.0,0.0,6.10178699345927e-07,0.0,0.0,0.0,0.0,0.0,16.392832745887105,0.0,0.0,0.0 +1743,reservoir_outflow,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1744,gw1_gw2,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1745,gw2_gw1,0.06875065094264432,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1746,urban_drainage,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1747,percolation,0.027574150026130055,2009-09-13,0.0,0.0,2.5466396686631105e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1748,runoff,0.003184318604843707,2009-09-13,0.0,0.0,3.150444345629315e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1749,storm_outflow,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1750,baseflow,0.002502708377417211,2009-09-13,0.0,0.0,2.2219882242356487e-07,0.0,0.0,0.0,0.0,0.0,16.92325659302749,0.0,0.0,0.0 +1751,catchment_outflow,0.005687026982260918,2009-09-13,0.0,0.0,5.372432569864964e-07,0.0,0.0,0.0,0.0,0.0,16.442621967357415,0.0,0.0,0.0 +1752,reservoir_outflow,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1753,gw1_gw2,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1754,gw2_gw1,0.06829231326969314,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1755,urban_drainage,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1756,percolation,0.027022667025607454,2009-09-14,0.0,0.0,2.495706875289848e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1757,runoff,0.0025474548838749656,2009-09-14,0.0,0.0,2.520355476503452e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1758,storm_outflow,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1759,baseflow,0.0025640082740376866,2009-09-14,0.0,0.0,2.2788259255573054e-07,0.0,0.0,0.0,0.0,0.0,16.9189625567588,0.0,0.0,0.0 +1760,catchment_outflow,0.005111463157912652,2009-09-14,0.0,0.0,4.799181402060757e-07,0.0,0.0,0.0,0.0,0.0,16.493298370799966,0.0,0.0,0.0 +1761,reservoir_outflow,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1762,gw1_gw2,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1763,gw2_gw1,0.06783703118122855,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1764,urban_drainage,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1765,percolation,0.026482213685095304,2009-09-15,0.0,0.0,2.4457927377840516e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1766,runoff,0.0020379639070999727,2009-09-15,0.0,0.0,2.0162843812027618e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1767,storm_outflow,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1768,baseflow,0.0026238037875653307,2009-09-15,0.0,0.0,2.3342736791880136e-07,0.0,0.0,0.0,0.0,0.0,16.914958653450107,0.0,0.0,0.0 +1769,catchment_outflow,0.004661767694665303,2009-09-15,0.0,0.0,4.350558060390775e-07,0.0,0.0,0.0,0.0,0.0,16.543328459416827,0.0,0.0,0.0 +1770,reservoir_outflow,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1771,gw1_gw2,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1772,gw2_gw1,0.06738478430668701,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1773,urban_drainage,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1774,percolation,0.0259525694113934,2009-09-16,0.0,0.0,2.3968768830283705e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1775,runoff,0.0016303711256799782,2009-09-16,0.0,0.0,1.6130275049622093e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1776,storm_outflow,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1777,baseflow,0.0026821257016249006,2009-09-16,0.0,0.0,2.388359917065753e-07,0.0,0.0,0.0,0.0,0.0,16.91121700607666,0.0,0.0,0.0 +1778,catchment_outflow,0.004312496827304879,2009-09-16,0.0,0.0,4.0013874220279623e-07,0.0,0.0,0.0,0.0,0.0,16.591248624013538,0.0,0.0,0.0 +1779,reservoir_outflow,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1780,gw1_gw2,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1781,gw2_gw1,0.06693555241130937,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1782,urban_drainage,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1783,percolation,0.025433518023165527,2009-09-17,0.0,0.0,2.348939345367803e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1784,runoff,0.0013042969005439826,2009-09-17,0.0,0.0,1.2904220039697674e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1785,storm_outflow,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1786,baseflow,0.002739004182428752,2009-09-17,0.0,0.0,2.4411125009072836e-07,0.0,0.0,0.0,0.0,0.0,16.907713196503536,0.0,0.0,0.0 +1787,catchment_outflow,0.004043301082972735,2009-09-17,0.0,0.0,3.731534504877051e-07,0.0,0.0,0.0,0.0,0.0,16.635826419965614,0.0,0.0,0.0 +1788,reservoir_outflow,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1789,gw1_gw2,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1790,gw2_gw1,0.06648931539523364,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1791,urban_drainage,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1792,percolation,0.024924847662702223,2009-09-18,0.0,0.0,2.301960558460447e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1793,runoff,0.0010434375204351862,2009-09-18,0.0,0.0,1.032337603175814e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1794,storm_outflow,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1795,baseflow,0.002794468791129436,2009-09-18,0.0,0.0,2.492558733616527e-07,0.0,0.0,0.0,0.0,0.0,16.904425745119838,0.0,0.0,0.0 +1796,catchment_outflow,0.003837906311564622,2009-09-18,0.0,0.0,3.5248963367923407e-07,0.0,0.0,0.0,0.0,0.0,16.67616956657339,0.0,0.0,0.0 +1797,reservoir_outflow,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1798,gw1_gw2,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1799,gw2_gw1,0.06604605329259883,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1800,urban_drainage,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1801,percolation,0.024426350709448184,2009-09-19,0.0,0.0,2.255921347291238e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1802,runoff,0.000834750016348149,2009-09-19,0.0,0.0,8.258700825406512e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1803,storm_outflow,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1804,baseflow,0.002848548495925232,2009-09-19,0.0,0.0,2.542725370464766e-07,0.0,0.0,0.0,0.0,0.0,16.901335681671835,0.0,0.0,0.0 +1805,catchment_outflow,0.003683298512273381,2009-09-19,0.0,0.0,3.368595453005417e-07,0.0,0.0,0.0,0.0,0.0,16.711766134213967,0.0,0.0,0.0 +1806,reservoir_outflow,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1807,gw1_gw2,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1808,gw2_gw1,0.065605746270648,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1809,urban_drainage,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1810,percolation,0.023937823695259212,2009-09-20,0.0,0.0,2.2108029203454133e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1811,runoff,0.0006678000130785191,2009-09-20,0.0,0.0,6.60696066032521e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1812,storm_outflow,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1813,baseflow,0.0029012716839235675,2009-09-20,0.0,0.0,2.59163863004724e-07,0.0,0.0,0.0,0.0,0.0,16.898426189176842,0.0,0.0,0.0 +1814,catchment_outflow,0.0035690716970020867,2009-09-20,0.0,0.0,3.252334696079761e-07,0.0,0.0,0.0,0.0,0.0,16.742461256603345,0.0,0.0,0.0 +1815,reservoir_outflow,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1816,gw1_gw2,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1817,gw2_gw1,0.06516837462884376,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1818,urban_drainage,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1819,percolation,0.02345906722135403,2009-09-21,0.0,0.0,2.166586861938505e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1820,runoff,0.0005342400104628154,2009-09-21,0.0,0.0,5.285568528260168e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1821,storm_outflow,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1822,baseflow,0.0029526661727671435,2009-09-21,0.0,0.0,2.6393242050205845e-07,0.0,0.0,0.0,0.0,0.0,16.8956823067999,0.0,0.0,0.0 +1823,catchment_outflow,0.0034869061832299587,2009-09-21,0.0,0.0,3.167881057846601e-07,0.0,0.0,0.0,0.0,0.0,16.768390631548282,0.0,0.0,0.0 +1824,reservoir_outflow,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1825,gw1_gw2,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1826,gw2_gw1,0.06473391879798474,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1827,urban_drainage,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1828,percolation,0.02298988587692695,2009-09-22,0.0,0.0,2.123255124699735e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1829,runoff,0.00042739200837025226,2009-09-22,0.0,0.0,4.228454822608134e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1830,storm_outflow,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1831,baseflow,0.0030027592220275424,2009-09-22,0.0,0.0,2.685807272625526e-07,0.0,0.0,0.0,0.0,0.0,16.893090680608534,0.0,0.0,0.0 +1832,catchment_outflow,0.003430151230397795,2009-09-22,0.0,0.0,3.108652754886339e-07,0.0,0.0,0.0,0.0,0.0,16.789895328710614,0.0,0.0,0.0 +1833,reservoir_outflow,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1834,gw1_gw2,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1835,gw2_gw1,0.06430235933933144,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1836,urban_drainage,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1837,percolation,0.022530088159388416,2009-09-23,0.0,0.0,2.0807900222057406e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1838,runoff,0.0003419136066962018,2009-09-23,0.0,0.0,3.382763858086507e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1839,storm_outflow,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1840,baseflow,0.0030515775443709444,2009-09-23,0.0,0.0,2.731112504999106e-07,0.0,0.0,0.0,0.0,0.0,16.89063935344019,0.0,0.0,0.0 +1841,catchment_outflow,0.003393491151067146,2009-09-23,0.0,0.0,3.0693888908077567e-07,0.0,0.0,0.0,0.0,0.0,16.80743819688934,0.0,0.0,0.0 +1842,reservoir_outflow,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1843,gw1_gw2,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1844,gw2_gw1,0.06387367694373616,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1845,urban_drainage,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1846,percolation,0.022079486396200644,2009-09-24,0.0,0.0,2.0391742217616256e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1847,runoff,0.00027353088535696143,2009-09-24,0.0,0.0,2.7062110864692055e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1848,storm_outflow,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1849,baseflow,0.0030991473165005185,2009-09-24,0.0,0.0,2.7752640792806484e-07,0.0,0.0,0.0,0.0,0.0,16.88831758690411,0.0,0.0,0.0 +1850,catchment_outflow,0.00337267820185748,2009-09-24,0.0,0.0,3.045885187927569e-07,0.0,0.0,0.0,0.0,0.0,16.821534211060296,0.0,0.0,0.0 +1851,reservoir_outflow,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1852,gw1_gw2,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1853,gw2_gw1,0.06344785243077773,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1854,urban_drainage,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1855,percolation,0.021637896668276632,2009-09-25,0.0,0.0,1.998390737326393e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1856,runoff,0.00021882470828556914,2009-09-25,0.0,0.0,2.1649688691753648e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1857,storm_outflow,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1858,baseflow,0.003145494189879959,2009-09-25,0.0,0.0,2.818285687515607e-07,0.0,0.0,0.0,0.0,0.0,16.886115709927022,0.0,0.0,0.0 +1859,catchment_outflow,0.003364318898165528,2009-09-25,0.0,0.0,3.034782574433144e-07,0.0,0.0,0.0,0.0,0.0,16.83269947647344,0.0,0.0,0.0 +1860,reservoir_outflow,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1861,gw1_gw2,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1862,gw2_gw1,0.06302486674790586,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1863,urban_drainage,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1864,percolation,0.0212051387349111,2009-09-26,0.0,0.0,1.958422922579865e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1865,runoff,0.0001750597666284553,2009-09-26,0.0,0.0,1.7319750953402917e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1866,storm_outflow,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1867,baseflow,0.003190643301242537,2009-09-26,0.0,0.0,2.8602005463613143e-07,0.0,0.0,0.0,0.0,0.0,16.884024989336616,0.0,0.0,0.0 +1868,catchment_outflow,0.003365703067870992,2009-09-26,0.0,0.0,3.0333980558953434e-07,0.0,0.0,0.0,0.0,0.0,16.84141832113358,0.0,0.0,0.0 +1869,reservoir_outflow,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1870,gw1_gw2,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1871,gw2_gw1,0.06260470096958652,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1872,urban_drainage,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1873,percolation,0.020781035960212874,2009-09-27,0.0,0.0,1.9192544641282674e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1874,runoff,0.00014004781330276424,2009-09-27,0.0,0.0,1.3855800762722336e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1875,storm_outflow,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1876,baseflow,0.003234619282889963,2009-09-27,0.0,0.0,2.9010314065986174e-07,0.0,0.0,0.0,0.0,0.0,16.882037518830213,0.0,0.0,0.0 +1877,catchment_outflow,0.003374667096192727,2009-09-27,0.0,0.0,3.039589414225841e-07,0.0,0.0,0.0,0.0,0.0,16.84812520364604,0.0,0.0,0.0 +1878,reservoir_outflow,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1879,gw1_gw2,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1880,gw2_gw1,0.06218733629645606,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1881,urban_drainage,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1882,percolation,0.020365415241008617,2009-09-28,0.0,0.0,1.880869374845702e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1883,runoff,0.0001120382506422114,2009-09-28,0.0,0.0,1.108464061017787e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1884,storm_outflow,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1885,baseflow,0.0032774462727852595,2009-09-28,0.0,0.0,2.9408005624532635e-07,0.0,0.0,0.0,0.0,0.0,16.880146123352027,0.0,0.0,0.0 +1886,catchment_outflow,0.003389484523427471,2009-09-28,0.0,0.0,3.0516469685550423e-07,0.0,0.0,0.0,0.0,0.0,16.853197391149763,0.0,0.0,0.0 +1887,reservoir_outflow,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1888,gw1_gw2,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1889,gw2_gw1,0.06177275405447951,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1890,urban_drainage,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1891,percolation,0.019958106936188446,2009-09-29,0.0,0.0,1.8432519873487885e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1892,runoff,8.963060051376912e-05,2009-09-29,0.0,0.0,8.867712488142295e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1893,storm_outflow,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1894,baseflow,0.0033191479244437674,2009-09-29,0.0,0.0,2.97952986073085e-07,0.0,0.0,0.0,0.0,0.0,16.878344276440632,0.0,0.0,0.0 +1895,catchment_outflow,0.0034087785249575365,2009-09-29,0.0,0.0,3.068206985612273e-07,0.0,0.0,0.0,0.0,0.0,16.85695469438773,0.0,0.0,0.0 +1896,reservoir_outflow,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1897,gw1_gw2,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1898,gw2_gw1,0.06136093569411649,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1899,urban_drainage,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1900,percolation,0.019558944797464676,2009-09-30,0.0,0.0,1.8063869476018128e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1901,runoff,7.17044804110153e-05,2009-09-30,0.0,0.0,7.0941699905138374e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1902,storm_outflow,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1903,baseflow,0.003359747416626319,2009-09-30,0.0,0.0,3.017240709769068e-07,0.0,0.0,0.0,0.0,0.0,16.876626028539576,0.0,0.0,0.0 +1904,catchment_outflow,0.0034314518970373345,2009-09-30,0.0,0.0,3.0881824096742063e-07,0.0,0.0,0.0,0.0,0.0,16.859663333435183,0.0,0.0,0.0 +1905,reservoir_outflow,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1906,gw1_gw2,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1907,gw2_gw1,0.06095186278948894,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1908,urban_drainage,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1909,percolation,0.019167765901515383,2009-10-01,0.0,0.0,1.7702592086497766e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1910,runoff,5.736358432881224e-05,2009-10-01,0.0,0.0,5.6753359924110695e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1911,storm_outflow,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1912,baseflow,0.0033992674628385423,2009-10-01,0.0,0.0,3.05395408821089e-07,0.0,0.0,0.0,0.0,0.0,16.87498594461123,0.0,0.0,0.0 +1913,catchment_outflow,0.0034566310471673546,2009-10-01,0.0,0.0,3.1107074481350007e-07,0.0,0.0,0.0,0.0,0.0,16.861541855233735,0.0,0.0,0.0 +1914,reservoir_outflow,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1915,gw1_gw2,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1916,gw2_gw1,0.06054551703755902,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1917,urban_drainage,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1918,percolation,0.018784410583485078,2009-10-02,0.0,0.0,1.734854024476781e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1919,runoff,4.589086746304979e-05,2009-10-02,0.0,0.0,4.540268793928856e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1920,storm_outflow,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1921,baseflow,0.003437730320640159,2009-10-02,0.0,0.0,3.089690553602282e-07,0.0,0.0,0.0,0.0,0.0,16.873419049675295,0.0,0.0,0.0 +1922,catchment_outflow,0.003483621188103209,2009-10-02,0.0,0.0,3.13509324154157e-07,0.0,0.0,0.0,0.0,0.0,16.86276774827852,0.0,0.0,0.0 +1923,reservoir_outflow,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1924,gw1_gw2,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1925,gw2_gw1,0.06014188025730878,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1926,urban_drainage,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1927,percolation,0.018408722371815373,2009-10-03,0.0,0.0,1.7001569439872453e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1928,runoff,3.671269397043983e-05,2009-10-03,0.0,0.0,3.6322150351430845e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1929,storm_outflow,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1930,baseflow,0.003475157800768097,2009-10-03,0.0,0.0,3.124470250817957e-07,0.0,0.0,0.0,0.0,0.0,16.87192078112182,0.0,0.0,0.0 +1931,catchment_outflow,0.003511870494738537,2009-10-03,0.0,0.0,3.1607924011693883e-07,0.0,0.0,0.0,0.0,0.0,16.863483945552044,0.0,0.0,0.0 +1932,reservoir_outflow,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1933,gw1_gw2,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1934,gw2_gw1,0.05974093438892663,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1935,urban_drainage,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1936,percolation,0.018040547924379067,2009-10-04,0.0,0.0,1.6661538051075006e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1937,runoff,2.9370155176351862e-05,2009-10-04,0.0,0.0,2.9057720281144676e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1938,storm_outflow,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1939,baseflow,0.003511571276077124,2009-10-04,0.0,0.0,3.1583129203185994e-07,0.0,0.0,0.0,0.0,0.0,16.870486946835605,0.0,0.0,0.0 +1940,catchment_outflow,0.0035409414312534758,2009-10-04,0.0,0.0,3.1873706405997443e-07,0.0,0.0,0.0,0.0,0.0,16.863804784012792,0.0,0.0,0.0 +1941,reservoir_outflow,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1942,gw1_gw2,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1943,gw2_gw1,0.05934266149300065,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1944,urban_drainage,0.023,2009-10-05,0.0,0.0,3.2000000000000005e-05,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0 +1945,percolation,0.017679736965891486,2009-10-05,0.0,0.0,1.6328307290053505e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1946,runoff,2.3496124141081492e-05,2009-10-05,0.0,0.0,2.3246176224915742e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1947,storm_outflow,0.023,2009-10-05,0.0,0.0,3.2000000000000005e-05,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0 +1948,baseflow,0.0035469916903016602,2009-10-05,0.0,0.0,3.191237906242938e-07,0.0,0.0,0.0,0.0,0.0,16.86911368832221,0.0,0.0,0.0 +1949,catchment_outflow,0.02657048781444274,2009-10-05,0.0,0.0,3.232144840824679e-05,0.0,0.0,0.0,0.0,0.0,14.88256711636884,0.0,0.0,0.0 +1950,reservoir_outflow,0.0115,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1951,gw1_gw2,0.0,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1952,gw2_gw1,0.058947043749713934,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1953,urban_drainage,0.039,2009-10-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0 +1954,percolation,0.017326142226573655,2009-10-06,0.0,0.0,1.6001741144252434e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1955,runoff,1.8796899312865195e-05,2009-10-06,0.0,0.0,1.8596940979932593e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1956,storm_outflow,0.039,2009-10-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0 +1957,baseflow,0.00358143956664234,2009-10-06,0.0,0.0,3.2232641643379614e-07,0.0,0.0,0.0,0.0,0.0,16.867797448152178,0.0,0.0,0.0 +1958,catchment_outflow,0.042600236465955205,2009-10-06,0.0,0.0,1.3241861105317895e-06,0.0,0.0,0.0,0.0,0.0,14.679727010271092,0.0,0.0,0.0 +1959,reservoir_outflow,0.0195,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1960,gw1_gw2,0.0,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1961,gw2_gw1,0.05855406345804912,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1962,urban_drainage,0.04,2009-10-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 +1963,percolation,0.01697961938204218,2009-10-07,0.0,0.0,1.5681706321367387e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1964,runoff,1.5037519450292156e-05,2009-10-07,0.0,0.0,1.4877552783946074e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1965,storm_outflow,0.04,2009-10-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 +1966,baseflow,0.0036149350161808398,2009-10-07,0.0,0.0,3.254410269730535e-07,0.0,0.0,0.0,0.0,0.0,16.866534941144867,0.0,0.0,0.0 +1967,catchment_outflow,0.04362997253563113,2009-10-07,0.0,0.0,1.326928782251448e-06,0.0,0.0,0.0,0.0,0.0,14.587747058718456,0.0,0.0,0.0 +1968,reservoir_outflow,0.02,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1969,gw1_gw2,0.0,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1970,gw2_gw1,0.058163703034995254,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1971,urban_drainage,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1972,percolation,0.016640026994401338,2009-10-08,0.0,0.0,1.5368072194940039e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1973,runoff,1.2030015560233725e-05,2009-10-08,0.0,0.0,1.190204222715686e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1974,storm_outflow,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1975,baseflow,0.0036474977461263907,2009-10-08,0.0,0.0,3.284694424543559e-07,0.0,0.0,0.0,0.0,0.0,16.865323128800053,0.0,0.0,0.0 +1976,catchment_outflow,0.0036595277616866245,2009-10-08,0.0,0.0,3.296596466770716e-07,0.0,0.0,0.0,0.0,0.0,16.86269178243389,0.0,0.0,0.0 +1977,reservoir_outflow,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1978,gw1_gw2,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1979,gw2_gw1,0.05777594501476191,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1980,urban_drainage,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1981,percolation,0.01630722645451331,2009-10-09,0.0,0.0,1.506071075104124e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1982,runoff,9.62401244818698e-06,2009-10-09,0.0,0.0,9.521633781725489e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1983,storm_outflow,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1984,baseflow,0.0036791470678973577,2009-10-09,0.0,0.0,3.3141344653598035e-07,0.0,0.0,0.0,0.0,0.0,16.864159196558244,0.0,0.0,0.0 +1985,catchment_outflow,0.003688771080345545,2009-10-09,0.0,0.0,3.323656099141529e-07,0.0,0.0,0.0,0.0,0.0,16.8620738445003,0.0,0.0,0.0 +1986,reservoir_outflow,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1987,gw1_gw2,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1988,gw2_gw1,0.057390772047996745,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1989,urban_drainage,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,percolation,0.015981081925423045,2009-10-10,0.0,0.0,1.4759496536020415e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1991,runoff,7.699209958549584e-06,2009-10-10,0.0,0.0,7.617307025380388e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1992,storm_outflow,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1993,baseflow,0.0037099019050411716,2009-10-10,0.0,0.0,3.342747870536454e-07,0.0,0.0,0.0,0.0,0.0,16.863040533531098,0.0,0.0,0.0 +1994,catchment_outflow,0.003717601114999721,2009-10-10,0.0,0.0,3.3503651775618345e-07,0.0,0.0,0.0,0.0,0.0,16.861387506194564,0.0,0.0,0.0 +1995,reservoir_outflow,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1996,gw1_gw2,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1997,gw2_gw1,0.05700816690101026,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,urban_drainage,0.02,2009-10-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1999,percolation,0.015661460286914584,2009-10-11,0.0,0.0,1.4464306605300007e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2000,runoff,6.159367966839667e-06,2009-10-11,0.0,0.0,6.093845620304312e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2001,storm_outflow,0.02,2009-10-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +2002,baseflow,0.003739780800995855,2009-10-11,0.0,0.0,3.370551767373363e-07,0.0,0.0,0.0,0.0,0.0,16.861964714394563,0.0,0.0,0.0 +2003,catchment_outflow,0.023745940168962695,2009-10-11,0.0,0.0,4.3376645612993665e-06,0.0,0.0,0.0,0.0,0.0,14.446006302542514,0.0,0.0,0.0 +2004,reservoir_outflow,0.01,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2005,gw1_gw2,0.0,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2006,gw2_gw1,0.05662811245500343,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2007,urban_drainage,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2008,percolation,0.01534823108117629,2009-10-12,0.0,0.0,1.4175020473194003e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2009,runoff,4.9274943734717335e-06,2009-10-12,0.0,0.0,4.875076496243448e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2010,storm_outflow,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2011,baseflow,0.003768801926696306,2009-10-12,0.0,0.0,3.3975629391379144e-07,0.0,0.0,0.0,0.0,0.0,16.86092948318018,0.0,0.0,0.0 +2012,catchment_outflow,0.003773729421069778,2009-10-12,0.0,0.0,3.402438015634158e-07,0.0,0.0,0.0,0.0,0.0,16.85989003732012,0.0,0.0,0.0 +2013,reservoir_outflow,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2014,gw1_gw2,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2015,gw2_gw1,0.05625059170530342,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2016,urban_drainage,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2017,percolation,0.015041266459552765,2009-10-13,0.0,0.0,1.3891520063730127e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2018,runoff,3.941995498777387e-06,2009-10-13,0.0,0.0,3.900061196994759e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2019,storm_outflow,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2020,baseflow,0.0037969830880284472,2009-10-13,0.0,0.0,3.423797831949395e-07,0.0,0.0,0.0,0.0,0.0,16.85993273873641,0.0,0.0,0.0 +2021,catchment_outflow,0.0038009250835272248,2009-10-13,0.0,0.0,3.4276978931463893e-07,0.0,0.0,0.0,0.0,0.0,16.859108165584356,0.0,0.0,0.0 +2022,reservoir_outflow,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2023,gw1_gw2,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2024,gw2_gw1,0.05587558776060142,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2025,urban_drainage,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2026,percolation,0.01474044113036171,2009-10-14,0.0,0.0,1.3613689662455524e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2027,runoff,3.1535963990219093e-06,2009-10-14,0.0,0.0,3.1200489575958077e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2028,storm_outflow,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2029,baseflow,0.0038243417331342805,2009-10-14,0.0,0.0,3.4492725615256604e-07,0.0,0.0,0.0,0.0,0.0,16.85897252166262,0.0,0.0,0.0 +2030,catchment_outflow,0.0038274953295333023,2009-10-14,0.0,0.0,3.452392610483256e-07,0.0,0.0,0.0,0.0,0.0,16.858318233605083,0.0,0.0,0.0 +2031,reservoir_outflow,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2032,gw1_gw2,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2033,gw2_gw1,0.055503083842197404,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2034,urban_drainage,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2035,percolation,0.014445632307754476,2009-10-15,0.0,0.0,1.3341415869206415e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2036,runoff,2.5228771192175275e-06,2009-10-15,0.0,0.0,2.496039166076646e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2037,storm_outflow,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2038,baseflow,0.003850894959570831,2009-10-15,0.0,0.0,3.474002919794863e-07,0.0,0.0,0.0,0.0,0.0,16.858047002544577,0.0,0.0,0.0 +2039,catchment_outflow,0.0038534178366900484,2009-10-15,0.0,0.0,3.4764989589609395e-07,0.0,0.0,0.0,0.0,0.0,16.857527699240002,0.0,0.0,0.0 +2040,reservoir_outflow,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2041,gw1_gw2,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2042,gw2_gw1,0.05513306328324923,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2043,urban_drainage,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2044,percolation,0.014156719661599386,2009-10-16,0.0,0.0,1.3074587551822287e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2045,runoff,2.018301695374022e-06,2009-10-16,0.0,0.0,1.9968313328613167e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2046,storm_outflow,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2047,baseflow,0.0038766595213259023,2009-10-16,0.0,0.0,3.498004381374931e-07,0.0,0.0,0.0,0.0,0.0,16.857154471342714,0.0,0.0,0.0 +2048,catchment_outflow,0.003878677823021276,2009-10-16,0.0,0.0,3.5000012127077923e-07,0.0,0.0,0.0,0.0,0.0,16.85674219871557,0.0,0.0,0.0 +2049,reservoir_outflow,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2050,gw1_gw2,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2051,gw2_gw1,0.05476550952802786,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2052,urban_drainage,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2053,percolation,0.013873585268367399,2009-10-17,0.0,0.0,1.281309580078584e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2054,runoff,1.6146413562992176e-06,2009-10-17,0.0,0.0,1.5974650662890537e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2055,storm_outflow,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2056,baseflow,0.003901651835693506,2009-10-17,0.0,0.0,3.5212921099234585e-07,0.0,0.0,0.0,0.0,0.0,16.856293327803442,0.0,0.0,0.0 +2057,catchment_outflow,0.0039032664770498053,2009-10-17,0.0,0.0,3.5228895749897474e-07,0.0,0.0,0.0,0.0,0.0,16.855965943617324,0.0,0.0,0.0 +2058,reservoir_outflow,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2059,gw1_gw2,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2060,gw2_gw1,0.05440040613117408,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2061,urban_drainage,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2062,percolation,0.013596113563000053,2009-10-18,0.0,0.0,1.2556833884770123e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2063,runoff,1.291713085039374e-06,2009-10-18,0.0,0.0,1.2779720530312429e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2064,storm_outflow,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2065,baseflow,0.0039258879900117725,2009-10-18,0.0,0.0,3.5438809643605755e-07,0.0,0.0,0.0,0.0,0.0,16.855462072780295,0.0,0.0,0.0 +2066,catchment_outflow,0.003927179703096812,2009-10-18,0.0,0.0,3.545158936413607e-07,0.0,0.0,0.0,0.0,0.0,16.855202033640442,0.0,0.0,0.0 +2067,reservoir_outflow,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2068,gw1_gw2,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2069,gw2_gw1,0.054037736756966485,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2070,urban_drainage,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2071,percolation,0.01332419129174005,2009-10-19,0.0,0.0,1.230569720707472e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2072,runoff,1.0333704680314992e-06,2009-10-19,0.0,0.0,1.0223776424249942e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +2073,storm_outflow,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2074,baseflow,0.003949383748266093,2009-10-19,0.0,0.0,3.5657855049673613e-07,0.0,0.0,0.0,0.0,0.0,16.854659300365785,0.0,0.0,0.0 +2075,catchment_outflow,0.003950417118734124,2009-10-19,0.0,0.0,3.566807882609786e-07,0.0,0.0,0.0,0.0,0.0,16.85445270274336,0.0,0.0,0.0 +2076,reservoir_outflow,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2077,gw1_gw2,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2078,gw2_gw1,0.053677485178586615,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2079,urban_drainage,0.033,2009-10-20,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 +2080,percolation,0.013057707465905254,2009-10-20,0.0,0.0,1.2059583262933228e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2081,runoff,0.0,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2082,storm_outflow,0.033,2009-10-20,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 +2083,baseflow,0.003972154557560191,2009-10-20,0.0,0.0,3.5870199993622753e-07,0.0,0.0,0.0,0.0,0.0,16.853883690746912,0.0,0.0,0.0 +2084,catchment_outflow,0.03697215455756019,2009-10-20,0.0,0.0,9.358701999936228e-06,0.0,0.0,0.0,0.0,0.0,11.96363144663806,0.0,0.0,0.0 +2085,reservoir_outflow,0.0165,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2086,gw1_gw2,0.0,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2087,gw2_gw1,0.053319635277395964,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2088,urban_drainage,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2089,percolation,0.012796553316587144,2009-10-21,0.0,0.0,1.181839159767456e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2090,runoff,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2091,storm_outflow,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2092,baseflow,0.003994215554457759,2009-10-21,0.0,0.0,3.607598428358056e-07,0.0,0.0,0.0,0.0,0.0,16.853134003707886,0.0,0.0,0.0 +2093,catchment_outflow,0.003994215554457759,2009-10-21,0.0,0.0,3.607598428358056e-07,0.0,0.0,0.0,0.0,0.0,16.853134003707886,0.0,0.0,0.0 +2094,reservoir_outflow,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2095,gw1_gw2,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2096,gw2_gw1,0.052964171042213515,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2097,urban_drainage,0.013999999999999999,2009-10-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0 +2098,percolation,0.012540622250255403,2009-10-22,0.0,0.0,1.1582023765721071e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2099,runoff,0.0,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2100,storm_outflow,0.013999999999999999,2009-10-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0 +2101,baseflow,0.004015581571197253,2009-10-22,0.0,0.0,3.6275344917014637e-07,0.0,0.0,0.0,0.0,0.0,16.852409072712693,0.0,0.0,0.0 +2102,catchment_outflow,0.018015581571197252,2009-10-22,0.0,0.0,2.362753449170146e-06,0.0,0.0,0.0,0.0,0.0,13.317484221893931,0.0,0.0,0.0 +2103,reservoir_outflow,0.006999999999999999,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2104,gw1_gw2,0.0,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2105,gw2_gw1,0.052611076568598675,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2106,urban_drainage,0.018999999999999996,2009-10-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0 +2107,percolation,0.012289809805250294,2009-10-23,0.0,0.0,1.135038329040665e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2108,runoff,0.0,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2109,storm_outflow,0.018999999999999996,2009-10-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0 +2110,baseflow,0.004036267141782385,2009-10-23,0.0,0.0,3.646841613698226e-07,0.0,0.0,0.0,0.0,0.0,16.851707799507963,0.0,0.0,0.0 +2111,catchment_outflow,0.02303626714178238,2009-10-23,0.0,0.0,1.3646841613698225e-06,0.0,0.0,0.0,0.0,0.0,13.48340328849127,0.0,0.0,0.0 +2112,reservoir_outflow,0.009499999999999998,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2113,gw1_gw2,0.0,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2114,gw2_gw1,0.052260336058141205,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2115,urban_drainage,0.007000000000000001,2009-10-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 +2116,percolation,0.012044013609145287,2009-10-24,0.0,0.0,1.1123375624598517e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2117,runoff,0.0,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2118,storm_outflow,0.007000000000000001,2009-10-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 +2119,baseflow,0.004056286507950793,2009-10-24,0.0,0.0,3.6655329487254774e-07,0.0,0.0,0.0,0.0,0.0,16.851029149193607,0.0,0.0,0.0 +2120,catchment_outflow,0.011056286507950795,2009-10-24,0.0,0.0,1.3665532948725476e-06,0.0,0.0,0.0,0.0,0.0,14.559825497213497,0.0,0.0,0.0 +2121,reservoir_outflow,0.0035000000000000005,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2122,gw1_gw2,0.0,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2123,gw2_gw1,0.05191193381775357,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2124,urban_drainage,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2125,percolation,0.011803133336962385,2009-10-25,0.0,0.0,1.0900908112106547e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2126,runoff,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2127,storm_outflow,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2128,baseflow,0.0040756536250233216,2009-10-25,0.0,0.0,3.6836213866339305e-07,0.0,0.0,0.0,0.0,0.0,16.850372145714548,0.0,0.0,0.0 +2129,catchment_outflow,0.0040756536250233216,2009-10-25,0.0,0.0,3.6836213866339305e-07,0.0,0.0,0.0,0.0,0.0,16.850372145714548,0.0,0.0,0.0 +2130,reservoir_outflow,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2131,gw1_gw2,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2132,gw2_gw1,0.051565854258968716,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2133,urban_drainage,0.012999999999999998,2009-10-26,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 +2134,percolation,0.011567070670223133,2009-10-26,0.0,0.0,1.0682889949864413e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2135,runoff,0.0,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2136,storm_outflow,0.012999999999999998,2009-10-26,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 +2137,baseflow,0.004094382167636321,2009-10-26,0.0,0.0,3.701119558042007e-07,0.0,0.0,0.0,0.0,0.0,16.849735867732175,0.0,0.0,0.0 +2138,catchment_outflow,0.01709438216763632,2009-10-26,0.0,0.0,2.3701119558042e-06,0.0,0.0,0.0,0.0,0.0,14.804778631623307,0.0,0.0,0.0 +2139,reservoir_outflow,0.0065,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2140,gw1_gw2,0.0,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2141,gw2_gw1,0.05122208189724216,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2142,urban_drainage,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2143,percolation,0.011335729256818671,2009-10-27,0.0,0.0,1.0469232150867128e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2144,runoff,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2145,storm_outflow,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2146,baseflow,0.004112485535359277,2009-10-27,0.0,0.0,3.7180398395240695e-07,0.0,0.0,0.0,0.0,0.0,16.84911944483876,0.0,0.0,0.0 +2147,catchment_outflow,0.004112485535359277,2009-10-27,0.0,0.0,3.7180398395240695e-07,0.0,0.0,0.0,0.0,0.0,16.84911944483876,0.0,0.0,0.0 +2148,reservoir_outflow,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2149,gw1_gw2,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2150,gw2_gw1,0.05088060135126043,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2151,urban_drainage,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2152,percolation,0.011109014671682299,2009-10-28,0.0,0.0,1.0259847507849784e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2153,runoff,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2154,storm_outflow,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2155,baseflow,0.004129976858200084,2009-10-28,0.0,0.0,3.7343943586948843e-07,0.0,0.0,0.0,0.0,0.0,16.84852205408199,0.0,0.0,0.0 +2156,catchment_outflow,0.004129976858200084,2009-10-28,0.0,0.0,3.7343943586948843e-07,0.0,0.0,0.0,0.0,0.0,16.84852205408199,0.0,0.0,0.0 +2157,reservoir_outflow,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2158,gw1_gw2,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2159,gw2_gw1,0.05054139734225203,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2160,urban_drainage,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2161,percolation,0.010886834378248651,2009-10-29,0.0,0.0,1.005465055769279e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2162,runoff,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2163,storm_outflow,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2164,baseflow,0.004146869002000206,2009-10-29,0.0,0.0,3.750194999192379e-07,0.0,0.0,0.0,0.0,0.0,16.847942916770435,0.0,0.0,0.0 +2165,catchment_outflow,0.004146869002000206,2009-10-29,0.0,0.0,3.750194999192379e-07,0.0,0.0,0.0,0.0,0.0,16.847942916770435,0.0,0.0,0.0 +2166,reservoir_outflow,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2167,gw1_gw2,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2168,gw2_gw1,0.05020445469330373,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2169,urban_drainage,0.04,2009-10-30,0.0,0.0,3.0188679245283018e-06,0.0,0.0,0.0,0.0,0.0,14.121428570000003,0.0,0.0,0.0 +2170,percolation,0.010669097690683678,2009-10-30,0.0,0.0,9.853557546538933e-07,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +2171,runoff,0.0,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2172,storm_outflow,0.04,2009-10-30,0.0,0.0,3.0188679245283018e-06,0.0,0.0,0.0,0.0,0.0,14.121428570000003,0.0,0.0,0.0 +2173,baseflow,0.004163174573721914,2009-10-30,0.0,0.0,3.7654534055607454e-07,0.0,0.0,0.0,0.0,0.0,16.847381295533783,0.0,0.0,0.0 +2174,catchment_outflow,0.04416317457372192,2009-10-30,0.0,0.0,3.395413265084376e-06,0.0,0.0,0.0,0.0,0.0,14.378398708257745,0.0,0.0,0.0 +2175,reservoir_outflow,0.0265,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2176,gw1_gw2,0.0,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2177,gw2_gw1,0.04986975832868179,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2178,urban_drainage,0.04,2009-10-31,0.0,0.0,1.467505241090147e-06,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0 +2179,percolation,0.013188461310173316,2009-10-31,0.0,0.0,1.3384438219894054e-06,0.0,0.0,0.0,0.0,0.0,16.098812566960742,0.0,0.0,0.0 +2180,runoff,0.018698559566344454,2009-10-31,0.0,0.0,1.2427323983066928e-06,0.0,0.0,0.0,0.0,0.0,13.765816100569232,0.0,0.0,0.0 +2181,storm_outflow,0.04,2009-10-31,0.0,0.0,1.467505241090147e-06,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0 +2182,baseflow,0.004185737790563043,2009-10-31,0.0,0.0,3.7895008675965793e-07,0.0,0.0,0.0,0.0,0.0,16.841484802365333,0.0,0.0,0.0 +2183,catchment_outflow,0.0628842973569075,2009-10-31,0.0,0.0,3.0891877261564975e-06,0.0,0.0,0.0,0.0,0.0,14.115673837829341,0.0,0.0,0.0 +2184,reservoir_outflow,0.0205,2009-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2185,gw1_gw2,0.0,2009-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2186,gw2_gw1,0.04953729327315735,2009-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2187,urban_drainage,0.04,2009-11-01,0.0,0.0,1.2613556953179595e-06,0.0,0.0,0.0,0.0,0.0,13.84645888773148,0.0,0.0,0.0 +2188,percolation,0.017956975116473584,2009-11-01,0.0,0.0,1.983122414925215e-06,0.0,0.0,0.0,0.0,0.0,15.348409451228907,0.0,0.0,0.0 +2189,runoff,0.04171939310830235,2009-11-01,0.0,0.0,3.232344149897347e-06,0.0,0.0,0.0,0.0,0.0,13.60111717465821,0.0,0.0,0.0 +2190,storm_outflow,0.04,2009-11-01,0.0,0.0,1.2613556953179595e-06,0.0,0.0,0.0,0.0,0.0,13.84645888773148,0.0,0.0,0.0 +2191,baseflow,0.00422016588387782,2009-11-01,0.0,0.0,3.829605175800718e-07,0.0,0.0,0.0,0.0,0.0,16.82560206359089,0.0,0.0,0.0 +2192,catchment_outflow,0.08593955899218016,2009-11-01,0.0,0.0,4.876660362795379e-06,0.0,0.0,0.0,0.0,0.0,13.873652080805627,0.0,0.0,0.0 +2193,reservoir_outflow,0.017,2009-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2194,gw1_gw2,0.0,2009-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2195,gw2_gw1,0.049207044651336324,2009-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2196,urban_drainage,0.04,2009-11-02,0.0,0.0,1.1926391800605636e-06,0.0,0.0,0.0,0.0,0.0,13.661400330044094,0.0,0.0,0.0 +2197,percolation,0.023101976762910457,2009-11-02,0.0,0.0,2.6620077686199967e-06,0.0,0.0,0.0,0.0,0.0,14.854683881052152,0.0,0.0,0.0 +2198,runoff,0.05690972085187479,2009-11-02,0.0,0.0,4.981034659895499e-06,0.0,0.0,0.0,0.0,0.0,13.45621081244786,0.0,0.0,0.0 +2199,storm_outflow,0.04,2009-11-02,0.0,0.0,1.1926391800605636e-06,0.0,0.0,0.0,0.0,0.0,13.661400330044094,0.0,0.0,0.0 +2200,baseflow,0.0042673704110754015,2009-11-02,0.0,0.0,3.886581357076716e-07,0.0,0.0,0.0,0.0,0.0,16.79892749490543,0.0,0.0,0.0 +2201,catchment_outflow,0.1011770912629502,2009-11-02,0.0,0.0,6.5623319756637345e-06,0.0,0.0,0.0,0.0,0.0,13.678318314123052,0.0,0.0,0.0 +2202,reservoir_outflow,0.017,2009-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2203,gw1_gw2,0.0,2009-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2204,gw2_gw1,0.0488789976869942,2009-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2205,urban_drainage,0.038,2009-11-03,0.0,0.0,1.0596319590030281e-06,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0 +2206,percolation,0.02861013754980906,2009-11-03,0.0,0.0,3.3705934592223526e-06,0.0,0.0,0.0,0.0,0.0,14.495170681422229,0.0,0.0,0.0 +2207,runoff,0.07092629495936895,2009-11-03,0.0,0.0,6.5242472144989165e-06,0.0,0.0,0.0,0.0,0.0,13.32815155854345,0.0,0.0,0.0 +2208,storm_outflow,0.038,2009-11-03,0.0,0.0,1.0596319590030281e-06,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0 +2209,baseflow,0.004328227328922235,2009-11-03,0.0,0.0,3.961129740164583e-07,0.0,0.0,0.0,0.0,0.0,16.76085717517278,0.0,0.0,0.0 +2210,catchment_outflow,0.11325452228829119,2009-11-03,0.0,0.0,7.979992147518402e-06,0.0,0.0,0.0,0.0,0.0,13.503955325979721,0.0,0.0,0.0 +2211,reservoir_outflow,0.018,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2212,gw1_gw2,0.0,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2213,gw2_gw1,0.04855313770241435,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2214,urban_drainage,0.002000000000000001,2009-11-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 +2215,percolation,0.03045468151851425,2009-11-04,0.0,0.0,3.61092268922275e-06,0.0,0.0,0.0,0.0,0.0,14.374862376716369,0.0,0.0,0.0 +2216,runoff,0.05651821437343283,2009-11-04,0.0,0.0,6.245201435548615e-06,0.0,0.0,0.0,0.0,0.0,13.19249949591419,0.0,0.0,0.0 +2217,storm_outflow,0.002000000000000001,2009-11-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 +2218,baseflow,0.004393543464396216,2009-11-04,0.0,0.0,4.04149998304474e-07,0.0,0.0,0.0,0.0,0.0,16.719509734160376,0.0,0.0,0.0 +2219,catchment_outflow,0.06291175783782904,2009-11-04,0.0,0.0,7.649351433853089e-06,0.0,0.0,0.0,0.0,0.0,13.432580705665329,0.0,0.0,0.0 +2220,reservoir_outflow,0.0010000000000000005,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2221,gw1_gw2,0.0,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2222,gw2_gw1,0.04822945011773161,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2223,urban_drainage,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2224,percolation,0.03101048104144997,2009-11-05,0.0,0.0,3.6877268276331346e-06,0.0,0.0,0.0,0.0,0.0,14.308929842219781,0.0,0.0,0.0 +2225,runoff,0.04640104263273088,2009-11-05,0.0,0.0,5.492903122421692e-06,0.0,0.0,0.0,0.0,0.0,13.116004659590866,0.0,0.0,0.0 +2226,storm_outflow,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2227,baseflow,0.00446008580833885,2009-11-05,0.0,0.0,4.123589403777957e-07,0.0,0.0,0.0,0.0,0.0,16.6776084988197,0.0,0.0,0.0 +2228,catchment_outflow,0.05086112844106973,2009-11-05,0.0,0.0,5.905262062799487e-06,0.0,0.0,0.0,0.0,0.0,13.428326844040134,0.0,0.0,0.0 +2229,reservoir_outflow,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2230,gw1_gw2,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2231,gw2_gw1,0.04790792045027992,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2232,urban_drainage,0.0009999999999999983,2009-11-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 +2233,percolation,0.03247804056779863,2009-11-06,0.0,0.0,3.880638897934973e-06,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 +2234,runoff,0.048135694858295615,2009-11-06,0.0,0.0,5.283211187452356e-06,0.0,0.0,0.0,0.0,0.0,12.871121512129013,0.0,0.0,0.0 +2235,storm_outflow,0.0009999999999999983,2009-11-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 +2236,baseflow,0.0045301306952375,2009-11-06,0.0,0.0,4.2102964027168854e-07,0.0,0.0,0.0,0.0,0.0,16.63276280278416,0.0,0.0,0.0 +2237,catchment_outflow,0.053665825553533116,2009-11-06,0.0,0.0,7.704240827724044e-06,0.0,0.0,0.0,0.0,0.0,13.174086959980404,0.0,0.0,0.0 +2238,reservoir_outflow,0.0004999999999999991,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2239,gw1_gw2,0.0,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2240,gw2_gw1,0.04758853431394475,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2241,urban_drainage,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2242,percolation,0.03182847975644265,2009-11-07,0.0,0.0,3.803026119976274e-06,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 +2243,runoff,0.03432776007428405,2009-11-07,0.0,0.0,4.226568949961885e-06,0.0,0.0,0.0,0.0,0.0,12.9441490935522,0.0,0.0,0.0 +2244,storm_outflow,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2245,baseflow,0.004598376567890513,2009-11-07,0.0,0.0,4.294846314709499e-07,0.0,0.0,0.0,0.0,0.0,16.590242296216488,0.0,0.0,0.0 +2246,catchment_outflow,0.038926136642174564,2009-11-07,0.0,0.0,4.656053581432835e-06,0.0,0.0,0.0,0.0,0.0,13.37486508526742,0.0,0.0,0.0 +2247,reservoir_outflow,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2248,gw1_gw2,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2249,gw2_gw1,0.04727127741851849,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2250,urban_drainage,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2251,percolation,0.031191910161313802,2009-11-08,0.0,0.0,3.726965597576749e-06,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 +2252,runoff,0.028646097690167693,2009-11-08,0.0,0.0,3.3812551599695086e-06,0.0,0.0,0.0,0.0,0.0,12.850053241661188,0.0,0.0,0.0 +2253,storm_outflow,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2254,baseflow,0.004664860401874071,2009-11-08,0.0,0.0,4.3772833388621455e-07,0.0,0.0,0.0,0.0,0.0,16.549876874904697,0.0,0.0,0.0 +2255,catchment_outflow,0.033310958092041765,2009-11-08,0.0,0.0,3.818983493855723e-06,0.0,0.0,0.0,0.0,0.0,13.368175858037054,0.0,0.0,0.0 +2256,reservoir_outflow,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2257,gw1_gw2,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2258,gw2_gw1,0.04695613556906171,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2259,urban_drainage,0.007000000000000001,2009-11-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 +2260,percolation,0.03292716584735006,2009-11-09,0.0,0.0,3.956592292143008e-06,0.0,0.0,0.0,0.0,0.0,13.952689472023808,0.0,0.0,0.0 +2261,runoff,0.03703598552431403,2009-11-09,0.0,0.0,3.7188908163682563e-06,0.0,0.0,0.0,0.0,0.0,12.088014996450653,0.0,0.0,0.0 +2262,storm_outflow,0.007000000000000001,2009-11-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 +2263,baseflow,0.004735516165487761,2009-11-09,0.0,0.0,4.4652549378185643e-07,0.0,0.0,0.0,0.0,0.0,16.504729726546003,0.0,0.0,0.0 +2264,catchment_outflow,0.048771501689801794,2009-11-09,0.0,0.0,7.165416310150112e-06,0.0,0.0,0.0,0.0,0.0,12.321744093210112,0.0,0.0,0.0 +2265,reservoir_outflow,0.0035000000000000005,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2266,gw1_gw2,0.0,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2267,gw2_gw1,0.046643094665267705,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2268,urban_drainage,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2269,percolation,0.03358728642813071,2009-11-10,0.0,0.0,4.047833259809511e-06,0.0,0.0,0.0,0.0,0.0,13.824138396464011,0.0,0.0,0.0 +2270,runoff,0.03202920767965784,2009-11-10,0.0,0.0,3.543022031459149e-06,0.0,0.0,0.0,0.0,0.0,11.913724938387073,0.0,0.0,0.0 +2271,storm_outflow,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2272,baseflow,0.004807645591144369,2009-11-10,0.0,0.0,4.5552876319692565e-07,0.0,0.0,0.0,0.0,0.0,16.45791170143717,0.0,0.0,0.0 +2273,catchment_outflow,0.03683685327080221,2009-11-10,0.0,0.0,3.998550794656075e-06,0.0,0.0,0.0,0.0,0.0,12.506795125357433,0.0,0.0,0.0 +2274,reservoir_outflow,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2275,gw1_gw2,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2276,gw2_gw1,0.04633214070083245,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2277,urban_drainage,0.018999999999999996,2009-11-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 +2278,percolation,0.036136088626093826,2009-11-11,0.0,0.0,4.37763763053858e-06,0.0,0.0,0.0,0.0,0.0,13.509076181879701,0.0,0.0,0.0 +2279,runoff,0.04395718136668433,2009-11-11,0.0,0.0,4.203621078251512e-06,0.0,0.0,0.0,0.0,0.0,11.207949103261072,0.0,0.0,0.0 +2280,storm_outflow,0.018999999999999996,2009-11-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 +2281,baseflow,0.004885966698731742,2009-11-11,0.0,0.0,4.6533403536527975e-07,0.0,0.0,0.0,0.0,0.0,16.4033885188978,0.0,0.0,0.0 +2282,catchment_outflow,0.06784314806541607,2009-11-11,0.0,0.0,6.668955113616793e-06,0.0,0.0,0.0,0.0,0.0,11.292831824248108,0.0,0.0,0.0 +2283,reservoir_outflow,0.009499999999999998,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2284,gw1_gw2,0.0,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2285,gw2_gw1,0.04602325976282717,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2286,urban_drainage,0.04,2009-11-12,0.0,0.0,4.3010752688172043e-07,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 +2287,percolation,0.04563258529485325,2009-11-12,0.0,0.0,5.521027176883319e-06,0.0,0.0,0.0,0.0,0.0,12.75946805264111,0.0,0.0,0.0 +2288,runoff,0.09604657884519993,2009-11-12,0.0,0.0,7.466037859119579e-06,0.0,0.0,0.0,0.0,0.0,10.511181197266708,0.0,0.0,0.0 +2289,storm_outflow,0.04,2009-11-12,0.0,0.0,4.3010752688172043e-07,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 +2290,baseflow,0.0049878332452220455,2009-11-12,0.0,0.0,4.779732682190747e-07,0.0,0.0,0.0,0.0,0.0,16.32004495902468,0.0,0.0,0.0 +2291,catchment_outflow,0.14103441209042197,2009-11-12,0.0,0.0,8.374118654220374e-06,0.0,0.0,0.0,0.0,0.0,10.592908739689502,0.0,0.0,0.0 +2292,reservoir_outflow,0.0465,2009-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2293,gw1_gw2,0.0,2009-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2294,gw2_gw1,0.04571643803107506,2009-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2295,urban_drainage,0.04,2009-11-13,0.0,0.0,3.488649940262843e-07,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0 +2296,percolation,0.06193132600623286,2009-11-13,0.0,0.0,7.335084287701462e-06,0.0,0.0,0.0,0.0,0.0,12.01167531635391,0.0,0.0,0.0 +2297,runoff,0.1659138962714739,2009-11-13,0.0,0.0,1.2387755801815029e-05,0.0,0.0,0.0,0.0,0.0,10.238426187432633,0.0,0.0,0.0 +2298,storm_outflow,0.04,2009-11-13,0.0,0.0,3.488649940262843e-07,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0 +2299,baseflow,0.005130191977124573,2009-11-13,0.0,0.0,4.951160457677808e-07,0.0,0.0,0.0,0.0,0.0,16.190019101276395,0.0,0.0,0.0 +2300,catchment_outflow,0.2110440882485985,2009-11-13,0.0,0.0,1.3231736841609093e-05,0.0,0.0,0.0,0.0,0.0,10.338753776202825,0.0,0.0,0.0 +2301,reservoir_outflow,0.0635,2009-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2302,gw1_gw2,0.0,2009-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2303,gw2_gw1,0.045411661777534466,2009-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2304,urban_drainage,0.04,2009-11-14,0.0,0.0,5.35187344359517e-07,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0 +2305,percolation,0.06645852300040803,2009-11-14,0.0,0.0,7.823178297569095e-06,0.0,0.0,0.0,0.0,0.0,11.836056540152816,0.0,0.0,0.0 +2306,runoff,0.12386880796126094,2009-11-14,0.0,0.0,1.2026190293524227e-05,0.0,0.0,0.0,0.0,0.0,10.242871386355551,0.0,0.0,0.0 +2307,storm_outflow,0.04,2009-11-14,0.0,0.0,5.35187344359517e-07,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0 +2308,baseflow,0.005283512804682782,2009-11-14,0.0,0.0,5.134362013972841e-07,0.0,0.0,0.0,0.0,0.0,16.053103600307562,0.0,0.0,0.0 +2309,catchment_outflow,0.16915232076594372,2009-11-14,0.0,0.0,1.3074813839281028e-05,0.0,0.0,0.0,0.0,0.0,10.36317940985591,0.0,0.0,0.0 +2310,reservoir_outflow,0.013,2009-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2311,gw1_gw2,0.0,2009-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2312,gw2_gw1,0.04510891736568432,2009-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2313,urban_drainage,0.04,2009-11-15,0.0,0.0,7.308408529884297e-07,0.0,0.0,0.0,0.0,0.0,9.954288582903043,0.0,0.0,0.0 +2314,percolation,0.07018692163397812,2009-11-15,0.0,0.0,8.216611655773447e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 +2315,runoff,0.11751469872352724,2009-11-15,0.0,0.0,1.1453941982005167e-05,0.0,0.0,0.0,0.0,0.0,10.174031351159014,0.0,0.0,0.0 +2316,storm_outflow,0.04,2009-11-15,0.0,0.0,7.308408529884297e-07,0.0,0.0,0.0,0.0,0.0,9.954288582903043,0.0,0.0,0.0 +2317,baseflow,0.00544577132675602,2009-11-15,0.0,0.0,5.326941400332245e-07,0.0,0.0,0.0,0.0,0.0,15.912737143321793,0.0,0.0,0.0 +2318,catchment_outflow,0.16296047005028327,2009-11-15,0.0,0.0,1.2717476975026821e-05,0.0,0.0,0.0,0.0,0.0,10.311868267795784,0.0,0.0,0.0 +2319,reservoir_outflow,0.010500000000000002,2009-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2320,gw1_gw2,0.0,2009-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2321,gw2_gw1,0.044808191249913074,2009-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2322,urban_drainage,0.04,2009-11-16,0.0,0.0,1.2709674330081937e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2323,percolation,0.06878318320129856,2009-11-16,0.0,0.0,8.052279422657977e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 +2324,runoff,0.08236552030379894,2009-11-16,0.0,0.0,9.163153585604131e-06,0.0,0.0,0.0,0.0,0.0,10.22735669516487,0.0,0.0,0.0 +2325,storm_outflow,0.04,2009-11-16,0.0,0.0,1.2709674330081937e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2326,baseflow,0.005604114856442376,2009-11-16,0.0,0.0,5.514931032397863e-07,0.0,0.0,0.0,0.0,0.0,15.78337176744825,0.0,0.0,0.0 +2327,catchment_outflow,0.12796963516024132,2009-11-16,0.0,0.0,1.0985614121852112e-05,0.0,0.0,0.0,0.0,0.0,10.385314652092829,0.0,0.0,0.0 +2328,reservoir_outflow,0.0,2009-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2329,gw1_gw2,0.0,2009-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2330,gw2_gw1,0.044509469974913785,2009-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2331,urban_drainage,0.03499999999999996,2009-11-17,0.0,0.0,2.684031848735855e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2332,percolation,0.06740751953727259,2009-11-17,0.0,0.0,7.891233834204816e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 +2333,runoff,0.06468605607344957,2009-11-17,0.0,0.0,7.330522868483304e-06,0.0,0.0,0.0,0.0,0.0,10.236368551023812,0.0,0.0,0.0 +2334,storm_outflow,0.03499999999999996,2009-11-17,0.0,0.0,2.684031848735855e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2335,baseflow,0.005758623368144451,2009-11-17,0.0,0.0,5.698424550671989e-07,0.0,0.0,0.0,0.0,0.0,15.663780970383648,0.0,0.0,0.0 +2336,catchment_outflow,0.10544467944159398,2009-11-17,0.0,0.0,1.0584397172286357e-05,0.0,0.0,0.0,0.0,0.0,10.439144311884267,0.0,0.0,0.0 +2337,reservoir_outflow,0.0,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2338,gw1_gw2,0.0,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2339,gw2_gw1,0.04421274017508097,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2340,urban_drainage,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2341,percolation,0.06605936914652714,2009-11-18,0.0,0.0,7.73340915752072e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 +2342,runoff,0.05228004997861856,2009-11-18,0.0,0.0,5.8644182947866435e-06,0.0,0.0,0.0,0.0,0.0,10.23046721270841,0.0,0.0,0.0 +2343,storm_outflow,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2344,baseflow,0.0059093752325904084,2009-11-18,0.0,0.0,5.877513718233328e-07,0.0,0.0,0.0,0.0,0.0,15.552913994754539,0.0,0.0,0.0 +2345,catchment_outflow,0.05818942521120897,2009-11-18,0.0,0.0,6.452169666609976e-06,0.0,0.0,0.0,0.0,0.0,10.770983553545978,0.0,0.0,0.0 +2346,reservoir_outflow,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2347,gw1_gw2,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2348,gw2_gw1,0.043917988573914005,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2349,urban_drainage,0.025999999999999995,2009-11-19,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 +2350,percolation,0.06973753482636606,2009-11-19,0.0,0.0,8.129777085812581e-06,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 +2351,runoff,0.0750714176907385,2009-11-19,0.0,0.0,6.528321673970228e-06,0.0,0.0,0.0,0.0,0.0,9.976089862223027,0.0,0.0,0.0 +2352,storm_outflow,0.025999999999999995,2009-11-19,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 +2353,baseflow,0.006068945631574848,2009-11-19,0.0,0.0,6.06606436108306e-07,0.0,0.0,0.0,0.0,0.0,15.437949316158864,0.0,0.0,0.0 +2354,catchment_outflow,0.10714036332231335,2009-11-19,0.0,0.0,9.134928110078533e-06,0.0,0.0,0.0,0.0,0.0,10.205476190020953,0.0,0.0,0.0 +2355,reservoir_outflow,0.013,2009-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2356,gw1_gw2,0.0,2009-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2357,gw2_gw1,0.043625201983421215,2009-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2358,urban_drainage,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2359,percolation,0.06834278412983874,2009-11-20,0.0,0.0,7.967181544096329e-06,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 +2360,runoff,0.049094482428682244,2009-11-20,0.0,0.0,5.222657339176182e-06,0.0,0.0,0.0,0.0,0.0,10.051936000940021,0.0,0.0,0.0 +2361,storm_outflow,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2362,baseflow,0.006224630227820508,2009-11-20,0.0,0.0,6.25007873878276e-07,0.0,0.0,0.0,0.0,0.0,15.331257423398412,0.0,0.0,0.0 +2363,catchment_outflow,0.05531911265650275,2009-11-20,0.0,0.0,5.847665213054458e-06,0.0,0.0,0.0,0.0,0.0,10.645977049874887,0.0,0.0,0.0 +2364,reservoir_outflow,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2365,gw1_gw2,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2366,gw2_gw1,0.04333436730353153,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2367,urban_drainage,0.04,2009-11-21,0.0,0.0,8.695652173913046e-07,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 +2368,percolation,0.07902488754541659,2009-11-21,0.0,0.0,9.074158761395733e-06,0.0,0.0,0.0,0.0,0.0,11.272241313768573,0.0,0.0,0.0 +2369,runoff,0.11925933637915356,2009-11-21,0.0,0.0,8.399195365278717e-06,0.0,0.0,0.0,0.0,0.0,9.830309675383404,0.0,0.0,0.0 +2370,storm_outflow,0.04,2009-11-21,0.0,0.0,8.695652173913046e-07,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 +2371,baseflow,0.006406630871114498,2009-11-21,0.0,0.0,6.461307510970697e-07,0.0,0.0,0.0,0.0,0.0,15.206088946369885,0.0,0.0,0.0 +2372,catchment_outflow,0.16566596725026808,2009-11-21,0.0,0.0,9.914891333767091e-06,0.0,0.0,0.0,0.0,0.0,10.011050069052972,0.0,0.0,0.0 +2373,reservoir_outflow,0.046,2009-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2374,gw1_gw2,0.0,2009-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2375,gw2_gw1,0.04304547152150793,2009-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2376,urban_drainage,0.04,2009-11-22,0.0,0.0,5.32608695652174e-07,0.0,0.0,0.0,0.0,0.0,9.74196428605,0.0,0.0,0.0 +2377,percolation,0.0927177065289802,2009-11-22,0.0,0.0,1.0400246896393704e-05,0.0,0.0,0.0,0.0,0.0,11.022100082921758,0.0,0.0,0.0 +2378,runoff,0.16608747034430735,2009-11-22,0.0,0.0,1.1744593992975926e-05,0.0,0.0,0.0,0.0,0.0,9.804978080392598,0.0,0.0,0.0 +2379,storm_outflow,0.04,2009-11-22,0.0,0.0,5.32608695652174e-07,0.0,0.0,0.0,0.0,0.0,9.74196428605,0.0,0.0,0.0 +2380,baseflow,0.006622408560259162,2009-11-22,0.0,0.0,6.705160414603113e-07,0.0,0.0,0.0,0.0,0.0,15.059643039253228,0.0,0.0,0.0 +2381,catchment_outflow,0.21270987890456652,2009-11-22,0.0,0.0,1.2947718730088411e-05,0.0,0.0,0.0,0.0,0.0,9.95672461232321,0.0,0.0,0.0 +2382,reservoir_outflow,0.054000000000000006,2009-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2383,gw1_gw2,0.0,2009-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2384,gw2_gw1,0.04275850171136462,2009-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2385,urban_drainage,0.04,2009-11-23,0.0,0.0,7.584893684544589e-07,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0 +2386,percolation,0.09547654307411256,2009-11-23,0.0,0.0,1.064330399138216e-05,0.0,0.0,0.0,0.0,0.0,10.9623009980495,0.0,0.0,0.0 +2387,runoff,0.12156144445109755,2009-11-23,0.0,0.0,1.0899215304101833e-05,0.0,0.0,0.0,0.0,0.0,9.818424860363576,0.0,0.0,0.0 +2388,storm_outflow,0.04,2009-11-23,0.0,0.0,7.584893684544589e-07,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0 +2389,baseflow,0.006844543896543796,2009-11-23,0.0,0.0,6.954480113351159e-07,0.0,0.0,0.0,0.0,0.0,14.916755485385723,0.0,0.0,0.0 +2390,catchment_outflow,0.16840598834764134,2009-11-23,0.0,0.0,1.2353152683891409e-05,0.0,0.0,0.0,0.0,0.0,10.008870611043438,0.0,0.0,0.0 +2391,reservoir_outflow,0.0085,2009-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2392,gw1_gw2,0.0,2009-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2393,gw2_gw1,0.04247344503328901,2009-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2394,urban_drainage,0.04,2009-11-24,0.0,0.0,6.309637152226808e-07,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0 +2395,percolation,0.1061513383687245,2009-11-24,0.0,0.0,1.1603400425464515e-05,0.0,0.0,0.0,0.0,0.0,10.82635279397619,0.0,0.0,0.0 +2396,runoff,0.17040313262689255,2009-11-24,0.0,0.0,1.2629247289648139e-05,0.0,0.0,0.0,0.0,0.0,9.821635379353532,0.0,0.0,0.0 +2397,storm_outflow,0.04,2009-11-24,0.0,0.0,6.309637152226808e-07,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0 +2398,baseflow,0.007092810882724248,2009-11-24,0.0,0.0,7.227178923704394e-07,0.0,0.0,0.0,0.0,0.0,14.763712591905461,0.0,0.0,0.0 +2399,catchment_outflow,0.21749594350961682,2009-11-24,0.0,0.0,1.3982928897241258e-05,0.0,0.0,0.0,0.0,0.0,9.97577387334893,0.0,0.0,0.0 +2400,reservoir_outflow,0.0415,2009-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2401,gw1_gw2,0.0,2009-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2402,gw2_gw1,0.04219028873306688,2009-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2403,urban_drainage,0.04,2009-11-25,0.0,0.0,7.375570122481339e-07,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0 +2404,percolation,0.11074473968556198,2009-11-25,0.0,0.0,1.1985520388960752e-05,0.0,0.0,0.0,0.0,0.0,10.766090102794985,0.0,0.0,0.0 +2405,runoff,0.14695258974831413,2009-11-25,0.0,0.0,1.2150691071736932e-05,0.0,0.0,0.0,0.0,0.0,9.744586830912661,0.0,0.0,0.0 +2406,storm_outflow,0.04,2009-11-25,0.0,0.0,7.375570122481339e-07,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0 +2407,baseflow,0.007351940704731342,2009-11-25,0.0,0.0,7.508748986119152e-07,0.0,0.0,0.0,0.0,0.0,14.613168783237102,0.0,0.0,0.0 +2408,catchment_outflow,0.19430453045304547,2009-11-25,0.0,0.0,1.363912298259698e-05,0.0,0.0,0.0,0.0,0.0,9.918784816163123,0.0,0.0,0.0 +2409,reservoir_outflow,0.017,2009-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2410,gw1_gw2,0.0,2009-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2411,gw2_gw1,0.041909020141512876,2009-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2412,urban_drainage,0.04,2009-11-26,0.0,0.0,8.118867815277774e-07,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0 +2413,percolation,0.11553705107410561,2009-11-26,0.0,0.0,1.2373414386510069e-05,0.0,0.0,0.0,0.0,0.0,10.687094499550522,0.0,0.0,0.0 +2414,runoff,0.14665298263383522,2009-11-26,0.0,0.0,1.1812567541817981e-05,0.0,0.0,0.0,0.0,0.0,9.60181674174211,0.0,0.0,0.0 +2415,storm_outflow,0.04,2009-11-26,0.0,0.0,8.118867815277774e-07,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0 +2416,baseflow,0.007622403480654778,2009-11-26,0.0,0.0,7.799312473316605e-07,0.0,0.0,0.0,0.0,0.0,14.464394500234944,0.0,0.0,0.0 +2417,catchment_outflow,0.19427538611449,2009-11-26,0.0,0.0,1.340438557067742e-05,0.0,0.0,0.0,0.0,0.0,9.774133015835726,0.0,0.0,0.0 +2418,reservoir_outflow,0.018500000000000003,2009-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2419,gw1_gw2,0.0,2009-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2420,gw2_gw1,0.041629626673902825,2009-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2421,urban_drainage,0.04,2009-11-27,0.0,0.0,9.757144558675924e-07,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0 +2422,percolation,0.11797928021433585,2009-11-27,0.0,0.0,1.2547387520685338e-05,0.0,0.0,0.0,0.0,0.0,10.621373144302098,0.0,0.0,0.0 +2423,runoff,0.13017335757912138,2009-11-27,0.0,0.0,1.0854858773139289e-05,0.0,0.0,0.0,0.0,0.0,9.49003432336498,0.0,0.0,0.0 +2424,storm_outflow,0.04,2009-11-27,0.0,0.0,9.757144558675924e-07,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0 +2425,baseflow,0.00789829567248898,2009-11-27,0.0,0.0,8.093498880150447e-07,0.0,0.0,0.0,0.0,0.0,14.320883509946073,0.0,0.0,0.0 +2426,catchment_outflow,0.17807165325161037,2009-11-27,0.0,0.0,1.2639923117021925e-05,0.0,0.0,0.0,0.0,0.0,9.676403962346486,0.0,0.0,0.0 +2427,reservoir_outflow,0.009499999999999998,2009-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2428,gw1_gw2,0.0,2009-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2429,gw2_gw1,0.04135209582941002,2009-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2430,urban_drainage,0.04,2009-11-28,0.0,0.0,1.0302698611568893e-06,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0 +2431,percolation,0.12195769893239883,2009-11-28,0.0,0.0,1.2848218648630485e-05,0.0,0.0,0.0,0.0,0.0,10.51789384151351,0.0,0.0,0.0 +2432,runoff,0.1341623081657957,2009-11-28,0.0,0.0,1.052314994637428e-05,0.0,0.0,0.0,0.0,0.0,9.198403523236594,0.0,0.0,0.0 +2433,storm_outflow,0.04,2009-11-28,0.0,0.0,1.0302698611568893e-06,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0 +2434,baseflow,0.008183444180638755,2009-11-28,0.0,0.0,8.394470599165833e-07,0.0,0.0,0.0,0.0,0.0,14.179193819521153,0.0,0.0,0.0 +2435,catchment_outflow,0.18234575234643446,2009-11-28,0.0,0.0,1.2392866867447754e-05,0.0,0.0,0.0,0.0,0.0,9.382830738521053,0.0,0.0,0.0 +2436,reservoir_outflow,0.0165,2009-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2437,gw1_gw2,0.0,2009-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2438,gw2_gw1,0.04107641519054753,2009-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2439,urban_drainage,0.04,2009-11-29,0.0,0.0,6.859990408411248e-07,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2440,percolation,0.13495723118668213,2009-11-29,0.0,0.0,1.3853653694513409e-05,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 +2441,runoff,0.19517207353732502,2009-11-29,0.0,0.0,1.262651801995119e-05,0.0,0.0,0.0,0.0,0.0,8.543998274260753,0.0,0.0,0.0 +2442,storm_outflow,0.04,2009-11-29,0.0,0.0,6.859990408411248e-07,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2443,baseflow,0.008500378648153863,2009-11-29,0.0,0.0,8.719825765030755e-07,0.0,0.0,0.0,0.0,0.0,14.023220317493983,0.0,0.0,0.0 +2444,catchment_outflow,0.2436724521854789,2009-11-29,0.0,0.0,1.418449963729539e-05,0.0,0.0,0.0,0.0,0.0,8.674135324651214,0.0,0.0,0.0 +2445,reservoir_outflow,0.05499999999999999,2009-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2446,gw1_gw2,0.0,2009-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2447,gw2_gw1,0.040802572422610345,2009-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2448,urban_drainage,0.04,2009-11-30,0.0,0.0,1.0371100265719911e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2449,percolation,0.1322580865629485,2009-11-30,0.0,0.0,1.357658062062314e-05,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 +2450,runoff,0.11280099571987748,2009-11-30,0.0,0.0,1.0101214415960954e-05,0.0,0.0,0.0,0.0,0.0,8.991739983011426,0.0,0.0,0.0 +2451,storm_outflow,0.04,2009-11-30,0.0,0.0,1.0371100265719911e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2452,baseflow,0.00880977291794085,2009-11-30,0.0,0.0,9.037440716133756e-07,0.0,0.0,0.0,0.0,0.0,13.88158837430158,0.0,0.0,0.0 +2453,catchment_outflow,0.16161076863781834,2009-11-30,0.0,0.0,1.2042068514146321e-05,0.0,0.0,0.0,0.0,0.0,9.055498962634406,0.0,0.0,0.0 +2454,reservoir_outflow,0.0,2009-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2455,gw1_gw2,0.0,2009-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2456,gw2_gw1,0.040530555273126545,2009-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2457,urban_drainage,0.04,2009-12-01,0.0,0.0,1.4161570540777927e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2458,percolation,0.13176724482048013,2009-12-01,0.0,0.0,1.348421807246863e-05,0.0,0.0,0.0,0.0,0.0,10.202769657847302,0.0,0.0,0.0 +2459,runoff,0.10498088070973248,2009-12-01,0.0,0.0,8.678201746961943e-06,0.0,0.0,0.0,0.0,0.0,8.695432054624884,0.0,0.0,0.0 +2460,storm_outflow,0.04,2009-12-01,0.0,0.0,1.4161570540777927e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2461,baseflow,0.009117166597697198,2009-12-01,0.0,0.0,9.351952566155139e-07,0.0,0.0,0.0,0.0,0.0,13.748666648766905,0.0,0.0,0.0 +2462,catchment_outflow,0.15409804730742968,2009-12-01,0.0,0.0,1.1029554057655249e-05,0.0,0.0,0.0,0.0,0.0,8.85863452864025,0.0,0.0,0.0 +2463,reservoir_outflow,0.0,2009-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2464,gw1_gw2,0.0,2009-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2465,gw2_gw1,0.040260351571305725,2009-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2466,urban_drainage,0.04,2009-12-02,0.0,0.0,1.5616350093280369e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0 +2467,percolation,0.13363519702675775,2009-12-02,0.0,0.0,1.3585466059597922e-05,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 +2468,runoff,0.10874952337202304,2009-12-02,0.0,0.0,8.179002559498434e-06,0.0,0.0,0.0,0.0,0.0,8.29376141152113,0.0,0.0,0.0 +2469,storm_outflow,0.04,2009-12-02,0.0,0.0,1.5616350093280369e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0 +2470,baseflow,0.00942846167376985,2009-12-02,0.0,0.0,9.668209336229697e-07,0.0,0.0,0.0,0.0,0.0,13.61915969536084,0.0,0.0,0.0 +2471,catchment_outflow,0.1581779850457929,2009-12-02,0.0,0.0,1.070745850244944e-05,0.0,0.0,0.0,0.0,0.0,8.501510765063989,0.0,0.0,0.0 +2472,reservoir_outflow,0.009499999999999998,2009-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2473,gw1_gw2,0.0,2009-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2474,gw2_gw1,0.03999194922749716,2009-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2475,urban_drainage,0.03199999999999992,2009-12-03,0.0,0.0,2.9520437616600425e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551955,0.0,0.0,0.0 +2476,percolation,0.1309624930862226,2009-12-03,0.0,0.0,1.3313756738405963e-05,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 +2477,runoff,0.0751571097553787,2009-12-03,0.0,0.0,6.543202047598748e-06,0.0,0.0,0.0,0.0,0.0,8.549126717154001,0.0,0.0,0.0 +2478,storm_outflow,0.03199999999999992,2009-12-03,0.0,0.0,2.9520437616600425e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551955,0.0,0.0,0.0 +2479,baseflow,0.009732296752300983,2009-12-03,0.0,0.0,9.976882731349272e-07,0.0,0.0,0.0,0.0,0.0,13.500561900267485,0.0,0.0,0.0 +2480,catchment_outflow,0.11688940650767961,2009-12-03,0.0,0.0,1.049293408239372e-05,0.0,0.0,0.0,0.0,0.0,8.772739754207631,0.0,0.0,0.0 +2481,reservoir_outflow,0.0,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2482,gw1_gw2,0.0,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2483,gw2_gw1,0.03972533623264721,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2484,urban_drainage,0.024,2009-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0 +2485,percolation,0.13308738257622246,2009-12-04,0.0,0.0,1.343825811332689e-05,0.0,0.0,0.0,0.0,0.0,9.997041759433309,0.0,0.0,0.0 +2486,runoff,0.09194692860771794,2009-12-04,0.0,0.0,6.5371500037091485e-06,0.0,0.0,0.0,0.0,0.0,8.128851626120538,0.0,0.0,0.0 +2487,storm_outflow,0.024,2009-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0 +2488,baseflow,0.010040684466860787,2009-12-04,0.0,0.0,1.0287896977354071e-06,0.0,0.0,0.0,0.0,0.0,13.384465650334114,0.0,0.0,0.0 +2489,catchment_outflow,0.12598761307457873,2009-12-04,0.0,0.0,8.565939701444555e-06,0.0,0.0,0.0,0.0,0.0,8.385727969564606,0.0,0.0,0.0 +2490,reservoir_outflow,0.012,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2491,gw1_gw2,0.0,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2492,gw2_gw1,0.03946050065776277,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2493,urban_drainage,0.04,2009-12-05,0.0,0.0,3.0303030303030305e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 +2494,percolation,0.14689979657831123,2009-12-05,0.0,0.0,1.4427596669515546e-05,0.0,0.0,0.0,0.0,0.0,9.73120769774238,0.0,0.0,0.0 +2495,runoff,0.1729586086516703,2009-12-05,0.0,0.0,9.423399064484633e-06,0.0,0.0,0.0,0.0,0.0,7.848561514762881,0.0,0.0,0.0 +2496,storm_outflow,0.04,2009-12-05,0.0,0.0,3.0303030303030305e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 +2497,baseflow,0.010382832247139413,2009-12-05,0.0,0.0,1.0622867151648576e-06,0.0,0.0,0.0,0.0,0.0,13.255246850176844,0.0,0.0,0.0 +2498,catchment_outflow,0.2233414408988097,2009-12-05,0.0,0.0,1.0788716082679793e-05,0.0,0.0,0.0,0.0,0.0,8.050276829748103,0.0,0.0,0.0 +2499,reservoir_outflow,0.066,2009-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2500,gw1_gw2,0.0,2009-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2501,gw2_gw1,0.03919743065337755,2009-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2502,urban_drainage,0.04,2009-12-06,0.0,0.0,7.985739750445634e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 +2503,percolation,0.14557767658832244,2009-12-06,0.0,0.0,1.4263271063975237e-05,0.0,0.0,0.0,0.0,0.0,9.710680511264533,0.0,0.0,0.0 +2504,runoff,0.10317961942374113,2009-12-06,0.0,0.0,7.952807011087712e-06,0.0,0.0,0.0,0.0,0.0,7.9753703915282514,0.0,0.0,0.0 +2505,storm_outflow,0.04,2009-12-06,0.0,0.0,7.985739750445634e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 +2506,baseflow,0.010720819357992371,2009-12-06,0.0,0.0,1.0952891760368835e-06,0.0,0.0,0.0,0.0,0.0,13.134917956717,0.0,0.0,0.0 +2507,catchment_outflow,0.1539004387817335,2009-12-06,0.0,0.0,9.846670162169158e-06,0.0,0.0,0.0,0.0,0.0,8.229800495199115,0.0,0.0,0.0 +2508,reservoir_outflow,0.0,2009-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2509,gw1_gw2,0.0,2009-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2510,gw2_gw1,0.038936114449021814,2009-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2511,urban_drainage,0.04,2009-12-07,0.0,0.0,8.933626926706512e-07,0.0,0.0,0.0,0.0,0.0,7.8470588232352965,0.0,0.0,0.0 +2512,percolation,0.14987843848234994,2009-12-07,0.0,0.0,1.4520771029829421e-05,0.0,0.0,0.0,0.0,0.0,9.6348155118132,0.0,0.0,0.0 +2513,runoff,0.12735532475666403,2009-12-07,0.0,0.0,8.171463565982464e-06,0.0,0.0,0.0,0.0,0.0,8.045416769614135,0.0,0.0,0.0 +2514,storm_outflow,0.04,2009-12-07,0.0,0.0,8.933626926706512e-07,0.0,0.0,0.0,0.0,0.0,7.8470588232352965,0.0,0.0,0.0 +2515,baseflow,0.011068713405803265,2009-12-07,0.0,0.0,1.1288528806713647e-06,0.0,0.0,0.0,0.0,0.0,13.01643311802396,0.0,0.0,0.0 +2516,catchment_outflow,0.1784240381624673,2009-12-07,0.0,0.0,1.0193679139324478e-05,0.0,0.0,0.0,0.0,0.0,8.309329849521452,0.0,0.0,0.0 +2517,reservoir_outflow,0.02,2009-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2518,gw1_gw2,0.0,2009-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2519,gw2_gw1,0.038676540352695105,2009-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2520,urban_drainage,0.04,2009-12-08,0.0,0.0,1.4582058394578056e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2521,percolation,0.15047709452776437,2009-12-08,0.0,0.0,1.4500070534275039e-05,0.0,0.0,0.0,0.0,0.0,9.604955684505141,0.0,0.0,0.0 +2522,runoff,0.10624491260790889,2009-12-08,0.0,0.0,7.436220602926667e-06,0.0,0.0,0.0,0.0,0.0,8.110536539369098,0.0,0.0,0.0 +2523,storm_outflow,0.04,2009-12-08,0.0,0.0,1.4582058394578056e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2524,baseflow,0.011417234358608168,2009-12-08,0.0,0.0,1.162280924805374e-06,0.0,0.0,0.0,0.0,0.0,12.904026471169088,0.0,0.0,0.0 +2525,catchment_outflow,0.15766214696651706,2009-12-08,0.0,0.0,1.0056707367189847e-05,0.0,0.0,0.0,0.0,0.0,8.418627713923888,0.0,0.0,0.0 +2526,reservoir_outflow,0.005,2009-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2527,gw1_gw2,0.0,2009-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2528,gw2_gw1,0.038418696750343706,2009-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2529,urban_drainage,0.006999999999999992,2009-12-09,0.0,0.0,1.546827189796677e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2530,percolation,0.14886985807888822,2009-12-09,0.0,0.0,1.4316028278525688e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2531,runoff,0.08449598538185427,2009-12-09,0.0,0.0,6.302173665461838e-06,0.0,0.0,0.0,0.0,0.0,8.103854265119107,0.0,0.0,0.0 +2532,storm_outflow,0.006999999999999992,2009-12-09,0.0,0.0,1.546827189796677e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2533,baseflow,0.01176086591790887,2009-12-09,0.0,0.0,1.1951652931896748e-06,0.0,0.0,0.0,0.0,0.0,12.799337746683024,0.0,0.0,0.0 +2534,catchment_outflow,0.10325685129976313,2009-12-09,0.0,0.0,9.04416614844819e-06,0.0,0.0,0.0,0.0,0.0,8.628688816537252,0.0,0.0,0.0 +2535,reservoir_outflow,0.0,2009-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2536,gw1_gw2,0.0,2009-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2537,gw2_gw1,0.03816257210534122,2009-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2538,urban_drainage,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2539,percolation,0.14589246091731048,2009-12-10,0.0,0.0,1.4029707712955177e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2540,runoff,0.06405229999022578,2009-12-10,0.0,0.0,5.0417389323694696e-06,0.0,0.0,0.0,0.0,0.0,8.09731218786082,0.0,0.0,0.0 +2541,storm_outflow,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2542,baseflow,0.012096194905407373,2009-12-10,0.0,0.0,1.2272516492390885e-06,0.0,0.0,0.0,0.0,0.0,12.702743551501422,0.0,0.0,0.0 +2543,catchment_outflow,0.07614849489563316,2009-12-10,0.0,0.0,6.268990581608558e-06,0.0,0.0,0.0,0.0,0.0,8.828885352562562,0.0,0.0,0.0 +2544,reservoir_outflow,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2545,gw1_gw2,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2546,gw2_gw1,0.03790815495797215,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2547,urban_drainage,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2548,percolation,0.14297461169896425,2009-12-11,0.0,0.0,1.374911355869607e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2549,runoff,0.05129511972879764,2009-12-11,0.0,0.0,4.033391145895575e-06,0.0,0.0,0.0,0.0,0.0,8.095314176063376,0.0,0.0,0.0 +2550,storm_outflow,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2551,baseflow,0.012423390947391267,2009-12-11,0.0,0.0,1.258556304012731e-06,0.0,0.0,0.0,0.0,0.0,12.613353506686268,0.0,0.0,0.0 +2552,catchment_outflow,0.0637185106761889,2009-12-11,0.0,0.0,5.291947449908306e-06,0.0,0.0,0.0,0.0,0.0,8.976209983645289,0.0,0.0,0.0 +2553,reservoir_outflow,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2554,gw1_gw2,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2555,gw2_gw1,0.03765543392491946,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2556,urban_drainage,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2557,percolation,0.14011511946498498,2009-12-12,0.0,0.0,1.3474131287522151e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2558,runoff,0.04107925135043591,2009-12-12,0.0,0.0,3.22671291671646e-06,0.0,0.0,0.0,0.0,0.0,8.092779889588959,0.0,0.0,0.0 +2559,storm_outflow,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2560,baseflow,0.012742620268685253,2009-12-12,0.0,0.0,1.2890952414715046e-06,0.0,0.0,0.0,0.0,0.0,12.530403166821744,0.0,0.0,0.0 +2561,catchment_outflow,0.05382187161912116,2009-12-12,0.0,0.0,4.515808158187964e-06,0.0,0.0,0.0,0.0,0.0,9.143411289355567,0.0,0.0,0.0 +2562,reservoir_outflow,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2563,gw1_gw2,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2564,gw2_gw1,0.037404397698753124,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2565,urban_drainage,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2566,percolation,0.13731281707568527,2009-12-13,0.0,0.0,1.3204648661771707e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2567,runoff,0.03319484954532003,2009-12-13,0.0,0.0,2.581370333373168e-06,0.0,0.0,0.0,0.0,0.0,8.081475177354159,0.0,0.0,0.0 +2568,storm_outflow,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2569,baseflow,0.013054045760702751,2009-12-13,0.0,0.0,1.318884125022255e-06,0.0,0.0,0.0,0.0,0.0,12.4532325145376,0.0,0.0,0.0 +2570,catchment_outflow,0.04624889530602278,2009-12-13,0.0,0.0,3.900254458395423e-06,0.0,0.0,0.0,0.0,0.0,9.315431576888933,0.0,0.0,0.0 +2571,reservoir_outflow,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2572,gw1_gw2,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2573,gw2_gw1,0.03715503504742799,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2574,urban_drainage,0.008999999999999998,2009-12-14,0.0,0.0,4.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 +2575,percolation,0.13673295734492974,2009-12-14,0.0,0.0,1.3113003614878504e-05,0.0,0.0,0.0,0.0,0.0,9.564143620259403,0.0,0.0,0.0 +2576,runoff,0.04089805131044878,2009-12-14,0.0,0.0,2.639922687839301e-06,0.0,0.0,0.0,0.0,0.0,7.789294065475754,0.0,0.0,0.0 +2577,storm_outflow,0.008999999999999998,2009-12-14,0.0,0.0,4.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 +2578,baseflow,0.013363243039663318,2009-12-14,0.0,0.0,1.3483694237468957e-06,0.0,0.0,0.0,0.0,0.0,12.37932948303272,0.0,0.0,0.0 +2579,catchment_outflow,0.0632612943501121,2009-12-14,0.0,0.0,8.988292111586196e-06,0.0,0.0,0.0,0.0,0.0,8.634148929816666,0.0,0.0,0.0 +2580,reservoir_outflow,0.004499999999999999,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2581,gw1_gw2,0.0,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2582,gw2_gw1,0.036907334813778725,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2583,urban_drainage,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2584,percolation,0.13519903891979232,2009-12-15,0.0,0.0,1.2946818217407988e-05,0.0,0.0,0.0,0.0,0.0,9.544761395975481,0.0,0.0,0.0 +2585,runoff,0.034852922167052956,2009-12-15,0.0,0.0,2.4321870663616285e-06,0.0,0.0,0.0,0.0,0.0,7.758511783373741,0.0,0.0,0.0 +2586,storm_outflow,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2587,baseflow,0.01366783252936364,2009-12-15,0.0,0.0,1.3773655457310485e-06,0.0,0.0,0.0,0.0,0.0,12.309232252857504,0.0,0.0,0.0 +2588,catchment_outflow,0.0485207546964166,2009-12-15,0.0,0.0,3.809552612092677e-06,0.0,0.0,0.0,0.0,0.0,9.040406215024959,0.0,0.0,0.0 +2589,reservoir_outflow,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2590,gw1_gw2,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2591,gw2_gw1,0.03666128591502016,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2592,urban_drainage,0.008,2009-12-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2593,percolation,0.13460186718033165,2009-12-16,0.0,0.0,1.285593678940696e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2594,runoff,0.038926846675798946,2009-12-16,0.0,0.0,2.50593277424641e-06,0.0,0.0,0.0,0.0,0.0,7.4873429777812746,0.0,0.0,0.0 +2595,storm_outflow,0.008,2009-12-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2596,baseflow,0.013970167615991059,2009-12-16,0.0,0.0,1.406061973840238e-06,0.0,0.0,0.0,0.0,0.0,12.241742951854073,0.0,0.0,0.0 +2597,catchment_outflow,0.06089701429179001,2009-12-16,0.0,0.0,5.9119947480866476e-06,0.0,0.0,0.0,0.0,0.0,8.43518945925963,0.0,0.0,0.0 +2598,reservoir_outflow,0.004,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2599,gw1_gw2,0.0,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2600,gw2_gw1,0.03641687734225307,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2601,urban_drainage,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2602,percolation,0.13190982983672503,2009-12-17,0.0,0.0,1.259881805361882e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2603,runoff,0.025227627406786062,2009-12-17,0.0,0.0,2.0047462193971277e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 +2604,storm_outflow,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2605,baseflow,0.014265016771542894,2009-12-17,0.0,0.0,1.4340438640396846e-06,0.0,0.0,0.0,0.0,0.0,12.178530698460241,0.0,0.0,0.0 +2606,catchment_outflow,0.039492644178328956,2009-12-17,0.0,0.0,3.438790083436812e-06,0.0,0.0,0.0,0.0,0.0,9.344657326751074,0.0,0.0,0.0 +2607,reservoir_outflow,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2608,gw1_gw2,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2609,gw2_gw1,0.03617409815997128,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2610,urban_drainage,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2611,percolation,0.12927163323999052,2009-12-18,0.0,0.0,1.2346841692546444e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2612,runoff,0.02018210192542885,2009-12-18,0.0,0.0,1.6037969755177024e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 +2613,storm_outflow,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2614,baseflow,0.014552533312714014,2009-12-18,0.0,0.0,1.4613258586109516e-06,0.0,0.0,0.0,0.0,0.0,12.119210408233748,0.0,0.0,0.0 +2615,catchment_outflow,0.034734635238142866,2009-12-18,0.0,0.0,3.0651228341286543e-06,0.0,0.0,0.0,0.0,0.0,9.576027978850416,0.0,0.0,0.0 +2616,reservoir_outflow,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2617,gw1_gw2,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2618,gw2_gw1,0.03593293750557134,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619,urban_drainage,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620,percolation,0.1266862005751907,2009-12-19,0.0,0.0,1.2099904858695512e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2621,runoff,0.017288625963685023,2009-12-19,0.0,0.0,1.2830375804141618e-06,0.0,0.0,0.0,0.0,0.0,7.615820182208692,0.0,0.0,0.0 +2622,storm_outflow,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2623,baseflow,0.014832867480870204,2009-12-19,0.0,0.0,1.487922306111163e-06,0.0,0.0,0.0,0.0,0.0,12.063441849979558,0.0,0.0,0.0 +2624,catchment_outflow,0.03212149344455523,2009-12-19,0.0,0.0,2.7709598865253245e-06,0.0,0.0,0.0,0.0,0.0,9.669615810265787,0.0,0.0,0.0 +2625,reservoir_outflow,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2626,gw1_gw2,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2627,gw2_gw1,0.03569338458886797,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2628,urban_drainage,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2629,percolation,0.1241524765636869,2009-12-20,0.0,0.0,1.1857906761521605e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2630,runoff,0.01305735685334353,2009-12-20,0.0,0.0,1.0264300643313295e-06,0.0,0.0,0.0,0.0,0.0,7.71956676331962,0.0,0.0,0.0 +2631,storm_outflow,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2632,baseflow,0.015106166503577245,2009-12-20,0.0,0.0,1.5138472672496893e-06,0.0,0.0,0.0,0.0,0.0,12.010923299375875,0.0,0.0,0.0 +2633,catchment_outflow,0.028163523356920774,2009-12-20,0.0,0.0,2.540277331581019e-06,0.0,0.0,0.0,0.0,0.0,10.021336521965612,0.0,0.0,0.0 +2634,reservoir_outflow,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2635,gw1_gw2,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2636,gw2_gw1,0.03545542869160876,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2637,urban_drainage,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2638,percolation,0.12188253822127099,2009-12-21,0.0,0.0,1.1638806200677214e-05,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 +2639,runoff,0.011791365372741544,2009-12-21,0.0,0.0,8.813359660852e-07,0.0,0.0,0.0,0.0,0.0,7.50911902814999,0.0,0.0,0.0 +2640,storm_outflow,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2641,baseflow,0.01537310743287148,2009-12-21,0.0,0.0,1.539159664583258e-06,0.0,0.0,0.0,0.0,0.0,11.961189538056397,0.0,0.0,0.0 +2642,catchment_outflow,0.027164472805613023,2009-12-21,0.0,0.0,2.420495630668458e-06,0.0,0.0,0.0,0.0,0.0,10.028665744085806,0.0,0.0,0.0 +2643,reservoir_outflow,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2644,gw1_gw2,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2645,gw2_gw1,0.03521905916699808,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2646,urban_drainage,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2647,percolation,0.11944488745684556,2009-12-22,0.0,0.0,1.1406030076663669e-05,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 +2648,runoff,0.00908934075940141,2009-12-22,0.0,0.0,7.0506877286816e-07,0.0,0.0,0.0,0.0,0.0,7.581674215988696,0.0,0.0,0.0 +2649,storm_outflow,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2650,baseflow,0.015633286882931415,2009-12-22,0.0,0.0,1.5638268406134589e-06,0.0,0.0,0.0,0.0,0.0,11.914211567052625,0.0,0.0,0.0 +2651,catchment_outflow,0.024722627642332823,2009-12-22,0.0,0.0,2.2688956134816188e-06,0.0,0.0,0.0,0.0,0.0,10.321342519863496,0.0,0.0,0.0 +2652,reservoir_outflow,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2653,gw1_gw2,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2654,gw2_gw1,0.0349842654392182,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2655,urban_drainage,0.024999999999999994,2009-12-23,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2656,percolation,0.11714931534498364,2009-12-23,0.0,0.0,1.118578975846428e-05,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 +2657,runoff,0.007706452195808002,2009-12-23,0.0,0.0,5.903226294074784e-07,0.0,0.0,0.0,0.0,0.0,7.470011856126202,0.0,0.0,0.0 +2658,storm_outflow,0.024999999999999994,2009-12-23,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2659,baseflow,0.015887076954086546,2009-12-23,0.0,0.0,1.587881747908086e-06,0.0,0.0,0.0,0.0,0.0,11.86968620193557,0.0,0.0,0.0 +2660,catchment_outflow,0.048593529149894545,2009-12-23,0.0,0.0,9.178204377315564e-06,0.0,0.0,0.0,0.0,0.0,7.673694705978655,0.0,0.0,0.0 +2661,reservoir_outflow,0.012499999999999997,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2662,gw1_gw2,0.0,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2663,gw2_gw1,0.034751037002956765,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2664,urban_drainage,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2665,percolation,0.11480632903808399,2009-12-24,0.0,0.0,1.0962073963294996e-05,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 +2666,runoff,0.00848731776924033,2009-12-24,0.0,0.0,4.72258103525983e-07,0.0,0.0,0.0,0.0,0.0,6.755512241232069,0.0,0.0,0.0 +2667,storm_outflow,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2668,baseflow,0.016134375084296538,2009-12-24,0.0,0.0,1.6113172284465532e-06,0.0,0.0,0.0,0.0,0.0,11.827512218987211,0.0,0.0,0.0 +2669,catchment_outflow,0.024621692853536867,2009-12-24,0.0,0.0,2.0835753319725364e-06,0.0,0.0,0.0,0.0,0.0,10.079148457288998,0.0,0.0,0.0 +2670,reservoir_outflow,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2671,gw1_gw2,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2672,gw2_gw1,0.034519363422937134,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2673,urban_drainage,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2674,percolation,0.1125102024573223,2009-12-25,0.0,0.0,1.0742832484029094e-05,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 +2675,runoff,0.007293217240835875,2009-12-25,0.0,0.0,3.778064828207864e-07,0.0,0.0,0.0,0.0,0.0,6.559098354737425,0.0,0.0,0.0 +2676,storm_outflow,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2677,baseflow,0.016375314652729102,2009-12-25,0.0,0.0,1.6341460165855096e-06,0.0,0.0,0.0,0.0,0.0,11.78751424960561,0.0,0.0,0.0 +2678,catchment_outflow,0.02366853189356498,2009-12-25,0.0,0.0,2.011952499406296e-06,0.0,0.0,0.0,0.0,0.0,10.176431098433046,0.0,0.0,0.0 +2679,reservoir_outflow,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2680,gw1_gw2,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2681,gw2_gw1,0.03428923433345101,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2682,urban_drainage,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2683,percolation,0.11157184347574982,2009-12-26,0.0,0.0,1.0640793659556103e-05,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 +2684,runoff,0.012753826876830607,2009-12-26,0.0,0.0,6.783046036152612e-07,0.0,0.0,0.0,0.0,0.0,5.742915953129186,0.0,0.0,0.0 +2685,storm_outflow,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2686,baseflow,0.016613305974786656,2009-12-26,0.0,0.0,1.656662635692936e-06,0.0,0.0,0.0,0.0,0.0,11.748293699716982,0.0,0.0,0.0 +2687,catchment_outflow,0.029367132851617263,2009-12-26,0.0,0.0,2.334967239308197e-06,0.0,0.0,0.0,0.0,0.0,9.140223361460112,0.0,0.0,0.0 +2688,reservoir_outflow,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2689,gw1_gw2,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2690,gw2_gw1,0.03406063943789448,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2691,urban_drainage,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2692,percolation,0.10934040660623484,2009-12-27,0.0,0.0,1.0427977786364984e-05,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 +2693,runoff,0.006520689381958646,2009-12-27,0.0,0.0,5.42643682892209e-07,0.0,0.0,0.0,0.0,0.0,6.4448170535489036,0.0,0.0,0.0 +2694,storm_outflow,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2695,baseflow,0.016845123726365277,2009-12-27,0.0,0.0,1.6785909235696164e-06,0.0,0.0,0.0,0.0,0.0,11.711022951879126,0.0,0.0,0.0 +2696,catchment_outflow,0.023365813108323922,2009-12-27,0.0,0.0,2.2212346064618256e-06,0.0,0.0,0.0,0.0,0.0,10.241384693400688,0.0,0.0,0.0 +2697,reservoir_outflow,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2698,gw1_gw2,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2699,gw2_gw1,0.033833568508308785,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2700,urban_drainage,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2701,percolation,0.10785795032637215,2009-12-28,0.0,0.0,1.0281202753142994e-05,0.0,0.0,0.0,0.0,0.0,9.42337367515953,0.0,0.0,0.0 +2702,runoff,0.01003580102104386,2009-12-28,0.0,0.0,6.40063354664806e-07,0.0,0.0,0.0,0.0,0.0,5.568033644121171,0.0,0.0,0.0 +2703,storm_outflow,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2704,baseflow,0.017072655792865293,2009-12-28,0.0,0.0,1.7000974531435499e-06,0.0,0.0,0.0,0.0,0.0,11.674891906269382,0.0,0.0,0.0 +2705,catchment_outflow,0.02710845681390915,2009-12-28,0.0,0.0,2.3401608078083556e-06,0.0,0.0,0.0,0.0,0.0,9.414076589360928,0.0,0.0,0.0 +2706,reservoir_outflow,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2707,gw1_gw2,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2708,gw2_gw1,0.033608011384919756,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2709,urban_drainage,0.04,2009-12-29,0.0,0.0,1.610738255033557e-06,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0 +2710,percolation,0.11423769715974608,2009-12-29,0.0,0.0,1.0759866112654191e-05,0.0,0.0,0.0,0.0,0.0,9.084230831262616,0.0,0.0,0.0 +2711,runoff,0.0644619211887581,2009-12-29,0.0,0.0,2.7930087323120293e-06,0.0,0.0,0.0,0.0,0.0,4.549806490829496,0.0,0.0,0.0 +2712,storm_outflow,0.04,2009-12-29,0.0,0.0,1.610738255033557e-06,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0 +2713,baseflow,0.017315568396282496,2009-12-29,0.0,0.0,1.7227468747923265e-06,0.0,0.0,0.0,0.0,0.0,11.632162850462919,0.0,0.0,0.0 +2714,catchment_outflow,0.1217774895850406,2009-12-29,0.0,0.0,6.126493862137913e-06,0.0,0.0,0.0,0.0,0.0,5.353261765300174,0.0,0.0,0.0 +2715,reservoir_outflow,0.0745,2009-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2716,gw1_gw2,0.0,2009-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2717,gw2_gw1,0.033383957975687294,2009-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2718,urban_drainage,0.04,2009-12-30,0.0,0.0,1.573507078822319e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 +2719,percolation,0.11835901897980428,2009-12-30,0.0,0.0,1.1050940160454678e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2720,runoff,0.07143733718406813,2009-12-30,0.0,0.0,3.9219782193615354e-06,0.0,0.0,0.0,0.0,0.0,4.573241029203011,0.0,0.0,0.0 +2721,storm_outflow,0.04,2009-12-30,0.0,0.0,1.573507078822319e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 +2722,baseflow,0.0175681770227413,2009-12-30,0.0,0.0,1.7460673580064826e-06,0.0,0.0,0.0,0.0,0.0,11.585329387879021,0.0,0.0,0.0 +2723,catchment_outflow,0.12900551420680942,2009-12-30,0.0,0.0,7.241552656190337e-06,0.0,0.0,0.0,0.0,0.0,5.316671915350419,0.0,0.0,0.0 +2724,reservoir_outflow,0.013999999999999999,2009-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2725,gw1_gw2,0.0,2009-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2726,gw2_gw1,0.033161398255849406,2009-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2727,urban_drainage,0.04,2009-12-31,0.0,0.0,2.5016907356592856e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 +2728,percolation,0.11599183860020822,2009-12-31,0.0,0.0,1.0829921357245587e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2729,runoff,0.039167902692508784,2009-12-31,0.0,0.0,3.1375825754892287e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2730,storm_outflow,0.04,2009-12-31,0.0,0.0,2.5016907356592856e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 +2731,baseflow,0.01781423617668497,2009-12-31,0.0,0.0,1.76877699300458e-06,0.0,0.0,0.0,0.0,0.0,11.540828897732194,0.0,0.0,0.0 +2732,catchment_outflow,0.09698213886919375,2009-12-31,0.0,0.0,7.408050304153095e-06,0.0,0.0,0.0,0.0,0.0,5.7262640917150085,0.0,0.0,0.0 +2733,reservoir_outflow,0.0,2009-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2734,gw1_gw2,0.0,2009-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2735,gw2_gw1,0.03294032226747703,2009-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2736,urban_drainage,0.01699999999999997,2010-01-01,0.0,0.0,3.314063930484837e-06,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 +2737,percolation,0.11367200182820403,2010-01-01,0.0,0.0,1.0613322930100673e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2738,runoff,0.03133432215400703,2010-01-01,0.0,0.0,2.5100660603913826e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2739,storm_outflow,0.01699999999999997,2010-01-01,0.0,0.0,3.314063930484837e-06,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 +2740,baseflow,0.018053880590813764,2010-01-01,0.0,0.0,1.7908883578473202e-06,0.0,0.0,0.0,0.0,0.0,11.49849776325464,0.0,0.0,0.0 +2741,catchment_outflow,0.06638820274482077,2010-01-01,0.0,0.0,7.61501834872354e-06,0.0,0.0,0.0,0.0,0.0,6.462419522649449,0.0,0.0,0.0 +2742,reservoir_outflow,0.0,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2743,gw1_gw2,0.0,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2744,gw2_gw1,0.03272072011902729,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2745,urban_drainage,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2746,percolation,0.11139856179163998,2010-01-02,0.0,0.0,1.0401056471498663e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2747,runoff,0.025504458120847267,2010-01-02,0.0,0.0,2.0080528483131065e-06,0.0,0.0,0.0,0.0,0.0,4.925183549237203,0.0,0.0,0.0 +2748,storm_outflow,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2749,baseflow,0.01828724229381583,2010-01-02,0.0,0.0,1.8124137781314485e-06,0.0,0.0,0.0,0.0,0.0,11.458187292075037,0.0,0.0,0.0 +2750,catchment_outflow,0.0437917004146631,2010-01-02,0.0,0.0,3.820466626444555e-06,0.0,0.0,0.0,0.0,0.0,7.653340282600266,0.0,0.0,0.0 +2751,reservoir_outflow,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2752,gw1_gw2,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2753,gw2_gw1,0.03250258198490066,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2754,urban_drainage,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2755,percolation,0.10917059055580715,2010-01-03,0.0,0.0,1.0193035342068689e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2756,runoff,0.020053966178564496,2010-01-03,0.0,0.0,1.6064422786504847e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2757,storm_outflow,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2758,baseflow,0.01851445066447081,2010-01-03,0.0,0.0,1.8333653320412917e-06,0.0,0.0,0.0,0.0,0.0,11.419762052007014,0.0,0.0,0.0 +2759,catchment_outflow,0.0385684168430353,2010-01-03,0.0,0.0,3.4398076106917764e-06,0.0,0.0,0.0,0.0,0.0,8.058762158260388,0.0,0.0,0.0 +2760,reservoir_outflow,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2761,gw1_gw2,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2762,gw2_gw1,0.032285898105001286,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2763,urban_drainage,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2764,percolation,0.106987178744691,2010-01-04,0.0,0.0,9.989174635227315e-06,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2765,runoff,0.0164435870033275,2010-01-04,0.0,0.0,1.285153822920388e-06,0.0,0.0,0.0,0.0,0.0,4.903043165085661,0.0,0.0,0.0 +2766,storm_outflow,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2767,baseflow,0.01873563248467136,2010-01-04,0.0,0.0,1.8537548552992567e-06,0.0,0.0,0.0,0.0,0.0,11.383098424676954,0.0,0.0,0.0 +2768,catchment_outflow,0.03517921948799886,2010-01-04,0.0,0.0,3.138908678219645e-06,0.0,0.0,0.0,0.0,0.0,8.354169585485113,0.0,0.0,0.0 +2769,reservoir_outflow,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2770,gw1_gw2,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2771,gw2_gw1,0.032070658784301286,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2772,urban_drainage,0.04,2010-01-05,0.0,0.0,2.3880597014925373e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2773,percolation,0.11419798105964177,2010-01-05,0.0,0.0,1.0551033074993471e-05,0.0,0.0,0.0,0.0,0.0,8.43688645248716,0.0,0.0,0.0 +2774,runoff,0.07681195760058633,2010-01-05,0.0,0.0,3.5669294999053207e-06,0.0,0.0,0.0,0.0,0.0,3.475427863103134,0.0,0.0,0.0 +2775,storm_outflow,0.04,2010-01-05,0.0,0.0,2.3880597014925373e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2776,baseflow,0.018974288356108787,2010-01-05,0.0,0.0,1.8754980508484924e-06,0.0,0.0,0.0,0.0,0.0,11.338768506647448,0.0,0.0,0.0 +2777,catchment_outflow,0.1357862459566951,2010-01-05,0.0,0.0,7.83048725224635e-06,0.0,0.0,0.0,0.0,0.0,4.316339087095658,0.0,0.0,0.0 +2778,reservoir_outflow,0.033499999999999995,2010-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2779,gw1_gw2,0.0,2010-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2780,gw2_gw1,0.03185685439240604,2010-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2781,urban_drainage,0.023999999999999987,2010-01-06,0.0,0.0,2.6119402985074623e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2782,percolation,0.11387993774700628,2010-01-06,0.0,0.0,1.0500748208127341e-05,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2783,runoff,0.04865342604471868,2010-01-06,0.0,0.0,3.3893295820367217e-06,0.0,0.0,0.0,0.0,0.0,3.8562789077081443,0.0,0.0,0.0 +2784,storm_outflow,0.023999999999999987,2010-01-06,0.0,0.0,2.6119402985074623e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2785,baseflow,0.01921155247958603,2010-01-06,0.0,0.0,1.8970611762416894e-06,0.0,0.0,0.0,0.0,0.0,11.294545275112634,0.0,0.0,0.0 +2786,catchment_outflow,0.0918649785243047,2010-01-06,0.0,0.0,7.898331056785873e-06,0.0,0.0,0.0,0.0,0.0,5.08362313290388,0.0,0.0,0.0 +2787,reservoir_outflow,0.0,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2788,gw1_gw2,0.0,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2789,gw2_gw1,0.031644475363123446,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2790,urban_drainage,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2791,percolation,0.11160233899206615,2010-01-07,0.0,0.0,1.0290733243964793e-05,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2792,runoff,0.03379386429771895,2010-01-07,0.0,0.0,2.7114636656293777e-06,0.0,0.0,0.0,0.0,0.0,4.040432344125645,0.0,0.0,0.0 +2793,storm_outflow,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2794,baseflow,0.01944252944586723,2010-01-07,0.0,0.0,1.918045356410997e-06,0.0,0.0,0.0,0.0,0.0,11.252355988123506,0.0,0.0,0.0 +2795,catchment_outflow,0.05323639374358617,2010-01-07,0.0,0.0,4.629509022040375e-06,0.0,0.0,0.0,0.0,0.0,6.674307930911945,0.0,0.0,0.0 +2796,reservoir_outflow,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2797,gw1_gw2,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2798,gw2_gw1,0.031433512194035985,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2799,urban_drainage,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2800,percolation,0.10937029221222483,2010-01-08,0.0,0.0,1.0084918579085496e-05,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2801,runoff,0.026723503414315758,2010-01-08,0.0,0.0,2.169170932503502e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 +2802,storm_outflow,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2803,baseflow,0.019667348852783123,2010-01-08,0.0,0.0,1.9384625394676836e-06,0.0,0.0,0.0,0.0,0.0,11.212069648830404,0.0,0.0,0.0 +2804,catchment_outflow,0.04639085226709888,2010-01-08,0.0,0.0,4.107633471971186e-06,0.0,0.0,0.0,0.0,0.0,7.089890892476418,0.0,0.0,0.0 +2805,reservoir_outflow,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2806,gw1_gw2,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2807,gw2_gw1,0.031223955446075813,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2808,urban_drainage,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2809,percolation,0.10718288636798033,2010-01-09,0.0,0.0,9.883220207503787e-06,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2810,runoff,0.021378802731452606,2010-01-09,0.0,0.0,1.7353367460028016e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 +2811,storm_outflow,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2812,baseflow,0.019886137696571115,2010-01-09,0.0,0.0,1.958324433637774e-06,0.0,0.0,0.0,0.0,0.0,11.173566246336268,0.0,0.0,0.0 +2813,catchment_outflow,0.04126494042802372,2010-01-09,0.0,0.0,3.6936611796405752e-06,0.0,0.0,0.0,0.0,0.0,7.486127216037188,0.0,0.0,0.0 +2814,reservoir_outflow,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2815,gw1_gw2,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2816,gw2_gw1,0.031015795743102006,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2817,urban_drainage,0.011,2010-01-10,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 +2818,percolation,0.10757969431326467,2010-01-10,0.0,0.0,9.900965015358926e-06,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 +2819,runoff,0.03448517573483127,2010-01-10,0.0,0.0,2.1063001034862953e-06,0.0,0.0,0.0,0.0,0.0,3.6763780285064143,0.0,0.0,0.0 +2820,storm_outflow,0.011,2010-01-10,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 +2821,baseflow,0.020105371588112847,2010-01-10,0.0,0.0,1.9781810350920766e-06,0.0,0.0,0.0,0.0,0.0,11.134417378656101,0.0,0.0,0.0 +2822,catchment_outflow,0.06559054732294411,2010-01-10,0.0,0.0,8.084481138578373e-06,0.0,0.0,0.0,0.0,0.0,5.820895360773781,0.0,0.0,0.0 +2823,reservoir_outflow,0.0055,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2824,gw1_gw2,0.0,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2825,gw2_gw1,0.030809023771481314,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2826,urban_drainage,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2827,percolation,0.10542810042699936,2010-01-11,0.0,0.0,9.702945715051746e-06,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 +2828,runoff,0.021362350540018924,2010-01-11,0.0,0.0,1.6850400827890365e-06,0.0,0.0,0.0,0.0,0.0,3.924387471079308,0.0,0.0,0.0 +2829,storm_outflow,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2830,baseflow,0.020318678410210067,2010-01-11,0.0,0.0,1.9974929467919758e-06,0.0,0.0,0.0,0.0,0.0,11.096962088057158,0.0,0.0,0.0 +2831,catchment_outflow,0.04168102895022899,2010-01-11,0.0,0.0,3.6825330295810123e-06,0.0,0.0,0.0,0.0,0.0,7.420875938041876,0.0,0.0,0.0 +2832,reservoir_outflow,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2833,gw1_gw2,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2834,gw2_gw1,0.03060363027967128,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2835,urban_drainage,0.022,2010-01-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 +2836,percolation,0.1065358240314265,2010-01-12,0.0,0.0,9.781565945150204e-06,0.0,0.0,0.0,0.0,0.0,8.114873689909818,0.0,0.0,0.0 +2837,runoff,0.03837177182044543,2010-01-12,0.0,0.0,2.2569625475628626e-06,0.0,0.0,0.0,0.0,0.0,3.635299358772539,0.0,0.0,0.0 +2838,storm_outflow,0.022,2010-01-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 +2839,baseflow,0.02053422127426311,2010-01-12,0.0,0.0,2.016953129287871e-06,0.0,0.0,0.0,0.0,0.0,11.058282846148265,0.0,0.0,0.0 +2840,catchment_outflow,0.08090599309470854,2010-01-12,0.0,0.0,6.2739156768507335e-06,0.0,0.0,0.0,0.0,0.0,5.326133304681121,0.0,0.0,0.0 +2841,reservoir_outflow,0.011,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2842,gw1_gw2,0.0,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2843,gw2_gw1,0.030399606077806673,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2844,urban_drainage,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2845,percolation,0.105826553576052,2010-01-13,0.0,0.0,9.706934608562593e-06,0.0,0.0,0.0,0.0,0.0,8.058602747324542,0.0,0.0,0.0 +2846,runoff,0.03139493064537964,2010-01-13,0.0,0.0,2.208903312434935e-06,0.0,0.0,0.0,0.0,0.0,3.8346287611342476,0.0,0.0,0.0 +2847,storm_outflow,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2848,baseflow,0.020747452105017584,2010-01-13,0.0,0.0,2.036178082986058e-06,0.0,0.0,0.0,0.0,0.0,11.020031666547709,0.0,0.0,0.0 +2849,catchment_outflow,0.052142382750397225,2010-01-13,0.0,0.0,4.245081395420993e-06,0.0,0.0,0.0,0.0,0.0,6.69370030278113,0.0,0.0,0.0 +2850,reservoir_outflow,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2851,gw1_gw2,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2852,gw2_gw1,0.030196942037287757,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2853,urban_drainage,0.011,2010-01-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 +2854,percolation,0.10631237169817996,2010-01-14,0.0,0.0,9.733137555790809e-06,0.0,0.0,0.0,0.0,0.0,7.964900265215151,0.0,0.0,0.0 +2855,runoff,0.03893146770020646,2010-01-14,0.0,0.0,2.5015947812795026e-06,0.0,0.0,0.0,0.0,0.0,3.9506904254899116,0.0,0.0,0.0 +2856,storm_outflow,0.011,2010-01-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 +2857,baseflow,0.02096136440400049,2010-01-14,0.0,0.0,2.05542048166807e-06,0.0,0.0,0.0,0.0,0.0,10.98129393711545,0.0,0.0,0.0 +2858,catchment_outflow,0.07089283210420694,2010-01-14,0.0,0.0,6.557015262947572e-06,0.0,0.0,0.0,0.0,0.0,5.995565973990346,0.0,0.0,0.0 +2859,reservoir_outflow,0.0055,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2860,gw1_gw2,0.0,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2861,gw2_gw1,0.029995629090372768,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2862,urban_drainage,0.04,2010-01-15,0.0,0.0,6.896551724137931e-07,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 +2863,percolation,0.11100007508532954,2010-01-15,0.0,0.0,1.0096146086109167e-05,0.0,0.0,0.0,0.0,0.0,7.755879344286624,0.0,0.0,0.0 +2864,runoff,0.07046210309438121,2010-01-15,0.0,0.0,3.8601800964708585e-06,0.0,0.0,0.0,0.0,0.0,4.232512149825626,0.0,0.0,0.0 +2865,storm_outflow,0.04,2010-01-15,0.0,0.0,6.896551724137931e-07,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 +2866,baseflow,0.02118646118070381,2010-01-15,0.0,0.0,2.0755222956791726e-06,0.0,0.0,0.0,0.0,0.0,10.939047469084326,0.0,0.0,0.0 +2867,catchment_outflow,0.131648564275085,2010-01-15,0.0,0.0,6.625357564563824e-06,0.0,0.0,0.0,0.0,0.0,5.282397018730546,0.0,0.0,0.0 +2868,reservoir_outflow,0.028999999999999998,2010-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2869,gw1_gw2,0.0,2010-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2870,gw2_gw1,0.02979565822977026,2010-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2871,urban_drainage,0.028999999999999995,2010-01-16,0.0,0.0,1.3103448275862068e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 +2872,percolation,0.1121119805940825,2010-01-16,0.0,0.0,1.0165605597206863e-05,0.0,0.0,0.0,0.0,0.0,7.671509146608003,0.0,0.0,0.0 +2873,runoff,0.06004006147026146,2010-01-16,0.0,0.0,3.99275218657629e-06,0.0,0.0,0.0,0.0,0.0,4.449700029682216,0.0,0.0,0.0 +2874,storm_outflow,0.028999999999999995,2010-01-16,0.0,0.0,1.3103448275862068e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 +2875,baseflow,0.021413774979237257,2010-01-16,0.0,0.0,2.0957475039329917e-06,0.0,0.0,0.0,0.0,0.0,10.896279415185015,0.0,0.0,0.0 +2876,catchment_outflow,0.11045383644949872,2010-01-16,0.0,0.0,7.398844518095489e-06,0.0,0.0,0.0,0.0,0.0,5.657256994434141,0.0,0.0,0.0 +2877,reservoir_outflow,0.0055,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2878,gw1_gw2,0.0,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2879,gw2_gw1,0.029597020508238536,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2880,urban_drainage,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2881,percolation,0.10986974098220087,2010-01-17,0.0,0.0,9.962293485262726e-06,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 +2882,runoff,0.039049549874819955,2010-01-17,0.0,0.0,3.1942017492610316e-06,0.0,0.0,0.0,0.0,0.0,4.432918984209197,0.0,0.0,0.0 +2883,storm_outflow,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2884,baseflow,0.02163491489424467,2010-01-17,0.0,0.0,2.1154138688863162e-06,0.0,0.0,0.0,0.0,0.0,10.855338108520813,0.0,0.0,0.0 +2885,catchment_outflow,0.060684464769064625,2010-01-17,0.0,0.0,5.309615618147348e-06,0.0,0.0,0.0,0.0,0.0,6.7226069908254065,0.0,0.0,0.0 +2886,reservoir_outflow,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2887,gw1_gw2,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2888,gw2_gw1,0.029399707038183644,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2889,urban_drainage,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2890,percolation,0.10767234616255683,2010-01-18,0.0,0.0,9.76304761555747e-06,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 +2891,runoff,0.03128419979653777,2010-01-18,0.0,0.0,2.5553613994088255e-06,0.0,0.0,0.0,0.0,0.0,4.438040890899159,0.0,0.0,0.0 +2892,storm_outflow,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2893,baseflow,0.02185000847241545,2010-01-18,0.0,0.0,2.134532953252994e-06,0.0,0.0,0.0,0.0,0.0,10.816114973373951,0.0,0.0,0.0 +2894,catchment_outflow,0.05313420826895322,2010-01-18,0.0,0.0,4.6898943526618195e-06,0.0,0.0,0.0,0.0,0.0,7.0608516427664725,0.0,0.0,0.0 +2895,reservoir_outflow,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2896,gw1_gw2,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2897,gw2_gw1,0.02920370899126237,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2898,urban_drainage,0.034999999999999996,2010-01-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 +2899,percolation,0.11030554518826753,2010-01-19,0.0,0.0,9.960500168743738e-06,0.0,0.0,0.0,0.0,0.0,7.597066360888079,0.0,0.0,0.0 +2900,runoff,0.05750550519600281,2010-01-19,0.0,0.0,3.3533341378517706e-06,0.0,0.0,0.0,0.0,0.0,5.238088024180862,0.0,0.0,0.0 +2901,storm_outflow,0.034999999999999996,2010-01-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 +2902,baseflow,0.022071147314205078,2010-01-19,0.0,0.0,2.15409787129172e-06,0.0,0.0,0.0,0.0,0.0,10.775895166590361,0.0,0.0,0.0 +2903,catchment_outflow,0.11457665251020789,2010-01-19,0.0,0.0,8.50743200914349e-06,0.0,0.0,0.0,0.0,0.0,6.461222697093054,0.0,0.0,0.0 +2904,reservoir_outflow,0.017499999999999998,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2905,gw1_gw2,0.0,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2906,gw2_gw1,0.029009017597987352,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2907,urban_drainage,0.031000000000000003,2010-01-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 +2908,percolation,0.113172447730304,2010-01-20,0.0,0.0,1.0170447433495705e-05,0.0,0.0,0.0,0.0,0.0,7.538491083432965,0.0,0.0,0.0 +2909,runoff,0.06727829699941315,2010-01-20,0.0,0.0,4.0465248707042324e-06,0.0,0.0,0.0,0.0,0.0,5.503639871992674,0.0,0.0,0.0 +2910,storm_outflow,0.031,2010-01-20,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 +2911,baseflow,0.02229890056524533,2010-01-20,0.0,0.0,2.1741387451972307e-06,0.0,0.0,0.0,0.0,0.0,10.73481859609858,0.0,0.0,0.0 +2912,catchment_outflow,0.12057719756465848,2010-01-20,0.0,0.0,7.220663615901463e-06,0.0,0.0,0.0,0.0,0.0,6.503185515027398,0.0,0.0,0.0 +2913,reservoir_outflow,0.015500000000000002,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2914,gw1_gw2,0.0,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2915,gw2_gw1,0.028815624147333987,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2916,urban_drainage,0.039999999999999994,2010-01-21,0.0,0.0,6.249999999999998e-07,0.0,0.0,0.0,0.0,0.0,5.507142857,0.0,0.0,0.0 +2917,percolation,0.11968122283263138,2010-01-21,0.0,0.0,1.0649191080813196e-05,0.0,0.0,0.0,0.0,0.0,7.442225220176505,0.0,0.0,0.0 +2918,runoff,0.09960308024647363,2010-01-21,0.0,0.0,5.511061883188067e-06,0.0,0.0,0.0,0.0,0.0,5.698667032488271,0.0,0.0,0.0 +2919,storm_outflow,0.039999999999999994,2010-01-21,0.0,0.0,6.25e-07,0.0,0.0,0.0,0.0,0.0,5.507142857000001,0.0,0.0,0.0 +2920,baseflow,0.022542356370913792,2010-01-21,0.0,0.0,2.1953263760362707e-06,0.0,0.0,0.0,0.0,0.0,10.691116243620753,0.0,0.0,0.0 +2921,catchment_outflow,0.1621454366173874,2010-01-21,0.0,0.0,8.331388259224337e-06,0.0,0.0,0.0,0.0,0.0,6.34549746108054,0.0,0.0,0.0 +2922,reservoir_outflow,0.032,2010-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2923,gw1_gw2,0.0,2010-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2924,gw2_gw1,0.028623519986351733,2010-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2925,urban_drainage,0.04,2010-01-22,0.0,0.0,4.910714285714285e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2926,percolation,0.12959509174066625,2010-01-22,0.0,0.0,1.1346896820953423e-05,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 +2927,runoff,0.13926784249750812,2010-01-22,0.0,0.0,7.444481379072095e-06,0.0,0.0,0.0,0.0,0.0,5.75815886520806,0.0,0.0,0.0 +2928,storm_outflow,0.04,2010-01-22,0.0,0.0,4.910714285714285e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2929,baseflow,0.02280998820933817,2010-01-22,0.0,0.0,2.2182053021485634e-06,0.0,0.0,0.0,0.0,0.0,10.643179567872199,0.0,0.0,0.0 +2930,catchment_outflow,0.2020778307068463,2010-01-22,0.0,0.0,1.0153758109792088e-05,0.0,0.0,0.0,0.0,0.0,6.240994104696659,0.0,0.0,0.0 +2931,reservoir_outflow,0.044000000000000004,2010-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2932,gw1_gw2,0.0,2010-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2933,gw2_gw1,0.028432696519776004,2010-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2934,urban_drainage,0.04,2010-01-23,0.0,0.0,1.4491758241758241e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2935,percolation,0.12700318990585294,2010-01-23,0.0,0.0,1.1119958884534356e-05,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 +2936,runoff,0.07686692420239252,2010-01-23,0.0,0.0,5.9555851032576785e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2937,storm_outflow,0.04,2010-01-23,0.0,0.0,1.4491758241758241e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2938,baseflow,0.02307047121357946,2010-01-23,0.0,0.0,2.2404596861045277e-06,0.0,0.0,0.0,0.0,0.0,10.597391771782826,0.0,0.0,0.0 +2939,catchment_outflow,0.139937395415972,2010-01-23,0.0,0.0,9.64522061353803e-06,0.0,0.0,0.0,0.0,0.0,6.548893818148493,0.0,0.0,0.0 +2940,reservoir_outflow,0.0,2010-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2941,gw1_gw2,0.0,2010-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2942,gw2_gw1,0.02824314520964446,2010-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2943,urban_drainage,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2944,percolation,0.1244631261077359,2010-01-24,0.0,0.0,1.089755970684367e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2945,runoff,0.06230079174404874,2010-01-24,0.0,0.0,4.76446808260614e-06,0.0,0.0,0.0,0.0,0.0,5.915410072948235,0.0,0.0,0.0 +2946,storm_outflow,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2947,baseflow,0.02332395285081485,2010-01-24,0.0,0.0,2.2621024361563757e-06,0.0,0.0,0.0,0.0,0.0,10.553618236185576,0.0,0.0,0.0 +2948,catchment_outflow,0.08562474459486359,2010-01-24,0.0,0.0,7.026570518762516e-06,0.0,0.0,0.0,0.0,0.0,7.178845649001349,0.0,0.0,0.0 +2949,reservoir_outflow,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2950,gw1_gw2,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2951,gw2_gw1,0.028054857574913328,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2952,urban_drainage,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2953,percolation,0.12197386358558115,2010-01-25,0.0,0.0,1.0679608512706795e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2954,runoff,0.04919483148953121,2010-01-25,0.0,0.0,3.8115744660849125e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2955,storm_outflow,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2956,baseflow,0.023570577627651766,2010-01-25,0.0,0.0,2.2831462013477515e-06,0.0,0.0,0.0,0.0,0.0,10.511735326474067,0.0,0.0,0.0 +2957,catchment_outflow,0.07276540911718297,2010-01-25,0.0,0.0,6.094720667432664e-06,0.0,0.0,0.0,0.0,0.0,7.411133915705913,0.0,0.0,0.0 +2958,reservoir_outflow,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2959,gw1_gw2,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2960,gw2_gw1,0.0278678251910808,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2961,urban_drainage,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2962,percolation,0.11953438631386952,2010-01-26,0.0,0.0,1.046601634245266e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2963,runoff,0.03935586519162497,2010-01-26,0.0,0.0,3.0492595728679306e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2964,storm_outflow,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2965,baseflow,0.023810487149367312,2010-01-26,0.0,0.0,2.303603376700514e-06,0.0,0.0,0.0,0.0,0.0,10.47162929414594,0.0,0.0,0.0 +2966,catchment_outflow,0.06316635234099229,2010-01-26,0.0,0.0,5.352862949568444e-06,0.0,0.0,0.0,0.0,0.0,7.639190663471635,0.0,0.0,0.0 +2967,reservoir_outflow,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2968,gw1_gw2,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2969,gw2_gw1,0.027682039689806537,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2970,urban_drainage,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2971,percolation,0.11714369858759213,2010-01-27,0.0,0.0,1.0256696015603608e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2972,runoff,0.03243576132604081,2010-01-27,0.0,0.0,2.4394076582943443e-06,0.0,0.0,0.0,0.0,0.0,5.895795029979936,0.0,0.0,0.0 +2973,storm_outflow,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2974,baseflow,0.02404382017796287,2010-01-27,0.0,0.0,2.3234861082977713e-06,0.0,0.0,0.0,0.0,0.0,10.433195307584425,0.0,0.0,0.0 +2975,catchment_outflow,0.05647958150400369,2010-01-27,0.0,0.0,4.762893766592116e-06,0.0,0.0,0.0,0.0,0.0,7.827403470499765,0.0,0.0,0.0 +2976,reservoir_outflow,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2977,gw1_gw2,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2978,gw2_gw1,0.027497492758541322,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2979,urban_drainage,0.04,2010-01-28,0.0,0.0,3.56377229328049e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2980,percolation,0.12140770570096722,2010-01-28,0.0,0.0,1.0557927253749973e-05,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 +2981,runoff,0.0703927295682453,2010-01-28,0.0,0.0,3.6394099881636057e-06,0.0,0.0,0.0,0.0,0.0,5.495478913376556,0.0,0.0,0.0 +2982,storm_outflow,0.04,2010-01-28,0.0,0.0,3.56377229328049e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2983,baseflow,0.02428722989177038,2010-01-28,0.0,0.0,2.344072211161402e-06,0.0,0.0,0.0,0.0,0.0,10.393080062630077,0.0,0.0,0.0 +2984,catchment_outflow,0.13467995946001568,2010-01-28,0.0,0.0,9.547254492605499e-06,0.0,0.0,0.0,0.0,0.0,6.2081844392759296,0.0,0.0,0.0 +2985,reservoir_outflow,0.0305,2010-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2986,gw1_gw2,0.0,2010-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2987,gw2_gw1,0.02731417614015097,2010-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2988,urban_drainage,0.0049999999999999975,2010-01-29,0.0,0.0,2.870980453972257e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2989,percolation,0.11897955158694787,2010-01-29,0.0,0.0,1.0346768708674975e-05,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 +2990,runoff,0.03927579627062231,2010-01-29,0.0,0.0,2.9115279905308843e-06,0.0,0.0,0.0,0.0,0.0,5.74492111651429,0.0,0.0,0.0 +2991,storm_outflow,0.0049999999999999975,2010-01-29,0.0,0.0,2.870980453972257e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2992,baseflow,0.024523960696008325,2010-01-29,0.0,0.0,2.364078952405186e-06,0.0,0.0,0.0,0.0,0.0,10.354633166148314,0.0,0.0,0.0 +2993,catchment_outflow,0.06879975696663063,2010-01-29,0.0,0.0,8.146587396908326e-06,0.0,0.0,0.0,0.0,0.0,7.328225174556286,0.0,0.0,0.0 +2994,reservoir_outflow,0.0,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2995,gw1_gw2,0.0,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2996,gw2_gw1,0.027132081632550077,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2997,urban_drainage,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2998,percolation,0.11659996055520891,2010-01-30,0.0,0.0,1.0139833334501476e-05,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 +2999,runoff,0.030214842030760376,2010-01-30,0.0,0.0,2.329222392424708e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +3000,storm_outflow,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3001,baseflow,0.024754150695656327,2010-01-30,0.0,0.0,2.383518338360427e-06,0.0,0.0,0.0,0.0,0.0,10.317758319609332,0.0,0.0,0.0 +3002,catchment_outflow,0.0549689927264167,2010-01-30,0.0,0.0,4.712740730785135e-06,0.0,0.0,0.0,0.0,0.0,7.822032948455985,0.0,0.0,0.0 +3003,reservoir_outflow,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3004,gw1_gw2,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3005,gw2_gw1,0.0269512010883334,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3006,urban_drainage,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3007,percolation,0.11426796134410473,2010-01-31,0.0,0.0,9.937036667811445e-06,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 +3008,runoff,0.0241718736246083,2010-01-31,0.0,0.0,1.8633779139397657e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +3009,storm_outflow,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3010,baseflow,0.02497793522227745,2010-01-31,0.0,0.0,2.4024021341840543e-06,0.0,0.0,0.0,0.0,0.0,10.282366468512391,0.0,0.0,0.0 +3011,catchment_outflow,0.049149808846885745,2010-01-31,0.0,0.0,4.2657800481238205e-06,0.0,0.0,0.0,0.0,0.0,8.066803010139079,0.0,0.0,0.0 +3012,reservoir_outflow,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3013,gw1_gw2,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3014,gw2_gw1,0.026771526414411186,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3015,urban_drainage,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3016,percolation,0.11198260211722265,2010-02-01,0.0,0.0,9.738295934455217e-06,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 +3017,runoff,0.021290784003745917,2010-02-01,0.0,0.0,1.490702331151813e-06,0.0,0.0,0.0,0.0,0.0,5.702763186802649,0.0,0.0,0.0 +3018,storm_outflow,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3019,baseflow,0.02519544688951481,2010-02-01,0.0,0.0,2.4207418686847328e-06,0.0,0.0,0.0,0.0,0.0,10.248375133426316,0.0,0.0,0.0 +3020,catchment_outflow,0.046486230893260726,2010-02-01,0.0,0.0,3.911444199836546e-06,0.0,0.0,0.0,0.0,0.0,8.166476036409138,0.0,0.0,0.0 +3021,reservoir_outflow,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3022,gw1_gw2,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3023,gw2_gw1,0.026593049571648566,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3024,urban_drainage,0.002999999999999999,2010-02-02,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +3025,percolation,0.11146843166386879,2010-02-02,0.0,0.0,9.682794090642919e-06,0.0,0.0,0.0,0.0,0.0,7.199284322180771,0.0,0.0,0.0 +3026,runoff,0.02727592578126396,2010-02-02,0.0,0.0,1.6567754478441405e-06,0.0,0.0,0.0,0.0,0.0,5.578035584901133,0.0,0.0,0.0 +3027,storm_outflow,0.002999999999999999,2010-02-02,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +3028,baseflow,0.025411129351450696,2010-02-02,0.0,0.0,2.438896999239628e-06,0.0,0.0,0.0,0.0,0.0,10.21493728754887,0.0,0.0,0.0 +3029,catchment_outflow,0.05568705513271466,2010-02-02,0.0,0.0,8.095672447083769e-06,0.0,0.0,0.0,0.0,0.0,7.661460573432834,0.0,0.0,0.0 +3030,reservoir_outflow,0.0014999999999999996,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3031,gw1_gw2,0.0,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3032,gw2_gw1,0.026415762574504422,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3033,urban_drainage,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3034,percolation,0.11045996093159974,2010-02-03,0.0,0.0,9.588112784018392e-06,0.0,0.0,0.0,0.0,0.0,7.1825849507588515,0.0,0.0,0.0 +3035,runoff,0.02533079548737534,2010-02-03,0.0,0.0,1.6553356089030888e-06,0.0,0.0,0.0,0.0,0.0,5.616943915722848,0.0,0.0,0.0 +3036,storm_outflow,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3037,baseflow,0.02562375143040107,2010-02-03,0.0,0.0,2.4567700387015752e-06,0.0,0.0,0.0,0.0,0.0,10.182257302968699,0.0,0.0,0.0 +3038,catchment_outflow,0.050954546917776414,2010-02-03,0.0,0.0,4.112105647604664e-06,0.0,0.0,0.0,0.0,0.0,7.912724420364314,0.0,0.0,0.0 +3039,reservoir_outflow,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3040,gw1_gw2,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3041,gw2_gw1,0.026239657490674164,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3042,urban_drainage,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3043,percolation,0.10941144894062849,2010-02-04,0.0,0.0,9.490855999845095e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +3044,runoff,0.024779098751766048,2010-02-04,0.0,0.0,1.6392867254793734e-06,0.0,0.0,0.0,0.0,0.0,5.625890736640606,0.0,0.0,0.0 +3045,storm_outflow,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3046,baseflow,0.025833220674176635,2010-02-04,0.0,0.0,2.474355253604434e-06,0.0,0.0,0.0,0.0,0.0,10.150332265750547,0.0,0.0,0.0 +3047,catchment_outflow,0.05061231942594269,2010-02-04,0.0,0.0,4.113641979083808e-06,0.0,0.0,0.0,0.0,0.0,7.935227628816225,0.0,0.0,0.0 +3048,reservoir_outflow,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3049,gw1_gw2,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3050,gw2_gw1,0.026064726440736232,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3051,urban_drainage,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3052,percolation,0.10722321996181591,2010-02-05,0.0,0.0,9.301038879848195e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +3053,runoff,0.017294184320000024,2010-02-05,0.0,0.0,1.3114293803834987e-06,0.0,0.0,0.0,0.0,0.0,5.7094543798847495,0.0,0.0,0.0 +3054,storm_outflow,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3055,baseflow,0.02603669567239573,2010-02-05,0.0,0.0,2.491421962670043e-06,0.0,0.0,0.0,0.0,0.0,10.11961891227052,0.0,0.0,0.0 +3056,catchment_outflow,0.04333087999239575,2010-02-05,0.0,0.0,3.8028513430535416e-06,0.0,0.0,0.0,0.0,0.0,8.359437759291604,0.0,0.0,0.0 +3057,reservoir_outflow,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3058,gw1_gw2,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3059,gw2_gw1,0.02589096159779789,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3060,urban_drainage,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3061,percolation,0.10507875556257958,2010-02-06,0.0,0.0,9.115018102251228e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +3062,runoff,0.013453548354157102,2010-02-06,0.0,0.0,1.0491435043067992e-06,0.0,0.0,0.0,0.0,0.0,5.727039679564555,0.0,0.0,0.0 +3063,storm_outflow,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3064,baseflow,0.026234300822121193,2010-02-06,0.0,0.0,2.5079809530189966e-06,0.0,0.0,0.0,0.0,0.0,10.090054089646225,0.0,0.0,0.0 +3065,catchment_outflow,0.039687849176278295,2010-02-06,0.0,0.0,3.557124457325796e-06,0.0,0.0,0.0,0.0,0.0,8.611061739236815,0.0,0.0,0.0 +3066,reservoir_outflow,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3067,gw1_gw2,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3068,gw2_gw1,0.025718355187146182,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3069,urban_drainage,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3070,percolation,0.10297718045132803,2010-02-07,0.0,0.0,8.932717740206207e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3071,runoff,0.01129951996385258,2010-02-07,0.0,0.0,8.393148034454392e-07,0.0,0.0,0.0,0.0,0.0,5.703008655280536,0.0,0.0,0.0 +3072,storm_outflow,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3073,baseflow,0.026426158021194208,2010-02-07,0.0,0.0,2.5240427949869644e-06,0.0,0.0,0.0,0.0,0.0,10.061578934624475,0.0,0.0,0.0 +3074,catchment_outflow,0.037725677985046786,2010-02-07,0.0,0.0,3.3633575984324035e-06,0.0,0.0,0.0,0.0,0.0,8.756108641822253,0.0,0.0,0.0 +3075,reservoir_outflow,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3076,gw1_gw2,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3077,gw2_gw1,0.0255468994858985,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3078,urban_drainage,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3079,percolation,0.10091763684230146,2010-02-08,0.0,0.0,8.754063385402082e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3080,runoff,0.008881238993070127,2010-02-08,0.0,0.0,6.714518427563515e-07,0.0,0.0,0.0,0.0,0.0,5.7139416196281445,0.0,0.0,0.0 +3081,storm_outflow,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3082,baseflow,0.026612386718246974,2010-02-08,0.0,0.0,2.539617846463002e-06,0.0,0.0,0.0,0.0,0.0,10.034138515179773,0.0,0.0,0.0 +3083,catchment_outflow,0.0354936257113171,2010-02-08,0.0,0.0,3.2110696892193537e-06,0.0,0.0,0.0,0.0,0.0,8.953135930699377,0.0,0.0,0.0 +3084,reservoir_outflow,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3085,gw1_gw2,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3086,gw2_gw1,0.025376586822659065,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3087,urban_drainage,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3088,percolation,0.09889928410545543,2010-02-09,0.0,0.0,8.57898211769404e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3089,runoff,0.00683281921027198,2010-02-09,0.0,0.0,5.371614742050811e-07,0.0,0.0,0.0,0.0,0.0,5.732603747487922,0.0,0.0,0.0 +3090,storm_outflow,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3091,baseflow,0.026793103961714995,2010-02-09,0.0,0.0,2.55471625714108e-06,0.0,0.0,0.0,0.0,0.0,10.007681507462033,0.0,0.0,0.0 +3092,catchment_outflow,0.033625923171986975,2010-02-09,0.0,0.0,3.091877731346161e-06,0.0,0.0,0.0,0.0,0.0,9.13898168636411,0.0,0.0,0.0 +3093,reservoir_outflow,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3094,gw1_gw2,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3095,gw2_gw1,0.025207409577174822,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3096,urban_drainage,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3097,percolation,0.09692129842334632,2010-02-10,0.0,0.0,8.407402475340159e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3098,runoff,0.005428087878593857,2010-02-10,0.0,0.0,4.297291793640649e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3099,storm_outflow,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3100,baseflow,0.02696842444786907,2010-02-10,0.0,0.0,2.5693479726865774e-06,0.0,0.0,0.0,0.0,0.0,9.982159904091734,0.0,0.0,0.0 +3101,catchment_outflow,0.03239651232646293,2010-02-10,0.0,0.0,2.9990771520506423e-06,0.0,0.0,0.0,0.0,0.0,9.270649583729472,0.0,0.0,0.0 +3102,reservoir_outflow,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3103,gw1_gw2,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3104,gw2_gw1,0.025039360179993864,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3105,urban_drainage,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3106,percolation,0.0949828724548794,2010-02-11,0.0,0.0,8.239254425833356e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3107,runoff,0.0043424703028750854,2010-02-11,0.0,0.0,3.437833434912519e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3108,storm_outflow,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3109,baseflow,0.0271384605678866,2010-02-11,0.0,0.0,2.5835227388194447e-06,0.0,0.0,0.0,0.0,0.0,9.957528750310253,0.0,0.0,0.0 +3110,catchment_outflow,0.03148093087076168,2010-02-11,0.0,0.0,2.9273060823106965e-06,0.0,0.0,0.0,0.0,0.0,9.375163434854379,0.0,0.0,0.0 +3111,reservoir_outflow,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3112,gw1_gw2,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3113,gw2_gw1,0.024872431112127027,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3114,urban_drainage,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3115,percolation,0.09308321500578179,2010-02-12,0.0,0.0,8.074469337316687e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 +3116,runoff,0.0034739762423000677,2010-02-12,0.0,0.0,2.7502667479300146e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3117,storm_outflow,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3118,baseflow,0.027303322453981337,2010-02-12,0.0,0.0,2.5972501053156878e-06,0.0,0.0,0.0,0.0,0.0,9.933745904930765,0.0,0.0,0.0 +3119,catchment_outflow,0.030777298696281406,2010-02-12,0.0,0.0,2.872276780108689e-06,0.0,0.0,0.0,0.0,0.0,9.459886880004188,0.0,0.0,0.0 +3120,reservoir_outflow,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3121,gw1_gw2,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3122,gw2_gw1,0.024706614904713042,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3123,urban_drainage,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3124,percolation,0.09122155070566615,2010-02-13,0.0,0.0,7.912979950570354e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3125,runoff,0.0027791809938400545,2010-02-13,0.0,0.0,2.2002133983440127e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3126,storm_outflow,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3127,baseflow,0.027463118024610548,2010-02-13,0.0,0.0,2.610539429928825e-06,0.0,0.0,0.0,0.0,0.0,9.91077182341208,0.0,0.0,0.0 +3128,catchment_outflow,0.030242299018450602,2010-02-13,0.0,0.0,2.830560769763226e-06,0.0,0.0,0.0,0.0,0.0,9.527089635021301,0.0,0.0,0.0 +3129,reservoir_outflow,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3130,gw1_gw2,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3131,gw2_gw1,0.02454190413868176,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3132,urban_drainage,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3133,percolation,0.08939711969155283,2010-02-14,0.0,0.0,7.754720351558948e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3134,runoff,0.002223344795072044,2010-02-14,0.0,0.0,1.7601707186752103e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3135,storm_outflow,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3136,baseflow,0.0276179530287779,2010-02-14,0.0,0.0,2.6233998822329005e-06,0.0,0.0,0.0,0.0,0.0,9.888569360703048,0.0,0.0,0.0 +3137,catchment_outflow,0.029841297823849946,2010-02-14,0.0,0.0,2.7994169541004214e-06,0.0,0.0,0.0,0.0,0.0,9.57915314495748,0.0,0.0,0.0 +3138,reservoir_outflow,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3139,gw1_gw2,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3140,gw2_gw1,0.024378291444424074,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3141,urban_drainage,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3142,percolation,0.08760917729772177,2010-02-15,0.0,0.0,7.599625944527769e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3143,runoff,0.001778675836057635,2010-02-15,0.0,0.0,1.408136574940168e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3144,storm_outflow,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3145,baseflow,0.02776793108945026,2010-02-15,0.0,0.0,2.6358404473886375e-06,0.0,0.0,0.0,0.0,0.0,9.86710359178685,0.0,0.0,0.0 +3146,catchment_outflow,0.029546606925507896,2010-02-15,0.0,0.0,2.7766541048826545e-06,0.0,0.0,0.0,0.0,0.0,9.618394001188955,0.0,0.0,0.0 +3147,reservoir_outflow,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3148,gw1_gw2,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3149,gw2_gw1,0.024215769501461183,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3150,urban_drainage,0.005,2010-02-16,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0 +3151,percolation,0.08585699375176735,2010-02-16,0.0,0.0,7.447633425637213e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +3152,runoff,0.001422940668846108,2010-02-16,0.0,0.0,1.1265092599521345e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3153,storm_outflow,0.005,2010-02-16,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0 +3154,baseflow,0.02791315374610605,2010-02-16,0.0,0.0,2.647869929834259e-06,0.0,0.0,0.0,0.0,0.0,9.84634164809865,0.0,0.0,0.0 +3155,catchment_outflow,0.03433609441495216,2010-02-16,0.0,0.0,1.6760520855829477e-05,0.0,0.0,0.0,0.0,0.0,9.039436107205505,0.0,0.0,0.0 +3156,reservoir_outflow,0.0025,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3157,gw1_gw2,0.0,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3158,gw2_gw1,0.02405433103811827,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3159,urban_drainage,0.002000000000000001,2010-02-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0 +3160,percolation,0.084139853876732,2010-02-17,0.0,0.0,7.2986807571244694e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3161,runoff,0.0011383525350768865,2010-02-17,0.0,0.0,9.012074079617076e-08,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3162,storm_outflow,0.002000000000000001,2010-02-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0 +3163,baseflow,0.028053720496432618,2010-02-17,0.0,0.0,2.6594969569024845e-06,0.0,0.0,0.0,0.0,0.0,9.826252568202333,0.0,0.0,0.0 +3164,catchment_outflow,0.031192073031509504,2010-02-17,0.0,0.0,3.7496176976986554e-06,0.0,0.0,0.0,0.0,0.0,9.389953962974037,0.0,0.0,0.0 +3165,reservoir_outflow,0.0010000000000000005,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3166,gw1_gw2,0.0,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3167,gw2_gw1,0.0238939688311973,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3168,urban_drainage,0.04,2010-02-18,0.0,0.0,7.272727272727274e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +3169,percolation,0.08245705679919733,2010-02-18,0.0,0.0,7.152707141981979e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 +3170,runoff,0.0009106820280615092,2010-02-18,0.0,0.0,7.209659263693662e-08,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +3171,storm_outflow,0.04,2010-02-18,0.0,0.0,7.272727272727274e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +3172,baseflow,0.02818972883718953,2010-02-18,0.0,0.0,2.670729982365183e-06,0.0,0.0,0.0,0.0,0.0,9.806807161297083,0.0,0.0,0.0 +3173,catchment_outflow,0.06910041086525104,2010-02-18,0.0,0.0,3.4700993022748468e-06,0.0,0.0,0.0,0.0,0.0,7.100892423813926,0.0,0.0,0.0 +3174,reservoir_outflow,0.027499999999999997,2010-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3175,gw1_gw2,0.0,2010-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3176,gw2_gw1,0.023734675705656016,2010-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3177,urban_drainage,0.0009999999999999905,2010-02-19,0.0,0.0,1.2727272727272726e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +3178,percolation,0.0808079156632134,2010-02-19,0.0,0.0,7.00965299914234e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3179,runoff,0.0027277318292746443,2010-02-19,0.0,0.0,5.767727410954929e-08,0.0,0.0,0.0,0.0,0.0,5.269773585684978,0.0,0.0,0.0 +3180,storm_outflow,0.0009999999999999905,2010-02-19,0.0,0.0,1.2727272727272726e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +3181,baseflow,0.02832127430425459,2010-02-19,0.0,0.0,2.681577289907126e-06,0.0,0.0,0.0,0.0,0.0,9.787977882285835,0.0,0.0,0.0 +3182,catchment_outflow,0.03204900613352923,2010-02-19,0.0,0.0,4.011981836743948e-06,0.0,0.0,0.0,0.0,0.0,9.261052726387724,0.0,0.0,0.0 +3183,reservoir_outflow,0.0,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3184,gw1_gw2,0.0,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3185,gw2_gw1,0.023576444534284847,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3186,urban_drainage,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3187,percolation,0.07919175734994913,2010-02-20,0.0,0.0,6.8694599391594934e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +3188,runoff,0.0031179119175073072,2010-02-20,0.0,0.0,4.614181928763943e-08,0.0,0.0,0.0,0.0,0.0,5.117188754759228,0.0,0.0,0.0 +3189,storm_outflow,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3190,baseflow,0.02844845051186883,2010-02-20,0.0,0.0,2.6920469965302566e-06,0.0,0.0,0.0,0.0,0.0,9.769738717278953,0.0,0.0,0.0 +3191,catchment_outflow,0.03156636242937613,2010-02-20,0.0,0.0,2.738188815817896e-06,0.0,0.0,0.0,0.0,0.0,9.310191279483629,0.0,0.0,0.0 +3192,reservoir_outflow,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3193,gw1_gw2,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3194,gw2_gw1,0.023419268237389625,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3195,urban_drainage,0.017,2010-02-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 +3196,percolation,0.08085105733360563,2010-02-21,0.0,0.0,7.024631410914399e-06,0.0,0.0,0.0,0.0,0.0,7.108027656057285,0.0,0.0,0.0 +3197,runoff,0.022656141144957755,2010-02-21,0.0,0.0,1.012115690557098e-06,0.0,0.0,0.0,0.0,0.0,5.270929330371629,0.0,0.0,0.0 +3198,storm_outflow,0.017,2010-02-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 +3199,baseflow,0.028579457028923172,2010-02-21,0.0,0.0,2.702878457566218e-06,0.0,0.0,0.0,0.0,0.0,9.750913818558999,0.0,0.0,0.0 +3200,catchment_outflow,0.06823559817388093,2010-02-21,0.0,0.0,5.714994148123316e-06,0.0,0.0,0.0,0.0,0.0,7.042434655877015,0.0,0.0,0.0 +3201,reservoir_outflow,0.0085,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3202,gw1_gw2,0.0,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3203,gw2_gw1,0.02326313978247363,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3204,urban_drainage,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3205,percolation,0.08090013537533693,2010-02-22,0.0,0.0,7.034790497854361e-06,0.0,0.0,0.0,0.0,0.0,7.076869290474284,0.0,0.0,0.0 +3206,runoff,0.020421001733026696,2010-02-22,0.0,0.0,1.3118649363065088e-06,0.0,0.0,0.0,0.0,0.0,5.3904486280518285,0.0,0.0,0.0 +3207,storm_outflow,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3208,baseflow,0.028710258724789207,2010-02-22,0.0,0.0,2.713708237666938e-06,0.0,0.0,0.0,0.0,0.0,9.73207642611372,0.0,0.0,0.0 +3209,catchment_outflow,0.049131260457815906,2010-02-22,0.0,0.0,4.025573173973447e-06,0.0,0.0,0.0,0.0,0.0,7.927514768989075,0.0,0.0,0.0 +3210,reservoir_outflow,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3211,gw1_gw2,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3212,gw2_gw1,0.02310805218392389,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3213,urban_drainage,0.007000000000000001,2010-02-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 +3214,percolation,0.08166654453115915,2010-02-23,0.0,0.0,7.108993132767962e-06,0.0,0.0,0.0,0.0,0.0,7.0303593348325935,0.0,0.0,0.0 +3215,runoff,0.027974428694381916,2010-02-23,0.0,0.0,1.7658200986141698e-06,0.0,0.0,0.0,0.0,0.0,5.291847428575876,0.0,0.0,0.0 +3216,storm_outflow,0.007000000000000001,2010-02-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 +3217,baseflow,0.028842649439305132,2010-02-23,0.0,0.0,2.7246964499046906e-06,0.0,0.0,0.0,0.0,0.0,9.712951978166416,0.0,0.0,0.0 +3218,catchment_outflow,0.06381707813368705,2010-02-23,0.0,0.0,6.4905165485188605e-06,0.0,0.0,0.0,0.0,0.0,7.214114010592429,0.0,0.0,0.0 +3219,reservoir_outflow,0.0035000000000000005,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3220,gw1_gw2,0.0,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3221,gw2_gw1,0.022953998502697283,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3222,urban_drainage,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3223,percolation,0.08162854983160829,2010-02-24,0.0,0.0,7.110933417322726e-06,0.0,0.0,0.0,0.0,0.0,6.998170100625107,0.0,0.0,0.0 +3224,runoff,0.026601915172796205,2010-02-24,0.0,0.0,1.8930565695917423e-06,0.0,0.0,0.0,0.0,0.0,5.409266782610231,0.0,0.0,0.0 +3225,storm_outflow,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3226,baseflow,0.02897461419028589,2010-02-24,0.0,0.0,2.7356620423232355e-06,0.0,0.0,0.0,0.0,0.0,9.693831472685524,0.0,0.0,0.0 +3227,catchment_outflow,0.05557652936308209,2010-02-24,0.0,0.0,4.628718611914978e-06,0.0,0.0,0.0,0.0,0.0,7.643008441021858,0.0,0.0,0.0 +3228,reservoir_outflow,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3229,gw1_gw2,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3230,gw2_gw1,0.022800971846012708,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3231,urban_drainage,0.031000000000000003,2010-02-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0 +3232,percolation,0.08431633357729519,2010-02-25,0.0,0.0,7.352001434291665e-06,0.0,0.0,0.0,0.0,0.0,6.927342238119208,0.0,0.0,0.0 +3233,runoff,0.04636371738267318,2010-02-25,0.0,0.0,2.7920675400580356e-06,0.0,0.0,0.0,0.0,0.0,5.474117603764888,0.0,0.0,0.0 +3234,storm_outflow,0.031000000000000003,2010-02-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0 +3235,baseflow,0.029112968488753412,2010-02-25,0.0,0.0,2.747202890803156e-06,0.0,0.0,0.0,0.0,0.0,9.673800860792598,0.0,0.0,0.0 +3236,catchment_outflow,0.1064766858714266,2010-02-25,0.0,0.0,7.539270430861192e-06,0.0,0.0,0.0,0.0,0.0,6.563387854427391,0.0,0.0,0.0 +3237,reservoir_outflow,0.015500000000000002,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3238,gw1_gw2,0.0,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3239,gw2_gw1,0.022648965367038976,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3240,urban_drainage,0.04,2010-02-26,0.0,0.0,9.756097560975609e-07,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 +3241,percolation,0.08854015961989636,2010-02-26,0.0,0.0,7.716971093368223e-06,0.0,0.0,0.0,0.0,0.0,6.858528920498261,0.0,0.0,0.0 +3242,runoff,0.06540154934028437,2010-02-26,0.0,0.0,3.940352991254406e-06,0.0,0.0,0.0,0.0,0.0,5.681097297286526,0.0,0.0,0.0 +3243,storm_outflow,0.04,2010-02-26,0.0,0.0,9.756097560975609e-07,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 +3244,baseflow,0.029261536466581264,2010-02-26,0.0,0.0,2.759627311309569e-06,0.0,0.0,0.0,0.0,0.0,9.652504591263847,0.0,0.0,0.0 +3245,catchment_outflow,0.13466308580686565,2010-02-26,0.0,0.0,7.675590058661535e-06,0.0,0.0,0.0,0.0,0.0,6.52209467282067,0.0,0.0,0.0 +3246,reservoir_outflow,0.0205,2010-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3247,gw1_gw2,0.0,2010-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3248,gw2_gw1,0.022497972264592294,2010-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3249,urban_drainage,0.04,2010-02-27,0.0,0.0,5.058717253839205e-07,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3250,percolation,0.09734349164668038,2010-02-27,0.0,0.0,8.437185195778491e-06,0.0,0.0,0.0,0.0,0.0,6.7847527447160205,0.0,0.0,0.0 +3251,runoff,0.10808068335323479,2010-02-27,0.0,0.0,6.067460807262289e-06,0.0,0.0,0.0,0.0,0.0,5.944799116175617,0.0,0.0,0.0 +3252,storm_outflow,0.04,2010-02-27,0.0,0.0,5.058717253839205e-07,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3253,baseflow,0.02943174135453152,2010-02-27,0.0,0.0,2.7738212060207414e-06,0.0,0.0,0.0,0.0,0.0,9.628792353636069,0.0,0.0,0.0 +3254,catchment_outflow,0.17751242470776632,2010-02-27,0.0,0.0,9.347153738666951e-06,0.0,0.0,0.0,0.0,0.0,6.554237427523458,0.0,0.0,0.0 +3255,reservoir_outflow,0.04,2010-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3256,gw1_gw2,0.0,2010-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3257,gw2_gw1,0.02234798578282824,2010-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3258,urban_drainage,0.026000000000000002,2010-02-28,0.0,0.0,1.5185185185185184e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3259,percolation,0.09539662181374678,2010-02-28,0.0,0.0,8.268441491862921e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3260,runoff,0.0588366289491805,2010-02-28,0.0,0.0,4.85396864580983e-06,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3261,storm_outflow,0.026000000000000002,2010-02-28,0.0,0.0,1.5185185185185184e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3262,baseflow,0.029596653555679555,2010-02-28,0.0,0.0,2.787557756735347e-06,0.0,0.0,0.0,0.0,0.0,9.605874917169388,0.0,0.0,0.0 +3263,catchment_outflow,0.11443328250486007,2010-02-28,0.0,0.0,9.160044921063695e-06,0.0,0.0,0.0,0.0,0.0,6.896799293967715,0.0,0.0,0.0 +3264,reservoir_outflow,0.0,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3265,gw1_gw2,0.0,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3266,gw2_gw1,0.022198999210943173,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3267,urban_drainage,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3268,percolation,0.09348868937747182,2010-03-01,0.0,0.0,8.103072662025663e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3269,runoff,0.045426210888959984,2010-03-01,0.0,0.0,3.883174916647865e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3270,storm_outflow,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3271,baseflow,0.02975638364523403,2010-03-01,0.0,0.0,2.800846543998573e-06,0.0,0.0,0.0,0.0,0.0,9.583716393336248,0.0,0.0,0.0 +3272,catchment_outflow,0.07518259453419401,2010-03-01,0.0,0.0,6.684021460646437e-06,0.0,0.0,0.0,0.0,0.0,7.3856529760994984,0.0,0.0,0.0 +3273,reservoir_outflow,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3274,gw1_gw2,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3275,gw2_gw1,0.022051005882869925,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3276,urban_drainage,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3277,percolation,0.09161891558992234,2010-03-02,0.0,0.0,7.941011208785147e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3278,runoff,0.03634096871116799,2010-03-02,0.0,0.0,3.106539933318292e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3279,storm_outflow,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3280,baseflow,0.029911039975095755,2010-03-02,0.0,0.0,2.8136969556605395e-06,0.0,0.0,0.0,0.0,0.0,9.56228300164578,0.0,0.0,0.0 +3281,catchment_outflow,0.06625200868626374,2010-03-02,0.0,0.0,5.920236888978832e-06,0.0,0.0,0.0,0.0,0.0,7.578554796023903,0.0,0.0,0.0 +3282,reservoir_outflow,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3283,gw1_gw2,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3284,gw2_gw1,0.02190399917698418,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3285,urban_drainage,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3286,percolation,0.08978653727812391,2010-03-03,0.0,0.0,7.782190984609444e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3287,runoff,0.02907277496893439,2010-03-03,0.0,0.0,2.4852319466546336e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3288,storm_outflow,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3289,baseflow,0.030060728718353327,2010-03-03,0.0,0.0,2.826118190732912e-06,0.0,0.0,0.0,0.0,0.0,9.541542916941623,0.0,0.0,0.0 +3290,catchment_outflow,0.05913350368728772,2010-03-03,0.0,0.0,5.311350137387546e-06,0.0,0.0,0.0,0.0,0.0,7.773715808549429,0.0,0.0,0.0 +3291,reservoir_outflow,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3292,gw1_gw2,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3293,gw2_gw1,0.02175797251580427,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3294,urban_drainage,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3295,percolation,0.08799080653256144,2010-03-04,0.0,0.0,7.6265471649172555e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3296,runoff,0.02325821997514751,2010-03-04,0.0,0.0,1.9881855573237067e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3297,storm_outflow,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3298,baseflow,0.030205553912888844,2010-03-04,0.0,0.0,2.838119263168373e-06,0.0,0.0,0.0,0.0,0.0,9.52146612978894,0.0,0.0,0.0 +3299,catchment_outflow,0.05346377388803636,2010-03-04,0.0,0.0,4.8263048204920795e-06,0.0,0.0,0.0,0.0,0.0,7.965958684537384,0.0,0.0,0.0 +3300,reservoir_outflow,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3301,gw1_gw2,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3302,gw2_gw1,0.02161291936569896,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3303,urban_drainage,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3304,percolation,0.08623099040191022,2010-03-05,0.0,0.0,7.47401622161891e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3305,runoff,0.018606575980118008,2010-03-05,0.0,0.0,1.5905484458589655e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3306,storm_outflow,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3307,baseflow,0.030345617504111397,2010-03-05,0.0,0.0,2.849709005564499e-06,0.0,0.0,0.0,0.0,0.0,9.502024318660116,0.0,0.0,0.0 +3308,catchment_outflow,0.048952193484229405,2010-03-05,0.0,0.0,4.440257451423464e-06,0.0,0.0,0.0,0.0,0.0,8.150319963417555,0.0,0.0,0.0 +3309,reservoir_outflow,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3310,gw1_gw2,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3311,gw2_gw1,0.02146883323659452,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3312,urban_drainage,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3313,percolation,0.08450637059387202,2010-03-06,0.0,0.0,7.324535897186531e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3314,runoff,0.014885260784094407,2010-03-06,0.0,0.0,1.2724387566871727e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3315,storm_outflow,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3316,baseflow,0.030481019386835798,2010-03-06,0.0,0.0,2.8608960727935544e-06,0.0,0.0,0.0,0.0,0.0,9.483190732771986,0.0,0.0,0.0 +3317,catchment_outflow,0.0453662801709302,2010-03-06,0.0,0.0,4.133334829480727e-06,0.0,0.0,0.0,0.0,0.0,8.322531946792369,0.0,0.0,0.0 +3318,reservoir_outflow,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3319,gw1_gw2,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3320,gw2_gw1,0.02132570768168396,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3321,urban_drainage,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3322,percolation,0.08281624318199457,2010-03-07,0.0,0.0,7.1780451792428005e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3323,runoff,0.011908208627275525,2010-03-07,0.0,0.0,1.0179510053497379e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3324,storm_outflow,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3325,baseflow,0.030611857446323696,2010-03-07,0.0,0.0,2.8716889455596774e-06,0.0,0.0,0.0,0.0,0.0,9.464940084553216,0.0,0.0,0.0 +3326,catchment_outflow,0.04252006607359922,2010-03-07,0.0,0.0,3.8896399509094155e-06,0.0,0.0,0.0,0.0,0.0,8.479370477606388,0.0,0.0,0.0 +3327,reservoir_outflow,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3328,gw1_gw2,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3329,gw2_gw1,0.02118353629713923,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3330,urban_drainage,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3331,percolation,0.08115991831835467,2010-03-08,0.0,0.0,7.034484275657944e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3332,runoff,0.00952656690182042,2010-03-08,0.0,0.0,8.143608042797905e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3333,storm_outflow,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3334,baseflow,0.03073822759850377,2010-03-08,0.0,0.0,2.882095933884923e-06,0.0,0.0,0.0,0.0,0.0,9.447248450830843,0.0,0.0,0.0 +3335,catchment_outflow,0.04026479450032419,2010-03-08,0.0,0.0,3.6964567381647137e-06,0.0,0.0,0.0,0.0,0.0,8.61881637443018,0.0,0.0,0.0 +3336,reservoir_outflow,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3337,gw1_gw2,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3338,gw2_gw1,0.021042312721824885,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3339,urban_drainage,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3340,percolation,0.07953671995198758,2010-03-09,0.0,0.0,6.893794590144785e-06,0.0,0.0,0.0,0.0,0.0,6.7847527447160205,0.0,0.0,0.0 +3341,runoff,0.007621253521456335,2010-03-09,0.0,0.0,6.514886434238322e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3342,storm_outflow,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3343,baseflow,0.03086022382938748,2010-03-09,0.0,0.0,2.8921251805255726e-06,0.0,0.0,0.0,0.0,0.0,9.430093181922118,0.0,0.0,0.0 +3344,catchment_outflow,0.03848147735084382,2010-03-09,0.0,0.0,3.5436138239494046e-06,0.0,0.0,0.0,0.0,0.0,8.74003201417344,0.0,0.0,0.0 +3345,reservoir_outflow,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3346,gw1_gw2,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3347,gw2_gw1,0.020902030637012816,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3348,urban_drainage,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3349,percolation,0.07794598555294784,2010-03-10,0.0,0.0,6.7559186983418894e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3350,runoff,0.006097002817165069,2010-03-10,0.0,0.0,5.211909147390658e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3351,storm_outflow,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3352,baseflow,0.03097793823369638,2010-03-10,0.0,0.0,2.901784664320113e-06,0.0,0.0,0.0,0.0,0.0,9.413452817903572,0.0,0.0,0.0 +3353,catchment_outflow,0.037074941050861454,2010-03-10,0.0,0.0,3.422975579059179e-06,0.0,0.0,0.0,0.0,0.0,8.843196962806452,0.0,0.0,0.0 +3354,reservoir_outflow,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3355,gw1_gw2,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3356,gw2_gw1,0.0207626837660996,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3357,urban_drainage,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3358,percolation,0.07638706584188887,2010-03-11,0.0,0.0,6.62080032437505e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3359,runoff,0.004877602253732055,2010-03-11,0.0,0.0,4.169527317912527e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3360,storm_outflow,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3361,baseflow,0.031091461052716856,2010-03-11,0.0,0.0,2.9110822034702497e-06,0.0,0.0,0.0,0.0,0.0,9.397307011404749,0.0,0.0,0.0 +3362,catchment_outflow,0.03596906330644891,2010-03-11,0.0,0.0,3.3280349352615023e-06,0.0,0.0,0.0,0.0,0.0,8.929265661433812,0.0,0.0,0.0 +3363,reservoir_outflow,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3364,gw1_gw2,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3365,gw2_gw1,0.02062426587432551,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3366,urban_drainage,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3367,percolation,0.0748593245250511,2010-03-12,0.0,0.0,6.48838431788755e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3368,runoff,0.003902081802985644,2010-03-12,0.0,0.0,3.3356218543300215e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3369,storm_outflow,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3370,baseflow,0.031200880711397698,2010-03-12,0.0,0.0,2.9200254587562935e-06,0.0,0.0,0.0,0.0,0.0,9.381636456341065,0.0,0.0,0.0 +3371,catchment_outflow,0.03510296251438334,2010-03-12,0.0,0.0,3.2535876441892955e-06,0.0,0.0,0.0,0.0,0.0,8.999706886594288,0.0,0.0,0.0 +3372,reservoir_outflow,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3373,gw1_gw2,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3374,gw2_gw1,0.0204867707684965,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3375,urban_drainage,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3376,percolation,0.07336213803455008,2010-03-13,0.0,0.0,6.3586166315298e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3377,runoff,0.003121665442388515,2010-03-13,0.0,0.0,2.668497483464017e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3378,storm_outflow,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3379,baseflow,0.03130628385470558,2010-03-13,0.0,0.0,2.9286219366882276e-06,0.0,0.0,0.0,0.0,0.0,9.366422822059517,0.0,0.0,0.0 +3380,catchment_outflow,0.0344279492970941,2010-03-13,0.0,0.0,3.195471685034629e-06,0.0,0.0,0.0,0.0,0.0,9.05626796713541,0.0,0.0,0.0 +3381,reservoir_outflow,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3382,gw1_gw2,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3383,gw2_gw1,0.02035019229670656,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3384,urban_drainage,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3385,percolation,0.07189489527385907,2010-03-14,0.0,0.0,6.231444298899204e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3386,runoff,0.0024973323539108122,2010-03-14,0.0,0.0,2.1347979867712138e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3387,storm_outflow,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3388,baseflow,0.03140775538325346,2010-03-14,0.0,0.0,2.9368789925937547e-06,0.0,0.0,0.0,0.0,0.0,9.351648692423591,0.0,0.0,0.0 +3389,catchment_outflow,0.033905087737164274,2010-03-14,0.0,0.0,3.150358791270876e-06,0.0,0.0,0.0,0.0,0.0,9.100786619756072,0.0,0.0,0.0 +3390,reservoir_outflow,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3391,gw1_gw2,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3392,gw2_gw1,0.02021452434806168,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3393,urban_drainage,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3394,percolation,0.0704569973683819,2010-03-15,0.0,0.0,6.10681541292122e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3395,runoff,0.0019978658831286498,2010-03-15,0.0,0.0,1.707838389416971e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3396,storm_outflow,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3397,baseflow,0.03150537848821629,2010-03-15,0.0,0.0,2.944803833644574e-06,0.0,0.0,0.0,0.0,0.0,9.337297509410492,0.0,0.0,0.0 +3398,catchment_outflow,0.033503244371344935,2010-03-15,0.0,0.0,3.115587672586271e-06,0.0,0.0,0.0,0.0,0.0,9.135056536776629,0.0,0.0,0.0 +3399,reservoir_outflow,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3400,gw1_gw2,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3401,gw2_gw1,0.020079760852408236,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3402,urban_drainage,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3403,percolation,0.06904785742101426,2010-03-16,0.0,0.0,5.984679104662794e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3404,runoff,0.0015982927065029198,2010-03-16,0.0,0.0,1.3662707115335769e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3405,storm_outflow,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3406,baseflow,0.03159923468554828,2010-03-16,0.0,0.0,2.9524035218221194e-06,0.0,0.0,0.0,0.0,0.0,9.32335352083551,0.0,0.0,0.0 +3407,catchment_outflow,0.0331975273920512,2010-03-16,0.0,0.0,3.089030592975477e-06,0.0,0.0,0.0,0.0,0.0,9.160742120792076,0.0,0.0,0.0 +3408,reservoir_outflow,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3409,gw1_gw2,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3410,gw2_gw1,0.019945895780058898,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3411,urban_drainage,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3412,percolation,0.06766690027259398,2010-03-17,0.0,0.0,5.864985522569539e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3413,runoff,0.001278634165202336,2010-03-17,0.0,0.0,1.0930165692268616e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3414,storm_outflow,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3415,baseflow,0.031689403849515886,2010-03-17,0.0,0.0,2.9596849768239872e-06,0.0,0.0,0.0,0.0,0.0,9.309801731855403,0.0,0.0,0.0 +3416,catchment_outflow,0.032968038014718225,2010-03-17,0.0,0.0,3.0689866337466734e-06,0.0,0.0,0.0,0.0,0.0,9.179332659250854,0.0,0.0,0.0 +3417,reservoir_outflow,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3418,gw1_gw2,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3419,gw2_gw1,0.019812923141525298,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3420,urban_drainage,0.0009999999999999983,2010-03-18,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0 +3421,percolation,0.0663135622671421,2010-03-18,0.0,0.0,5.747685812118148e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3422,runoff,0.0010229073321618687,2010-03-18,0.0,0.0,8.744132553814892e-08,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3423,storm_outflow,0.0009999999999999983,2010-03-18,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0 +3424,baseflow,0.03177596424555996,2010-03-18,0.0,0.0,2.9666549789122234e-06,0.0,0.0,0.0,0.0,0.0,9.296627859935871,0.0,0.0,0.0 +3425,catchment_outflow,0.03379887157772182,2010-03-18,0.0,0.0,2.1054096304450375e-05,0.0,0.0,0.0,0.0,0.0,9.16382800033901,0.0,0.0,0.0 +3426,reservoir_outflow,0.0004999999999999991,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3427,gw1_gw2,0.0,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3428,gw2_gw1,0.01968083698724854,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3429,urban_drainage,0.04,2010-03-19,0.0,0.0,5.063291139240505e-07,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0 +3430,percolation,0.06498729102179926,2010-03-19,0.0,0.0,5.632732095875785e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3431,runoff,0.000818325865729495,2010-03-19,0.0,0.0,6.995306043051914e-08,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3432,storm_outflow,0.04,2010-03-19,0.0,0.0,5.063291139240505e-07,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0 +3433,baseflow,0.031858992562500556,2010-03-19,0.0,0.0,2.9733201717046327e-06,0.0,0.0,0.0,0.0,0.0,9.283818292997825,0.0,0.0,0.0 +3434,catchment_outflow,0.07267731842823005,2010-03-19,0.0,0.0,3.549602346059202e-06,0.0,0.0,0.0,0.0,0.0,8.803043129899883,0.0,0.0,0.0 +3435,reservoir_outflow,0.03950000000000001,2010-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3436,gw1_gw2,0.0,2010-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3437,gw2_gw1,0.019549631407333658,2010-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3438,urban_drainage,0.04,2010-03-20,0.0,0.0,1.148977604673807e-06,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 +3439,percolation,0.0649895810719755,2010-03-20,0.0,0.0,5.648383354083159e-06,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 +3440,runoff,0.009563327175719914,2010-03-20,0.0,0.0,4.836487820940491e-07,0.0,0.0,0.0,0.0,0.0,8.506784736105574,0.0,0.0,0.0 +3441,storm_outflow,0.04,2010-03-20,0.0,0.0,1.148977604673807e-06,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 +3442,baseflow,0.03194181903377424,2010-03-20,0.0,0.0,2.9800078296605787e-06,0.0,0.0,0.0,0.0,0.0,9.271298476219844,0.0,0.0,0.0 +3443,catchment_outflow,0.08150514620949414,2010-03-20,0.0,0.0,4.6126342164284345e-06,0.0,0.0,0.0,0.0,0.0,8.822347616089036,0.0,0.0,0.0 +3444,reservoir_outflow,0.0065,2010-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3445,gw1_gw2,0.0,2010-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3446,gw2_gw1,0.019419300531284735,2010-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3447,urban_drainage,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3448,percolation,0.063689789450536,2010-03-21,0.0,0.0,5.535415687001496e-06,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 +3449,runoff,0.003995824209032826,2010-03-21,0.0,0.0,3.869190256752393e-07,0.0,0.0,0.0,0.0,0.0,8.310457695012751,0.0,0.0,0.0 +3450,storm_outflow,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3451,baseflow,0.03202118895981614,2010-03-21,0.0,0.0,2.986396349303931e-06,0.0,0.0,0.0,0.0,0.0,9.259121722050157,0.0,0.0,0.0 +3452,catchment_outflow,0.03601701316884897,2010-03-21,0.0,0.0,3.3733153749791705e-06,0.0,0.0,0.0,0.0,0.0,9.153874386084132,0.0,0.0,0.0 +3453,reservoir_outflow,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3454,gw1_gw2,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3455,gw2_gw1,0.019289838527742555,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3456,urban_drainage,0.005999999999999998,2010-03-22,0.0,0.0,2.3446932814021423e-06,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 +3457,percolation,0.06364812955356033,2010-03-22,0.0,0.0,5.5472898535300365e-06,0.0,0.0,0.0,0.0,0.0,6.86624136855303,0.0,0.0,0.0 +3458,runoff,0.011627062839045105,2010-03-22,0.0,0.0,7.181434881020896e-07,0.0,0.0,0.0,0.0,0.0,8.917040433109715,0.0,0.0,0.0 +3459,storm_outflow,0.005999999999999998,2010-03-22,0.0,0.0,2.3446932814021423e-06,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 +3460,baseflow,0.0321002563113005,2010-03-22,0.0,0.0,2.9927985830644965e-06,0.0,0.0,0.0,0.0,0.0,9.247260262341818,0.0,0.0,0.0 +3461,catchment_outflow,0.0497273191503456,2010-03-22,0.0,0.0,6.055635352568729e-06,0.0,0.0,0.0,0.0,0.0,9.165208963238095,0.0,0.0,0.0 +3462,reservoir_outflow,0.002999999999999999,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3463,gw1_gw2,0.0,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3464,gw2_gw1,0.019161239604224358,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3465,urban_drainage,0.014999999999999998,2010-03-23,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 +3466,percolation,0.06450984876123639,2010-03-23,0.0,0.0,5.64677505412596e-06,0.0,0.0,0.0,0.0,0.0,6.946555263769654,0.0,0.0,0.0 +3467,runoff,0.020448740776250543,2010-03-23,0.0,0.0,1.2759514493700836e-06,0.0,0.0,0.0,0.0,0.0,9.194124317177703,0.0,0.0,0.0 +3468,storm_outflow,0.014999999999999998,2010-03-23,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 +3469,baseflow,0.03218128029242534,2010-03-23,0.0,0.0,2.99943352424215e-06,0.0,0.0,0.0,0.0,0.0,9.235730412522804,0.0,0.0,0.0 +3470,catchment_outflow,0.06763002106867588,2010-03-23,0.0,0.0,5.275384973612233e-06,0.0,0.0,0.0,0.0,0.0,9.270674236528627,0.0,0.0,0.0 +3471,reservoir_outflow,0.0075,2010-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3472,gw1_gw2,0.0,2010-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3473,gw2_gw1,0.019033498006863072,2010-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3474,urban_drainage,0.04,2010-03-24,0.0,0.0,4.4444444444444454e-07,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 +3475,percolation,0.07165731431541995,2010-03-24,0.0,0.0,6.321374412495942e-06,0.0,0.0,0.0,0.0,0.0,7.246756798766779,0.0,0.0,0.0 +3476,runoff,0.06809827856257368,2010-03-24,0.0,0.0,3.645877357671075e-06,0.0,0.0,0.0,0.0,0.0,9.405991684624116,0.0,0.0,0.0 +3477,storm_outflow,0.04,2010-03-24,0.0,0.0,4.4444444444444454e-07,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 +3478,baseflow,0.03227997037748283,2010-03-24,0.0,0.0,3.007738376462784e-06,0.0,0.0,0.0,0.0,0.0,9.224692259006915,0.0,0.0,0.0 +3479,catchment_outflow,0.14037824894005652,2010-03-24,0.0,0.0,7.098060178578304e-06,0.0,0.0,0.0,0.0,0.0,9.375824157494247,0.0,0.0,0.0 +3480,reservoir_outflow,0.045,2010-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3481,gw1_gw2,0.0,2010-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3482,gw2_gw1,0.018906608020150453,2010-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3483,urban_drainage,0.04,2010-03-25,0.0,0.0,6.913580246913581e-07,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0 +3484,percolation,0.07720502770962177,2010-03-25,0.0,0.0,6.8317448228969566e-06,0.0,0.0,0.0,0.0,0.0,7.452259090315155,0.0,0.0,0.0 +3485,runoff,0.07855773286222835,2010-03-25,0.0,0.0,5.039361548306635e-06,0.0,0.0,0.0,0.0,0.0,9.43892167303136,0.0,0.0,0.0 +3486,storm_outflow,0.04,2010-03-25,0.0,0.0,6.913580246913581e-07,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0 +3487,baseflow,0.03239228302081318,2010-03-25,0.0,0.0,3.01729839257887e-06,0.0,0.0,0.0,0.0,0.0,9.214131043561373,0.0,0.0,0.0 +3488,catchment_outflow,0.15095001588304152,2010-03-25,0.0,0.0,8.748017965576863e-06,0.0,0.0,0.0,0.0,0.0,9.392252596624871,0.0,0.0,0.0 +3489,reservoir_outflow,0.02,2010-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3490,gw1_gw2,0.0,2010-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3491,gw2_gw1,0.018780563966682706,2010-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3492,urban_drainage,0.04,2010-03-26,0.0,0.0,1.3557800224466893e-06,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 +3493,percolation,0.07858512120397364,2010-03-26,0.0,0.0,6.961352241700918e-06,0.0,0.0,0.0,0.0,0.0,7.5292512834021394,0.0,0.0,0.0 +3494,runoff,0.06325843418540796,2010-03-26,0.0,0.0,4.91896362285164e-06,0.0,0.0,0.0,0.0,0.0,9.450463709775919,0.0,0.0,0.0 +3495,storm_outflow,0.04,2010-03-26,0.0,0.0,1.3557800224466893e-06,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 +3496,baseflow,0.03250776511627108,2010-03-26,0.0,0.0,3.0271585272016747e-06,0.0,0.0,0.0,0.0,0.0,9.203948362616323,0.0,0.0,0.0 +3497,catchment_outflow,0.13576619930167902,2010-03-26,0.0,0.0,9.301902172500003e-06,0.0,0.0,0.0,0.0,0.0,9.389632938416955,0.0,0.0,0.0 +3498,reservoir_outflow,0.0025,2010-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3499,gw1_gw2,0.0,2010-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3500,gw2_gw1,0.01865536020690506,2010-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3501,urban_drainage,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3502,percolation,0.07701341877989416,2010-03-27,0.0,0.0,6.822125196866899e-06,0.0,0.0,0.0,0.0,0.0,7.52925128340214,0.0,0.0,0.0 +3503,runoff,0.04359232714784714,2010-03-27,0.0,0.0,3.935170898281312e-06,0.0,0.0,0.0,0.0,0.0,9.452164546530089,0.0,0.0,0.0 +3504,storm_outflow,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3505,baseflow,0.03261902925043013,2010-03-27,0.0,0.0,3.0366459438758378e-06,0.0,0.0,0.0,0.0,0.0,9.194063477132701,0.0,0.0,0.0 +3506,catchment_outflow,0.07621135639827727,2010-03-27,0.0,0.0,6.97181684215715e-06,0.0,0.0,0.0,0.0,0.0,9.341695362800523,0.0,0.0,0.0 +3507,reservoir_outflow,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3508,gw1_gw2,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3509,gw2_gw1,0.018530991138859143,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3510,urban_drainage,0.008,2010-03-28,0.0,0.0,2.508417508417508e-06,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 +3511,percolation,0.07850216830670914,2010-03-28,0.0,0.0,6.963585144071331e-06,0.0,0.0,0.0,0.0,0.0,7.605903911571309,0.0,0.0,0.0 +3512,runoff,0.054643646014228636,2010-03-28,0.0,0.0,4.074478222430955e-06,0.0,0.0,0.0,0.0,0.0,9.460322508457606,0.0,0.0,0.0 +3513,storm_outflow,0.008,2010-03-28,0.0,0.0,2.508417508417508e-06,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 +3514,baseflow,0.03273373709807083,2010-03-28,0.0,0.0,3.0464632918763266e-06,0.0,0.0,0.0,0.0,0.0,9.184541651902352,0.0,0.0,0.0 +3515,catchment_outflow,0.09537738311229947,2010-03-28,0.0,0.0,9.629359022724789e-06,0.0,0.0,0.0,0.0,0.0,9.363310250782986,0.0,0.0,0.0 +3516,reservoir_outflow,0.004,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3517,gw1_gw2,0.0,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3518,gw2_gw1,0.018407451197933435,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3519,urban_drainage,0.002999999999999999,2010-03-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 +3520,percolation,0.07935892977919175,2010-03-29,0.0,0.0,7.0467882924714275e-06,0.0,0.0,0.0,0.0,0.0,7.664221006374286,0.0,0.0,0.0 +3521,runoff,0.05181686457760202,2010-03-29,0.0,0.0,4.00116541554984e-06,0.0,0.0,0.0,0.0,0.0,9.467941673818121,0.0,0.0,0.0 +3522,storm_outflow,0.002999999999999999,2010-03-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 +3523,baseflow,0.03285030007977363,2010-03-29,0.0,0.0,3.0564641043778145e-06,0.0,0.0,0.0,0.0,0.0,9.175359770834499,0.0,0.0,0.0 +3524,catchment_outflow,0.08766716465737565,2010-03-29,0.0,0.0,8.057629519927654e-06,0.0,0.0,0.0,0.0,0.0,9.356959254306746,0.0,0.0,0.0 +3525,reservoir_outflow,0.0014999999999999996,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3526,gw1_gw2,0.0,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3527,gw2_gw1,0.018284734856613662,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3528,urban_drainage,0.03799999999999999,2010-03-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 +3529,percolation,0.08368521748989659,2010-03-30,0.0,0.0,7.436135946094395e-06,0.0,0.0,0.0,0.0,0.0,7.794515217553473,0.0,0.0,0.0 +3530,runoff,0.0751019668423255,2010-03-30,0.0,0.0,4.968543730681189e-06,0.0,0.0,0.0,0.0,0.0,9.470188260912154,0.0,0.0,0.0 +3531,storm_outflow,0.03799999999999999,2010-03-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 +3532,baseflow,0.03297738737329894,2010-03-30,0.0,0.0,3.0674132839821064e-06,0.0,0.0,0.0,0.0,0.0,9.166599504636558,0.0,0.0,0.0 +3533,catchment_outflow,0.14607935421562443,2010-03-30,0.0,0.0,9.035957014663294e-06,0.0,0.0,0.0,0.0,0.0,9.389898215850566,0.0,0.0,0.0 +3534,reservoir_outflow,0.018999999999999996,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3535,gw1_gw2,0.0,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3536,gw2_gw1,0.018162836624236435,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3537,urban_drainage,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3538,percolation,0.08201151314009866,2010-03-31,0.0,0.0,7.287413227172507e-06,0.0,0.0,0.0,0.0,0.0,7.794515217553472,0.0,0.0,0.0 +3539,runoff,0.046124028992496006,2010-03-31,0.0,0.0,3.974834984544951e-06,0.0,0.0,0.0,0.0,0.0,9.48365808731425,0.0,0.0,0.0 +3540,storm_outflow,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3541,baseflow,0.03309997268771594,2010-03-31,0.0,0.0,3.077963283840082e-06,0.0,0.0,0.0,0.0,0.0,9.1581005015104,0.0,0.0,0.0 +3542,catchment_outflow,0.07922400168021194,2010-03-31,0.0,0.0,7.052798268385033e-06,0.0,0.0,0.0,0.0,0.0,9.347639368619841,0.0,0.0,0.0 +3543,reservoir_outflow,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3544,gw1_gw2,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3545,gw2_gw1,0.01804175104674144,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3546,urban_drainage,0.022,2010-04-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 +3547,percolation,0.08477443516048627,2010-04-01,0.0,0.0,7.535300969326054e-06,0.0,0.0,0.0,0.0,0.0,7.883244075867958,0.0,0.0,0.0 +3548,runoff,0.06491272725696522,2010-04-01,0.0,0.0,4.491988009959282e-06,0.0,0.0,0.0,0.0,0.0,9.47435628306906,0.0,0.0,0.0 +3549,storm_outflow,0.022,2010-04-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 +3550,baseflow,0.03322915884389787,2010-04-01,0.0,0.0,3.089106628053797e-06,0.0,0.0,0.0,0.0,0.0,9.149969447553973,0.0,0.0,0.0 +3551,catchment_outflow,0.1201418861008631,2010-04-01,0.0,0.0,9.581094638013079e-06,0.0,0.0,0.0,0.0,0.0,9.374290576129628,0.0,0.0,0.0 +3552,reservoir_outflow,0.011,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3553,gw1_gw2,0.0,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3554,gw2_gw1,0.017921472706429853,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3555,urban_drainage,0.018999999999999996,2010-04-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 +3556,percolation,0.08720410981062399,2010-04-02,0.0,0.0,7.749585284905053e-06,0.0,0.0,0.0,0.0,0.0,7.959711900583409,0.0,0.0,0.0 +3557,runoff,0.06779525798969797,2010-04-02,0.0,0.0,4.810224857852495e-06,0.0,0.0,0.0,0.0,0.0,9.476979962842474,0.0,0.0,0.0 +3558,storm_outflow,0.018999999999999996,2010-04-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 +3559,baseflow,0.033364096221314685,2010-04-02,0.0,0.0,3.1007578246959247e-06,0.0,0.0,0.0,0.0,0.0,9.142191974043193,0.0,0.0,0.0 +3560,catchment_outflow,0.12015935421101266,2010-04-02,0.0,0.0,8.91098268254842e-06,0.0,0.0,0.0,0.0,0.0,9.374107494184402,0.0,0.0,0.0 +3561,reservoir_outflow,0.009499999999999998,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3562,gw1_gw2,0.0,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3563,gw2_gw1,0.01780199622172063,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3564,urban_drainage,0.04,2010-04-03,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3565,percolation,0.09329046379873362,2010-04-03,0.0,0.0,8.266122179855687e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3566,runoff,0.09623346911719759,2010-04-03,0.0,0.0,6.0866085551111105e-06,0.0,0.0,0.0,0.0,0.0,9.47046065124151,0.0,0.0,0.0 +3567,storm_outflow,0.04,2010-04-03,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3568,baseflow,0.033513912140258235,2010-04-03,0.0,0.0,3.113671235583824e-06,0.0,0.0,0.0,0.0,0.0,9.134859717093654,0.0,0.0,0.0 +3569,catchment_outflow,0.1697473812574558,2010-04-03,0.0,0.0,9.941020531435676e-06,0.0,0.0,0.0,0.0,0.0,9.390122711829079,0.0,0.0,0.0 +3570,reservoir_outflow,0.027000000000000003,2010-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3571,gw1_gw2,0.0,2010-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3572,gw2_gw1,0.01768331624690891,2010-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3573,urban_drainage,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3574,percolation,0.09142465452275897,2010-04-04,0.0,0.0,8.100799736258572e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3575,runoff,0.05579782811853785,2010-04-04,0.0,0.0,4.869286844088887e-06,0.0,0.0,0.0,0.0,0.0,9.493098392121938,0.0,0.0,0.0 +3576,storm_outflow,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3577,baseflow,0.033658688996214485,2010-04-04,0.0,0.0,3.1261390568355106e-06,0.0,0.0,0.0,0.0,0.0,9.127754803106262,0.0,0.0,0.0 +3578,catchment_outflow,0.08945651711475233,2010-04-04,0.0,0.0,7.995425900924398e-06,0.0,0.0,0.0,0.0,0.0,9.355635112351441,0.0,0.0,0.0 +3579,reservoir_outflow,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3580,gw1_gw2,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3581,gw2_gw1,0.017565427471929598,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3582,urban_drainage,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3583,percolation,0.0895961614323038,2010-04-05,0.0,0.0,7.9387837415334e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3584,runoff,0.04400528283863398,2010-04-05,0.0,0.0,3.89542947527111e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3585,storm_outflow,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3586,baseflow,0.03379853267730471,2010-04-05,0.0,0.0,3.138170668547256e-06,0.0,0.0,0.0,0.0,0.0,9.120867882359953,0.0,0.0,0.0 +3587,catchment_outflow,0.07780381551593869,2010-04-05,0.0,0.0,7.033600143818366e-06,0.0,0.0,0.0,0.0,0.0,9.332098101075228,0.0,0.0,0.0 +3588,reservoir_outflow,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3589,gw1_gw2,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3590,gw2_gw1,0.01744832462211665,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3591,urban_drainage,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3592,percolation,0.08780423820365771,2010-04-06,0.0,0.0,7.780008066702734e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3593,runoff,0.03657240274948664,2010-04-06,0.0,0.0,3.1163435802168877e-06,0.0,0.0,0.0,0.0,0.0,9.490805719507193,0.0,0.0,0.0 +3594,storm_outflow,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3595,baseflow,0.0339335469411206,2010-04-06,0.0,0.0,3.1497752620426445e-06,0.0,0.0,0.0,0.0,0.0,9.114190103939347,0.0,0.0,0.0 +3596,catchment_outflow,0.07050594969060725,2010-04-06,0.0,0.0,6.266118842259532e-06,0.0,0.0,0.0,0.0,0.0,9.309545787179337,0.0,0.0,0.0 +3597,reservoir_outflow,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3598,gw1_gw2,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3599,gw2_gw1,0.017332002457968978,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3600,urban_drainage,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3601,percolation,0.08604815343958455,2010-04-07,0.0,0.0,7.624407905368678e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3602,runoff,0.028482271453186558,2010-04-07,0.0,0.0,2.4930748641735107e-06,0.0,0.0,0.0,0.0,0.0,9.49155920801063,0.0,0.0,0.0 +3603,storm_outflow,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3604,baseflow,0.03406383345736676,2010-04-07,0.0,0.0,3.1609618436509593e-06,0.0,0.0,0.0,0.0,0.0,9.107713082867459,0.0,0.0,0.0 +3605,catchment_outflow,0.06254610491055332,2010-04-07,0.0,0.0,5.65403670782447e-06,0.0,0.0,0.0,0.0,0.0,9.282509092118817,0.0,0.0,0.0 +3606,reservoir_outflow,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3607,gw1_gw2,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3608,gw2_gw1,0.01721645577491593,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3609,urban_drainage,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3610,percolation,0.08432719037079286,2010-04-08,0.0,0.0,7.471919747261305e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3611,runoff,0.022530704813380598,2010-04-08,0.0,0.0,1.9944598913388085e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3612,storm_outflow,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3613,baseflow,0.034189491849650325,2010-04-08,0.0,0.0,3.1717392384099846e-06,0.0,0.0,0.0,0.0,0.0,9.101428869805058,0.0,0.0,0.0 +3614,catchment_outflow,0.05672019666303092,2010-04-08,0.0,0.0,5.1661991297487935e-06,0.0,0.0,0.0,0.0,0.0,9.257501095613911,0.0,0.0,0.0 +3615,reservoir_outflow,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3616,gw1_gw2,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3617,gw2_gw1,0.017101679403083027,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3618,urban_drainage,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3619,percolation,0.082640646563377,2010-04-09,0.0,0.0,7.322481352316079e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3620,runoff,0.01802456385070448,2010-04-09,0.0,0.0,1.595567913071047e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3621,storm_outflow,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3622,baseflow,0.034310619736434636,2010-04-09,0.0,0.0,3.18211609369475e-06,0.0,0.0,0.0,0.0,0.0,9.095329923085828,0.0,0.0,0.0 +3623,catchment_outflow,0.052335183587139116,2010-04-09,0.0,0.0,4.777684006765797e-06,0.0,0.0,0.0,0.0,0.0,9.23274968995834,0.0,0.0,0.0 +3624,reservoir_outflow,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3625,gw1_gw2,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3626,gw2_gw1,0.016987668207062434,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3627,urban_drainage,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3628,percolation,0.08098783363210947,2010-04-10,0.0,0.0,7.176031725269757e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3629,runoff,0.014419651080563582,2010-04-10,0.0,0.0,1.2764543304568374e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3630,storm_outflow,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3631,baseflow,0.03442731277117383,2010-04-10,0.0,0.0,3.192100882773687e-06,0.0,0.0,0.0,0.0,0.0,9.08940908287991,0.0,0.0,0.0 +3632,catchment_outflow,0.04884696385173741,2010-04-10,0.0,0.0,4.468555213230524e-06,0.0,0.0,0.0,0.0,0.0,9.208943378804943,0.0,0.0,0.0 +3633,reservoir_outflow,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3634,gw1_gw2,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3635,gw2_gw1,0.016874417085682405,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3636,urban_drainage,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3637,percolation,0.07936807695946728,2010-04-11,0.0,0.0,7.032511090764362e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3638,runoff,0.011535720864450868,2010-04-11,0.0,0.0,1.02116346436547e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3639,storm_outflow,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3640,baseflow,0.03453966468164456,2010-04-11,0.0,0.0,3.201701908293664e-06,0.0,0.0,0.0,0.0,0.0,9.083659547299238,0.0,0.0,0.0 +3641,catchment_outflow,0.04607538554609543,2010-04-11,0.0,0.0,4.222865372659134e-06,0.0,0.0,0.0,0.0,0.0,9.186478762528456,0.0,0.0,0.0 +3642,reservoir_outflow,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3643,gw1_gw2,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3644,gw2_gw1,0.016761920971777755,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3645,urban_drainage,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3646,percolation,0.07778071542027792,2010-04-12,0.0,0.0,6.891860868949073e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3647,runoff,0.009228576691560695,2010-04-12,0.0,0.0,8.169307714923759e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3648,storm_outflow,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3649,baseflow,0.034647767308491145,2010-04-12,0.0,0.0,3.2109273056953025e-06,0.0,0.0,0.0,0.0,0.0,9.07807485027645,0.0,0.0,0.0 +3650,catchment_outflow,0.04387634400005184,2010-04-12,0.0,0.0,4.027858077187678e-06,0.0,0.0,0.0,0.0,0.0,9.165627422827981,0.0,0.0,0.0 +3651,reservoir_outflow,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3652,gw1_gw2,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3653,gw2_gw1,0.01665017483196607,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3654,urban_drainage,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3655,percolation,0.07622510111187238,2010-04-13,0.0,0.0,6.754023651570093e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3656,runoff,0.007382861353248555,2010-04-13,0.0,0.0,6.535446171939007e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3657,storm_outflow,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3658,baseflow,0.03475171064299959,2010-04-13,0.0,0.0,3.21978504655999e-06,0.0,0.0,0.0,0.0,0.0,9.072648841065728,0.0,0.0,0.0 +3659,catchment_outflow,0.04213457199624814,2010-04-13,0.0,0.0,3.87332966375389e-06,0.0,0.0,0.0,0.0,0.0,9.146537070120715,0.0,0.0,0.0 +3660,reservoir_outflow,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3661,gw1_gw2,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3662,gw2_gw1,0.01653917366641977,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3663,urban_drainage,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3664,percolation,0.07470059908963493,2010-04-14,0.0,0.0,6.618943178538691e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3665,runoff,0.005906289082598845,2010-04-14,0.0,0.0,5.228356937551205e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3666,storm_outflow,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3667,baseflow,0.03485158286411618,2010-04-14,0.0,0.0,3.2282829418899364e-06,0.0,0.0,0.0,0.0,0.0,9.067375665228457,0.0,0.0,0.0 +3668,catchment_outflow,0.04075787194671503,2010-04-14,0.0,0.0,3.751118635645057e-06,0.0,0.0,0.0,0.0,0.0,9.129247002122817,0.0,0.0,0.0 +3669,reservoir_outflow,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3670,gw1_gw2,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3671,gw2_gw1,0.0164289125086432,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3672,urban_drainage,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3673,percolation,0.07320658710784224,2010-04-15,0.0,0.0,6.486564314967917e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3674,runoff,0.004725031266079075,2010-04-15,0.0,0.0,4.182685550040963e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3675,storm_outflow,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3676,baseflow,0.034947470374725495,2010-04-15,0.0,0.0,3.236428645322632e-06,0.0,0.0,0.0,0.0,0.0,9.062249746979719,0.0,0.0,0.0 +3677,catchment_outflow,0.03967250164080457,2010-04-15,0.0,0.0,3.6546972003267285e-06,0.0,0.0,0.0,0.0,0.0,9.113711471363208,0.0,0.0,0.0 +3678,reservoir_outflow,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3679,gw1_gw2,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3680,gw2_gw1,0.016319386425252526,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3681,urban_drainage,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3682,percolation,0.0717424553656854,2010-04-16,0.0,0.0,6.356833028668559e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3683,runoff,0.0037800250128632606,2010-04-16,0.0,0.0,3.3461484400327717e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3684,storm_outflow,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3685,baseflow,0.03503945783720289,2010-04-16,0.0,0.0,3.2442296562809966e-06,0.0,0.0,0.0,0.0,0.0,9.057265772783351,0.0,0.0,0.0 +3686,catchment_outflow,0.03881948285006615,2010-04-16,0.0,0.0,3.578844500284274e-06,0.0,0.0,0.0,0.0,0.0,9.09982511932439,0.0,0.0,0.0 +3687,reservoir_outflow,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3688,gw1_gw2,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3689,gw2_gw1,0.01621059051575067,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3690,urban_drainage,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3691,percolation,0.07030760625837168,2010-04-17,0.0,0.0,6.229696368095188e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3692,runoff,0.0030240200102906083,2010-04-17,0.0,0.0,2.6769187520262167e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3693,storm_outflow,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3694,baseflow,0.035127628208255816,2010-04-17,0.0,0.0,3.2516933230605317e-06,0.0,0.0,0.0,0.0,0.0,9.05241867609373,0.0,0.0,0.0 +3695,catchment_outflow,0.03815164821854643,2010-04-17,0.0,0.0,3.5193851982631532e-06,0.0,0.0,0.0,0.0,0.0,9.087446341694278,0.0,0.0,0.0 +3696,reservoir_outflow,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3697,gw1_gw2,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3698,gw2_gw1,0.01610251991231237,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3699,urban_drainage,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3700,percolation,0.06890145413320424,2010-04-18,0.0,0.0,6.105102440733283e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3701,runoff,0.002419216008232487,2010-04-18,0.0,0.0,2.1415350016209734e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3702,storm_outflow,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3703,baseflow,0.03521206277306819,2010-04-18,0.0,0.0,3.2588268458547137e-06,0.0,0.0,0.0,0.0,0.0,9.04770362315182,0.0,0.0,0.0 +3704,catchment_outflow,0.037631278781300674,2010-04-18,0.0,0.0,3.472980346016811e-06,0.0,0.0,0.0,0.0,0.0,9.076416367105153,0.0,0.0,0.0 +3705,reservoir_outflow,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3706,gw1_gw2,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3707,gw2_gw1,0.01599516977956359,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3708,urban_drainage,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3709,percolation,0.06752342505054015,2010-04-19,0.0,0.0,5.983000391918618e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3710,runoff,0.0019353728065859895,2010-04-19,0.0,0.0,1.7132280012967788e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3711,storm_outflow,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3712,baseflow,0.035292841178761865,2010-04-19,0.0,0.0,3.2656372797198738e-06,0.0,0.0,0.0,0.0,0.0,9.043115999751494,0.0,0.0,0.0 +3713,catchment_outflow,0.037228213985347855,2010-04-19,0.0,0.0,3.4369600798495516e-06,0.0,0.0,0.0,0.0,0.0,9.066573385586514,0.0,0.0,0.0 +3714,reservoir_outflow,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3715,gw1_gw2,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3716,gw2_gw1,0.015888535314366868,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3717,urban_drainage,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3718,percolation,0.06617295654952936,2010-04-20,0.0,0.0,5.8633403840802456e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3719,runoff,0.0015482982452687916,2010-04-20,0.0,0.0,1.370582401037423e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3720,storm_outflow,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3721,baseflow,0.035370041467188786,2010-04-20,0.0,0.0,3.272131537480775e-06,0.0,0.0,0.0,0.0,0.0,9.038651398899635,0.0,0.0,0.0 +3722,catchment_outflow,0.03691833971245758,2010-04-20,0.0,0.0,3.409189777584517e-06,0.0,0.0,0.0,0.0,0.0,9.057762057793894,0.0,0.0,0.0 +3723,reservoir_outflow,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3724,gw1_gw2,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3725,gw2_gw1,0.015782611745604136,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3726,urban_drainage,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3727,percolation,0.06484949741853878,2010-04-21,0.0,0.0,5.7460735763986414e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3728,runoff,0.001238638596215033,2010-04-21,0.0,0.0,1.0964659208299381e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3729,storm_outflow,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3730,baseflow,0.03544374010706716,2010-04-21,0.0,0.0,3.27831639257807e-06,0.0,0.0,0.0,0.0,0.0,9.034305609300384,0.0,0.0,0.0 +3731,catchment_outflow,0.0366823787032822,2010-04-21,0.0,0.0,3.387962984661064e-06,0.0,0.0,0.0,0.0,0.0,9.049839223003232,0.0,0.0,0.0 +3732,reservoir_outflow,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3733,gw1_gw2,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3734,gw2_gw1,0.01567739433396689,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3735,urban_drainage,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3736,percolation,0.063552507470168,2010-04-22,0.0,0.0,5.631152104870668e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3737,runoff,0.0009909108769720267,2010-04-22,0.0,0.0,8.771727366639509e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3738,storm_outflow,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3739,baseflow,0.03551401202547491,2010-04-22,0.0,0.0,3.2841984818588013e-06,0.0,0.0,0.0,0.0,0.0,9.030074604600019,0.0,0.0,0.0 +3740,catchment_outflow,0.03650492290244694,2010-04-22,0.0,0.0,3.3719157555251964e-06,0.0,0.0,0.0,0.0,0.0,9.042676753361986,0.0,0.0,0.0 +3741,reservoir_outflow,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3742,gw1_gw2,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3743,gw2_gw1,0.015572878371740375,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3744,urban_drainage,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3745,percolation,0.06228145732076462,2010-04-23,0.0,0.0,5.518529062773254e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3746,runoff,0.0007927287015776213,2010-04-23,0.0,0.0,7.017381893311606e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3747,storm_outflow,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3748,baseflow,0.035580930638713135,2010-04-23,0.0,0.0,3.2897843083110878e-06,0.0,0.0,0.0,0.0,0.0,9.025954533334478,0.0,0.0,0.0 +3749,catchment_outflow,0.03637365934029076,2010-04-23,0.0,0.0,3.3599581272442037e-06,0.0,0.0,0.0,0.0,0.0,9.036162427746193,0.0,0.0,0.0 +3750,reservoir_outflow,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3751,gw1_gw2,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3752,gw2_gw1,0.01546905918259558,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3753,urban_drainage,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3754,percolation,0.061035828174349334,2010-04-24,0.0,0.0,5.40815848151779e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3755,runoff,0.0006341829612620972,2010-04-24,0.0,0.0,5.6139055146492864e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3756,storm_outflow,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3757,baseflow,0.03564456788255223,2010-04-24,0.0,0.0,3.2950802437441045e-06,0.0,0.0,0.0,0.0,0.0,9.02194170952654,0.0,0.0,0.0 +3758,catchment_outflow,0.03627875084381432,2010-04-24,0.0,0.0,3.3512192988905972e-06,0.0,0.0,0.0,0.0,0.0,9.030199536398973,0.0,0.0,0.0 +3759,reservoir_outflow,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3760,gw1_gw2,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3761,gw2_gw1,0.015365932121378024,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3762,urban_drainage,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3763,percolation,0.05981511161086234,2010-04-25,0.0,0.0,5.2999953118874336e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3764,runoff,0.0005073463690096777,2010-04-25,0.0,0.0,4.4911244117194283e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3765,storm_outflow,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3766,baseflow,0.035704994241873005,2010-04-25,0.0,0.0,3.3000925314144626e-06,0.0,0.0,0.0,0.0,0.0,9.018032603884206,0.0,0.0,0.0 +3767,catchment_outflow,0.03621234061088268,2010-04-25,0.0,0.0,3.3450037755316567e-06,0.0,0.0,0.0,0.0,0.0,9.024705748490996,0.0,0.0,0.0 +3768,reservoir_outflow,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3769,gw1_gw2,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3770,gw2_gw1,0.015263492573902228,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3771,urban_drainage,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3772,percolation,0.0586188093786451,2010-04-26,0.0,0.0,5.193995405649686e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3773,runoff,0.0004058770952077422,2010-04-26,0.0,0.0,3.592899529375543e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3774,storm_outflow,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3775,baseflow,0.03576227877971493,2010-04-26,0.0,0.0,3.304827288600051e-06,0.0,0.0,0.0,0.0,0.0,9.014223835555876,0.0,0.0,0.0 +3776,catchment_outflow,0.036168155874922676,2010-04-26,0.0,0.0,3.3407562838938063e-06,0.0,0.0,0.0,0.0,0.0,9.019611614818295,0.0,0.0,0.0 +3777,reservoir_outflow,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3778,gw1_gw2,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3779,gw2_gw1,0.015161735956742995,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3780,urban_drainage,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3781,percolation,0.0574464331910722,2010-04-27,0.0,0.0,5.090115497536692e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3782,runoff,0.0003247016761661938,2010-04-27,0.0,0.0,2.8743196235004342e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3783,storm_outflow,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3784,baseflow,0.03581648916574333,2010-04-27,0.0,0.0,3.3092905091223925e-06,0.0,0.0,0.0,0.0,0.0,9.010512164401666,0.0,0.0,0.0 +3785,catchment_outflow,0.036141190841909525,2010-04-27,0.0,0.0,3.338033705357397e-06,0.0,0.0,0.0,0.0,0.0,9.014858950280376,0.0,0.0,0.0 +3786,reservoir_outflow,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3787,gw1_gw2,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3788,gw2_gw1,0.01506065771703149,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3789,urban_drainage,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3790,percolation,0.05629750452725075,2010-04-28,0.0,0.0,4.988313187585958e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3791,runoff,0.000259761340932955,2010-04-28,0.0,0.0,2.299455698800347e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3792,storm_outflow,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3793,baseflow,0.035867691704147095,2010-04-28,0.0,0.0,3.313488065818551e-06,0.0,0.0,0.0,0.0,0.0,9.006894483743562,0.0,0.0,0.0 +3794,catchment_outflow,0.03612745304508005,2010-04-28,0.0,0.0,3.3364826228065545e-06,0.0,0.0,0.0,0.0,0.0,9.010399246390792,0.0,0.0,0.0 +3795,reservoir_outflow,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3796,gw1_gw2,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3797,gw2_gw1,0.014960253332251483,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3798,urban_drainage,0.021000000000000005,2010-04-29,0.0,0.0,2.6259259259259267e-05,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 +3799,percolation,0.05517155443670574,2010-04-29,0.0,0.0,4.88854692383424e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3800,runoff,0.000207809072746364,2010-04-29,0.0,0.0,1.8395645590402777e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3801,storm_outflow,0.021000000000000005,2010-04-29,0.0,0.0,2.6259259259259267e-05,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 +3802,baseflow,0.03591595136097849,2010-04-29,0.0,0.0,3.3174257129635913e-06,0.0,0.0,0.0,0.0,0.0,9.003367813560114,0.0,0.0,0.0 +3803,catchment_outflow,0.05712376043372486,2010-04-29,0.0,0.0,2.959508061781326e-05,0.0,0.0,0.0,0.0,0.0,10.436332006676317,0.0,0.0,0.0 +3804,reservoir_outflow,0.010500000000000002,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3805,gw1_gw2,0.0,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3806,gw2_gw1,0.014860518310035965,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3807,urban_drainage,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3808,percolation,0.054068123347971626,2010-04-30,0.0,0.0,4.790775985357555e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3809,runoff,0.00016624725819709119,2010-04-30,0.0,0.0,1.471651647232222e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3810,storm_outflow,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3811,baseflow,0.035961331790945975,2010-04-30,0.0,0.0,3.3211090886445758e-06,0.0,0.0,0.0,0.0,0.0,8.999929294094207,0.0,0.0,0.0 +3812,catchment_outflow,0.036127579049143065,2010-04-30,0.0,0.0,3.335825605116898e-06,0.0,0.0,0.0,0.0,0.0,9.00220438588135,0.0,0.0,0.0 +3813,reservoir_outflow,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3814,gw1_gw2,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3815,gw2_gw1,0.014761448187969074,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3816,urban_drainage,0.04,2010-05-01,0.0,0.0,4.4692737430167597e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3817,percolation,0.052986760881012195,2010-05-01,0.0,0.0,4.6949604656504036e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3818,runoff,0.00013299780655767296,2010-05-01,0.0,0.0,1.1773213177857777e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3819,storm_outflow,0.04,2010-05-01,0.0,0.0,4.4692737430167597e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3820,baseflow,0.03600389536367114,2010-05-01,0.0,0.0,3.3245437170870904e-06,0.0,0.0,0.0,0.0,0.0,8.99657617984492,0.0,0.0,0.0 +3821,catchment_outflow,0.07613689317022881,2010-05-01,0.0,0.0,3.783244304566624e-06,0.0,0.0,0.0,0.0,0.0,10.532197536870138,0.0,0.0,0.0 +3822,reservoir_outflow,0.0895,2010-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3823,gw1_gw2,0.0,2010-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3824,gw2_gw1,0.014663038533382711,2010-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3825,urban_drainage,0.04,2010-05-02,0.0,0.0,8.370729920322374e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3826,percolation,0.05192702566339194,2010-05-02,0.0,0.0,4.601061256337395e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3827,runoff,0.0013058363283198484,2010-05-02,0.0,0.0,9.418570542286223e-09,0.0,0.0,0.0,0.0,0.0,11.27097175248896,0.0,0.0,0.0 +3828,storm_outflow,0.04,2010-05-02,0.0,0.0,8.370729920322374e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3829,baseflow,0.03604370318942045,2010-05-02,0.0,0.0,3.3277350109352164e-06,0.0,0.0,0.0,0.0,0.0,8.993305833916851,0.0,0.0,0.0 +3830,catchment_outflow,0.07734953951774029,2010-05-02,0.0,0.0,4.17422657350974e-06,0.0,0.0,0.0,0.0,0.0,10.544140032691379,0.0,0.0,0.0 +3831,reservoir_outflow,0.0,2010-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3832,gw1_gw2,0.0,2010-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3833,gw2_gw1,0.014565284943159895,2010-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3834,urban_drainage,0.04,2010-05-03,0.0,0.0,1.6713843899483612e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3835,percolation,0.05088848515012411,2010-05-03,0.0,0.0,4.509040031210648e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3836,runoff,0.0012303364422077457,2010-05-03,0.0,0.0,7.534856433828974e-09,0.0,0.0,0.0,0.0,0.0,10.839319400350558,0.0,0.0,0.0 +3837,storm_outflow,0.04,2010-05-03,0.0,0.0,1.6713843899483612e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3838,baseflow,0.0360808151443222,2010-05-03,0.0,0.0,3.3306882734859054e-06,0.0,0.0,0.0,0.0,0.0,8.990115722702264,0.0,0.0,0.0 +3839,catchment_outflow,0.07731115158652996,2010-05-03,0.0,0.0,5.009607519868095e-06,0.0,0.0,0.0,0.0,0.0,10.534327610840599,0.0,0.0,0.0 +3840,reservoir_outflow,0.0,2010-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3841,gw1_gw2,0.0,2010-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3842,gw2_gw1,0.01446818304353883,2010-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3843,urban_drainage,0.004999999999999987,2010-05-04,0.0,0.0,2.044615243717725e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3844,percolation,0.04987071544712163,2010-05-04,0.0,0.0,4.4188592305864355e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3845,runoff,6.809487695752876e-05,2010-05-04,0.0,0.0,6.027885147063184e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516737,0.0,0.0,0.0 +3846,storm_outflow,0.004999999999999987,2010-05-04,0.0,0.0,2.044615243717725e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3847,baseflow,0.0361152898950792,2010-05-04,0.0,0.0,3.333408700878656e-06,0.0,0.0,0.0,0.0,0.0,8.987003410873452,0.0,0.0,0.0 +3848,catchment_outflow,0.041183384772036716,2010-05-04,0.0,0.0,5.384051829743444e-06,0.0,0.0,0.0,0.0,0.0,9.343671892468194,0.0,0.0,0.0 +3849,reservoir_outflow,0.0,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3850,gw1_gw2,0.0,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3851,gw2_gw1,0.014371728489915192,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3852,urban_drainage,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3853,percolation,0.04887330113817919,2010-05-05,0.0,0.0,4.3304820459747065e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3854,runoff,0.0013573655347520481,2010-05-05,0.0,0.0,4.822308117650544e-09,0.0,0.0,0.0,0.0,0.0,10.507632404454329,0.0,0.0,0.0 +3855,storm_outflow,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3856,baseflow,0.036147184923186956,2010-05-05,0.0,0.0,3.3359013842413964e-06,0.0,0.0,0.0,0.0,0.0,8.983966556664399,0.0,0.0,0.0 +3857,catchment_outflow,0.037504550457939004,2010-05-05,0.0,0.0,3.340723692359047e-06,0.0,0.0,0.0,0.0,0.0,9.039111105339586,0.0,0.0,0.0 +3858,reservoir_outflow,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3859,gw1_gw2,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3860,gw2_gw1,0.014275916966649227,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3861,urban_drainage,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3862,percolation,0.0478958351154156,2010-05-06,0.0,0.0,4.243872405055211e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3863,runoff,4.358072125281827e-05,2010-05-06,0.0,0.0,3.857846494120436e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3864,storm_outflow,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3865,baseflow,0.03617655654866753,2010-05-06,0.0,0.0,3.338171311793431e-06,0.0,0.0,0.0,0.0,0.0,8.98100290742237,0.0,0.0,0.0 +3866,catchment_outflow,0.03622013726992034,2010-05-06,0.0,0.0,3.342029158287551e-06,0.0,0.0,0.0,0.0,0.0,8.981620557587089,0.0,0.0,0.0 +3867,reservoir_outflow,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3868,gw1_gw2,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3869,gw2_gw1,0.01418074418687141,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3870,urban_drainage,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3871,percolation,0.046937918413107294,2010-05-07,0.0,0.0,4.158994956954108e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3872,runoff,0.002556330084753776,2010-05-07,0.0,0.0,3.0862771952963493e-09,0.0,0.0,0.0,0.0,0.0,10.732874576091987,0.0,0.0,0.0 +3873,storm_outflow,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3874,baseflow,0.036203459953328625,2010-05-07,0.0,0.0,3.3402233709063325e-06,0.0,0.0,0.0,0.0,0.0,8.978110295411641,0.0,0.0,0.0 +3875,catchment_outflow,0.0387597900380824,2010-05-07,0.0,0.0,3.343309648101629e-06,0.0,0.0,0.0,0.0,0.0,9.093842519914073,0.0,0.0,0.0 +3876,reservoir_outflow,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3877,gw1_gw2,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3878,gw2_gw1,0.014086205892292016,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3879,urban_drainage,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3880,percolation,0.04599916004484515,2010-05-08,0.0,0.0,4.075815057815026e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3881,runoff,0.0017835092209372875,2010-05-08,0.0,0.0,2.469021756237079e-09,0.0,0.0,0.0,0.0,0.0,10.828799237594923,0.0,0.0,0.0 +3882,storm_outflow,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3883,baseflow,0.03622794920355741,2010-05-08,0.0,0.0,3.3420623501236034e-06,0.0,0.0,0.0,0.0,0.0,8.975286633852791,0.0,0.0,0.0 +3884,catchment_outflow,0.038011458424494694,2010-05-08,0.0,0.0,3.3445313718798405e-06,0.0,0.0,0.0,0.0,0.0,9.062254010452248,0.0,0.0,0.0 +3885,reservoir_outflow,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3886,gw1_gw2,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3887,gw2_gw1,0.01399229785301035,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3888,urban_drainage,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3889,percolation,0.04507917684394825,2010-05-09,0.0,0.0,3.994298756658726e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3890,runoff,2.2313329281442958e-05,2010-05-09,0.0,0.0,1.975217404989663e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3891,storm_outflow,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3892,baseflow,0.036250077272658394,2010-05-09,0.0,0.0,3.3436929411399417e-06,0.0,0.0,0.0,0.0,0.0,8.972529913182292,0.0,0.0,0.0 +3893,catchment_outflow,0.03627239060193984,2010-05-09,0.0,0.0,3.3456681585449314e-06,0.0,0.0,0.0,0.0,0.0,8.972850906750065,0.0,0.0,0.0 +3894,reservoir_outflow,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3895,gw1_gw2,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3896,gw2_gw1,0.013899015867323429,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3897,urban_drainage,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3898,percolation,0.04417759330706929,2010-05-10,0.0,0.0,3.914412781525551e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3899,runoff,1.7850663425154365e-05,2010-05-10,0.0,0.0,1.5801739239917305e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3900,storm_outflow,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3901,baseflow,0.03626989606274442,2010-05-10,0.0,0.0,3.345119740740906e-06,0.0,0.0,0.0,0.0,0.0,8.969838197518213,0.0,0.0,0.0 +3902,catchment_outflow,0.03628774672616957,2010-05-10,0.0,0.0,3.346699914664898e-06,0.0,0.0,0.0,0.0,0.0,8.970096207811267,0.0,0.0,0.0 +3903,reservoir_outflow,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3904,gw1_gw2,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3905,gw2_gw1,0.013806355761541413,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3906,urban_drainage,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3907,percolation,0.043294041440927904,2010-05-11,0.0,0.0,3.83612452589504e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3908,runoff,1.428053074012349e-05,2010-05-11,0.0,0.0,1.2641391391933842e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3909,storm_outflow,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3910,baseflow,0.03628745642618988,2010-05-11,0.0,0.0,3.346347252703792e-06,0.0,0.0,0.0,0.0,0.0,8.967209621318899,0.0,0.0,0.0 +3911,catchment_outflow,0.03630173695693,2010-05-11,0.0,0.0,3.3476113918429853e-06,0.0,0.0,0.0,0.0,0.0,8.967416984046634,0.0,0.0,0.0 +3912,reservoir_outflow,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3913,gw1_gw2,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3914,gw2_gw1,0.01371431338979825,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3915,urban_drainage,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3916,percolation,0.04242816061210935,2010-05-12,0.0,0.0,3.7594020353771395e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3917,runoff,4.790682940781032e-05,2010-05-12,0.0,0.0,1.0113113113547073e-09,0.0,0.0,0.0,0.0,0.0,10.921075020280563,0.0,0.0,0.0 +3918,storm_outflow,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3919,baseflow,0.03630280818665468,2010-05-12,0.0,0.0,3.347379889660475e-06,0.0,0.0,0.0,0.0,0.0,8.964642386222444,0.0,0.0,0.0 +3920,catchment_outflow,0.03635071501606249,2010-05-12,0.0,0.0,3.3483912009718295e-06,0.0,0.0,0.0,0.0,0.0,8.96722078074388,0.0,0.0,0.0 +3921,reservoir_outflow,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3922,gw1_gw2,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3923,gw2_gw1,0.013622884633866052,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3924,urban_drainage,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3925,percolation,0.041579597399867156,2010-05-13,0.0,0.0,3.6842139946695964e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3926,runoff,9.139539673679035e-06,2010-05-13,0.0,0.0,8.09049049083766e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3927,storm_outflow,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3928,baseflow,0.03631600015968771,2010-05-13,0.0,0.0,3.3482219749229977e-06,0.0,0.0,0.0,0.0,0.0,8.962134758055619,0.0,0.0,0.0 +3929,catchment_outflow,0.03632513969936139,2010-05-13,0.0,0.0,3.3490310239720813e-06,0.0,0.0,0.0,0.0,0.0,8.962268661554969,0.0,0.0,0.0 +3930,reservoir_outflow,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3931,gw1_gw2,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3932,gw2_gw1,0.013532065402973359,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3933,urban_drainage,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3934,percolation,0.040748005451869816,2010-05-14,0.0,0.0,3.6105297147762045e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3935,runoff,7.311631738943228e-06,2010-05-14,0.0,0.0,6.472392392670129e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3936,storm_outflow,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3937,baseflow,0.036327080172918164,2010-05-14,0.0,0.0,3.3488777442726307e-06,0.0,0.0,0.0,0.0,0.0,8.959685064001773,0.0,0.0,0.0 +3938,catchment_outflow,0.036334391804657105,2010-05-14,0.0,0.0,3.3495249835118975e-06,0.0,0.0,0.0,0.0,0.0,8.959792652479873,0.0,0.0,0.0 +3939,reservoir_outflow,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3940,gw1_gw2,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3941,gw2_gw1,0.013441851633620418,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3942,urban_drainage,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3943,percolation,0.039933045342832416,2010-05-15,0.0,0.0,3.53831912048068e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3944,runoff,5.849305391154582e-06,2010-05-15,0.0,0.0,5.177913914136102e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3945,storm_outflow,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3946,baseflow,0.03633609508584294,2010-05-15,0.0,0.0,3.34935134771315e-06,0.0,0.0,0.0,0.0,0.0,8.95729168991789,0.0,0.0,0.0 +3947,catchment_outflow,0.036341944391234095,2010-05-15,0.0,0.0,3.3498691391045635e-06,0.0,0.0,0.0,0.0,0.0,8.957378128031262,0.0,0.0,0.0 +3948,reservoir_outflow,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3949,gw1_gw2,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3950,gw2_gw1,0.013352239289396195,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3951,urban_drainage,0.012,2010-05-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3952,percolation,0.03913438443597577,2010-05-16,0.0,0.0,3.4675527380710673e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3953,runoff,4.679444312923666e-06,2010-05-16,0.0,0.0,4.1423311313088826e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3954,storm_outflow,0.012,2010-05-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3955,baseflow,0.03634309080921828,2010-05-16,0.0,0.0,3.3496468511890454e-06,0.0,0.0,0.0,0.0,0.0,8.954953077791734,0.0,0.0,0.0 +3956,catchment_outflow,0.0483477702535312,2010-05-16,0.0,0.0,1.5350061084302178e-05,0.0,0.0,0.0,0.0,0.0,9.770182309388266,0.0,0.0,0.0 +3957,reservoir_outflow,0.006,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3958,gw1_gw2,0.0,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3959,gw2_gw1,0.013263224360800054,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3960,urban_drainage,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3961,percolation,0.038351696747256254,2010-05-17,0.0,0.0,3.398201683309646e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3962,runoff,3.7435554503389326e-06,2010-05-17,0.0,0.0,3.3138649050471057e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3963,storm_outflow,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3964,baseflow,0.03634811232406337,2010-05-17,0.0,0.0,3.349768238269347e-06,0.0,0.0,0.0,0.0,0.0,8.952667723330606,0.0,0.0,0.0 +3965,catchment_outflow,0.03635185587951371,2010-05-17,0.0,0.0,3.350099624759852e-06,0.0,0.0,0.0,0.0,0.0,8.95272350482116,0.0,0.0,0.0 +3966,reservoir_outflow,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3967,gw1_gw2,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3968,gw2_gw1,0.013174802865061432,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3969,urban_drainage,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3970,percolation,0.037584662812311126,2010-05-18,0.0,0.0,3.3302376496434524e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3971,runoff,2.994844360271146e-06,2010-05-18,0.0,0.0,2.651091924037685e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3972,storm_outflow,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3973,baseflow,0.03635120370028399,2010-05-18,0.0,0.0,3.349719411797782e-06,0.0,0.0,0.0,0.0,0.0,8.950434173673829,0.0,0.0,0.0 +3974,catchment_outflow,0.03635419854464426,2010-05-18,0.0,0.0,3.3499845209901856e-06,0.0,0.0,0.0,0.0,0.0,8.950478979989555,0.0,0.0,0.0 +3975,reservoir_outflow,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3976,gw1_gw2,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3977,gw2_gw1,0.013086970845960978,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3978,urban_drainage,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3979,percolation,0.03683296955606491,2010-05-19,0.0,0.0,3.2636328966505834e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3980,runoff,2.395875488216917e-06,2010-05-19,0.0,0.0,2.1208735392301482e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3981,storm_outflow,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3982,baseflow,0.03635240811492344,2010-05-19,0.0,0.0,3.3495041955099138e-06,0.0,0.0,0.0,0.0,0.0,8.948251025221598,0.0,0.0,0.0 +3983,catchment_outflow,0.03635480399041166,2010-05-19,0.0,0.0,3.3497162828638367e-06,0.0,0.0,0.0,0.0,0.0,8.948287013552342,0.0,0.0,0.0 +3984,reservoir_outflow,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3985,gw1_gw2,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3986,gw2_gw1,0.012999724373654509,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3987,urban_drainage,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3988,percolation,0.03609631016494361,2010-05-20,0.0,0.0,3.198360238717572e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3989,runoff,1.9167003905735334e-06,2010-05-20,0.0,0.0,1.696698831384118e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3990,storm_outflow,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3991,baseflow,0.036351767870048485,2010-05-20,0.0,0.0,3.3491263356179323e-06,0.0,0.0,0.0,0.0,0.0,8.946116921573354,0.0,0.0,0.0 +3992,catchment_outflow,0.03635368457043906,2010-05-20,0.0,0.0,3.349296005501071e-06,0.0,0.0,0.0,0.0,0.0,8.946145825642304,0.0,0.0,0.0 +3993,reservoir_outflow,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3994,gw1_gw2,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3995,gw2_gw1,0.012913059544496975,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3996,urban_drainage,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3997,percolation,0.03537438396164474,2010-05-21,0.0,0.0,3.1343930339432208e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3998,runoff,1.5333603124588268e-06,2010-05-21,0.0,0.0,1.3573590651072948e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3999,storm_outflow,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4000,baseflow,0.03634932441027748,2010-05-21,0.0,0.0,3.3485895023637463e-06,0.0,0.0,0.0,0.0,0.0,8.944030551569268,0.0,0.0,0.0 +4001,catchment_outflow,0.03635085777058994,2010-05-21,0.0,0.0,3.348725238270257e-06,0.0,0.0,0.0,0.0,0.0,8.944053764630338,0.0,0.0,0.0 +4002,reservoir_outflow,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4003,gw1_gw2,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4004,gw2_gw1,0.012826972480867305,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4005,urban_drainage,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4006,percolation,0.03466689628241184,2010-05-22,0.0,0.0,3.0717051732643566e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4007,runoff,1.2266882499670614e-06,2010-05-22,0.0,0.0,1.0858872520858359e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +4008,storm_outflow,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4009,baseflow,0.036345118339957815,2010-05-22,0.0,0.0,3.347897291540997e-06,0.0,0.0,0.0,0.0,0.0,8.941990647428879,0.0,0.0,0.0 +4010,catchment_outflow,0.03634634502820778,2010-05-22,0.0,0.0,3.3480058802662056e-06,0.0,0.0,0.0,0.0,0.0,8.942009289030144,0.0,0.0,0.0 +4011,reservoir_outflow,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4012,gw1_gw2,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4013,gw2_gw1,0.012741459330994687,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4014,urban_drainage,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4015,percolation,0.033973558356763606,2010-05-23,0.0,0.0,3.01027106979907e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4016,runoff,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4017,storm_outflow,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4018,baseflow,0.03633918943999983,2010-05-23,0.0,0.0,3.3470532259866423e-06,0.0,0.0,0.0,0.0,0.0,8.939995982981266,0.0,0.0,0.0 +4019,catchment_outflow,0.03633918943999983,2010-05-23,0.0,0.0,3.3470532259866423e-06,0.0,0.0,0.0,0.0,0.0,8.939995982981266,0.0,0.0,0.0 +4020,reservoir_outflow,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4021,gw1_gw2,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4022,gw2_gw1,0.012656516268788033,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4023,urban_drainage,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4024,percolation,0.033294087189628334,2010-05-24,0.0,0.0,2.950065648403088e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4025,runoff,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4026,storm_outflow,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4027,baseflow,0.0363315766843739,2010-05-24,0.0,0.0,3.346060757042683e-06,0.0,0.0,0.0,0.0,0.0,8.938045371981586,0.0,0.0,0.0 +4028,catchment_outflow,0.0363315766843739,2010-05-24,0.0,0.0,3.346060757042683e-06,0.0,0.0,0.0,0.0,0.0,8.938045371981586,0.0,0.0,0.0 +4029,reservoir_outflow,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4030,gw1_gw2,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4031,gw2_gw1,0.012572139493662782,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4032,urban_drainage,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4033,percolation,0.032628205445835765,2010-05-25,0.0,0.0,2.891064335435026e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4034,runoff,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4035,storm_outflow,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4036,baseflow,0.036322318256277554,2010-05-25,0.0,0.0,3.3449232659886644e-06,0.0,0.0,0.0,0.0,0.0,8.936137666509044,0.0,0.0,0.0 +4037,catchment_outflow,0.036322318256277554,2010-05-25,0.0,0.0,3.3449232659886644e-06,0.0,0.0,0.0,0.0,0.0,8.936137666509044,0.0,0.0,0.0 +4038,reservoir_outflow,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4039,gw1_gw2,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4040,gw2_gw1,0.0124883252303718,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4041,urban_drainage,0.028999999999999998,2010-05-26,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 +4042,percolation,0.03197564133691905,2010-05-26,0.0,0.0,2.8332430487263254e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4043,runoff,0.0,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4044,storm_outflow,0.028999999999999998,2010-05-26,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 +4045,baseflow,0.03631145156397916,2010-05-26,0.0,0.0,3.343644065445509e-06,0.0,0.0,0.0,0.0,0.0,8.934271755441777,0.0,0.0,0.0 +4046,catchment_outflow,0.06531145156397916,2010-05-26,0.0,0.0,1.334364406544551e-05,0.0,0.0,0.0,0.0,0.0,12.759881401361667,0.0,0.0,0.0 +4047,reservoir_outflow,0.014499999999999999,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4048,gw1_gw2,0.0,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4049,gw2_gw1,0.012405069728835906,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4050,urban_drainage,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4051,percolation,0.031336128510180666,2010-05-27,0.0,0.0,2.776578187751799e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4052,runoff,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4053,storm_outflow,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4054,baseflow,0.03629901325634466,2010-05-27,0.0,0.0,3.342226400751274e-06,0.0,0.0,0.0,0.0,0.0,8.932446563004328,0.0,0.0,0.0 +4055,catchment_outflow,0.03629901325634466,2010-05-27,0.0,0.0,3.342226400751274e-06,0.0,0.0,0.0,0.0,0.0,8.932446563004328,0.0,0.0,0.0 +4056,reservoir_outflow,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4057,gw1_gw2,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4058,gw2_gw1,0.012322369263976896,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4059,urban_drainage,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4060,percolation,0.030709405939977053,2010-05-28,0.0,0.0,2.721046623996763e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4061,runoff,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4062,storm_outflow,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4063,baseflow,0.036285039238053735,2010-05-28,0.0,0.0,3.3406734513093872e-06,0.0,0.0,0.0,0.0,0.0,8.930661047383717,0.0,0.0,0.0 +4064,catchment_outflow,0.036285039238053735,2010-05-28,0.0,0.0,3.3406734513093872e-06,0.0,0.0,0.0,0.0,0.0,8.930661047383717,0.0,0.0,0.0 +4065,reservoir_outflow,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4066,gw1_gw2,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4067,gw2_gw1,0.012240220135550395,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4068,urban_drainage,0.04,2010-05-29,0.0,0.0,2.666666666666667e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 +4069,percolation,0.030095217821177515,2010-05-29,0.0,0.0,2.6666256915168283e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4070,runoff,0.0,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4071,storm_outflow,0.04,2010-05-29,0.0,0.0,2.666666666666667e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 +4072,baseflow,0.03626956468451155,2010-05-29,0.0,0.0,3.338988331909906e-06,0.0,0.0,0.0,0.0,0.0,8.928914199410375,0.0,0.0,0.0 +4073,catchment_outflow,0.07626956468451154,2010-05-29,0.0,0.0,6.005654998576572e-06,0.0,0.0,0.0,0.0,0.0,12.99513835719116,0.0,0.0,0.0 +4074,reservoir_outflow,0.0225,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4075,gw1_gw2,0.0,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4076,gw2_gw1,0.012158618667979938,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4077,urban_drainage,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4078,percolation,0.029493313464753965,2010-05-30,0.0,0.0,2.613293177686492e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4079,runoff,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4080,storm_outflow,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4081,baseflow,0.03625262405646215,2010-05-30,0.0,0.0,3.3371740940243474e-06,0.0,0.0,0.0,0.0,0.0,8.927205041300377,0.0,0.0,0.0 +4082,catchment_outflow,0.03625262405646215,2010-05-30,0.0,0.0,3.3371740940243474e-06,0.0,0.0,0.0,0.0,0.0,8.927205041300377,0.0,0.0,0.0 +4083,reservoir_outflow,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4084,gw1_gw2,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4085,gw2_gw1,0.012077561210193544,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4086,urban_drainage,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4087,percolation,0.02890344719545889,2010-05-31,0.0,0.0,2.5610273141327626e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4088,runoff,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4089,storm_outflow,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4090,baseflow,0.03623425111430964,2010-05-31,0.0,0.0,3.3352337270746184e-06,0.0,0.0,0.0,0.0,0.0,8.925532625455702,0.0,0.0,0.0 +4091,catchment_outflow,0.03623425111430964,2010-05-31,0.0,0.0,3.3352337270746184e-06,0.0,0.0,0.0,0.0,0.0,8.925532625455702,0.0,0.0,0.0 +4092,reservoir_outflow,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4093,gw1_gw2,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4094,gw2_gw1,0.011997044135458879,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4095,urban_drainage,0.007000000000000001,2010-06-01,0.0,0.0,3.3333333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +4096,percolation,0.02832537825154971,2010-06-01,0.0,0.0,2.5098067678501066e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4097,runoff,0.0,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4098,storm_outflow,0.007000000000000001,2010-06-01,0.0,0.0,3.3333333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +4099,baseflow,0.03621447893215274,2010-06-01,0.0,0.0,3.333170159676558e-06,0.0,0.0,0.0,0.0,0.0,8.923896033319378,0.0,0.0,0.0 +4100,catchment_outflow,0.04321447893215274,2010-06-01,0.0,0.0,6.666503493009891e-06,0.0,0.0,0.0,0.0,0.0,10.040020279836162,0.0,0.0,0.0 +4101,reservoir_outflow,0.0035000000000000005,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4102,gw1_gw2,0.0,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4103,gw2_gw1,0.011917063841222486,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4104,urban_drainage,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4105,percolation,0.027758870686518715,2010-06-02,0.0,0.0,2.4596106324931046e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4106,runoff,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4107,storm_outflow,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4108,baseflow,0.036193339911538655,2010-06-02,0.0,0.0,3.3309862608585984e-06,0.0,0.0,0.0,0.0,0.0,8.922294374282647,0.0,0.0,0.0 +4109,catchment_outflow,0.036193339911538655,2010-06-02,0.0,0.0,3.3309862608585984e-06,0.0,0.0,0.0,0.0,0.0,8.922294374282647,0.0,0.0,0.0 +4110,reservoir_outflow,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4111,gw1_gw2,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4112,gw2_gw1,0.011837616748947434,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4113,urban_drainage,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4114,percolation,0.02720369327278834,2010-06-03,0.0,0.0,2.4104184198432427e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4115,runoff,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4116,storm_outflow,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4117,baseflow,0.03617086579494178,2010-06-03,0.0,0.0,3.328684841256061e-06,0.0,0.0,0.0,0.0,0.0,8.92072678464134,0.0,0.0,0.0 +4118,catchment_outflow,0.03617086579494178,2010-06-03,0.0,0.0,3.328684841256061e-06,0.0,0.0,0.0,0.0,0.0,8.92072678464134,0.0,0.0,0.0 +4119,reservoir_outflow,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4120,gw1_gw2,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4121,gw2_gw1,0.011758699303954678,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4122,urban_drainage,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4123,percolation,0.02665961940733257,2010-06-04,0.0,0.0,2.362210051446377e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4124,runoff,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4125,storm_outflow,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4126,baseflow,0.03614708767897276,2010-06-04,0.0,0.0,3.3262686542815366e-06,0.0,0.0,0.0,0.0,0.0,8.919192426598974,0.0,0.0,0.0 +4127,catchment_outflow,0.03614708767897276,2010-06-04,0.0,0.0,3.3262686542815366e-06,0.0,0.0,0.0,0.0,0.0,8.919192426598974,0.0,0.0,0.0 +4128,reservoir_outflow,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4129,gw1_gw2,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4130,gw2_gw1,0.011680307975261428,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4131,urban_drainage,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4132,percolation,0.02612642701918593,2010-06-05,0.0,0.0,2.3149658504174507e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4133,runoff,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4134,storm_outflow,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4135,baseflow,0.03612203602732329,2010-06-05,0.0,0.0,3.3237403972718768e-06,0.0,0.0,0.0,0.0,0.0,8.917690487314044,0.0,0.0,0.0 +4136,catchment_outflow,0.03612203602732329,2010-06-05,0.0,0.0,3.3237403972718768e-06,0.0,0.0,0.0,0.0,0.0,8.917690487314044,0.0,0.0,0.0 +4137,reservoir_outflow,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4138,gw1_gw2,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4139,gw2_gw1,0.011602439255426235,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4140,urban_drainage,0.002999999999999999,2010-06-06,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0 +4141,percolation,0.025603898478802213,2010-06-06,0.0,0.0,2.2686665334091017e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4142,runoff,0.0,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4143,storm_outflow,0.002999999999999999,2010-06-06,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0 +4144,baseflow,0.03609574068345199,2010-06-06,0.0,0.0,3.3211027126122197e-06,0.0,0.0,0.0,0.0,0.0,8.916220177989326,0.0,0.0,0.0 +4145,catchment_outflow,0.03909574068345199,2010-06-06,0.0,0.0,8.32110271261222e-06,0.0,0.0,0.0,0.0,0.0,9.480893952679471,0.0,0.0,0.0 +4146,reservoir_outflow,0.0014999999999999996,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4147,gw1_gw2,0.0,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4148,gw2_gw1,0.011525089660390364,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4149,urban_drainage,0.04,2010-06-07,0.0,0.0,3.669724770642202e-07,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0 +4150,percolation,0.02509182050922616,2010-06-07,0.0,0.0,2.2232932027409193e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +4151,runoff,0.0,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4152,storm_outflow,0.04,2010-06-07,0.0,0.0,3.669724770642202e-07,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0 +4153,baseflow,0.03606823088301643,2010-06-07,0.0,0.0,3.3183581888375417e-06,0.0,0.0,0.0,0.0,0.0,8.91478073300098,0.0,0.0,0.0 +4154,catchment_outflow,0.07606823088301642,2010-06-07,0.0,0.0,3.685330665901762e-06,0.0,0.0,0.0,0.0,0.0,12.883701360907516,0.0,0.0,0.0 +4155,reservoir_outflow,0.0545,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4156,gw1_gw2,0.0,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4157,gw2_gw1,0.011448255729320955,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4158,urban_drainage,0.04,2010-06-08,0.0,0.0,5.103211009174311e-07,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +4159,percolation,0.034240827834173294,2010-06-08,0.0,0.0,3.350741191413199e-06,0.0,0.0,0.0,0.0,0.0,10.197614841891316,0.0,0.0,0.0 +4160,runoff,0.0660330700646587,2010-06-08,0.0,0.0,3.906466380070494e-06,0.0,0.0,0.0,0.0,0.0,16.124422673124354,0.0,0.0,0.0 +4161,storm_outflow,0.04,2010-06-08,0.0,0.0,5.103211009174311e-07,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +4162,baseflow,0.03606366237539432,2010-06-08,0.0,0.0,3.3184391463439807e-06,0.0,0.0,0.0,0.0,0.0,8.91782571643923,0.0,0.0,0.0 +4163,catchment_outflow,0.14209673244005303,2010-06-08,0.0,0.0,7.735226627331906e-06,0.0,0.0,0.0,0.0,0.0,14.41491006840003,0.0,0.0,0.0 +4164,reservoir_outflow,0.029500000000000005,2010-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4165,gw1_gw2,0.0,2010-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4166,gw2_gw1,0.011371934024458775,2010-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4167,urban_drainage,0.04,2010-06-09,0.0,0.0,1.0613532110091743e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +4168,percolation,0.03502941724396841,2010-06-09,0.0,0.0,3.4634030833601106e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +4169,runoff,0.03581756709217575,2010-06-09,0.0,0.0,3.724095489973647e-06,0.0,0.0,0.0,0.0,0.0,15.72237046827733,0.0,0.0,0.0 +4170,storm_outflow,0.04,2010-06-09,0.0,0.0,1.0613532110091743e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +4171,baseflow,0.03606107676256576,2010-06-09,0.0,0.0,3.318801556186521e-06,0.0,0.0,0.0,0.0,0.0,8.921494142818284,0.0,0.0,0.0 +4172,catchment_outflow,0.1118786438547415,2010-06-09,0.0,0.0,8.104250257169343e-06,0.0,0.0,0.0,0.0,0.0,13.825809128280401,0.0,0.0,0.0 +4173,reservoir_outflow,0.0,2010-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4174,gw1_gw2,0.0,2010-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4175,gw2_gw1,0.011296121130962435,2010-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4176,urban_drainage,0.019999999999999987,2010-06-10,0.0,0.0,2.061353211009174e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +4177,percolation,0.03432882889908904,2010-06-10,0.0,0.0,3.394135021692908e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +4178,runoff,0.02451817727660774,2010-06-10,0.0,0.0,2.979276391978918e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242001,0.0,0.0,0.0 +4179,storm_outflow,0.019999999999999987,2010-06-10,0.0,0.0,2.061353211009174e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +4180,baseflow,0.03605674614290706,2010-06-10,0.0,0.0,3.3189898898502872e-06,0.0,0.0,0.0,0.0,0.0,8.925080900887956,0.0,0.0,0.0 +4181,catchment_outflow,0.08057492341951479,2010-06-10,0.0,0.0,8.35961949283838e-06,0.0,0.0,0.0,0.0,0.0,12.845327327573834,0.0,0.0,0.0 +4182,reservoir_outflow,0.0,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4183,gw1_gw2,0.0,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4184,gw2_gw1,0.011220813656756335,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4185,urban_drainage,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4186,percolation,0.03364225232110726,2010-06-11,0.0,0.0,3.3262523212590506e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +4187,runoff,0.01961454182128619,2010-06-11,0.0,0.0,2.3834211135831345e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242003,0.0,0.0,0.0 +4188,storm_outflow,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4189,baseflow,0.03605070990835256,2010-06-11,0.0,0.0,3.319008045928809e-06,0.0,0.0,0.0,0.0,0.0,8.928588144502898,0.0,0.0,0.0 +4190,catchment_outflow,0.05566525172963875,2010-06-11,0.0,0.0,5.7024291595119436e-06,0.0,0.0,0.0,0.0,0.0,11.275627444080062,0.0,0.0,0.0 +4191,reservoir_outflow,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4192,gw1_gw2,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4193,gw2_gw1,0.011146008232378081,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4194,urban_drainage,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4195,percolation,0.032969407274685114,2010-06-12,0.0,0.0,3.2597272748338696e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +4196,runoff,0.016421802581922,2010-06-12,0.0,0.0,1.9067368908665076e-06,0.0,0.0,0.0,0.0,0.0,15.611773758243832,0.0,0.0,0.0 +4197,storm_outflow,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4198,baseflow,0.03604300665176839,2010-06-12,0.0,0.0,3.318859844001072e-06,0.0,0.0,0.0,0.0,0.0,8.932017957435374,0.0,0.0,0.0 +4199,catchment_outflow,0.05246480923369039,2010-06-12,0.0,0.0,5.225596734867579e-06,0.0,0.0,0.0,0.0,0.0,11.022821920292154,0.0,0.0,0.0 +4200,reservoir_outflow,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4201,gw1_gw2,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4202,gw2_gw1,0.011071701510828725,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4203,urban_drainage,0.031000000000000003,2010-06-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +4204,percolation,0.037224173674521646,2010-06-13,0.0,0.0,3.8019238754927757e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4205,runoff,0.046176469444198454,2010-06-13,0.0,0.0,3.5500266665451503e-06,0.0,0.0,0.0,0.0,0.0,15.607504244268139,0.0,0.0,0.0 +4206,storm_outflow,0.031000000000000003,2010-06-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +4207,baseflow,0.03604595956932528,2010-06-13,0.0,0.0,3.320067504079801e-06,0.0,0.0,0.0,0.0,0.0,8.937526965165235,0.0,0.0,0.0 +4208,catchment_outflow,0.11322242901352372,2010-06-13,0.0,0.0,9.87009417062495e-06,0.0,0.0,0.0,0.0,0.0,13.578775037745483,0.0,0.0,0.0 +4209,reservoir_outflow,0.015500000000000002,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4210,gw1_gw2,0.0,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4211,gw2_gw1,0.01099789016742303,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4212,urban_drainage,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4213,percolation,0.036479690201031215,2010-06-14,0.0,0.0,3.7258853979829204e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4214,runoff,0.023507271405603703,2010-06-14,0.0,0.0,2.84002133323612e-06,0.0,0.0,0.0,0.0,0.0,15.407599884040101,0.0,0.0,0.0 +4215,storm_outflow,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4216,baseflow,0.03604704389590454,2010-06-14,0.0,0.0,3.321082048814559e-06,0.0,0.0,0.0,0.0,0.0,8.942911692518248,0.0,0.0,0.0 +4217,catchment_outflow,0.059554315301508245,2010-06-14,0.0,0.0,6.161103382050679e-06,0.0,0.0,0.0,0.0,0.0,11.494652554642757,0.0,0.0,0.0 +4218,reservoir_outflow,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4219,gw1_gw2,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4220,gw2_gw1,0.010924570899640253,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4221,urban_drainage,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4222,percolation,0.03575009639701059,2010-06-15,0.0,0.0,3.651367690023262e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4223,runoff,0.0191750789893623,2010-06-15,0.0,0.0,2.2720170665888966e-06,0.0,0.0,0.0,0.0,0.0,15.410656066993248,0.0,0.0,0.0 +4224,storm_outflow,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4225,baseflow,0.03604630152715731,2010-06-15,0.0,0.0,3.3219077629175805e-06,0.0,0.0,0.0,0.0,0.0,8.948175482806093,0.0,0.0,0.0 +4226,catchment_outflow,0.055221380516519605,2010-06-15,0.0,0.0,5.593924829506477e-06,0.0,0.0,0.0,0.0,0.0,11.192208038854533,0.0,0.0,0.0 +4227,reservoir_outflow,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4228,gw1_gw2,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4229,gw2_gw1,0.010851740426975988,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4230,urban_drainage,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4231,percolation,0.03503509446907038,2010-06-16,0.0,0.0,3.5783403362227967e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4232,runoff,0.01481411682136266,2010-06-16,0.0,0.0,1.817613653271117e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 +4233,storm_outflow,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4234,baseflow,0.036043773509512086,2010-06-16,0.0,0.0,3.3225488443508433e-06,0.0,0.0,0.0,0.0,0.0,8.953321567883162,0.0,0.0,0.0 +4235,catchment_outflow,0.05085789033087475,2010-06-16,0.0,0.0,5.14016249762196e-06,0.0,0.0,0.0,0.0,0.0,10.831509520056507,0.0,0.0,0.0 +4236,reservoir_outflow,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4237,gw1_gw2,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4238,gw2_gw1,0.01077939549079634,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4239,urban_drainage,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4240,percolation,0.034334392579688976,2010-06-17,0.0,0.0,3.5067735294983413e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4241,runoff,0.011851293457090128,2010-06-17,0.0,0.0,1.4540909226168935e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 +4242,storm_outflow,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4243,baseflow,0.036039500057187535,2010-06-17,0.0,0.0,3.3230094060637128e-06,0.0,0.0,0.0,0.0,0.0,8.958353072730011,0.0,0.0,0.0 +4244,catchment_outflow,0.04789079351427766,2010-06-17,0.0,0.0,4.777100328680606e-06,0.0,0.0,0.0,0.0,0.0,10.55274953330832,0.0,0.0,0.0 +4245,reservoir_outflow,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4246,gw1_gw2,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4247,gw2_gw1,0.010707532854191015,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4248,urban_drainage,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4249,percolation,0.033647704728095196,2010-06-18,0.0,0.0,3.4366380589083743e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4250,runoff,0.010783094219548641,2010-06-18,0.0,0.0,1.163272738093515e-06,0.0,0.0,0.0,0.0,0.0,15.596042694244481,0.0,0.0,0.0 +4251,storm_outflow,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4252,baseflow,0.0360335205688648,2010-06-18,0.0,0.0,3.3232934776958244e-06,0.0,0.0,0.0,0.0,0.0,8.963273019811483,0.0,0.0,0.0 +4253,catchment_outflow,0.046816614788413445,2010-06-18,0.0,0.0,4.486566215789339e-06,0.0,0.0,0.0,0.0,0.0,10.490973829859731,0.0,0.0,0.0 +4254,reservoir_outflow,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4255,gw1_gw2,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4256,gw2_gw1,0.01063614930182979,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4257,urban_drainage,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4258,percolation,0.03297475063353329,2010-06-19,0.0,0.0,3.3679052977302072e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4259,runoff,0.007584827812537683,2010-06-19,0.0,0.0,9.30618190474812e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4260,storm_outflow,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4261,baseflow,0.03602587364402647,2010-06-19,0.0,0.0,3.3234050072459096e-06,0.0,0.0,0.0,0.0,0.0,8.968084333222315,0.0,0.0,0.0 +4262,catchment_outflow,0.043610701456564156,2010-06-19,0.0,0.0,4.254023197720721e-06,0.0,0.0,0.0,0.0,0.0,10.086952223581163,0.0,0.0,0.0 +4263,reservoir_outflow,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4264,gw1_gw2,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4265,gw2_gw1,0.010565241639817558,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4266,urban_drainage,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4267,percolation,0.032315255620862626,2010-06-20,0.0,0.0,3.3005471917756033e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +4268,runoff,0.006067862250030146,2010-06-20,0.0,0.0,7.444945523798496e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4269,storm_outflow,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4270,baseflow,0.03601659709896856,2010-06-20,0.0,0.0,3.3233478627072337e-06,0.0,0.0,0.0,0.0,0.0,8.972789842632265,0.0,0.0,0.0 +4271,catchment_outflow,0.04208445934899871,2010-06-20,0.0,0.0,4.067842415087083e-06,0.0,0.0,0.0,0.0,0.0,9.899667342048987,0.0,0.0,0.0 +4272,reservoir_outflow,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4273,gw1_gw2,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4274,gw2_gw1,0.01049480669555205,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4275,urban_drainage,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4276,percolation,0.03166895050844537,2010-06-21,0.0,0.0,3.2345362479400905e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4277,runoff,0.004854289800024118,2010-06-21,0.0,0.0,5.955956419038797e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4278,storm_outflow,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4279,baseflow,0.03600572798249225,2010-06-21,0.0,0.0,3.3231258336703165e-06,0.0,0.0,0.0,0.0,0.0,8.97739228704198,0.0,0.0,0.0 +4280,catchment_outflow,0.04086001778251637,2010-06-21,0.0,0.0,3.918721475574196e-06,0.0,0.0,0.0,0.0,0.0,9.740567901002516,0.0,0.0,0.0 +4281,reservoir_outflow,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4282,gw1_gw2,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4283,gw2_gw1,0.010424841317581724,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4284,urban_drainage,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4285,percolation,0.031035571498276474,2010-06-22,0.0,0.0,3.16984552298129e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4286,runoff,0.0038834318400192934,2010-06-22,0.0,0.0,4.7647651352310377e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4287,storm_outflow,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4288,baseflow,0.035993302591281716,2010-06-22,0.0,0.0,3.3227426328935935e-06,0.0,0.0,0.0,0.0,0.0,8.981894318360139,0.0,0.0,0.0 +4289,catchment_outflow,0.039876734431301006,2010-06-22,0.0,0.0,3.799219146416697e-06,0.0,0.0,0.0,0.0,0.0,9.607051125953557,0.0,0.0,0.0 +4290,reservoir_outflow,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4291,gw1_gw2,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4292,gw2_gw1,0.010355342375464894,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4293,urban_drainage,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4294,percolation,0.03041486006831094,2010-06-23,0.0,0.0,3.106448612521663e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4295,runoff,0.0031067454720154347,2010-06-23,0.0,0.0,3.8118121081848304e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4296,storm_outflow,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4297,baseflow,0.03597935648497429,2010-06-23,0.0,0.0,3.3222018978426637e-06,0.0,0.0,0.0,0.0,0.0,8.986298504811735,0.0,0.0,0.0 +4298,catchment_outflow,0.03908610195698972,2010-06-23,0.0,0.0,3.7033831086611466e-06,0.0,0.0,0.0,0.0,0.0,9.496190407848582,0.0,0.0,0.0 +4299,reservoir_outflow,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4300,gw1_gw2,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4301,gw2_gw1,0.010286306759628161,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4302,urban_drainage,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4303,percolation,0.02980656286694472,2010-06-24,0.0,0.0,3.0443196402712296e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4304,runoff,0.0024853963776123476,2010-06-24,0.0,0.0,3.0494496865478643e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4305,storm_outflow,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4306,baseflow,0.035963924500929216,2010-06-24,0.0,0.0,3.3215071921987352e-06,0.0,0.0,0.0,0.0,0.0,8.990607334186741,0.0,0.0,0.0 +4307,catchment_outflow,0.03844932087854156,2010-06-24,0.0,0.0,3.6264521608535217e-06,0.0,0.0,0.0,0.0,0.0,9.40499801819191,0.0,0.0,0.0 +4308,reservoir_outflow,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4309,gw1_gw2,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4310,gw2_gw1,0.0102177313812307,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4311,urban_drainage,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4312,percolation,0.029210431609605823,2010-06-25,0.0,0.0,2.9834332474658047e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4313,runoff,0.001988317102089878,2010-06-25,0.0,0.0,2.4395597492382917e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4314,storm_outflow,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4315,baseflow,0.0359470407687009,2010-06-25,0.0,0.0,3.320662007336902e-06,0.0,0.0,0.0,0.0,0.0,8.99482321693782,0.0,0.0,0.0 +4316,catchment_outflow,0.037935357870790776,2010-06-25,0.0,0.0,3.564617982260731e-06,0.0,0.0,0.0,0.0,0.0,9.330606256979944,0.0,0.0,0.0 +4317,reservoir_outflow,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4318,gw1_gw2,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4319,gw2_gw1,0.010149613172022676,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4320,urban_drainage,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4321,percolation,0.028626222977413705,2010-06-26,0.0,0.0,2.923764582516488e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4322,runoff,0.0015906536816719026,2010-06-26,0.0,0.0,1.9516477993906335e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +4323,storm_outflow,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4324,baseflow,0.035928738724222684,2010-06-26,0.0,0.0,3.3196697637748503e-06,0.0,0.0,0.0,0.0,0.0,8.998948489135236,0.0,0.0,0.0 +4325,catchment_outflow,0.03751939240589459,2010-06-26,0.0,0.0,3.5148345437139135e-06,0.0,0.0,0.0,0.0,0.0,9.270378203219394,0.0,0.0,0.0 +4326,reservoir_outflow,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4327,gw1_gw2,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4328,gw2_gw1,0.010081949084209363,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4329,urban_drainage,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4330,percolation,0.028053698517865436,2010-06-27,0.0,0.0,2.8652892908661588e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4331,runoff,0.0012725229453375221,2010-06-27,0.0,0.0,1.5613182395125067e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +4332,storm_outflow,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4333,baseflow,0.03590905112370679,2010-06-27,0.0,0.0,3.318533812592579e-06,0.0,0.0,0.0,0.0,0.0,9.002985415286602,0.0,0.0,0.0 +4334,catchment_outflow,0.037181574069044314,2010-06-27,0.0,0.0,3.4746656365438297e-06,0.0,0.0,0.0,0.0,0.0,9.221963914324839,0.0,0.0,0.0 +4335,reservoir_outflow,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4336,gw1_gw2,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4337,gw2_gw1,0.010014736090314535,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4338,urban_drainage,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4339,percolation,0.02749262454750813,2010-06-28,0.0,0.0,2.8079835050488355e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4340,runoff,0.0010180183562700177,2010-06-28,0.0,0.0,1.2490545916100054e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4341,storm_outflow,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4342,baseflow,0.035888010057266294,2010-06-28,0.0,0.0,3.3172574368237194e-06,0.0,0.0,0.0,0.0,0.0,9.006936191028618,0.0,0.0,0.0 +4343,catchment_outflow,0.03690602841353631,2010-06-28,0.0,0.0,3.44216289598472e-06,0.0,0.0,0.0,0.0,0.0,9.183317951483783,0.0,0.0,0.0 +4344,reservoir_outflow,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4345,gw1_gw2,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4346,gw2_gw1,0.009947971183045468,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4347,urban_drainage,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4348,percolation,0.026942772056557963,2010-06-29,0.0,0.0,2.7518238349478586e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4349,runoff,0.0008144146850160141,2010-06-29,0.0,0.0,9.992436732880043e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4350,storm_outflow,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4351,baseflow,0.03586564696226452,2010-06-29,0.0,0.0,3.3158438528190295e-06,0.0,0.0,0.0,0.0,0.0,9.010802945697575,0.0,0.0,0.0 +4352,catchment_outflow,0.036680061647280535,2010-06-29,0.0,0.0,3.41576822014783e-06,0.0,0.0,0.0,0.0,0.0,9.152691776710222,0.0,0.0,0.0 +4353,reservoir_outflow,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4354,gw1_gw2,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4355,gw2_gw1,0.00988165137515864,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4356,urban_drainage,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4357,percolation,0.02640391661542681,2010-06-30,0.0,0.0,2.6967873582489017e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4358,runoff,0.0006515317480128113,2010-06-30,0.0,0.0,7.993949386304036e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4359,storm_outflow,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4360,baseflow,0.03584199263639743,2010-06-30,0.0,0.0,3.314296211582604e-06,0.0,0.0,0.0,0.0,0.0,9.01458774478495,0.0,0.0,0.0 +4361,catchment_outflow,0.03649352438441024,2010-06-30,0.0,0.0,3.3942357054456446e-06,0.0,0.0,0.0,0.0,0.0,9.12861145195794,0.0,0.0,0.0 +4362,reservoir_outflow,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4363,gw1_gw2,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4364,gw2_gw1,0.009815773699324204,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4365,urban_drainage,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4366,percolation,0.025875838283118263,2010-07-01,0.0,0.0,2.642851611083923e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4367,runoff,0.0005212253984102491,2010-07-01,0.0,0.0,6.395159509043228e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4368,storm_outflow,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4369,baseflow,0.03581707725051423,2010-07-01,0.0,0.0,3.3126176000813577e-06,0.0,0.0,0.0,0.0,0.0,9.018292592284055,0.0,0.0,0.0 +4370,catchment_outflow,0.03633830264892448,2010-07-01,0.0,0.0,3.37656919517179e-06,0.0,0.0,0.0,0.0,0.0,9.109848065362248,0.0,0.0,0.0 +4371,reservoir_outflow,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4372,gw1_gw2,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4373,gw2_gw1,0.00975033520799542,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4374,urban_drainage,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4375,percolation,0.0253583215174559,2010-07-02,0.0,0.0,2.589994578862245e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4376,runoff,0.0004169803187281993,2010-07-02,0.0,0.0,5.116127607234583e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4377,storm_outflow,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4378,baseflow,0.03579093036118158,2010-07-02,0.0,0.0,3.31081104252831e-06,0.0,0.0,0.0,0.0,0.0,9.021919432933354,0.0,0.0,0.0 +4379,catchment_outflow,0.036207910679909784,2010-07-02,0.0,0.0,3.3619723186006555e-06,0.0,0.0,0.0,0.0,0.0,9.095385811434191,0.0,0.0,0.0 +4380,reservoir_outflow,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4381,gw1_gw2,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4382,gw2_gw1,0.00968533297327543,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4383,urban_drainage,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4384,percolation,0.024851155087106787,2010-07-03,0.0,0.0,2.5381946872850003e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4385,runoff,0.0003335842549825594,2010-07-03,0.0,0.0,4.0929020857876665e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4386,storm_outflow,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4387,baseflow,0.03576358092299639,2010-07-03,0.0,0.0,3.308879501640201e-06,0.0,0.0,0.0,0.0,0.0,9.025470154361743,0.0,0.0,0.0 +4388,catchment_outflow,0.03609716517797895,2010-07-03,0.0,0.0,3.3498085224980777e-06,0.0,0.0,0.0,0.0,0.0,9.084390758828572,0.0,0.0,0.0 +4389,reservoir_outflow,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4390,gw1_gw2,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4391,gw2_gw1,0.009620764086787048,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4392,urban_drainage,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4393,percolation,0.02435413198536464,2010-07-04,0.0,0.0,2.4874307935393003e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4394,runoff,0.00026686740398604753,2010-07-04,0.0,0.0,3.2743216686301325e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4395,storm_outflow,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4396,baseflow,0.035735057300652316,2010-07-04,0.0,0.0,3.3068258798699492e-06,0.0,0.0,0.0,0.0,0.0,9.028946589140777,0.0,0.0,0.0 +4397,catchment_outflow,0.036001924704638366,2010-07-04,0.0,0.0,3.3395690965562507e-06,0.0,0.0,0.0,0.0,0.0,9.076181999477509,0.0,0.0,0.0 +4398,reservoir_outflow,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4399,gw1_gw2,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4400,gw2_gw1,0.00955662565954185,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4401,urban_drainage,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4402,percolation,0.02386704934565735,2010-07-05,0.0,0.0,2.437682177668514e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4403,runoff,0.00021349392318883802,2010-07-05,0.0,0.0,2.6194573349041062e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4404,storm_outflow,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4405,baseflow,0.03570538728076483,2010-07-05,0.0,0.0,3.304653020614446e-06,0.0,0.0,0.0,0.0,0.0,9.032350516748489,0.0,0.0,0.0 +4406,catchment_outflow,0.03591888120395367,2010-07-05,0.0,0.0,3.330847593963487e-06,0.0,0.0,0.0,0.0,0.0,9.070205978434187,0.0,0.0,0.0 +4407,reservoir_outflow,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4408,gw1_gw2,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4409,gw2_gw1,0.009492914821811561,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4410,urban_drainage,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4411,percolation,0.023389708358744203,2010-07-06,0.0,0.0,2.388928534115144e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4412,runoff,0.00017079513855107042,2010-07-06,0.0,0.0,2.0955658679232848e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4413,storm_outflow,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4414,baseflow,0.03567459808345978,2010-07-06,0.0,0.0,3.302363709398198e-06,0.0,0.0,0.0,0.0,0.0,9.0356836654493,0.0,0.0,0.0 +4415,catchment_outflow,0.03584539322201085,2010-07-06,0.0,0.0,3.323319368077431e-06,0.0,0.0,0.0,0.0,0.0,9.066014240221898,0.0,0.0,0.0 +4416,reservoir_outflow,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4417,gw1_gw2,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4418,gw2_gw1,0.009429628722999794,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4419,urban_drainage,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4420,percolation,0.022921914191569318,2010-07-07,0.0,0.0,2.341149963432841e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4421,runoff,0.00013663611084085633,2010-07-07,0.0,0.0,1.676452694338628e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4422,storm_outflow,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4423,baseflow,0.03564271637373005,2010-07-07,0.0,0.0,3.2999606750332845e-06,0.0,0.0,0.0,0.0,0.0,9.038947714094123,0.0,0.0,0.0 +4424,catchment_outflow,0.03577935248457091,2010-07-07,0.0,0.0,3.3167252019766707e-06,0.0,0.0,0.0,0.0,0.0,9.063244495791363,0.0,0.0,0.0 +4425,reservoir_outflow,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4426,gw1_gw2,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4427,gw2_gw1,0.009366764531513106,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4428,urban_drainage,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4429,percolation,0.02246347590773793,2010-07-08,0.0,0.0,2.294326964164184e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4430,runoff,0.00010930888867268507,2010-07-08,0.0,0.0,1.3411621554709024e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4431,storm_outflow,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4432,baseflow,0.035609768272565075,2010-07-08,0.0,0.0,3.297446590756112e-06,0.0,0.0,0.0,0.0,0.0,9.04214429384464,0.0,0.0,0.0 +4433,catchment_outflow,0.03571907716123776,2010-07-08,0.0,0.0,3.310858212310821e-06,0.0,0.0,0.0,0.0,0.0,9.06160473722483,0.0,0.0,0.0 +4434,reservoir_outflow,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4435,gw1_gw2,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4436,gw2_gw1,0.009304319434635921,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4437,urban_drainage,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4438,percolation,0.022014206389583166,2010-07-09,0.0,0.0,2.2484404248809e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4439,runoff,8.744711093814805e-05,2010-07-09,0.0,0.0,1.0729297243767218e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4440,storm_outflow,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4441,baseflow,0.03557577936785762,2010-07-09,0.0,0.0,3.2948240753414237e-06,0.0,0.0,0.0,0.0,0.0,9.04527498982545,0.0,0.0,0.0 +4442,catchment_outflow,0.035663226478795766,2010-07-09,0.0,0.0,3.305553372585191e-06,0.0,0.0,0.0,0.0,0.0,9.060860048932843,0.0,0.0,0.0 +4443,reservoir_outflow,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4444,gw1_gw2,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4445,gw2_gw1,0.00924229063840496,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4446,urban_drainage,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4447,percolation,0.021573922261791507,2010-07-10,0.0,0.0,2.2034716163832825e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4448,runoff,6.995768875051845e-05,2010-07-10,0.0,0.0,8.583437795013776e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4449,storm_outflow,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4450,baseflow,0.035540774725092455,2010-07-10,0.0,0.0,3.2920956941940278e-06,0.0,0.0,0.0,0.0,0.0,9.048341342707602,0.0,0.0,0.0 +4451,catchment_outflow,0.03561073241384297,2010-07-10,0.0,0.0,3.3006791319890416e-06,0.0,0.0,0.0,0.0,0.0,9.060821745356456,0.0,0.0,0.0 +4452,reservoir_outflow,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4453,gw1_gw2,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4454,gw2_gw1,0.009180675367482571,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4455,urban_drainage,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4456,percolation,0.021142443816555678,2010-07-11,0.0,0.0,2.159402184055617e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4457,runoff,5.5966151000414754e-05,2010-07-11,0.0,0.0,6.86675023601102e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4458,storm_outflow,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4459,baseflow,0.03550477889782112,2010-07-11,0.0,0.0,3.289263960418682e-06,0.0,0.0,0.0,0.0,0.0,9.05134485022683,0.0,0.0,0.0 +4460,catchment_outflow,0.035560745048821535,2010-07-11,0.0,0.0,3.2961307106546933e-06,0.0,0.0,0.0,0.0,0.0,9.061338480227354,0.0,0.0,0.0 +4461,reservoir_outflow,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4462,gw1_gw2,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4463,gw2_gw1,0.009119470865032753,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4464,urban_drainage,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4465,percolation,0.020719594940224562,2010-07-12,0.0,0.0,2.116214140374504e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4466,runoff,4.47729208003318e-05,2010-07-12,0.0,0.0,5.4934001888088156e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4467,storm_outflow,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4468,baseflow,0.03546781593792713,2010-07-12,0.0,0.0,3.2863313358685713e-06,0.0,0.0,0.0,0.0,0.0,9.05428696863962,0.0,0.0,0.0 +4469,catchment_outflow,0.03551258885872746,2010-07-12,0.0,0.0,3.29182473605738e-06,0.0,0.0,0.0,0.0,0.0,9.062289004670971,0.0,0.0,0.0 +4470,reservoir_outflow,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4471,gw1_gw2,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4472,gw2_gw1,0.009058674392599466,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4473,urban_drainage,0.005999999999999998,2010-07-13,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 +4474,percolation,0.020305203041420073,2010-07-13,0.0,0.0,2.073889857567014e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4475,runoff,3.581833664026544e-05,2010-07-13,0.0,0.0,4.3947201510470534e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4476,storm_outflow,0.005999999999999998,2010-07-13,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 +4477,baseflow,0.03542990940568586,2010-07-13,0.0,0.0,3.283300232172817e-06,0.0,0.0,0.0,0.0,0.0,9.05716911412007,0.0,0.0,0.0 +4478,catchment_outflow,0.041465727742326125,2010-07-13,0.0,0.0,3.328769495232387e-05,0.0,0.0,0.0,0.0,0.0,10.407301465395987,0.0,0.0,0.0 +4479,reservoir_outflow,0.002999999999999999,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4480,gw1_gw2,0.0,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4481,gw2_gw1,0.008998283229982107,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4482,urban_drainage,0.018,2010-07-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0 +4483,percolation,0.01989909898059167,2010-07-14,0.0,0.0,2.0324120604156737e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4484,runoff,2.865466931221235e-05,2010-07-14,0.0,0.0,3.5157761208376425e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4485,storm_outflow,0.018,2010-07-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0 +4486,baseflow,0.03539108237962313,2010-07-14,0.0,0.0,3.2801730117434243e-06,0.0,0.0,0.0,0.0,0.0,9.059992664100365,0.0,0.0,0.0 +4487,catchment_outflow,0.05341973704893534,2010-07-14,0.0,0.0,4.283688787864262e-06,0.0,0.0,0.0,0.0,0.0,12.279342830197773,0.0,0.0,0.0 +4488,reservoir_outflow,0.009,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4489,gw1_gw2,0.0,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4490,gw2_gw1,0.00893829467511562,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4491,urban_drainage,0.04,2010-07-15,0.0,0.0,8.51063829787234e-07,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0 +4492,percolation,0.019501117000979836,2010-07-15,0.0,0.0,1.9917638192073603e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4493,runoff,2.2923735449769885e-05,2010-07-15,0.0,0.0,2.812620896670114e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4494,storm_outflow,0.04,2010-07-15,0.0,0.0,8.51063829787234e-07,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0 +4495,baseflow,0.035351357466176514,2010-07-15,0.0,0.0,3.276951988762084e-06,0.0,0.0,0.0,0.0,0.0,9.06275895855748,0.0,0.0,0.0 +4496,catchment_outflow,0.07537428120162629,2010-07-15,0.0,0.0,4.130828439445988e-06,0.0,0.0,0.0,0.0,0.0,14.263051034093484,0.0,0.0,0.0 +4497,reservoir_outflow,0.0235,2010-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4498,gw1_gw2,0.0,2010-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4499,gw2_gw1,0.00887870604394827,2010-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4500,urban_drainage,0.022,2010-07-16,0.0,0.0,1.148936170212766e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4501,percolation,0.01911109466096024,2010-07-16,0.0,0.0,1.9519285428232126e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4502,runoff,1.8338988359815912e-05,2010-07-16,0.0,0.0,2.250096717336092e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4503,storm_outflow,0.022,2010-07-16,0.0,0.0,1.148936170212766e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4504,baseflow,0.03531075680916348,2010-07-16,0.0,0.0,3.2736394301472367e-06,0.0,0.0,0.0,0.0,0.0,9.065469301248664,0.0,0.0,0.0 +4505,catchment_outflow,0.057329095797523294,2010-07-16,0.0,0.0,4.424825697077339e-06,0.0,0.0,0.0,0.0,0.0,12.892002718971511,0.0,0.0,0.0 +4506,reservoir_outflow,0.0075,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4507,gw1_gw2,0.0,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4508,gw2_gw1,0.008819514670321915,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4509,urban_drainage,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4510,percolation,0.018728872767741035,2010-07-17,0.0,0.0,1.9128899719667484e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4511,runoff,1.4671190687852728e-05,2010-07-17,0.0,0.0,1.8000773738688734e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4512,storm_outflow,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4513,baseflow,0.035269302099059915,2010-07-17,0.0,0.0,3.2702375565017848e-06,0.0,0.0,0.0,0.0,0.0,9.068124960898054,0.0,0.0,0.0 +4514,catchment_outflow,0.03528397328974777,2010-07-17,0.0,0.0,3.2720376338756536e-06,0.0,0.0,0.0,0.0,0.0,9.070758303610628,0.0,0.0,0.0 +4515,reservoir_outflow,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4516,gw1_gw2,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4517,gw2_gw1,0.008760717905853,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4518,urban_drainage,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4519,percolation,0.018354295312386214,2010-07-18,0.0,0.0,1.8746321725274136e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4520,runoff,1.1736952550282183e-05,2010-07-18,0.0,0.0,1.4400618990950986e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4521,storm_outflow,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4522,baseflow,0.035227014582093236,2010-07-18,0.0,0.0,3.26674854304185e-06,0.0,0.0,0.0,0.0,0.0,9.070727172336674,0.0,0.0,0.0 +4523,catchment_outflow,0.035238751534643516,2010-07-18,0.0,0.0,3.268188604940945e-06,0.0,0.0,0.0,0.0,0.0,9.07283568327644,0.0,0.0,0.0 +4524,reservoir_outflow,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4525,gw1_gw2,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4526,gw2_gw1,0.008702313119814065,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4527,urban_drainage,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4528,percolation,0.01798720940613849,2010-07-19,0.0,0.0,1.8371395290768658e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4529,runoff,9.389562040225746e-06,2010-07-19,0.0,0.0,1.1520495192760787e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4530,storm_outflow,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4531,baseflow,0.035183915069153346,2010-07-19,0.0,0.0,3.2631745205069368e-06,0.0,0.0,0.0,0.0,0.0,9.073277137597977,0.0,0.0,0.0 +4532,catchment_outflow,0.03519330463119357,2010-07-19,0.0,0.0,3.264326570026213e-06,0.0,0.0,0.0,0.0,0.0,9.074965444281796,0.0,0.0,0.0 +4533,reservoir_outflow,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4534,gw1_gw2,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4535,gw2_gw1,0.008644297699015447,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4536,urban_drainage,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4537,percolation,0.017627465218015722,2010-07-20,0.0,0.0,1.8003967384953285e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4538,runoff,7.511649632180596e-06,2010-07-20,0.0,0.0,9.216396154208631e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4539,storm_outflow,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4540,baseflow,0.035140023944525506,2010-07-20,0.0,0.0,3.2595175760519084e-06,0.0,0.0,0.0,0.0,0.0,9.075776026970905,0.0,0.0,0.0 +4541,catchment_outflow,0.03514753559415769,2010-07-20,0.0,0.0,3.260439215667329e-06,0.0,0.0,0.0,0.0,0.0,9.077127897068278,0.0,0.0,0.0 +4542,reservoir_outflow,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4543,gw1_gw2,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4544,gw2_gw1,0.008586669047688567,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4545,urban_drainage,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4546,percolation,0.017274915913655407,2010-07-21,0.0,0.0,1.7643888037254218e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4547,runoff,6.009319705744478e-06,2010-07-21,0.0,0.0,7.373116923366906e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4548,storm_outflow,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4549,baseflow,0.03509536117444833,2010-07-21,0.0,0.0,3.2557797541210913e-06,0.0,0.0,0.0,0.0,0.0,9.078224980012441,0.0,0.0,0.0 +4550,catchment_outflow,0.03510137049415407,2010-07-21,0.0,0.0,3.256517065813428e-06,0.0,0.0,0.0,0.0,0.0,9.079307479208804,0.0,0.0,0.0 +4551,reservoir_outflow,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4552,gw1_gw2,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4553,gw2_gw1,0.00852942458737047,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4554,urban_drainage,0.04,2010-07-22,0.0,0.0,5.853658536585365e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4555,percolation,0.016929417595382298,2010-07-22,0.0,0.0,1.729101027650913e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4556,runoff,4.807455764595582e-06,2010-07-22,0.0,0.0,5.898493538693525e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4557,storm_outflow,0.04,2010-07-22,0.0,0.0,5.853658536585365e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4558,baseflow,0.035049946315500666,2010-07-22,0.0,0.0,3.2519630573049163e-06,0.0,0.0,0.0,0.0,0.0,9.080625106521428,0.0,0.0,0.0 +4559,catchment_outflow,0.07505475377126526,2010-07-22,0.0,0.0,9.10621144324415e-06,0.0,0.0,0.0,0.0,0.0,14.93375711870198,0.0,0.0,0.0 +4560,reservoir_outflow,0.0205,2010-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4561,gw1_gw2,0.0,2010-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4562,gw2_gw1,0.00847256175678801,2010-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4563,urban_drainage,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4564,percolation,0.016590829243474655,2010-07-23,0.0,0.0,1.694519007097895e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4565,runoff,3.845964611676466e-06,2010-07-23,0.0,0.0,4.718794830954819e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4566,storm_outflow,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4567,baseflow,0.035003798522820595,2010-07-23,0.0,0.0,3.248069447179399e-06,0.0,0.0,0.0,0.0,0.0,9.082977487475402,0.0,0.0,0.0 +4568,catchment_outflow,0.03500764448743227,2010-07-23,0.0,0.0,3.2485413266624946e-06,0.0,0.0,0.0,0.0,0.0,9.083671619680096,0.0,0.0,0.0 +4569,reservoir_outflow,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4570,gw1_gw2,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4571,gw2_gw1,0.008416078011742911,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4572,urban_drainage,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4573,percolation,0.01625901265860516,2010-07-24,0.0,0.0,1.660628626955937e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4574,runoff,3.0767716893411726e-06,2010-07-24,0.0,0.0,3.7750358647638555e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4575,storm_outflow,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4576,baseflow,0.034956936558160054,2010-07-24,0.0,0.0,3.24410084512884e-06,0.0,0.0,0.0,0.0,0.0,9.085283175932092,0.0,0.0,0.0 +4577,catchment_outflow,0.034960013329849396,2010-07-24,0.0,0.0,3.2444783487153166e-06,0.0,0.0,0.0,0.0,0.0,9.085839035350654,0.0,0.0,0.0 +4578,reservoir_outflow,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4579,gw1_gw2,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4580,gw2_gw1,0.008359970824998087,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4581,urban_drainage,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4582,percolation,0.015933832405433057,2010-07-25,0.0,0.0,1.6274160544168186e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4583,runoff,2.461417351472938e-06,2010-07-25,0.0,0.0,3.020028691811084e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4584,storm_outflow,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4585,baseflow,0.034909378797778244,2010-07-25,0.0,0.0,3.2400591331520606e-06,0.0,0.0,0.0,0.0,0.0,9.087543197897096,0.0,0.0,0.0 +4586,catchment_outflow,0.03491184021512972,2010-07-25,0.0,0.0,3.240361136021242e-06,0.0,0.0,0.0,0.0,0.0,9.087988339694057,0.0,0.0,0.0 +4587,reservoir_outflow,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4588,gw1_gw2,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4589,gw2_gw1,0.00830423768616484,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4590,urban_drainage,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4591,percolation,0.015615155757324393,2010-07-26,0.0,0.0,1.594867733328482e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4592,runoff,1.9691338811783503e-06,2010-07-26,0.0,0.0,2.416022953448867e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4593,storm_outflow,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4594,baseflow,0.034861143240177105,2010-07-26,0.0,0.0,3.235946154652502e-06,0.0,0.0,0.0,0.0,0.0,9.089758553159278,0.0,0.0,0.0 +4595,catchment_outflow,0.034863112374058286,2010-07-26,0.0,0.0,3.236187756947847e-06,0.0,0.0,0.0,0.0,0.0,9.090115039205804,0.0,0.0,0.0 +4596,reservoir_outflow,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4597,gw1_gw2,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4598,gw2_gw1,0.008248876101590419,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4599,urban_drainage,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4600,percolation,0.01530285264217791,2010-07-27,0.0,0.0,1.562970378661913e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4601,runoff,1.5753071049426807e-06,2010-07-27,0.0,0.0,1.9328183627590943e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +4602,storm_outflow,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4603,baseflow,0.03481224751368211,2010-07-27,0.0,0.0,3.231763715212525e-06,0.0,0.0,0.0,0.0,0.0,9.091930216095227,0.0,0.0,0.0 +4604,catchment_outflow,0.03481382282078705,2010-07-27,0.0,0.0,3.231956997048801e-06,0.0,0.0,0.0,0.0,0.0,9.092215710437374,0.0,0.0,0.0 +4605,reservoir_outflow,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4606,gw1_gw2,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4607,gw2_gw1,0.008193883594246111,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4608,urban_drainage,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4609,percolation,0.014996795589334349,2010-07-28,0.0,0.0,1.5317109710886744e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4610,runoff,1.260245683954144e-06,2010-07-28,0.0,0.0,1.5462546902072747e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +4611,storm_outflow,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4612,baseflow,0.034762708883871236,2010-07-28,0.0,0.0,3.227513583352215e-06,0.0,0.0,0.0,0.0,0.0,9.094059136444157,0.0,0.0,0.0 +4613,catchment_outflow,0.03476396912955519,2010-07-28,0.0,0.0,3.227668208821236e-06,0.0,0.0,0.0,0.0,0.0,9.094287782274636,0.0,0.0,0.0 +4614,reservoir_outflow,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4615,gw1_gw2,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4616,gw2_gw1,0.008139257703617985,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4617,urban_drainage,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4618,percolation,0.014696859677547662,2010-07-29,0.0,0.0,1.5010767516669006e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4619,runoff,1.0081965471633154e-06,2010-07-29,0.0,0.0,1.23700375216582e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +4620,storm_outflow,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4621,baseflow,0.03471254426085543,2010-07-29,0.0,0.0,3.223197491273002e-06,0.0,0.0,0.0,0.0,0.0,9.096146240054505,0.0,0.0,0.0 +4622,catchment_outflow,0.0347135524574026,2010-07-29,0.0,0.0,3.2233211916482187e-06,0.0,0.0,0.0,0.0,0.0,9.096329361763845,0.0,0.0,0.0 +4623,reservoir_outflow,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4624,gw1_gw2,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4625,gw2_gw1,0.008084995985594113,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4626,urban_drainage,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4627,percolation,0.014402922483996706,2010-07-30,0.0,0.0,1.4710552166335624e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4628,runoff,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4629,storm_outflow,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4630,baseflow,0.034661770206413284,2010-07-30,0.0,0.0,3.2188171355864035e-06,0.0,0.0,0.0,0.0,0.0,9.098192429603424,0.0,0.0,0.0 +4631,catchment_outflow,0.034661770206413284,2010-07-30,0.0,0.0,3.2188171355864035e-06,0.0,0.0,0.0,0.0,0.0,9.098192429603424,0.0,0.0,0.0 +4632,reservoir_outflow,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4633,gw1_gw2,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4634,gw2_gw1,0.00803109601235672,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4635,urban_drainage,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4636,percolation,0.014114864034316775,2010-07-31,0.0,0.0,1.4416341123008913e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4637,runoff,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4638,storm_outflow,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4639,baseflow,0.03461040294098304,2010-07-31,0.0,0.0,3.21437417802819e-06,0.0,0.0,0.0,0.0,0.0,9.100198585290336,0.0,0.0,0.0 +4640,catchment_outflow,0.03461040294098304,2010-07-31,0.0,0.0,3.21437417802819e-06,0.0,0.0,0.0,0.0,0.0,9.100198585290336,0.0,0.0,0.0 +4641,reservoir_outflow,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4642,gw1_gw2,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4643,gw2_gw1,0.00797755537227438,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4644,urban_drainage,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4645,percolation,0.013832566753630437,2010-08-01,0.0,0.0,1.4128014300548733e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4646,runoff,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4647,storm_outflow,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4648,baseflow,0.03455845835051466,2010-08-01,0.0,0.0,3.209870246158256e-06,0.0,0.0,0.0,0.0,0.0,9.10216556550563,0.0,0.0,0.0 +4649,catchment_outflow,0.03455845835051466,2010-08-01,0.0,0.0,3.209870246158256e-06,0.0,0.0,0.0,0.0,0.0,9.10216556550563,0.0,0.0,0.0 +4650,reservoir_outflow,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4651,gw1_gw2,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4652,gw2_gw1,0.007924371669792407,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4653,urban_drainage,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4654,percolation,0.01355591541855783,2010-08-02,0.0,0.0,1.3845454014537764e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348998,0.0,0.0,0.0 +4655,runoff,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4656,storm_outflow,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4657,baseflow,0.034505951993184764,2010-08-02,0.0,0.0,3.205306934046495e-06,0.0,0.0,0.0,0.0,0.0,9.104094207475546,0.0,0.0,0.0 +4658,catchment_outflow,0.034505951993184764,2010-08-02,0.0,0.0,3.205306934046495e-06,0.0,0.0,0.0,0.0,0.0,9.104094207475546,0.0,0.0,0.0 +4659,reservoir_outflow,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4660,gw1_gw2,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4661,gw2_gw1,0.007871542525327157,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4662,urban_drainage,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4663,percolation,0.013284797110186675,2010-08-03,0.0,0.0,1.356854493424701e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4664,runoff,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4665,storm_outflow,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4666,baseflow,0.03445289910597727,2010-08-03,0.0,0.0,3.2006858029449403e-06,0.0,0.0,0.0,0.0,0.0,9.105985327884248,0.0,0.0,0.0 +4667,catchment_outflow,0.03445289910597727,2010-08-03,0.0,0.0,3.2006858029449403e-06,0.0,0.0,0.0,0.0,0.0,9.105985327884248,0.0,0.0,0.0 +4668,reservoir_outflow,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4669,gw1_gw2,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4670,gw2_gw1,0.007819065575158213,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4671,urban_drainage,0.016,2010-08-04,0.0,0.0,1.3146341463414636e-05,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4672,percolation,0.01301910116798294,2010-08-04,0.0,0.0,1.3297174035562068e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4673,runoff,0.0,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4674,storm_outflow,0.016,2010-08-04,0.0,0.0,1.3146341463414636e-05,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4675,baseflow,0.034399314611132284,2010-08-04,0.0,0.0,3.1960083819464685e-06,0.0,0.0,0.0,0.0,0.0,9.10783972347401,0.0,0.0,0.0 +4676,catchment_outflow,0.050399314611132284,2010-08-04,0.0,0.0,1.6342349845361106e-05,0.0,0.0,0.0,0.0,0.0,12.370701417789448,0.0,0.0,0.0 +4677,reservoir_outflow,0.008,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4678,gw1_gw2,0.0,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4679,gw2_gw1,0.007766938471323925,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4680,urban_drainage,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4681,percolation,0.012758719144623284,2010-08-05,0.0,0.0,1.3031230554850828e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4682,runoff,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4683,storm_outflow,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4684,baseflow,0.03434521312246601,2010-08-05,0.0,0.0,3.191276168630315e-06,0.0,0.0,0.0,0.0,0.0,9.10965817162443,0.0,0.0,0.0 +4685,catchment_outflow,0.03434521312246601,2010-08-05,0.0,0.0,3.191276168630315e-06,0.0,0.0,0.0,0.0,0.0,9.10965817162443,0.0,0.0,0.0 +4686,reservoir_outflow,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4687,gw1_gw2,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4688,gw2_gw1,0.007715158881514839,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4689,urban_drainage,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4690,percolation,0.012503544761730816,2010-08-06,0.0,0.0,1.2770605943753809e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4691,runoff,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4692,storm_outflow,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4693,baseflow,0.034290608951564175,2010-08-06,0.0,0.0,3.186490629694678e-06,0.0,0.0,0.0,0.0,0.0,9.111441430911528,0.0,0.0,0.0 +4694,catchment_outflow,0.034290608951564175,2010-08-06,0.0,0.0,3.186490629694678e-06,0.0,0.0,0.0,0.0,0.0,9.111441430911528,0.0,0.0,0.0 +4695,reservoir_outflow,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4696,gw1_gw2,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4697,gw2_gw1,0.007663724488971547,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4698,urban_drainage,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4699,percolation,0.0122534738664962,2010-08-07,0.0,0.0,1.2515193824878734e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4700,runoff,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4701,storm_outflow,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4702,baseflow,0.034235516113851505,2010-08-07,0.0,0.0,3.181653201576661e-06,0.0,0.0,0.0,0.0,0.0,9.113190241647546,0.0,0.0,0.0 +4703,catchment_outflow,0.034235516113851505,2010-08-07,0.0,0.0,3.181653201576661e-06,0.0,0.0,0.0,0.0,0.0,9.113190241647546,0.0,0.0,0.0 +4704,reservoir_outflow,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4705,gw1_gw2,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4706,gw2_gw1,0.007612632992378465,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4707,urban_drainage,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4708,percolation,0.01200840438916628,2010-08-08,0.0,0.0,1.2264889948381161e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4709,runoff,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4710,storm_outflow,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4711,baseflow,0.034179948334539786,2010-08-08,0.0,0.0,3.176765291059814e-06,0.0,0.0,0.0,0.0,0.0,9.114905326402218,0.0,0.0,0.0 +4712,catchment_outflow,0.034179948334539786,2010-08-08,0.0,0.0,3.176765291059814e-06,0.0,0.0,0.0,0.0,0.0,9.114905326402218,0.0,0.0,0.0 +4713,reservoir_outflow,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4714,gw1_gw2,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4715,gw2_gw1,0.007561882105762585,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4716,urban_drainage,0.022,2010-08-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0 +4717,percolation,0.011768236301382951,2010-08-09,0.0,0.0,1.2019592149413536e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4718,runoff,0.0,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4719,storm_outflow,0.022,2010-08-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0 +4720,baseflow,0.0341239190544569,2010-08-09,0.0,0.0,3.1718282758695183e-06,0.0,0.0,0.0,0.0,0.0,9.116587390506275,0.0,0.0,0.0 +4721,catchment_outflow,0.0561239190544569,2010-08-09,0.0,0.0,8.171828275869519e-06,0.0,0.0,0.0,0.0,0.0,12.476997108969886,0.0,0.0,0.0 +4722,reservoir_outflow,0.011,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4723,gw1_gw2,0.0,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4724,gw2_gw1,0.007511469558390438,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4725,urban_drainage,0.039999999999999994,2010-08-10,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4726,percolation,0.011532871575355293,2010-08-10,0.0,0.0,1.1779200306425266e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4727,runoff,0.0,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4728,storm_outflow,0.039999999999999994,2010-08-10,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4729,baseflow,0.03406744143575915,2010-08-10,0.0,0.0,3.166843505256451e-06,0.0,0.0,0.0,0.0,0.0,9.11823712253788,0.0,0.0,0.0 +4730,catchment_outflow,0.07406744143575913,2010-08-10,0.0,0.0,3.7465536501839875e-06,0.0,0.0,0.0,0.0,0.0,13.563787133659446,0.0,0.0,0.0 +4731,reservoir_outflow,0.0345,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4732,gw1_gw2,0.0,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4733,gw2_gw1,0.0074613930946680895,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4734,urban_drainage,0.009000000000000011,2010-08-11,0.0,0.0,1.4202898550724638e-06,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4735,percolation,0.011302214143848186,2010-08-11,0.0,0.0,1.154361630029676e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348998,0.0,0.0,0.0 +4736,runoff,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4737,storm_outflow,0.009000000000000011,2010-08-11,0.0,0.0,1.4202898550724638e-06,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4738,baseflow,0.034010528367529366,2010-08-11,0.0,0.0,3.161812300568384e-06,0.0,0.0,0.0,0.0,0.0,9.11985519479267,0.0,0.0,0.0 +4739,catchment_outflow,0.043010528367529374,2010-08-11,0.0,0.0,4.582102155640848e-06,0.0,0.0,0.0,0.0,0.0,10.842021977165562,0.0,0.0,0.0 +4740,reservoir_outflow,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4741,gw1_gw2,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4742,gw2_gw1,0.007411650474036691,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4743,urban_drainage,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4744,percolation,0.011076169860971223,2010-08-12,0.0,0.0,1.1312743974290826e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4745,runoff,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4746,storm_outflow,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4747,baseflow,0.033953192471262966,2010-08-12,0.0,0.0,3.1567359558105354e-06,0.0,0.0,0.0,0.0,0.0,9.121442263738059,0.0,0.0,0.0 +4748,catchment_outflow,0.033953192471262966,2010-08-12,0.0,0.0,3.1567359558105354e-06,0.0,0.0,0.0,0.0,0.0,9.121442263738059,0.0,0.0,0.0 +4749,reservoir_outflow,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4750,gw1_gw2,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4751,gw2_gw1,0.007362239470876908,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4752,urban_drainage,0.03799999999999999,2010-08-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0 +4753,percolation,0.010854646463751798,2010-08-13,0.0,0.0,1.108648909480501e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4754,runoff,0.0,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4755,storm_outflow,0.03799999999999999,2010-08-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0 +4756,baseflow,0.0338954461062442,2010-08-13,0.0,0.0,3.151615738194711e-06,0.0,0.0,0.0,0.0,0.0,9.122998970452418,0.0,0.0,0.0 +4757,catchment_outflow,0.07189544610624418,2010-08-13,0.0,0.0,5.151615738194711e-06,0.0,0.0,0.0,0.0,0.0,13.324104063207042,0.0,0.0,0.0 +4758,reservoir_outflow,0.018999999999999996,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4759,gw1_gw2,0.0,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4760,gw2_gw1,0.007313157874404475,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4761,urban_drainage,0.018,2010-08-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4762,percolation,0.011942548349369182,2010-08-14,0.0,0.0,1.3022296805535283e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4763,runoff,0.008929718448606915,2010-08-14,0.0,0.0,7.192781245089642e-07,0.0,0.0,0.0,0.0,0.0,16.546771760971783,0.0,0.0,0.0 +4764,storm_outflow,0.018,2010-08-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4765,baseflow,0.033840563861852004,2010-08-14,0.0,0.0,3.1469922730506084e-06,0.0,0.0,0.0,0.0,0.0,9.125197702570146,0.0,0.0,0.0 +4766,catchment_outflow,0.06077028231045892,2010-08-14,0.0,0.0,4.866270397559572e-06,0.0,0.0,0.0,0.0,0.0,12.541888986313186,0.0,0.0,0.0 +4767,reservoir_outflow,0.009,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4768,gw1_gw2,0.0,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4769,gw2_gw1,0.0072644034885748,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4770,urban_drainage,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4771,percolation,0.011703697382381799,2010-08-15,0.0,0.0,1.2761850869424576e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4772,runoff,0.0034806314188366356,2010-08-15,0.0,0.0,5.754224996071714e-07,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 +4773,storm_outflow,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4774,baseflow,0.033785221695653324,2010-08-15,0.0,0.0,3.1423152550853372e-06,0.0,0.0,0.0,0.0,0.0,9.127354085481295,0.0,0.0,0.0 +4775,catchment_outflow,0.03726585311448996,2010-08-15,0.0,0.0,3.7177377546925087e-06,0.0,0.0,0.0,0.0,0.0,9.77788297890201,0.0,0.0,0.0 +4776,reservoir_outflow,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4777,gw1_gw2,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4778,gw2_gw1,0.007215974131984382,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4779,urban_drainage,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4780,percolation,0.011469623434734164,2010-08-16,0.0,0.0,1.2506613852036087e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4781,runoff,0.004073262481869353,2010-08-16,0.0,0.0,4.6033799968573707e-07,0.0,0.0,0.0,0.0,0.0,16.313972885493733,0.0,0.0,0.0 +4782,storm_outflow,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4783,baseflow,0.03372943270000103,2010-08-16,0.0,0.0,3.137586120410634e-06,0.0,0.0,0.0,0.0,0.0,9.1294690029068,0.0,0.0,0.0 +4784,catchment_outflow,0.037802695181870384,2010-08-16,0.0,0.0,3.597924120096371e-06,0.0,0.0,0.0,0.0,0.0,9.903603491863048,0.0,0.0,0.0 +4785,reservoir_outflow,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4786,gw1_gw2,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4787,gw2_gw1,0.007167867637770798,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4788,urban_drainage,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4789,percolation,0.011240230966039481,2010-08-17,0.0,0.0,1.2256481574995365e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4790,runoff,0.0025531852403099355,2010-08-17,0.0,0.0,3.6827039974858963e-07,0.0,0.0,0.0,0.0,0.0,16.169819876077586,0.0,0.0,0.0 +4791,storm_outflow,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4792,baseflow,0.033673209695666124,2010-08-17,0.0,0.0,3.132806275503356e-06,0.0,0.0,0.0,0.0,0.0,9.13154331764842,0.0,0.0,0.0 +4793,catchment_outflow,0.03622639493597606,2010-08-17,0.0,0.0,3.5010766752519457e-06,0.0,0.0,0.0,0.0,0.0,9.627591126379034,0.0,0.0,0.0 +4794,reservoir_outflow,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4795,gw1_gw2,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4796,gw2_gw1,0.007120081853519089,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4797,urban_drainage,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4798,percolation,0.011015426346718694,2010-08-18,0.0,0.0,1.2011351943495457e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4799,runoff,0.0025981568159106705,2010-08-18,0.0,0.0,2.9461631979887173e-07,0.0,0.0,0.0,0.0,0.0,16.305632930936174,0.0,0.0,0.0 +4800,storm_outflow,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4801,baseflow,0.033616565237293755,2010-08-18,0.0,0.0,3.127977097800471e-06,0.0,0.0,0.0,0.0,0.0,9.133577872173195,0.0,0.0,0.0 +4802,catchment_outflow,0.036214722053204425,2010-08-18,0.0,0.0,3.4225934175993425e-06,0.0,0.0,0.0,0.0,0.0,9.648123412730857,0.0,0.0,0.0 +4803,reservoir_outflow,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4804,gw1_gw2,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4805,gw2_gw1,0.0070726146411622896,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4806,urban_drainage,0.021000000000000005,2010-08-19,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 +4807,percolation,0.011785175370352197,2010-08-19,0.0,0.0,1.343225063830581e-06,0.0,0.0,0.0,0.0,0.0,11.968273197789067,0.0,0.0,0.0 +4808,runoff,0.008199744606725179,2010-08-19,0.0,0.0,7.894016337325175e-07,0.0,0.0,0.0,0.0,0.0,16.300148419994997,0.0,0.0,0.0 +4809,storm_outflow,0.021000000000000005,2010-08-19,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 +4810,baseflow,0.03356198676262641,2010-08-19,0.0,0.0,3.1235152177155466e-06,0.0,0.0,0.0,0.0,0.0,9.136066355778931,0.0,0.0,0.0 +4811,catchment_outflow,0.06276173136935159,2010-08-19,0.0,0.0,8.912916851448064e-06,0.0,0.0,0.0,0.0,0.0,12.65072799630457,0.0,0.0,0.0 +4812,reservoir_outflow,0.010500000000000002,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4813,gw1_gw2,0.0,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4814,gw2_gw1,0.007025463876887628,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4815,urban_drainage,0.0039999999999999975,2010-08-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 +4816,percolation,0.013250908261620647,2010-08-20,0.0,0.0,1.6004550571885217e-06,0.0,0.0,0.0,0.0,0.0,12.46908293542639,0.0,0.0,0.0 +4817,runoff,0.015422093709811405,2010-08-20,0.0,0.0,1.578502955767857e-06,0.0,0.0,0.0,0.0,0.0,16.281389794005836,0.0,0.0,0.0 +4818,storm_outflow,0.0039999999999999975,2010-08-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 +4819,baseflow,0.03351120906637389,2010-08-20,0.0,0.0,3.1197075673142293e-06,0.0,0.0,0.0,0.0,0.0,9.139361185938885,0.0,0.0,0.0 +4820,catchment_outflow,0.0529333027761853,2010-08-20,0.0,0.0,5.698210523082086e-06,0.0,0.0,0.0,0.0,0.0,11.807714097247356,0.0,0.0,0.0 +4821,reservoir_outflow,0.0019999999999999987,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4822,gw1_gw2,0.0,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4823,gw2_gw1,0.006978627451041853,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4824,urban_drainage,0.024,2010-08-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 +4825,percolation,0.016241523030397473,2010-08-21,0.0,0.0,2.1027358115022077e-06,0.0,0.0,0.0,0.0,0.0,13.165160365544303,0.0,0.0,0.0 +4826,runoff,0.029837096379700435,2010-08-21,0.0,0.0,3.043768549472473e-06,0.0,0.0,0.0,0.0,0.0,16.326164841762676,0.0,0.0,0.0 +4827,storm_outflow,0.024,2010-08-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 +4828,baseflow,0.03346803485128395,2010-08-21,0.0,0.0,3.117165137924699e-06,0.0,0.0,0.0,0.0,0.0,9.144245332138524,0.0,0.0,0.0 +4829,catchment_outflow,0.08730513123098438,2010-08-21,0.0,0.0,7.160933687397172e-06,0.0,0.0,0.0,0.0,0.0,13.754316629365348,0.0,0.0,0.0 +4830,reservoir_outflow,0.012,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4831,gw1_gw2,0.0,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4832,gw2_gw1,0.00693210326803495,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4833,urban_drainage,0.04,2010-08-22,0.0,0.0,1.4336917562724012e-07,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 +4834,percolation,0.04245832588540559,2010-08-22,0.0,0.0,5.763905915885732e-06,0.0,0.0,0.0,0.0,0.0,15.028959457364785,0.0,0.0,0.0 +4835,runoff,0.19633170734321276,2010-08-22,0.0,0.0,1.477909757495654e-05,0.0,0.0,0.0,0.0,0.0,16.561308223014187,0.0,0.0,0.0 +4836,storm_outflow,0.04,2010-08-22,0.0,0.0,1.4336917562724012e-07,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 +4837,baseflow,0.03349051057886925,2010-08-22,0.0,0.0,3.1237819898696016e-06,0.0,0.0,0.0,0.0,0.0,9.162896519127962,0.0,0.0,0.0 +4838,catchment_outflow,0.269822217922082,2010-08-22,0.0,0.0,1.804624874045338e-05,0.0,0.0,0.0,0.0,0.0,15.716517895101962,0.0,0.0,0.0 +4839,reservoir_outflow,0.1,2010-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4840,gw1_gw2,0.0,2010-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4841,gw2_gw1,0.006885889246248134,2010-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4842,urban_drainage,0.04,2010-08-23,0.0,0.0,2.614972992074309e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 +4843,percolation,0.050604026811180036,2010-08-23,0.0,0.0,6.8706760055758725e-06,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 +4844,runoff,0.14410636539140584,2010-08-23,0.0,0.0,1.5896772086658088e-05,0.0,0.0,0.0,0.0,0.0,16.331912686036453,0.0,0.0,0.0 +4845,storm_outflow,0.04,2010-08-23,0.0,0.0,2.614972992074309e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 +4846,baseflow,0.03353329436945003,2010-08-23,0.0,0.0,3.133149224908867e-06,0.0,0.0,0.0,0.0,0.0,9.185741261665326,0.0,0.0,0.0 +4847,catchment_outflow,0.21763965976085586,2010-08-23,0.0,0.0,1.9291418610774386e-05,0.0,0.0,0.0,0.0,0.0,15.366221290581901,0.0,0.0,0.0 +4848,reservoir_outflow,0.062000000000000006,2010-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4849,gw1_gw2,0.0,2010-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4850,gw2_gw1,0.006839983317939869,2010-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4851,urban_drainage,0.04,2010-08-24,0.0,0.0,4.6135707114050287e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 +4852,percolation,0.04959194627495643,2010-08-24,0.0,0.0,6.733262485464355e-06,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 +4853,runoff,0.09051817865641333,2010-08-24,0.0,0.0,1.271741766932647e-05,0.0,0.0,0.0,0.0,0.0,16.11431704187229,0.0,0.0,0.0 +4854,storm_outflow,0.04,2010-08-24,0.0,0.0,4.6135707114050287e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 +4855,baseflow,0.0335734409992138,2010-08-24,0.0,0.0,3.142149508060256e-06,0.0,0.0,0.0,0.0,0.0,9.208017977319221,0.0,0.0,0.0 +4856,catchment_outflow,0.16409161965562713,2010-08-24,0.0,0.0,1.632092424852723e-05,0.0,0.0,0.0,0.0,0.0,14.933863856271628,0.0,0.0,0.0 +4857,reservoir_outflow,0.0,2010-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4858,gw1_gw2,0.0,2010-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4859,gw2_gw1,0.0067943834291535055,2010-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4860,urban_drainage,0.04,2010-08-25,0.0,0.0,2.4387365400971403e-07,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0 +4861,percolation,0.09601529819088278,2010-08-25,0.0,0.0,1.2056264873751756e-05,0.0,0.0,0.0,0.0,0.0,15.740952706241456,0.0,0.0,0.0 +4862,runoff,0.39644880008541483,2010-08-25,0.0,0.0,2.8366159595450136e-05,0.0,0.0,0.0,0.0,0.0,16.486745203032157,0.0,0.0,0.0 +4863,storm_outflow,0.04,2010-08-25,0.0,0.0,2.4387365400971403e-07,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0 +4864,baseflow,0.03372954564219297,2010-08-25,0.0,0.0,3.1644347964744847e-06,0.0,0.0,0.0,0.0,0.0,9.25450998188942,0.0,0.0,0.0 +4865,catchment_outflow,0.4701783457276078,2010-08-25,0.0,0.0,3.177446804593433e-05,0.0,0.0,0.0,0.0,0.0,16.005513638138794,0.0,0.0,0.0 +4866,reservoir_outflow,0.1,2010-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4867,gw1_gw2,0.0,2010-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4868,gw2_gw1,0.006749087539625798,2010-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4869,urban_drainage,0.04,2010-08-26,0.0,0.0,3.044933698641966e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4870,percolation,0.1018987121236057,2010-08-26,0.0,0.0,1.2694385965616054e-05,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 +4871,runoff,0.23745764050732734,2010-08-26,0.0,0.0,2.5623748974157876e-05,0.0,0.0,0.0,0.0,0.0,16.224479261058995,0.0,0.0,0.0 +4872,storm_outflow,0.04,2010-08-26,0.0,0.0,3.044933698641966e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4873,baseflow,0.033899968558396505,2010-08-26,0.0,0.0,3.1882596743973386e-06,0.0,0.0,0.0,0.0,0.0,9.303366396538431,0.0,0.0,0.0 +4874,catchment_outflow,0.31135760906572385,2010-08-26,0.0,0.0,2.9116502018419413e-05,0.0,0.0,0.0,0.0,0.0,15.557397590698148,0.0,0.0,0.0 +4875,reservoir_outflow,0.08299999999999998,2010-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4876,gw1_gw2,0.0,2010-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4877,gw2_gw1,0.0067040936226950626,2010-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4878,urban_drainage,0.04,2010-08-27,0.0,0.0,4.0578844514609863e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4879,percolation,0.09986073788113355,2010-08-27,0.0,0.0,1.2440498246303729e-05,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 +4880,runoff,0.1685366679298627,2010-08-27,0.0,0.0,2.04989991793263e-05,0.0,0.0,0.0,0.0,0.0,16.188458830519906,0.0,0.0,0.0 +4881,storm_outflow,0.04,2010-08-27,0.0,0.0,4.0578844514609863e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4882,baseflow,0.03406487048170335,2010-08-27,0.0,0.0,3.2113902708271043e-06,0.0,0.0,0.0,0.0,0.0,9.350655852956312,0.0,0.0,0.0 +4883,catchment_outflow,0.24260153841156604,2010-08-27,0.0,0.0,2.4116177895299502e-05,0.0,0.0,0.0,0.0,0.0,15.345251065364383,0.0,0.0,0.0 +4884,reservoir_outflow,0.0,2010-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4885,gw1_gw2,0.0,2010-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4886,gw2_gw1,0.0066593996652102305,2010-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4887,urban_drainage,0.04,2010-08-28,0.0,0.0,5.2853275357192e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4888,percolation,0.09786352312351088,2010-08-28,0.0,0.0,1.2191688281377655e-05,0.0,0.0,0.0,0.0,0.0,15.755989288000574,0.0,0.0,0.0 +4889,runoff,0.13444874699912474,2010-08-28,0.0,0.0,1.639919934346104e-05,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 +4890,storm_outflow,0.04,2010-08-28,0.0,0.0,5.2853275357192e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4891,baseflow,0.03422436711330787,2010-08-28,0.0,0.0,3.2338410158534806e-06,0.0,0.0,0.0,0.0,0.0,9.396445486893072,0.0,0.0,0.0 +4892,catchment_outflow,0.2086731141124326,2010-08-28,0.0,0.0,2.016157311288644e-05,0.0,0.0,0.0,0.0,0.0,15.21050654255134,0.0,0.0,0.0 +4893,reservoir_outflow,0.0,2010-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4894,gw1_gw2,0.0,2010-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4895,gw2_gw1,0.006615003667442033,2010-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4896,urban_drainage,0.04,2010-08-29,0.0,0.0,6.590190357356146e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4897,percolation,0.09734799031066098,2010-08-29,0.0,0.0,1.2114848141750284e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 +4898,runoff,0.11742351835985987,2010-08-29,0.0,0.0,1.367600489476943e-05,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4899,storm_outflow,0.04,2010-08-29,0.0,0.0,6.590190357356146e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4900,baseflow,0.034382176171301244,2010-08-29,0.0,0.0,3.2560435336682227e-06,0.0,0.0,0.0,0.0,0.0,9.441382994674656,0.0,0.0,0.0 +4901,catchment_outflow,0.19180569453116111,2010-08-29,0.0,0.0,1.7591067464173267e-05,0.0,0.0,0.0,0.0,0.0,15.078065803901968,0.0,0.0,0.0 +4902,reservoir_outflow,0.0,2010-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4903,gw1_gw2,0.0,2010-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4904,gw2_gw1,0.006570903642992398,2010-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4905,urban_drainage,0.04,2010-08-30,0.0,0.0,8.469355753635731e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4906,percolation,0.09540103050444775,2010-08-30,0.0,0.0,1.1872551178915274e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 +4907,runoff,0.08989183181176068,2010-08-30,0.0,0.0,1.0940803915815545e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4908,storm_outflow,0.04,2010-08-30,0.0,0.0,8.469355753635731e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4909,baseflow,0.03453472330713411,2010-08-30,0.0,0.0,3.27758480278134e-06,0.0,0.0,0.0,0.0,0.0,9.484916877900343,0.0,0.0,0.0 +4910,catchment_outflow,0.16442655511889478,2010-08-30,0.0,0.0,1.5065324293960459e-05,0.0,0.0,0.0,0.0,0.0,14.925622628192256,0.0,0.0,0.0 +4911,reservoir_outflow,0.0,2010-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4912,gw1_gw2,0.0,2010-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4913,gw2_gw1,0.006527097618705824,2010-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4914,urban_drainage,0.04,2010-08-31,0.0,0.0,1.10226612023923e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4915,percolation,0.09349300989435881,2010-08-31,0.0,0.0,1.1635100155336972e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522486,0.0,0.0,0.0 +4916,runoff,0.07191346544940855,2010-08-31,0.0,0.0,8.752643132652438e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4917,storm_outflow,0.04,2010-08-31,0.0,0.0,1.10226612023923e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4918,baseflow,0.03468211902360218,2010-08-31,0.0,0.0,3.298478591162729e-06,0.0,0.0,0.0,0.0,0.0,9.527105381838547,0.0,0.0,0.0 +4919,catchment_outflow,0.14659558447301074,2010-08-31,0.0,0.0,1.3153387844054398e-05,0.0,0.0,0.0,0.0,0.0,14.781405190509282,0.0,0.0,0.0 +4920,reservoir_outflow,0.0,2010-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4921,gw1_gw2,0.0,2010-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4922,gw2_gw1,0.006483583634581436,2010-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4923,urban_drainage,0.04,2010-09-01,0.0,0.0,1.4829122699618347e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4924,percolation,0.09162314969647163,2010-09-01,0.0,0.0,1.140239815223023e-05,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 +4925,runoff,0.057530772359526826,2010-09-01,0.0,0.0,7.0021145061219475e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4926,storm_outflow,0.04,2010-09-01,0.0,0.0,1.4829122699618347e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4927,baseflow,0.03482447160028435,2010-09-01,0.0,0.0,3.3187383900653975e-06,0.0,0.0,0.0,0.0,0.0,9.568003615357508,0.0,0.0,0.0 +4928,catchment_outflow,0.1323552439598112,2010-09-01,0.0,0.0,1.180376516614918e-05,0.0,0.0,0.0,0.0,0.0,14.639059107540184,0.0,0.0,0.0 +4929,reservoir_outflow,0.0,2010-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4930,gw1_gw2,0.0,2010-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4931,gw2_gw1,0.006440359743684176,2010-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4932,urban_drainage,0.04,2010-09-02,0.0,0.0,2.159205914614618e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4933,percolation,0.0897906867025422,2010-09-02,0.0,0.0,1.1174350189185626e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 +4934,runoff,0.04602461788762147,2010-09-02,0.0,0.0,5.601691604897559e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4935,storm_outflow,0.04,2010-09-02,0.0,0.0,2.159205914614618e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4936,baseflow,0.03496188713804,2010-09-02,0.0,0.0,3.338377419563198e-06,0.0,0.0,0.0,0.0,0.0,9.607663759490833,0.0,0.0,0.0 +4937,catchment_outflow,0.12098650502566147,2010-09-02,0.0,0.0,1.1099274939075375e-05,0.0,0.0,0.0,0.0,0.0,14.502173247545594,0.0,0.0,0.0 +4938,reservoir_outflow,0.0,2010-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4939,gw1_gw2,0.0,2010-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4940,gw2_gw1,0.006397424012059539,2010-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4941,urban_drainage,0.04,2010-09-03,0.0,0.0,4.093720293505137e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4942,percolation,0.08799487296849134,2010-09-03,0.0,0.0,1.0950863185401911e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522492,0.0,0.0,0.0 +4943,runoff,0.036819694310097184,2010-09-03,0.0,0.0,4.481353283918047e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4944,storm_outflow,0.04,2010-09-03,0.0,0.0,4.093720293505137e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4945,baseflow,0.03509446960261613,2010-09-03,0.0,0.0,3.357408633977795e-06,0.0,0.0,0.0,0.0,0.0,9.646135259568538,0.0,0.0,0.0 +4946,catchment_outflow,0.11191416391271332,2010-09-03,0.0,0.0,1.193248221140098e-05,0.0,0.0,0.0,0.0,0.0,14.373863412741256,0.0,0.0,0.0 +4947,reservoir_outflow,0.0,2010-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4948,gw1_gw2,0.0,2010-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4949,gw2_gw1,0.0063547745186459895,2010-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4950,urban_drainage,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4951,percolation,0.08623497550912154,2010-09-04,0.0,0.0,1.0731845921693876e-05,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 +4952,runoff,0.030125016402246907,2010-09-04,0.0,0.0,3.585082627134438e-06,0.0,0.0,0.0,0.0,0.0,16.11565393294171,0.0,0.0,0.0 +4953,storm_outflow,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4954,baseflow,0.03522232086738239,2010-09-04,0.0,0.0,3.375844727197085e-06,0.0,0.0,0.0,0.0,0.0,9.6834650024048,0.0,0.0,0.0 +4955,catchment_outflow,0.0653473372696293,2010-09-04,0.0,0.0,6.960927354331523e-06,0.0,0.0,0.0,0.0,0.0,12.648693657939194,0.0,0.0,0.0 +4956,reservoir_outflow,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4957,gw1_gw2,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4958,gw2_gw1,0.0063124093551882865,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4959,urban_drainage,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4960,percolation,0.08614718598945256,2010-09-05,0.0,0.0,1.0720250135998034e-05,0.0,0.0,0.0,0.0,0.0,15.71905178520973,0.0,0.0,0.0 +4961,runoff,0.034764514819870036,2010-09-05,0.0,0.0,3.544869877501002e-06,0.0,0.0,0.0,0.0,0.0,15.708571053283858,0.0,0.0,0.0 +4962,storm_outflow,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4963,baseflow,0.035349633030187566,2010-09-05,0.0,0.0,3.394205740719087e-06,0.0,0.0,0.0,0.0,0.0,9.720236870495325,0.0,0.0,0.0 +4964,catchment_outflow,0.0701141478500576,2010-09-05,0.0,0.0,6.939075618220089e-06,0.0,0.0,0.0,0.0,0.0,12.689416969340602,0.0,0.0,0.0 +4965,reservoir_outflow,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4966,gw1_gw2,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4967,gw2_gw1,0.006270326626153811,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4968,urban_drainage,0.04,2010-09-06,0.0,0.0,1.5381530334943667e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4969,percolation,0.09322237316328505,2010-09-06,0.0,0.0,1.154051406692481e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4970,runoff,0.08341451448800563,2010-09-06,0.0,0.0,6.2847923474899245e-06,0.0,0.0,0.0,0.0,0.0,15.160616237966915,0.0,0.0,0.0 +4971,storm_outflow,0.04,2010-09-06,0.0,0.0,1.5381530334943667e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4972,baseflow,0.03549431488052031,2010-09-06,0.0,0.0,3.414571511534602e-06,0.0,0.0,0.0,0.0,0.0,9.758870778447983,0.0,0.0,0.0 +4973,catchment_outflow,0.15890882936852596,2010-09-06,0.0,0.0,1.1237516892518894e-05,0.0,0.0,0.0,0.0,0.0,13.989152672959158,0.0,0.0,0.0 +4974,reservoir_outflow,0.043,2010-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4975,gw1_gw2,0.0,2010-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4976,gw2_gw1,0.006228524448645878,2010-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4977,urban_drainage,0.030999999999999993,2010-09-07,0.0,0.0,2.768875988518521e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4978,percolation,0.09135792570001934,2010-09-07,0.0,0.0,1.1309703785586315e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4979,runoff,0.04405523065659248,2010-09-07,0.0,0.0,5.02783387799194e-06,0.0,0.0,0.0,0.0,0.0,15.09001812585737,0.0,0.0,0.0 +4980,storm_outflow,0.030999999999999993,2010-09-07,0.0,0.0,2.768875988518521e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4981,baseflow,0.035633973907569054,2010-09-07,0.0,0.0,3.4343093422197306e-06,0.0,0.0,0.0,0.0,0.0,9.796335997210567,0.0,0.0,0.0 +4982,catchment_outflow,0.11068920456416154,2010-09-07,0.0,0.0,1.123101920873019e-05,0.0,0.0,0.0,0.0,0.0,13.444640932427696,0.0,0.0,0.0 +4983,reservoir_outflow,0.0,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4984,gw1_gw2,0.0,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4985,gw2_gw1,0.0061870009523214975,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4986,urban_drainage,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4987,percolation,0.08953076718601896,2010-09-08,0.0,0.0,1.108350970987459e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4988,runoff,0.03362808305506822,2010-09-08,0.0,0.0,4.022267102393551e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4989,storm_outflow,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4990,baseflow,0.03576871589076518,2010-09-08,0.0,0.0,3.4534323431388685e-06,0.0,0.0,0.0,0.0,0.0,9.832679158502524,0.0,0.0,0.0 +4991,catchment_outflow,0.0693967989458334,2010-09-08,0.0,0.0,7.475699445532419e-06,0.0,0.0,0.0,0.0,0.0,12.374791756927696,0.0,0.0,0.0 +4992,reservoir_outflow,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4993,gw1_gw2,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4994,gw2_gw1,0.006145754279306105,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4995,urban_drainage,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4996,percolation,0.08774015184229858,2010-09-09,0.0,0.0,1.0861839515677097e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4997,runoff,0.02835642221045755,2010-09-09,0.0,0.0,3.2178136819148416e-06,0.0,0.0,0.0,0.0,0.0,15.093916621816792,0.0,0.0,0.0 +4998,storm_outflow,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4999,baseflow,0.03589864448064402,2010-09-09,0.0,0.0,3.471953361070214e-06,0.0,0.0,0.0,0.0,0.0,9.8679444833831,0.0,0.0,0.0 +5000,catchment_outflow,0.06425506669110156,2010-09-09,0.0,0.0,6.689767042985056e-06,0.0,0.0,0.0,0.0,0.0,12.174219771056807,0.0,0.0,0.0 +5001,reservoir_outflow,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5002,gw1_gw2,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5003,gw2_gw1,0.006104782584110602,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5004,urban_drainage,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5005,percolation,0.08598534880545261,2010-09-10,0.0,0.0,1.0644602725363556e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +5006,runoff,0.024953329866313264,2010-09-10,0.0,0.0,2.5742509455318726e-06,0.0,0.0,0.0,0.0,0.0,15.122904136465596,0.0,0.0,0.0 +5007,storm_outflow,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5008,baseflow,0.03602386124145604,2010-09-10,0.0,0.0,3.489884984480948e-06,0.0,0.0,0.0,0.0,0.0,9.9021739362382,0.0,0.0,0.0 +5009,catchment_outflow,0.06097719110776931,2010-09-10,0.0,0.0,6.0641359300128205e-06,0.0,0.0,0.0,0.0,0.0,12.038622015636516,0.0,0.0,0.0 +5010,reservoir_outflow,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5011,gw1_gw2,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5012,gw2_gw1,0.006064084033550188,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5013,urban_drainage,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5014,percolation,0.08426564182934354,2010-09-11,0.0,0.0,1.0431710670856284e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +5015,runoff,0.017559501166351164,2010-09-11,0.0,0.0,2.0594007564254984e-06,0.0,0.0,0.0,0.0,0.0,15.085468085253943,0.0,0.0,0.0 +5016,storm_outflow,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5017,baseflow,0.03614446569292576,2010-09-11,0.0,0.0,3.5072395486968857e-06,0.0,0.0,0.0,0.0,0.0,9.935407367103993,0.0,0.0,0.0 +5018,catchment_outflow,0.05370396685927692,2010-09-11,0.0,0.0,5.566640305122384e-06,0.0,0.0,0.0,0.0,0.0,11.619314580589693,0.0,0.0,0.0 +5019,reservoir_outflow,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5020,gw1_gw2,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5021,gw2_gw1,0.006023656806659971,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5022,urban_drainage,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5023,percolation,0.08258032899275668,2010-09-12,0.0,0.0,1.022307645743916e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +5024,runoff,0.013774062819355943,2010-09-12,0.0,0.0,1.6475206051403989e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +5025,storm_outflow,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5026,baseflow,0.03626055535117534,2010-09-12,0.0,0.0,3.5240291409687417e-06,0.0,0.0,0.0,0.0,0.0,9.967682643345096,0.0,0.0,0.0 +5027,catchment_outflow,0.05003461817053128,2010-09-12,0.0,0.0,5.17154974610914e-06,0.0,0.0,0.0,0.0,0.0,11.374704937657155,0.0,0.0,0.0 +5028,reservoir_outflow,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5029,gw1_gw2,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5030,gw2_gw1,0.005983499094615575,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5031,urban_drainage,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5032,percolation,0.08092872241290154,2010-09-13,0.0,0.0,1.0018614928290377e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +5033,runoff,0.01257821468497357,2010-09-13,0.0,0.0,1.3180164841123191e-06,0.0,0.0,0.0,0.0,0.0,15.127840272164477,0.0,0.0,0.0 +5034,storm_outflow,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5035,baseflow,0.036372225768829654,2010-09-13,0.0,0.0,3.5402656054370464e-06,0.0,0.0,0.0,0.0,0.0,9.999035771604866,0.0,0.0,0.0 +5036,catchment_outflow,0.04895044045380322,2010-09-13,0.0,0.0,4.8582820895493655e-06,0.0,0.0,0.0,0.0,0.0,11.316923894515215,0.0,0.0,0.0 +5037,reservoir_outflow,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5038,gw1_gw2,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5039,gw2_gw1,0.005943609100651593,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5040,urban_drainage,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5041,percolation,0.08066367250894078,2010-09-14,0.0,0.0,9.988099147707158e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +5042,runoff,0.018076357612737636,2010-09-14,0.0,0.0,1.6206015805651482e-06,0.0,0.0,0.0,0.0,0.0,15.09358278196015,0.0,0.0,0.0 +5043,storm_outflow,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5044,baseflow,0.03648295438567993,2010-09-14,0.0,0.0,3.5563851892927218e-06,0.0,0.0,0.0,0.0,0.0,10.029933719998455,0.0,0.0,0.0 +5045,catchment_outflow,0.05455931199841757,2010-09-14,0.0,0.0,5.17698676985787e-06,0.0,0.0,0.0,0.0,0.0,11.707600243214102,0.0,0.0,0.0 +5046,reservoir_outflow,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5047,gw1_gw2,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5048,gw2_gw1,0.0059039850399805974,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5049,urban_drainage,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5050,percolation,0.07905039905876196,2010-09-15,0.0,0.0,9.788337164753014e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +5051,runoff,0.0111422307741807,2010-09-15,0.0,0.0,1.2964812644521185e-06,0.0,0.0,0.0,0.0,0.0,14.963131088202434,0.0,0.0,0.0 +5052,storm_outflow,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5053,baseflow,0.03658937299736264,2010-09-15,0.0,0.0,3.571965069231373e-06,0.0,0.0,0.0,0.0,0.0,10.05995875582566,0.0,0.0,0.0 +5054,catchment_outflow,0.04773160377154334,2010-09-15,0.0,0.0,4.868446333683491e-06,0.0,0.0,0.0,0.0,0.0,11.204531184491685,0.0,0.0,0.0 +5055,reservoir_outflow,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5056,gw1_gw2,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5057,gw2_gw1,0.005864625139713731,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5058,urban_drainage,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5059,percolation,0.07746939107758673,2010-09-16,0.0,0.0,9.592570421457955e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601504,0.0,0.0,0.0 +5060,runoff,0.008913379801366075,2010-09-16,0.0,0.0,1.037185011561695e-06,0.0,0.0,0.0,0.0,0.0,14.953730916705391,0.0,0.0,0.0 +5061,storm_outflow,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5062,baseflow,0.0366915730425632,2010-09-16,0.0,0.0,3.5870165826119397e-06,0.0,0.0,0.0,0.0,0.0,10.089142847663021,0.0,0.0,0.0 +5063,catchment_outflow,0.04560495284392928,2010-09-16,0.0,0.0,4.624201594173634e-06,0.0,0.0,0.0,0.0,0.0,11.039915040870989,0.0,0.0,0.0 +5064,reservoir_outflow,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5065,gw1_gw2,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5066,gw2_gw1,0.0058255276387825464,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5067,urban_drainage,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5068,percolation,0.075920003256035,2010-09-17,0.0,0.0,9.400719013028796e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601508,0.0,0.0,0.0 +5069,runoff,0.006823500126913918,2010-09-17,0.0,0.0,8.29748009249356e-07,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +5070,storm_outflow,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5071,baseflow,0.036789644118096876,2010-09-17,0.0,0.0,3.6015508386879815e-06,0.0,0.0,0.0,0.0,0.0,10.117516454332485,0.0,0.0,0.0 +5072,catchment_outflow,0.043613144245010796,2010-09-17,0.0,0.0,4.431298847937338e-06,0.0,0.0,0.0,0.0,0.0,10.87338828438141,0.0,0.0,0.0 +5073,reservoir_outflow,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5074,gw1_gw2,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5075,gw2_gw1,0.0057866907878572965,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5076,urban_drainage,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5077,percolation,0.0744016031909143,2010-09-18,0.0,0.0,9.21270463276822e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +5078,runoff,0.005512149526095796,2010-09-18,0.0,0.0,6.637984073994848e-07,0.0,0.0,0.0,0.0,0.0,14.945654694209425,0.0,0.0,0.0 +5079,storm_outflow,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5080,baseflow,0.036883674015778925,2010-09-18,0.0,0.0,3.615578723173182e-06,0.0,0.0,0.0,0.0,0.0,10.145108613098595,0.0,0.0,0.0 +5081,catchment_outflow,0.042395823541874725,2010-09-18,0.0,0.0,4.279377130572667e-06,0.0,0.0,0.0,0.0,0.0,10.769258012622817,0.0,0.0,0.0 +5082,reservoir_outflow,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5083,gw1_gw2,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5084,gw2_gw1,0.0057481128492717914,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5085,urban_drainage,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5086,percolation,0.07291357112709601,2010-09-19,0.0,0.0,9.028450540112854e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +5087,runoff,0.004367040081224908,2010-09-19,0.0,0.0,5.310387259195878e-07,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +5088,storm_outflow,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5089,baseflow,0.03697374875855721,2010-09-19,0.0,0.0,3.6291109027155316e-06,0.0,0.0,0.0,0.0,0.0,10.171947021747322,0.0,0.0,0.0 +5090,catchment_outflow,0.04134078883978212,2010-09-19,0.0,0.0,4.160149628635119e-06,0.0,0.0,0.0,0.0,0.0,10.676545658950069,0.0,0.0,0.0 +5091,reservoir_outflow,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5092,gw1_gw2,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5093,gw2_gw1,0.0057097920969431115,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5094,urban_drainage,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5095,percolation,0.07145529970455408,2010-09-20,0.0,0.0,8.847881529310597e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +5096,runoff,0.0034936320649799264,2010-09-20,0.0,0.0,4.248309807356703e-07,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +5097,storm_outflow,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5098,baseflow,0.037059952635922204,2010-09-20,0.0,0.0,3.6421578292820186e-06,0.0,0.0,0.0,0.0,0.0,10.198058115036105,0.0,0.0,0.0 +5099,catchment_outflow,0.04055358470090213,2010-09-20,0.0,0.0,4.066988810017689e-06,0.0,0.0,0.0,0.0,0.0,10.607323587797577,0.0,0.0,0.0 +5100,reservoir_outflow,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5101,gw1_gw2,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5102,gw2_gw1,0.005671726816296996,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5103,urban_drainage,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5104,percolation,0.07002619371046301,2010-09-21,0.0,0.0,8.670923898724386e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601508,0.0,0.0,0.0 +5105,runoff,0.002794905651983941,2010-09-21,0.0,0.0,3.3986478458853624e-07,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 +5106,storm_outflow,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5107,baseflow,0.03714236823860856,2010-09-21,0.0,0.0,3.6547297444556248e-06,0.0,0.0,0.0,0.0,0.0,10.223467135960377,0.0,0.0,0.0 +5108,catchment_outflow,0.0399372738905925,2010-09-21,0.0,0.0,3.994594529044161e-06,0.0,0.0,0.0,0.0,0.0,10.554153948280534,0.0,0.0,0.0 +5109,reservoir_outflow,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5110,gw1_gw2,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5111,gw2_gw1,0.0056339153041884416,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5112,urban_drainage,0.033,2010-09-22,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0 +5113,percolation,0.06862566983625375,2010-09-22,0.0,0.0,8.497505420749898e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601503,0.0,0.0,0.0 +5114,runoff,0.0022359245215871526,2010-09-22,0.0,0.0,2.7189182767082896e-07,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 +5115,storm_outflow,0.033,2010-09-22,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0 +5116,baseflow,0.03722107649260267,2010-09-22,0.0,0.0,3.6668366836463602e-06,0.0,0.0,0.0,0.0,0.0,10.248198202242074,0.0,0.0,0.0 +5117,catchment_outflow,0.07245700101418984,2010-09-22,0.0,0.0,1.893872851131719e-05,0.0,0.0,0.0,0.0,0.0,11.98812042646286,0.0,0.0,0.0 +5118,reservoir_outflow,0.0165,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5119,gw1_gw2,0.0,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5120,gw2_gw1,0.005596355868827097,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5121,urban_drainage,0.012,2010-09-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +5122,percolation,0.06813301743485357,2010-09-23,0.0,0.0,8.443095538408084e-06,0.0,0.0,0.0,0.0,0.0,15.55865990938685,0.0,0.0,0.0 +5123,runoff,0.007808841164229584,2010-09-23,0.0,0.0,6.026475490472796e-07,0.0,0.0,0.0,0.0,0.0,13.74666368065079,0.0,0.0,0.0 +5124,storm_outflow,0.012,2010-09-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +5125,baseflow,0.037298356344958296,2010-09-23,0.0,0.0,3.678777330783264e-06,0.0,0.0,0.0,0.0,0.0,10.272449792361336,0.0,0.0,0.0 +5126,catchment_outflow,0.057107197509187885,2010-09-23,0.0,0.0,5.281424879830544e-06,0.0,0.0,0.0,0.0,0.0,11.430976034263372,0.0,0.0,0.0 +5127,reservoir_outflow,0.006,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5128,gw1_gw2,0.0,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5129,gw2_gw1,0.005559046829701764,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5130,urban_drainage,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5131,percolation,0.0667703570861565,2010-09-24,0.0,0.0,8.274233627639923e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +5132,runoff,0.0039868110856390295,2010-09-24,0.0,0.0,4.821180392378236e-07,0.0,0.0,0.0,0.0,0.0,13.860507849398072,0.0,0.0,0.0 +5133,storm_outflow,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5134,baseflow,0.03737203634681129,2010-09-24,0.0,0.0,3.690265971525406e-06,0.0,0.0,0.0,0.0,0.0,10.296061172128738,0.0,0.0,0.0 +5135,catchment_outflow,0.04135884743245032,2010-09-24,0.0,0.0,4.1723840107632295e-06,0.0,0.0,0.0,0.0,0.0,10.639658163082522,0.0,0.0,0.0 +5136,reservoir_outflow,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5137,gw1_gw2,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5138,gw2_gw1,0.005521986517503664,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5139,urban_drainage,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5140,percolation,0.06543494994443337,2010-09-25,0.0,0.0,8.108748955087125e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +5141,runoff,0.0030218301450790816,2010-09-25,0.0,0.0,3.8569443139025893e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 +5142,storm_outflow,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5143,baseflow,0.037442193630805344,2010-09-25,0.0,0.0,3.7013121789843094e-06,0.0,0.0,0.0,0.0,0.0,10.31905380767953,0.0,0.0,0.0 +5144,catchment_outflow,0.04046402377588443,2010-09-25,0.0,0.0,4.087006610374568e-06,0.0,0.0,0.0,0.0,0.0,10.585849424711096,0.0,0.0,0.0 +5145,reservoir_outflow,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5146,gw1_gw2,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5147,gw2_gw1,0.0054851732740534235,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5148,urban_drainage,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5149,percolation,0.0641262509455447,2010-09-26,0.0,0.0,7.946573975985381e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +5150,runoff,0.0026254867480906743,2010-09-26,0.0,0.0,3.0855554511220713e-07,0.0,0.0,0.0,0.0,0.0,13.809070829400728,0.0,0.0,0.0 +5151,storm_outflow,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5152,baseflow,0.037508903774092196,2010-09-26,0.0,0.0,3.711925333476813e-06,0.0,0.0,0.0,0.0,0.0,10.341448243528516,0.0,0.0,0.0 +5153,catchment_outflow,0.04013439052218287,2010-09-26,0.0,0.0,4.02048087858902e-06,0.0,0.0,0.0,0.0,0.0,10.568291034166021,0.0,0.0,0.0 +5154,reservoir_outflow,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5155,gw1_gw2,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5156,gw2_gw1,0.005448605452226474,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5157,urban_drainage,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5158,percolation,0.0628437259266338,2010-09-27,0.0,0.0,7.787642496465673e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +5159,runoff,0.0019494497337004559,2010-09-27,0.0,0.0,2.468444360897657e-07,0.0,0.0,0.0,0.0,0.0,13.881542141612014,0.0,0.0,0.0 +5160,storm_outflow,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5161,baseflow,0.037572240829473545,2010-09-27,0.0,0.0,3.7221146263842855e-06,0.0,0.0,0.0,0.0,0.0,10.36326415154945,0.0,0.0,0.0 +5162,catchment_outflow,0.039521690563174,2010-09-27,0.0,0.0,3.968959062474051e-06,0.0,0.0,0.0,0.0,0.0,10.536806983171196,0.0,0.0,0.0 +5163,reservoir_outflow,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5164,gw1_gw2,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5165,gw2_gw1,0.005412281415878262,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5166,urban_drainage,0.018,2010-09-28,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0 +5167,percolation,0.06158685140810111,2010-09-28,0.0,0.0,7.631889646536358e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +5168,runoff,0.0015471770342804897,2010-09-28,0.0,0.0,1.9747554887181254e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 +5169,storm_outflow,0.018,2010-09-28,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0 +5170,baseflow,0.03763227735592012,2010-09-28,0.0,0.0,3.7318890639346657e-06,0.0,0.0,0.0,0.0,0.0,10.384520376858246,0.0,0.0,0.0 +5171,catchment_outflow,0.057179454390200606,2010-09-28,0.0,0.0,8.929364612806478e-06,0.0,0.0,0.0,0.0,0.0,11.113885581103295,0.0,0.0,0.0 +5172,reservoir_outflow,0.009,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5173,gw1_gw2,0.0,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5174,gw2_gw1,0.005376199539772308,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5175,urban_drainage,0.023,2010-09-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0 +5176,percolation,0.06260694445321285,2010-09-29,0.0,0.0,7.778287570956313e-06,0.0,0.0,0.0,0.0,0.0,15.4340898401978,0.0,0.0,0.0 +5177,runoff,0.016645000023507987,2010-09-29,0.0,0.0,1.1547661635997208e-06,0.0,0.0,0.0,0.0,0.0,12.459961954145822,0.0,0.0,0.0 +5178,storm_outflow,0.023,2010-09-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0 +5179,baseflow,0.03769471402366335,2010-09-29,0.0,0.0,3.74200506020222e-06,0.0,0.0,0.0,0.0,0.0,10.405487382650191,0.0,0.0,0.0 +5180,catchment_outflow,0.07733971404717134,2010-09-29,0.0,0.0,5.896771223801941e-06,0.0,0.0,0.0,0.0,0.0,11.494963938233198,0.0,0.0,0.0 +5181,reservoir_outflow,0.0115,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5182,gw1_gw2,0.0,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5183,gw2_gw1,0.005340358209507201,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5184,urban_drainage,0.04,2010-09-30,0.0,0.0,6.779661016949151e-07,0.0,0.0,0.0,0.0,0.0,12.764285710000001,0.0,0.0,0.0 +5185,percolation,0.06767782172175668,2010-09-30,0.0,0.0,8.431426220996166e-06,0.0,0.0,0.0,0.0,0.0,15.13399360342495,0.0,0.0,0.0 +5186,runoff,0.050257815628338885,2010-09-30,0.0,0.0,3.6194942690763783e-06,0.0,0.0,0.0,0.0,0.0,12.479158314040358,0.0,0.0,0.0 +5187,storm_outflow,0.04,2010-09-30,0.0,0.0,6.779661016949151e-07,0.0,0.0,0.0,0.0,0.0,12.764285710000001,0.0,0.0,0.0 +5188,baseflow,0.037769671792908584,2010-09-30,0.0,0.0,3.7537286131042046e-06,0.0,0.0,0.0,0.0,0.0,10.426669390980477,0.0,0.0,0.0 +5189,catchment_outflow,0.12802748742124748,2010-09-30,0.0,0.0,8.051188983875498e-06,0.0,0.0,0.0,0.0,0.0,11.962732205273392,0.0,0.0,0.0 +5190,reservoir_outflow,0.029500000000000005,2010-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5191,gw1_gw2,0.0,2010-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5192,gw2_gw1,0.005304755821443941,2010-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5193,urban_drainage,0.04,2010-10-01,0.0,0.0,4.3345373714920804e-07,0.0,0.0,0.0,0.0,0.0,12.918062059016394,0.0,0.0,0.0 +5194,percolation,0.07941804247008427,2010-10-01,0.0,0.0,9.836761732329464e-06,0.0,0.0,0.0,0.0,0.0,14.681514840832817,0.0,0.0,0.0 +5195,runoff,0.11204643699495472,2010-10-01,0.0,0.0,8.142142201105169e-06,0.0,0.0,0.0,0.0,0.0,12.590689216107315,0.0,0.0,0.0 +5196,storm_outflow,0.04,2010-10-01,0.0,0.0,4.3345373714920804e-07,0.0,0.0,0.0,0.0,0.0,12.918062059016394,0.0,0.0,0.0 +5197,baseflow,0.03787379271960153,2010-10-01,0.0,0.0,3.7689361959022677e-06,0.0,0.0,0.0,0.0,0.0,10.44897449118141,0.0,0.0,0.0 +5198,catchment_outflow,0.18992022971455624,2010-10-01,0.0,0.0,1.2344532134156644e-05,0.0,0.0,0.0,0.0,0.0,12.232539134137475,0.0,0.0,0.0 +5199,reservoir_outflow,0.051500000000000004,2010-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5200,gw1_gw2,0.0,2010-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5201,gw2_gw1,0.005269390782634354,2010-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5202,urban_drainage,0.04,2010-10-02,0.0,0.0,4.2202908629181603e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 +5203,percolation,0.09193553486929412,2010-10-02,0.0,0.0,1.1241459545516488e-05,0.0,0.0,0.0,0.0,0.0,14.353861106841407,0.0,0.0,0.0 +5204,runoff,0.14939642008221754,2010-10-02,0.0,0.0,1.185182392032951e-05,0.0,0.0,0.0,0.0,0.0,12.667308054402678,0.0,0.0,0.0 +5205,storm_outflow,0.04,2010-10-02,0.0,0.0,4.2202908629181603e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 +5206,baseflow,0.03800894707497576,2010-10-02,0.0,0.0,3.7876175042763033e-06,0.0,0.0,0.0,0.0,0.0,10.472587210504212,0.0,0.0,0.0 +5207,catchment_outflow,0.2274053671571933,2010-10-02,0.0,0.0,1.606147051089763e-05,0.0,0.0,0.0,0.0,0.0,12.364650853938988,0.0,0.0,0.0 +5208,reservoir_outflow,0.0485,2010-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5209,gw1_gw2,0.0,2010-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5210,gw2_gw1,0.005234261510750038,2010-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5211,urban_drainage,0.04,2010-10-03,0.0,0.0,7.531453663707056e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 +5212,percolation,0.09159023634942778,2010-10-03,0.0,0.0,1.118695646869055e-05,0.0,0.0,0.0,0.0,0.0,14.326328153467053,0.0,0.0,0.0 +5213,runoff,0.09013984184568237,2010-10-03,0.0,0.0,1.0049212849878251e-05,0.0,0.0,0.0,0.0,0.0,12.501981337245448,0.0,0.0,0.0 +5214,storm_outflow,0.04,2010-10-03,0.0,0.0,7.531453663707056e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 +5215,baseflow,0.03814290029816189,2010-10-03,0.0,0.0,3.8061158516873387e-06,0.0,0.0,0.0,0.0,0.0,10.495721597312524,0.0,0.0,0.0 +5216,catchment_outflow,0.16828274214384426,2010-10-03,0.0,0.0,1.4608474067936296e-05,0.0,0.0,0.0,0.0,0.0,12.173258740765327,0.0,0.0,0.0 +5217,reservoir_outflow,0.0,2010-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5218,gw1_gw2,0.0,2010-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5219,gw2_gw1,0.005199366434011843,2010-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5220,urban_drainage,0.04,2010-10-04,0.0,0.0,1.2920979564254076e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0 +5221,percolation,0.09132251000771388,2010-10-04,0.0,0.0,1.1142312943407217e-05,0.0,0.0,0.0,0.0,0.0,14.300482045860853,0.0,0.0,0.0 +5222,runoff,0.07862142824591417,2010-10-04,0.0,0.0,8.636355626870867e-06,0.0,0.0,0.0,0.0,0.0,12.548931870087346,0.0,0.0,0.0 +5223,storm_outflow,0.04,2010-10-04,0.0,0.0,1.2920979564254076e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0 +5224,baseflow,0.038275849322435766,2010-10-04,0.0,0.0,3.824456344416639e-06,0.0,0.0,0.0,0.0,0.0,10.518416082235152,0.0,0.0,0.0 +5225,catchment_outflow,0.15689727756834995,2010-10-04,0.0,0.0,1.3752909927712915e-05,0.0,0.0,0.0,0.0,0.0,12.176767908614288,0.0,0.0,0.0 +5226,reservoir_outflow,0.0,2010-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5227,gw1_gw2,0.0,2010-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5228,gw2_gw1,0.005164703991118458,2010-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5229,urban_drainage,0.04,2010-10-05,0.0,0.0,1.3451709733710823e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +5230,percolation,0.09504788797871921,2010-10-05,0.0,0.0,1.1544414327136686e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5231,runoff,0.09649293987933313,2010-10-05,0.0,0.0,8.992243310155404e-06,0.0,0.0,0.0,0.0,0.0,12.8174301439984,0.0,0.0,0.0 +5232,storm_outflow,0.04,2010-10-05,0.0,0.0,1.3451709733710823e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +5233,baseflow,0.03841777941907648,2010-10-05,0.0,0.0,3.843756239373439e-06,0.0,0.0,0.0,0.0,0.0,10.541334378406901,0.0,0.0,0.0 +5234,catchment_outflow,0.17491071929840962,2010-10-05,0.0,0.0,1.4181170522899925e-05,0.0,0.0,0.0,0.0,0.0,12.423776852030109,0.0,0.0,0.0 +5235,reservoir_outflow,0.013999999999999999,2010-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5236,gw1_gw2,0.0,2010-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5237,gw2_gw1,0.005130272631177846,2010-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5238,urban_drainage,0.01299999999999998,2010-10-06,0.0,0.0,2.076136778696865e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +5239,percolation,0.09314693021914483,2010-10-06,0.0,0.0,1.1313526040593955e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 +5240,runoff,0.062013949352664965,2010-10-06,0.0,0.0,7.193794648124323e-06,0.0,0.0,0.0,0.0,0.0,12.606459348679058,0.0,0.0,0.0 +5241,storm_outflow,0.01299999999999998,2010-10-06,0.0,0.0,2.076136778696865e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +5242,baseflow,0.03855460229607665,2010-10-06,0.0,0.0,3.86243066387649e-06,0.0,0.0,0.0,0.0,0.0,10.563576177638202,0.0,0.0,0.0 +5243,catchment_outflow,0.1135685516487416,2010-10-06,0.0,0.0,1.3132362090697678e-05,0.0,0.0,0.0,0.0,0.0,11.990279003464334,0.0,0.0,0.0 +5244,reservoir_outflow,0.0,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5245,gw1_gw2,0.0,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5246,gw2_gw1,0.005096070813636722,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5247,urban_drainage,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5248,percolation,0.0912839916147619,2010-10-07,0.0,0.0,1.1087255519782071e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5249,runoff,0.0511935008843607,2010-10-07,0.0,0.0,5.755035718499459e-06,0.0,0.0,0.0,0.0,0.0,12.62853803236064,0.0,0.0,0.0 +5250,storm_outflow,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5251,baseflow,0.03868642576937337,2010-10-07,0.0,0.0,3.880492726016254e-06,0.0,0.0,0.0,0.0,0.0,10.585167664370033,0.0,0.0,0.0 +5252,catchment_outflow,0.08987992665373407,2010-10-07,0.0,0.0,9.635528444515714e-06,0.0,0.0,0.0,0.0,0.0,11.749023562292683,0.0,0.0,0.0 +5253,reservoir_outflow,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5254,gw1_gw2,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5255,gw2_gw1,0.005062097008212341,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5256,urban_drainage,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5257,percolation,0.08945831178246669,2010-10-08,0.0,0.0,1.0865510409386431e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5258,runoff,0.03943057460897744,2010-10-08,0.0,0.0,4.604028574799567e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +5259,storm_outflow,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5260,baseflow,0.0388133554844061,2010-10-08,0.0,0.0,3.89795527022468e-06,0.0,0.0,0.0,0.0,0.0,10.60613371187331,0.0,0.0,0.0 +5261,catchment_outflow,0.07824393009338354,2010-10-08,0.0,0.0,8.501983845024247e-06,0.0,0.0,0.0,0.0,0.0,11.611188666649538,0.0,0.0,0.0 +5262,reservoir_outflow,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5263,gw1_gw2,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5264,gw2_gw1,0.005028349694824463,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5265,urban_drainage,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5266,percolation,0.08766914554681736,2010-10-09,0.0,0.0,1.0648200201198703e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 +5267,runoff,0.03154445968718195,2010-10-09,0.0,0.0,3.6832228598396538e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +5268,storm_outflow,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5269,baseflow,0.038935494959562125,2010-10-09,0.0,0.0,3.914830882552115e-06,0.0,0.0,0.0,0.0,0.0,10.626497963410344,0.0,0.0,0.0 +5270,catchment_outflow,0.07047995464674407,2010-10-09,0.0,0.0,7.598053742391768e-06,0.0,0.0,0.0,0.0,0.0,11.50999995624857,0.0,0.0,0.0 +5271,reservoir_outflow,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5272,gw1_gw2,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5273,gw2_gw1,0.004994827363525545,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5274,urban_drainage,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5275,percolation,0.08591576263588101,2010-10-10,0.0,0.0,1.0435236197174728e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5276,runoff,0.025235567749745558,2010-10-10,0.0,0.0,2.9465782878717227e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +5277,storm_outflow,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5278,baseflow,0.03905294562875292,2010-10-10,0.0,0.0,3.931131895838671e-06,0.0,0.0,0.0,0.0,0.0,10.646282907436225,0.0,0.0,0.0 +5279,catchment_outflow,0.06428851337849847,2010-10-10,0.0,0.0,6.877710183710393e-06,0.0,0.0,0.0,0.0,0.0,11.413388217877904,0.0,0.0,0.0 +5280,reservoir_outflow,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5281,gw1_gw2,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5282,gw2_gw1,0.004961528514435188,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5283,urban_drainage,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5284,percolation,0.0841974473831634,2010-10-11,0.0,0.0,1.0226531473231234e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5285,runoff,0.020188454199796445,2010-10-11,0.0,0.0,2.357262630297378e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 +5286,storm_outflow,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5287,baseflow,0.039165806883138955,2010-10-11,0.0,0.0,3.946870394782153e-06,0.0,0.0,0.0,0.0,0.0,10.66550994734459,0.0,0.0,0.0 +5288,catchment_outflow,0.0593542610829354,2010-10-11,0.0,0.0,6.304133025079531e-06,0.0,0.0,0.0,0.0,0.0,11.32367135114448,0.0,0.0,0.0 +5289,reservoir_outflow,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5290,gw1_gw2,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5291,gw2_gw1,0.004928451657672283,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5292,urban_drainage,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5293,percolation,0.08251349843550011,2010-10-12,0.0,0.0,1.0022000843766609e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5294,runoff,0.016150763359837155,2010-10-12,0.0,0.0,1.8858101042379024e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 +5295,storm_outflow,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5296,baseflow,0.03927417611201986,2010-10-12,0.0,0.0,3.9620582209046145e-06,0.0,0.0,0.0,0.0,0.0,10.684199466214029,0.0,0.0,0.0 +5297,catchment_outflow,0.05542493947185702,2010-10-12,0.0,0.0,5.847868325142517e-06,0.0,0.0,0.0,0.0,0.0,11.242610487227877,0.0,0.0,0.0 +5298,reservoir_outflow,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5299,gw1_gw2,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5300,gw2_gw1,0.004895595313287516,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5301,urban_drainage,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5302,percolation,0.08086322846679012,2010-10-13,0.0,0.0,9.821560826891276e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 +5303,runoff,0.012920610687869724,2010-10-13,0.0,0.0,1.5086480833903218e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 +5304,storm_outflow,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5305,baseflow,0.03937814874290678,2010-10-13,0.0,0.0,3.976706977419581e-06,0.0,0.0,0.0,0.0,0.0,10.702370886968284,0.0,0.0,0.0 +5306,catchment_outflow,0.052298759430776505,2010-10-13,0.0,0.0,5.4853550608099025e-06,0.0,0.0,0.0,0.0,0.0,11.171313784387083,0.0,0.0,0.0 +5307,reservoir_outflow,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5308,gw1_gw2,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5309,gw2_gw1,0.0048629580111988705,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5310,urban_drainage,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5311,percolation,0.07924596389745432,2010-10-14,0.0,0.0,9.625129610353452e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 +5312,runoff,0.010336488550295779,2010-10-14,0.0,0.0,1.2069184667122576e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5313,storm_outflow,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5314,baseflow,0.03947781828079315,2010-10-14,0.0,0.0,3.990828034001915e-06,0.0,0.0,0.0,0.0,0.0,10.720042728324856,0.0,0.0,0.0 +5315,catchment_outflow,0.04981430683108893,2010-10-14,0.0,0.0,5.197746500714172e-06,0.0,0.0,0.0,0.0,0.0,11.110240682963983,0.0,0.0,0.0 +5316,reservoir_outflow,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5317,gw1_gw2,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5318,gw2_gw1,0.0048305382911243205,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5319,urban_drainage,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5320,percolation,0.07766104461950522,2010-10-15,0.0,0.0,9.432627018146382e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +5321,runoff,0.008269190840236623,2010-10-15,0.0,0.0,9.65534773369806e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5322,storm_outflow,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5323,baseflow,0.03957327634663993,2010-10-15,0.0,0.0,4.004432531462276e-06,0.0,0.0,0.0,0.0,0.0,10.737232656872028,0.0,0.0,0.0 +5324,catchment_outflow,0.047842467186876556,2010-10-15,0.0,0.0,4.969967304832083e-06,0.0,0.0,0.0,0.0,0.0,11.059285565429915,0.0,0.0,0.0 +5325,reservoir_outflow,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5326,gw1_gw2,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5327,gw2_gw1,0.004798334702516805,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5328,urban_drainage,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5329,percolation,0.07610782372711512,2010-10-16,0.0,0.0,9.243974477783456e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5330,runoff,0.006615352672189298,2010-10-16,0.0,0.0,7.724278186958448e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5331,storm_outflow,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5332,baseflow,0.03966461271509111,2010-10-16,0.0,0.0,4.01753138632808e-06,0.0,0.0,0.0,0.0,0.0,10.753957535583346,0.0,0.0,0.0 +5333,catchment_outflow,0.04627996538728041,2010-10-16,0.0,0.0,4.7899592050239245e-06,0.0,0.0,0.0,0.0,0.0,11.017907681068493,0.0,0.0,0.0 +5334,reservoir_outflow,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5335,gw1_gw2,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5336,gw2_gw1,0.004766345804500105,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5337,urban_drainage,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5338,percolation,0.07458566725257282,2010-10-17,0.0,0.0,9.059094988227786e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +5339,runoff,0.0052922821377514384,2010-10-17,0.0,0.0,6.17942254956676e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5340,storm_outflow,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5341,baseflow,0.03975191535143482,2010-10-17,0.0,0.0,4.030135295332829e-06,0.0,0.0,0.0,0.0,0.0,10.770233469050691,0.0,0.0,0.0 +5342,catchment_outflow,0.045044197489186255,2010-10-17,0.0,0.0,4.648077550289505e-06,0.0,0.0,0.0,0.0,0.0,10.98527439741837,0.0,0.0,0.0 +5343,reservoir_outflow,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5344,gw1_gw2,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5345,gw2_gw1,0.00473457016580312,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5346,urban_drainage,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5347,percolation,0.07309395390752135,2010-10-18,0.0,0.0,8.877913088463229e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +5348,runoff,0.004233825710201151,2010-10-18,0.0,0.0,4.943538039653407e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5349,storm_outflow,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5350,baseflow,0.03983527044782503,2010-10-18,0.0,0.0,4.042254739815655e-06,0.0,0.0,0.0,0.0,0.0,10.786075845692022,0.0,0.0,0.0 +5351,catchment_outflow,0.044069096158026184,2010-10-18,0.0,0.0,4.536608543780996e-06,0.0,0.0,0.0,0.0,0.0,10.960393080323744,0.0,0.0,0.0 +5352,reservoir_outflow,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5353,gw1_gw2,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5354,gw2_gw1,0.004703006364697871,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5355,urban_drainage,0.011,2010-10-19,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 +5356,percolation,0.07163207482937092,2010-10-19,0.0,0.0,8.700354826693965e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +5357,runoff,0.0033870605681609206,2010-10-19,0.0,0.0,3.954830431722726e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5358,storm_outflow,0.011,2010-10-19,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 +5359,baseflow,0.0399147624587789,2010-10-19,0.0,0.0,4.053899990032851e-06,0.0,0.0,0.0,0.0,0.0,10.801499377167273,0.0,0.0,0.0 +5360,catchment_outflow,0.054301823026939824,2010-10-19,0.0,0.0,1.7449383033205128e-05,0.0,0.0,0.0,0.0,0.0,10.726029881380747,0.0,0.0,0.0 +5361,reservoir_outflow,0.0055,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5362,gw1_gw2,0.0,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5363,gw2_gw1,0.004671652988933239,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5364,urban_drainage,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5365,percolation,0.07019943333278351,2010-10-20,0.0,0.0,8.526347730160087e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +5366,runoff,0.0027096484545287365,2010-10-20,0.0,0.0,3.1638643453781804e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5367,storm_outflow,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5368,baseflow,0.03999047413596391,2010-10-20,0.0,0.0,4.065081109383169e-06,0.0,0.0,0.0,0.0,0.0,10.816518135215555,0.0,0.0,0.0 +5369,catchment_outflow,0.04270012259049265,2010-10-20,0.0,0.0,4.381467543920987e-06,0.0,0.0,0.0,0.0,0.0,10.92972610062566,0.0,0.0,0.0 +5370,reservoir_outflow,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5371,gw1_gw2,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5372,gw2_gw1,0.004640508635673868,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5373,urban_drainage,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5374,percolation,0.06879544466612784,2010-10-21,0.0,0.0,8.355820775556885e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +5375,runoff,0.0021677187636229894,2010-10-21,0.0,0.0,2.5310914763025445e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5376,storm_outflow,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5377,baseflow,0.04006248656228933,2010-10-21,0.0,0.0,4.075807958548603e-06,0.0,0.0,0.0,0.0,0.0,10.83114558610834,0.0,0.0,0.0 +5378,catchment_outflow,0.04223020532591232,2010-10-21,0.0,0.0,4.328917106178858e-06,0.0,0.0,0.0,0.0,0.0,10.921968895434464,0.0,0.0,0.0 +5379,reservoir_outflow,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5380,gw1_gw2,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5381,gw2_gw1,0.004609571911436206,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5382,urban_drainage,0.032,2010-10-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 +5383,percolation,0.0674195357728053,2010-10-22,0.0,0.0,8.188704360045748e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +5384,runoff,0.0017341750108983913,2010-10-22,0.0,0.0,2.0248731810420352e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +5385,storm_outflow,0.032,2010-10-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 +5386,baseflow,0.04013087918531562,2010-10-22,0.0,0.0,4.086090199552345e-06,0.0,0.0,0.0,0.0,0.0,10.845394622896785,0.0,0.0,0.0 +5387,catchment_outflow,0.073865054196214,2010-10-22,0.0,0.0,7.288577517656549e-06,0.0,0.0,0.0,0.0,0.0,9.974186898113901,0.0,0.0,0.0 +5388,reservoir_outflow,0.016,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5389,gw1_gw2,0.0,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5390,gw2_gw1,0.004578841432026692,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5391,urban_drainage,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5392,percolation,0.06665263296900076,2010-10-23,0.0,0.0,8.09965636895113e-06,0.0,0.0,0.0,0.0,0.0,14.177874882313494,0.0,0.0,0.0 +5393,runoff,0.005365941509492616,2010-10-23,0.0,0.0,4.110768415043569e-07,0.0,0.0,0.0,0.0,0.0,9.673636267650082,0.0,0.0,0.0 +5394,storm_outflow,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5395,baseflow,0.04019718356977482,2010-10-23,0.0,0.0,4.096124114975843e-06,0.0,0.0,0.0,0.0,0.0,10.85920893548549,0.0,0.0,0.0 +5396,catchment_outflow,0.045563125079267436,2010-10-23,0.0,0.0,4.507200956480199e-06,0.0,0.0,0.0,0.0,0.0,10.719584763969813,0.0,0.0,0.0 +5397,reservoir_outflow,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5398,gw1_gw2,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5399,gw2_gw1,0.0045483158224799425,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5400,urban_drainage,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5401,percolation,0.06531958030962075,2010-10-24,0.0,0.0,7.937663241572108e-06,0.0,0.0,0.0,0.0,0.0,14.177874882313493,0.0,0.0,0.0 +5402,runoff,0.00280385304055727,2010-10-24,0.0,0.0,3.2886147320348547e-07,0.0,0.0,0.0,0.0,0.0,10.351468808135987,0.0,0.0,0.0 +5403,storm_outflow,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5404,baseflow,0.04025998956162444,2010-10-24,0.0,0.0,4.105727962792333e-06,0.0,0.0,0.0,0.0,0.0,10.87266980999111,0.0,0.0,0.0 +5405,catchment_outflow,0.043063842602181705,2010-10-24,0.0,0.0,4.434589435995818e-06,0.0,0.0,0.0,0.0,0.0,10.838734821251418,0.0,0.0,0.0 +5406,reservoir_outflow,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5407,gw1_gw2,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5408,gw2_gw1,0.004517993716996571,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5409,urban_drainage,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5410,percolation,0.06401318870342833,2010-10-25,0.0,0.0,7.778909976740667e-06,0.0,0.0,0.0,0.0,0.0,14.17787488231349,0.0,0.0,0.0 +5411,runoff,0.0026251898686693695,2010-10-25,0.0,0.0,2.6308917856278843e-07,0.0,0.0,0.0,0.0,0.0,9.934963481033437,0.0,0.0,0.0 +5412,storm_outflow,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5413,baseflow,0.04031937255947895,2010-10-25,0.0,0.0,4.114910917827204e-06,0.0,0.0,0.0,0.0,0.0,10.885788610121619,0.0,0.0,0.0 +5414,catchment_outflow,0.04294456242814832,2010-10-25,0.0,0.0,4.378000096389992e-06,0.0,0.0,0.0,0.0,0.0,10.827664918677915,0.0,0.0,0.0 +5415,reservoir_outflow,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5416,gw1_gw2,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5417,gw2_gw1,0.004487873758883154,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5418,urban_drainage,0.034,2010-10-26,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +5419,percolation,0.0634046142924804,2010-10-26,0.0,0.0,7.709183701853314e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342851,0.0,0.0,0.0 +5420,runoff,0.00629849344696424,2010-10-26,0.0,0.0,4.966444250084291e-07,0.0,0.0,0.0,0.0,0.0,8.369749999595145,0.0,0.0,0.0 +5421,storm_outflow,0.034,2010-10-26,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +5422,baseflow,0.04037708566381145,2010-10-26,0.0,0.0,4.1238965997872685e-06,0.0,0.0,0.0,0.0,0.0,10.898454462603954,0.0,0.0,0.0 +5423,catchment_outflow,0.08067557911077569,2010-10-26,0.0,0.0,8.620541024795697e-06,0.0,0.0,0.0,0.0,0.0,9.152889301866297,0.0,0.0,0.0 +5424,reservoir_outflow,0.017,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5425,gw1_gw2,0.0,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5426,gw2_gw1,0.0044579546004909435,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5427,urban_drainage,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5428,percolation,0.062136522006630786,2010-10-27,0.0,0.0,7.5550000278162466e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 +5429,runoff,0.005255012329338032,2010-10-27,0.0,0.0,3.9731554000674326e-07,0.0,0.0,0.0,0.0,0.0,8.521188216958523,0.0,0.0,0.0 +5430,storm_outflow,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5431,baseflow,0.040431484254668505,2010-10-27,0.0,0.0,4.132474358357341e-06,0.0,0.0,0.0,0.0,0.0,10.910801634260393,0.0,0.0,0.0 +5432,catchment_outflow,0.04568649658400654,2010-10-27,0.0,0.0,4.529789898364084e-06,0.0,0.0,0.0,0.0,0.0,10.63594037526272,0.0,0.0,0.0 +5433,reservoir_outflow,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5434,gw1_gw2,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5435,gw2_gw1,0.004428234903154227,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5436,urban_drainage,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5437,percolation,0.06089379156649817,2010-10-28,0.0,0.0,7.403900027259921e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 +5438,runoff,0.003094132558361937,2010-10-28,0.0,0.0,3.1785243200539463e-07,0.0,0.0,0.0,0.0,0.0,8.899749919201192,0.0,0.0,0.0 +5439,storm_outflow,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5440,baseflow,0.04048264002294808,2010-10-28,0.0,0.0,4.140652922529597e-06,0.0,0.0,0.0,0.0,0.0,10.92284014067621,0.0,0.0,0.0 +5441,catchment_outflow,0.04357677258131002,2010-10-28,0.0,0.0,4.458505354534992e-06,0.0,0.0,0.0,0.0,0.0,10.779192299131967,0.0,0.0,0.0 +5442,reservoir_outflow,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5443,gw1_gw2,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5444,gw2_gw1,0.004398713337133132,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5445,urban_drainage,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5446,percolation,0.05967591573516821,2010-10-29,0.0,0.0,7.255822026714723e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 +5447,runoff,0.002508213612170032,2010-10-29,0.0,0.0,2.542819456043157e-07,0.0,0.0,0.0,0.0,0.0,8.987798572285575,0.0,0.0,0.0 +5448,storm_outflow,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5449,baseflow,0.04053062321222864,2010-10-29,0.0,0.0,4.148440845290061e-06,0.0,0.0,0.0,0.0,0.0,10.934579597197391,0.0,0.0,0.0 +5450,catchment_outflow,0.04303883682439867,2010-10-29,0.0,0.0,4.402722790894377e-06,0.0,0.0,0.0,0.0,0.0,10.82112526090757,0.0,0.0,0.0 +5451,reservoir_outflow,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5452,gw1_gw2,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5453,gw2_gw1,0.004369388581552336,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5454,urban_drainage,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5455,percolation,0.05848239742046484,2010-10-30,0.0,0.0,7.110705586180428e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342855,0.0,0.0,0.0 +5456,runoff,0.002799921428457474,2010-10-30,0.0,0.0,2.0342555648345262e-07,0.0,0.0,0.0,0.0,0.0,9.120472906389272,0.0,0.0,0.0 +5457,storm_outflow,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5458,baseflow,0.040575502647749236,2010-10-30,0.0,0.0,4.1558465071422875e-06,0.0,0.0,0.0,0.0,0.0,10.946029238729267,0.0,0.0,0.0 +5459,catchment_outflow,0.04337542407620671,2010-10-30,0.0,0.0,4.35927206362574e-06,0.0,0.0,0.0,0.0,0.0,10.828187986392582,0.0,0.0,0.0 +5460,reservoir_outflow,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5461,gw1_gw2,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5462,gw2_gw1,0.004340259324341922,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5463,urban_drainage,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5464,percolation,0.05731274947205555,2010-10-31,0.0,0.0,6.96849147445682e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +5465,runoff,0.0016322656601499444,2010-10-31,0.0,0.0,1.627404451867621e-07,0.0,0.0,0.0,0.0,0.0,9.190481625418736,0.0,0.0,0.0 +5466,storm_outflow,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5467,baseflow,0.04061734576481,2010-10-31,0.0,0.0,4.1628781195605735e-06,0.0,0.0,0.0,0.0,0.0,10.957197938368624,0.0,0.0,0.0 +5468,catchment_outflow,0.04224961142495994,2010-10-31,0.0,0.0,4.325618564747336e-06,0.0,0.0,0.0,0.0,0.0,10.8889428640237,0.0,0.0,0.0 +5469,reservoir_outflow,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5470,gw1_gw2,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5471,gw2_gw1,0.004311324262179639,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5472,urban_drainage,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5473,percolation,0.05616649448261444,2010-11-01,0.0,0.0,6.829121644967684e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +5474,runoff,0.0013655303546112705,2010-11-01,0.0,0.0,1.3019235614940965e-07,0.0,0.0,0.0,0.0,0.0,9.33385996467966,0.0,0.0,0.0 +5475,storm_outflow,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5476,baseflow,0.040656218636604506,2010-11-01,0.0,0.0,4.169543728374092e-06,0.0,0.0,0.0,0.0,0.0,10.968094224948745,0.0,0.0,0.0 +5477,catchment_outflow,0.042021748991215774,2010-11-01,0.0,0.0,4.299736084523502e-06,0.0,0.0,0.0,0.0,0.0,10.914988475128345,0.0,0.0,0.0 +5478,reservoir_outflow,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5479,gw1_gw2,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5480,gw2_gw1,0.004282582100431753,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5481,urban_drainage,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5482,percolation,0.05504316459296214,2010-11-02,0.0,0.0,6.6925392120683295e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342858,0.0,0.0,0.0 +5483,runoff,0.0010298993804124129,2010-11-02,0.0,0.0,1.041538849195277e-07,0.0,0.0,0.0,0.0,0.0,9.379038258263094,0.0,0.0,0.0 +5484,storm_outflow,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5485,baseflow,0.0406921860014954,2010-11-02,0.0,0.0,4.175851217083327e-06,0.0,0.0,0.0,0.0,0.0,10.978726299570706,0.0,0.0,0.0 +5486,catchment_outflow,0.04172208538190781,2010-11-02,0.0,0.0,4.280005102002855e-06,0.0,0.0,0.0,0.0,0.0,10.939238395082828,0.0,0.0,0.0 +5487,reservoir_outflow,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5488,gw1_gw2,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5489,gw2_gw1,0.004254031553095672,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5490,urban_drainage,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5491,percolation,0.0539423013011029,2010-11-03,0.0,0.0,6.558688427826964e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +5492,runoff,0.0006613056212210211,2010-11-03,0.0,0.0,8.332310793562215e-08,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +5493,storm_outflow,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5494,baseflow,0.040725311289744416,2010-11-03,0.0,0.0,4.1818083101101865e-06,0.0,0.0,0.0,0.0,0.0,10.989102051188627,0.0,0.0,0.0 +5495,catchment_outflow,0.041386616910965436,2010-11-03,0.0,0.0,4.265131418045809e-06,0.0,0.0,0.0,0.0,0.0,10.958185028958932,0.0,0.0,0.0 +5496,reservoir_outflow,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5497,gw1_gw2,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5498,gw2_gw1,0.004225671342741677,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5499,urban_drainage,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5500,percolation,0.05286345527508086,2010-11-04,0.0,0.0,6.427514659270427e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +5501,runoff,0.0005290444969768169,2010-11-04,0.0,0.0,6.665848634849773e-08,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +5502,storm_outflow,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5503,baseflow,0.040755656649707754,2010-11-04,0.0,0.0,4.187422575983088e-06,0.0,0.0,0.0,0.0,0.0,10.99922907131146,0.0,0.0,0.0 +5504,catchment_outflow,0.041284701146684574,2010-11-04,0.0,0.0,4.254081062331585e-06,0.0,0.0,0.0,0.0,0.0,10.974304622793609,0.0,0.0,0.0 +5505,reservoir_outflow,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5506,gw1_gw2,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5507,gw2_gw1,0.004197500200456616,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5508,urban_drainage,0.04,2010-11-05,0.0,0.0,4.210526315789474e-06,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +5509,percolation,0.05180618616957923,2010-11-05,0.0,0.0,6.2989643660850166e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +5510,runoff,0.0004232355975814535,2010-11-05,0.0,0.0,5.3326789078798185e-08,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +5511,storm_outflow,0.04,2010-11-05,0.0,0.0,4.210526315789474e-06,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +5512,baseflow,0.04078328297350743,2010-11-05,0.0,0.0,4.192701430458342e-06,0.0,0.0,0.0,0.0,0.0,11.009114667879247,0.0,0.0,0.0 +5513,catchment_outflow,0.08120651857108888,2010-11-05,0.0,0.0,8.456554535326615e-06,0.0,0.0,0.0,0.0,0.0,10.292522325267699,0.0,0.0,0.0 +5514,reservoir_outflow,0.0475,2010-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5515,gw1_gw2,0.0,2010-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5516,gw2_gw1,0.00416951686578706,2010-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5517,urban_drainage,0.04,2010-11-06,0.0,0.0,3.1950464396284835e-06,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0 +5518,percolation,0.05694658780717322,2010-11-06,0.0,0.0,6.962801414391518e-06,0.0,0.0,0.0,0.0,0.0,13.629970905946246,0.0,0.0,0.0 +5519,runoff,0.04259902515849276,2010-11-06,0.0,0.0,2.6753825500237096e-06,0.0,0.0,0.0,0.0,0.0,9.42445352689905,0.0,0.0,0.0 +5520,storm_outflow,0.04,2010-11-06,0.0,0.0,3.1950464396284835e-06,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0 +5521,baseflow,0.04082369123559159,2010-11-06,0.0,0.0,4.199626680418176e-06,0.0,0.0,0.0,0.0,0.0,11.018254508947866,0.0,0.0,0.0 +5522,catchment_outflow,0.12342271639408436,2010-11-06,0.0,0.0,1.0070055670070369e-05,0.0,0.0,0.0,0.0,0.0,9.957520553628951,0.0,0.0,0.0 +5523,reservoir_outflow,0.015,2010-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5524,gw1_gw2,0.0,2010-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5525,gw2_gw1,0.004141720086681922,2010-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5526,urban_drainage,0.04,2010-11-07,0.0,0.0,1.2501842842400117e-06,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0 +5527,percolation,0.07068188929382513,2010-11-07,0.0,0.0,8.614507127616985e-06,0.0,0.0,0.0,0.0,0.0,12.72398330435917,0.0,0.0,0.0 +5528,runoff,0.118512674634382,2010-11-07,0.0,0.0,8.110178511729956e-06,0.0,0.0,0.0,0.0,0.0,9.151590484252889,0.0,0.0,0.0 +5529,storm_outflow,0.04,2010-11-07,0.0,0.0,1.2501842842400117e-06,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0 +5530,baseflow,0.04089833673073718,2010-11-07,0.0,0.0,4.210663881536173e-06,0.0,0.0,0.0,0.0,0.0,11.02562425448766,0.0,0.0,0.0 +5531,catchment_outflow,0.19941101136511918,2010-11-07,0.0,0.0,1.357102667750614e-05,0.0,0.0,0.0,0.0,0.0,9.508362507687135,0.0,0.0,0.0 +5532,reservoir_outflow,0.051000000000000004,2010-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5533,gw1_gw2,0.0,2010-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5534,gw2_gw1,0.004114108619437041,2010-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5535,urban_drainage,0.04,2010-11-08,0.0,0.0,1.306539236193092e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 +5536,percolation,0.07503775919699102,2010-11-08,0.0,0.0,9.125962648199352e-06,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 +5537,runoff,0.09253348496854556,2010-11-08,0.0,0.0,8.767295019832985e-06,0.0,0.0,0.0,0.0,0.0,9.118562403044265,0.0,0.0,0.0 +5538,storm_outflow,0.04,2010-11-08,0.0,0.0,1.306539236193092e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 +5539,baseflow,0.040983685286902806,2010-11-08,0.0,0.0,4.22295212845283e-06,0.0,0.0,0.0,0.0,0.0,11.03209532697629,0.0,0.0,0.0 +5540,catchment_outflow,0.17351717025544836,2010-11-08,0.0,0.0,1.4296786384478907e-05,0.0,0.0,0.0,0.0,0.0,9.521020229942325,0.0,0.0,0.0 +5541,reservoir_outflow,0.013,2010-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5542,gw1_gw2,0.0,2010-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5543,gw2_gw1,0.0040866812286409985,2010-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5544,urban_drainage,0.04,2010-11-09,0.0,0.0,2.1534419862127684e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 +5545,percolation,0.0735370040130512,2010-11-09,0.0,0.0,8.943443395235366e-06,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 +5546,runoff,0.058697865987687135,2010-11-09,0.0,0.0,7.01383601586639e-06,0.0,0.0,0.0,0.0,0.0,9.287623415902955,0.0,0.0,0.0 +5547,storm_outflow,0.04,2010-11-09,0.0,0.0,2.1534419862127684e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 +5548,baseflow,0.04106506858371819,2010-11-09,0.0,0.0,4.234753356619787e-06,0.0,0.0,0.0,0.0,0.0,11.03839543996988,0.0,0.0,0.0 +5549,catchment_outflow,0.13976293457140532,2010-11-09,0.0,0.0,1.3402031358698946e-05,0.0,0.0,0.0,0.0,0.0,9.69218593479797,0.0,0.0,0.0 +5550,reservoir_outflow,0.0,2010-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5551,gw1_gw2,0.0,2010-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5552,gw2_gw1,0.004059436687116858,2010-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5553,urban_drainage,0.04,2010-11-10,0.0,0.0,1.9891460261628773e-06,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0 +5554,percolation,0.07719645393059511,2010-11-10,0.0,0.0,9.370205338021278e-06,0.0,0.0,0.0,0.0,0.0,12.169789571889762,0.0,0.0,0.0 +5555,runoff,0.08136664292279017,2010-11-10,0.0,0.0,7.629838181661845e-06,0.0,0.0,0.0,0.0,0.0,8.766089497489158,0.0,0.0,0.0 +5556,storm_outflow,0.04,2010-11-10,0.0,0.0,1.9891460261628773e-06,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0 +5557,baseflow,0.04115539704708537,2010-11-10,0.0,0.0,4.247591986573291e-06,0.0,0.0,0.0,0.0,0.0,11.043700917577238,0.0,0.0,0.0 +5558,catchment_outflow,0.16252203996987555,2010-11-10,0.0,0.0,1.3866576194398013e-05,0.0,0.0,0.0,0.0,0.0,9.263434918667114,0.0,0.0,0.0 +5559,reservoir_outflow,0.0115,2010-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5560,gw1_gw2,0.0,2010-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5561,gw2_gw1,0.004032373775869401,2010-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5562,urban_drainage,0.028999999999999967,2010-11-11,0.0,0.0,1.8951157117732932e-06,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0 +5563,percolation,0.07929757487195305,2010-11-11,0.0,0.0,9.610081667582625e-06,0.0,0.0,0.0,0.0,0.0,11.9825521142086,0.0,0.0,0.0 +5564,runoff,0.0756325969371698,2010-11-11,0.0,0.0,7.52813866640205e-06,0.0,0.0,0.0,0.0,0.0,8.624143476734899,0.0,0.0,0.0 +5565,storm_outflow,0.028999999999999967,2010-11-11,0.0,0.0,1.8951157117732932e-06,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0 +5566,baseflow,0.04125075249164754,2010-11-11,0.0,0.0,4.260998210775814e-06,0.0,0.0,0.0,0.0,0.0,11.048212873030268,0.0,0.0,0.0 +5567,catchment_outflow,0.1458833494288173,2010-11-11,0.0,0.0,1.3684252588951157e-05,0.0,0.0,0.0,0.0,0.0,9.195792741981649,0.0,0.0,0.0 +5568,reservoir_outflow,0.0055,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5569,gw1_gw2,0.0,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5570,gw2_gw1,0.00400549128403025,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5571,urban_drainage,0.008999999999999998,2010-11-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +5572,percolation,0.08103873939755496,2010-11-12,0.0,0.0,9.805614615377974e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +5573,runoff,0.07303883624782023,2010-11-12,0.0,0.0,7.314959536944992e-06,0.0,0.0,0.0,0.0,0.0,8.423743926466049,0.0,0.0,0.0 +5574,storm_outflow,0.008999999999999998,2010-11-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +5575,baseflow,0.0413502224589123,2010-11-12,0.0,0.0,4.274859751787319e-06,0.0,0.0,0.0,0.0,0.0,11.0519517331324,0.0,0.0,0.0 +5576,catchment_outflow,0.12338905870673253,2010-11-12,0.0,0.0,1.2589819288732311e-05,0.0,0.0,0.0,0.0,0.0,9.206393749788187,0.0,0.0,0.0 +5577,reservoir_outflow,0.004499999999999999,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5578,gw1_gw2,0.0,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5579,gw2_gw1,0.003978788008803491,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5580,urban_drainage,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5581,percolation,0.07941796460960386,2010-11-13,0.0,0.0,9.609502323070417e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +5582,runoff,0.0530128201861446,2010-11-13,0.0,0.0,5.851967629555994e-06,0.0,0.0,0.0,0.0,0.0,8.536662633106332,0.0,0.0,0.0 +5583,storm_outflow,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5584,baseflow,0.04144539181428903,2010-11-13,0.0,0.0,4.288196358215527e-06,0.0,0.0,0.0,0.0,0.0,11.055589491270965,0.0,0.0,0.0 +5585,catchment_outflow,0.09445821200043364,2010-11-13,0.0,0.0,1.014016398777152e-05,0.0,0.0,0.0,0.0,0.0,9.64189116090961,0.0,0.0,0.0 +5586,reservoir_outflow,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5587,gw1_gw2,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5588,gw2_gw1,0.003952262755411518,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5589,urban_drainage,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5590,percolation,0.07782960531741179,2010-11-14,0.0,0.0,9.417312276609009e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +5591,runoff,0.04083788473020405,2010-11-14,0.0,0.0,4.681574103644795e-06,0.0,0.0,0.0,0.0,0.0,8.592867617009663,0.0,0.0,0.0 +5592,storm_outflow,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5593,baseflow,0.04153635234804684,2010-11-14,0.0,0.0,4.30101914801151e-06,0.0,0.0,0.0,0.0,0.0,11.059129646427545,0.0,0.0,0.0 +5594,catchment_outflow,0.0823742370782509,2010-11-14,0.0,0.0,8.982593251656306e-06,0.0,0.0,0.0,0.0,0.0,9.836454596021055,0.0,0.0,0.0 +5595,reservoir_outflow,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5596,gw1_gw2,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5597,gw2_gw1,0.003925914337041903,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5598,urban_drainage,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5599,percolation,0.07627301321106356,2010-11-15,0.0,0.0,9.228966031076829e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +5600,runoff,0.03216764926749016,2010-11-15,0.0,0.0,3.745259282915835e-06,0.0,0.0,0.0,0.0,0.0,8.619177932758282,0.0,0.0,0.0 +5601,storm_outflow,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5602,baseflow,0.04162319400020438,2010-11-15,0.0,0.0,4.313339015219174e-06,0.0,0.0,0.0,0.0,0.0,11.062575542087503,0.0,0.0,0.0 +5603,catchment_outflow,0.07379084326769454,2010-11-15,0.0,0.0,8.058598298135008e-06,0.0,0.0,0.0,0.0,0.0,9.997424991730037,0.0,0.0,0.0 +5604,reservoir_outflow,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5605,gw1_gw2,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5606,gw2_gw1,0.0038997415747946463,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5607,urban_drainage,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5608,percolation,0.075941567918803,2010-11-16,0.0,0.0,9.187764755158687e-06,0.0,0.0,0.0,0.0,0.0,11.730663775861334,0.0,0.0,0.0 +5609,runoff,0.033304575650917004,2010-11-16,0.0,0.0,3.474134242010652e-06,0.0,0.0,0.0,0.0,0.0,8.072336277894257,0.0,0.0,0.0 +5610,storm_outflow,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5611,baseflow,0.04170898993500088,2010-11-16,0.0,0.0,4.325525079569022e-06,0.0,0.0,0.0,0.0,0.0,11.06561659319303,0.0,0.0,0.0 +5612,catchment_outflow,0.07501356558591787,2010-11-16,0.0,0.0,7.799659321579674e-06,0.0,0.0,0.0,0.0,0.0,9.736657891835376,0.0,0.0,0.0 +5613,reservoir_outflow,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5614,gw1_gw2,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5615,gw2_gw1,0.0038737432976295953,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5616,urban_drainage,0.024,2010-11-17,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5617,percolation,0.07851038724452097,2010-11-17,0.0,0.0,9.487339778906863e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5618,runoff,0.05126017580639956,2010-11-17,0.0,0.0,4.39040845644635e-06,0.0,0.0,0.0,0.0,0.0,7.162387153116985,0.0,0.0,0.0 +5619,storm_outflow,0.024,2010-11-17,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5620,baseflow,0.04180099342827468,2010-11-17,0.0,0.0,4.338429616317367e-06,0.0,0.0,0.0,0.0,0.0,11.067432945593382,0.0,0.0,0.0 +5621,catchment_outflow,0.11706116923467424,2010-11-17,0.0,0.0,1.3728838072763715e-05,0.0,0.0,0.0,0.0,0.0,8.293618089860313,0.0,0.0,0.0 +5622,reservoir_outflow,0.012,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5623,gw1_gw2,0.0,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5624,gw2_gw1,0.0038479183423119068,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5625,urban_drainage,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5626,percolation,0.07694017949963056,2010-11-18,0.0,0.0,9.297592983328726e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5627,runoff,0.03126137096760716,2010-11-18,0.0,0.0,3.51232676515708e-06,0.0,0.0,0.0,0.0,0.0,7.569763478176624,0.0,0.0,0.0 +5628,storm_outflow,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5629,baseflow,0.041888841393453065,2010-11-18,0.0,0.0,4.350827524734895e-06,0.0,0.0,0.0,0.0,0.0,11.069200897377023,0.0,0.0,0.0 +5630,catchment_outflow,0.07315021236106023,2010-11-18,0.0,0.0,7.863154289891975e-06,0.0,0.0,0.0,0.0,0.0,9.573686286980832,0.0,0.0,0.0 +5631,reservoir_outflow,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5632,gw1_gw2,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5633,gw2_gw1,0.0038222655533632025,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5634,urban_drainage,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5635,percolation,0.07540137590963794,2010-11-19,0.0,0.0,9.111641123662151e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5636,runoff,0.026565883638017943,2010-11-19,0.0,0.0,2.8098614121256643e-06,0.0,0.0,0.0,0.0,0.0,7.492414650958526,0.0,0.0,0.0 +5637,storm_outflow,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5638,baseflow,0.04197262272974353,2010-11-19,0.0,0.0,4.362729558732214e-06,0.0,0.0,0.0,0.0,0.0,11.0709220916491,0.0,0.0,0.0 +5639,catchment_outflow,0.06853850636776147,2010-11-19,0.0,0.0,7.172590970857878e-06,0.0,0.0,0.0,0.0,0.0,9.683873886118265,0.0,0.0,0.0 +5640,reservoir_outflow,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5641,gw1_gw2,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5642,gw2_gw1,0.003796783783007385,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5643,urban_drainage,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5644,percolation,0.07389334839144518,2010-11-20,0.0,0.0,8.929408301188909e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5645,runoff,0.019866166820644297,2010-11-20,0.0,0.0,2.2478891297005305e-06,0.0,0.0,0.0,0.0,0.0,7.59334563943792,0.0,0.0,0.0 +5646,storm_outflow,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5647,baseflow,0.04205242454389777,2010-11-20,0.0,0.0,4.374146255588355e-06,0.0,0.0,0.0,0.0,0.0,11.07259810000806,0.0,0.0,0.0 +5648,catchment_outflow,0.06191859136454207,2010-11-20,0.0,0.0,6.622035385288885e-06,0.0,0.0,0.0,0.0,0.0,9.956303167103545,0.0,0.0,0.0 +5649,reservoir_outflow,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5650,gw1_gw2,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5651,gw2_gw1,0.003771471891120726,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5652,urban_drainage,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5653,percolation,0.07241548142361628,2010-11-21,0.0,0.0,8.75082013516513e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5654,runoff,0.015412724336448518,2010-11-21,0.0,0.0,1.7983113037604245e-06,0.0,0.0,0.0,0.0,0.0,7.637184706269561,0.0,0.0,0.0 +5655,storm_outflow,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5656,baseflow,0.04212833218609707,2010-11-21,0.0,0.0,4.385087940287298e-06,0.0,0.0,0.0,0.0,0.0,11.074230426397456,0.0,0.0,0.0 +5657,catchment_outflow,0.05754105652254559,2010-11-21,0.0,0.0,6.183399244047722e-06,0.0,0.0,0.0,0.0,0.0,10.153596683856682,0.0,0.0,0.0 +5658,reservoir_outflow,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5659,gw1_gw2,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5660,gw2_gw1,0.003746328745179639,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5661,urban_drainage,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5662,percolation,0.07096717179514395,2010-11-22,0.0,0.0,8.575803732461826e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5663,runoff,0.012097140105911416,2010-11-22,0.0,0.0,1.4386490430083399e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5664,storm_outflow,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5665,baseflow,0.04220042928511969,2010-11-22,0.0,0.0,4.395564729767735e-06,0.0,0.0,0.0,0.0,0.0,11.075820510711043,0.0,0.0,0.0 +5666,catchment_outflow,0.05429756939103111,2010-11-22,0.0,0.0,5.834213772776075e-06,0.0,0.0,0.0,0.0,0.0,10.31505566875221,0.0,0.0,0.0 +5667,reservoir_outflow,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5668,gw1_gw2,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5669,gw2_gw1,0.0037213532202118316,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5670,urban_drainage,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5671,percolation,0.06954782835924107,2010-11-23,0.0,0.0,8.404287657812591e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 +5672,runoff,0.009677712084729133,2010-11-23,0.0,0.0,1.150919234406672e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5673,storm_outflow,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5674,baseflow,0.04226879778280499,2010-11-23,0.0,0.0,4.405586537087847e-06,0.0,0.0,0.0,0.0,0.0,11.077369732169373,0.0,0.0,0.0 +5675,catchment_outflow,0.05194650986753412,2010-11-23,0.0,0.0,5.556505771494519e-06,0.0,0.0,0.0,0.0,0.0,10.440923925882295,0.0,0.0,0.0 +5676,reservoir_outflow,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5677,gw1_gw2,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5678,gw2_gw1,0.003696544198743901,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5679,urban_drainage,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5680,percolation,0.06815687179205625,2010-11-24,0.0,0.0,8.23620190465634e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 +5681,runoff,0.007742169667783305,2010-11-24,0.0,0.0,9.207353875253373e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5682,storm_outflow,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5683,baseflow,0.04233351796782812,2010-11-24,0.0,0.0,4.415163075506768e-06,0.0,0.0,0.0,0.0,0.0,11.078879412484625,0.0,0.0,0.0 +5684,catchment_outflow,0.050075687635611425,2010-11-24,0.0,0.0,5.335898463032105e-06,0.0,0.0,0.0,0.0,0.0,10.550467319996828,0.0,0.0,0.0 +5685,reservoir_outflow,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5686,gw1_gw2,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5687,gw2_gw1,0.0036719005707519514,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5688,urban_drainage,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5689,percolation,0.06679373435621512,2010-11-25,0.0,0.0,8.071477866563212e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5690,runoff,0.006193735734226645,2010-11-25,0.0,0.0,7.3658831002027e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5691,storm_outflow,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5692,baseflow,0.04239466850879908,2010-11-25,0.0,0.0,4.42430386248441e-06,0.0,0.0,0.0,0.0,0.0,11.080350818828999,0.0,0.0,0.0 +5693,catchment_outflow,0.048588404243025726,2010-11-25,0.0,0.0,5.16089217250468e-06,0.0,0.0,0.0,0.0,0.0,10.644493890802114,0.0,0.0,0.0 +5694,reservoir_outflow,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5695,gw1_gw2,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5696,gw2_gw1,0.0036474212336138124,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5697,urban_drainage,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5698,percolation,0.06545785966909082,2010-11-26,0.0,0.0,7.910048309231948e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5699,runoff,0.004954988587381315,2010-11-26,0.0,0.0,5.892706480162159e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5700,storm_outflow,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5701,baseflow,0.04245232648669981,2010-11-26,0.0,0.0,4.433018223601278e-06,0.0,0.0,0.0,0.0,0.0,11.08178516662078,0.0,0.0,0.0 +5702,catchment_outflow,0.04740731507408113,2010-11-26,0.0,0.0,5.022288871617494e-06,0.0,0.0,0.0,0.0,0.0,10.724262677964166,0.0,0.0,0.0 +5703,reservoir_outflow,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5704,gw1_gw2,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5705,gw2_gw1,0.003623105092056456,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5706,urban_drainage,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5707,percolation,0.064148702475709,2010-11-27,0.0,0.0,7.751847343047308e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5708,runoff,0.003963990869905053,2010-11-27,0.0,0.0,4.7141651841297286e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5709,storm_outflow,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5710,baseflow,0.04250656742667234,2010-11-27,0.0,0.0,4.441315296399893e-06,0.0,0.0,0.0,0.0,0.0,11.083183622140984,0.0,0.0,0.0 +5711,catchment_outflow,0.04647055829657739,2010-11-27,0.0,0.0,4.912731814812866e-06,0.0,0.0,0.0,0.0,0.0,10.791280770641048,0.0,0.0,0.0 +5712,reservoir_outflow,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5713,gw1_gw2,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5714,gw2_gw1,0.003598951058109279,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5715,urban_drainage,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5716,percolation,0.06286572842619483,2010-11-28,0.0,0.0,7.596810396186362e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5717,runoff,0.0031711926959240425,2010-11-28,0.0,0.0,3.771332147303783e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5718,storm_outflow,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5719,baseflow,0.042557465329171144,2010-11-28,0.0,0.0,4.4492040341493596e-06,0.0,0.0,0.0,0.0,0.0,11.084547304992494,0.0,0.0,0.0 +5720,catchment_outflow,0.04572865802509519,2010-11-28,0.0,0.0,4.826337248879738e-06,0.0,0.0,0.0,0.0,0.0,10.847141797111801,0.0,0.0,0.0 +5721,reservoir_outflow,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5722,gw1_gw2,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5723,gw2_gw1,0.003574958051055255,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5724,urban_drainage,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5725,percolation,0.06160841385767092,2010-11-29,0.0,0.0,7.444874188262634e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5726,runoff,0.0025369541567392337,2010-11-29,0.0,0.0,3.017065717843026e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5727,storm_outflow,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5728,baseflow,0.04260509270049239,2010-11-29,0.0,0.0,4.456693209534642e-06,0.0,0.0,0.0,0.0,0.0,11.085877290412649,0.0,0.0,0.0 +5729,catchment_outflow,0.045142046857231624,2010-11-29,0.0,0.0,4.758399781318945e-06,0.0,0.0,0.0,0.0,0.0,10.893410113059383,0.0,0.0,0.0 +5730,reservoir_outflow,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5731,gw1_gw2,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5732,gw2_gw1,0.00355112499738155,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5733,urban_drainage,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5734,percolation,0.06037624558051751,2010-11-30,0.0,0.0,7.2959767044973814e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5735,runoff,0.0020295633253913873,2010-11-30,0.0,0.0,2.4136525742744215e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5736,storm_outflow,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5737,baseflow,0.04264952058269245,2010-11-30,0.0,0.0,4.4637914182720496e-06,0.0,0.0,0.0,0.0,0.0,11.087174611449365,0.0,0.0,0.0 +5738,catchment_outflow,0.04467908390808384,2010-11-30,0.0,0.0,4.705156675699492e-06,0.0,0.0,0.0,0.0,0.0,10.931546468304123,0.0,0.0,0.0 +5739,reservoir_outflow,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5740,gw1_gw2,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5741,gw2_gw1,0.003527450830732271,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5742,urban_drainage,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5743,percolation,0.05916872066890716,2010-12-01,0.0,0.0,7.1500571704074345e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5744,runoff,0.0016236506603131099,2010-12-01,0.0,0.0,1.9309220594195373e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5745,storm_outflow,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5746,baseflow,0.04269081858290799,2010-12-01,0.0,0.0,4.470507082652388e-06,0.0,0.0,0.0,0.0,0.0,11.088440261010115,0.0,0.0,0.0 +5747,catchment_outflow,0.0443144692432211,2010-12-01,0.0,0.0,4.6635992885943415e-06,0.0,0.0,0.0,0.0,0.0,10.962866980756223,0.0,0.0,0.0 +5748,reservoir_outflow,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5749,gw1_gw2,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5750,gw2_gw1,0.003503934491860683,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5751,urban_drainage,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5752,percolation,0.057985346255529015,2010-12-02,0.0,0.0,7.007056026999285e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5753,runoff,0.0012989205282504877,2010-12-02,0.0,0.0,1.5447376475356297e-07,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 +5754,storm_outflow,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5755,baseflow,0.04272905490208953,2010-12-02,0.0,0.0,4.4768484550132546e-06,0.0,0.0,0.0,0.0,0.0,11.089675193792333,0.0,0.0,0.0 +5756,catchment_outflow,0.04402797543034002,2010-12-02,0.0,0.0,4.6313222197668175e-06,0.0,0.0,0.0,0.0,0.0,10.988526443515296,0.0,0.0,0.0 +5757,reservoir_outflow,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5758,gw1_gw2,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5759,gw2_gw1,0.003480574928581781,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5760,urban_drainage,0.002000000000000001,2010-12-03,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0 +5761,percolation,0.056825639330418426,2010-12-03,0.0,0.0,6.8669149064592985e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5762,runoff,0.0010391364226003904,2010-12-03,0.0,0.0,1.235790118028504e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5763,storm_outflow,0.002000000000000001,2010-12-03,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0 +5764,baseflow,0.04276429636316036,2010-12-03,0.0,0.0,4.48282362114187e-06,0.0,0.0,0.0,0.0,0.0,11.09088032810318,0.0,0.0,0.0 +5765,catchment_outflow,0.04580343278576075,2010-12-03,0.0,0.0,2.0606402632944725e-05,0.0,0.0,0.0,0.0,0.0,10.594754104484567,0.0,0.0,0.0 +5766,reservoir_outflow,0.0010000000000000005,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5767,gw1_gw2,0.0,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5768,gw2_gw1,0.003457371095724504,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5769,urban_drainage,0.002000000000000001,2010-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5770,percolation,0.055689126543810065,2010-12-04,0.0,0.0,6.729576608330113e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5771,runoff,0.0008313091380803123,2010-12-04,0.0,0.0,9.886320944228031e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5772,storm_outflow,0.002000000000000001,2010-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5773,baseflow,0.042796608438611994,2010-12-04,0.0,0.0,4.488440503609841e-06,0.0,0.0,0.0,0.0,0.0,11.092056547576025,0.0,0.0,0.0 +5774,catchment_outflow,0.04562791757669231,2010-12-04,0.0,0.0,5.587303713052121e-06,0.0,0.0,0.0,0.0,0.0,10.610823077424971,0.0,0.0,0.0 +5775,reservoir_outflow,0.0010000000000000005,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5776,gw1_gw2,0.0,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5777,gw2_gw1,0.0034343219550864394,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5778,urban_drainage,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5779,percolation,0.05457534401293386,2010-12-05,0.0,0.0,6.594985076163511e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5780,runoff,0.0006650473104642498,2010-12-05,0.0,0.0,7.909056755382424e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5781,storm_outflow,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5782,baseflow,0.042826055277547806,2010-12-05,0.0,0.0,4.493706865041226e-06,0.0,0.0,0.0,0.0,0.0,11.093204702790372,0.0,0.0,0.0 +5783,catchment_outflow,0.04349110258801205,2010-12-05,0.0,0.0,4.57279743259505e-06,0.0,0.0,0.0,0.0,0.0,11.04072327562593,0.0,0.0,0.0 +5784,reservoir_outflow,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5785,gw1_gw2,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5786,gw2_gw1,0.0034114264753858595,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5787,urban_drainage,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5788,percolation,0.05348383713267518,2010-12-06,0.0,0.0,6.463085374640241e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5789,runoff,0.0005320378483713998,2010-12-06,0.0,0.0,6.32724540430594e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5790,storm_outflow,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5791,baseflow,0.04285269973218561,2010-12-06,0.0,0.0,4.498630311315222e-06,0.0,0.0,0.0,0.0,0.0,11.094325612801581,0.0,0.0,0.0 +5792,catchment_outflow,0.04338473758055701,2010-12-06,0.0,0.0,4.5619027653582815e-06,0.0,0.0,0.0,0.0,0.0,11.052223791409249,0.0,0.0,0.0 +5793,reservoir_outflow,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5794,gw1_gw2,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5795,gw2_gw1,0.003388683632216427,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5796,urban_drainage,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5797,percolation,0.052414160390021676,2010-12-07,0.0,0.0,6.333823667147436e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5798,runoff,0.00042563027869711983,2010-12-07,0.0,0.0,5.0617963234447525e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5799,storm_outflow,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5800,baseflow,0.04287660338383021,2010-12-07,0.0,0.0,4.503218294704803e-06,0.0,0.0,0.0,0.0,0.0,11.09542006658612,0.0,0.0,0.0 +5801,catchment_outflow,0.04330223366252733,2010-12-07,0.0,0.0,4.553836257939251e-06,0.0,0.0,0.0,0.0,0.0,11.061663678352733,0.0,0.0,0.0 +5802,reservoir_outflow,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5803,gw1_gw2,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5804,gw2_gw1,0.003366092408001542,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5805,urban_drainage,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5806,percolation,0.051365877182221256,2010-12-08,0.0,0.0,6.207147193804489e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5807,runoff,0.00034050422295769586,2010-12-08,0.0,0.0,4.049437058755802e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5808,storm_outflow,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5809,baseflow,0.042897826568326185,2010-12-08,0.0,0.0,4.507478116952552e-06,0.0,0.0,0.0,0.0,0.0,11.096488824407801,0.0,0.0,0.0 +5810,catchment_outflow,0.04323833079128388,2010-12-08,0.0,0.0,4.547972487540111e-06,0.0,0.0,0.0,0.0,0.0,11.069435385853335,0.0,0.0,0.0 +5811,reservoir_outflow,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5812,gw1_gw2,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5813,gw2_gw1,0.0033436517919481546,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5814,urban_drainage,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5815,percolation,0.05033855963857683,2010-12-09,0.0,0.0,6.0830042499283995e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5816,runoff,0.0002724033783661567,2010-12-09,0.0,0.0,3.2395496470046415e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5817,storm_outflow,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5818,baseflow,0.04291642840100181,2010-12-09,0.0,0.0,4.511416932284992e-06,0.0,0.0,0.0,0.0,0.0,11.097532619109975,0.0,0.0,0.0 +5819,catchment_outflow,0.04318883177936796,2010-12-09,0.0,0.0,4.543812428755039e-06,0.0,0.0,0.0,0.0,0.0,11.075858479874327,0.0,0.0,0.0 +5820,reservoir_outflow,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5821,gw1_gw2,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5822,gw2_gw1,0.003321360780002003,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5823,urban_drainage,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5824,percolation,0.0493317884458053,2010-12-10,0.0,0.0,5.961344164929831e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5825,runoff,0.00021792270269292534,2010-12-10,0.0,0.0,2.591639717603712e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5826,storm_outflow,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5827,baseflow,0.04293246680111382,2010-12-10,0.0,0.0,4.515041750366604e-06,0.0,0.0,0.0,0.0,0.0,11.098552157338313,0.0,0.0,0.0 +5828,catchment_outflow,0.043150389503806744,2010-12-10,0.0,0.0,4.540958147542642e-06,0.0,0.0,0.0,0.0,0.0,11.081192249539823,0.0,0.0,0.0 +5829,reservoir_outflow,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5830,gw1_gw2,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5831,gw2_gw1,0.00329921837480196,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5832,urban_drainage,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5833,percolation,0.04834515267688918,2010-12-11,0.0,0.0,5.842117281631233e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5834,runoff,0.00017433816215434026,2010-12-11,0.0,0.0,2.0733117740829695e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5835,storm_outflow,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5836,baseflow,0.042945998515803246,2010-12-11,0.0,0.0,4.518359439194766e-06,0.0,0.0,0.0,0.0,0.0,11.099548120698527,0.0,0.0,0.0 +5837,catchment_outflow,0.04312033667795759,2010-12-11,0.0,0.0,4.539092556935595e-06,0.0,0.0,0.0,0.0,0.0,11.085646488494152,0.0,0.0,0.0 +5838,reservoir_outflow,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5839,gw1_gw2,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5840,gw2_gw1,0.003277223585636513,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5841,urban_drainage,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5842,percolation,0.047378249623351396,2010-12-12,0.0,0.0,5.725274935998608e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5843,runoff,0.00013947052972347222,2010-12-12,0.0,0.0,1.658649419266376e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5844,storm_outflow,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5845,baseflow,0.04295707914357211,2010-12-12,0.0,0.0,4.521376727936776e-06,0.0,0.0,0.0,0.0,0.0,11.100521166853,0.0,0.0,0.0 +5846,catchment_outflow,0.04309654967329558,2010-12-12,0.0,0.0,4.5379632221294396e-06,0.0,0.0,0.0,0.0,0.0,11.089390573714578,0.0,0.0,0.0 +5847,reservoir_outflow,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5848,gw1_gw2,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5849,gw2_gw1,0.003255375428398821,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5850,urban_drainage,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5851,percolation,0.046430684630884365,2010-12-13,0.0,0.0,5.610769437278636e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5852,runoff,0.00011157642377877778,2010-12-13,0.0,0.0,1.326919535413101e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5853,storm_outflow,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5854,baseflow,0.042965763157290386,2010-12-13,0.0,0.0,4.52410020971013e-06,0.0,0.0,0.0,0.0,0.0,11.101471930560075,0.0,0.0,0.0 +5855,catchment_outflow,0.043077339581069164,2010-12-13,0.0,0.0,4.537369405064261e-06,0.0,0.0,0.0,0.0,0.0,11.092561022537112,0.0,0.0,0.0 +5856,reservoir_outflow,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5857,gw1_gw2,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5858,gw2_gw1,0.0032336729255426633,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5859,urban_drainage,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5860,percolation,0.04550207093826668,2010-12-14,0.0,0.0,5.4985540485330644e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5861,runoff,8.926113902302222e-05,2010-12-14,0.0,0.0,1.0615356283304806e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5862,storm_outflow,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5863,baseflow,0.042972103926742826,2010-12-14,0.0,0.0,4.526536344307188e-06,0.0,0.0,0.0,0.0,0.0,11.102401024659484,0.0,0.0,0.0 +5864,catchment_outflow,0.04306136506576585,2010-12-14,0.0,0.0,4.537151700590493e-06,0.0,0.0,0.0,0.0,0.0,11.095267727788073,0.0,0.0,0.0 +5865,reservoir_outflow,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5866,gw1_gw2,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5867,gw2_gw1,0.003212115106039271,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5868,urban_drainage,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5869,percolation,0.04459202951950134,2010-12-15,0.0,0.0,5.388582967562403e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5870,runoff,7.140891121841777e-05,2010-12-15,0.0,0.0,8.492285026643846e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5871,storm_outflow,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5872,baseflow,0.04297615374072472,2010-12-15,0.0,0.0,4.528691460865325e-06,0.0,0.0,0.0,0.0,0.0,11.103309041007114,0.0,0.0,0.0 +5873,catchment_outflow,0.043047562651943136,2010-12-15,0.0,0.0,4.537183745891969e-06,0.0,0.0,0.0,0.0,0.0,11.097599067529453,0.0,0.0,0.0 +5874,reservoir_outflow,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5875,gw1_gw2,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5876,gw2_gw1,0.0031907010053320306,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5877,urban_drainage,0.016,2010-12-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0 +5878,percolation,0.04370018892911132,2010-12-16,0.0,0.0,5.2808113082111546e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5879,runoff,5.712712897473421e-05,2010-12-16,0.0,0.0,6.793828021315076e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5880,storm_outflow,0.016,2010-12-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0 +5881,baseflow,0.04297796382869569,2010-12-16,0.0,0.0,4.53057176048369e-06,0.0,0.0,0.0,0.0,0.0,11.104196551362161,0.0,0.0,0.0 +5882,catchment_outflow,0.05903509095767043,2010-12-16,0.0,0.0,1.6537365588505006e-05,0.0,0.0,0.0,0.0,0.0,8.738903940029497,0.0,0.0,0.0 +5883,reservoir_outflow,0.008,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5884,gw1_gw2,0.0,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5885,gw2_gw1,0.0031694296652965193,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5886,urban_drainage,0.018,2010-12-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0 +5887,percolation,0.04282618515052909,2010-12-17,0.0,0.0,5.175195082046931e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5888,runoff,4.5701703179787376e-05,2010-12-17,0.0,0.0,5.4350624170520615e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5889,storm_outflow,0.018,2010-12-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0 +5890,baseflow,0.042977584382000264,2010-12-17,0.0,0.0,4.532183318787598e-06,0.0,0.0,0.0,0.0,0.0,11.105064108229477,0.0,0.0,0.0 +5891,catchment_outflow,0.061023286085180053,2010-12-17,0.0,0.0,5.53761838120465e-06,0.0,0.0,0.0,0.0,0.0,8.40834220550798,0.0,0.0,0.0 +5892,reservoir_outflow,0.009,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5893,gw1_gw2,0.0,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5894,gw2_gw1,0.003148300134194315,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5895,urban_drainage,0.028999999999999998,2010-12-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5896,percolation,0.041969661447518514,2010-12-18,0.0,0.0,5.071691180405992e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5897,runoff,3.65613625438299e-05,2010-12-18,0.0,0.0,4.3480499336416486e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5898,storm_outflow,0.028999999999999998,2010-12-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5899,baseflow,0.04297506457466405,2010-12-18,0.0,0.0,4.533532088441644e-06,0.0,0.0,0.0,0.0,0.0,11.105912245659695,0.0,0.0,0.0 +5900,catchment_outflow,0.07201162593720788,2010-12-18,0.0,0.0,5.537880138375285e-06,0.0,0.0,0.0,0.0,0.0,7.2573138411839455,0.0,0.0,0.0 +5901,reservoir_outflow,0.014499999999999999,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5902,gw1_gw2,0.0,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5903,gw2_gw1,0.003127311466633387,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5904,urban_drainage,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5905,percolation,0.04113026821856814,2010-12-19,0.0,0.0,4.970257356797873e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5906,runoff,2.924909003506392e-05,2010-12-19,0.0,0.0,3.4784399469133187e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5907,storm_outflow,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5908,baseflow,0.04297045258377381,2010-12-19,0.0,0.0,4.534623901612535e-06,0.0,0.0,0.0,0.0,0.0,11.106741480009639,0.0,0.0,0.0 +5909,catchment_outflow,0.04299970167380888,2010-12-19,0.0,0.0,4.538102341559449e-06,0.0,0.0,0.0,0.0,0.0,11.104397736857093,0.0,0.0,0.0 +5910,reservoir_outflow,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5911,gw1_gw2,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5912,gw2_gw1,0.0031064627235220855,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5913,urban_drainage,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5914,percolation,0.04030766285419678,2010-12-20,0.0,0.0,4.870852209661915e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5915,runoff,2.3399272028051137e-05,2010-12-20,0.0,0.0,2.782751957530655e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5916,storm_outflow,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5917,baseflow,0.04296379560944987,2010-12-20,0.0,0.0,4.535464472382658e-06,0.0,0.0,0.0,0.0,0.0,11.107552310665268,0.0,0.0,0.0 +5918,catchment_outflow,0.042987194881477925,2010-12-20,0.0,0.0,4.538247224340189e-06,0.0,0.0,0.0,0.0,0.0,11.105676329267622,0.0,0.0,0.0 +5919,reservoir_outflow,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5920,gw1_gw2,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5921,gw2_gw1,0.0030857529720321967,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5922,urban_drainage,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5923,percolation,0.03950150959711284,2010-12-21,0.0,0.0,4.773435165468677e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5924,runoff,1.871941762244091e-05,2010-12-21,0.0,0.0,2.2262015660245243e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5925,storm_outflow,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5926,baseflow,0.042955139894419035,2010-12-21,0.0,0.0,4.536059399115374e-06,0.0,0.0,0.0,0.0,0.0,11.108345220729289,0.0,0.0,0.0 +5927,catchment_outflow,0.04297385931204148,2010-12-21,0.0,0.0,4.538285600681399e-06,0.0,0.0,0.0,0.0,0.0,11.10684362449857,0.0,0.0,0.0 +5928,reservoir_outflow,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5929,gw1_gw2,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5930,gw2_gw1,0.0030651812855518657,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5931,urban_drainage,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5932,percolation,0.03871147940517059,2010-12-22,0.0,0.0,4.677966462159304e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5933,runoff,1.4975534097952727e-05,2010-12-22,0.0,0.0,1.7809612528196192e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5934,storm_outflow,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5935,baseflow,0.0429445307431959,2010-12-22,0.0,0.0,4.536414166772983e-06,0.0,0.0,0.0,0.0,0.0,11.109120677675469,0.0,0.0,0.0 +5936,catchment_outflow,0.042959506277293856,2010-12-22,0.0,0.0,4.5381951280258025e-06,0.0,0.0,0.0,0.0,0.0,11.107918729015292,0.0,0.0,0.0 +5937,reservoir_outflow,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5938,gw1_gw2,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5939,gw2_gw1,0.0030447467436486523,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5940,urban_drainage,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5941,percolation,0.03793724981706718,2010-12-23,0.0,0.0,4.5844071329161175e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5942,runoff,1.1980427278362183e-05,2010-12-23,0.0,0.0,1.4247690022556954e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5943,storm_outflow,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5944,baseflow,0.04293201254088058,2010-12-23,0.0,0.0,4.536534149188341e-06,0.0,0.0,0.0,0.0,0.0,11.109879133971482,0.0,0.0,0.0 +5945,catchment_outflow,0.04294399296815894,2010-12-23,0.0,0.0,4.537958918190597e-06,0.0,0.0,0.0,0.0,0.0,11.108917016092258,0.0,0.0,0.0 +5946,reservoir_outflow,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5947,gw1_gw2,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5948,gw2_gw1,0.0030244484320242297,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5949,urban_drainage,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5950,percolation,0.037178504820725836,2010-12-24,0.0,0.0,4.492718990257796e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5951,runoff,9.584341822689747e-06,2010-12-24,0.0,0.0,1.1398152018045566e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5952,storm_outflow,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5953,baseflow,0.042917628771580195,2010-12-24,0.0,0.0,4.536424611291015e-06,0.0,0.0,0.0,0.0,0.0,11.110621027672082,0.0,0.0,0.0 +5954,catchment_outflow,0.04292721311340288,2010-12-24,0.0,0.0,4.53756442649282e-06,0.0,0.0,0.0,0.0,0.0,11.109850866859931,0.0,0.0,0.0 +5955,reservoir_outflow,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5956,gw1_gw2,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5957,gw2_gw1,0.003004285442477439,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5958,urban_drainage,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5959,percolation,0.03643493472431132,2010-12-25,0.0,0.0,4.402864610452639e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5960,runoff,7.667473458151797e-06,2010-12-25,0.0,0.0,9.118521614436451e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5961,storm_outflow,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5962,baseflow,0.04290142203646202,2010-12-25,0.0,0.0,4.536090711288918e-06,0.0,0.0,0.0,0.0,0.0,11.111346782984198,0.0,0.0,0.0 +5963,catchment_outflow,0.04290908950992017,2010-12-25,0.0,0.0,4.5370025634503615e-06,0.0,0.0,0.0,0.0,0.0,11.110730264412876,0.0,0.0,0.0 +5964,reservoir_outflow,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5965,gw1_gw2,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5966,gw2_gw1,0.002984256872860769,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5967,urban_drainage,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5968,percolation,0.03570623602982509,2010-12-26,0.0,0.0,4.314807318243587e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5969,runoff,6.133978766521439e-06,2010-12-26,0.0,0.0,7.294817291549163e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5970,storm_outflow,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5971,baseflow,0.04288343407144543,2010-12-26,0.0,0.0,4.535537502806305e-06,0.0,0.0,0.0,0.0,0.0,11.112056810805537,0.0,0.0,0.0 +5972,catchment_outflow,0.042889568050211956,2010-12-26,0.0,0.0,4.53626698453546e-06,0.0,0.0,0.0,0.0,0.0,11.111563269911864,0.0,0.0,0.0 +5973,reservoir_outflow,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5974,gw1_gw2,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5975,gw2_gw1,0.0029643618270416283,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5976,urban_drainage,0.04,2010-12-27,0.0,0.0,8.571428571428573e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5977,percolation,0.034992111309228593,2010-12-27,0.0,0.0,4.228511171878716e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5978,runoff,4.90718301321715e-06,2010-12-27,0.0,0.0,5.83585383323933e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5979,storm_outflow,0.04,2010-12-27,0.0,0.0,8.571428571428573e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5980,baseflow,0.04286370576453989,2010-12-27,0.0,0.0,4.534769936978987e-06,0.0,0.0,0.0,0.0,0.0,11.112751509238104,0.0,0.0,0.0 +5981,catchment_outflow,0.0828686129475531,2010-12-27,0.0,0.0,1.3106782093790883e-05,0.0,0.0,0.0,0.0,0.0,6.570813042603665,0.0,0.0,0.0 +5982,reservoir_outflow,0.020999999999999998,2010-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5983,gw1_gw2,0.0,2010-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5984,gw2_gw1,0.0029445994148614933,2010-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5985,urban_drainage,0.0009999999999999944,2010-12-28,0.0,0.0,1.4285714285714276e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5986,percolation,0.034292269083044016,2010-12-28,0.0,0.0,4.143940948441141e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5987,runoff,3.92574641057372e-06,2010-12-28,0.0,0.0,4.668683066591464e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5988,storm_outflow,0.0009999999999999944,2010-12-28,0.0,0.0,1.4285714285714276e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5989,baseflow,0.04284227717283615,2010-12-28,0.0,0.0,4.533792864507641e-06,0.0,0.0,0.0,0.0,0.0,11.113431264078002,0.0,0.0,0.0 +5990,catchment_outflow,0.04384620291924672,2010-12-28,0.0,0.0,5.9628311613857275e-06,0.0,0.0,0.0,0.0,0.0,10.89851156825246,0.0,0.0,0.0 +5991,reservoir_outflow,0.0,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5992,gw1_gw2,0.0,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5993,gw2_gw1,0.00292496875209558,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5994,urban_drainage,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5995,percolation,0.033606423701383135,2010-12-29,0.0,0.0,4.0610621294723176e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5996,runoff,3.140597128458977e-06,2010-12-29,0.0,0.0,3.7349464532731726e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5997,storm_outflow,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5998,baseflow,0.04281918753915751,2010-12-29,0.0,0.0,4.532611037670053e-06,0.0,0.0,0.0,0.0,0.0,11.114096449282796,0.0,0.0,0.0 +5999,catchment_outflow,0.04282232813628597,2010-12-29,0.0,0.0,4.53298453231538e-06,0.0,0.0,0.0,0.0,0.0,11.113843209977603,0.0,0.0,0.0 +6000,reservoir_outflow,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6001,gw1_gw2,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6002,gw2_gw1,0.0029054689604150145,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6003,urban_drainage,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6004,percolation,0.03293429522735548,2010-12-30,0.0,0.0,3.979840886882872e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +6005,runoff,2.512477702767181e-06,2010-12-30,0.0,0.0,2.9879571626185377e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +6006,storm_outflow,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6007,baseflow,0.04279447530837801,2010-12-30,0.0,0.0,4.531229112293085e-06,0.0,0.0,0.0,0.0,0.0,11.114747427417617,0.0,0.0,0.0 +6008,catchment_outflow,0.04279698778608078,2010-12-30,0.0,0.0,4.531527908009347e-06,0.0,0.0,0.0,0.0,0.0,11.11454467780097,0.0,0.0,0.0 +6009,reservoir_outflow,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6010,gw1_gw2,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6011,gw2_gw1,0.0028860991673452575,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6012,urban_drainage,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6013,percolation,0.03227560932280837,2010-12-31,0.0,0.0,3.900244069145214e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +6014,runoff,2.0099821622137446e-06,2010-12-31,0.0,0.0,2.3903657300948294e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +6015,storm_outflow,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6016,baseflow,0.04276817814341409,2010-12-31,0.0,0.0,4.529651649685215e-06,0.0,0.0,0.0,0.0,0.0,11.115384550081139,0.0,0.0,0.0 +6017,catchment_outflow,0.04277018812557631,2010-12-31,0.0,0.0,4.529890686258225e-06,0.0,0.0,0.0,0.0,0.0,11.115222218812482,0.0,0.0,0.0 +6018,reservoir_outflow,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6019,gw1_gw2,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6020,gw2_gw1,0.0028668585062293418,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6021,urban_drainage,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6022,percolation,0.0316300971363522,2011-01-01,0.0,0.0,3.82223918776231e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926794,0.0,0.0,0.0 +6023,runoff,1.6079857297709958e-06,2011-01-01,0.0,0.0,1.9122925840758642e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +6024,storm_outflow,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6025,baseflow,0.042740332940896436,2011-01-01,0.0,0.0,4.527883118530408e-06,0.0,0.0,0.0,0.0,0.0,11.116008158312473,0.0,0.0,0.0 +6026,catchment_outflow,0.042741940926626205,2011-01-01,0.0,0.0,4.528074347788816e-06,0.0,0.0,0.0,0.0,0.0,11.115878184012011,0.0,0.0,0.0 +6027,reservoir_outflow,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6028,gw1_gw2,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6029,gw2_gw1,0.0028477461161878995,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6030,urban_drainage,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6031,percolation,0.030997495193625157,2011-01-02,0.0,0.0,3.7457944040070632e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +6032,runoff,1.2863885838167967e-06,2011-01-02,0.0,0.0,1.5298340672606912e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +6033,storm_outflow,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6034,baseflow,0.04271097584652825,2011-01-02,0.0,0.0,4.5259278967440995e-06,0.0,0.0,0.0,0.0,0.0,11.11661858297999,0.0,0.0,0.0 +6035,catchment_outflow,0.04271226223511206,2011-01-02,0.0,0.0,4.526080880150826e-06,0.0,0.0,0.0,0.0,0.0,11.116514512904828,0.0,0.0,0.0 +6036,reservoir_outflow,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6037,gw1_gw2,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6038,gw2_gw1,0.002828761142080083,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6039,urban_drainage,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6040,percolation,0.03037754528975265,2011-01-03,0.0,0.0,3.6708785159269217e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +6041,runoff,1.0291108670534374e-06,2011-01-03,0.0,0.0,1.223867253808553e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +6042,storm_outflow,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6043,baseflow,0.042680142270136306,2011-01-03,0.0,0.0,4.523790273292056e-06,0.0,0.0,0.0,0.0,0.0,11.117216145152977,0.0,0.0,0.0 +6044,catchment_outflow,0.04268117138100336,2011-01-03,0.0,0.0,4.523912660017437e-06,0.0,0.0,0.0,0.0,0.0,11.117132814037275,0.0,0.0,0.0 +6045,reservoir_outflow,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6046,gw1_gw2,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6047,gw2_gw1,0.0028099027344659078,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6048,urban_drainage,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6049,percolation,0.029769994383957603,2011-01-04,0.0,0.0,3.5974609456083835e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +6050,runoff,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6051,storm_outflow,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6052,baseflow,0.04264786690042086,2011-01-04,0.0,0.0,4.521474449972847e-06,0.0,0.0,0.0,0.0,0.0,11.117801156457038,0.0,0.0,0.0 +6053,catchment_outflow,0.04264786690042086,2011-01-04,0.0,0.0,4.521474449972847e-06,0.0,0.0,0.0,0.0,0.0,11.117801156457038,0.0,0.0,0.0 +6054,reservoir_outflow,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6055,gw1_gw2,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6056,gw2_gw1,0.0027911700495698356,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6057,urban_drainage,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6058,percolation,0.029174594496278454,2011-01-05,0.0,0.0,3.525511726696216e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +6059,runoff,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6060,storm_outflow,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6061,baseflow,0.04261418371941051,2011-01-05,0.0,0.0,4.518984543164656e-06,0.0,0.0,0.0,0.0,0.0,11.118373919414037,0.0,0.0,0.0 +6062,catchment_outflow,0.04261418371941051,2011-01-05,0.0,0.0,4.518984543164656e-06,0.0,0.0,0.0,0.0,0.0,11.118373919414037,0.0,0.0,0.0 +6063,reservoir_outflow,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6064,gw1_gw2,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6065,gw2_gw1,0.00277256224923903,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6066,urban_drainage,0.04,2011-01-06,0.0,0.0,4.186046511627907e-06,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0 +6067,percolation,0.028591102606352885,2011-01-06,0.0,0.0,3.455001492162292e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +6068,runoff,0.0,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6069,storm_outflow,0.04,2011-01-06,0.0,0.0,4.186046511627907e-06,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0 +6070,baseflow,0.04257912601662786,2011-01-06,0.0,0.0,4.51632458553715e-06,0.0,0.0,0.0,0.0,0.0,11.11893472776739,0.0,0.0,0.0 +6071,catchment_outflow,0.08257912601662787,2011-01-06,0.0,0.0,8.702371097165057e-06,0.0,0.0,0.0,0.0,0.0,7.731185273330628,0.0,0.0,0.0 +6072,reservoir_outflow,0.043,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6073,gw1_gw2,0.0,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6074,gw2_gw1,0.002754078500911028,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6075,urban_drainage,0.04,2011-01-07,0.0,0.0,3.0599755201958387e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +6076,percolation,0.030387788963486703,2011-01-07,0.0,0.0,3.7427982348211236e-06,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 +6077,runoff,0.016206407141531196,2011-01-07,0.0,0.0,1.1897538177205634e-06,0.0,0.0,0.0,0.0,0.0,4.650035359665765,0.0,0.0,0.0 +6078,storm_outflow,0.04,2011-01-07,0.0,0.0,3.0599755201958387e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +6079,baseflow,0.042548647673995015,2011-01-07,0.0,0.0,4.514390769660361e-06,0.0,0.0,0.0,0.0,0.0,11.118620131524594,0.0,0.0,0.0 +6080,catchment_outflow,0.09875505481552621,2011-01-07,0.0,0.0,8.764120107576763e-06,0.0,0.0,0.0,0.0,0.0,7.268333995282195,0.0,0.0,0.0 +6081,reservoir_outflow,0.015,2011-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6082,gw1_gw2,0.0,2011-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6083,gw2_gw1,0.002735717977571639,2011-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6084,urban_drainage,0.015999999999999983,2011-01-08,0.0,0.0,3.7539779681762537e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +6085,percolation,0.02978003318421697,2011-01-08,0.0,0.0,3.6679422701247013e-06,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 +6086,runoff,0.006316681055650576,2011-01-08,0.0,0.0,9.518030541764507e-07,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 +6087,storm_outflow,0.015999999999999983,2011-01-08,0.0,0.0,3.7539779681762537e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +6088,baseflow,0.04251672613777057,2011-01-08,0.0,0.0,4.512274648411521e-06,0.0,0.0,0.0,0.0,0.0,11.118312146614338,0.0,0.0,0.0 +6089,catchment_outflow,0.06483340719342112,2011-01-08,0.0,0.0,9.218055670764225e-06,0.0,0.0,0.0,0.0,0.0,8.814687304152423,0.0,0.0,0.0 +6090,reservoir_outflow,0.0,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6091,gw1_gw2,0.0,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6092,gw2_gw1,0.0027174798577211945,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6093,urban_drainage,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6094,percolation,0.029184432520532624,2011-01-09,0.0,0.0,3.594583424722207e-06,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 +6095,runoff,0.0053017193547274565,2011-01-09,0.0,0.0,7.614424433411606e-07,0.0,0.0,0.0,0.0,0.0,4.9149268934490085,0.0,0.0,0.0 +6096,storm_outflow,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6097,baseflow,0.04248339540372748,2011-01-09,0.0,0.0,4.509980420352298e-06,0.0,0.0,0.0,0.0,0.0,11.118010613536566,0.0,0.0,0.0 +6098,catchment_outflow,0.04778511475845494,2011-01-09,0.0,0.0,5.271422863693458e-06,0.0,0.0,0.0,0.0,0.0,10.429783554042812,0.0,0.0,0.0 +6099,reservoir_outflow,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6100,gw1_gw2,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6101,gw2_gw1,0.002699363325336357,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6102,urban_drainage,0.04,2011-01-10,0.0,0.0,1.4285714285714286e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +6103,percolation,0.032830312053485064,2011-01-10,0.0,0.0,4.1497580943721205e-06,0.0,0.0,0.0,0.0,0.0,10.25712617259147,0.0,0.0,0.0 +6104,runoff,0.03298182660389015,2011-01-10,0.0,0.0,2.699375081820786e-06,0.0,0.0,0.0,0.0,0.0,5.356040999698479,0.0,0.0,0.0 +6105,storm_outflow,0.04,2011-01-10,0.0,0.0,1.4285714285714286e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +6106,baseflow,0.04245926269535187,2011-01-10,0.0,0.0,4.509079864537347e-06,0.0,0.0,0.0,0.0,0.0,11.116346482847286,0.0,0.0,0.0 +6107,catchment_outflow,0.11544108929924203,2011-01-10,0.0,0.0,8.637026374929563e-06,0.0,0.0,0.0,0.0,0.0,7.42927753254297,0.0,0.0,0.0 +6108,reservoir_outflow,0.028,2011-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6109,gw1_gw2,0.0,2011-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6110,gw2_gw1,0.002681367569834059,2011-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6111,urban_drainage,0.04,2011-01-11,0.0,0.0,9.67032967032967e-07,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0 +6112,percolation,0.03929726628631597,2011-01-11,0.0,0.0,5.0903884413392396e-06,0.0,0.0,0.0,0.0,0.0,9.459751678356323,0.0,0.0,0.0 +6113,runoff,0.06325313980036021,2011-01-11,0.0,0.0,5.571585094971836e-06,0.0,0.0,0.0,0.0,0.0,5.6261065041825695,0.0,0.0,0.0 +6114,storm_outflow,0.04,2011-01-11,0.0,0.0,9.67032967032967e-07,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0 +6115,baseflow,0.04245135770432928,2011-01-11,0.0,0.0,4.510533135979353e-06,0.0,0.0,0.0,0.0,0.0,11.112512703983603,0.0,0.0,0.0 +6116,catchment_outflow,0.1457044975046895,2011-01-11,0.0,0.0,1.1049151197984156e-05,0.0,0.0,0.0,0.0,0.0,7.171380970516471,0.0,0.0,0.0 +6117,reservoir_outflow,0.0245,2011-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6118,gw1_gw2,0.0,2011-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6119,gw2_gw1,0.002663491786035444,2011-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6120,urban_drainage,0.04,2011-01-12,0.0,0.0,6.230662541342152e-07,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0 +6121,percolation,0.04934864098906472,2011-01-12,0.0,0.0,6.473122233821975e-06,0.0,0.0,0.0,0.0,0.0,8.71905448134368,0.0,0.0,0.0 +6122,runoff,0.10475663702065977,2011-01-12,0.0,0.0,9.405739947009204e-06,0.0,0.0,0.0,0.0,0.0,5.838502419981955,0.0,0.0,0.0 +6123,storm_outflow,0.04,2011-01-12,0.0,0.0,6.230662541342152e-07,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0 +6124,baseflow,0.042468600912541114,2011-01-12,0.0,0.0,4.51543960872396e-06,0.0,0.0,0.0,0.0,0.0,11.105559689991297,0.0,0.0,0.0 +6125,catchment_outflow,0.1872252379332009,2011-01-12,0.0,0.0,1.454424580986738e-05,0.0,0.0,0.0,0.0,0.0,6.990921134874436,0.0,0.0,0.0 +6126,reservoir_outflow,0.039,2011-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6127,gw1_gw2,0.0,2011-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6128,gw2_gw1,0.0026457351741283833,2011-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6129,urban_drainage,0.04,2011-01-13,0.0,0.0,7.925317401045556e-07,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +6130,percolation,0.055111291664240225,2011-01-13,0.0,0.0,7.24702453347992e-06,0.0,0.0,0.0,0.0,0.0,8.420444500933675,0.0,0.0,0.0 +6131,runoff,0.09956639660735489,2011-01-13,0.0,0.0,1.0535807772055313e-05,0.0,0.0,0.0,0.0,0.0,5.996624687015764,0.0,0.0,0.0 +6132,storm_outflow,0.04,2011-01-13,0.0,0.0,7.925317401045556e-07,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +6133,baseflow,0.04250020763942036,2011-01-13,0.0,0.0,4.522268571035849e-06,0.0,0.0,0.0,0.0,0.0,11.096855016852302,0.0,0.0,0.0 +6134,catchment_outflow,0.18206660424677526,2011-01-13,0.0,0.0,1.5850608083195717e-05,0.0,0.0,0.0,0.0,0.0,7.131188927094177,0.0,0.0,0.0 +6135,reservoir_outflow,0.018500000000000003,2011-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6136,gw1_gw2,0.0,2011-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6137,gw2_gw1,0.002628096939634084,2011-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6138,urban_drainage,0.04,2011-01-14,0.0,0.0,1.6836904693514104e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +6139,percolation,0.055427503481067675,2011-01-14,0.0,0.0,7.292642789091205e-06,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 +6140,runoff,0.07041190543238719,2011-01-14,0.0,0.0,9.063842038580529e-06,0.0,0.0,0.0,0.0,0.0,6.059421888938696,0.0,0.0,0.0 +6141,storm_outflow,0.04,2011-01-14,0.0,0.0,1.6836904693514104e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +6142,baseflow,0.04253252587902447,2011-01-14,0.0,0.0,4.5291945065809875e-06,0.0,0.0,0.0,0.0,0.0,11.087972835755744,0.0,0.0,0.0 +6143,catchment_outflow,0.15294443131141167,2011-01-14,0.0,0.0,1.5276727014512926e-05,0.0,0.0,0.0,0.0,0.0,7.3747394453977755,0.0,0.0,0.0 +6144,reservoir_outflow,0.0,2011-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6145,gw1_gw2,0.0,2011-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6146,gw2_gw1,0.0026105762933696045,2011-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6147,urban_drainage,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6148,percolation,0.05431895341144631,2011-01-15,0.0,0.0,7.14678993330938e-06,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 +6149,runoff,0.053936370370550143,2011-01-15,0.0,0.0,7.251073630864423e-06,0.0,0.0,0.0,0.0,0.0,6.062771010075118,0.0,0.0,0.0 +6150,storm_outflow,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6151,baseflow,0.04256199194785553,2011-01-15,0.0,0.0,4.535738495147808e-06,0.0,0.0,0.0,0.0,0.0,11.079302663812108,0.0,0.0,0.0 +6152,catchment_outflow,0.09649836231840567,2011-01-15,0.0,0.0,1.178681212601223e-05,0.0,0.0,0.0,0.0,0.0,8.275384516903426,0.0,0.0,0.0 +6153,reservoir_outflow,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6154,gw1_gw2,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6155,gw2_gw1,0.00259317245141375,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6156,urban_drainage,0.04,2011-01-16,0.0,0.0,2.385816324576594e-06,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 +6157,percolation,0.0599694330912807,2011-01-16,0.0,0.0,7.892905061395146e-06,0.0,0.0,0.0,0.0,0.0,8.196212197381252,0.0,0.0,0.0 +6158,runoff,0.08797265267901411,2011-01-16,0.0,0.0,8.764361993864711e-06,0.0,0.0,0.0,0.0,0.0,6.378971588562326,0.0,0.0,0.0 +6159,storm_outflow,0.04,2011-01-16,0.0,0.0,2.385816324576594e-06,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 +6160,baseflow,0.042605510550714085,2011-01-16,0.0,0.0,4.544131411563426e-06,0.0,0.0,0.0,0.0,0.0,11.069157420944,0.0,0.0,0.0 +6161,catchment_outflow,0.17057816322972819,2011-01-16,0.0,0.0,1.5694309730004732e-05,0.0,0.0,0.0,0.0,0.0,7.58720050814736,0.0,0.0,0.0 +6162,reservoir_outflow,0.020999999999999998,2011-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6163,gw1_gw2,0.0,2011-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6164,gw2_gw1,0.0025758846350708354,2011-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6165,urban_drainage,0.04,2011-01-17,0.0,0.0,9.327423468573579e-07,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +6166,percolation,0.0661735592258868,2011-01-17,0.0,0.0,8.684524632006908e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6167,runoff,0.10212326900142606,2011-01-17,0.0,0.0,1.0176415167890654e-05,0.0,0.0,0.0,0.0,0.0,6.59150412835554,0.0,0.0,0.0 +6168,storm_outflow,0.04,2011-01-17,0.0,0.0,9.327423468573579e-07,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +6169,baseflow,0.04266443067240202,2011-01-17,0.0,0.0,4.554482394614535e-06,0.0,0.0,0.0,0.0,0.0,11.057496523358662,0.0,0.0,0.0 +6170,catchment_outflow,0.18478769967382808,2011-01-17,0.0,0.0,1.5663639909362548e-05,0.0,0.0,0.0,0.0,0.0,7.6535223566102575,0.0,0.0,0.0 +6171,reservoir_outflow,0.023,2011-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6172,gw1_gw2,0.0,2011-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6173,gw2_gw1,0.0025587120708371104,2011-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6174,urban_drainage,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6175,percolation,0.06485008804136906,2011-01-18,0.0,0.0,8.51083413936677e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6176,runoff,0.06091681928133252,2011-01-18,0.0,0.0,8.141132134312524e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +6177,storm_outflow,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6178,baseflow,0.04271989481582443,2011-01-18,0.0,0.0,4.564373273976415e-06,0.0,0.0,0.0,0.0,0.0,11.046127934508393,0.0,0.0,0.0 +6179,catchment_outflow,0.10363671409715694,2011-01-18,0.0,0.0,1.2705505408288938e-05,0.0,0.0,0.0,0.0,0.0,8.397386094135298,0.0,0.0,0.0 +6180,reservoir_outflow,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6181,gw1_gw2,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6182,gw2_gw1,0.0025416539903648783,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6183,urban_drainage,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6184,percolation,0.06355308628054168,2011-01-19,0.0,0.0,8.340617456579435e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6185,runoff,0.04911129709170614,2011-01-19,0.0,0.0,6.512905707450018e-06,0.0,0.0,0.0,0.0,0.0,6.5418713211101975,0.0,0.0,0.0 +6186,storm_outflow,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6187,baseflow,0.04277197779448622,2011-01-19,0.0,0.0,4.573813884432923e-06,0.0,0.0,0.0,0.0,0.0,11.035042514248005,0.0,0.0,0.0 +6188,catchment_outflow,0.09188327488619236,2011-01-19,0.0,0.0,1.1086719591882941e-05,0.0,0.0,0.0,0.0,0.0,8.633457833865148,0.0,0.0,0.0 +6189,reservoir_outflow,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6190,gw1_gw2,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6191,gw2_gw1,0.002524709630429278,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6192,urban_drainage,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6193,percolation,0.06228202455493084,2011-01-20,0.0,0.0,8.173805107447845e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6194,runoff,0.038986764340052805,2011-01-20,0.0,0.0,5.210324565960015e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 +6195,storm_outflow,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6196,baseflow,0.04282075291138734,2011-01-20,0.0,0.0,4.58281386249046e-06,0.0,0.0,0.0,0.0,0.0,11.02423148560609,0.0,0.0,0.0 +6197,catchment_outflow,0.08180751725144014,2011-01-20,0.0,0.0,9.793138428450475e-06,0.0,0.0,0.0,0.0,0.0,8.887132711427665,0.0,0.0,0.0 +6198,reservoir_outflow,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6199,gw1_gw2,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6200,gw2_gw1,0.0025078782328927574,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6201,urban_drainage,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6202,percolation,0.06103638406383222,2011-01-21,0.0,0.0,8.010329005298889e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6203,runoff,0.031189411472042246,2011-01-21,0.0,0.0,4.1682596527680125e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 +6204,storm_outflow,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6205,baseflow,0.042866291989268446,2011-01-21,0.0,0.0,4.591382650347482e-06,0.0,0.0,0.0,0.0,0.0,11.01368641692271,0.0,0.0,0.0 +6206,catchment_outflow,0.07405570346131068,2011-01-21,0.0,0.0,8.759642303115495e-06,0.0,0.0,0.0,0.0,0.0,9.129487160669099,0.0,0.0,0.0 +6207,reservoir_outflow,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6208,gw1_gw2,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6209,gw2_gw1,0.002491159044673452,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6210,urban_drainage,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6211,percolation,0.0598156563825556,2011-01-22,0.0,0.0,7.850122425192914e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6212,runoff,0.025218174052438317,2011-01-22,0.0,0.0,3.3346077222144104e-06,0.0,0.0,0.0,0.0,0.0,6.537862396017194,0.0,0.0,0.0 +6213,storm_outflow,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6214,baseflow,0.04290866540025165,2011-01-22,0.0,0.0,4.599529499784594e-06,0.0,0.0,0.0,0.0,0.0,11.003399205033588,0.0,0.0,0.0 +6215,catchment_outflow,0.06812683945268996,2011-01-22,0.0,0.0,7.934137221999004e-06,0.0,0.0,0.0,0.0,0.0,9.350413606522912,0.0,0.0,0.0 +6216,reservoir_outflow,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6217,gw1_gw2,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6218,gw2_gw1,0.0024745513177091283,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6219,urban_drainage,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6220,percolation,0.05861934325490447,2011-01-23,0.0,0.0,7.693119976689053e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6221,runoff,0.01996122334210704,2011-01-23,0.0,0.0,2.6676861777715285e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +6222,storm_outflow,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6223,baseflow,0.04294794209488829,2011-01-23,0.0,0.0,4.607263475976856e-06,0.0,0.0,0.0,0.0,0.0,10.993362059429959,0.0,0.0,0.0 +6224,catchment_outflow,0.06290916543699533,2011-01-23,0.0,0.0,7.274949653748384e-06,0.0,0.0,0.0,0.0,0.0,9.580258750420974,0.0,0.0,0.0 +6225,reservoir_outflow,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6226,gw1_gw2,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6227,gw2_gw1,0.002458054308924318,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6228,urban_drainage,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6229,percolation,0.057446956389806396,2011-01-24,0.0,0.0,7.539257577155273e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +6230,runoff,0.01596897867368563,2011-01-24,0.0,0.0,2.1341489422172223e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +6231,storm_outflow,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6232,baseflow,0.042984189630625586,2011-01-24,0.0,0.0,4.6145934612298015e-06,0.0,0.0,0.0,0.0,0.0,10.983567487328624,0.0,0.0,0.0 +6233,catchment_outflow,0.058953168304311215,2011-01-24,0.0,0.0,6.748742403447024e-06,0.0,0.0,0.0,0.0,0.0,9.779877972330736,0.0,0.0,0.0 +6234,reservoir_outflow,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6235,gw1_gw2,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6236,gw2_gw1,0.00244166728019799,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6237,urban_drainage,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6238,percolation,0.05664457931032434,2011-01-25,0.0,0.0,7.436544075210985e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6239,runoff,0.015146396953729102,2011-01-25,0.0,0.0,1.8675579857698374e-06,0.0,0.0,0.0,0.0,0.0,6.495321646248307,0.0,0.0,0.0 +6240,storm_outflow,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6241,baseflow,0.043018340604824824,2011-01-25,0.0,0.0,4.621648337764755e-06,0.0,0.0,0.0,0.0,0.0,10.97392077609062,0.0,0.0,0.0 +6242,catchment_outflow,0.058164737558553926,2011-01-25,0.0,0.0,6.489206323534592e-06,0.0,0.0,0.0,0.0,0.0,9.807670517522379,0.0,0.0,0.0 +6243,reservoir_outflow,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6244,gw1_gw2,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6245,gw2_gw1,0.0024253894983297998,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6246,urban_drainage,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6247,percolation,0.05551168772411786,2011-01-26,0.0,0.0,7.287813193706766e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6248,runoff,0.011473305015097955,2011-01-26,0.0,0.0,1.4940463886158698e-06,0.0,0.0,0.0,0.0,0.0,6.517872089997276,0.0,0.0,0.0 +6249,storm_outflow,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6250,baseflow,0.04304957397262306,2011-01-26,0.0,0.0,4.62831374990461e-06,0.0,0.0,0.0,0.0,0.0,10.96450495616262,0.0,0.0,0.0 +6251,catchment_outflow,0.05452287898772101,2011-01-26,0.0,0.0,6.12236013852048e-06,0.0,0.0,0.0,0.0,0.0,10.028795468496648,0.0,0.0,0.0 +6252,reservoir_outflow,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6253,gw1_gw2,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6254,gw2_gw1,0.0024092202350077586,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6255,urban_drainage,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6256,percolation,0.054401453969635506,2011-01-27,0.0,0.0,7.14205692983263e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6257,runoff,0.008915449450663762,2011-01-27,0.0,0.0,1.1952371108926958e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6258,storm_outflow,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6259,baseflow,0.04307795367261558,2011-01-27,0.0,0.0,4.634598107854431e-06,0.0,0.0,0.0,0.0,0.0,10.955313258872483,0.0,0.0,0.0 +6260,catchment_outflow,0.051993403123279346,2011-01-27,0.0,0.0,5.829835218747126e-06,0.0,0.0,0.0,0.0,0.0,10.199457293390424,0.0,0.0,0.0 +6261,reservoir_outflow,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6262,gw1_gw2,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6263,gw2_gw1,0.0023931587667744836,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6264,urban_drainage,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6265,percolation,0.05331342489024281,2011-01-28,0.0,0.0,6.999215791235979e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6266,runoff,0.00713235956053101,2011-01-28,0.0,0.0,9.561896887141565e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6267,storm_outflow,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6268,baseflow,0.043103542350659656,2011-01-28,0.0,0.0,4.640509652062884e-06,0.0,0.0,0.0,0.0,0.0,10.94633916540861,0.0,0.0,0.0 +6269,catchment_outflow,0.050235901911190664,2011-01-28,0.0,0.0,5.596699340777041e-06,0.0,0.0,0.0,0.0,0.0,10.321773636012749,0.0,0.0,0.0 +6270,reservoir_outflow,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6271,gw1_gw2,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6272,gw2_gw1,0.002377204374995756,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6273,urban_drainage,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6274,percolation,0.05224715639243795,2011-01-29,0.0,0.0,6.859231475411259e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6275,runoff,0.005705887648424808,2011-01-29,0.0,0.0,7.649517509713253e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6276,storm_outflow,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6277,baseflow,0.04312640138576409,2011-01-29,0.0,0.0,4.6460564566212545e-06,0.0,0.0,0.0,0.0,0.0,10.937576395411106,0.0,0.0,0.0 +6278,catchment_outflow,0.048832289034188896,2011-01-29,0.0,0.0,5.411008207592579e-06,0.0,0.0,0.0,0.0,0.0,10.424586092236096,0.0,0.0,0.0 +6279,reservoir_outflow,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6280,gw1_gw2,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6281,gw2_gw1,0.002361356345828902,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6282,urban_drainage,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6283,percolation,0.05120221326458917,2011-01-30,0.0,0.0,6.722046845903032e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6284,runoff,0.0045647101187398465,2011-01-30,0.0,0.0,6.119614007770601e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6285,storm_outflow,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6286,baseflow,0.04314659091546116,2011-01-30,0.0,0.0,4.651246432594459e-06,0.0,0.0,0.0,0.0,0.0,10.929018896184386,0.0,0.0,0.0 +6287,catchment_outflow,0.047711301034201,2011-01-30,0.0,0.0,5.2632078333715194e-06,0.0,0.0,0.0,0.0,0.0,10.509803119874833,0.0,0.0,0.0 +6288,reservoir_outflow,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6289,gw1_gw2,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6290,gw2_gw1,0.0023456139701902856,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6291,urban_drainage,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6292,percolation,0.0501781689992974,2011-01-31,0.0,0.0,6.5876059089849715e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6293,runoff,0.0036517680949918773,2011-01-31,0.0,0.0,4.895691206216481e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6294,storm_outflow,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6295,baseflow,0.043164169860670745,2011-01-31,0.0,0.0,4.656087331285436e-06,0.0,0.0,0.0,0.0,0.0,10.920660832492084,0.0,0.0,0.0 +6296,catchment_outflow,0.04681593795566262,2011-01-31,0.0,0.0,5.145656451907084e-06,0.0,0.0,0.0,0.0,0.0,10.579526102131013,0.0,0.0,0.0 +6297,reservoir_outflow,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6298,gw1_gw2,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6299,gw2_gw1,0.0023299765437222674,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6300,urban_drainage,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6301,percolation,0.04917460561931146,2011-02-01,0.0,0.0,6.455853790805273e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6302,runoff,0.0029214144759935018,2011-02-01,0.0,0.0,3.9165529649731844e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6303,storm_outflow,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6304,baseflow,0.043179195950067334,2011-02-01,0.0,0.0,4.660586747434234e-06,0.0,0.0,0.0,0.0,0.0,10.912496576897897,0.0,0.0,0.0 +6305,catchment_outflow,0.04610061042606083,2011-02-01,0.0,0.0,5.052242043931552e-06,0.0,0.0,0.0,0.0,0.0,10.63587154732569,0.0,0.0,0.0 +6306,reservoir_outflow,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6307,gw1_gw2,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6308,gw2_gw1,0.0023144433667642516,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6309,urban_drainage,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6310,percolation,0.04819111350692522,2011-02-02,0.0,0.0,6.326736714989167e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6311,runoff,0.0023371315807948012,2011-02-02,0.0,0.0,3.133242371978548e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6312,storm_outflow,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6313,baseflow,0.043191725743959485,2011-02-02,0.0,0.0,4.6647521223531225e-06,0.0,0.0,0.0,0.0,0.0,10.904520700618534,0.0,0.0,0.0 +6314,catchment_outflow,0.045528857324754285,2011-02-02,0.0,0.0,4.978076359550977e-06,0.0,0.0,0.0,0.0,0.0,10.68085100838466,0.0,0.0,0.0 +6315,reservoir_outflow,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6316,gw1_gw2,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6317,gw2_gw1,0.0022990137443192893,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6318,urban_drainage,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6319,percolation,0.04722729123678671,2011-02-03,0.0,0.0,6.2002019806893835e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6320,runoff,0.0018697052646358407,2011-02-03,0.0,0.0,2.506593897582838e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6321,storm_outflow,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6322,baseflow,0.043201814657691545,2011-02-03,0.0,0.0,4.6685907469989625e-06,0.0,0.0,0.0,0.0,0.0,10.89672796485738,0.0,0.0,0.0 +6323,catchment_outflow,0.045071519922327385,2011-02-03,0.0,0.0,4.919250136757247e-06,0.0,0.0,0.0,0.0,0.0,10.7162998297644,0.0,0.0,0.0 +6324,reservoir_outflow,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6325,gw1_gw2,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6326,gw2_gw1,0.0022836869860235255,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6327,urban_drainage,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6328,percolation,0.04628274541205098,2011-02-04,0.0,0.0,6.0761979410755956e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6329,runoff,0.0014957642117086728,2011-02-04,0.0,0.0,2.0052751180662707e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508526,0.0,0.0,0.0 +6330,storm_outflow,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6331,baseflow,0.04320951698457745,2011-02-04,0.0,0.0,4.672109764984155e-06,0.0,0.0,0.0,0.0,0.0,10.88911331258961,0.0,0.0,0.0 +6332,catchment_outflow,0.044705281196286126,2011-02-04,0.0,0.0,4.872637276790782e-06,0.0,0.0,0.0,0.0,0.0,10.74384308208928,0.0,0.0,0.0 +6333,reservoir_outflow,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6334,gw1_gw2,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6335,gw2_gw1,0.002268462406116889,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6336,urban_drainage,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6337,percolation,0.04535709050380996,2011-02-05,0.0,0.0,5.954673982254084e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6338,runoff,0.0011966113693669383,2011-02-05,0.0,0.0,1.6042200944530167e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6339,storm_outflow,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6340,baseflow,0.04321488591837553,2011-02-05,0.0,0.0,4.67531617552733e-06,0.0,0.0,0.0,0.0,0.0,10.88167186077152,0.0,0.0,0.0 +6341,catchment_outflow,0.04441149728774247,2011-02-05,0.0,0.0,4.835738184972632e-06,0.0,0.0,0.0,0.0,0.0,10.764887401924765,0.0,0.0,0.0 +6342,reservoir_outflow,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6343,gw1_gw2,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6344,gw2_gw1,0.00225333932340952,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6345,urban_drainage,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6346,percolation,0.04444994869373376,2011-02-06,0.0,0.0,5.835580502609003e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6347,runoff,0.0009572890954935506,2011-02-06,0.0,0.0,1.2833760755624135e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6348,storm_outflow,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6349,baseflow,0.04321797357531393,2011-02-06,0.0,0.0,4.678216836345034e-06,0.0,0.0,0.0,0.0,0.0,10.874398892948735,0.0,0.0,0.0 +6350,catchment_outflow,0.04417526267080748,2011-02-06,0.0,0.0,4.806554443901275e-06,0.0,0.0,0.0,0.0,0.0,10.78062931335533,0.0,0.0,0.0 +6351,reservoir_outflow,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6352,gw1_gw2,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6353,gw2_gw1,0.0022383170612533475,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6354,urban_drainage,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6355,percolation,0.043560949719859084,2011-02-07,0.0,0.0,5.718868892556822e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6356,runoff,0.0007658312763948407,2011-02-07,0.0,0.0,1.026700860449931e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508526,0.0,0.0,0.0 +6357,storm_outflow,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6358,baseflow,0.043218831015675294,2011-02-07,0.0,0.0,4.680818466485563e-06,0.0,0.0,0.0,0.0,0.0,10.867289852239603,0.0,0.0,0.0 +6359,catchment_outflow,0.04398466229207013,2011-02-07,0.0,0.0,4.783488552530556e-06,0.0,0.0,0.0,0.0,0.0,10.792072898212151,0.0,0.0,0.0 +6360,reservoir_outflow,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6361,gw1_gw2,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6362,gw2_gw1,0.0022233949475115367,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6363,urban_drainage,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6364,percolation,0.0426897307254619,2011-02-08,0.0,0.0,5.604491514705686e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6365,runoff,0.0006126650211158723,2011-02-08,0.0,0.0,8.213606883599444e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6366,storm_outflow,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6367,baseflow,0.043217508264949765,2011-02-08,0.0,0.0,4.683127649106114e-06,0.0,0.0,0.0,0.0,0.0,10.860340334671756,0.0,0.0,0.0 +6368,catchment_outflow,0.043830173286065637,2011-02-08,0.0,0.0,4.7652637179421085e-06,0.0,0.0,0.0,0.0,0.0,10.800051818045215,0.0,0.0,0.0 +6369,reservoir_outflow,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6370,gw1_gw2,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6371,gw2_gw1,0.00220857231452829,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6372,urban_drainage,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6373,percolation,0.04183593611095266,2011-02-09,0.0,0.0,5.4924016844115715e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6374,runoff,0.0004901320168926979,2011-02-09,0.0,0.0,6.570885506879557e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6375,storm_outflow,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6376,baseflow,0.04321405433456477,2011-02-09,0.0,0.0,4.685150834194378e-06,0.0,0.0,0.0,0.0,0.0,10.853546082851231,0.0,0.0,0.0 +6377,catchment_outflow,0.04370418635145747,2011-02-09,0.0,0.0,4.7508596892631735e-06,0.0,0.0,0.0,0.0,0.0,10.805252429529334,0.0,0.0,0.0 +6378,reservoir_outflow,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6379,gw1_gw2,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6380,gw2_gw1,0.0021938484990981165,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6381,urban_drainage,0.029999999999999995,2011-02-10,0.0,0.0,2.4186548469371474e-05,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 +6382,percolation,0.040999217388733605,2011-02-10,0.0,0.0,5.382553650723339e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6383,runoff,0.0003921056135141583,2011-02-10,0.0,0.0,5.2567084055036446e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6384,storm_outflow,0.029999999999999995,2011-02-10,0.0,0.0,2.4186548469371474e-05,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 +6385,baseflow,0.04320851724220019,2011-02-10,0.0,0.0,4.6868943412357e-06,0.0,0.0,0.0,0.0,0.0,10.846902979944906,0.0,0.0,0.0 +6386,catchment_outflow,0.07360062285571435,2011-02-10,0.0,0.0,2.892600989466221e-05,0.0,0.0,0.0,0.0,0.0,9.327309964011329,0.0,0.0,0.0 +6387,reservoir_outflow,0.015,2011-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6388,gw1_gw2,0.0,2011-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6389,gw2_gw1,0.002179222842437412,2011-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6390,urban_drainage,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6391,percolation,0.04017923304095894,2011-02-11,0.0,0.0,5.274902577708874e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6392,runoff,0.00031368449081132664,2011-02-11,0.0,0.0,4.2053667244029163e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6393,storm_outflow,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6394,baseflow,0.043200944031697094,2011-02-11,0.0,0.0,4.688364361826883e-06,0.0,0.0,0.0,0.0,0.0,10.840407043958301,0.0,0.0,0.0 +6395,catchment_outflow,0.04351462852250842,2011-02-11,0.0,0.0,4.7304180290709125e-06,0.0,0.0,0.0,0.0,0.0,10.809459180662694,0.0,0.0,0.0 +6396,reservoir_outflow,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6397,gw1_gw2,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6398,gw2_gw1,0.002164694690154789,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6399,urban_drainage,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6400,percolation,0.03937564838013976,2011-02-12,0.0,0.0,5.169404526154697e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6401,runoff,0.0002509475926490613,2011-02-12,0.0,0.0,3.364293379522333e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6402,storm_outflow,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6403,baseflow,0.04319138079256821,2011-02-12,0.0,0.0,4.689566962237703e-06,0.0,0.0,0.0,0.0,0.0,10.834054422291944,0.0,0.0,0.0 +6404,catchment_outflow,0.04344232838521727,2011-02-12,0.0,0.0,4.723209896032926e-06,0.0,0.0,0.0,0.0,0.0,10.8092916233175,0.0,0.0,0.0 +6405,reservoir_outflow,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6406,gw1_gw2,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6407,gw2_gw1,0.0021502633922199977,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6408,urban_drainage,0.04,2011-02-13,0.0,0.0,1.3483146067415747e-06,0.0,0.0,0.0,0.0,0.0,7.249999999999999,0.0,0.0,0.0 +6409,percolation,0.038588135412536965,2011-02-13,0.0,0.0,5.0660164356316035e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +6410,runoff,0.00020075807411924903,2011-02-13,0.0,0.0,2.6914347036178667e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +6411,storm_outflow,0.04,2011-02-13,0.0,0.0,1.3483146067415747e-06,0.0,0.0,0.0,0.0,0.0,7.249999999999999,0.0,0.0,0.0 +6412,baseflow,0.043179872679118124,2011-02-13,0.0,0.0,4.690508085921188e-06,0.0,0.0,0.0,0.0,0.0,10.82784138656057,0.0,0.0,0.0 +6413,catchment_outflow,0.08338063075323737,2011-02-13,0.0,0.0,6.0657370396989415e-06,0.0,0.0,0.0,0.0,0.0,9.101145273080128,0.0,0.0,0.0 +6414,reservoir_outflow,0.0445,2011-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6415,gw1_gw2,0.0,2011-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6416,gw2_gw1,0.002135928302938872,2011-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6417,urban_drainage,0.039999999999999994,2011-02-14,0.0,0.0,2.6516853932584287e-06,0.0,0.0,0.0,0.0,0.0,7.250000000000001,0.0,0.0,0.0 +6418,percolation,0.03859526489046099,2011-02-14,0.0,0.0,5.081363889399739e-06,0.0,0.0,0.0,0.0,0.0,8.044710711081628,0.0,0.0,0.0 +6419,runoff,0.005489868785754283,2011-02-14,0.0,0.0,4.104240858981702e-07,0.0,0.0,0.0,0.0,0.0,7.424736251476646,0.0,0.0,0.0 +6420,storm_outflow,0.039999999999999994,2011-02-14,0.0,0.0,2.6516853932584287e-06,0.0,0.0,0.0,0.0,0.0,7.250000000000001,0.0,0.0,0.0 +6421,baseflow,0.04316841115964648,2011-02-14,0.0,0.0,4.6914852254298844e-06,0.0,0.0,0.0,0.0,0.0,10.82162065346203,0.0,0.0,0.0 +6422,catchment_outflow,0.08865827994540076,2011-02-14,0.0,0.0,7.753594704586483e-06,0.0,0.0,0.0,0.0,0.0,8.99987004105197,0.0,0.0,0.0 +6423,reservoir_outflow,0.0,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6424,gw1_gw2,0.0,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6425,gw2_gw1,0.0021216887809192286,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6426,urban_drainage,0.025999999999999995,2011-02-15,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 +6427,percolation,0.04075110887677586,2011-02-15,0.0,0.0,5.410339126088895e-06,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 +6428,runoff,0.0222374997833479,2011-02-15,0.0,0.0,1.7636809836423717e-06,0.0,0.0,0.0,0.0,0.0,7.403767791273777,0.0,0.0,0.0 +6429,storm_outflow,0.025999999999999995,2011-02-15,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 +6430,baseflow,0.0431623679039393,2011-02-15,0.0,0.0,4.693282360181532e-06,0.0,0.0,0.0,0.0,0.0,10.814999113295896,0.0,0.0,0.0 +6431,catchment_outflow,0.0913998676872872,2011-02-15,0.0,0.0,7.4569633438239035e-06,0.0,0.0,0.0,0.0,0.0,8.938043631072905,0.0,0.0,0.0 +6432,reservoir_outflow,0.013,2011-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6433,gw1_gw2,0.0,2011-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6434,gw2_gw1,0.002107544189046351,2011-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6435,urban_drainage,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6436,percolation,0.039936086699240335,2011-02-16,0.0,0.0,5.302132343567115e-06,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 +6437,runoff,0.009873526347084681,2011-02-16,0.0,0.0,1.410944786913897e-06,0.0,0.0,0.0,0.0,0.0,7.615465657913542,0.0,0.0,0.0 +6438,storm_outflow,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6439,baseflow,0.04315430220092755,2011-02-16,0.0,0.0,4.6948044851399955e-06,0.0,0.0,0.0,0.0,0.0,10.808524110447275,0.0,0.0,0.0 +6440,catchment_outflow,0.05302782854801223,2011-02-16,0.0,0.0,6.105749272053892e-06,0.0,0.0,0.0,0.0,0.0,10.213992001135493,0.0,0.0,0.0 +6441,reservoir_outflow,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6442,gw1_gw2,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6443,gw2_gw1,0.0020934938944527914,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6444,urban_drainage,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6445,percolation,0.039137364965255536,2011-02-17,0.0,0.0,5.196089696695776e-06,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 +6446,runoff,0.007657404977695567,2011-02-17,0.0,0.0,1.1287558295311179e-06,0.0,0.0,0.0,0.0,0.0,7.63506657622233,0.0,0.0,0.0 +6447,storm_outflow,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6448,baseflow,0.04314425985783837,2011-02-17,0.0,0.0,4.696057698168886e-06,0.0,0.0,0.0,0.0,0.0,10.802191814804383,0.0,0.0,0.0 +6449,catchment_outflow,0.05080166483553394,2011-02-17,0.0,0.0,5.824813527700004e-06,0.0,0.0,0.0,0.0,0.0,10.324806661278073,0.0,0.0,0.0 +6450,reservoir_outflow,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6451,gw1_gw2,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6452,gw2_gw1,0.0020795372684897723,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6453,urban_drainage,0.04,2011-02-18,0.0,0.0,2.0338983050847454e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +6454,percolation,0.042893580554158116,2011-02-18,0.0,0.0,5.74801316907719e-06,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 +6455,runoff,0.03718198584884065,2011-02-18,0.0,0.0,3.089155551342658e-06,0.0,0.0,0.0,0.0,0.0,7.101170385001212,0.0,0.0,0.0 +6456,storm_outflow,0.04,2011-02-18,0.0,0.0,2.0338983050847454e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +6457,baseflow,0.04314363315957916,2011-02-18,0.0,0.0,4.698687586846156e-06,0.0,0.0,0.0,0.0,0.0,10.795077476360593,0.0,0.0,0.0 +6458,catchment_outflow,0.12032561900841982,2011-02-18,0.0,0.0,9.82174144327356e-06,0.0,0.0,0.0,0.0,0.0,8.29644166854279,0.0,0.0,0.0 +6459,reservoir_outflow,0.029500000000000005,2011-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6460,gw1_gw2,0.0,2011-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6461,gw2_gw1,0.002065673686699654,2011-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6462,urban_drainage,0.0040000000000000105,2011-02-19,0.0,0.0,1.966101694915255e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +6463,percolation,0.042035708943074956,2011-02-19,0.0,0.0,5.633052905695645e-06,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 +6464,runoff,0.018843954896722127,2011-02-19,0.0,0.0,2.4713244410741272e-06,0.0,0.0,0.0,0.0,0.0,7.312298494511777,0.0,0.0,0.0 +6465,storm_outflow,0.0040000000000000105,2011-02-19,0.0,0.0,1.966101694915255e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +6466,baseflow,0.0431408633490379,2011-02-19,0.0,0.0,4.7010235001432795e-06,0.0,0.0,0.0,0.0,0.0,10.788122307272895,0.0,0.0,0.0 +6467,catchment_outflow,0.06598481824576004,2011-02-19,0.0,0.0,9.138449636132661e-06,0.0,0.0,0.0,0.0,0.0,9.548431745709953,0.0,0.0,0.0 +6468,reservoir_outflow,0.0,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6469,gw1_gw2,0.0,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6470,gw2_gw1,0.0020519025287883963,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6471,urban_drainage,0.0009999999999999983,2011-02-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 +6472,percolation,0.043297837545316624,2011-02-20,0.0,0.0,5.825935292656396e-06,0.0,0.0,0.0,0.0,0.0,7.8978234960199725,0.0,0.0,0.0 +6473,runoff,0.02799158383693603,2011-02-20,0.0,0.0,2.995537703108178e-06,0.0,0.0,0.0,0.0,0.0,7.059355804968571,0.0,0.0,0.0 +6474,storm_outflow,0.0009999999999999983,2011-02-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 +6475,baseflow,0.0431412557845286,2011-02-20,0.0,0.0,4.703835779624563e-06,0.0,0.0,0.0,0.0,0.0,10.780870334299966,0.0,0.0,0.0 +6476,catchment_outflow,0.07213283962146463,2011-02-20,0.0,0.0,8.699373482732741e-06,0.0,0.0,0.0,0.0,0.0,9.27641401659578,0.0,0.0,0.0 +6477,reservoir_outflow,0.0004999999999999991,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6478,gw1_gw2,0.0,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6479,gw2_gw1,0.0020382231785966098,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6480,urban_drainage,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6481,percolation,0.04435990941717596,2011-02-21,0.0,0.0,5.989121868395398e-06,0.0,0.0,0.0,0.0,0.0,7.856790098377519,0.0,0.0,0.0 +6482,runoff,0.029682325278357746,2011-02-21,0.0,0.0,3.3287811011269844e-06,0.0,0.0,0.0,0.0,0.0,6.9861886901340835,0.0,0.0,0.0 +6483,storm_outflow,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6484,baseflow,0.0431443024186102,2011-02-21,0.0,0.0,4.70704899484649e-06,0.0,0.0,0.0,0.0,0.0,10.773354166050478,0.0,0.0,0.0 +6485,catchment_outflow,0.07282662769696795,2011-02-21,0.0,0.0,8.035830095973474e-06,0.0,0.0,0.0,0.0,0.0,9.229799547444994,0.0,0.0,0.0 +6486,reservoir_outflow,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6487,gw1_gw2,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6488,gw2_gw1,0.002024635024072552,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6489,urban_drainage,0.005999999999999998,2011-02-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 +6490,percolation,0.045880978682306915,2011-02-22,0.0,0.0,6.216870064135169e-06,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 +6491,runoff,0.03481146947202885,2011-02-22,0.0,0.0,3.821460324593846e-06,0.0,0.0,0.0,0.0,0.0,6.855455836322598,0.0,0.0,0.0 +6492,storm_outflow,0.005999999999999998,2011-02-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 +6493,baseflow,0.04315114410926944,2011-02-22,0.0,0.0,4.710823547519712e-06,0.0,0.0,0.0,0.0,0.0,10.765458296536108,0.0,0.0,0.0 +6494,catchment_outflow,0.08396261358129829,2011-02-22,0.0,0.0,1.0532283872113558e-05,0.0,0.0,0.0,0.0,0.0,8.814522349313727,0.0,0.0,0.0 +6495,reservoir_outflow,0.002999999999999999,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6496,gw1_gw2,0.0,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6497,gw2_gw1,0.002011137457245482,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6498,urban_drainage,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6499,percolation,0.04496335910866077,2011-02-23,0.0,0.0,6.092532662852465e-06,0.0,0.0,0.0,0.0,0.0,7.802922295869454,0.0,0.0,0.0 +6500,runoff,0.02301795614095107,2011-02-23,0.0,0.0,3.0571682596750767e-06,0.0,0.0,0.0,0.0,0.0,6.993946598304078,0.0,0.0,0.0 +6501,storm_outflow,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6502,baseflow,0.04315567464676792,2011-02-23,0.0,0.0,4.714277820308044e-06,0.0,0.0,0.0,0.0,0.0,10.757741723271955,0.0,0.0,0.0 +6503,catchment_outflow,0.06617363078771898,2011-02-23,0.0,0.0,7.771446079983121e-06,0.0,0.0,0.0,0.0,0.0,9.4485363785032,0.0,0.0,0.0 +6504,reservoir_outflow,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6505,gw1_gw2,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6506,gw2_gw1,0.001997729874196885,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6507,urban_drainage,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6508,percolation,0.04406409192648755,2011-02-24,0.0,0.0,5.970682009595414e-06,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 +6509,runoff,0.016871301268331258,2011-02-24,0.0,0.0,2.4457346077400616e-06,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 +6510,storm_outflow,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6511,baseflow,0.04315794568996721,2011-02-24,0.0,0.0,4.717418830781262e-06,0.0,0.0,0.0,0.0,0.0,10.750199575887871,0.0,0.0,0.0 +6512,catchment_outflow,0.06002924695829847,2011-02-24,0.0,0.0,7.163153438521324e-06,0.0,0.0,0.0,0.0,0.0,9.7191311331362,0.0,0.0,0.0 +6513,reservoir_outflow,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6514,gw1_gw2,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6515,gw2_gw1,0.0019844116750356022,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6516,urban_drainage,0.04,2011-02-25,0.0,0.0,1.3043478260869566e-06,0.0,0.0,0.0,0.0,0.0,5.807142857,0.0,0.0,0.0 +6517,percolation,0.051374708203121545,2011-02-25,0.0,0.0,6.987009225984231e-06,0.0,0.0,0.0,0.0,0.0,7.591176375240516,0.0,0.0,0.0 +6518,runoff,0.06954687022368006,2011-02-25,0.0,0.0,5.7423905414611296e-06,0.0,0.0,0.0,0.0,0.0,6.3166891894345865,0.0,0.0,0.0 +6519,storm_outflow,0.04,2011-02-25,0.0,0.0,1.3043478260869566e-06,0.0,0.0,0.0,0.0,0.0,5.807142857,0.0,0.0,0.0 +6520,baseflow,0.0431784875962501,2011-02-25,0.0,0.0,4.7230928067692695e-06,0.0,0.0,0.0,0.0,0.0,10.740802888777285,0.0,0.0,0.0 +6521,catchment_outflow,0.15272535781993016,2011-02-25,0.0,0.0,1.1769831174317356e-05,0.0,0.0,0.0,0.0,0.0,7.434019589768517,0.0,0.0,0.0 +6522,reservoir_outflow,0.046,2011-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6523,gw1_gw2,0.0,2011-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6524,gw2_gw1,0.0019711822638686983,2011-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6525,urban_drainage,0.04,2011-02-26,0.0,0.0,2.246376811594203e-06,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0 +6526,percolation,0.05222126392324346,2011-02-26,0.0,0.0,7.107397683604216e-06,0.0,0.0,0.0,0.0,0.0,7.548870210768758,0.0,0.0,0.0 +6527,runoff,0.045465141028166796,2011-02-26,0.0,0.0,5.461007906967806e-06,0.0,0.0,0.0,0.0,0.0,6.497312749983242,0.0,0.0,0.0 +6528,storm_outflow,0.04,2011-02-26,0.0,0.0,2.246376811594203e-06,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0 +6529,baseflow,0.04320109453706758,2011-02-26,0.0,0.0,4.729053568961357e-06,0.0,0.0,0.0,0.0,0.0,10.731156908704921,0.0,0.0,0.0 +6530,catchment_outflow,0.12866623556523438,2011-02-26,0.0,0.0,1.2436438287523368e-05,0.0,0.0,0.0,0.0,0.0,7.704310882434852,0.0,0.0,0.0 +6531,reservoir_outflow,0.0,2011-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6532,gw1_gw2,0.0,2011-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6533,gw2_gw1,0.001958041048776593,2011-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6534,urban_drainage,0.028000000000000008,2011-02-27,0.0,0.0,1.4492753623188408e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6535,percolation,0.05567566219422692,2011-02-27,0.0,0.0,7.581433569063903e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6536,runoff,0.06189304620525887,2011-02-27,0.0,0.0,6.422752456013478e-06,0.0,0.0,0.0,0.0,0.0,6.285497770260332,0.0,0.0,0.0 +6537,storm_outflow,0.028000000000000004,2011-02-27,0.0,0.0,1.4492753623188406e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6538,baseflow,0.04323228095621048,2011-02-27,0.0,0.0,4.736184518961614e-06,0.0,0.0,0.0,0.0,0.0,10.720588509148394,0.0,0.0,0.0 +6539,catchment_outflow,0.13312532716146935,2011-02-27,0.0,0.0,1.2608212337293932e-05,0.0,0.0,0.0,0.0,0.0,7.590837080696988,0.0,0.0,0.0 +6540,reservoir_outflow,0.01,2011-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6541,gw1_gw2,0.0,2011-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6542,gw2_gw1,0.0019449874417846404,2011-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6543,urban_drainage,0.0,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6544,percolation,0.05456214895034239,2011-02-28,0.0,0.0,7.429804897682626e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6545,runoff,0.03727686179053698,2011-02-28,0.0,0.0,5.138201964810783e-06,0.0,0.0,0.0,0.0,0.0,6.516375913825358,0.0,0.0,0.0 +6546,storm_outflow,3.469446951953614e-18,2011-02-28,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6547,baseflow,0.043260605626195804,2011-02-28,0.0,0.0,4.742918569908416e-06,0.0,0.0,0.0,0.0,0.0,10.710271582106568,0.0,0.0,0.0 +6548,catchment_outflow,0.08053746741673279,2011-02-28,0.0,0.0,9.881120534719198e-06,0.0,0.0,0.0,0.0,0.0,8.769122025198977,0.0,0.0,0.0 +6549,reservoir_outflow,0.0,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6550,gw1_gw2,0.0,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6551,gw2_gw1,0.0019320208588395006,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6552,urban_drainage,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6553,percolation,0.05347090597133553,2011-03-01,0.0,0.0,7.281208799728973e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6554,runoff,0.02950892826734138,2011-03-01,0.0,0.0,4.110561571848626e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6555,storm_outflow,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6556,baseflow,0.043286131377058654,2011-03-01,0.0,0.0,4.749264295482967e-06,0.0,0.0,0.0,0.0,0.0,10.70019881678128,0.0,0.0,0.0 +6557,catchment_outflow,0.07279505964440003,2011-03-01,0.0,0.0,8.859825867331593e-06,0.0,0.0,0.0,0.0,0.0,9.00872019186579,0.0,0.0,0.0 +6558,reservoir_outflow,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6559,gw1_gw2,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6560,gw2_gw1,0.0019191407197803657,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6561,urban_drainage,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6562,percolation,0.05240148785190882,2011-03-02,0.0,0.0,7.135584623734393e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6563,runoff,0.023607142613873103,2011-03-02,0.0,0.0,3.288449257478901e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6564,storm_outflow,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6565,baseflow,0.04330891976824578,2011-03-02,0.0,0.0,4.755230096303596e-06,0.0,0.0,0.0,0.0,0.0,10.690363169646886,0.0,0.0,0.0 +6566,catchment_outflow,0.06691606238211889,2011-03-02,0.0,0.0,8.043679353782497e-06,0.0,0.0,0.0,0.0,0.0,9.221764526998426,0.0,0.0,0.0 +6567,reservoir_outflow,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6568,gw1_gw2,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6569,gw2_gw1,0.0019063464483153325,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6570,urban_drainage,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6571,percolation,0.05135345809487066,2011-03-03,0.0,0.0,6.992872931259708e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6572,runoff,0.01888571409109848,2011-03-03,0.0,0.0,2.63075940598312e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6573,storm_outflow,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6574,baseflow,0.04332903111406233,2011-03-03,0.0,0.0,4.760824203390987e-06,0.0,0.0,0.0,0.0,0.0,10.68075785236592,0.0,0.0,0.0 +6575,catchment_outflow,0.062214745205160814,2011-03-03,0.0,0.0,7.391583609374107e-06,0.0,0.0,0.0,0.0,0.0,9.420013841054299,0.0,0.0,0.0 +6576,reservoir_outflow,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6577,gw1_gw2,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6578,gw2_gw1,0.0018936374719929817,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6579,urban_drainage,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6580,percolation,0.05032638893297324,2011-03-04,0.0,0.0,6.853015472634514e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6581,runoff,0.015108571272878785,2011-03-04,0.0,0.0,2.1046075247864967e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6582,storm_outflow,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6583,baseflow,0.04334652450860961,2011-03-04,0.0,0.0,4.766054681564095e-06,0.0,0.0,0.0,0.0,0.0,10.671376320356659,0.0,0.0,0.0 +6584,catchment_outflow,0.05845509578148839,2011-03-04,0.0,0.0,6.870662206350592e-06,0.0,0.0,0.0,0.0,0.0,9.600336207187196,0.0,0.0,0.0 +6585,reservoir_outflow,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6586,gw1_gw2,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6587,gw2_gw1,0.001881013222179817,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6588,urban_drainage,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6589,percolation,0.04931986115431377,2011-03-05,0.0,0.0,6.715955163181821e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6590,runoff,0.012442367079421642,2011-03-05,0.0,0.0,1.683686019829197e-06,0.0,0.0,0.0,0.0,0.0,6.495915908802238,0.0,0.0,0.0 +6591,storm_outflow,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6592,baseflow,0.04336145785022387,2011-03-05,0.0,0.0,4.77092943276814e-06,0.0,0.0,0.0,0.0,0.0,10.662212261971984,0.0,0.0,0.0 +6593,catchment_outflow,0.055803824929645515,2011-03-05,0.0,0.0,6.454615452597337e-06,0.0,0.0,0.0,0.0,0.0,9.733268974425851,0.0,0.0,0.0 +6594,reservoir_outflow,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6595,gw1_gw2,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6596,gw2_gw1,0.0018684731340318451,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6597,urban_drainage,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6598,percolation,0.04833346393122749,2011-03-06,0.0,0.0,6.581636059918185e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6599,runoff,0.009669485614642422,2011-03-06,0.0,0.0,1.3469488158633575e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6600,storm_outflow,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6601,baseflow,0.04337388786542637,2011-03-06,0.0,0.0,4.775456199336013e-06,0.0,0.0,0.0,0.0,0.0,10.653259588251618,0.0,0.0,0.0 +6602,catchment_outflow,0.053043373480068795,2011-03-06,0.0,0.0,6.1224050151993705e-06,0.0,0.0,0.0,0.0,0.0,9.90116221135224,0.0,0.0,0.0 +6603,reservoir_outflow,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6604,gw1_gw2,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6605,gw2_gw1,0.0018560166464714812,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6606,urban_drainage,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6607,percolation,0.04736679465260294,2011-03-07,0.0,0.0,6.450003338719821e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6608,runoff,0.007735588491713937,2011-03-07,0.0,0.0,1.077559052690686e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6609,storm_outflow,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6610,baseflow,0.04338387013239433,2011-03-07,0.0,0.0,4.779642567184474e-06,0.0,0.0,0.0,0.0,0.0,10.644512423212639,0.0,0.0,0.0 +6611,catchment_outflow,0.051119458624108265,2011-03-07,0.0,0.0,5.85720161987516e-06,0.0,0.0,0.0,0.0,0.0,10.021513627196967,0.0,0.0,0.0 +6612,reservoir_outflow,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6613,gw1_gw2,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6614,gw2_gw1,0.0018436432021617932,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6615,urban_drainage,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6616,percolation,0.04641945875955088,2011-03-08,0.0,0.0,6.321003271945424e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6617,runoff,0.006188470793371151,2011-03-08,0.0,0.0,8.620472421525489e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6618,storm_outflow,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6619,baseflow,0.04339145910396222,2011-03-08,0.0,0.0,4.783495968946376e-06,0.0,0.0,0.0,0.0,0.0,10.635965094645497,0.0,0.0,0.0 +6620,catchment_outflow,0.04957992989733337,2011-03-08,0.0,0.0,5.645543211098925e-06,0.0,0.0,0.0,0.0,0.0,10.123156905927138,0.0,0.0,0.0 +6621,reservoir_outflow,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6622,gw1_gw2,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6623,gw2_gw1,0.0018313522474807443,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6624,urban_drainage,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6625,percolation,0.04549106958435986,2011-03-09,0.0,0.0,6.194583206506516e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6626,runoff,0.0049507766346969205,2011-03-09,0.0,0.0,6.896377937220392e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6627,storm_outflow,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6628,baseflow,0.04339670813016322,2011-03-09,0.0,0.0,4.7870236870402765e-06,0.0,0.0,0.0,0.0,0.0,10.627612125385108,0.0,0.0,0.0 +6629,catchment_outflow,0.048347484764860144,2011-03-09,0.0,0.0,5.476661480762316e-06,0.0,0.0,0.0,0.0,0.0,10.207763158026692,0.0,0.0,0.0 +6630,reservoir_outflow,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6631,gw1_gw2,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6632,gw2_gw1,0.0018191432324972112,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6633,urban_drainage,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6634,percolation,0.044581248192672666,2011-03-10,0.0,0.0,6.070691542376385e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6635,runoff,0.003960621307757537,2011-03-10,0.0,0.0,5.517102349776313e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6636,storm_outflow,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6637,baseflow,0.043399669480319494,2011-03-10,0.0,0.0,4.790232856678617e-06,0.0,0.0,0.0,0.0,0.0,10.619448225028576,0.0,0.0,0.0 +6638,catchment_outflow,0.047360290788077034,2011-03-10,0.0,0.0,5.3419430916562474e-06,0.0,0.0,0.0,0.0,0.0,10.277250597967214,0.0,0.0,0.0 +6639,reservoir_outflow,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6640,gw1_gw2,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6641,gw2_gw1,0.0018070156109471825,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6642,urban_drainage,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6643,percolation,0.04368962322881921,2011-03-11,0.0,0.0,5.949277711528858e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6644,runoff,0.003168497046206029,2011-03-11,0.0,0.0,4.41368187982105e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6645,storm_outflow,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6646,baseflow,0.043400394364690745,2011-03-11,0.0,0.0,4.793130468815743e-06,0.0,0.0,0.0,0.0,0.0,10.611468282073128,0.0,0.0,0.0 +6647,catchment_outflow,0.046568891410896776,2011-03-11,0.0,0.0,5.234498656797847e-06,0.0,0.0,0.0,0.0,0.0,10.333600837047761,0.0,0.0,0.0 +6648,reservoir_outflow,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6649,gw1_gw2,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6650,gw2_gw1,0.001794968840207467,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6651,urban_drainage,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6652,percolation,0.04281583076424283,2011-03-12,0.0,0.0,5.830292157298281e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6653,runoff,0.0025347976369648234,2011-03-12,0.0,0.0,3.53094550385684e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6654,storm_outflow,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6655,baseflow,0.04339893295568961,2011-03-12,0.0,0.0,4.795723373036948e-06,0.0,0.0,0.0,0.0,0.0,10.603667356449526,0.0,0.0,0.0 +6656,catchment_outflow,0.04593373059265444,2011-03-12,0.0,0.0,5.148817923422632e-06,0.0,0.0,0.0,0.0,0.0,10.378730056603406,0.0,0.0,0.0 +6657,reservoir_outflow,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6658,gw1_gw2,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6659,gw2_gw1,0.0017830023812726026,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6660,urban_drainage,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6661,percolation,0.04195951414895797,2011-03-13,0.0,0.0,5.713686314152316e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6662,runoff,0.0020278381095718587,2011-03-13,0.0,0.0,2.824756403085472e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6663,storm_outflow,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6664,baseflow,0.04339533440867279,2011-03-13,0.0,0.0,4.798018280389737e-06,0.0,0.0,0.0,0.0,0.0,10.596040672427948,0.0,0.0,0.0 +6665,catchment_outflow,0.045423172518244646,2011-03-13,0.0,0.0,5.080493920698284e-06,0.0,0.0,0.0,0.0,0.0,10.414408669923628,0.0,0.0,0.0 +6666,reservoir_outflow,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6667,gw1_gw2,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6668,gw2_gw1,0.0017711156987308741,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6669,urban_drainage,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6670,percolation,0.04112032386597881,2011-03-14,0.0,0.0,5.599412587869269e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6671,runoff,0.001622270487657487,2011-03-14,0.0,0.0,2.2598051224683776e-07,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6672,storm_outflow,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6673,baseflow,0.04338964688231606,2011-03-14,0.0,0.0,4.800021766158436e-06,0.0,0.0,0.0,0.0,0.0,10.588583611874776,0.0,0.0,0.0 +6674,catchment_outflow,0.04501191736997354,2011-03-14,0.0,0.0,5.026002278405274e-06,0.0,0.0,0.0,0.0,0.0,10.442219172336257,0.0,0.0,0.0 +6675,reservoir_outflow,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6676,gw1_gw2,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6677,gw2_gw1,0.001759308260739445,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6678,urban_drainage,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6679,percolation,0.04029791738865923,2011-03-15,0.0,0.0,5.487424336111884e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6680,runoff,0.0012978163901259895,2011-03-15,0.0,0.0,1.8078440979747018e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6681,storm_outflow,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6682,baseflow,0.043381917558581916,2011-03-15,0.0,0.0,4.801740272583319e-06,0.0,0.0,0.0,0.0,0.0,10.581291707840194,0.0,0.0,0.0 +6683,catchment_outflow,0.0446797339487079,2011-03-15,0.0,0.0,4.982524682380789e-06,0.0,0.0,0.0,0.0,0.0,10.463541416394936,0.0,0.0,0.0 +6684,reservoir_outflow,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6685,gw1_gw2,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6686,gw2_gw1,0.001747579539001265,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6687,urban_drainage,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6688,percolation,0.03949195904088605,2011-03-16,0.0,0.0,5.377675849389646e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6689,runoff,0.0010382531121007916,2011-03-16,0.0,0.0,1.4462752783797617e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6690,storm_outflow,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6691,baseflow,0.04337219266228768,2011-03-16,0.0,0.0,4.803180111525335e-06,0.0,0.0,0.0,0.0,0.0,10.574160638457801,0.0,0.0,0.0 +6692,catchment_outflow,0.04441044577438847,2011-03-16,0.0,0.0,4.947807639363312e-06,0.0,0.0,0.0,0.0,0.0,10.479555924925075,0.0,0.0,0.0 +6693,reservoir_outflow,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6694,gw1_gw2,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6695,gw2_gw1,0.0017359290087410884,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6696,urban_drainage,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6697,percolation,0.03870211986006833,2011-03-17,0.0,0.0,5.270122332401854e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6698,runoff,0.0008306024896806332,2011-03-17,0.0,0.0,1.1570202227038092e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6699,storm_outflow,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6700,baseflow,0.04336051748028213,2011-03-17,0.0,0.0,4.804347467077527e-06,0.0,0.0,0.0,0.0,0.0,10.567186221138613,0.0,0.0,0.0 +6701,catchment_outflow,0.044191119969962764,2011-03-17,0.0,0.0,4.9200494893479075e-06,0.0,0.0,0.0,0.0,0.0,10.491257911691632,0.0,0.0,0.0 +6702,reservoir_outflow,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6703,gw1_gw2,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6704,gw2_gw1,0.0017243561486827376,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6705,urban_drainage,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6706,percolation,0.037928077462866965,2011-03-18,0.0,0.0,5.164719885753818e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6707,runoff,0.0006644819917445066,2011-03-18,0.0,0.0,9.256161781630477e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6708,storm_outflow,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6709,baseflow,0.04334693638023859,2011-03-18,0.0,0.0,4.805248398124218e-06,0.0,0.0,0.0,0.0,0.0,10.560364407042986,0.0,0.0,0.0 +6710,catchment_outflow,0.0440114183719831,2011-03-18,0.0,0.0,4.897810015940523e-06,0.0,0.0,0.0,0.0,0.0,10.499476738523793,0.0,0.0,0.0 +6711,reservoir_outflow,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6712,gw1_gw2,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6713,gw2_gw1,0.0017128604410251214,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6714,urban_drainage,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6715,percolation,0.037169515913609626,2011-03-19,0.0,0.0,5.061425488038741e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6716,runoff,0.0005315855933956052,2011-03-19,0.0,0.0,7.40492942530438e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6717,storm_outflow,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6718,baseflow,0.043331492829072026,2011-03-19,0.0,0.0,4.805888840849004e-06,0.0,0.0,0.0,0.0,0.0,10.55369127581507,0.0,0.0,0.0 +6719,catchment_outflow,0.04386307842246763,2011-03-19,0.0,0.0,4.879938135102048e-06,0.0,0.0,0.0,0.0,0.0,10.504897281894333,0.0,0.0,0.0 +6720,reservoir_outflow,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6721,gw1_gw2,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6722,gw2_gw1,0.0017014413714179,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6723,urban_drainage,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6724,percolation,0.03642612559533743,2011-03-20,0.0,0.0,4.960196978277967e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6725,runoff,0.0004252684747164842,2011-03-20,0.0,0.0,5.923943540243504e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6726,storm_outflow,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6727,baseflow,0.043314229410987684,2011-03-20,0.0,0.0,4.806274611192576e-06,0.0,0.0,0.0,0.0,0.0,10.547163030565285,0.0,0.0,0.0 +6728,catchment_outflow,0.043739497885704165,2011-03-20,0.0,0.0,4.865514046595011e-06,0.0,0.0,0.0,0.0,0.0,10.508081018854053,0.0,0.0,0.0 +6729,reservoir_outflow,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6730,gw1_gw2,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6731,gw2_gw1,0.0016900984289417666,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6732,urban_drainage,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6733,percolation,0.03569760308343068,2011-03-21,0.0,0.0,4.860993038712407e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6734,runoff,0.00034021477977318735,2011-03-21,0.0,0.0,4.739154832194803e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6735,storm_outflow,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6736,baseflow,0.043295187845168795,2011-03-21,0.0,0.0,4.8064114072613756e-06,0.0,0.0,0.0,0.0,0.0,10.540775993087312,0.0,0.0,0.0 +6737,catchment_outflow,0.043635402624941984,2011-03-21,0.0,0.0,4.8538029555833235e-06,0.0,0.0,0.0,0.0,0.0,10.50948559565299,0.0,0.0,0.0 +6738,reservoir_outflow,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6739,gw1_gw2,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6740,gw2_gw1,0.0016788311060823347,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6741,urban_drainage,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6742,percolation,0.03498365102176207,2011-03-22,0.0,0.0,4.763773177938159e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6743,runoff,0.00027217182381854987,2011-03-22,0.0,0.0,3.791323865755842e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +6744,storm_outflow,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6745,baseflow,0.043274409003110276,2011-03-22,0.0,0.0,4.806304811688068e-06,0.0,0.0,0.0,0.0,0.0,10.534526599296854,0.0,0.0,0.0 +6746,catchment_outflow,0.043546580826928825,2011-03-22,0.0,0.0,4.844218050345627e-06,0.0,0.0,0.0,0.0,0.0,10.50948228255241,0.0,0.0,0.0 +6747,reservoir_outflow,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6748,gw1_gw2,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6749,gw2_gw1,0.0016676388987084678,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6750,urban_drainage,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6751,percolation,0.03428397800132683,2011-03-23,0.0,0.0,4.668497714379396e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6752,runoff,0.00021773745905483987,2011-03-23,0.0,0.0,3.033059092604674e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6753,storm_outflow,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6754,baseflow,0.043251932925605814,2011-03-23,0.0,0.0,4.805960293944797e-06,0.0,0.0,0.0,0.0,0.0,10.528411394880244,0.0,0.0,0.0 +6755,catchment_outflow,0.04346967038466065,2011-03-23,0.0,0.0,4.836290884870843e-06,0.0,0.0,0.0,0.0,0.0,10.50837112372305,0.0,0.0,0.0 +6756,reservoir_outflow,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6757,gw1_gw2,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6758,gw2_gw1,0.0016565213060504291,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6759,urban_drainage,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6760,percolation,0.03359829844130029,2011-03-24,0.0,0.0,4.575127760091807e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6761,runoff,0.0001741899672438719,2011-03-24,0.0,0.0,2.426447274083739e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6762,storm_outflow,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6763,baseflow,0.04322779883939505,2011-03-24,0.0,0.0,4.805383212610164e-06,0.0,0.0,0.0,0.0,0.0,10.522427031141714,0.0,0.0,0.0 +6764,catchment_outflow,0.043401988806638925,2011-03-24,0.0,0.0,4.8296476853510015e-06,0.0,0.0,0.0,0.0,0.0,10.506393831090108,0.0,0.0,0.0 +6765,reservoir_outflow,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6766,gw1_gw2,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6767,gw2_gw1,0.0016454778306767893,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6768,urban_drainage,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6769,percolation,0.032926332472474285,2011-03-25,0.0,0.0,4.483625204889972e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6770,runoff,0.00013935197379509752,2011-03-25,0.0,0.0,1.9411578192669916e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6771,storm_outflow,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6772,baseflow,0.04320204517347775,2011-03-25,0.0,0.0,4.804578817590864e-06,0.0,0.0,0.0,0.0,0.0,10.516570261038764,0.0,0.0,0.0 +6773,catchment_outflow,0.043341397147272843,2011-03-25,0.0,0.0,4.823990395783534e-06,0.0,0.0,0.0,0.0,0.0,10.50374460013594,0.0,0.0,0.0 +6774,reservoir_outflow,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6775,gw1_gw2,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6776,gw2_gw1,0.0016345079784722218,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6777,urban_drainage,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6778,percolation,0.0322678058230248,2011-03-26,0.0,0.0,4.393952700792172e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6779,runoff,0.00011148157903607802,2011-03-26,0.0,0.0,1.552926255413593e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6780,storm_outflow,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6781,baseflow,0.04317470957510162,2011-03-26,0.0,0.0,4.803552252298867e-06,0.0,0.0,0.0,0.0,0.0,10.510837935395772,0.0,0.0,0.0 +6782,catchment_outflow,0.0432861911541377,2011-03-26,0.0,0.0,4.8190815148530035e-06,0.0,0.0,0.0,0.0,0.0,10.5005790840222,0.0,0.0,0.0 +6783,reservoir_outflow,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6784,gw1_gw2,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6785,gw2_gw1,0.001623611258616009,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6786,urban_drainage,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6787,percolation,0.031622449706564304,2011-03-27,0.0,0.0,4.306073646776329e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6788,runoff,8.918526322886242e-05,2011-03-27,0.0,0.0,1.2423410043308745e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6789,storm_outflow,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6790,baseflow,0.04314582892543028,2011-03-27,0.0,0.0,4.802308555785061e-06,0.0,0.0,0.0,0.0,0.0,10.505226999286524,0.0,0.0,0.0 +6791,catchment_outflow,0.04323501418865914,2011-03-27,0.0,0.0,4.81473196582837e-06,0.0,0.0,0.0,0.0,0.0,10.497021777775535,0.0,0.0,0.0 +6792,reservoir_outflow,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6793,gw1_gw2,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6794,gw2_gw1,0.001612787183558595,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6795,urban_drainage,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6796,percolation,0.03099000071243302,2011-03-28,0.0,0.0,4.2199521738408025e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6797,runoff,7.134821058308994e-05,2011-03-28,0.0,0.0,9.938728034646996e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6798,storm_outflow,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6799,baseflow,0.04311543935489778,2011-03-28,0.0,0.0,4.800852664830201e-06,0.0,0.0,0.0,0.0,0.0,10.49973448857691,0.0,0.0,0.0 +6800,catchment_outflow,0.043186787565480875,2011-03-28,0.0,0.0,4.810791392864848e-06,0.0,0.0,0.0,0.0,0.0,10.493172055251243,0.0,0.0,0.0 +6801,reservoir_outflow,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6802,gw1_gw2,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6803,gw2_gw1,0.0016020352690016893,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6804,urban_drainage,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6805,percolation,0.030370200698184358,2011-03-29,0.0,0.0,4.135553130363987e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6806,runoff,5.7078568466471945e-05,2011-03-29,0.0,0.0,7.950982427717595e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6807,storm_outflow,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6808,baseflow,0.04308357625825599,2011-03-29,0.0,0.0,4.7991894159940355e-06,0.0,0.0,0.0,0.0,0.0,10.49435752661957,0.0,0.0,0.0 +6809,catchment_outflow,0.04314065482672246,2011-03-29,0.0,0.0,4.807140398421753e-06,0.0,0.0,0.0,0.0,0.0,10.489109080049234,0.0,0.0,0.0 +6810,reservoir_outflow,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6811,gw1_gw2,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6812,gw2_gw1,0.0015913550338749972,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6813,urban_drainage,0.032,2011-03-30,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6814,percolation,0.02976279668422067,2011-03-30,0.0,0.0,4.052842067756707e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6815,runoff,4.566285477317756e-05,2011-03-30,0.0,0.0,6.360785942174076e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809226,0.0,0.0,0.0 +6816,storm_outflow,0.032,2011-03-30,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6817,baseflow,0.04305027430932091,2011-03-30,0.0,0.0,4.797323547623442e-06,0.0,0.0,0.0,0.0,0.0,10.489093321092698,0.0,0.0,0.0 +6818,catchment_outflow,0.07509593716409409,2011-03-30,0.0,0.0,3.580368433356562e-05,0.0,0.0,0.0,0.0,0.0,10.39393279625375,0.0,0.0,0.0 +6819,reservoir_outflow,0.016,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6820,gw1_gw2,0.0,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6821,gw2_gw1,0.0015807460003157915,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6822,urban_drainage,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6823,percolation,0.029167540750536257,2011-03-31,0.0,0.0,3.971785226401572e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6824,runoff,3.6530283818542064e-05,2011-03-31,0.0,0.0,5.088628753739262e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6825,storm_outflow,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6826,baseflow,0.04301556747542395,2011-03-31,0.0,0.0,4.795259701820388e-06,0.0,0.0,0.0,0.0,0.0,10.483939160975735,0.0,0.0,0.0 +6827,catchment_outflow,0.04305209775924249,2011-03-31,0.0,0.0,4.800348330574127e-06,0.0,0.0,0.0,0.0,0.0,10.480582085904748,0.0,0.0,0.0 +6828,reservoir_outflow,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6829,gw1_gw2,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6830,gw2_gw1,0.0015702076936467081,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6831,urban_drainage,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6832,percolation,0.028584189935525528,2011-04-01,0.0,0.0,3.8923495218735395e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6833,runoff,2.9224227054833644e-05,2011-04-01,0.0,0.0,4.070903002991409e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6834,storm_outflow,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6835,baseflow,0.0429794890315742,2011-04-01,0.0,0.0,4.793002426370521e-06,0.0,0.0,0.0,0.0,0.0,10.478892413655034,0.0,0.0,0.0 +6836,catchment_outflow,0.04300871325862903,2011-04-01,0.0,0.0,4.797073329373512e-06,0.0,0.0,0.0,0.0,0.0,10.4762074737144,0.0,0.0,0.0 +6837,reservoir_outflow,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6838,gw1_gw2,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6839,gw2_gw1,0.001559739642355673,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6840,urban_drainage,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6841,percolation,0.028012506136815017,2011-04-02,0.0,0.0,3.814502531436069e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6842,runoff,2.3379381643866914e-05,2011-04-02,0.0,0.0,3.256722402393127e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6843,storm_outflow,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6844,baseflow,0.0429420715743373,2011-04-02,0.0,0.0,4.790556176633184e-06,0.0,0.0,0.0,0.0,0.0,10.473950522153018,0.0,0.0,0.0 +6845,catchment_outflow,0.042965450955981165,2011-04-02,0.0,0.0,4.793812899035577e-06,0.0,0.0,0.0,0.0,0.0,10.471803096507566,0.0,0.0,0.0 +6846,reservoir_outflow,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6847,gw1_gw2,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6848,gw2_gw1,0.0015493413780735211,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6849,urban_drainage,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6850,percolation,0.02745225601407872,2011-04-03,0.0,0.0,3.738212480807348e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6851,runoff,1.8703505315093534e-05,2011-04-03,0.0,0.0,2.6053779219145015e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6852,storm_outflow,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6853,baseflow,0.042903347035436655,2011-04-03,0.0,0.0,4.78792531739362e-06,0.0,0.0,0.0,0.0,0.0,10.469111002474701,0.0,0.0,0.0 +6854,catchment_outflow,0.042922050540751745,2011-04-03,0.0,0.0,4.790530695315534e-06,0.0,0.0,0.0,0.0,0.0,10.467393433717147,0.0,0.0,0.0 +6855,reservoir_outflow,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6856,gw1_gw2,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6857,gw2_gw1,0.0015390124355532109,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6858,urban_drainage,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6859,percolation,0.026903210893797155,2011-04-04,0.0,0.0,3.663448231191202e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6860,runoff,1.496280425207482e-05,2011-04-04,0.0,0.0,2.0843023375316004e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6861,storm_outflow,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6862,baseflow,0.04286334669508255,2011-04-04,0.0,0.0,4.785114124678114e-06,0.0,0.0,0.0,0.0,0.0,10.4643714410658,0.0,0.0,0.0 +6863,catchment_outflow,0.042878309499334626,2011-04-04,0.0,0.0,4.787198427015646e-06,0.0,0.0,0.0,0.0,0.0,10.462997638274288,0.0,0.0,0.0 +6864,reservoir_outflow,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6865,gw1_gw2,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6866,gw2_gw1,0.0015287523526493986,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6867,urban_drainage,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6868,percolation,0.026365146675921203,2011-04-05,0.0,0.0,3.5901792665673773e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6869,runoff,1.1970243401659861e-05,2011-04-05,0.0,0.0,1.6674418700252812e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6870,storm_outflow,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6871,baseflow,0.04282210119503465,2011-04-05,0.0,0.0,4.782126787532838e-06,0.0,0.0,0.0,0.0,0.0,10.459729492376951,0.0,0.0,0.0 +6872,catchment_outflow,0.04283407143843631,2011-04-05,0.0,0.0,4.783794229402863e-06,0.0,0.0,0.0,0.0,0.0,10.45863061229873,0.0,0.0,0.0 +6873,reservoir_outflow,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6874,gw1_gw2,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6875,gw2_gw1,0.0015185606702981858,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6876,urban_drainage,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6877,percolation,0.025837843742402777,2011-04-06,0.0,0.0,3.5183756812360294e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6878,runoff,9.576194721327891e-06,2011-04-06,0.0,0.0,1.333953496020225e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6879,storm_outflow,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6880,baseflow,0.04277964055140306,2011-04-06,0.0,0.0,4.778967409767096e-06,0.0,0.0,0.0,0.0,0.0,10.455182876528925,0.0,0.0,0.0 +6881,catchment_outflow,0.04278921674612439,2011-04-06,0.0,0.0,4.780301363263116e-06,0.0,0.0,0.0,0.0,0.0,10.454303868456337,0.0,0.0,0.0 +6882,reservoir_outflow,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6883,gw1_gw2,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6884,gw2_gw1,0.00150843693249616,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6885,urban_drainage,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6886,percolation,0.025321086867554733,2011-04-07,0.0,0.0,3.4480081676113104e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6887,runoff,7.660955777062312e-06,2011-04-07,0.0,0.0,1.0671627968161799e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6888,storm_outflow,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6889,baseflow,0.042735994167193446,2011-04-07,0.0,0.0,4.775640011661706e-06,0.0,0.0,0.0,0.0,0.0,10.450729377073921,0.0,0.0,0.0 +6890,catchment_outflow,0.04274365512297051,2011-04-07,0.0,0.0,4.776707174458523e-06,0.0,0.0,0.0,0.0,0.0,10.450026219250784,0.0,0.0,0.0 +6891,reservoir_outflow,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6892,gw1_gw2,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6893,gw2_gw1,0.0014983806862792549,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6894,urban_drainage,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6895,percolation,0.024814665130203632,2011-04-08,0.0,0.0,3.379048004259083e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6896,runoff,6.12876462164985e-06,2011-04-08,0.0,0.0,8.53730237452944e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6897,storm_outflow,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6898,baseflow,0.04269119084460096,2011-04-08,0.0,0.0,4.772148531643199e-06,0.0,0.0,0.0,0.0,0.0,10.446366838848366,0.0,0.0,0.0 +6899,catchment_outflow,0.042697319609222614,2011-04-08,0.0,0.0,4.773002261880652e-06,0.0,0.0,0.0,0.0,0.0,10.445804328329174,0.0,0.0,0.0 +6900,reservoir_outflow,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6901,gw1_gw2,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6902,gw2_gw1,0.0014883914817044543,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6903,urban_drainage,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6904,percolation,0.02431837182759956,2011-04-09,0.0,0.0,3.3114670441739012e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6905,runoff,4.903011697319879e-06,2011-04-09,0.0,0.0,6.829841899623551e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6906,storm_outflow,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6907,baseflow,0.042645258797058466,2011-04-09,0.0,0.0,4.768496827924527e-06,0.0,0.0,0.0,0.0,0.0,10.442093165912869,0.0,0.0,0.0 +6908,catchment_outflow,0.042650161808755783,2011-04-09,0.0,0.0,4.769179812114489e-06,0.0,0.0,0.0,0.0,0.0,10.441643151224653,0.0,0.0,0.0 +6909,reservoir_outflow,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6910,gw1_gw2,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6911,gw2_gw1,0.001478468871826344,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6912,urban_drainage,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6913,percolation,0.023832004391047566,2011-04-10,0.0,0.0,3.2452377032904234e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6914,runoff,3.922409357855904e-06,2011-04-10,0.0,0.0,5.463873519698841e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6915,storm_outflow,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6916,baseflow,0.04259822566104344,2011-04-10,0.0,0.0,4.764688680112942e-06,0.0,0.0,0.0,0.0,0.0,10.437906319575186,0.0,0.0,0.0 +6917,catchment_outflow,0.042602148070401295,2011-04-10,0.0,0.0,4.765235067464912e-06,0.0,0.0,0.0,0.0,0.0,10.437546287567775,0.0,0.0,0.0 +6918,reservoir_outflow,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6919,gw1_gw2,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6920,gw2_gw1,0.0014686124126809476,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6921,urban_drainage,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6922,percolation,0.023355364303226614,2011-04-11,0.0,0.0,3.1803329492246148e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6923,runoff,3.137927486284723e-06,2011-04-11,0.0,0.0,4.371098815759072e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6924,storm_outflow,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6925,baseflow,0.0425501185076489,2011-04-11,0.0,0.0,4.760727790785721e-06,0.0,0.0,0.0,0.0,0.0,10.43380431649231,0.0,0.0,0.0 +6926,catchment_outflow,0.04255325643513518,2011-04-11,0.0,0.0,4.761164900667296e-06,0.0,0.0,0.0,0.0,0.0,10.433516262445442,0.0,0.0,0.0 +6927,reservoir_outflow,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6928,gw1_gw2,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6929,gw2_gw1,0.0014588216632628105,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6930,urban_drainage,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6931,percolation,0.02288825701716208,2011-04-12,0.0,0.0,3.1167262902401224e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6932,runoff,2.5103419890277785e-06,2011-04-12,0.0,0.0,3.4968790526072586e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6933,storm_outflow,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6934,baseflow,0.042500963853922685,2011-04-12,0.0,0.0,4.756617787034357e-06,0.0,0.0,0.0,0.0,0.0,10.429785226848034,0.0,0.0,0.0 +6935,catchment_outflow,0.04250347419591171,2011-04-12,0.0,0.0,4.756967474939618e-06,0.0,0.0,0.0,0.0,0.0,10.429554751079296,0.0,0.0,0.0 +6936,reservoir_outflow,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6937,gw1_gw2,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6938,gw2_gw1,0.0014490961855079477,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6939,urban_drainage,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6940,percolation,0.02243049187681884,2011-04-13,0.0,0.0,3.05439176443532e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6941,runoff,2.008273591222223e-06,2011-04-13,0.0,0.0,2.797503242085807e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6942,storm_outflow,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6943,baseflow,0.042450787673979924,2011-04-13,0.0,0.0,4.752362221977859e-06,0.0,0.0,0.0,0.0,0.0,10.425847172602422,0.0,0.0,0.0 +6944,catchment_outflow,0.04245279594757115,2011-04-13,0.0,0.0,4.752641972302068e-06,0.0,0.0,0.0,0.0,0.0,10.425662758175848,0.0,0.0,0.0 +6945,reservoir_outflow,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6946,gw1_gw2,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6947,gw2_gw1,0.0014394355442709284,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6948,urban_drainage,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6949,percolation,0.021981882039282464,2011-04-14,0.0,0.0,2.9933039291466137e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6950,runoff,1.6066188729777783e-06,2011-04-14,0.0,0.0,2.2380025936686455e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6951,storm_outflow,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6952,baseflow,0.04239961540989318,2011-04-14,0.0,0.0,4.7479645762457805e-06,0.0,0.0,0.0,0.0,0.0,10.421988325809945,0.0,0.0,0.0 +6953,catchment_outflow,0.04240122202876615,2011-04-14,0.0,0.0,4.7481883765051475e-06,0.0,0.0,0.0,0.0,0.0,10.421840761036538,0.0,0.0,0.0 +6954,reservoir_outflow,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6955,gw1_gw2,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6956,gw2_gw1,0.0014298393073092443,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6957,urban_drainage,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6958,percolation,0.021542244398496814,2011-04-15,0.0,0.0,2.9334378505636814e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6959,runoff,1.2852950983822226e-06,2011-04-15,0.0,0.0,1.7904020749349162e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6960,storm_outflow,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6961,baseflow,0.04234747198236469,2011-04-15,0.0,0.0,4.7434282594315755e-06,0.0,0.0,0.0,0.0,0.0,10.4182069070031,0.0,0.0,0.0 +6962,catchment_outflow,0.04234875727746307,2011-04-15,0.0,0.0,4.743607299639069e-06,0.0,0.0,0.0,0.0,0.0,10.418088823700092,0.0,0.0,0.0 +6963,reservoir_outflow,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6964,gw1_gw2,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6965,gw2_gw1,0.0014203070452602164,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6966,urban_drainage,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6967,percolation,0.021111399510526877,2011-04-16,0.0,0.0,2.8747690935524074e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6968,runoff,1.028236078705778e-06,2011-04-16,0.0,0.0,1.4323216599479331e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6969,storm_outflow,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6970,baseflow,0.042294381801185096,2011-04-16,0.0,0.0,4.738756611516878e-06,0.0,0.0,0.0,0.0,0.0,10.414501183638567,0.0,0.0,0.0 +6971,catchment_outflow,0.0422954100372638,2011-04-16,0.0,0.0,4.738899843682873e-06,0.0,0.0,0.0,0.0,0.0,10.414406687934468,0.0,0.0,0.0 +6972,reservoir_outflow,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6973,gw1_gw2,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6974,gw2_gw1,0.0014108383316253637,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6975,urban_drainage,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6976,percolation,0.020689171520316338,2011-04-17,0.0,0.0,2.817273711681359e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6977,runoff,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6978,storm_outflow,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6979,baseflow,0.04224036877548293,2011-04-17,0.0,0.0,4.733952904267289e-06,0.0,0.0,0.0,0.0,0.0,10.410869468603071,0.0,0.0,0.0 +6980,catchment_outflow,0.04224036877548293,2011-04-17,0.0,0.0,4.733952904267289e-06,0.0,0.0,0.0,0.0,0.0,10.410869468603071,0.0,0.0,0.0 +6981,reservoir_outflow,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6982,gw1_gw2,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6983,gw2_gw1,0.0014014327427474883,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6984,urban_drainage,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6985,percolation,0.020275388089910012,2011-04-18,0.0,0.0,2.760928237447732e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6986,runoff,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6987,storm_outflow,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6988,baseflow,0.042185456323768994,2011-04-18,0.0,0.0,4.72902034260024e-06,0.0,0.0,0.0,0.0,0.0,10.40731011877627,0.0,0.0,0.0 +6989,catchment_outflow,0.042185456323768994,2011-04-18,0.0,0.0,4.72902034260024e-06,0.0,0.0,0.0,0.0,0.0,10.40731011877627,0.0,0.0,0.0 +6990,reservoir_outflow,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6991,gw1_gw2,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6992,gw2_gw1,0.0013920898577962863,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6993,urban_drainage,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6994,percolation,0.01986988032811181,2011-04-19,0.0,0.0,2.705709672698777e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6995,runoff,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6996,storm_outflow,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6997,baseflow,0.04212966738377985,2011-04-19,0.0,0.0,4.723962065925487e-06,0.0,0.0,0.0,0.0,0.0,10.403821533648127,0.0,0.0,0.0 +6998,catchment_outflow,0.04212966738377985,2011-04-19,0.0,0.0,4.723962065925487e-06,0.0,0.0,0.0,0.0,0.0,10.403821533648127,0.0,0.0,0.0 +6999,reservoir_outflow,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7000,gw1_gw2,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7001,gw2_gw1,0.001382809258744011,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7002,urban_drainage,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7003,percolation,0.019472482721549576,2011-04-20,0.0,0.0,2.651595479244801e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7004,runoff,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7005,storm_outflow,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7006,baseflow,0.04207302442212428,2011-04-20,0.0,0.0,4.718781149458785e-06,0.0,0.0,0.0,0.0,0.0,10.400402153988384,0.0,0.0,0.0 +7007,catchment_outflow,0.04207302442212428,2011-04-20,0.0,0.0,4.718781149458785e-06,0.0,0.0,0.0,0.0,0.0,10.400402153988384,0.0,0.0,0.0 +7008,reservoir_outflow,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7009,gw1_gw2,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7010,gw2_gw1,0.0013735905303523313,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7011,urban_drainage,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7012,percolation,0.019083033067118584,2011-04-21,0.0,0.0,2.598563569659905e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7013,runoff,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7014,storm_outflow,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7015,baseflow,0.04201554944373677,2011-04-21,0.0,0.0,4.7134806055092876e-06,0.0,0.0,0.0,0.0,0.0,10.397050460565811,0.0,0.0,0.0 +7016,catchment_outflow,0.04201554944373677,2011-04-21,0.0,0.0,4.7134806055092876e-06,0.0,0.0,0.0,0.0,0.0,10.397050460565811,0.0,0.0,0.0 +7017,reservoir_outflow,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7018,gw1_gw2,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7019,gw2_gw1,0.0013644332601497667,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7020,urban_drainage,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7021,percolation,0.018701372405776212,2011-04-22,0.0,0.0,2.5465922982667067e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7022,runoff,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7023,storm_outflow,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7024,baseflow,0.041957264001141865,2011-04-22,0.0,0.0,4.708063384741181e-06,0.0,0.0,0.0,0.0,0.0,10.393764972915067,0.0,0.0,0.0 +7025,catchment_outflow,0.041957264001141865,2011-04-22,0.0,0.0,4.708063384741181e-06,0.0,0.0,0.0,0.0,0.0,10.393764972915067,0.0,0.0,0.0 +7026,reservoir_outflow,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7027,gw1_gw2,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7028,gw2_gw1,0.0013553370384155273,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7029,urban_drainage,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7030,percolation,0.01832734495766069,2011-04-23,0.0,0.0,2.4956604523013724e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +7031,runoff,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7032,storm_outflow,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7033,baseflow,0.04189818920353317,2011-04-23,0.0,0.0,4.702532377410081e-06,0.0,0.0,0.0,0.0,0.0,10.390544248149116,0.0,0.0,0.0 +7034,catchment_outflow,0.04189818920353317,2011-04-23,0.0,0.0,4.702532377410081e-06,0.0,0.0,0.0,0.0,0.0,10.390544248149116,0.0,0.0,0.0 +7035,reservoir_outflow,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7036,gw1_gw2,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7037,gw2_gw1,0.0013463014581592604,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7038,urban_drainage,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7039,percolation,0.017960798058507477,2011-04-24,0.0,0.0,2.445747243255345e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7040,runoff,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7041,storm_outflow,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7042,baseflow,0.041838345725670606,2011-04-24,0.0,0.0,4.696890414574694e-06,0.0,0.0,0.0,0.0,0.0,10.387386879815237,0.0,0.0,0.0 +7043,catchment_outflow,0.041838345725670606,2011-04-24,0.0,0.0,4.696890414574694e-06,0.0,0.0,0.0,0.0,0.0,10.387386879815237,0.0,0.0,0.0 +7044,reservoir_outflow,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7045,gw1_gw2,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7046,gw2_gw1,0.001337326115104709,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7047,urban_drainage,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7048,percolation,0.017601582097337327,2011-04-25,0.0,0.0,2.3968322983902384e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7049,runoff,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7050,storm_outflow,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7051,baseflow,0.04177775381659977,2011-04-25,0.0,0.0,4.691140269284233e-06,0.0,0.0,0.0,0.0,0.0,10.384291496792725,0.0,0.0,0.0 +7052,catchment_outflow,0.04177775381659977,2011-04-25,0.0,0.0,4.691140269284233e-06,0.0,0.0,0.0,0.0,0.0,10.384291496792725,0.0,0.0,0.0 +7053,reservoir_outflow,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7054,gw1_gw2,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7055,gw2_gw1,0.0013284106076708825,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7056,urban_drainage,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7057,percolation,0.017249550455390582,2011-04-26,0.0,0.0,2.3488956524224335e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7058,runoff,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7059,storm_outflow,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7060,baseflow,0.04171643330819674,2011-04-26,0.0,0.0,4.685284657742078e-06,0.0,0.0,0.0,0.0,0.0,10.381256762230555,0.0,0.0,0.0 +7061,catchment_outflow,0.04171643330819674,2011-04-26,0.0,0.0,4.685284657742078e-06,0.0,0.0,0.0,0.0,0.0,10.381256762230555,0.0,0.0,0.0 +7062,reservoir_outflow,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7063,gw1_gw2,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7064,gw2_gw1,0.0013195545369528716,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7065,urban_drainage,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7066,percolation,0.01690455944628277,2011-04-27,0.0,0.0,2.3019177393739845e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7067,runoff,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7068,storm_outflow,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7069,baseflow,0.04165440362354196,2011-04-27,0.0,0.0,4.679326240446158e-06,0.0,0.0,0.0,0.0,0.0,10.378281372523274,0.0,0.0,0.0 +7070,catchment_outflow,0.04165440362354196,2011-04-27,0.0,0.0,4.679326240446158e-06,0.0,0.0,0.0,0.0,0.0,10.378281372523274,0.0,0.0,0.0 +7071,reservoir_outflow,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7072,gw1_gw2,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7073,gw2_gw1,0.0013107575067063948,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7074,urban_drainage,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7075,percolation,0.016566468257357116,2011-04-28,0.0,0.0,2.255879384586505e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7076,runoff,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7077,storm_outflow,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7078,baseflow,0.04159168378512649,2011-04-28,0.0,0.0,4.673267623306509e-06,0.0,0.0,0.0,0.0,0.0,10.375364056323544,0.0,0.0,0.0 +7079,catchment_outflow,0.04159168378512649,2011-04-28,0.0,0.0,4.673267623306509e-06,0.0,0.0,0.0,0.0,0.0,10.375364056323544,0.0,0.0,0.0 +7080,reservoir_outflow,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7081,gw1_gw2,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7082,gw2_gw1,0.0013020191233282575,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7083,urban_drainage,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7084,percolation,0.016235138892209972,2011-04-29,0.0,0.0,2.2107617968947747e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7085,runoff,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7086,storm_outflow,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7087,baseflow,0.0415282924228942,2011-04-29,0.0,0.0,4.667111358740479e-06,0.0,0.0,0.0,0.0,0.0,10.372503573589773,0.0,0.0,0.0 +7088,catchment_outflow,0.0415282924228942,2011-04-29,0.0,0.0,4.667111358740479e-06,0.0,0.0,0.0,0.0,0.0,10.372503573589773,0.0,0.0,0.0 +7089,reservoir_outflow,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7090,gw1_gw2,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7091,gw2_gw1,0.001293338995839477,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7092,urban_drainage,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7093,percolation,0.015910436114365774,2011-04-30,0.0,0.0,2.166546560956879e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7094,runoff,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7095,storm_outflow,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7096,baseflow,0.04146424778212288,2011-04-30,0.0,0.0,4.660859946746021e-06,0.0,0.0,0.0,0.0,0.0,10.36969871466742,0.0,0.0,0.0 +7097,catchment_outflow,0.04146424778212288,2011-04-30,0.0,0.0,4.660859946746021e-06,0.0,0.0,0.0,0.0,0.0,10.36969871466742,0.0,0.0,0.0 +7098,reservoir_outflow,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7099,gw1_gw2,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7100,gw2_gw1,0.0012847167358675195,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7101,urban_drainage,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7102,percolation,0.015592227392078457,2011-05-01,0.0,0.0,2.1232156297377417e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7103,runoff,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7104,storm_outflow,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7105,baseflow,0.04139956773114777,2011-05-01,0.0,0.0,4.6545158359535e-06,0.0,0.0,0.0,0.0,0.0,10.366948299402518,0.0,0.0,0.0 +7106,catchment_outflow,0.04139956773114777,2011-05-01,0.0,0.0,4.6545158359535e-06,0.0,0.0,0.0,0.0,0.0,10.366948299402518,0.0,0.0,0.0 +7107,reservoir_outflow,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7108,gw1_gw2,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7109,gw2_gw1,0.00127615195762818,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7110,urban_drainage,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7111,percolation,0.015280382844236889,2011-05-02,0.0,0.0,2.0807513171429867e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7112,runoff,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7113,storm_outflow,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7114,baseflow,0.04133426976893049,2011-05-02,0.0,0.0,4.6480814246564725e-06,0.0,0.0,0.0,0.0,0.0,10.364251176286162,0.0,0.0,0.0 +7115,catchment_outflow,0.04133426976893049,2011-05-02,0.0,0.0,4.6480814246564725e-06,0.0,0.0,0.0,0.0,0.0,10.364251176286162,0.0,0.0,0.0 +7116,reservoir_outflow,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7117,gw1_gw2,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7118,gw2_gw1,0.0012676442779104846,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7119,urban_drainage,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7120,percolation,0.014974775187352149,2011-05-03,0.0,0.0,2.0391362908001266e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7121,runoff,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7122,storm_outflow,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7123,baseflow,0.04126837103247654,2011-05-03,0.0,0.0,4.641559061821833e-06,0.0,0.0,0.0,0.0,0.0,10.361606221628637,0.0,0.0,0.0 +7124,catchment_outflow,0.04126837103247654,2011-05-03,0.0,0.0,4.641559061821833e-06,0.0,0.0,0.0,0.0,0.0,10.361606221628637,0.0,0.0,0.0 +7125,reservoir_outflow,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7126,gw1_gw2,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7127,gw2_gw1,0.0012591933160578607,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7128,urban_drainage,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7129,percolation,0.014675279683605108,2011-05-04,0.0,0.0,1.9983535649841247e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7130,runoff,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7131,storm_outflow,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7132,baseflow,0.04120188830410435,2011-05-04,0.0,0.0,4.634951048079738e-06,0.0,0.0,0.0,0.0,0.0,10.359012338762025,0.0,0.0,0.0 +7133,catchment_outflow,0.04120188830410435,2011-05-04,0.0,0.0,4.634951048079738e-06,0.0,0.0,0.0,0.0,0.0,10.359012338762025,0.0,0.0,0.0 +7134,reservoir_outflow,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7135,gw1_gw2,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7136,gw2_gw1,0.0012507986939507276,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7137,urban_drainage,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7138,percolation,0.014381774089933002,2011-05-05,0.0,0.0,1.9583864936844418e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +7139,runoff,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7140,storm_outflow,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7141,baseflow,0.04113483801856893,2011-05-05,0.0,0.0,4.62825963669375e-06,0.0,0.0,0.0,0.0,0.0,10.356468457270125,0.0,0.0,0.0 +7142,catchment_outflow,0.04113483801856893,2011-05-05,0.0,0.0,4.62825963669375e-06,0.0,0.0,0.0,0.0,0.0,10.356468457270125,0.0,0.0,0.0 +7143,reservoir_outflow,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7144,gw1_gw2,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7145,gw2_gw1,0.0012424600359910443,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7146,urban_drainage,0.04,2011-05-06,0.0,0.0,2.0845070422535202e-05,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0 +7147,percolation,0.014094138608134344,2011-05-06,0.0,0.0,1.9192187638107534e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +7148,runoff,0.0,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7149,storm_outflow,0.04,2011-05-06,0.0,0.0,2.0845070422535202e-05,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0 +7150,baseflow,0.04106723627004285,2011-05-06,0.0,0.0,4.6214870345115434e-06,0.0,0.0,0.0,0.0,0.0,10.353973532244591,0.0,0.0,0.0 +7151,catchment_outflow,0.08106723627004285,2011-05-06,0.0,0.0,2.5466557457046747e-05,0.0,0.0,0.0,0.0,0.0,12.270173785979159,0.0,0.0,0.0 +7152,reservoir_outflow,0.035500000000000004,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7153,gw1_gw2,0.0,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7154,gw2_gw1,0.0012341769690843664,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7155,urban_drainage,0.04,2011-05-07,0.0,0.0,3.8122065727699536e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833332,0.0,0.0,0.0 +7156,percolation,0.01381225583597166,2011-05-07,0.0,0.0,1.8808343885345386e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +7157,runoff,0.0,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7158,storm_outflow,0.04,2011-05-07,0.0,0.0,3.8122065727699536e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833332,0.0,0.0,0.0 +7159,baseflow,0.04099909881895767,2011-05-07,0.0,0.0,4.6146354028966e-06,0.0,0.0,0.0,0.0,0.0,10.351526543566235,0.0,0.0,0.0 +7160,catchment_outflow,0.08099909881895767,2011-05-07,0.0,0.0,8.426841975666553e-06,0.0,0.0,0.0,0.0,0.0,12.456203062396641,0.0,0.0,0.0 +7161,reservoir_outflow,0.0745,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7162,gw1_gw2,0.0,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7163,gw2_gw1,0.0012259491226238595,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7164,urban_drainage,0.04,2011-05-08,0.0,0.0,4.589671361502348e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 +7165,percolation,0.013536010719252221,2011-05-08,0.0,0.0,1.8432177007638474e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +7166,runoff,0.0,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7167,storm_outflow,0.04,2011-05-08,0.0,0.0,4.589671361502348e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 +7168,baseflow,0.040930441098708414,2011-05-08,0.0,0.0,4.607706858641269e-06,0.0,0.0,0.0,0.0,0.0,10.349126495210518,0.0,0.0,0.0 +7169,catchment_outflow,0.08093044109870842,2011-05-08,0.0,0.0,9.197378220143617e-06,0.0,0.0,0.0,0.0,0.0,12.456774754001913,0.0,0.0,0.0 +7170,reservoir_outflow,0.0,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7171,gw1_gw2,0.0,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7172,gw2_gw1,0.0012177761284730693,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7173,urban_drainage,0.04,2011-05-09,0.0,0.0,6.058057263770417e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 +7174,percolation,0.013265290504867177,2011-05-09,0.0,0.0,1.8063533467485704e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +7175,runoff,0.0,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7176,storm_outflow,0.04,2011-05-09,0.0,0.0,6.058057263770417e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 +7177,baseflow,0.04086127822222381,2011-05-09,0.0,0.0,4.600703474861538e-06,0.0,0.0,0.0,0.0,0.0,10.346772414576261,0.0,0.0,0.0 +7178,catchment_outflow,0.0808612782222238,2011-05-09,0.0,0.0,1.0658760738631955e-05,0.0,0.0,0.0,0.0,0.0,12.457387906224238,0.0,0.0,0.0 +7179,reservoir_outflow,0.0,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7180,gw1_gw2,0.0,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7181,gw2_gw1,0.0012096576209495778,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7182,urban_drainage,0.011999999999999993,2011-05-10,0.0,0.0,5.694994379422072e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +7183,percolation,0.012999984694769835,2011-05-10,0.0,0.0,1.7702262798135994e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7184,runoff,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7185,storm_outflow,0.011999999999999993,2011-05-10,0.0,0.0,5.694994379422072e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +7186,baseflow,0.040791624988405176,2011-05-10,0.0,0.0,4.593627281873918e-06,0.0,0.0,0.0,0.0,0.0,10.344463351836666,0.0,0.0,0.0 +7187,catchment_outflow,0.05279162498840517,2011-05-10,0.0,0.0,1.028862166129599e-05,0.0,0.0,0.0,0.0,0.0,11.314841299308663,0.0,0.0,0.0 +7188,reservoir_outflow,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7189,gw1_gw2,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7190,gw2_gw1,0.0012015932368099058,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7191,urban_drainage,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7192,percolation,0.012739985000874438,2011-05-11,0.0,0.0,1.7348217542173273e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +7193,runoff,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7194,storm_outflow,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7195,baseflow,0.04072149588843635,2011-05-11,0.0,0.0,4.586480268054776e-06,0.0,0.0,0.0,0.0,0.0,10.342198379311778,0.0,0.0,0.0 +7196,catchment_outflow,0.04072149588843635,2011-05-11,0.0,0.0,4.586480268054776e-06,0.0,0.0,0.0,0.0,0.0,10.342198379311778,0.0,0.0,0.0 +7197,reservoir_outflow,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7198,gw1_gw2,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7199,gw2_gw1,0.001193582615231037,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7200,urban_drainage,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7201,percolation,0.01248518530085695,2011-05-12,0.0,0.0,1.7001253191329807e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +7202,runoff,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7203,storm_outflow,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7204,baseflow,0.040650905111967395,2011-05-12,0.0,0.0,4.579264380682472e-06,0.0,0.0,0.0,0.0,0.0,10.33997659086157,0.0,0.0,0.0 +7205,catchment_outflow,0.040650905111967395,2011-05-12,0.0,0.0,4.579264380682472e-06,0.0,0.0,0.0,0.0,0.0,10.33997659086157,0.0,0.0,0.0 +7206,reservoir_outflow,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7207,gw1_gw2,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7208,gw2_gw1,0.0011856253977962083,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7209,urban_drainage,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7210,percolation,0.012235481594839814,2011-05-13,0.0,0.0,1.6661228127503217e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7211,runoff,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7212,storm_outflow,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7213,baseflow,0.040579866553174575,2011-05-13,0.0,0.0,4.571981526762642e-06,0.0,0.0,0.0,0.0,0.0,10.337797101298838,0.0,0.0,0.0 +7214,catchment_outflow,0.040579866553174575,2011-05-13,0.0,0.0,4.571981526762642e-06,0.0,0.0,0.0,0.0,0.0,10.337797101298838,0.0,0.0,0.0 +7215,reservoir_outflow,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7216,gw1_gw2,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7217,gw2_gw1,0.001177721228477502,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7218,urban_drainage,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7219,percolation,0.011990771962943014,2011-05-14,0.0,0.0,1.6328003564953147e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7220,runoff,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7221,storm_outflow,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7222,baseflow,0.040508393816699,2011-05-14,0.0,0.0,4.564633573836973e-06,0.0,0.0,0.0,0.0,0.0,10.335659045821163,0.0,0.0,0.0 +7223,catchment_outflow,0.040508393816699,2011-05-14,0.0,0.0,4.564633573836973e-06,0.0,0.0,0.0,0.0,0.0,10.335659045821163,0.0,0.0,0.0 +7224,reservoir_outflow,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7225,gw1_gw2,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7226,gw2_gw1,0.0011698697536207448,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7227,urban_drainage,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7228,percolation,0.011750956523684155,2011-05-15,0.0,0.0,1.6001443493654085e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7229,runoff,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7230,storm_outflow,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7231,baseflow,0.04043650022346647,2011-05-15,0.0,0.0,4.557222350775795e-06,0.0,0.0,0.0,0.0,0.0,10.333561579461199,0.0,0.0,0.0 +7232,catchment_outflow,0.04043650022346647,2011-05-15,0.0,0.0,4.557222350775795e-06,0.0,0.0,0.0,0.0,0.0,10.333561579461199,0.0,0.0,0.0 +7233,reservoir_outflow,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7234,gw1_gw2,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7235,gw2_gw1,0.001162070621930056,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7236,urban_drainage,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7237,percolation,0.011515937393210472,2011-05-16,0.0,0.0,1.5681414623781002e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7238,runoff,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7239,storm_outflow,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7240,baseflow,0.04036419881639082,2011-05-16,0.0,0.0,4.5497496485548e-06,0.0,0.0,0.0,0.0,0.0,10.331503876554612,0.0,0.0,0.0 +7241,catchment_outflow,0.04036419881639082,2011-05-16,0.0,0.0,4.5497496485548e-06,0.0,0.0,0.0,0.0,0.0,10.331503876554612,0.0,0.0,0.0 +7242,reservoir_outflow,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7243,gw1_gw2,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7244,gw2_gw1,0.0011543234844507923,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7245,urban_drainage,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7246,percolation,0.011285618645346263,2011-05-17,0.0,0.0,1.536778633130538e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7247,runoff,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7248,storm_outflow,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7249,baseflow,0.04029150236596321,2011-05-17,0.0,0.0,4.542217221016239e-06,0.0,0.0,0.0,0.0,0.0,10.32948513022499,0.0,0.0,0.0 +7250,catchment_outflow,0.04029150236596321,2011-05-17,0.0,0.0,4.542217221016239e-06,0.0,0.0,0.0,0.0,0.0,10.32948513022499,0.0,0.0,0.0 +7251,reservoir_outflow,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7252,gw1_gw2,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7253,gw2_gw1,0.0011466279945540948,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7254,urban_drainage,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7255,percolation,0.011059906272439336,2011-05-18,0.0,0.0,1.506043060467927e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7256,runoff,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7257,storm_outflow,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7258,baseflow,0.040218423375729395,2011-05-18,0.0,0.0,4.534626785614869e-06,0.0,0.0,0.0,0.0,0.0,10.327504551885086,0.0,0.0,0.0 +7259,catchment_outflow,0.040218423375729395,2011-05-18,0.0,0.0,4.534626785614869e-06,0.0,0.0,0.0,0.0,0.0,10.327504551885086,0.0,0.0,0.0 +7260,reservoir_outflow,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7261,gw1_gw2,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7262,gw2_gw1,0.0011389838079237438,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7263,urban_drainage,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7264,percolation,0.01083870814699055,2011-05-19,0.0,0.0,1.4759221992585688e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7265,runoff,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7266,storm_outflow,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7267,baseflow,0.04014497408765755,2011-05-19,0.0,0.0,4.526980024148978e-06,0.0,0.0,0.0,0.0,0.0,10.325561370753816,0.0,0.0,0.0 +7268,catchment_outflow,0.04014497408765755,2011-05-19,0.0,0.0,4.526980024148978e-06,0.0,0.0,0.0,0.0,0.0,10.325561370753816,0.0,0.0,0.0 +7269,reservoir_outflow,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7270,gw1_gw2,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7271,gw2_gw1,0.001131390582537506,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7272,urban_drainage,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7273,percolation,0.01062193398405074,2011-05-20,0.0,0.0,1.4464037552733975e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7274,runoff,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7275,storm_outflow,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7276,baseflow,0.04007116648739854,2011-05-20,0.0,0.0,4.519278583476789e-06,0.0,0.0,0.0,0.0,0.0,10.323654833388376,0.0,0.0,0.0 +7277,catchment_outflow,0.04007116648739854,2011-05-20,0.0,0.0,4.519278583476789e-06,0.0,0.0,0.0,0.0,0.0,10.323654833388376,0.0,0.0,0.0 +7278,reservoir_outflow,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7279,gw1_gw2,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7280,gw2_gw1,0.0011238479786538137,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7281,urban_drainage,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7282,percolation,0.010409495304369725,2011-05-21,0.0,0.0,1.4174756801679296e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7283,runoff,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7284,storm_outflow,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7285,baseflow,0.039997012309440964,2011-05-21,0.0,0.0,4.511524076218516e-06,0.0,0.0,0.0,0.0,0.0,10.32178420323098,0.0,0.0,0.0 +7286,catchment_outflow,0.039997012309440964,2011-05-21,0.0,0.0,4.511524076218516e-06,0.0,0.0,0.0,0.0,0.0,10.32178420323098,0.0,0.0,0.0 +7287,reservoir_outflow,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7288,gw1_gw2,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7289,gw2_gw1,0.0011163556587963086,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7290,urban_drainage,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7291,percolation,0.01020130539828233,2011-05-22,0.0,0.0,1.389126166564571e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7292,runoff,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7293,storm_outflow,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7294,baseflow,0.039922523042163066,2011-05-22,0.0,0.0,4.503718081444381e-06,0.0,0.0,0.0,0.0,0.0,10.319948760169625,0.0,0.0,0.0 +7295,catchment_outflow,0.039922523042163066,2011-05-22,0.0,0.0,4.503718081444381e-06,0.0,0.0,0.0,0.0,0.0,10.319948760169625,0.0,0.0,0.0 +7296,reservoir_outflow,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7297,gw1_gw2,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7298,gw2_gw1,0.0011089132877376785,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7299,urban_drainage,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7300,percolation,0.009997279290316683,2011-05-23,0.0,0.0,1.3613436432332797e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7301,runoff,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7302,storm_outflow,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7303,baseflow,0.03984770993278346,2011-05-23,0.0,0.0,4.495862145348854e-06,0.0,0.0,0.0,0.0,0.0,10.318147800112447,0.0,0.0,0.0 +7304,catchment_outflow,0.03984770993278346,2011-05-23,0.0,0.0,4.495862145348854e-06,0.0,0.0,0.0,0.0,0.0,10.318147800112447,0.0,0.0,0.0 +7305,reservoir_outflow,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7306,gw1_gw2,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7307,gw2_gw1,0.0011015205324861556,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7308,urban_drainage,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7309,percolation,0.00979733370451035,2011-05-24,0.0,0.0,1.3341167703686138e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7310,runoff,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7311,storm_outflow,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7312,baseflow,0.03977258399221277,2011-05-24,0.0,0.0,4.4879577819114025e-06,0.0,0.0,0.0,0.0,0.0,10.31638063457508,0.0,0.0,0.0 +7313,catchment_outflow,0.03977258399221277,2011-05-24,0.0,0.0,4.4879577819114025e-06,0.0,0.0,0.0,0.0,0.0,10.31638063457508,0.0,0.0,0.0 +7314,reservoir_outflow,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7315,gw1_gw2,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7316,gw2_gw1,0.00109417706226953,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7317,urban_drainage,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7318,percolation,0.009601387030420142,2011-05-25,0.0,0.0,1.3074344349612417e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7319,runoff,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7320,storm_outflow,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7321,baseflow,0.039697155999808297,2011-05-25,0.0,0.0,4.480006473544028e-06,0.0,0.0,0.0,0.0,0.0,10.314646590280635,0.0,0.0,0.0 +7322,catchment_outflow,0.039697155999808297,2011-05-25,0.0,0.0,4.480006473544028e-06,0.0,0.0,0.0,0.0,0.0,10.314646590280635,0.0,0.0,0.0 +7323,reservoir_outflow,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7324,gw1_gw2,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7325,gw2_gw1,0.0010868825485212952,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7326,urban_drainage,0.008999999999999998,2011-05-26,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 +7327,percolation,0.00940935928981174,2011-05-26,0.0,0.0,1.2812857462620168e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7328,runoff,0.0,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7329,storm_outflow,0.008999999999999998,2011-05-26,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 +7330,baseflow,0.0396214365080333,2011-05-26,0.0,0.0,4.472009671725823e-06,0.0,0.0,0.0,0.0,0.0,10.312945008771804,0.0,0.0,0.0 +7331,catchment_outflow,0.0486214365080333,2011-05-26,0.0,0.0,2.0472009671725826e-05,0.0,0.0,0.0,0.0,0.0,10.97295508037369,0.0,0.0,0.0 +7332,reservoir_outflow,0.004499999999999999,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7333,gw1_gw2,0.0,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7334,gw2_gw1,0.001079636664864303,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7335,urban_drainage,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7336,percolation,0.009221172104015504,2011-05-27,0.0,0.0,1.2556600313367763e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7337,runoff,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7338,storm_outflow,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7339,baseflow,0.039545435847023254,2011-05-27,0.0,0.0,4.4639687976248504e-06,0.0,0.0,0.0,0.0,0.0,10.311275246034668,0.0,0.0,0.0 +7340,catchment_outflow,0.039545435847023254,2011-05-27,0.0,0.0,4.4639687976248504e-06,0.0,0.0,0.0,0.0,0.0,10.311275246034668,0.0,0.0,0.0 +7341,reservoir_outflow,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7342,gw1_gw2,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7343,gw2_gw1,0.001072439087098509,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7344,urban_drainage,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7345,percolation,0.009036748661935195,2011-05-28,0.0,0.0,1.2305468307100408e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7346,runoff,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7347,storm_outflow,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7348,baseflow,0.039469164129060534,2011-05-28,0.0,0.0,4.4558852427075635e-06,0.0,0.0,0.0,0.0,0.0,10.30963667213378,0.0,0.0,0.0 +7349,catchment_outflow,0.039469164129060534,2011-05-28,0.0,0.0,4.4558852427075635e-06,0.0,0.0,0.0,0.0,0.0,10.30963667213378,0.0,0.0,0.0 +7350,reservoir_outflow,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7351,gw1_gw2,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7352,gw2_gw1,0.0010652894931842739,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7353,urban_drainage,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7354,percolation,0.00885601368869649,2011-05-29,0.0,0.0,1.20593589409584e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7355,runoff,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7356,storm_outflow,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7357,baseflow,0.03939263125295962,2011-05-29,0.0,0.0,4.447760369336035e-06,0.0,0.0,0.0,0.0,0.0,10.30802867085816,0.0,0.0,0.0 +7358,catchment_outflow,0.03939263125295962,2011-05-29,0.0,0.0,4.447760369336035e-06,0.0,0.0,0.0,0.0,0.0,10.30802867085816,0.0,0.0,0.0 +7359,reservoir_outflow,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7360,gw1_gw2,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7361,gw2_gw1,0.0010581875632299288,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7362,urban_drainage,0.029999999999999995,2011-05-30,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +7363,percolation,0.00867889341492256,2011-05-30,0.0,0.0,1.181817176213923e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7364,runoff,0.0,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7365,storm_outflow,0.029999999999999995,2011-05-30,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +7366,baseflow,0.03931584690836453,2011-05-30,0.0,0.0,4.43959551135323e-06,0.0,0.0,0.0,0.0,0.0,10.306450639377772,0.0,0.0,0.0 +7367,catchment_outflow,0.06931584690836452,2011-05-30,0.0,0.0,8.439595511353229e-06,0.0,0.0,0.0,0.0,0.0,11.790640966802775,0.0,0.0,0.0 +7368,reservoir_outflow,0.015,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7369,gw1_gw2,0.0,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7370,gw2_gw1,0.0010511329794752557,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7371,urban_drainage,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7372,percolation,0.00850531554662411,2011-05-31,0.0,0.0,1.1581808326896446e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7373,runoff,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7374,storm_outflow,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7375,baseflow,0.03923882057996018,2011-05-31,0.0,0.0,4.4313919746565695e-06,0.0,0.0,0.0,0.0,0.0,10.304901987910164,0.0,0.0,0.0 +7376,catchment_outflow,0.03923882057996018,2011-05-31,0.0,0.0,4.4313919746565695e-06,0.0,0.0,0.0,0.0,0.0,10.304901987910164,0.0,0.0,0.0 +7377,reservoir_outflow,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7378,gw1_gw2,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7379,gw2_gw1,0.0010441254262788747,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7380,urban_drainage,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7381,percolation,0.008335209235691627,2011-06-01,0.0,0.0,1.1350172160358516e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7382,runoff,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7383,storm_outflow,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7384,baseflow,0.03916156155159951,2011-06-01,0.0,0.0,4.4231510377600185e-06,0.0,0.0,0.0,0.0,0.0,10.30338213939689,0.0,0.0,0.0 +7385,catchment_outflow,0.03916156155159951,2011-06-01,0.0,0.0,4.4231510377600185e-06,0.0,0.0,0.0,0.0,0.0,10.30338213939689,0.0,0.0,0.0 +7386,reservoir_outflow,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7387,gw1_gw2,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7388,gw2_gw1,0.001037164590103501,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7389,urban_drainage,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7390,percolation,0.008168505050977794,2011-06-02,0.0,0.0,1.1123168717151347e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7391,runoff,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7392,storm_outflow,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7393,baseflow,0.03908407891034795,2011-06-02,0.0,0.0,4.414873952344907e-06,0.0,0.0,0.0,0.0,0.0,10.301890529189372,0.0,0.0,0.0 +7394,catchment_outflow,0.03908407891034795,2011-06-02,0.0,0.0,4.414873952344907e-06,0.0,0.0,0.0,0.0,0.0,10.301890529189372,0.0,0.0,0.0 +7395,reservoir_outflow,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7396,gw1_gw2,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7397,gw2_gw1,0.0010302501595026215,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7398,urban_drainage,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7399,percolation,0.00800513494995824,2011-06-03,0.0,0.0,1.090070534280832e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7400,runoff,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7401,storm_outflow,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7402,baseflow,0.03900638155044698,2011-06-03,0.0,0.0,4.4065619437997465e-06,0.0,0.0,0.0,0.0,0.0,10.300426604743917,0.0,0.0,0.0 +7403,catchment_outflow,0.03900638155044698,2011-06-03,0.0,0.0,4.4065619437997465e-06,0.0,0.0,0.0,0.0,0.0,10.300426604743917,0.0,0.0,0.0 +7404,reservoir_outflow,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7405,gw1_gw2,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7406,gw2_gw1,0.0010233818251061068,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7407,urban_drainage,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7408,percolation,0.007845032250959075,2011-06-04,0.0,0.0,1.0682691235952153e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7409,runoff,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7410,storm_outflow,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7411,baseflow,0.03892847817719826,2011-06-04,0.0,0.0,4.3982162117492355e-06,0.0,0.0,0.0,0.0,0.0,10.298989825325517,0.0,0.0,0.0 +7412,catchment_outflow,0.03892847817719826,2011-06-04,0.0,0.0,4.3982162117492355e-06,0.0,0.0,0.0,0.0,0.0,10.298989825325517,0.0,0.0,0.0 +7413,reservoir_outflow,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7414,gw1_gw2,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7415,gw2_gw1,0.0010165592796052892,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7416,urban_drainage,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7417,percolation,0.007688131605939893,2011-06-05,0.0,0.0,1.046903741123311e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7418,runoff,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7419,storm_outflow,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7420,baseflow,0.038850377310770116,2011-06-05,0.0,0.0,4.3898379305726705e-06,0.0,0.0,0.0,0.0,0.0,10.297579661720192,0.0,0.0,0.0 +7421,catchment_outflow,0.038850377310770116,2011-06-05,0.0,0.0,4.3898379305726705e-06,0.0,0.0,0.0,0.0,0.0,10.297579661720192,0.0,0.0,0.0 +7422,reservoir_outflow,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7423,gw1_gw2,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7424,gw2_gw1,0.0010097822177414174,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7425,urban_drainage,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7426,percolation,0.007534368973821095,2011-06-06,0.0,0.0,1.025965666300845e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7427,runoff,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7428,storm_outflow,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7429,baseflow,0.038772087289927745,2011-06-06,0.0,0.0,4.381428249911991e-06,0.0,0.0,0.0,0.0,0.0,10.296195595955549,0.0,0.0,0.0 +7430,catchment_outflow,0.038772087289927745,2011-06-06,0.0,0.0,4.381428249911991e-06,0.0,0.0,0.0,0.0,0.0,10.296195595955549,0.0,0.0,0.0 +7431,reservoir_outflow,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7432,gw1_gw2,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7433,gw2_gw1,0.0010030503362896681,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7434,urban_drainage,0.0009999999999999983,2011-06-07,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 +7435,percolation,0.007383681594344673,2011-06-07,0.0,0.0,1.0054463529748277e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769714,0.0,0.0,0.0 +7436,runoff,0.0,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7437,storm_outflow,0.0009999999999999983,2011-06-07,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 +7438,baseflow,0.038693616275688784,2011-06-07,0.0,0.0,4.372988295169648e-06,0.0,0.0,0.0,0.0,0.0,10.294837121029294,0.0,0.0,0.0 +7439,catchment_outflow,0.039693616275688785,2011-06-07,0.0,0.0,1.2372988295169648e-05,0.0,0.0,0.0,0.0,0.0,10.423451325477515,0.0,0.0,0.0 +7440,reservoir_outflow,0.0004999999999999991,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7441,gw1_gw2,0.0,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7442,gw2_gw1,0.0009963633340476009,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7443,urban_drainage,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7444,percolation,0.007236007962457782,2011-06-08,0.0,0.0,9.853374259153318e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7445,runoff,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7446,storm_outflow,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7447,baseflow,0.03861497225490571,2011-06-08,0.0,0.0,4.364519167996512e-06,0.0,0.0,0.0,0.0,0.0,10.293503740645438,0.0,0.0,0.0 +7448,catchment_outflow,0.03861497225490571,2011-06-08,0.0,0.0,4.364519167996512e-06,0.0,0.0,0.0,0.0,0.0,10.293503740645438,0.0,0.0,0.0 +7449,reservoir_outflow,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7450,gw1_gw2,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7451,gw2_gw1,0.0009897209118209461,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7452,urban_drainage,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7453,percolation,0.0070912878032086245,2011-06-09,0.0,0.0,9.656306773970248e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7454,runoff,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7455,storm_outflow,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7456,baseflow,0.03853616304377647,2011-06-09,0.0,0.0,4.356021946770013e-06,0.0,0.0,0.0,0.0,0.0,10.292194968957922,0.0,0.0,0.0 +7457,catchment_outflow,0.03853616304377647,2011-06-09,0.0,0.0,4.356021946770013e-06,0.0,0.0,0.0,0.0,0.0,10.292194968957922,0.0,0.0,0.0 +7458,reservoir_outflow,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7459,gw1_gw2,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7460,gw2_gw1,0.0009831227724085068,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7461,urban_drainage,0.017,2011-06-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0 +7462,percolation,0.006949462047144454,2011-06-10,0.0,0.0,9.463180638490845e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7463,runoff,0.0,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7464,storm_outflow,0.017,2011-06-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0 +7465,baseflow,0.038457196291284884,2011-06-10,0.0,0.0,4.34749768706271e-06,0.0,0.0,0.0,0.0,0.0,10.290910330321443,0.0,0.0,0.0 +7466,catchment_outflow,0.055457196291284885,2011-06-10,0.0,0.0,7.34749768706271e-06,0.0,0.0,0.0,0.0,0.0,11.827505116811345,0.0,0.0,0.0 +7467,reservoir_outflow,0.0085,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7468,gw1_gw2,0.0,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7469,gw2_gw1,0.0009765686205923886,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7470,urban_drainage,0.018999999999999996,2011-06-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0 +7471,percolation,0.006810472806201563,2011-06-11,0.0,0.0,9.273917025721027e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7472,runoff,0.0,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7473,storm_outflow,0.018999999999999996,2011-06-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0 +7474,baseflow,0.03837807948257218,2011-06-11,0.0,0.0,4.338947422101484e-06,0.0,0.0,0.0,0.0,0.0,10.289649359049209,0.0,0.0,0.0 +7475,catchment_outflow,0.057378079482572175,2011-06-11,0.0,0.0,5.338947422101484e-06,0.0,0.0,0.0,0.0,0.0,11.939300338336775,0.0,0.0,0.0 +7476,reservoir_outflow,0.009499999999999998,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7477,gw1_gw2,0.0,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7478,gw2_gw1,0.0009700581631216566,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7479,urban_drainage,0.04,2011-06-12,0.0,0.0,2.61437908496732e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 +7480,percolation,0.006674263350077531,2011-06-12,0.0,0.0,9.088438685206604e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +7481,runoff,0.0,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7482,storm_outflow,0.04,2011-06-12,0.0,0.0,2.61437908496732e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 +7483,baseflow,0.03829881994224094,2011-06-12,0.0,0.0,4.3303721632175325e-06,0.0,0.0,0.0,0.0,0.0,10.288411599177428,0.0,0.0,0.0 +7484,catchment_outflow,0.07829881994224094,2011-06-12,0.0,0.0,4.591810071714264e-06,0.0,0.0,0.0,0.0,0.0,12.817631893672138,0.0,0.0,0.0 +7485,reservoir_outflow,0.0765,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7486,gw1_gw2,0.0,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7487,gw2_gw1,0.0009635911087006122,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7488,urban_drainage,0.04,2011-06-13,0.0,0.0,7.477686415067821e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 +7489,percolation,0.006540778083075981,2011-06-13,0.0,0.0,8.906669911502474e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7490,runoff,0.0,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7491,storm_outflow,0.04,2011-06-13,0.0,0.0,7.477686415067821e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 +7492,baseflow,0.03821942483759303,2011-06-13,0.0,0.0,4.321772900287364e-06,0.0,0.0,0.0,0.0,0.0,10.287196604236307,0.0,0.0,0.0 +7493,catchment_outflow,0.07821942483759303,2011-06-13,0.0,0.0,5.069541541794146e-06,0.0,0.0,0.0,0.0,0.0,12.819605461011061,0.0,0.0,0.0 +7494,reservoir_outflow,0.0,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7495,gw1_gw2,0.0,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7496,gw2_gw1,0.000957167167976003,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7497,urban_drainage,0.03299999999999999,2011-06-14,0.0,0.0,1.990793449996486e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +7498,percolation,0.006409962521414462,2011-06-14,0.0,0.0,8.728536513272424e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7499,runoff,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7500,storm_outflow,0.03299999999999999,2011-06-14,0.0,0.0,1.990793449996486e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +7501,baseflow,0.03813990118180259,2011-06-14,0.0,0.0,4.313150602164964e-06,0.0,0.0,0.0,0.0,0.0,10.286003937027319,0.0,0.0,0.0 +7502,catchment_outflow,0.07113990118180258,2011-06-14,0.0,0.0,6.30394405216145e-06,0.0,0.0,0.0,0.0,0.0,12.583706011287587,0.0,0.0,0.0 +7503,reservoir_outflow,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7504,gw1_gw2,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7505,gw2_gw1,0.0009507860535226343,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7506,urban_drainage,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7507,percolation,0.006281763270986173,2011-06-15,0.0,0.0,8.553965783006976e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7508,runoff,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7509,storm_outflow,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7510,baseflow,0.03806025583702555,2011-06-15,0.0,0.0,4.304506217105302e-06,0.0,0.0,0.0,0.0,0.0,10.28483316940658,0.0,0.0,0.0 +7511,catchment_outflow,0.03806025583702555,2011-06-15,0.0,0.0,4.304506217105302e-06,0.0,0.0,0.0,0.0,0.0,10.28483316940658,0.0,0.0,0.0 +7512,reservoir_outflow,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7513,gw1_gw2,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7514,gw2_gw1,0.0009444474798327107,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7515,urban_drainage,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7516,percolation,0.0061561280055664495,2011-06-16,0.0,0.0,8.382886467346836e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7517,runoff,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7518,storm_outflow,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7519,baseflow,0.037980495517446894,2011-06-16,0.0,0.0,4.295840673179375e-06,0.0,0.0,0.0,0.0,0.0,10.283683882074108,0.0,0.0,0.0 +7520,catchment_outflow,0.037980495517446894,2011-06-16,0.0,0.0,4.295840673179375e-06,0.0,0.0,0.0,0.0,0.0,10.283683882074108,0.0,0.0,0.0 +7521,reservoir_outflow,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7522,gw1_gw2,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7523,gw2_gw1,0.0009381511633005602,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7524,urban_drainage,0.018999999999999996,2011-06-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +7525,percolation,0.006033005445455122,2011-06-17,0.0,0.0,8.215228737999902e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7526,runoff,0.0,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7527,storm_outflow,0.018999999999999996,2011-06-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +7528,baseflow,0.03790062679226692,2011-06-17,0.0,0.0,4.287154878680928e-06,0.0,0.0,0.0,0.0,0.0,10.282555664368788,0.0,0.0,0.0 +7529,catchment_outflow,0.056900626792266915,2011-06-17,0.0,0.0,7.287154878680928e-06,0.0,0.0,0.0,0.0,0.0,12.066480518967898,0.0,0.0,0.0 +7530,reservoir_outflow,0.009499999999999998,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7531,gw1_gw2,0.0,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7532,gw2_gw1,0.0009318968222116197,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7533,urban_drainage,0.012999999999999998,2011-06-18,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 +7534,percolation,0.005912345336546018,2011-06-18,0.0,0.0,8.050924163239903e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7535,runoff,0.0,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7536,storm_outflow,0.012999999999999998,2011-06-18,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 +7537,baseflow,0.03782065608862761,2011-06-18,0.0,0.0,4.278449722525035e-06,0.0,0.0,0.0,0.0,0.0,10.281448114068862,0.0,0.0,0.0 +7538,catchment_outflow,0.05082065608862761,2011-06-18,0.0,0.0,5.278449722525035e-06,0.0,0.0,0.0,0.0,0.0,11.686706920499066,0.0,0.0,0.0 +7539,reservoir_outflow,0.0065,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7540,gw1_gw2,0.0,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7541,gw2_gw1,0.0009256841767300017,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7542,urban_drainage,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7543,percolation,0.005794098429815098,2011-06-19,0.0,0.0,7.889905679975104e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7544,runoff,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7545,storm_outflow,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7546,baseflow,0.03774058969448058,2011-06-19,0.0,0.0,4.2697260746387165e-06,0.0,0.0,0.0,0.0,0.0,10.280360837197781,0.0,0.0,0.0 +7547,catchment_outflow,0.03774058969448058,2011-06-19,0.0,0.0,4.2697260746387165e-06,0.0,0.0,0.0,0.0,0.0,10.280360837197781,0.0,0.0,0.0 +7548,reservoir_outflow,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7549,gw1_gw2,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7550,gw2_gw1,0.0009195129488853483,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7551,urban_drainage,0.029999999999999995,2011-06-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 +7552,percolation,0.005678216461218796,2011-06-20,0.0,0.0,7.732107566375602e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7553,runoff,0.0,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7554,storm_outflow,0.029999999999999995,2011-06-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 +7555,baseflow,0.037660433761397424,2011-06-20,0.0,0.0,4.260984786343713e-06,0.0,0.0,0.0,0.0,0.0,10.279293447835212,0.0,0.0,0.0 +7556,catchment_outflow,0.06766043376139742,2011-06-20,0.0,0.0,6.260984786343714e-06,0.0,0.0,0.0,0.0,0.0,12.849055225864825,0.0,0.0,0.0 +7557,reservoir_outflow,0.015,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7558,gw1_gw2,0.0,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7559,gw2_gw1,0.0009133828625595086,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7560,urban_drainage,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7561,percolation,0.0055646521319944195,2011-06-21,0.0,0.0,7.577465415048091e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7562,runoff,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7563,storm_outflow,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7564,baseflow,0.03758019430732392,2011-06-21,0.0,0.0,4.252226690731616e-06,0.0,0.0,0.0,0.0,0.0,10.278245567933084,0.0,0.0,0.0 +7565,catchment_outflow,0.03758019430732392,2011-06-21,0.0,0.0,4.252226690731616e-06,0.0,0.0,0.0,0.0,0.0,10.278245567933084,0.0,0.0,0.0 +7566,reservoir_outflow,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7567,gw1_gw2,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7568,gw2_gw1,0.0009072936434755263,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7569,urban_drainage,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7570,percolation,0.005453359089354531,2011-06-22,0.0,0.0,7.425916106747128e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7571,runoff,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7572,storm_outflow,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7573,baseflow,0.037499877219279,2011-06-22,0.0,0.0,4.243452603031474e-06,0.0,0.0,0.0,0.0,0.0,10.277216827136492,0.0,0.0,0.0 +7574,catchment_outflow,0.037499877219279,2011-06-22,0.0,0.0,4.243452603031474e-06,0.0,0.0,0.0,0.0,0.0,10.277216827136492,0.0,0.0,0.0 +7575,reservoir_outflow,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7576,gw1_gw2,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7577,gw2_gw1,0.0009012450191857369,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7578,urban_drainage,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7579,percolation,0.0053442919075674415,2011-06-23,0.0,0.0,7.277397784612186e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7580,runoff,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7581,storm_outflow,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7582,baseflow,0.037419488255999715,2011-06-23,0.0,0.0,4.234663320970047e-06,0.0,0.0,0.0,0.0,0.0,10.27620686260932,0.0,0.0,0.0 +7583,catchment_outflow,0.037419488255999715,2011-06-23,0.0,0.0,4.234663320970047e-06,0.0,0.0,0.0,0.0,0.0,10.27620686260932,0.0,0.0,0.0 +7584,reservoir_outflow,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7585,gw1_gw2,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7586,gw2_gw1,0.0008952367190579125,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7587,urban_drainage,0.04,2011-06-24,0.0,0.0,3.3333333333333337e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +7588,percolation,0.005237406069416092,2011-06-24,0.0,0.0,7.131849828919943e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7589,runoff,0.0,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7590,storm_outflow,0.04,2011-06-24,0.0,0.0,3.3333333333333337e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +7591,baseflow,0.03733903305053326,2011-06-24,0.0,0.0,4.225859625124853e-06,0.0,0.0,0.0,0.0,0.0,10.275215318864404,0.0,0.0,0.0 +7592,catchment_outflow,0.07733903305053326,2011-06-24,0.0,0.0,7.559192958458187e-06,0.0,0.0,0.0,0.0,0.0,13.801321892594622,0.0,0.0,0.0 +7593,reservoir_outflow,0.023999999999999997,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7594,gw1_gw2,0.0,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7595,gw2_gw1,0.0008892684742644264,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7596,urban_drainage,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7597,percolation,0.00513265794802777,2011-06-25,0.0,0.0,6.989212832341543e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7598,runoff,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7599,storm_outflow,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7600,baseflow,0.037258517112776994,2011-06-25,0.0,0.0,4.217042279270126e-06,0.0,0.0,0.0,0.0,0.0,10.274241847598166,0.0,0.0,0.0 +7601,catchment_outflow,0.037258517112776994,2011-06-25,0.0,0.0,4.217042279270126e-06,0.0,0.0,0.0,0.0,0.0,10.274241847598166,0.0,0.0,0.0 +7602,reservoir_outflow,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7603,gw1_gw2,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7604,gw2_gw1,0.0008833400177691076,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7605,urban_drainage,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7606,percolation,0.0050300047890672155,2011-06-26,0.0,0.0,6.849428575694713e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7607,runoff,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7608,storm_outflow,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7609,baseflow,0.03717794583196772,2011-06-26,0.0,0.0,4.2082120307158746e-06,0.0,0.0,0.0,0.0,0.0,10.273286107529495,0.0,0.0,0.0 +7610,catchment_outflow,0.03717794583196772,2011-06-26,0.0,0.0,4.2082120307158746e-06,0.0,0.0,0.0,0.0,0.0,10.273286107529495,0.0,0.0,0.0 +7611,reservoir_outflow,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7612,gw1_gw2,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7613,gw2_gw1,0.000877451084317471,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7614,urban_drainage,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7615,percolation,0.004929404693285871,2011-06-27,0.0,0.0,6.712440004180818e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7616,runoff,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7617,storm_outflow,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7618,baseflow,0.037097324479121015,2011-06-27,0.0,0.0,4.1993696106401295e-06,0.0,0.0,0.0,0.0,0.0,10.272347764242824,0.0,0.0,0.0 +7619,catchment_outflow,0.037097324479121015,2011-06-27,0.0,0.0,4.1993696106401295e-06,0.0,0.0,0.0,0.0,0.0,10.272347764242824,0.0,0.0,0.0 +7620,reservoir_outflow,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7621,gw1_gw2,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7622,gw2_gw1,0.0008716014104219738,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7623,urban_drainage,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7624,percolation,0.004830816599420153,2011-06-28,0.0,0.0,6.578191204097202e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +7625,runoff,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7626,storm_outflow,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7627,baseflow,0.037016658209421766,2011-06-28,0.0,0.0,4.190515734414554e-06,0.0,0.0,0.0,0.0,0.0,10.27142649003522,0.0,0.0,0.0 +7628,catchment_outflow,0.037016658209421766,2011-06-28,0.0,0.0,4.190515734414554e-06,0.0,0.0,0.0,0.0,0.0,10.27142649003522,0.0,0.0,0.0 +7629,reservoir_outflow,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7630,gw1_gw2,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7631,gw2_gw1,0.000865790734352423,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7632,urban_drainage,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7633,percolation,0.00473420026743175,2011-06-29,0.0,0.0,6.446627380015256e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7634,runoff,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7635,storm_outflow,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7636,baseflow,0.036935952064566784,2011-06-29,0.0,0.0,4.1816511019235205e-06,0.0,0.0,0.0,0.0,0.0,10.270521963767399,0.0,0.0,0.0 +7637,catchment_outflow,0.036935952064566784,2011-06-29,0.0,0.0,4.1816511019235205e-06,0.0,0.0,0.0,0.0,0.0,10.270521963767399,0.0,0.0,0.0 +7638,reservoir_outflow,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7639,gw1_gw2,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7640,gw2_gw1,0.0008600187961235406,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7641,urban_drainage,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7642,percolation,0.004639516262083116,2011-06-30,0.0,0.0,6.317694832414952e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +7643,runoff,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7644,storm_outflow,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7645,baseflow,0.03685521097506057,2011-06-30,0.0,0.0,4.172776397876816e-06,0.0,0.0,0.0,0.0,0.0,10.26963387071854,0.0,0.0,0.0 +7646,catchment_outflow,0.03685521097506057,2011-06-30,0.0,0.0,4.172776397876816e-06,0.0,0.0,0.0,0.0,0.0,10.26963387071854,0.0,0.0,0.0 +7647,reservoir_outflow,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7648,gw1_gw2,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7649,gw2_gw1,0.0008542853374828852,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7650,urban_drainage,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7651,percolation,0.004546725936841454,2011-07-01,0.0,0.0,6.191340935766653e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7652,runoff,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7653,storm_outflow,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7654,baseflow,0.03677443976246503,2011-07-01,0.0,0.0,4.163892292116066e-06,0.0,0.0,0.0,0.0,0.0,10.268761902444774,0.0,0.0,0.0 +7655,catchment_outflow,0.03677443976246503,2011-07-01,0.0,0.0,4.163892292116066e-06,0.0,0.0,0.0,0.0,0.0,10.268761902444774,0.0,0.0,0.0 +7656,reservoir_outflow,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7657,gw1_gw2,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7658,gw2_gw1,0.00084859010189966,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7659,urban_drainage,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7660,percolation,0.0044557914181046245,2011-07-02,0.0,0.0,6.067514117051319e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7661,runoff,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7662,storm_outflow,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7663,baseflow,0.03669364314160412,2011-07-02,0.0,0.0,4.154999439915039e-06,0.0,0.0,0.0,0.0,0.0,10.267905756641262,0.0,0.0,0.0 +7664,catchment_outflow,0.03669364314160412,2011-07-02,0.0,0.0,4.154999439915039e-06,0.0,0.0,0.0,0.0,0.0,10.267905756641262,0.0,0.0,0.0 +7665,reservoir_outflow,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7666,gw1_gw2,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7667,gw2_gw1,0.0008429328345535225,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7668,urban_drainage,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7669,percolation,0.004366675589742532,2011-07-03,0.0,0.0,5.946163834710293e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7670,runoff,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7671,storm_outflow,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7672,baseflow,0.03661282572272447,2011-07-03,0.0,0.0,4.146098482273929e-06,0.0,0.0,0.0,0.0,0.0,10.26706513700772,0.0,0.0,0.0 +7673,catchment_outflow,0.03661282572272447,2011-07-03,0.0,0.0,4.146098482273929e-06,0.0,0.0,0.0,0.0,0.0,10.26706513700772,0.0,0.0,0.0 +7674,reservoir_outflow,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7675,gw1_gw2,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7676,gw2_gw1,0.0008373132823233931,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7677,urban_drainage,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7678,percolation,0.0042793420779476815,2011-07-04,0.0,0.0,5.827240558016088e-07,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +7679,runoff,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7680,storm_outflow,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7681,baseflow,0.036531992013612534,2011-07-04,0.0,0.0,4.137190046207748e-06,0.0,0.0,0.0,0.0,0.0,10.26623975311733,0.0,0.0,0.0 +7682,catchment_outflow,0.036531992013612534,2011-07-04,0.0,0.0,4.137190046207748e-06,0.0,0.0,0.0,0.0,0.0,10.26623975311733,0.0,0.0,0.0 +7683,reservoir_outflow,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7684,gw1_gw2,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7685,gw2_gw1,0.0008317311937746652,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7686,urban_drainage,0.005999999999999998,2011-07-05,0.0,0.0,1.1666666666666668e-05,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0 +7687,percolation,0.004193755236388728,2011-07-05,0.0,0.0,5.710695746855766e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7688,runoff,0.0,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7689,storm_outflow,0.005999999999999998,2011-07-05,0.0,0.0,1.1666666666666668e-05,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0 +7690,baseflow,0.036451146421669474,2011-07-05,0.0,0.0,4.128274745028943e-06,0.0,0.0,0.0,0.0,0.0,10.265429320288932,0.0,0.0,0.0 +7691,catchment_outflow,0.04245114642166947,2011-07-05,0.0,0.0,1.5794941411695613e-05,0.0,0.0,0.0,0.0,0.0,11.35509186129051,0.0,0.0,0.0 +7692,reservoir_outflow,0.002999999999999999,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7693,gw1_gw2,0.0,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7694,gw2_gw1,0.0008261863191494356,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7695,urban_drainage,0.021000000000000005,2011-07-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0 +7696,percolation,0.004109880131660953,2011-07-06,0.0,0.0,5.59648183191865e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7697,runoff,0.0,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7698,storm_outflow,0.021000000000000005,2011-07-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0 +7699,baseflow,0.03637029325594445,2011-07-06,0.0,0.0,4.11935317862435e-06,0.0,0.0,0.0,0.0,0.0,10.264633559462345,0.0,0.0,0.0 +7700,catchment_outflow,0.057370293255944456,2011-07-06,0.0,0.0,5.1193531786243495e-06,0.0,0.0,0.0,0.0,0.0,13.041204607141026,0.0,0.0,0.0 +7701,reservoir_outflow,0.010500000000000002,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7702,gw1_gw2,0.0,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7703,gw2_gw1,0.000820678410354958,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7704,urban_drainage,0.013999999999999999,2011-07-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0 +7705,percolation,0.004027682529027734,2011-07-07,0.0,0.0,5.484552195280277e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7706,runoff,0.0,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7707,storm_outflow,0.013999999999999999,2011-07-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0 +7708,baseflow,0.03628943672912716,2011-07-07,0.0,0.0,4.110425933726609e-06,0.0,0.0,0.0,0.0,0.0,10.263852197076819,0.0,0.0,0.0 +7709,catchment_outflow,0.05028943672912716,2011-07-07,0.0,0.0,5.110425933726609e-06,0.0,0.0,0.0,0.0,0.0,12.340949815082642,0.0,0.0,0.0 +7710,reservoir_outflow,0.006999999999999999,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7711,gw1_gw2,0.0,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7712,gw2_gw1,0.0008152072209522744,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7713,urban_drainage,0.04,2011-07-08,0.0,0.0,4.166666666666667e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +7714,percolation,0.003947128878447179,2011-07-08,0.0,0.0,5.374861151374672e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7715,runoff,0.0,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7716,storm_outflow,0.04,2011-07-08,0.0,0.0,4.166666666666667e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +7717,baseflow,0.03620858095950046,2011-07-08,0.0,0.0,4.101493584180137e-06,0.0,0.0,0.0,0.0,0.0,10.263084964952448,0.0,0.0,0.0 +7718,catchment_outflow,0.07620858095950046,2011-07-08,0.0,0.0,4.518160250846803e-06,0.0,0.0,0.0,0.0,0.0,14.114050272361393,0.0,0.0,0.0 +7719,reservoir_outflow,0.047999999999999994,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7720,gw1_gw2,0.0,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7721,gw2_gw1,0.0008097725061459116,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7722,urban_drainage,0.04,2011-07-09,0.0,0.0,1.4393939393939399e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +7723,percolation,0.0038681863008782355,2011-07-09,0.0,0.0,5.267363928347178e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7724,runoff,0.0032398518235033777,2011-07-09,0.0,0.0,1.1458573279583466e-10,0.0,0.0,0.0,0.0,0.0,17.472220466914788,0.0,0.0,0.0 +7725,storm_outflow,0.04,2011-07-09,0.0,0.0,1.4393939393939399e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +7726,baseflow,0.036127729972853906,2011-07-09,0.0,0.0,4.0925566912017735e-06,0.0,0.0,0.0,0.0,0.0,10.262331600174514,0.0,0.0,0.0 +7727,catchment_outflow,0.07936758179635728,2011-07-09,0.0,0.0,5.532065216328509e-06,0.0,0.0,0.0,0.0,0.0,14.25471363341076,0.0,0.0,0.0 +7728,reservoir_outflow,0.0,2011-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7729,gw1_gw2,0.0,2011-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7730,gw2_gw1,0.0008043740227718033,2011-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7731,urban_drainage,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7732,percolation,0.0037908225748606713,2011-07-10,0.0,0.0,5.162016649780234e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7733,runoff,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7734,storm_outflow,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7735,baseflow,0.03604688770435892,2011-07-10,0.0,0.0,4.083615803636213e-06,0.0,0.0,0.0,0.0,0.0,10.261591844980638,0.0,0.0,0.0 +7736,catchment_outflow,0.03604688770435892,2011-07-10,0.0,0.0,4.083615803636213e-06,0.0,0.0,0.0,0.0,0.0,10.261591844980638,0.0,0.0,0.0 +7737,reservoir_outflow,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7738,gw1_gw2,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7739,gw2_gw1,0.0007990115292862755,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7740,urban_drainage,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7741,percolation,0.0037150061233634578,2011-07-11,0.0,0.0,5.058776316784629e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7742,runoff,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7743,storm_outflow,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7744,baseflow,0.03596605800040643,2011-07-11,0.0,0.0,4.074671458206319e-06,0.0,0.0,0.0,0.0,0.0,10.260865446650682,0.0,0.0,0.0 +7745,catchment_outflow,0.03596605800040643,2011-07-11,0.0,0.0,4.074671458206319e-06,0.0,0.0,0.0,0.0,0.0,10.260865446650682,0.0,0.0,0.0 +7746,reservoir_outflow,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7747,gw1_gw2,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7748,gw2_gw1,0.0007936847857576979,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7749,urban_drainage,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7750,percolation,0.003640706000896189,2011-07-12,0.0,0.0,4.957600790448937e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7751,runoff,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7752,storm_outflow,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7753,baseflow,0.03588524462040765,2011-07-12,0.0,0.0,4.065724179758416e-06,0.0,0.0,0.0,0.0,0.0,10.260152157399316,0.0,0.0,0.0 +7754,catchment_outflow,0.03588524462040765,2011-07-12,0.0,0.0,4.065724179758416e-06,0.0,0.0,0.0,0.0,0.0,10.260152157399316,0.0,0.0,0.0 +7755,reservoir_outflow,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7756,gw1_gw2,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7757,gw2_gw1,0.0007883935538526288,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7758,urban_drainage,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7759,percolation,0.003567891880878265,2011-07-13,0.0,0.0,4.858448774639958e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7760,runoff,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7761,storm_outflow,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7762,baseflow,0.035804451238558826,2011-07-13,0.0,0.0,4.056774481502679e-06,0.0,0.0,0.0,0.0,0.0,10.259451734271183,0.0,0.0,0.0 +7763,catchment_outflow,0.035804451238558826,2011-07-13,0.0,0.0,4.056774481502679e-06,0.0,0.0,0.0,0.0,0.0,10.259451734271183,0.0,0.0,0.0 +7764,reservoir_outflow,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7765,gw1_gw2,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7766,gw2_gw1,0.0007831375968269328,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7767,urban_drainage,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7768,percolation,0.003496534043260699,2011-07-14,0.0,0.0,4.761279799147158e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +7769,runoff,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7770,storm_outflow,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7771,baseflow,0.03572368144557059,2011-07-14,0.0,0.0,4.04782286524871e-06,0.0,0.0,0.0,0.0,0.0,10.25876393903857,0.0,0.0,0.0 +7772,catchment_outflow,0.03572368144557059,2011-07-14,0.0,0.0,4.04782286524871e-06,0.0,0.0,0.0,0.0,0.0,10.25876393903857,0.0,0.0,0.0 +7773,reservoir_outflow,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7774,gw1_gw2,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7775,gw2_gw1,0.0007779166795144121,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7776,urban_drainage,0.033,2011-07-15,0.0,0.0,6.143939393939392e-06,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0 +7777,percolation,0.006373622196208833,2011-07-15,0.0,0.0,1.1310709924406088e-06,0.0,0.0,0.0,0.0,0.0,11.36059014416983,0.0,0.0,0.0 +7778,runoff,0.020164471144550108,2011-07-15,0.0,0.0,2.2149769090001944e-06,0.0,0.0,0.0,0.0,0.0,16.327237852092,0.0,0.0,0.0 +7779,storm_outflow,0.033,2011-07-15,0.0,0.0,6.143939393939392e-06,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0 +7780,baseflow,0.035650306297447185,2011-07-15,0.0,0.0,4.04053098556669e-06,0.0,0.0,0.0,0.0,0.0,10.259256404930643,0.0,0.0,0.0 +7781,catchment_outflow,0.0888147774419973,2011-07-15,0.0,0.0,1.2399447288506277e-05,0.0,0.0,0.0,0.0,0.0,14.039338786530871,0.0,0.0,0.0 +7782,reservoir_outflow,0.0165,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7783,gw1_gw2,0.0,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7784,gw2_gw1,0.0007727305683177477,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7785,urban_drainage,0.04,2011-07-16,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 +7786,percolation,0.01396743038140194,2011-07-16,0.0,0.0,2.7743344370425106e-06,0.0,0.0,0.0,0.0,0.0,13.825710805336893,0.0,0.0,0.0 +7787,runoff,0.06068905817784371,2011-07-16,0.0,0.0,7.324931075369203e-06,0.0,0.0,0.0,0.0,0.0,16.179617236866054,0.0,0.0,0.0 +7788,storm_outflow,0.04,2011-07-16,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 +7789,baseflow,0.03559609910765707,2011-07-16,0.0,0.0,4.037365494195378e-06,0.0,0.0,0.0,0.0,0.0,10.262754976740116,0.0,0.0,0.0 +7790,catchment_outflow,0.13628515728550078,2011-07-16,0.0,0.0,1.1959311494937717e-05,0.0,0.0,0.0,0.0,0.0,14.757584869200004,0.0,0.0,0.0 +7791,reservoir_outflow,0.033499999999999995,2011-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7792,gw1_gw2,0.0,2011-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7793,gw2_gw1,0.0007675790311957088,2011-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7794,urban_drainage,0.03799999999999999,2011-07-17,0.0,0.0,1.4029850746268656e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7795,percolation,0.017111134141689095,2011-07-17,0.0,0.0,3.450331927682818e-06,0.0,0.0,0.0,0.0,0.0,14.198142703816604,0.0,0.0,0.0 +7796,runoff,0.05029836097785671,2011-07-17,0.0,0.0,8.298225458232554e-06,0.0,0.0,0.0,0.0,0.0,15.957352233426928,0.0,0.0,0.0 +7797,storm_outflow,0.03799999999999999,2011-07-17,0.0,0.0,1.4029850746268656e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7798,baseflow,0.03554988669524215,2011-07-17,0.0,0.0,4.035897910279097e-06,0.0,0.0,0.0,0.0,0.0,10.267490501488396,0.0,0.0,0.0 +7799,catchment_outflow,0.12384824767309885,2011-07-17,0.0,0.0,1.3737108443138517e-05,0.0,0.0,0.0,0.0,0.0,14.510191469188173,0.0,0.0,0.0 +7800,reservoir_outflow,0.0055,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7801,gw1_gw2,0.0,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7802,gw2_gw1,0.0007624618376542713,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7803,urban_drainage,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7804,percolation,0.01795799465084058,2011-07-18,0.0,0.0,3.63608908655052e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7805,runoff,0.0387659530982121,2011-07-18,0.0,0.0,7.4877930246572415e-06,0.0,0.0,0.0,0.0,0.0,15.831443132587296,0.0,0.0,0.0 +7806,storm_outflow,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7807,baseflow,0.03550590696513115,2011-07-18,0.0,0.0,4.034898388219776e-06,0.0,0.0,0.0,0.0,0.0,10.272575209925977,0.0,0.0,0.0 +7808,catchment_outflow,0.07427186006334324,2011-07-18,0.0,0.0,1.1522691412877017e-05,0.0,0.0,0.0,0.0,0.0,13.174008040411955,0.0,0.0,0.0 +7809,reservoir_outflow,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7810,gw1_gw2,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7811,gw2_gw1,0.0007573787587364933,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7812,urban_drainage,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7813,percolation,0.01759883475782377,2011-07-19,0.0,0.0,3.5633673048195095e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7814,runoff,0.028389434727681486,2011-07-19,0.0,0.0,5.990234419725793e-06,0.0,0.0,0.0,0.0,0.0,15.780380093172521,0.0,0.0,0.0 +7815,storm_outflow,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7816,baseflow,0.035461139284612885,2011-07-19,0.0,0.0,4.033719560511276e-06,0.0,0.0,0.0,0.0,0.0,10.277558206305699,0.0,0.0,0.0 +7817,catchment_outflow,0.06385057401229437,2011-07-19,0.0,0.0,1.002395398023707e-05,0.0,0.0,0.0,0.0,0.0,12.72423946472606,0.0,0.0,0.0 +7818,reservoir_outflow,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7819,gw1_gw2,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7820,gw2_gw1,0.0007523295670113228,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7821,urban_drainage,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7822,percolation,0.017246858062667295,2011-07-20,0.0,0.0,3.4920999587231193e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7823,runoff,0.02411302559827607,2011-07-20,0.0,0.0,4.792187535780633e-06,0.0,0.0,0.0,0.0,0.0,15.811482082046412,0.0,0.0,0.0 +7824,storm_outflow,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7825,baseflow,0.03541560358155802,2011-07-20,0.0,0.0,4.032365511506804e-06,0.0,0.0,0.0,0.0,0.0,10.282441754912346,0.0,0.0,0.0 +7826,catchment_outflow,0.05952862917983409,2011-07-20,0.0,0.0,8.824553047287437e-06,0.0,0.0,0.0,0.0,0.0,12.522068179692317,0.0,0.0,0.0 +7827,reservoir_outflow,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7828,gw1_gw2,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7829,gw2_gw1,0.0007473140365647169,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7830,urban_drainage,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7831,percolation,0.016901920901413948,2011-07-21,0.0,0.0,3.422257959548657e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7832,runoff,0.02020923742606175,2011-07-21,0.0,0.0,3.833750028624506e-06,0.0,0.0,0.0,0.0,0.0,15.841149277168467,0.0,0.0,0.0 +7833,storm_outflow,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7834,baseflow,0.03536931937485766,2011-07-21,0.0,0.0,4.030840242626909e-06,0.0,0.0,0.0,0.0,0.0,10.287228061086887,0.0,0.0,0.0 +7835,catchment_outflow,0.055578556800919415,2011-07-21,0.0,0.0,7.864590271251415e-06,0.0,0.0,0.0,0.0,0.0,12.306721170695258,0.0,0.0,0.0 +7836,reservoir_outflow,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7837,gw1_gw2,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7838,gw2_gw1,0.0007423319429872067,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7839,urban_drainage,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7840,percolation,0.016563882483385667,2011-07-22,0.0,0.0,3.353812800357683e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7841,runoff,0.014472216066592927,2011-07-22,0.0,0.0,3.067000022899605e-06,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7842,storm_outflow,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7843,baseflow,0.03532230578262898,2011-07-22,0.0,0.0,4.029147674021236e-06,0.0,0.0,0.0,0.0,0.0,10.291919273075317,0.0,0.0,0.0 +7844,catchment_outflow,0.04979452184922191,2011-07-22,0.0,0.0,7.096147696920841e-06,0.0,0.0,0.0,0.0,0.0,11.887686486107192,0.0,0.0,0.0 +7845,reservoir_outflow,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7846,gw1_gw2,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7847,gw2_gw1,0.0007373830633673252,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7848,urban_drainage,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7849,percolation,0.016232604833717953,2011-07-23,0.0,0.0,3.28673654435053e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7850,runoff,0.011335673895959918,2011-07-23,0.0,0.0,2.453600018319684e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7851,storm_outflow,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7852,baseflow,0.035274581530256706,2011-07-23,0.0,0.0,4.02729164619706e-06,0.0,0.0,0.0,0.0,0.0,10.296517483808003,0.0,0.0,0.0 +7853,catchment_outflow,0.04661025542621662,2011-07-23,0.0,0.0,6.480891664516744e-06,0.0,0.0,0.0,0.0,0.0,11.627408394610706,0.0,0.0,0.0 +7854,reservoir_outflow,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7855,gw1_gw2,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7856,gw2_gw1,0.0007324671762782842,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7857,urban_drainage,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7858,percolation,0.015907952737043596,2011-07-24,0.0,0.0,3.2210018134635196e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7859,runoff,0.009068539116767934,2011-07-24,0.0,0.0,1.962880014655747e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7860,storm_outflow,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7861,baseflow,0.03522616495827367,2011-07-24,0.0,0.0,4.025275921615226e-06,0.0,0.0,0.0,0.0,0.0,10.301024732612587,0.0,0.0,0.0 +7862,catchment_outflow,0.04429470407504161,2011-07-24,0.0,0.0,5.988155936270973e-06,0.0,0.0,0.0,0.0,0.0,11.420473639900841,0.0,0.0,0.0 +7863,reservoir_outflow,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7864,gw1_gw2,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7865,gw2_gw1,0.0007275840617694485,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7866,urban_drainage,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7867,percolation,0.015589793682302724,2011-07-25,0.0,0.0,3.156581777194249e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7868,runoff,0.007254831293414346,2011-07-25,0.0,0.0,1.5703040117245976e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7869,storm_outflow,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7870,baseflow,0.035177074030083744,2011-07-25,0.0,0.0,4.023104186254174e-06,0.0,0.0,0.0,0.0,0.0,10.305443006863314,0.0,0.0,0.0 +7871,catchment_outflow,0.04243190532349809,2011-07-25,0.0,0.0,5.593408197978771e-06,0.0,0.0,0.0,0.0,0.0,11.239562564396415,0.0,0.0,0.0 +7872,reservoir_outflow,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7873,gw1_gw2,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7874,gw2_gw1,0.0007227335013574532,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7875,urban_drainage,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7876,percolation,0.01527799780865667,2011-07-26,0.0,0.0,3.093450141650364e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7877,runoff,0.005803865034731478,2011-07-26,0.0,0.0,1.2562432093796786e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7878,storm_outflow,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7879,baseflow,0.035127326339530175,2011-07-26,0.0,0.0,4.0207800511426635e-06,0.0,0.0,0.0,0.0,0.0,10.309774243569562,0.0,0.0,0.0 +7880,catchment_outflow,0.040931191374261655,2011-07-26,0.0,0.0,5.277023260522342e-06,0.0,0.0,0.0,0.0,0.0,11.083854819379653,0.0,0.0,0.0 +7881,reservoir_outflow,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7882,gw1_gw2,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7883,gw2_gw1,0.0007179152780153686,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7884,urban_drainage,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7885,percolation,0.014972437852483535,2011-07-27,0.0,0.0,3.031581138817357e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7886,runoff,0.004643092027785183,2011-07-27,0.0,0.0,1.0049945675037428e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7887,storm_outflow,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7888,baseflow,0.035076939118312556,2011-07-27,0.0,0.0,4.01830705386185e-06,0.0,0.0,0.0,0.0,0.0,10.314020330906203,0.0,0.0,0.0 +7889,catchment_outflow,0.03972003114609774,2011-07-27,0.0,0.0,5.0233016213655935e-06,0.0,0.0,0.0,0.0,0.0,10.951671320721486,0.0,0.0,0.0 +7890,reservoir_outflow,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7891,gw1_gw2,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7892,gw2_gw1,0.0007131291761618641,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7893,urban_drainage,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7894,percolation,0.014672989095433865,2011-07-28,0.0,0.0,2.97094951604101e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7895,runoff,0.003714473622228146,2011-07-28,0.0,0.0,8.039956540029941e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7896,storm_outflow,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7897,baseflow,0.03502592924325536,2011-07-28,0.0,0.0,4.0156886600172976e-06,0.0,0.0,0.0,0.0,0.0,10.318183109688254,0.0,0.0,0.0 +7898,catchment_outflow,0.038740402865483504,2011-07-28,0.0,0.0,4.819684314020292e-06,0.0,0.0,0.0,0.0,0.0,10.840804190294012,0.0,0.0,0.0 +7899,reservoir_outflow,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7900,gw1_gw2,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7901,gw2_gw1,0.000708374981654103,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7902,urban_drainage,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7903,percolation,0.014379529313525184,2011-07-29,0.0,0.0,2.911530525720189e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7904,runoff,0.0029715788977825166,2011-07-29,0.0,0.0,6.431965232023953e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7905,storm_outflow,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7906,baseflow,0.03497431324343103,2011-07-29,0.0,0.0,4.012928264681556e-06,0.0,0.0,0.0,0.0,0.0,10.322264374792208,0.0,0.0,0.0 +7907,catchment_outflow,0.03794589214121355,2011-07-29,0.0,0.0,4.656124787883951e-06,0.0,0.0,0.0,0.0,0.0,10.748795739648196,0.0,0.0,0.0 +7908,reservoir_outflow,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7909,gw1_gw2,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7910,gw2_gw1,0.0007036524817763735,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7911,urban_drainage,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7912,percolation,0.014091938727254684,2011-07-30,0.0,0.0,2.8532999152057855e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7913,runoff,0.0023772631182260133,2011-07-30,0.0,0.0,5.145572185619163e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7914,storm_outflow,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7915,baseflow,0.03492210730714059,2011-07-30,0.0,0.0,4.010029193807866e-06,0.0,0.0,0.0,0.0,0.0,10.326265876526287,0.0,0.0,0.0 +7916,catchment_outflow,0.0372993704253666,2011-07-30,0.0,0.0,4.5245864123697825e-06,0.0,0.0,0.0,0.0,0.0,10.673150495823956,0.0,0.0,0.0 +7917,reservoir_outflow,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7918,gw1_gw2,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7919,gw2_gw1,0.0006989614652313848,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7920,urban_drainage,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7921,percolation,0.01381009995270959,2011-07-31,0.0,0.0,2.7962339169016698e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7922,runoff,0.0019018104945808106,2011-07-31,0.0,0.0,4.1164577484953305e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7923,storm_outflow,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7924,baseflow,0.03486932728875451,2011-07-31,0.0,0.0,4.0069947056156e-06,0.0,0.0,0.0,0.0,0.0,10.330189321951778,0.0,0.0,0.0 +7925,catchment_outflow,0.03677113778333532,2011-07-31,0.0,0.0,4.4186404804651336e-06,0.0,0.0,0.0,0.0,0.0,10.611480609137331,0.0,0.0,0.0 +7926,reservoir_outflow,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7927,gw1_gw2,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7928,gw2_gw1,0.0006943017221297866,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7929,urban_drainage,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7930,percolation,0.013533897953655399,2011-08-01,0.0,0.0,2.740309238563636e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7931,runoff,0.0015214483956646485,2011-08-01,0.0,0.0,3.2931661987962646e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7932,storm_outflow,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7933,baseflow,0.03481598871541677,2011-08-01,0.0,0.0,4.0038279919479714e-06,0.0,0.0,0.0,0.0,0.0,10.334036376157474,0.0,0.0,0.0 +7934,catchment_outflow,0.036337437111081415,2011-08-01,0.0,0.0,4.333144611827598e-06,0.0,0.0,0.0,0.0,0.0,10.561594181705363,0.0,0.0,0.0 +7935,reservoir_outflow,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7936,gw1_gw2,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7937,gw2_gw1,0.0006896730439821752,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7938,urban_drainage,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7939,percolation,0.01326321999458229,2011-08-02,0.0,0.0,2.6855030537923632e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7940,runoff,0.0012171587165317188,2011-08-02,0.0,0.0,2.634532959037012e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7941,storm_outflow,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7942,baseflow,0.03476210679361468,2011-08-02,0.0,0.0,4.000532179602582e-06,0.0,0.0,0.0,0.0,0.0,10.337808663489188,0.0,0.0,0.0 +7943,catchment_outflow,0.0359792655101464,2011-08-02,0.0,0.0,4.263985475506283e-06,0.0,0.0,0.0,0.0,0.0,10.521539553835307,0.0,0.0,0.0 +7944,reservoir_outflow,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7945,gw1_gw2,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7946,gw2_gw1,0.0006850752236887914,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7947,urban_drainage,0.023,2011-08-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0 +7948,percolation,0.012997955594690644,2011-08-03,0.0,0.0,2.631792992716516e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7949,runoff,0.0009737269732253748,2011-08-03,0.0,0.0,2.107626367229609e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7950,storm_outflow,0.023,2011-08-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0 +7951,baseflow,0.03470769641561737,2011-08-03,0.0,0.0,3.997110331635367e-06,0.0,0.0,0.0,0.0,0.0,10.341507768736166,0.0,0.0,0.0 +7952,catchment_outflow,0.058681423388842746,2011-08-03,0.0,0.0,2.1207872968358332e-05,0.0,0.0,0.0,0.0,0.0,13.787440955113208,0.0,0.0,0.0 +7953,reservoir_outflow,0.0115,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7954,gw1_gw2,0.0,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7955,gw2_gw1,0.0006805080555306376,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7956,urban_drainage,0.031000000000000003,2011-08-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 +7957,percolation,0.012737996482796832,2011-08-04,0.0,0.0,2.579157132862186e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7958,runoff,0.0007789815785803001,2011-08-04,0.0,0.0,1.6861010937836874e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7959,storm_outflow,0.031000000000000003,2011-08-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 +7960,baseflow,0.034652772165785314,2011-08-04,0.0,0.0,3.993565448638434e-06,0.0,0.0,0.0,0.0,0.0,10.345135238276198,0.0,0.0,0.0 +7961,catchment_outflow,0.06643175374436562,2011-08-04,0.0,0.0,5.1621755580168025e-06,0.0,0.0,0.0,0.0,0.0,14.182490662893754,0.0,0.0,0.0 +7962,reservoir_outflow,0.015500000000000002,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7963,gw1_gw2,0.0,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7964,gw2_gw1,0.0006759713351604191,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7965,urban_drainage,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7966,percolation,0.012483236553140894,2011-08-05,0.0,0.0,2.5275739902049418e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7967,runoff,0.0006231852628642401,2011-08-05,0.0,0.0,1.34888087502695e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7968,storm_outflow,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7969,baseflow,0.03459734832675371,2011-08-05,0.0,0.0,3.98990046999235e-06,0.0,0.0,0.0,0.0,0.0,10.348692581181082,0.0,0.0,0.0 +7970,catchment_outflow,0.03522053358961795,2011-08-05,0.0,0.0,4.124788557495046e-06,0.0,0.0,0.0,0.0,0.0,10.4445967095845,0.0,0.0,0.0 +7971,reservoir_outflow,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7972,gw1_gw2,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7973,gw2_gw1,0.0006714648595925965,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7974,urban_drainage,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7975,percolation,0.012233571822078076,2011-08-06,0.0,0.0,2.477022510400843e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7976,runoff,0.0006285804270724826,2011-08-06,0.0,0.0,1.07910470002156e-07,0.0,0.0,0.0,0.0,0.0,16.124791641780657,0.0,0.0,0.0 +7977,storm_outflow,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7978,baseflow,0.034541438885492014,2011-08-06,0.0,0.0,3.986118275093371e-06,0.0,0.0,0.0,0.0,0.0,10.352181270284063,0.0,0.0,0.0 +7979,catchment_outflow,0.0351700193125645,2011-08-06,0.0,0.0,4.094028745095527e-06,0.0,0.0,0.0,0.0,0.0,10.455352947853829,0.0,0.0,0.0 +7980,reservoir_outflow,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7981,gw1_gw2,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7982,gw2_gw1,0.0006669884271953919,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7983,urban_drainage,0.013999999999999999,2011-08-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7984,percolation,0.011988900385636516,2011-08-07,0.0,0.0,2.4274820601928264e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7985,runoff,0.00039883856823311366,2011-08-07,0.0,0.0,8.632837600172482e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7986,storm_outflow,0.013999999999999999,2011-08-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7987,baseflow,0.03448505753924238,2011-08-07,0.0,0.0,3.9822216845561195e-06,0.0,0.0,0.0,0.0,0.0,10.355602743210786,0.0,0.0,0.0 +7988,catchment_outflow,0.04888389610747549,2011-08-07,0.0,0.0,7.068550060557845e-06,0.0,0.0,0.0,0.0,0.0,12.307791534272535,0.0,0.0,0.0 +7989,reservoir_outflow,0.006999999999999999,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7990,gw1_gw2,0.0,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7991,gw2_gw1,0.0006625418376806635,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7992,urban_drainage,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7993,percolation,0.011749122377923787,2011-08-08,0.0,0.0,2.3789324189889697e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970243,0.0,0.0,0.0 +7994,runoff,0.00031907085458649095,2011-08-08,0.0,0.0,6.906270080137984e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7995,storm_outflow,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7996,baseflow,0.034428217701339074,2011-08-08,0.0,0.0,3.9782134613922016e-06,0.0,0.0,0.0,0.0,0.0,10.358958403375189,0.0,0.0,0.0 +7997,catchment_outflow,0.034747288555925564,2011-08-08,0.0,0.0,4.047276162193582e-06,0.0,0.0,0.0,0.0,0.0,10.408635813322698,0.0,0.0,0.0 +7998,reservoir_outflow,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7999,gw1_gw2,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8000,gw2_gw1,0.0006581248920959127,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8001,urban_drainage,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8002,percolation,0.01151413993036531,2011-08-09,0.0,0.0,2.3313537706091904e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8003,runoff,0.00025525668366919275,2011-08-09,0.0,0.0,5.525016064110387e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +8004,storm_outflow,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8005,baseflow,0.034370932506911644,2011-08-09,0.0,0.0,3.974096312165244e-06,0.0,0.0,0.0,0.0,0.0,10.362249620941773,0.0,0.0,0.0 +8006,catchment_outflow,0.03462618919058084,2011-08-09,0.0,0.0,4.029346472806348e-06,0.0,0.0,0.0,0.0,0.0,10.40210627757957,0.0,0.0,0.0 +8007,reservoir_outflow,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8008,gw1_gw2,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8009,gw2_gw1,0.0006537373928154011,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8010,urban_drainage,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8011,percolation,0.011283857131758003,2011-08-10,0.0,0.0,2.2847266951970066e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8012,runoff,0.00024383679146745162,2011-08-10,0.0,0.0,4.42001285128831e-08,0.0,0.0,0.0,0.0,0.0,15.834325643030722,0.0,0.0,0.0 +8013,storm_outflow,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8014,baseflow,0.034313214818473756,2011-08-10,0.0,0.0,3.969872888122823e-06,0.0,0.0,0.0,0.0,0.0,10.365477733755558,0.0,0.0,0.0 +8015,catchment_outflow,0.03455705160994121,2011-08-10,0.0,0.0,4.0140730166357065e-06,0.0,0.0,0.0,0.0,0.0,10.40406627835343,0.0,0.0,0.0 +8016,reservoir_outflow,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8017,gw1_gw2,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8018,gw2_gw1,0.0006493791435296715,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8019,urban_drainage,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8020,percolation,0.011058179989122842,2011-08-11,0.0,0.0,2.2390321612930664e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970243,0.0,0.0,0.0 +8021,runoff,0.00016336427754828336,2011-08-11,0.0,0.0,3.536010281030648e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +8022,storm_outflow,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8023,baseflow,0.03425507723140038,2011-08-11,0.0,0.0,3.9655457863057495e-06,0.0,0.0,0.0,0.0,0.0,10.368644048240997,0.0,0.0,0.0 +8024,catchment_outflow,0.03441844150894866,2011-08-11,0.0,0.0,4.000905889116056e-06,0.0,0.0,0.0,0.0,0.0,10.394275924223846,0.0,0.0,0.0 +8025,reservoir_outflow,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8026,gw1_gw2,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8027,gw2_gw1,0.000645049949239862,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8028,urban_drainage,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8029,percolation,0.010837016389340386,2011-08-12,0.0,0.0,2.194251518067205e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8030,runoff,0.0001306914220386267,2011-08-12,0.0,0.0,2.8288082248245185e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +8031,storm_outflow,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8032,baseflow,0.03419653207929523,2011-08-12,0.0,0.0,3.961117550635153e-06,0.0,0.0,0.0,0.0,0.0,10.371749840271066,0.0,0.0,0.0 +8033,catchment_outflow,0.03432722350133386,2011-08-12,0.0,0.0,3.989405632883398e-06,0.0,0.0,0.0,0.0,0.0,10.392298006044506,0.0,0.0,0.0 +8034,reservoir_outflow,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8035,gw1_gw2,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8036,gw2_gw1,0.0006407496162447402,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8037,urban_drainage,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8038,percolation,0.010620276061553578,2011-08-13,0.0,0.0,2.150366487705861e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8039,runoff,0.00010455313763090135,2011-08-13,0.0,0.0,2.263046579859614e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 +8040,storm_outflow,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8041,baseflow,0.034137591439250874,2011-08-13,0.0,0.0,3.95659067297783e-06,0.0,0.0,0.0,0.0,0.0,10.374796356007694,0.0,0.0,0.0 +8042,catchment_outflow,0.034242144576881774,2011-08-13,0.0,0.0,3.979221138776426e-06,0.0,0.0,0.0,0.0,0.0,10.391266430164194,0.0,0.0,0.0 +8043,reservoir_outflow,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8044,gw1_gw2,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8045,gw2_gw1,0.0006364779521362608,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8046,urban_drainage,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8047,percolation,0.010407870540322503,2011-08-14,0.0,0.0,2.107359157951743e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8048,runoff,8.364251010472109e-05,2011-08-14,0.0,0.0,1.8104372638876917e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 +8049,storm_outflow,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8050,baseflow,0.03407826713700356,2011-08-14,0.0,0.0,3.951967594190265e-06,0.0,0.0,0.0,0.0,0.0,10.377784812714626,0.0,0.0,0.0 +8051,catchment_outflow,0.03416190964710828,2011-08-14,0.0,0.0,3.970071966829142e-06,0.0,0.0,0.0,0.0,0.0,10.390984501227496,0.0,0.0,0.0 +8052,reservoir_outflow,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8053,gw1_gw2,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8054,gw2_gw1,0.0006322347657889083,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8055,urban_drainage,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8056,percolation,0.010199713129516055,2011-08-15,0.0,0.0,2.0652119747927087e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8057,runoff,6.691400808377687e-05,2011-08-15,0.0,0.0,1.4483498111101534e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +8058,storm_outflow,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8059,baseflow,0.03401857075198484,2011-08-15,0.0,0.0,3.947250705141771e-06,0.0,0.0,0.0,0.0,0.0,10.380716399543795,0.0,0.0,0.0 +8060,catchment_outflow,0.03408548476006862,2011-08-15,0.0,0.0,3.9617342032528726e-06,0.0,0.0,0.0,0.0,0.0,10.391294071869433,0.0,0.0,0.0 +8061,reservoir_outflow,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8062,gw1_gw2,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8063,gw2_gw1,0.0006280198673502824,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8064,urban_drainage,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8065,percolation,0.009995718866925733,2011-08-16,0.0,0.0,2.0239077352968546e-06,0.0,0.0,0.0,0.0,0.0,14.28881221897024,0.0,0.0,0.0 +8066,runoff,5.35312064670215e-05,2011-08-16,0.0,0.0,1.1586798488881229e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +8067,storm_outflow,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8068,baseflow,0.033958513622272195,2011-08-16,0.0,0.0,3.942442347717159e-06,0.0,0.0,0.0,0.0,0.0,10.383592278296215,0.0,0.0,0.0 +8069,catchment_outflow,0.034012044828739214,2011-08-16,0.0,0.0,3.95402914620604e-06,0.0,0.0,0.0,0.0,0.0,10.392068161568579,0.0,0.0,0.0 +8070,reservoir_outflow,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8071,gw1_gw2,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8072,gw2_gw1,0.0006238330682345251,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8073,urban_drainage,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8074,percolation,0.009795804489587218,2011-08-17,0.0,0.0,1.983429580590917e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8075,runoff,4.282496517361719e-05,2011-08-17,0.0,0.0,9.26943879110498e-09,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +8076,storm_outflow,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8077,baseflow,0.03389810684944048,2011-08-17,0.0,0.0,3.937544815799343e-06,0.0,0.0,0.0,0.0,0.0,10.386413584158339,0.0,0.0,0.0 +8078,catchment_outflow,0.0339409318146141,2011-08-17,0.0,0.0,3.9468142545904475e-06,0.0,0.0,0.0,0.0,0.0,10.393204937925287,0.0,0.0,0.0 +8079,reservoir_outflow,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8080,gw1_gw2,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8081,gw2_gw1,0.0006196741811130835,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8082,urban_drainage,0.04,2011-08-18,0.0,0.0,6.111111111111112e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +8083,percolation,0.009599888399795474,2011-08-18,0.0,0.0,1.943760988979099e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8084,runoff,3.4259972138893756e-05,2011-08-18,0.0,0.0,7.415551032883985e-09,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +8085,storm_outflow,0.04,2011-08-18,0.0,0.0,6.111111111111112e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +8086,baseflow,0.03383736130331637,2011-08-18,0.0,0.0,3.932560356232293e-06,0.0,0.0,0.0,0.0,0.0,10.389181426414853,0.0,0.0,0.0 +8087,catchment_outflow,0.07387162127545527,2011-08-18,0.0,0.0,1.0051087018376289e-05,0.0,0.0,0.0,0.0,0.0,13.650281727964027,0.0,0.0,0.0 +8088,reservoir_outflow,0.036,2011-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8089,gw1_gw2,0.0,2011-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8090,gw2_gw1,0.0006155430199056511,2011-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8091,urban_drainage,0.011999999999999993,2011-08-19,0.0,0.0,5.888888888888889e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +8092,percolation,0.009407890631799564,2011-08-19,0.0,0.0,1.904885769199517e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +8093,runoff,2.7407977711115e-05,2011-08-19,0.0,0.0,5.932440826307187e-09,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +8094,storm_outflow,0.011999999999999993,2011-08-19,0.0,0.0,5.888888888888889e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +8095,baseflow,0.03377628762663758,2011-08-19,0.0,0.0,3.927491169764711e-06,0.0,0.0,0.0,0.0,0.0,10.391896889138753,0.0,0.0,0.0 +8096,catchment_outflow,0.04580369560434869,2011-08-19,0.0,0.0,9.822312499479908e-06,0.0,0.0,0.0,0.0,0.0,11.971034195196042,0.0,0.0,0.0 +8097,reservoir_outflow,0.0,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8098,gw1_gw2,0.0,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8099,gw2_gw1,0.0006114393997727063,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8100,urban_drainage,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8101,percolation,0.009219732819163573,2011-08-20,0.0,0.0,1.8667880538155267e-06,0.0,0.0,0.0,0.0,0.0,14.28881221897024,0.0,0.0,0.0 +8102,runoff,0.0011404708309148356,2011-08-20,0.0,0.0,4.745952661045751e-09,0.0,0.0,0.0,0.0,0.0,16.05860674137259,0.0,0.0,0.0 +8103,storm_outflow,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8104,baseflow,0.033714896239618895,2011-08-20,0.0,0.0,3.922339411974838e-06,0.0,0.0,0.0,0.0,0.0,10.39456103185957,0.0,0.0,0.0 +8105,catchment_outflow,0.03485536707053373,2011-08-20,0.0,0.0,3.927085364635884e-06,0.0,0.0,0.0,0.0,0.0,10.579889130788958,0.0,0.0,0.0 +8106,reservoir_outflow,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8107,gw1_gw2,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8108,gw2_gw1,0.0006073631371075194,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8109,urban_drainage,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8110,percolation,0.009035338162780302,2011-08-21,0.0,0.0,1.8294522927392164e-06,0.0,0.0,0.0,0.0,0.0,14.28881221897024,0.0,0.0,0.0 +8111,runoff,1.7541105735113604e-05,2011-08-21,0.0,0.0,3.796762128836601e-09,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +8112,storm_outflow,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8113,baseflow,0.033653197344426795,2011-08-21,0.0,0.0,3.9171071941767485e-06,0.0,0.0,0.0,0.0,0.0,10.39717489021055,0.0,0.0,0.0 +8114,catchment_outflow,0.033670738450161906,2011-08-21,0.0,0.0,3.920903956305585e-06,0.0,0.0,0.0,0.0,0.0,10.399973344773306,0.0,0.0,0.0 +8115,reservoir_outflow,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8116,gw1_gw2,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8117,gw2_gw1,0.0006033140495263823,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8118,urban_drainage,0.018,2011-08-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 +8119,percolation,0.010903990830229937,2011-08-22,0.0,0.0,2.2805818756419136e-06,0.0,0.0,0.0,0.0,0.0,14.438160431827765,0.0,0.0,0.0 +8120,runoff,0.01403596583151869,2011-08-22,0.0,0.0,1.628766172228007e-06,0.0,0.0,0.0,0.0,0.0,15.410975066627792,0.0,0.0,0.0 +8121,storm_outflow,0.018,2011-08-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 +8122,baseflow,0.0335963243281413,2011-08-22,0.0,0.0,3.913015880880412e-06,0.0,0.0,0.0,0.0,0.0,10.400453736198322,0.0,0.0,0.0 +8123,catchment_outflow,0.06563229015965999,2011-08-22,0.0,0.0,8.541782053108418e-06,0.0,0.0,0.0,0.0,0.0,12.931297209683086,0.0,0.0,0.0 +8124,reservoir_outflow,0.009,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8125,gw1_gw2,0.0,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8126,gw2_gw1,0.0005992919558632792,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8127,urban_drainage,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8128,percolation,0.010685911013625338,2011-08-23,0.0,0.0,2.234970238129075e-06,0.0,0.0,0.0,0.0,0.0,14.438160431827763,0.0,0.0,0.0 +8129,runoff,0.0057435991508558715,2011-08-23,0.0,0.0,1.3030129377824057e-06,0.0,0.0,0.0,0.0,0.0,15.106508520519228,0.0,0.0,0.0 +8130,storm_outflow,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8131,baseflow,0.03353904829485502,2011-08-23,0.0,0.0,3.908820766773533e-06,0.0,0.0,0.0,0.0,0.0,10.40366988100879,0.0,0.0,0.0 +8132,catchment_outflow,0.03928264744571089,2011-08-23,0.0,0.0,5.211833704555939e-06,0.0,0.0,0.0,0.0,0.0,11.091281887145447,0.0,0.0,0.0 +8133,reservoir_outflow,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8134,gw1_gw2,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8135,gw2_gw1,0.0005952966761576307,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8136,urban_drainage,0.04,2011-08-24,0.0,0.0,1.0666666666666667e-06,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 +8137,percolation,0.0163717088035097,2011-08-24,0.0,0.0,3.53717996133126e-06,0.0,0.0,0.0,0.0,0.0,14.57465306743835,0.0,0.0,0.0 +8138,runoff,0.04474605737481945,2011-08-24,0.0,0.0,5.532107443441814e-06,0.0,0.0,0.0,0.0,0.0,15.1723796630932,0.0,0.0,0.0 +8139,storm_outflow,0.04,2011-08-24,0.0,0.0,1.0666666666666667e-06,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 +8140,baseflow,0.03349612994612665,2011-08-24,0.0,0.0,3.907891664759927e-06,0.0,0.0,0.0,0.0,0.0,10.408766449049814,0.0,0.0,0.0 +8141,catchment_outflow,0.1182421873209461,2011-08-24,0.0,0.0,1.0506665774868408e-05,0.0,0.0,0.0,0.0,0.0,13.943419510656394,0.0,0.0,0.0 +8142,reservoir_outflow,0.0375,2011-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8143,gw1_gw2,0.0,2011-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8144,gw2_gw1,0.0005913280316498515,2011-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8145,urban_drainage,0.03799999999999999,2011-08-25,0.0,0.0,1.933333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0 +8146,percolation,0.018619941610874147,2011-08-25,0.0,0.0,4.051617331743386e-06,0.0,0.0,0.0,0.0,0.0,14.599509006487983,0.0,0.0,0.0 +8147,runoff,0.03685978558256455,2011-08-25,0.0,0.0,6.3762891868826225e-06,0.0,0.0,0.0,0.0,0.0,14.997059911459907,0.0,0.0,0.0 +8148,storm_outflow,0.03799999999999999,2011-08-25,0.0,0.0,1.933333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0 +8149,baseflow,0.033458939475288524,2011-08-25,0.0,0.0,3.908250978927387e-06,0.0,0.0,0.0,0.0,0.0,10.414596832719278,0.0,0.0,0.0 +8150,catchment_outflow,0.10831872505785306,2011-08-25,0.0,0.0,1.2217873499143343e-05,0.0,0.0,0.0,0.0,0.0,13.767436845515713,0.0,0.0,0.0 +8151,reservoir_outflow,0.0014999999999999996,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8152,gw1_gw2,0.0,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8153,gw2_gw1,0.0005873858447721148,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8154,urban_drainage,0.04,2011-08-26,0.0,0.0,4.878048780487804e-07,0.0,0.0,0.0,0.0,0.0,15.485714290000002,0.0,0.0,0.0 +8155,percolation,0.029281250057263654,2011-08-26,0.0,0.0,6.3505365543258195e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +8156,runoff,0.09775167269951103,2011-08-26,0.0,0.0,1.3034203246897103e-05,0.0,0.0,0.0,0.0,0.0,15.065624437317059,0.0,0.0,0.0 +8157,storm_outflow,0.04,2011-08-26,0.0,0.0,4.878048780487804e-07,0.0,0.0,0.0,0.0,0.0,15.485714290000002,0.0,0.0,0.0 +8158,baseflow,0.033448495251743454,2011-08-26,0.0,0.0,3.914356692865881e-06,0.0,0.0,0.0,0.0,0.0,10.423892282932346,0.0,0.0,0.0 +8159,catchment_outflow,0.17120016795125448,2011-08-26,0.0,0.0,1.7436364817811764e-05,0.0,0.0,0.0,0.0,0.0,14.25689064064283,0.0,0.0,0.0 +8160,reservoir_outflow,0.041,2011-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8161,gw1_gw2,0.0,2011-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8162,gw2_gw1,0.0005834699391403575,2011-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8163,urban_drainage,0.029000000000000005,2011-08-27,0.0,0.0,1.5121951219512194e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +8164,percolation,0.028695625056118383,2011-08-27,0.0,0.0,6.223525823239304e-06,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 +8165,runoff,0.05013048729470505,2011-08-27,0.0,0.0,1.0427362597517684e-05,0.0,0.0,0.0,0.0,0.0,14.829152707694778,0.0,0.0,0.0 +8166,storm_outflow,0.029,2011-08-27,0.0,0.0,1.5121951219512191e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +8167,baseflow,0.033436613076254396,2011-08-27,0.0,0.0,3.920129615691815e-06,0.0,0.0,0.0,0.0,0.0,10.432985117732626,0.0,0.0,0.0 +8168,catchment_outflow,0.11256710037095945,2011-08-27,0.0,0.0,1.585968733516072e-05,0.0,0.0,0.0,0.0,0.0,13.69247362103961,0.0,0.0,0.0 +8169,reservoir_outflow,0.0,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8170,gw1_gw2,0.0,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8171,gw2_gw1,0.0005795801395459321,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8172,urban_drainage,0.0,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8173,percolation,0.028121712554996018,2011-08-28,0.0,0.0,6.099055306774518e-06,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 +8174,runoff,0.03941347084946644,2011-08-28,0.0,0.0,8.341890078014147e-06,0.0,0.0,0.0,0.0,0.0,14.817132686186193,0.0,0.0,0.0 +8175,storm_outflow,3.469446951953614e-18,2011-08-28,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +8176,baseflow,0.03342332582495125,2011-08-28,0.0,0.0,3.925576929919522e-06,0.0,0.0,0.0,0.0,0.0,10.44188051202535,0.0,0.0,0.0 +8177,catchment_outflow,0.0728367966744177,2011-08-28,0.0,0.0,1.2267467007933668e-05,0.0,0.0,0.0,0.0,0.0,12.809418376110468,0.0,0.0,0.0 +8178,reservoir_outflow,0.0,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8179,gw1_gw2,0.0,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8180,gw2_gw1,0.0005757162719488562,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8181,urban_drainage,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8182,percolation,0.0275592783038961,2011-08-29,0.0,0.0,5.9770742006390266e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +8183,runoff,0.030226898083038137,2011-08-29,0.0,0.0,6.6735120624113154e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +8184,storm_outflow,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8185,baseflow,0.03340866570614861,2011-08-29,0.0,0.0,3.930705673096321e-06,0.0,0.0,0.0,0.0,0.0,10.450583478928952,0.0,0.0,0.0 +8186,catchment_outflow,0.06363556378918675,2011-08-29,0.0,0.0,1.0604217735507637e-05,0.0,0.0,0.0,0.0,0.0,12.511873759537238,0.0,0.0,0.0 +8187,reservoir_outflow,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8188,gw1_gw2,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8189,gw2_gw1,0.0005718781634689307,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8190,urban_drainage,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8191,percolation,0.027008092737818176,2011-08-30,0.0,0.0,5.857532716626245e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +8192,runoff,0.02418151846643051,2011-08-30,0.0,0.0,5.338809649929052e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +8193,storm_outflow,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8194,baseflow,0.03339266427372778,2011-08-30,0.0,0.0,3.935522740705145e-06,0.0,0.0,0.0,0.0,0.0,10.459098875994052,0.0,0.0,0.0 +8195,catchment_outflow,0.05757418274015829,2011-08-30,0.0,0.0,9.274332390634198e-06,0.0,0.0,0.0,0.0,0.0,12.278163864776154,0.0,0.0,0.0 +8196,reservoir_outflow,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8197,gw1_gw2,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8198,gw2_gw1,0.0005680656423795227,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8199,urban_drainage,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8200,percolation,0.026467930883061812,2011-08-31,0.0,0.0,5.740382062293722e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +8201,runoff,0.01934521477314441,2011-08-31,0.0,0.0,4.271047719943243e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +8202,storm_outflow,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8203,baseflow,0.03337535244025111,2011-08-31,0.0,0.0,3.940034889009117e-06,0.0,0.0,0.0,0.0,0.0,10.467431411136287,0.0,0.0,0.0 +8204,catchment_outflow,0.05272056721339552,2011-08-31,0.0,0.0,8.21108260895236e-06,0.0,0.0,0.0,0.0,0.0,12.05360079060975,0.0,0.0,0.0 +8205,reservoir_outflow,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8206,gw1_gw2,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8207,gw2_gw1,0.0005642785380969073,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8208,urban_drainage,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8209,percolation,0.025938572265400577,2011-09-01,0.0,0.0,5.6255744210478475e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +8210,runoff,0.015476171818515525,2011-09-01,0.0,0.0,3.4168381759545936e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +8211,storm_outflow,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8212,baseflow,0.03335676048981399,2011-09-01,0.0,0.0,3.9442487378392135e-06,0.0,0.0,0.0,0.0,0.0,10.475585648298248,0.0,0.0,0.0 +8213,catchment_outflow,0.04883293230832951,2011-09-01,0.0,0.0,7.361086913793807e-06,0.0,0.0,0.0,0.0,0.0,11.842958033575457,0.0,0.0,0.0 +8214,reservoir_outflow,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8215,gw1_gw2,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8216,gw2_gw1,0.0005605166811765372,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8217,urban_drainage,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8218,percolation,0.025419800820092566,2011-09-02,0.0,0.0,5.513062932626891e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +8219,runoff,0.012380937454812422,2011-09-02,0.0,0.0,2.733470540763675e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +8220,storm_outflow,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8221,baseflow,0.03333691809063968,2011-09-02,0.0,0.0,3.9481707733261826e-06,0.0,0.0,0.0,0.0,0.0,10.483566012854874,0.0,0.0,0.0 +8222,catchment_outflow,0.0457178555454521,2011-09-02,0.0,0.0,6.681641314089858e-06,0.0,0.0,0.0,0.0,0.0,11.649837647292435,0.0,0.0,0.0 +8223,reservoir_outflow,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8224,gw1_gw2,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8225,gw2_gw1,0.0005567799033020294,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8226,urban_drainage,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8227,percolation,0.025822115950666493,2011-09-03,0.0,0.0,5.610655987808998e-06,0.0,0.0,0.0,0.0,0.0,14.660590867944983,0.0,0.0,0.0 +8228,runoff,0.01613593149578948,2011-09-03,0.0,0.0,2.8796241453930895e-06,0.0,0.0,0.0,0.0,0.0,14.876767875734526,0.0,0.0,0.0 +8229,storm_outflow,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8230,baseflow,0.03331813108528975,2011-09-03,0.0,0.0,3.95232698636239e-06,0.0,0.0,0.0,0.0,0.0,10.491659175393076,0.0,0.0,0.0 +8231,catchment_outflow,0.04945406258107923,2011-09-03,0.0,0.0,6.8319511317554795e-06,0.0,0.0,0.0,0.0,0.0,11.922437758533613,0.0,0.0,0.0 +8232,reservoir_outflow,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8233,gw1_gw2,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8234,gw2_gw1,0.0005530680372798358,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8235,urban_drainage,0.008999999999999998,2011-09-04,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0 +8236,percolation,0.02686120199739945,2011-09-04,0.0,0.0,5.85022468639756e-06,0.0,0.0,0.0,0.0,0.0,14.658611005197633,0.0,0.0,0.0 +8237,runoff,0.020995451847946003,2011-09-04,0.0,0.0,3.476305377463606e-06,0.0,0.0,0.0,0.0,0.0,14.88434581978501,0.0,0.0,0.0 +8238,storm_outflow,0.008999999999999998,2011-09-04,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0 +8239,baseflow,0.03330198876257002,2011-09-04,0.0,0.0,3.957071730612478e-06,0.0,0.0,0.0,0.0,0.0,10.500061776782127,0.0,0.0,0.0 +8240,catchment_outflow,0.06329744061051602,2011-09-04,0.0,0.0,1.5433377108076082e-05,0.0,0.0,0.0,0.0,0.0,12.64847019503582,0.0,0.0,0.0 +8241,reservoir_outflow,0.004499999999999999,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8242,gw1_gw2,0.0,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8243,gw2_gw1,0.0005493809170312502,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8244,urban_drainage,0.014999999999999998,2011-09-05,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0 +8245,percolation,0.028690060516169975,2011-09-05,0.0,0.0,6.261514325043975e-06,0.0,0.0,0.0,0.0,0.0,14.655985460958293,0.0,0.0,0.0 +8246,runoff,0.028618951993809743,2011-09-05,0.0,0.0,4.542024743218771e-06,0.0,0.0,0.0,0.0,0.0,14.880783727278658,0.0,0.0,0.0 +8247,storm_outflow,0.014999999999999998,2011-09-05,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0 +8248,baseflow,0.03329045894195402,2011-09-05,0.0,0.0,3.962832837098556e-06,0.0,0.0,0.0,0.0,0.0,10.509015821408507,0.0,0.0,0.0 +8249,catchment_outflow,0.07690941093576376,2011-09-05,0.0,0.0,9.504857580317326e-06,0.0,0.0,0.0,0.0,0.0,13.085537310053823,0.0,0.0,0.0 +8250,reservoir_outflow,0.0075,2011-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8251,gw1_gw2,0.0,2011-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8252,gw2_gw1,0.0005457183775842367,2011-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8253,urban_drainage,0.0020000000000000026,2011-09-06,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 +8254,percolation,0.029875903050552738,2011-09-06,0.0,0.0,6.527424812882782e-06,0.0,0.0,0.0,0.0,0.0,14.653740710031727,0.0,0.0,0.0 +8255,runoff,0.028293194069441488,2011-09-06,0.0,0.0,4.937422375707303e-06,0.0,0.0,0.0,0.0,0.0,14.817276017088812,0.0,0.0,0.0 +8256,storm_outflow,0.0020000000000000026,2011-09-06,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 +8257,baseflow,0.033281922552225514,2011-09-06,0.0,0.0,3.969244317038017e-06,0.0,0.0,0.0,0.0,0.0,10.518317222097531,0.0,0.0,0.0 +8258,catchment_outflow,0.06357511662166701,2011-09-06,0.0,0.0,9.906666692745321e-06,0.0,0.0,0.0,0.0,0.0,12.584292843041371,0.0,0.0,0.0 +8259,reservoir_outflow,0.0010000000000000005,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8260,gw1_gw2,0.0,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8261,gw2_gw1,0.0005420802550672122,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8262,urban_drainage,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8263,percolation,0.029278384989541675,2011-09-07,0.0,0.0,6.396876316625124e-06,0.0,0.0,0.0,0.0,0.0,14.653740710031729,0.0,0.0,0.0 +8264,runoff,0.020485000893456545,2011-09-07,0.0,0.0,3.9499379005658425e-06,0.0,0.0,0.0,0.0,0.0,14.749511039229125,0.0,0.0,0.0 +8265,storm_outflow,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8266,baseflow,0.03327191370831881,2011-09-07,0.0,0.0,3.975313397036985e-06,0.0,0.0,0.0,0.0,0.0,10.527414874402412,0.0,0.0,0.0 +8267,catchment_outflow,0.053756914601775355,2011-09-07,0.0,0.0,7.925251297602827e-06,0.0,0.0,0.0,0.0,0.0,12.13631754951759,0.0,0.0,0.0 +8268,reservoir_outflow,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8269,gw1_gw2,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8270,gw2_gw1,0.0005384663867001649,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8271,urban_drainage,0.005999999999999998,2011-09-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +8272,percolation,0.03075011411890395,2011-09-08,0.0,0.0,6.72447718167573e-06,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 +8273,runoff,0.02823240497720263,2011-09-08,0.0,0.0,4.678411625063034e-06,0.0,0.0,0.0,0.0,0.0,14.785384806850878,0.0,0.0,0.0 +8274,storm_outflow,0.005999999999999998,2011-09-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +8275,baseflow,0.03326560920934527,2011-09-08,0.0,0.0,3.982186306498581e-06,0.0,0.0,0.0,0.0,0.0,10.536936613302979,0.0,0.0,0.0 +8276,catchment_outflow,0.06749801418654791,2011-09-08,0.0,0.0,1.0660597931561615e-05,0.0,0.0,0.0,0.0,0.0,12.731934589030368,0.0,0.0,0.0 +8277,reservoir_outflow,0.002999999999999999,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8278,gw1_gw2,0.0,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8279,gw2_gw1,0.0005348766107889702,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8280,urban_drainage,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8281,percolation,0.030135111836525872,2011-09-09,0.0,0.0,6.589987638042215e-06,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 +8282,runoff,0.017096116571446014,2011-09-09,0.0,0.0,3.7427293000504266e-06,0.0,0.0,0.0,0.0,0.0,14.638499287713,0.0,0.0,0.0 +8283,storm_outflow,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8284,baseflow,0.033257782965913224,2011-09-09,0.0,0.0,3.98870580982744e-06,0.0,0.0,0.0,0.0,0.0,10.546248543987154,0.0,0.0,0.0 +8285,catchment_outflow,0.050353899537359234,2011-09-09,0.0,0.0,7.731435109877867e-06,0.0,0.0,0.0,0.0,0.0,11.935646314509713,0.0,0.0,0.0 +8286,reservoir_outflow,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8287,gw1_gw2,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8288,gw2_gw1,0.0005313107667168637,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8289,urban_drainage,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8290,percolation,0.02953240959979535,2011-09-10,0.0,0.0,6.458187885281371e-06,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 +8291,runoff,0.014165526590852528,2011-09-10,0.0,0.0,2.9941834400403413e-06,0.0,0.0,0.0,0.0,0.0,14.653449315655227,0.0,0.0,0.0 +8292,storm_outflow,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8293,baseflow,0.03324846953249793,2011-09-10,0.0,0.0,3.994879515016075e-06,0.0,0.0,0.0,0.0,0.0,10.555356114385855,0.0,0.0,0.0 +8294,catchment_outflow,0.047413996123350455,2011-09-10,0.0,0.0,6.989062955056416e-06,0.0,0.0,0.0,0.0,0.0,11.779712906910753,0.0,0.0,0.0 +8295,reservoir_outflow,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8296,gw1_gw2,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8297,gw2_gw1,0.0005277686949391125,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8298,urban_drainage,0.005,2011-09-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +8299,percolation,0.030343241432157442,2011-09-11,0.0,0.0,6.642400970601955e-06,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 +8300,runoff,0.020348149492088064,2011-09-11,0.0,0.0,3.4399362287863087e-06,0.0,0.0,0.0,0.0,0.0,14.672426008150268,0.0,0.0,0.0 +8301,storm_outflow,0.005,2011-09-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +8302,baseflow,0.033241206462247076,2011-09-11,0.0,0.0,4.00149831865504e-06,0.0,0.0,0.0,0.0,0.0,10.564667730885366,0.0,0.0,0.0 +8303,catchment_outflow,0.05858935595433514,2011-09-11,0.0,0.0,1.0441434547441349e-05,0.0,0.0,0.0,0.0,0.0,12.372854739824195,0.0,0.0,0.0 +8304,reservoir_outflow,0.0025,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8305,gw1_gw2,0.0,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8306,gw2_gw1,0.0005242502369725343,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8307,urban_drainage,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8308,percolation,0.029736376603514292,2011-09-12,0.0,0.0,6.509552951189916e-06,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 +8309,runoff,0.012572612996589634,2011-09-12,0.0,0.0,2.7519489830290462e-06,0.0,0.0,0.0,0.0,0.0,14.56411210514201,0.0,0.0,0.0 +8310,storm_outflow,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8311,baseflow,0.03323244438760024,2011-09-12,0.0,0.0,4.007768455236376e-06,0.0,0.0,0.0,0.0,0.0,10.573774690980114,0.0,0.0,0.0 +8312,catchment_outflow,0.04580505738418988,2011-09-12,0.0,0.0,6.759717438265422e-06,0.0,0.0,0.0,0.0,0.0,11.669046062725762,0.0,0.0,0.0 +8313,reservoir_outflow,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8314,gw1_gw2,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8315,gw2_gw1,0.0005207552353928335,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8316,urban_drainage,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8317,percolation,0.030117378485010976,2011-09-13,0.0,0.0,6.598723900946724e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 +8318,runoff,0.016551675818327515,2011-09-13,0.0,0.0,2.932765882358591e-06,0.0,0.0,0.0,0.0,0.0,14.571455559273975,0.0,0.0,0.0 +8319,storm_outflow,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8320,baseflow,0.033224656722843776,2011-09-13,0.0,0.0,4.014245843850653e-06,0.0,0.0,0.0,0.0,0.0,10.582953049337966,0.0,0.0,0.0 +8321,catchment_outflow,0.049776332541171295,2011-09-13,0.0,0.0,6.947011726209244e-06,0.0,0.0,0.0,0.0,0.0,11.90921388806976,0.0,0.0,0.0 +8322,reservoir_outflow,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8323,gw1_gw2,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8324,gw2_gw1,0.0005172835338234094,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8325,urban_drainage,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8326,percolation,0.029515030915310752,2011-09-14,0.0,0.0,6.466749422927788e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 +8327,runoff,0.010502451072719635,2011-09-14,0.0,0.0,2.346212705886873e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 +8328,storm_outflow,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8329,baseflow,0.03321538265832494,2011-09-14,0.0,0.0,4.020377102798345e-06,0.0,0.0,0.0,0.0,0.0,10.591929962349777,0.0,0.0,0.0 +8330,catchment_outflow,0.04371783373104457,2011-09-14,0.0,0.0,6.366589808685219e-06,0.0,0.0,0.0,0.0,0.0,11.527358880900747,0.0,0.0,0.0 +8331,reservoir_outflow,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8332,gw1_gw2,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8333,gw2_gw1,0.0005138349769312711,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8334,urban_drainage,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8335,percolation,0.02892473029700454,2011-09-15,0.0,0.0,6.3374144344692335e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 +8336,runoff,0.008401960858175708,2011-09-15,0.0,0.0,1.8769701647094987e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 +8337,storm_outflow,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8338,baseflow,0.03320465602742164,2011-09-15,0.0,0.0,4.026169696127523e-06,0.0,0.0,0.0,0.0,0.0,10.60071062948128,0.0,0.0,0.0 +8339,catchment_outflow,0.041606616885597345,2011-09-15,0.0,0.0,5.903139860837022e-06,0.0,0.0,0.0,0.0,0.0,11.38525329035044,0.0,0.0,0.0 +8340,reservoir_outflow,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8341,gw1_gw2,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8342,gw2_gw1,0.0005104094104183332,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8343,urban_drainage,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8344,percolation,0.028346235691064446,2011-09-16,0.0,0.0,6.210666145779848e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 +8345,runoff,0.007006010893576018,2011-09-16,0.0,0.0,1.5015761317675991e-06,0.0,0.0,0.0,0.0,0.0,14.494328296042504,0.0,0.0,0.0 +8346,storm_outflow,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8347,baseflow,0.03319250997658075,2011-09-16,0.0,0.0,4.031630937251654e-06,0.0,0.0,0.0,0.0,0.0,10.60930008548229,0.0,0.0,0.0 +8348,catchment_outflow,0.04019852087015677,2011-09-16,0.0,0.0,5.533207069019253e-06,0.0,0.0,0.0,0.0,0.0,11.286403356345224,0.0,0.0,0.0 +8349,reservoir_outflow,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8350,gw1_gw2,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8351,gw2_gw1,0.0005070066810155538,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8352,urban_drainage,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8353,percolation,0.02787176979195597,2011-09-17,0.0,0.0,6.107649787293742e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +8354,runoff,0.006009867892004353,2011-09-17,0.0,0.0,1.271917453512387e-06,0.0,0.0,0.0,0.0,0.0,14.470508134493299,0.0,0.0,0.0 +8355,storm_outflow,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8356,baseflow,0.03317920812611918,2011-09-17,0.0,0.0,4.0368209843767585e-06,0.0,0.0,0.0,0.0,0.0,10.617727032928851,0.0,0.0,0.0 +8357,catchment_outflow,0.039189076018123534,2011-09-17,0.0,0.0,5.308738437889145e-06,0.0,0.0,0.0,0.0,0.0,11.2085729468898,0.0,0.0,0.0 +8358,reservoir_outflow,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8359,gw1_gw2,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8360,gw2_gw1,0.0005036266364756514,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8361,urban_drainage,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8362,percolation,0.027314334396116854,2011-09-18,0.0,0.0,5.985496791547868e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +8363,runoff,0.005345991824981417,2011-09-18,0.0,0.0,1.0175339628099094e-06,0.0,0.0,0.0,0.0,0.0,14.476293497947033,0.0,0.0,0.0 +8364,storm_outflow,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8365,baseflow,0.033164545941794174,2011-09-18,0.0,0.0,4.041692673894687e-06,0.0,0.0,0.0,0.0,0.0,10.625971741409469,0.0,0.0,0.0 +8366,catchment_outflow,0.03851053776677559,2011-09-18,0.0,0.0,5.059226636704596e-06,0.0,0.0,0.0,0.0,0.0,11.160469305651645,0.0,0.0,0.0 +8367,reservoir_outflow,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8368,gw1_gw2,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8369,gw2_gw1,0.0005002691255656444,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8370,urban_drainage,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8371,percolation,0.02676804770819452,2011-09-19,0.0,0.0,5.865786855716912e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +8372,runoff,0.003721038075897012,2011-09-19,0.0,0.0,8.140271702479277e-07,0.0,0.0,0.0,0.0,0.0,14.462183105432777,0.0,0.0,0.0 +8373,storm_outflow,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8374,baseflow,0.033148554696210177,2011-09-19,0.0,0.0,4.046252909349242e-06,0.0,0.0,0.0,0.0,0.0,10.634038809144224,0.0,0.0,0.0 +8375,catchment_outflow,0.03686959277210719,2011-09-19,0.0,0.0,4.860280079597169e-06,0.0,0.0,0.0,0.0,0.0,11.020391616851233,0.0,0.0,0.0 +8376,reservoir_outflow,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8377,gw1_gw2,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8378,gw2_gw1,0.0004969339980616993,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8379,urban_drainage,0.04,2011-09-20,0.0,0.0,4.8e-06,0.0,0.0,0.0,0.0,0.0,14.424999999999999,0.0,0.0,0.0 +8380,percolation,0.026232686754030624,2011-09-20,0.0,0.0,5.748471118602573e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +8381,runoff,0.0029109509111168884,2011-09-20,0.0,0.0,6.512217361983421e-07,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 +8382,storm_outflow,0.04,2011-09-20,0.0,0.0,4.8e-06,0.0,0.0,0.0,0.0,0.0,14.424999999999999,0.0,0.0,0.0 +8383,baseflow,0.03313126502635473,2011-09-20,0.0,0.0,4.050508454872375e-06,0.0,0.0,0.0,0.0,0.0,10.641932692790455,0.0,0.0,0.0 +8384,catchment_outflow,0.07604221593747162,2011-09-20,0.0,0.0,9.501730191070717e-06,0.0,0.0,0.0,0.0,0.0,12.778130736384407,0.0,0.0,0.0 +8385,reservoir_outflow,0.0375,2011-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8386,gw1_gw2,0.0,2011-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8387,gw2_gw1,0.0004936211047414929,2011-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8388,urban_drainage,0.022999999999999993,2011-09-21,0.0,0.0,5.199999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 +8389,percolation,0.025708033018950017,2011-09-21,0.0,0.0,5.6335016962305214e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +8390,runoff,0.005706763276254984,2011-09-21,0.0,0.0,5.209773889586738e-07,0.0,0.0,0.0,0.0,0.0,14.474419267302414,0.0,0.0,0.0 +8391,storm_outflow,0.022999999999999993,2011-09-21,0.0,0.0,5.199999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 +8392,baseflow,0.03311270694633621,2011-09-21,0.0,0.0,4.0544659379757696e-06,0.0,0.0,0.0,0.0,0.0,10.64965771279586,0.0,0.0,0.0 +8393,catchment_outflow,0.06181947022259118,2011-09-21,0.0,0.0,9.775443326934442e-06,0.0,0.0,0.0,0.0,0.0,12.40735445452039,0.0,0.0,0.0 +8394,reservoir_outflow,0.0,2011-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8395,gw1_gw2,0.0,2011-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8396,gw2_gw1,0.0004903302973765733,2011-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8397,urban_drainage,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8398,percolation,0.025193872358571016,2011-09-22,0.0,0.0,5.5208316623059115e-06,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 +8399,runoff,0.0018630085831148084,2011-09-22,0.0,0.0,4.167819111669389e-07,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 +8400,storm_outflow,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8401,baseflow,0.0330929098598668,2011-09-22,0.0,0.0,4.058131852286595e-06,0.0,0.0,0.0,0.0,0.0,10.657218058509219,0.0,0.0,0.0 +8402,catchment_outflow,0.034955918442981605,2011-09-22,0.0,0.0,4.474913763453535e-06,0.0,0.0,0.0,0.0,0.0,10.859970254702226,0.0,0.0,0.0 +8403,reservoir_outflow,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8404,gw1_gw2,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8405,gw2_gw1,0.00048706142872720907,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8406,urban_drainage,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8407,percolation,0.024689994911399595,2011-09-23,0.0,0.0,5.410415029059793e-06,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 +8408,runoff,0.001490406866491847,2011-09-23,0.0,0.0,3.334255289335512e-07,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 +8409,storm_outflow,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8410,baseflow,0.03307190257249563,2011-09-23,0.0,0.0,4.0615125602285285e-06,0.0,0.0,0.0,0.0,0.0,10.66461779306148,0.0,0.0,0.0 +8411,catchment_outflow,0.03456230943898748,2011-09-23,0.0,0.0,4.394938089162079e-06,0.0,0.0,0.0,0.0,0.0,10.828347672924082,0.0,0.0,0.0 +8412,reservoir_outflow,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8413,gw1_gw2,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8414,gw2_gw1,0.00048381435253563865,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8415,urban_drainage,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8416,percolation,0.02419619501317161,2011-09-24,0.0,0.0,5.302206728478598e-06,0.0,0.0,0.0,0.0,0.0,14.621954398923533,0.0,0.0,0.0 +8417,runoff,0.0019296803287435827,2011-09-24,0.0,0.0,2.6674042314684096e-07,0.0,0.0,0.0,0.0,0.0,14.53670560442132,0.0,0.0,0.0 +8418,storm_outflow,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8419,baseflow,0.033049713303597315,2011-09-24,0.0,0.0,4.064614295649153e-06,0.0,0.0,0.0,0.0,0.0,10.67186085802914,0.0,0.0,0.0 +8420,catchment_outflow,0.0349793936323409,2011-09-24,0.0,0.0,4.331354718795994e-06,0.0,0.0,0.0,0.0,0.0,10.885069667740055,0.0,0.0,0.0 +8421,reservoir_outflow,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8422,gw1_gw2,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8423,gw2_gw1,0.0004805889235187877,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8424,urban_drainage,0.034999999999999996,2011-09-25,0.0,0.0,4.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +8425,percolation,0.029078188628643,2011-09-25,0.0,0.0,6.386517546342851e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +8426,runoff,0.037668032870635214,2011-09-25,0.0,0.0,4.181242179963559e-06,0.0,0.0,0.0,0.0,0.0,14.372486959256795,0.0,0.0,0.0 +8427,storm_outflow,0.034999999999999996,2011-09-25,0.0,0.0,4.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +8428,baseflow,0.03303978449190993,2011-09-25,0.0,0.0,4.070419053775888e-06,0.0,0.0,0.0,0.0,0.0,10.680301699459047,0.0,0.0,0.0 +8429,catchment_outflow,0.10570781736254514,2011-09-25,0.0,0.0,1.2251661233739446e-05,0.0,0.0,0.0,0.0,0.0,13.332424661547607,0.0,0.0,0.0 +8430,reservoir_outflow,0.017499999999999998,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8431,gw1_gw2,0.0,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8432,gw2_gw1,0.0004773849973620514,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8433,urban_drainage,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8434,percolation,0.02849662485607014,2011-09-26,0.0,0.0,6.258787195415994e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +8435,runoff,0.015072201690936708,2011-09-26,0.0,0.0,3.3449937439708476e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8436,storm_outflow,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8437,baseflow,0.03302842659282033,2011-09-26,0.0,0.0,4.075889974129987e-06,0.0,0.0,0.0,0.0,0.0,10.688558361962889,0.0,0.0,0.0 +8438,catchment_outflow,0.04810062828375704,2011-09-26,0.0,0.0,7.420883718100835e-06,0.0,0.0,0.0,0.0,0.0,11.735131026846934,0.0,0.0,0.0 +8439,reservoir_outflow,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8440,gw1_gw2,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8441,gw2_gw1,0.0004742024307130777,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8442,urban_drainage,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8443,percolation,0.027926692358948735,2011-09-27,0.0,0.0,6.1336114515076744e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +8444,runoff,0.012390429639787575,2011-09-27,0.0,0.0,2.675994995176678e-06,0.0,0.0,0.0,0.0,0.0,14.052184582596151,0.0,0.0,0.0 +8445,storm_outflow,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8446,baseflow,0.03301567225723565,2011-09-27,0.0,0.0,4.081034277823431e-06,0.0,0.0,0.0,0.0,0.0,10.69663555708161,0.0,0.0,0.0 +8447,catchment_outflow,0.045406101897023224,2011-09-27,0.0,0.0,6.757029273000109e-06,0.0,0.0,0.0,0.0,0.0,11.612298702924603,0.0,0.0,0.0 +8448,reservoir_outflow,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8449,gw1_gw2,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8450,gw2_gw1,0.00047104108117501653,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8451,urban_drainage,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8452,percolation,0.027368158511769762,2011-09-28,0.0,0.0,6.0109392224775204e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +8453,runoff,0.009646209082199495,2011-09-28,0.0,0.0,2.140795996141343e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8454,storm_outflow,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8455,baseflow,0.033001553472871994,2011-09-28,0.0,0.0,4.085859040185067e-06,0.0,0.0,0.0,0.0,0.0,10.704537848759639,0.0,0.0,0.0 +8456,catchment_outflow,0.04264776255507149,2011-09-28,0.0,0.0,6.22665503632641e-06,0.0,0.0,0.0,0.0,0.0,11.456370309659928,0.0,0.0,0.0 +8457,reservoir_outflow,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8458,gw1_gw2,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8459,gw2_gw1,0.00046790080730030326,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8460,urban_drainage,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8461,percolation,0.026820795341534375,2011-09-29,0.0,0.0,5.8907204380279724e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +8462,runoff,0.007716967265759594,2011-09-29,0.0,0.0,1.712636796913074e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8463,storm_outflow,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8464,baseflow,0.03298610157754365,2011-09-29,0.0,0.0,4.090371193679674e-06,0.0,0.0,0.0,0.0,0.0,10.712269659030524,0.0,0.0,0.0 +8465,catchment_outflow,0.04070306884330324,2011-09-29,0.0,0.0,5.803007990592748e-06,0.0,0.0,0.0,0.0,0.0,11.341006322368907,0.0,0.0,0.0 +8466,reservoir_outflow,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8467,gw1_gw2,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8468,gw2_gw1,0.0004647814685853291,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8469,urban_drainage,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8470,percolation,0.02628437943470368,2011-09-30,0.0,0.0,5.772906029267412e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +8471,runoff,0.006173573812607676,2011-09-30,0.0,0.0,1.3701094375304593e-06,0.0,0.0,0.0,0.0,0.0,14.02853507921978,0.0,0.0,0.0 +8472,storm_outflow,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8473,baseflow,0.03296934727218655,2011-09-30,0.0,0.0,4.094577530768644e-06,0.0,0.0,0.0,0.0,0.0,10.71983527344041,0.0,0.0,0.0 +8474,catchment_outflow,0.039142921084794224,2011-09-30,0.0,0.0,5.464686968299103e-06,0.0,0.0,0.0,0.0,0.0,11.241679374714565,0.0,0.0,0.0 +8475,reservoir_outflow,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8476,gw1_gw2,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8477,gw2_gw1,0.0004616829254612043,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8478,urban_drainage,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8479,percolation,0.025758691846009603,2011-10-01,0.0,0.0,5.657447908682062e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +8480,runoff,0.004938859050086143,2011-10-01,0.0,0.0,1.0960875500243678e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219784,0.0,0.0,0.0 +8481,storm_outflow,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8482,baseflow,0.032951320633621106,2011-10-01,0.0,0.0,4.098484706713426e-06,0.0,0.0,0.0,0.0,0.0,10.727238846223361,0.0,0.0,0.0 +8483,catchment_outflow,0.03789017968370725,2011-10-01,0.0,0.0,5.194572256737794e-06,0.0,0.0,0.0,0.0,0.0,11.157551843244082,0.0,0.0,0.0 +8484,reservoir_outflow,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8485,gw1_gw2,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8486,gw2_gw1,0.0004586050392916263,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8487,urban_drainage,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8488,percolation,0.025243518009089423,2011-10-02,0.0,0.0,5.544298950508423e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +8489,runoff,0.003951087240068913,2011-10-02,0.0,0.0,8.76870040019494e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8490,storm_outflow,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8491,baseflow,0.032932051127059776,2011-10-02,0.0,0.0,4.102099242322914e-06,0.0,0.0,0.0,0.0,0.0,10.7344844052417,0.0,0.0,0.0 +8492,catchment_outflow,0.03688313836712869,2011-10-02,0.0,0.0,4.978969282342408e-06,0.0,0.0,0.0,0.0,0.0,11.087357890587366,0.0,0.0,0.0 +8493,reservoir_outflow,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8494,gw1_gw2,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8495,gw2_gw1,0.0004555476723631102,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8496,urban_drainage,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8497,percolation,0.02473864764890763,2011-10-03,0.0,0.0,5.433412971498254e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +8498,runoff,0.003160869792055131,2011-10-03,0.0,0.0,7.014960320155952e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8499,storm_outflow,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8500,baseflow,0.0329115676183644,2011-10-03,0.0,0.0,4.105427526645852e-06,0.0,0.0,0.0,0.0,0.0,10.741575856703774,0.0,0.0,0.0 +8501,catchment_outflow,0.03607243741041953,2011-10-03,0.0,0.0,4.806923558661448e-06,0.0,0.0,0.0,0.0,0.0,11.02959770551754,0.0,0.0,0.0 +8502,reservoir_outflow,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8503,gw1_gw2,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8504,gw2_gw1,0.00045251068788090267,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8505,urban_drainage,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8506,percolation,0.02424387469592948,2011-10-04,0.0,0.0,5.324744712068289e-06,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 +8507,runoff,0.0025286958336441048,2011-10-04,0.0,0.0,5.611968256124762e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8508,storm_outflow,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8509,baseflow,0.03288989838605831,2011-10-04,0.0,0.0,4.108475819609408e-06,0.0,0.0,0.0,0.0,0.0,10.748516989670769,0.0,0.0,0.0 +8510,catchment_outflow,0.035418594219702414,2011-10-04,0.0,0.0,4.669672645221885e-06,0.0,0.0,0.0,0.0,0.0,10.982692519785571,0.0,0.0,0.0 +8511,reservoir_outflow,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8512,gw1_gw2,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8513,gw2_gw1,0.00044949394996187666,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8514,urban_drainage,0.022,2011-10-05,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +8515,percolation,0.023758997202010888,2011-10-05,0.0,0.0,5.218249817826922e-06,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 +8516,runoff,0.0020229566669152836,2011-10-05,0.0,0.0,4.4895746048998094e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +8517,storm_outflow,0.022,2011-10-05,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +8518,baseflow,0.03286707113309819,2011-10-05,0.0,0.0,4.111250254604952e-06,0.0,0.0,0.0,0.0,0.0,10.755311480363538,0.0,0.0,0.0 +8519,catchment_outflow,0.05689002780001347,2011-10-05,0.0,0.0,1.4560207715094934e-05,0.0,0.0,0.0,0.0,0.0,12.775583096289619,0.0,0.0,0.0 +8520,reservoir_outflow,0.011,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8521,gw1_gw2,0.0,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8522,gw2_gw1,0.0004464973236283143,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8523,urban_drainage,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8524,percolation,0.02328381725797067,2011-10-06,0.0,0.0,5.113884821470385e-06,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 +8525,runoff,0.0019372608859432583,2011-10-06,0.0,0.0,3.5916596839198476e-07,0.0,0.0,0.0,0.0,0.0,14.271931024738793,0.0,0.0,0.0 +8526,storm_outflow,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8527,baseflow,0.03284311299841037,2011-10-06,0.0,0.0,4.113756841022115e-06,0.0,0.0,0.0,0.0,0.0,10.761962896279732,0.0,0.0,0.0 +8528,catchment_outflow,0.03478037388435363,2011-10-06,0.0,0.0,4.4729228094141e-06,0.0,0.0,0.0,0.0,0.0,10.957467521640591,0.0,0.0,0.0 +8529,reservoir_outflow,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8530,gw1_gw2,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8531,gw2_gw1,0.00044352067480399885,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8532,urban_drainage,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8533,percolation,0.022974671967450733,2011-10-07,0.0,0.0,5.048848356534159e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8534,runoff,0.002365694219622184,2011-10-07,0.0,0.0,4.114702130241948e-07,0.0,0.0,0.0,0.0,0.0,14.48933362531317,0.0,0.0,0.0 +8535,storm_outflow,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8536,baseflow,0.03281844189583297,2011-10-07,0.0,0.0,4.116094569810895e-06,0.0,0.0,0.0,0.0,0.0,10.76852207821207,0.0,0.0,0.0 +8537,catchment_outflow,0.03518413611545515,2011-10-07,0.0,0.0,4.52756478283509e-06,0.0,0.0,0.0,0.0,0.0,11.018700236356873,0.0,0.0,0.0 +8538,reservoir_outflow,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8539,gw1_gw2,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8540,gw2_gw1,0.0004405638703053328,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8541,urban_drainage,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8542,percolation,0.022515178528101715,2011-10-08,0.0,0.0,4.947871389403476e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8543,runoff,0.0015071409763384965,2011-10-08,0.0,0.0,3.2917617041935586e-07,0.0,0.0,0.0,0.0,0.0,14.266753604192921,0.0,0.0,0.0 +8544,storm_outflow,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8545,baseflow,0.03279268373741364,2011-10-08,0.0,0.0,4.118174011859877e-06,0.0,0.0,0.0,0.0,0.0,10.77494386690475,0.0,0.0,0.0 +8546,catchment_outflow,0.03429982471375213,2011-10-08,0.0,0.0,4.447350182279233e-06,0.0,0.0,0.0,0.0,0.0,10.928374666641016,0.0,0.0,0.0 +8547,reservoir_outflow,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8548,gw1_gw2,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8549,gw2_gw1,0.0004376267778365417,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8550,urban_drainage,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8551,percolation,0.02206487495753968,2011-10-09,0.0,0.0,4.8489139616154054e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8552,runoff,0.001162535967332712,2011-10-09,0.0,0.0,2.633409363354847e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +8553,storm_outflow,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8554,baseflow,0.03276586421546396,2011-10-09,0.0,0.0,4.120000861734266e-06,0.0,0.0,0.0,0.0,0.0,10.781231559811273,0.0,0.0,0.0 +8555,catchment_outflow,0.03392840018279667,2011-10-09,0.0,0.0,4.38334179806975e-06,0.0,0.0,0.0,0.0,0.0,10.899518662749985,0.0,0.0,0.0 +8556,reservoir_outflow,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8557,gw1_gw2,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8558,gw2_gw1,0.00043470926598434547,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8559,urban_drainage,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8560,percolation,0.02162357745838889,2011-10-10,0.0,0.0,4.7519356823830976e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 +8561,runoff,0.0009300287738661696,2011-10-10,0.0,0.0,2.1067274906838776e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +8562,storm_outflow,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8563,baseflow,0.03273800849857127,2011-10-10,0.0,0.0,4.121580698785887e-06,0.0,0.0,0.0,0.0,0.0,10.78738835924322,0.0,0.0,0.0 +8564,catchment_outflow,0.03366803727243744,2011-10-10,0.0,0.0,4.3322534478542745e-06,0.0,0.0,0.0,0.0,0.0,10.88257976304898,0.0,0.0,0.0 +8565,reservoir_outflow,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8566,gw1_gw2,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8567,gw2_gw1,0.00043181120421120767,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8568,urban_drainage,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8569,percolation,0.021191105909221113,2011-10-11,0.0,0.0,4.656896968735436e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 +8570,runoff,0.0007440230190929357,2011-10-11,0.0,0.0,1.6853819925471022e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +8571,storm_outflow,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8572,baseflow,0.032709141242097894,2011-10-11,0.0,0.0,4.1229189894607615e-06,0.0,0.0,0.0,0.0,0.0,10.793417375723749,0.0,0.0,0.0 +8573,catchment_outflow,0.03345316426119083,2011-10-11,0.0,0.0,4.291457188715471e-06,0.0,0.0,0.0,0.0,0.0,10.869925548106224,0.0,0.0,0.0 +8574,reservoir_outflow,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8575,gw1_gw2,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8576,gw2_gw1,0.00042893246284947395,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8577,urban_drainage,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8578,percolation,0.020767283791036692,2011-10-12,0.0,0.0,4.5637590293607265e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8579,runoff,0.0005952184152743486,2011-10-12,0.0,0.0,1.3483055940376815e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +8580,storm_outflow,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8581,baseflow,0.03267928659847024,2011-10-12,0.0,0.0,4.124021089560512e-06,0.0,0.0,0.0,0.0,0.0,10.79932163119941,0.0,0.0,0.0 +8582,catchment_outflow,0.03327450501374459,2011-10-12,0.0,0.0,4.25885164896428e-06,0.0,0.0,0.0,0.0,0.0,10.860751186469896,0.0,0.0,0.0 +8583,reservoir_outflow,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8584,gw1_gw2,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8585,gw2_gw1,0.00042607291309728625,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8586,urban_drainage,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8587,percolation,0.02035193811521596,2011-10-13,0.0,0.0,4.472483848773512e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8588,runoff,0.00047617473221947884,2011-10-13,0.0,0.0,1.0786444752301452e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +8589,storm_outflow,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8590,baseflow,0.032648468227262105,2011-10-13,0.0,0.0,4.124892246458544e-06,0.0,0.0,0.0,0.0,0.0,10.80510406211726,0.0,0.0,0.0 +8591,catchment_outflow,0.03312464295948159,2011-10-13,0.0,0.0,4.232756693981559e-06,0.0,0.0,0.0,0.0,0.0,10.854386917493994,0.0,0.0,0.0 +8592,reservoir_outflow,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8593,gw1_gw2,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8594,gw2_gw1,0.000423232427009701,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8595,urban_drainage,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8596,percolation,0.01994489935291164,2011-10-14,0.0,0.0,4.383034171798042e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8597,runoff,0.00038093978577558306,2011-10-14,0.0,0.0,8.629155801841161e-08,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 +8598,storm_outflow,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8599,baseflow,0.03261670930507623,2011-10-14,0.0,0.0,4.1255376012718926e-06,0.0,0.0,0.0,0.0,0.0,10.81076752237382,0.0,0.0,0.0 +8600,catchment_outflow,0.03299764909085181,2011-10-14,0.0,0.0,4.211829159290304e-06,0.0,0.0,0.0,0.0,0.0,10.850280160070396,0.0,0.0,0.0 +8601,reservoir_outflow,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8602,gw1_gw2,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8603,gw2_gw1,0.0004204108774965576,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8604,urban_drainage,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8605,percolation,0.019546001365853403,2011-10-15,0.0,0.0,4.29537348836208e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8606,runoff,0.00030475182862046643,2011-10-15,0.0,0.0,6.903324641472929e-08,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 +8607,storm_outflow,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8608,baseflow,0.032584032535228166,2011-10-15,0.0,0.0,4.125962190989617e-06,0.0,0.0,0.0,0.0,0.0,10.81631478614211,0.0,0.0,0.0 +8609,catchment_outflow,0.032888784363848636,2011-10-15,0.0,0.0,4.194995437404346e-06,0.0,0.0,0.0,0.0,0.0,10.84797812682368,0.0,0.0,0.0 +8610,reservoir_outflow,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8611,gw1_gw2,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8612,gw2_gw1,0.00041760813831306367,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8613,urban_drainage,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8614,percolation,0.01915508133853634,2011-10-16,0.0,0.0,4.209466018594839e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 +8615,runoff,0.00024380146289637315,2011-10-16,0.0,0.0,5.5226597131783433e-08,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 +8616,storm_outflow,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8617,baseflow,0.032550460157236435,2011-10-16,0.0,0.0,4.12617095055863e-06,0.0,0.0,0.0,0.0,0.0,10.821748550582585,0.0,0.0,0.0 +8618,catchment_outflow,0.03279426162013281,2011-10-16,0.0,0.0,4.181397547690414e-06,0.0,0.0,0.0,0.0,0.0,10.847111837521233,0.0,0.0,0.0 +8619,reservoir_outflow,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8620,gw1_gw2,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8621,gw2_gw1,0.0004148240840576634,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8622,urban_drainage,0.033,2011-10-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +8623,percolation,0.01877197971176561,2011-10-17,0.0,0.0,4.1252766982229426e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 +8624,runoff,0.00019504117031709852,2011-10-17,0.0,0.0,4.418127770542674e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8625,storm_outflow,0.033,2011-10-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +8626,baseflow,0.03251601395612276,2011-10-17,0.0,0.0,4.126168714927792e-06,0.0,0.0,0.0,0.0,0.0,10.827071438443593,0.0,0.0,0.0 +8627,catchment_outflow,0.06571105512643986,2011-10-17,0.0,0.0,1.617034999263322e-05,0.0,0.0,0.0,0.0,0.0,11.15360302284331,0.0,0.0,0.0 +8628,reservoir_outflow,0.0165,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8629,gw1_gw2,0.0,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8630,gw2_gw1,0.0004120585901640439,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8631,urban_drainage,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8632,percolation,0.018396540117530297,2011-10-18,0.0,0.0,4.042771164258484e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +8633,runoff,0.00015603293625367885,2011-10-18,0.0,0.0,3.53450221643414e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8634,storm_outflow,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8635,baseflow,0.032480715271526274,2011-10-18,0.0,0.0,4.125960221051118e-06,0.0,0.0,0.0,0.0,0.0,10.832286000556522,0.0,0.0,0.0 +8636,catchment_outflow,0.03263674820777995,2011-10-18,0.0,0.0,4.16130524321546e-06,0.0,0.0,0.0,0.0,0.0,10.848546468005834,0.0,0.0,0.0 +8637,reservoir_outflow,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8638,gw1_gw2,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8639,gw2_gw1,0.0004093115328963393,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8640,urban_drainage,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8641,percolation,0.018028609315179692,2011-10-19,0.0,0.0,3.961915740973315e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +8642,runoff,0.00012482634900294306,2011-10-19,0.0,0.0,2.827601773147312e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8643,storm_outflow,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8644,baseflow,0.032444585006635406,2011-10-19,0.0,0.0,4.125550109850924e-06,0.0,0.0,0.0,0.0,0.0,10.837394718230643,0.0,0.0,0.0 +8645,catchment_outflow,0.03256941135563835,2011-10-19,0.0,0.0,4.153826127582397e-06,0.0,0.0,0.0,0.0,0.0,10.850410407040702,0.0,0.0,0.0 +8646,reservoir_outflow,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8647,gw1_gw2,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8648,gw2_gw1,0.0004065827893438012,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8649,urban_drainage,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8650,percolation,0.0176680371288761,2011-10-20,0.0,0.0,3.882677426153848e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8651,runoff,9.986107920235444e-05,2011-10-20,0.0,0.0,2.2620814185178493e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8652,storm_outflow,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8653,baseflow,0.032407643636941014,2011-10-20,0.0,0.0,4.1249429281416815e-06,0.0,0.0,0.0,0.0,0.0,10.842400005552337,0.0,0.0,0.0 +8654,catchment_outflow,0.032507504716143366,2011-10-20,0.0,0.0,4.14756374232686e-06,0.0,0.0,0.0,0.0,0.0,10.852817010115093,0.0,0.0,0.0 +8655,reservoir_outflow,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8656,gw1_gw2,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8657,gw2_gw1,0.000403872237414582,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8658,urban_drainage,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8659,percolation,0.017314676386298574,2011-10-21,0.0,0.0,3.8050238776307703e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240508,0.0,0.0,0.0 +8660,runoff,7.988886336188355e-05,2011-10-21,0.0,0.0,1.8096651348142795e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8661,storm_outflow,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8662,baseflow,0.032369911218814405,2011-10-21,0.0,0.0,4.124143130515404e-06,0.0,0.0,0.0,0.0,0.0,10.847304211593153,0.0,0.0,0.0 +8663,catchment_outflow,0.03244980008217629,2011-10-21,0.0,0.0,4.142239781863547e-06,0.0,0.0,0.0,0.0,0.0,10.85564056090286,0.0,0.0,0.0 +8664,reservoir_outflow,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8665,gw1_gw2,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8666,gw2_gw1,0.00040117975583200407,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8667,urban_drainage,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8668,percolation,0.016968382858572603,2011-10-22,0.0,0.0,3.7289234000781546e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8669,runoff,6.391109068950684e-05,2011-10-22,0.0,0.0,1.4477321078514236e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8670,storm_outflow,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8671,baseflow,0.0323314073979138,2011-10-22,0.0,0.0,4.123155081189311e-06,0.0,0.0,0.0,0.0,0.0,10.852109622530907,0.0,0.0,0.0 +8672,catchment_outflow,0.0323953184886033,2011-10-22,0.0,0.0,4.137632402267825e-06,0.0,0.0,0.0,0.0,0.0,10.85878043750789,0.0,0.0,0.0 +8673,reservoir_outflow,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8674,gw1_gw2,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8675,gw2_gw1,0.00039850522412621103,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8676,urban_drainage,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8677,percolation,0.016629015201401153,2011-10-23,0.0,0.0,3.6543449320765924e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +8678,runoff,5.1128872551605475e-05,2011-10-23,0.0,0.0,1.1581856862811389e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825027,0.0,0.0,0.0 +8679,storm_outflow,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8680,baseflow,0.03229215141742252,2011-10-23,0.0,0.0,4.1219830558165285e-06,0.0,0.0,0.0,0.0,0.0,10.85681846368781,0.0,0.0,0.0 +8681,catchment_outflow,0.03234328028997412,2011-10-23,0.0,0.0,4.13356491267934e-06,0.0,0.0,0.0,0.0,0.0,10.862156258163791,0.0,0.0,0.0 +8682,reservoir_outflow,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8683,gw1_gw2,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8684,gw2_gw1,0.00039584852263185866,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8685,urban_drainage,0.002999999999999999,2011-10-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0 +8686,percolation,0.01629643489737313,2011-10-24,0.0,0.0,3.5812580334350603e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +8687,runoff,4.090309804128438e-05,2011-10-24,0.0,0.0,9.26548549024911e-09,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8688,storm_outflow,0.002999999999999999,2011-10-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0 +8689,baseflow,0.03225216212612239,2011-10-24,0.0,0.0,4.120631243260574e-06,0.0,0.0,0.0,0.0,0.0,10.86143290148941,0.0,0.0,0.0 +8690,catchment_outflow,0.03529306522416367,2011-10-24,0.0,0.0,1.1129896728750823e-05,0.0,0.0,0.0,0.0,0.0,10.885316111453458,0.0,0.0,0.0 +8691,reservoir_outflow,0.0014999999999999996,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8692,gw1_gw2,0.0,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8693,gw2_gw1,0.00039320953248065397,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8694,urban_drainage,0.02700000000000001,2011-10-25,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 +8695,percolation,0.015970506199425666,2011-10-25,0.0,0.0,3.509632872766358e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8696,runoff,3.2722478433027505e-05,2011-10-25,0.0,0.0,7.412388392199288e-09,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8697,storm_outflow,0.02700000000000001,2011-10-25,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 +8698,baseflow,0.032211457986305654,2011-10-25,0.0,0.0,4.119103747334339e-06,0.0,0.0,0.0,0.0,0.0,10.865955045347949,0.0,0.0,0.0 +8699,catchment_outflow,0.05924418046473869,2011-10-25,0.0,0.0,5.126516135726539e-06,0.0,0.0,0.0,0.0,0.0,10.985872402450598,0.0,0.0,0.0 +8700,reservoir_outflow,0.013500000000000002,2011-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8701,gw1_gw2,0.0,2011-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8702,gw2_gw1,0.0003905881355974472,2011-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8703,urban_drainage,0.04,2011-10-26,0.0,0.0,6.153846153846153e-07,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0 +8704,percolation,0.015651096075437153,2011-10-26,0.0,0.0,3.4394402153110313e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +8705,runoff,2.6177982746422004e-05,2011-10-26,0.0,0.0,5.929910713759431e-09,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +8706,storm_outflow,0.04,2011-10-26,0.0,0.0,6.153846153846153e-07,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0 +8707,baseflow,0.03217005708152848,2011-10-26,0.0,0.0,4.11740458850428e-06,0.0,0.0,0.0,0.0,0.0,10.870386949473511,0.0,0.0,0.0 +8708,catchment_outflow,0.0721962350642749,2011-10-26,0.0,0.0,4.738719114602654e-06,0.0,0.0,0.0,0.0,0.0,11.11161028477342,0.0,0.0,0.0 +8709,reservoir_outflow,0.0325,2011-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8710,gw1_gw2,0.0,2011-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8711,gw2_gw1,0.0003879842146936596,2011-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8712,urban_drainage,0.04,2011-10-27,0.0,0.0,9.079445145018915e-07,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +8713,percolation,0.01934427868395165,2011-10-27,0.0,0.0,4.330720848158253e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +8714,runoff,0.02743181548635615,2011-10-27,0.0,0.0,3.2049753857491487e-06,0.0,0.0,0.0,0.0,0.0,11.303444270576048,0.0,0.0,0.0 +8715,storm_outflow,0.04,2011-10-27,0.0,0.0,9.079445145018915e-07,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +8716,baseflow,0.03213799263553454,2011-10-27,0.0,0.0,4.117937879153416e-06,0.0,0.0,0.0,0.0,0.0,10.87480416651732,0.0,0.0,0.0 +8717,catchment_outflow,0.0995698081218907,2011-10-27,0.0,0.0,8.230857779404456e-06,0.0,0.0,0.0,0.0,0.0,11.207480548212715,0.0,0.0,0.0 +8718,reservoir_outflow,0.018,2011-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8719,gw1_gw2,0.0,2011-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8720,gw2_gw1,0.00038539765326230937,2011-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8721,urban_drainage,0.0009999999999999974,2011-10-28,0.0,0.0,1.4766708701134929e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +8722,percolation,0.018957393110272617,2011-10-28,0.0,0.0,4.2441064311950885e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +8723,runoff,0.010699965989019684,2011-10-28,0.0,0.0,2.5639803085993187e-06,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 +8724,storm_outflow,0.0009999999999999974,2011-10-28,0.0,0.0,1.4766708701134929e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +8725,baseflow,0.032105041136721385,2011-10-28,0.0,0.0,4.11825330053352e-06,0.0,0.0,0.0,0.0,0.0,10.879130961526103,0.0,0.0,0.0 +8726,catchment_outflow,0.04380500712574106,2011-10-28,0.0,0.0,8.15890447924633e-06,0.0,0.0,0.0,0.0,0.0,10.948995401813463,0.0,0.0,0.0 +8727,reservoir_outflow,0.0,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8728,gw1_gw2,0.0,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8729,gw2_gw1,0.0003828283355741036,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8730,urban_drainage,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8731,percolation,0.018578245248067164,2011-10-29,0.0,0.0,4.159224302571187e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +8732,runoff,0.010010264123959039,2011-10-29,0.0,0.0,2.051184246879455e-06,0.0,0.0,0.0,0.0,0.0,11.220477843311329,0.0,0.0,0.0 +8733,storm_outflow,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8734,baseflow,0.03207122414699974,2011-10-29,0.0,0.0,4.1183557280386134e-06,0.0,0.0,0.0,0.0,0.0,10.88336942563468,0.0,0.0,0.0 +8735,catchment_outflow,0.04208148827095878,2011-10-29,0.0,0.0,6.169539974918069e-06,0.0,0.0,0.0,0.0,0.0,10.963560132712926,0.0,0.0,0.0 +8736,reservoir_outflow,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8737,gw1_gw2,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8738,gw2_gw1,0.0003802761466703331,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8739,urban_drainage,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8740,percolation,0.01820668034310582,2011-10-30,0.0,0.0,4.076039816519763e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +8741,runoff,0.0073785191788271025,2011-10-30,0.0,0.0,1.6409473975035642e-06,0.0,0.0,0.0,0.0,0.0,11.180507901492943,0.0,0.0,0.0 +8742,storm_outflow,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8743,baseflow,0.03203656278749001,2011-10-30,0.0,0.0,4.1182499382598175e-06,0.0,0.0,0.0,0.0,0.0,10.887521592575787,0.0,0.0,0.0 +8744,catchment_outflow,0.039415081966317114,2011-10-30,0.0,0.0,5.759197335763382e-06,0.0,0.0,0.0,0.0,0.0,10.94236874731027,0.0,0.0,0.0 +8745,reservoir_outflow,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8746,gw1_gw2,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8747,gw2_gw1,0.00037774097235967476,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8748,urban_drainage,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8749,percolation,0.01891404448483464,2011-10-31,0.0,0.0,4.25686356997438e-06,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 +8750,runoff,0.012809682971473932,2011-10-31,0.0,0.0,2.187239750619562e-06,0.0,0.0,0.0,0.0,0.0,11.59852664514566,0.0,0.0,0.0 +8751,storm_outflow,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8752,baseflow,0.03200375649173337,2011-10-31,0.0,0.0,4.118596472339104e-06,0.0,0.0,0.0,0.0,0.0,10.891657928813547,0.0,0.0,0.0 +8753,catchment_outflow,0.0448134394632073,2011-10-31,0.0,0.0,6.305836222958666e-06,0.0,0.0,0.0,0.0,0.0,11.093712586236155,0.0,0.0,0.0 +8754,reservoir_outflow,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8755,gw1_gw2,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8756,gw2_gw1,0.0003752226992105534,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8757,urban_drainage,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8758,percolation,0.018535763595137943,2011-11-01,0.0,0.0,4.171726298574892e-06,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 +8759,runoff,0.007458103379252294,2011-11-01,0.0,0.0,1.7497918004956492e-06,0.0,0.0,0.0,0.0,0.0,11.380107595823091,0.0,0.0,0.0 +8760,storm_outflow,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8761,baseflow,0.03197008650949188,2011-11-01,0.0,0.0,4.1187292969046935e-06,0.0,0.0,0.0,0.0,0.0,10.89570981201229,0.0,0.0,0.0 +8762,catchment_outflow,0.03942818988874418,2011-11-01,0.0,0.0,5.868521097400343e-06,0.0,0.0,0.0,0.0,0.0,10.98733686257017,0.0,0.0,0.0 +8763,reservoir_outflow,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8764,gw1_gw2,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8765,gw2_gw1,0.00037272121454900997,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8766,urban_drainage,0.04,2011-11-02,0.0,0.0,4.444444444444444e-06,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 +8767,percolation,0.021116522034257512,2011-11-02,0.0,0.0,4.794031687089354e-06,0.0,0.0,0.0,0.0,0.0,13.452102943441123,0.0,0.0,0.0 +8768,runoff,0.02598632053120066,2011-11-02,0.0,0.0,3.7522998220163795e-06,0.0,0.0,0.0,0.0,0.0,11.769109804342849,0.0,0.0,0.0 +8769,storm_outflow,0.04,2011-11-02,0.0,0.0,4.444444444444444e-06,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 +8770,baseflow,0.03194295259830379,2011-11-02,0.0,0.0,4.120417552880155e-06,0.0,0.0,0.0,0.0,0.0,10.89993469790237,0.0,0.0,0.0 +8771,catchment_outflow,0.09792927312950445,2011-11-02,0.0,0.0,1.2317161819340978e-05,0.0,0.0,0.0,0.0,0.0,11.489463552275273,0.0,0.0,0.0 +8772,reservoir_outflow,0.0225,2011-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8773,gw1_gw2,0.0,2011-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8774,gw2_gw1,0.00037023640645195144,2011-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8775,urban_drainage,0.025000000000000005,2011-11-03,0.0,0.0,1.5555555555555558e-06,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0 +8776,percolation,0.024539817349521435,2011-11-03,0.0,0.0,5.603470986063156e-06,0.0,0.0,0.0,0.0,0.0,13.158313255682367,0.0,0.0,0.0 +8777,runoff,0.038816394162795,2011-11-03,0.0,0.0,6.019572966665066e-06,0.0,0.0,0.0,0.0,0.0,11.499725514704641,0.0,0.0,0.0 +8778,storm_outflow,0.025000000000000005,2011-11-03,0.0,0.0,1.5555555555555558e-06,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0 +8779,baseflow,0.03192444476018184,2011-11-03,0.0,0.0,4.124125186463112e-06,0.0,0.0,0.0,0.0,0.0,10.904274647878816,0.0,0.0,0.0 +8780,catchment_outflow,0.09574083892297683,2011-11-03,0.0,0.0,1.1699253708683734e-05,0.0,0.0,0.0,0.0,0.0,11.249394912919538,0.0,0.0,0.0 +8781,reservoir_outflow,0.01,2011-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8782,gw1_gw2,0.0,2011-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8783,gw2_gw1,0.000367768163742177,2011-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8784,urban_drainage,0.020999999999999998,2011-11-04,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +8785,percolation,0.02811512443929793,2011-11-04,0.0,0.0,6.4333373269682704e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +8786,runoff,0.04807908409141585,2011-11-04,0.0,0.0,7.95544424208665e-06,0.0,0.0,0.0,0.0,0.0,11.179928944945438,0.0,0.0,0.0 +8787,storm_outflow,0.020999999999999998,2011-11-04,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +8788,baseflow,0.03191492145937963,2011-11-04,0.0,0.0,4.129898216814376e-06,0.0,0.0,0.0,0.0,0.0,10.90857510729382,0.0,0.0,0.0 +8789,catchment_outflow,0.10099400555079548,2011-11-04,0.0,0.0,1.3085342458901024e-05,0.0,0.0,0.0,0.0,0.0,10.97062202563947,0.0,0.0,0.0 +8790,reservoir_outflow,0.010500000000000002,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8791,gw1_gw2,0.0,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8792,gw2_gw1,0.0003653163759839373,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8793,urban_drainage,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8794,percolation,0.027552821950511976,2011-11-05,0.0,0.0,6.304670580428906e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +8795,runoff,0.027049643590979895,2011-11-05,0.0,0.0,6.36435539366932e-06,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +8796,storm_outflow,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8797,baseflow,0.031904016210607455,2011-11-05,0.0,0.0,4.135335147723412e-06,0.0,0.0,0.0,0.0,0.0,10.912781713214917,0.0,0.0,0.0 +8798,catchment_outflow,0.05895365980158735,2011-11-05,0.0,0.0,1.0499690541392733e-05,0.0,0.0,0.0,0.0,0.0,11.150398511048014,0.0,0.0,0.0 +8799,reservoir_outflow,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8800,gw1_gw2,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8801,gw2_gw1,0.0003628809334776051,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8802,urban_drainage,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8803,percolation,0.02700176551150174,2011-11-06,0.0,0.0,6.1785771688203275e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +8804,runoff,0.021639714872783915,2011-11-06,0.0,0.0,5.0914843149354555e-06,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +8805,storm_outflow,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8806,baseflow,0.031891760583859695,2011-11-06,0.0,0.0,4.140443252776154e-06,0.0,0.0,0.0,0.0,0.0,10.916896867228335,0.0,0.0,0.0 +8807,catchment_outflow,0.05353147545664361,2011-11-06,0.0,0.0,9.23192756771161e-06,0.0,0.0,0.0,0.0,0.0,11.124581281598203,0.0,0.0,0.0 +8808,reservoir_outflow,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8809,gw1_gw2,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8810,gw2_gw1,0.00036046172725399115,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8811,urban_drainage,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8812,percolation,0.026461730201271703,2011-11-07,0.0,0.0,6.055005625443921e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +8813,runoff,0.01924407442410011,2011-11-07,0.0,0.0,4.073187451948365e-06,0.0,0.0,0.0,0.0,0.0,11.16615469869939,0.0,0.0,0.0 +8814,storm_outflow,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8815,baseflow,0.03187818550790322,2011-11-07,0.0,0.0,4.1452296587078234e-06,0.0,0.0,0.0,0.0,0.0,10.920922895659611,0.0,0.0,0.0 +8816,catchment_outflow,0.05112225993200333,2011-11-07,0.0,0.0,8.218417110656188e-06,0.0,0.0,0.0,0.0,0.0,11.013236089073416,0.0,0.0,0.0 +8817,reservoir_outflow,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8818,gw1_gw2,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8819,gw2_gw1,0.00035805864907221266,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8820,urban_drainage,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8821,percolation,0.02593249559724627,2011-11-08,0.0,0.0,5.933905512935042e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +8822,runoff,0.01618988978767769,2011-11-08,0.0,0.0,3.2585499615586916e-06,0.0,0.0,0.0,0.0,0.0,10.963622091287462,0.0,0.0,0.0 +8823,storm_outflow,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8824,baseflow,0.03186332128312658,2011-11-08,0.0,0.0,4.149701348343391e-06,0.0,0.0,0.0,0.0,0.0,10.924862052473859,0.0,0.0,0.0 +8825,catchment_outflow,0.048053211070804264,2011-11-08,0.0,0.0,7.408251309902083e-06,0.0,0.0,0.0,0.0,0.0,10.937920924973218,0.0,0.0,0.0 +8826,reservoir_outflow,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8827,gw1_gw2,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8828,gw2_gw1,0.00035567159141205453,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8829,urban_drainage,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8830,percolation,0.02541384568530134,2011-11-09,0.0,0.0,5.8152274026763405e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +8831,runoff,0.013108353768113966,2011-11-09,0.0,0.0,2.606839969246954e-06,0.0,0.0,0.0,0.0,0.0,10.978729776720268,0.0,0.0,0.0 +8832,storm_outflow,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8833,baseflow,0.03184719759413202,2011-11-09,0.0,0.0,4.153865163479224e-06,0.0,0.0,0.0,0.0,0.0,10.928716522042256,0.0,0.0,0.0 +8834,catchment_outflow,0.044955551362245987,2011-11-09,0.0,0.0,6.760705132726178e-06,0.0,0.0,0.0,0.0,0.0,10.943299625030617,0.0,0.0,0.0 +8835,reservoir_outflow,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8836,gw1_gw2,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8837,gw2_gw1,0.00035330044746917366,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8838,urban_drainage,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8839,percolation,0.02490556877159532,2011-11-10,0.0,0.0,5.698922854622815e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900874,0.0,0.0,0.0 +8840,runoff,0.009347026463349265,2011-11-10,0.0,0.0,2.085471975397563e-06,0.0,0.0,0.0,0.0,0.0,11.295717118814876,0.0,0.0,0.0 +8841,storm_outflow,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8842,baseflow,0.03182984352207568,2011-11-10,0.0,0.0,4.157727807707083e-06,0.0,0.0,0.0,0.0,0.0,10.9324884217819,0.0,0.0,0.0 +8843,catchment_outflow,0.04117686998542494,2011-11-10,0.0,0.0,6.243199783104646e-06,0.0,0.0,0.0,0.0,0.0,11.014940250796997,0.0,0.0,0.0 +8844,reservoir_outflow,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8845,gw1_gw2,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8846,gw2_gw1,0.0003509451111529671,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8847,urban_drainage,0.037000000000000005,2011-11-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +8848,percolation,0.027553846312059153,2011-11-11,0.0,0.0,6.322644920598363e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8849,runoff,0.02861882593090575,2011-11-11,0.0,0.0,4.127379323878066e-06,0.0,0.0,0.0,0.0,0.0,9.638088566770623,0.0,0.0,0.0 +8850,storm_outflow,0.037000000000000005,2011-11-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +8851,baseflow,0.03181915352905064,2011-11-11,0.0,0.0,4.163140100489311e-06,0.0,0.0,0.0,0.0,0.0,10.935690956459299,0.0,0.0,0.0 +8852,catchment_outflow,0.0974379794599564,2011-11-11,0.0,0.0,1.5290519424367373e-05,0.0,0.0,0.0,0.0,0.0,9.869708911534943,0.0,0.0,0.0 +8853,reservoir_outflow,0.018500000000000003,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8854,gw1_gw2,0.0,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8855,gw2_gw1,0.00034860547707840086,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8856,urban_drainage,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8857,percolation,0.027002769385817967,2011-11-12,0.0,0.0,6.196192022186395e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279378,0.0,0.0,0.0 +8858,runoff,0.01406309185799971,2011-11-12,0.0,0.0,3.3019034591024525e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8859,storm_outflow,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8860,baseflow,0.03180711256869256,2011-11-12,0.0,0.0,4.168222730293553e-06,0.0,0.0,0.0,0.0,0.0,10.938823831543514,0.0,0.0,0.0 +8861,catchment_outflow,0.04587020442669226,2011-11-12,0.0,0.0,7.4701261893960056e-06,0.0,0.0,0.0,0.0,0.0,10.637454720218377,0.0,0.0,0.0 +8862,reservoir_outflow,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8863,gw1_gw2,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8864,gw2_gw1,0.00034628144056458865,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8865,urban_drainage,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8866,percolation,0.02646271399810161,2011-11-13,0.0,0.0,6.072268181742668e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 +8867,runoff,0.011250473486399768,2011-11-13,0.0,0.0,2.641522767281962e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8868,storm_outflow,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8869,baseflow,0.03179375157226608,2011-11-13,0.0,0.0,4.172982843922175e-06,0.0,0.0,0.0,0.0,0.0,10.941888820432704,0.0,0.0,0.0 +8870,catchment_outflow,0.04304422505866584,2011-11-13,0.0,0.0,6.814505611204137e-06,0.0,0.0,0.0,0.0,0.0,10.684163823487957,0.0,0.0,0.0 +8871,reservoir_outflow,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8872,gw1_gw2,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8873,gw2_gw1,0.0003439728976276868,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8874,urban_drainage,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8875,percolation,0.025933459718139578,2011-11-14,0.0,0.0,5.950822818107814e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8876,runoff,0.009224285756236267,2011-11-14,0.0,0.0,2.1132182138255694e-06,0.0,0.0,0.0,0.0,0.0,9.95846745774964,0.0,0.0,0.0 +8877,storm_outflow,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8878,baseflow,0.03177910084263076,2011-11-14,0.0,0.0,4.17742744385764e-06,0.0,0.0,0.0,0.0,0.0,10.94488764130764,0.0,0.0,0.0 +8879,catchment_outflow,0.04100338659886703,2011-11-14,0.0,0.0,6.2906456576832095e-06,0.0,0.0,0.0,0.0,0.0,10.722978613697968,0.0,0.0,0.0 +8880,reservoir_outflow,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8881,gw1_gw2,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8882,gw2_gw1,0.00034167974497680833,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8883,urban_drainage,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8884,percolation,0.02541479052377679,2011-11-15,0.0,0.0,5.831806361745658e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8885,runoff,0.007200303031295851,2011-11-15,0.0,0.0,1.6905745710604556e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8886,storm_outflow,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8887,baseflow,0.03176319006683363,2011-11-15,0.0,0.0,4.18156339115236e-06,0.0,0.0,0.0,0.0,0.0,10.947821959245061,0.0,0.0,0.0 +8888,catchment_outflow,0.038963493098129486,2011-11-15,0.0,0.0,5.872137962212816e-06,0.0,0.0,0.0,0.0,0.0,10.764506593928697,0.0,0.0,0.0 +8889,reservoir_outflow,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8890,gw1_gw2,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8891,gw2_gw1,0.00033940188001047034,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8892,urban_drainage,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8893,percolation,0.024906494713301253,2011-11-16,0.0,0.0,5.715170234510745e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8894,runoff,0.006389181032099554,2011-11-16,0.0,0.0,1.3524596568483646e-06,0.0,0.0,0.0,0.0,0.0,9.983737306183073,0.0,0.0,0.0 +8895,storm_outflow,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8896,baseflow,0.0317460483284498,2011-11-16,0.0,0.0,4.185397408260756e-06,0.0,0.0,0.0,0.0,0.0,10.950693388234175,0.0,0.0,0.0 +8897,catchment_outflow,0.038135229360549354,2011-11-16,0.0,0.0,5.537857065109121e-06,0.0,0.0,0.0,0.0,0.0,10.788689446946611,0.0,0.0,0.0 +8898,reservoir_outflow,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8899,gw1_gw2,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8900,gw2_gw1,0.00033713920081037687,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8901,urban_drainage,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8902,percolation,0.02440836481903523,2011-11-17,0.0,0.0,5.600866829820531e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8903,runoff,0.004608193940029344,2011-11-17,0.0,0.0,1.0819677254786917e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8904,storm_outflow,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8905,baseflow,0.031727704119676264,2011-11-17,0.0,0.0,4.188936081814656e-06,0.0,0.0,0.0,0.0,0.0,10.95350349310148,0.0,0.0,0.0 +8906,catchment_outflow,0.03633589805970561,2011-11-17,0.0,0.0,5.2709038072933476e-06,0.0,0.0,0.0,0.0,0.0,10.826977101378468,0.0,0.0,0.0 +8907,reservoir_outflow,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8908,gw1_gw2,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8909,gw2_gw1,0.00033489160613822124,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8910,urban_drainage,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8911,percolation,0.023920197522654525,2011-11-18,0.0,0.0,5.48884949322412e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8912,runoff,0.0036865551520234756,2011-11-18,0.0,0.0,8.655741803829534e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8913,storm_outflow,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8914,baseflow,0.031708185353183704,2011-11-18,0.0,0.0,4.192185865343179e-06,0.0,0.0,0.0,0.0,0.0,10.956253791348747,0.0,0.0,0.0 +8915,catchment_outflow,0.03539474050520718,2011-11-18,0.0,0.0,5.0577600457261324e-06,0.0,0.0,0.0,0.0,0.0,10.85205471739768,0.0,0.0,0.0 +8916,reservoir_outflow,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8917,gw1_gw2,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8918,gw2_gw1,0.0003326589954303572,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8919,urban_drainage,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8920,percolation,0.023441793572201435,2011-11-19,0.0,0.0,5.379072503359638e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8921,runoff,0.0029492441216187803,2011-11-19,0.0,0.0,6.924593443063626e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8922,storm_outflow,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8923,baseflow,0.03168751937373125,2011-11-19,0.0,0.0,4.195153081938221e-06,0.0,0.0,0.0,0.0,0.0,10.9589457549087,0.0,0.0,0.0 +8924,catchment_outflow,0.03463676349535003,2011-11-19,0.0,0.0,4.887612426244584e-06,0.0,0.0,0.0,0.0,0.0,10.873533080459291,0.0,0.0,0.0 +8925,reservoir_outflow,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8926,gw1_gw2,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8927,gw2_gw1,0.000330441268794246,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8928,urban_drainage,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8929,percolation,0.022972957700757406,2011-11-20,0.0,0.0,5.271491053292446e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279378,0.0,0.0,0.0 +8930,runoff,0.0023593952972950243,2011-11-20,0.0,0.0,5.539674754450902e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8931,storm_outflow,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8932,baseflow,0.03166573296954882,2011-11-20,0.0,0.0,4.197843926866606e-06,0.0,0.0,0.0,0.0,0.0,10.961580811822685,0.0,0.0,0.0 +8933,catchment_outflow,0.03402512826684384,2011-11-20,0.0,0.0,4.751811402311697e-06,0.0,0.0,0.0,0.0,0.0,10.891839648591542,0.0,0.0,0.0 +8934,reservoir_outflow,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8935,gw1_gw2,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8936,gw2_gw1,0.0003282383270022393,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8937,urban_drainage,0.017,2011-11-21,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +8938,percolation,0.02251349854674226,2011-11-21,0.0,0.0,5.166061232226597e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8939,runoff,0.0018875162378360192,2011-11-21,0.0,0.0,4.431739803560721e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8940,storm_outflow,0.017,2011-11-21,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +8941,baseflow,0.0316428523834918,2011-11-21,0.0,0.0,4.200264470130006e-06,0.0,0.0,0.0,0.0,0.0,10.964160347844329,0.0,0.0,0.0 +8942,catchment_outflow,0.05053036862132782,2011-11-21,0.0,0.0,1.464343845048608e-05,0.0,0.0,0.0,0.0,0.0,10.45433201510302,0.0,0.0,0.0 +8943,reservoir_outflow,0.0085,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8944,gw1_gw2,0.0,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8945,gw2_gw1,0.00032605007148891476,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8946,urban_drainage,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8947,percolation,0.022063228575807413,2011-11-22,0.0,0.0,5.062740007582065e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 +8948,runoff,0.0015100129902688158,2011-11-22,0.0,0.0,3.545391842848577e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8949,storm_outflow,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8950,baseflow,0.03161890332397259,2011-11-22,0.0,0.0,4.2024206589736355e-06,0.0,0.0,0.0,0.0,0.0,10.96668570797303,0.0,0.0,0.0 +8951,catchment_outflow,0.033128916314241405,2011-11-22,0.0,0.0,4.556959843258493e-06,0.0,0.0,0.0,0.0,0.0,10.920611223053257,0.0,0.0,0.0 +8952,reservoir_outflow,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8953,gw1_gw2,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8954,gw2_gw1,0.0003238764043457465,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8955,urban_drainage,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8956,percolation,0.021621964004291266,2011-11-23,0.0,0.0,4.961485207430423e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8957,runoff,0.0012080103922150526,2011-11-23,0.0,0.0,2.8363134742788613e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8958,storm_outflow,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8959,baseflow,0.03159391097567339,2011-11-23,0.0,0.0,4.204318320344778e-06,0.0,0.0,0.0,0.0,0.0,10.96915819792079,0.0,0.0,0.0 +8960,catchment_outflow,0.03280192136788845,2011-11-23,0.0,0.0,4.487949667772664e-06,0.0,0.0,0.0,0.0,0.0,10.931840109631821,0.0,0.0,0.0 +8961,reservoir_outflow,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8962,gw1_gw2,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8963,gw2_gw1,0.00032171722831666474,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8964,urban_drainage,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8965,percolation,0.021189524724205443,2011-11-24,0.0,0.0,4.862255503281815e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8966,runoff,0.0009664083137720421,2011-11-24,0.0,0.0,2.2690507794230895e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8967,storm_outflow,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8968,baseflow,0.03156790001004472,2011-11-24,0.0,0.0,4.20596316330212e-06,0.0,0.0,0.0,0.0,0.0,10.971579085515792,0.0,0.0,0.0 +8969,catchment_outflow,0.03253430832381676,2011-11-24,0.0,0.0,4.432868241244429e-06,0.0,0.0,0.0,0.0,0.0,10.941407134286584,0.0,0.0,0.0 +8970,reservoir_outflow,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8971,gw1_gw2,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8972,gw2_gw1,0.00031957244679468036,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8973,urban_drainage,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8974,percolation,0.02076573422972133,2011-11-25,0.0,0.0,4.765010393216178e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279378,0.0,0.0,0.0 +8975,runoff,0.0007731266510176336,2011-11-25,0.0,0.0,1.8152406235384716e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8976,storm_outflow,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8977,baseflow,0.031540894595593914,2011-11-25,0.0,0.0,4.207360781376906e-06,0.0,0.0,0.0,0.0,0.0,10.97394960204589,0.0,0.0,0.0 +8978,catchment_outflow,0.03231402124661155,2011-11-25,0.0,0.0,4.388884843730753e-06,0.0,0.0,0.0,0.0,0.0,10.949590777908321,0.0,0.0,0.0 +8979,reservoir_outflow,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8980,gw1_gw2,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8981,gw2_gw1,0.0003174419638160231,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8982,urban_drainage,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8983,percolation,0.020350419545126903,2011-11-26,0.0,0.0,4.6697101853518545e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8984,runoff,0.0006185013208141068,2011-11-26,0.0,0.0,1.452192498830777e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8985,storm_outflow,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8986,baseflow,0.031512918407967744,2011-11-26,0.0,0.0,4.208516654886843e-06,0.0,0.0,0.0,0.0,0.0,10.97627094354498,0.0,0.0,0.0 +8987,catchment_outflow,0.03213141972878185,2011-11-26,0.0,0.0,4.35373590476992e-06,0.0,0.0,0.0,0.0,0.0,10.956628456325626,0.0,0.0,0.0 +8988,reservoir_outflow,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8989,gw1_gw2,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8990,gw2_gw1,0.0003153256840571217,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8991,urban_drainage,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8992,percolation,0.019943411154224364,2011-11-27,0.0,0.0,4.576315981644817e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8993,runoff,0.0004948010566512855,2011-11-27,0.0,0.0,1.1617539990646217e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8994,storm_outflow,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8995,baseflow,0.03148399463983339,2011-11-27,0.0,0.0,4.209436153203738e-06,0.0,0.0,0.0,0.0,0.0,10.978544272025106,0.0,0.0,0.0 +8996,catchment_outflow,0.03197879569648467,2011-11-27,0.0,0.0,4.3256115531102e-06,0.0,0.0,0.0,0.0,0.0,10.962720109938866,0.0,0.0,0.0 +8997,reservoir_outflow,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8998,gw1_gw2,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8999,gw2_gw1,0.00031322351282980776,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9000,urban_drainage,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9001,percolation,0.019544542931139875,2011-11-28,0.0,0.0,4.48478966201192e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9002,runoff,0.0003958408453210283,2011-11-28,0.0,0.0,9.294031992516973e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9003,storm_outflow,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9004,baseflow,0.03145414601056165,2011-11-28,0.0,0.0,4.210124536975758e-06,0.0,0.0,0.0,0.0,0.0,10.980770716656934,0.0,0.0,0.0 +9005,catchment_outflow,0.03184998685588268,2011-11-28,0.0,0.0,4.303064856900928e-06,0.0,0.0,0.0,0.0,0.0,10.968032518782627,0.0,0.0,0.0 +9006,reservoir_outflow,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9007,gw1_gw2,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9008,gw2_gw1,0.000311135356077763,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9009,urban_drainage,0.018,2011-11-29,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0 +9010,percolation,0.01915365207251708,2011-11-29,0.0,0.0,4.3950938687716824e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9011,runoff,0.00031667267625682267,2011-11-29,0.0,0.0,7.435225594013579e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9012,storm_outflow,0.018,2011-11-29,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0 +9013,baseflow,0.03142339477571655,2011-11-29,0.0,0.0,4.210586960305248e-06,0.0,0.0,0.0,0.0,0.0,10.982951374901143,0.0,0.0,0.0 +9014,catchment_outflow,0.04974006745197337,2011-11-29,0.0,0.0,1.2284939216245382e-05,0.0,0.0,0.0,0.0,0.0,10.141207754601064,0.0,0.0,0.0 +9015,reservoir_outflow,0.009,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9016,gw1_gw2,0.0,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9017,gw2_gw1,0.000309061120370302,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9018,urban_drainage,0.002000000000000001,2011-11-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +9019,percolation,0.01877057903106674,2011-11-30,0.0,0.0,4.307191991396249e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9020,runoff,0.00025333814100545816,2011-11-30,0.0,0.0,5.948180475210864e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9021,storm_outflow,0.002000000000000001,2011-11-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +9022,baseflow,0.03139176273635492,2011-11-30,0.0,0.0,4.210828472882976e-06,0.0,0.0,0.0,0.0,0.0,10.985087313593068,0.0,0.0,0.0 +9023,catchment_outflow,0.033645100877360376,2011-11-30,0.0,0.0,5.270310277635085e-06,0.0,0.0,0.0,0.0,0.0,10.810294450715972,0.0,0.0,0.0 +9024,reservoir_outflow,0.0010000000000000005,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9025,gw1_gw2,0.0,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9026,gw2_gw1,0.00030700071290112874,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9027,urban_drainage,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9028,percolation,0.018395167450445404,2011-12-01,0.0,0.0,4.221048151568324e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9029,runoff,0.00020267051280436653,2011-12-01,0.0,0.0,4.758544380168691e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9030,storm_outflow,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9031,baseflow,0.03135927124814014,2011-12-01,0.0,0.0,4.210854022079689e-06,0.0,0.0,0.0,0.0,0.0,10.987179569982883,0.0,0.0,0.0 +9032,catchment_outflow,0.031561941760944505,2011-12-01,0.0,0.0,4.258439465881376e-06,0.0,0.0,0.0,0.0,0.0,10.980556937515473,0.0,0.0,0.0 +9033,reservoir_outflow,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9034,gw1_gw2,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9035,gw2_gw1,0.0003049540414817642,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9036,urban_drainage,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9037,percolation,0.018027264101436496,2011-12-02,0.0,0.0,4.136627188536958e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9038,runoff,0.00016213641024349318,2011-12-02,0.0,0.0,3.806835504134951e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9039,storm_outflow,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9040,baseflow,0.03132594123027338,2011-12-02,0.0,0.0,4.2106684549958315e-06,0.0,0.0,0.0,0.0,0.0,10.989229152733412,0.0,0.0,0.0 +9041,catchment_outflow,0.03148807764051687,2011-12-02,0.0,0.0,4.248736810037181e-06,0.0,0.0,0.0,0.0,0.0,10.983908064984107,0.0,0.0,0.0 +9042,reservoir_outflow,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9043,gw1_gw2,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9044,gw2_gw1,0.0003029210145385264,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9045,urban_drainage,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9046,percolation,0.017666718819407765,2011-12-03,0.0,0.0,4.053894644766218e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9047,runoff,0.00012970912819479456,2011-12-03,0.0,0.0,3.0454684033079617e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9048,storm_outflow,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9049,baseflow,0.03129179317424622,2011-12-03,0.0,0.0,4.210276520470258e-06,0.0,0.0,0.0,0.0,0.0,10.991237042877597,0.0,0.0,0.0 +9050,catchment_outflow,0.031421502302441014,2011-12-03,0.0,0.0,4.2407312045033375e-06,0.0,0.0,0.0,0.0,0.0,10.986962864649797,0.0,0.0,0.0 +9051,reservoir_outflow,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9052,gw1_gw2,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9053,gw2_gw1,0.0003009015411082672,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9054,urban_drainage,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9055,percolation,0.01731338444301961,2011-12-04,0.0,0.0,3.9728167518708945e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9056,runoff,0.00010376730255583565,2011-12-04,0.0,0.0,2.43637472264637e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9057,storm_outflow,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9058,baseflow,0.03125684715241815,2011-12-04,0.0,0.0,4.209682871048759e-06,0.0,0.0,0.0,0.0,0.0,10.993204194737526,0.0,0.0,0.0 +9059,catchment_outflow,0.031360614454973984,2011-12-04,0.0,0.0,4.234046618275223e-06,0.0,0.0,0.0,0.0,0.0,10.989771704375535,0.0,0.0,0.0 +9060,reservoir_outflow,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9061,gw1_gw2,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9062,gw2_gw1,0.00029889553083428666,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9063,urban_drainage,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9064,percolation,0.01696711675415922,2011-12-05,0.0,0.0,3.8933604168334764e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9065,runoff,8.301384204466852e-05,2011-12-05,0.0,0.0,1.949099778117096e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9066,storm_outflow,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9067,baseflow,0.031221122826422507,2011-12-05,0.0,0.0,4.2088920649132214e-06,0.0,0.0,0.0,0.0,0.0,10.995131536806785,0.0,0.0,0.0 +9068,catchment_outflow,0.031304136668467174,2011-12-05,0.0,0.0,4.228383062694392e-06,0.0,0.0,0.0,0.0,0.0,10.992375479277579,0.0,0.0,0.0 +9069,reservoir_outflow,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9070,gw1_gw2,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9071,gw2_gw1,0.0002969028939622476,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9072,urban_drainage,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9073,percolation,0.016627774419076032,2011-12-06,0.0,0.0,3.815493208496806e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9074,runoff,6.641107363573481e-05,2011-12-06,0.0,0.0,1.5592798224936767e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9075,storm_outflow,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9076,baseflow,0.031184639455404138,2011-12-06,0.0,0.0,4.20790856777218e-06,0.0,0.0,0.0,0.0,0.0,10.997019972597899,0.0,0.0,0.0 +9077,catchment_outflow,0.03125105052903987,2011-12-06,0.0,0.0,4.223501365997117e-06,0.0,0.0,0.0,0.0,0.0,10.994807368121373,0.0,0.0,0.0 +9078,reservoir_outflow,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9079,gw1_gw2,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9080,gw2_gw1,0.00029492354133555667,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9081,urban_drainage,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9082,percolation,0.01629521893069451,2011-12-07,0.0,0.0,3.73918334432687e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9083,runoff,5.3128858908587845e-05,2011-12-07,0.0,0.0,1.2474238579949413e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9084,storm_outflow,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9085,baseflow,0.031147415904092368,2011-12-07,0.0,0.0,4.206736754713567e-06,0.0,0.0,0.0,0.0,0.0,10.998870381456397,0.0,0.0,0.0 +9086,catchment_outflow,0.031200544763000954,2011-12-07,0.0,0.0,4.219210993293516e-06,0.0,0.0,0.0,0.0,0.0,10.997094281648863,0.0,0.0,0.0 +9087,reservoir_outflow,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9088,gw1_gw2,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9089,gw2_gw1,0.0002929573843934108,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9090,urban_drainage,0.034999999999999996,2011-12-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 +9091,percolation,0.015969314552080623,2011-12-08,0.0,0.0,3.6643996774403335e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9092,runoff,4.2503087126870276e-05,2011-12-08,0.0,0.0,9.97939086395953e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9093,storm_outflow,0.034999999999999996,2011-12-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 +9094,baseflow,0.03110947065071234,2011-12-08,0.0,0.0,4.205380912020384e-06,0.0,0.0,0.0,0.0,0.0,11.000683619343109,0.0,0.0,0.0 +9095,catchment_outflow,0.06615197373783921,2011-12-08,0.0,0.0,1.2215360302884342e-05,0.0,0.0,0.0,0.0,0.0,7.9630820995941205,0.0,0.0,0.0 +9096,reservoir_outflow,0.017499999999999998,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9097,gw1_gw2,0.0,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9098,gw2_gw1,0.0002910043351640468,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9099,urban_drainage,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9100,percolation,0.01564992826103901,2011-12-09,0.0,0.0,3.5911116838915267e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9101,runoff,3.400246970149622e-05,2011-12-09,0.0,0.0,7.983512691167624e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9102,storm_outflow,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9103,baseflow,0.031070821794738152,2011-12-09,0.0,0.0,4.20384523895006e-06,0.0,0.0,0.0,0.0,0.0,11.00246051958606,0.0,0.0,0.0 +9104,catchment_outflow,0.031104824264439647,2011-12-09,0.0,0.0,4.211828751641228e-06,0.0,0.0,0.0,0.0,0.0,11.001316393084927,0.0,0.0,0.0 +9105,reservoir_outflow,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9106,gw1_gw2,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9107,gw2_gw1,0.000289064306262965,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9108,urban_drainage,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9109,percolation,0.015336929695818227,2011-12-10,0.0,0.0,3.5192894502136962e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +9110,runoff,2.7201975761196976e-05,2011-12-10,0.0,0.0,6.386810152934099e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9111,storm_outflow,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9112,baseflow,0.031031487064490857,2011-12-10,0.0,0.0,4.202133849478221e-06,0.0,0.0,0.0,0.0,0.0,11.004201893603438,0.0,0.0,0.0 +9113,catchment_outflow,0.031058689040252056,2011-12-10,0.0,0.0,4.208520659631155e-06,0.0,0.0,0.0,0.0,0.0,11.003283707656179,0.0,0.0,0.0 +9114,reservoir_outflow,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9115,gw1_gw2,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9116,gw2_gw1,0.0002871372108877779,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9117,urban_drainage,0.04,2011-12-11,0.0,0.0,2.6086956521739132e-06,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0 +9118,percolation,0.015030191101901862,2011-12-11,0.0,0.0,3.4489036612094223e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 +9119,runoff,2.176158060895758e-05,2011-12-11,0.0,0.0,5.109448122347279e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +9120,storm_outflow,0.04,2011-12-11,0.0,0.0,2.6086956521739132e-06,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0 +9121,baseflow,0.030991483824584384,2011-12-11,0.0,0.0,4.200250774007549e-06,0.0,0.0,0.0,0.0,0.0,11.005908531598815,0.0,0.0,0.0 +9122,catchment_outflow,0.07101324540519334,2011-12-11,0.0,0.0,6.81405587430381e-06,0.0,0.0,0.0,0.0,0.0,7.841882402635067,0.0,0.0,0.0 +9123,reservoir_outflow,0.023,2011-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9124,gw1_gw2,0.0,2011-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9125,gw2_gw1,0.00028522296281519033,2011-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9126,urban_drainage,0.04,2011-12-12,0.0,0.0,3.198400799600199e-07,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0 +9127,percolation,0.029031790287964515,2011-12-12,0.0,0.0,6.67696689263793e-06,0.0,0.0,0.0,0.0,0.0,9.242459664443473,0.0,0.0,0.0 +9128,runoff,0.09787458774096558,2011-12-12,0.0,0.0,1.0994225240673528e-05,0.0,0.0,0.0,0.0,0.0,5.6990302218120625,0.0,0.0,0.0 +9129,storm_outflow,0.04,2011-12-12,0.0,0.0,3.198400799600199e-07,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0 +9130,baseflow,0.030986584590742834,2011-12-12,0.0,0.0,4.206442564304125e-06,0.0,0.0,0.0,0.0,0.0,11.001778028159102,0.0,0.0,0.0 +9131,catchment_outflow,0.16886117233170841,2011-12-12,0.0,0.0,1.5520507884937672e-05,0.0,0.0,0.0,0.0,0.0,6.608531402284073,0.0,0.0,0.0 +9132,reservoir_outflow,0.08400000000000002,2011-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9133,gw1_gw2,0.0,2011-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9134,gw2_gw1,0.0002833214763965586,2011-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9135,urban_drainage,0.04,2011-12-13,0.0,0.0,3.7492565934227454e-07,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0 +9136,percolation,0.04256332064844225,2011-12-13,0.0,0.0,9.629443749063779e-06,0.0,0.0,0.0,0.0,0.0,8.180408753151177,0.0,0.0,0.0 +9137,runoff,0.13471006183376072,2011-12-13,0.0,0.0,1.9082100840134187e-05,0.0,0.0,0.0,0.0,0.0,5.81501965947053,0.0,0.0,0.0 +9138,storm_outflow,0.04,2011-12-13,0.0,0.0,3.7492565934227454e-07,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0 +9139,baseflow,0.031015526430887085,2011-12-13,0.0,0.0,4.220000067266024e-06,0.0,0.0,0.0,0.0,0.0,10.992098453205939,0.0,0.0,0.0 +9140,catchment_outflow,0.20572558826464782,2011-12-13,0.0,0.0,2.3677026566742486e-05,0.0,0.0,0.0,0.0,0.0,6.5241864937927145,0.0,0.0,0.0 +9141,reservoir_outflow,0.0435,2011-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9142,gw1_gw2,0.0,2011-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9143,gw2_gw1,0.0002814326665539824,2011-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9144,urban_drainage,0.04,2011-12-14,0.0,0.0,4.2802200135298287e-07,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0 +9145,percolation,0.053661867360134057,2011-12-14,0.0,0.0,1.1938264721628707e-05,0.0,0.0,0.0,0.0,0.0,7.7094157315362155,0.0,0.0,0.0 +9146,runoff,0.14991683073051257,2011-12-14,0.0,0.0,2.3603713497261355e-05,0.0,0.0,0.0,0.0,0.0,5.772567669586662,0.0,0.0,0.0 +9147,storm_outflow,0.04,2011-12-14,0.0,0.0,4.2802200135298287e-07,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0 +9148,baseflow,0.031072142283210202,2011-12-14,0.0,0.0,4.239295728901931e-06,0.0,0.0,0.0,0.0,0.0,10.97792539722624,0.0,0.0,0.0 +9149,catchment_outflow,0.22098897301372278,2011-12-14,0.0,0.0,2.8271031227516267e-05,0.0,0.0,0.0,0.0,0.0,6.428199282548706,0.0,0.0,0.0 +9150,reservoir_outflow,0.035500000000000004,2011-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9151,gw1_gw2,0.0,2011-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9152,gw2_gw1,0.0002795564487771074,2011-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9153,urban_drainage,0.04,2011-12-15,0.0,0.0,4.952297889652741e-07,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0 +9154,percolation,0.06198204721465508,2011-12-15,0.0,0.0,1.360222511039289e-05,0.0,0.0,0.0,0.0,0.0,7.419661036505669,0.0,0.0,0.0 +9155,runoff,0.150660878772595,2011-12-15,0.0,0.0,2.522538974179829e-05,0.0,0.0,0.0,0.0,0.0,5.699210940140556,0.0,0.0,0.0 +9156,storm_outflow,0.04,2011-12-15,0.0,0.0,4.952297889652741e-07,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0 +9157,baseflow,0.031149417045538814,2011-12-15,0.0,0.0,4.2627030523556585e-06,0.0,0.0,0.0,0.0,0.0,10.960224543524388,0.0,0.0,0.0 +9158,catchment_outflow,0.22181029581813383,2011-12-15,0.0,0.0,2.9983322583119224e-05,0.0,0.0,0.0,0.0,0.0,6.3533256995587335,0.0,0.0,0.0 +9159,reservoir_outflow,0.026,2011-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9160,gw1_gw2,0.0,2011-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9161,gw2_gw1,0.0002776927391185069,2011-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9162,urban_drainage,0.04,2011-12-16,0.0,0.0,6.562237944705278e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +9163,percolation,0.06410161487480259,2011-12-16,0.0,0.0,1.4006469410478132e-05,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 +9164,runoff,0.117145275008533,2011-12-16,0.0,0.0,2.2434607801082294e-05,0.0,0.0,0.0,0.0,0.0,5.7644214298928365,0.0,0.0,0.0 +9165,storm_outflow,0.04,2011-12-16,0.0,0.0,6.562237944705278e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +9166,baseflow,0.03123179754011197,2011-12-16,0.0,0.0,4.287062468250964e-06,0.0,0.0,0.0,0.0,0.0,10.941545089823638,0.0,0.0,0.0 +9167,catchment_outflow,0.18837707254864497,2011-12-16,0.0,0.0,2.7377894063803785e-05,0.0,0.0,0.0,0.0,0.0,6.504371541690911,0.0,0.0,0.0 +9168,reservoir_outflow,0.002999999999999999,2011-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9169,gw1_gw2,0.0,2011-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9170,gw2_gw1,0.0002758414541906618,2011-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9171,urban_drainage,0.04,2011-12-17,0.0,0.0,9.410429768537159e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +9172,percolation,0.06281958257730653,2011-12-17,0.0,0.0,1.3726340022268566e-05,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 +9173,runoff,0.08650465844893215,2011-12-17,0.0,0.0,1.7947686240865836e-05,0.0,0.0,0.0,0.0,0.0,5.871786862015751,0.0,0.0,0.0 +9174,storm_outflow,0.04,2011-12-17,0.0,0.0,9.410429768537159e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +9175,baseflow,0.03131076700270496,2011-12-17,0.0,0.0,4.310660662136008e-06,0.0,0.0,0.0,0.0,0.0,10.92337908740475,0.0,0.0,0.0 +9176,catchment_outflow,0.15781542545163713,2011-12-17,0.0,0.0,2.319938987985556e-05,0.0,0.0,0.0,0.0,0.0,6.705503638470638,0.0,0.0,0.0 +9177,reservoir_outflow,0.0,2011-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9178,gw1_gw2,0.0,2011-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9179,gw2_gw1,0.0002740025111629407,2011-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9180,urban_drainage,0.04,2011-12-18,0.0,0.0,1.3920066822937638e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +9181,percolation,0.0615631909257604,2011-12-18,0.0,0.0,1.3451813221823197e-05,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 +9182,runoff,0.06960841100701042,2011-12-18,0.0,0.0,1.4358148992692667e-05,0.0,0.0,0.0,0.0,0.0,5.849248327667147,0.0,0.0,0.0 +9183,storm_outflow,0.04,2011-12-18,0.0,0.0,1.3920066822937638e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +9184,baseflow,0.0313863980625126,2011-12-18,0.0,0.0,4.333513543535226e-06,0.0,0.0,0.0,0.0,0.0,10.905708383492394,0.0,0.0,0.0 +9185,catchment_outflow,0.140994809069523,2011-12-18,0.0,0.0,2.0083669218521657e-05,0.0,0.0,0.0,0.0,0.0,6.792614618749888,0.0,0.0,0.0 +9186,reservoir_outflow,0.0,2011-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9187,gw1_gw2,0.0,2011-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9188,gw2_gw1,0.00027217582775520557,2011-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9189,urban_drainage,0.04,2011-12-19,0.0,0.0,1.483926809642168e-06,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0 +9190,percolation,0.06544389618468839,2011-12-19,0.0,0.0,1.420884311964002e-05,0.0,0.0,0.0,0.0,0.0,7.103656958524625,0.0,0.0,0.0 +9191,runoff,0.08892022254310798,2011-12-19,0.0,0.0,1.4906739734998416e-05,0.0,0.0,0.0,0.0,0.0,5.120166486242403,0.0,0.0,0.0 +9192,storm_outflow,0.04,2011-12-19,0.0,0.0,1.483926809642168e-06,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0 +9193,baseflow,0.03147154180781804,2011-12-19,0.0,0.0,4.358201867475489e-06,0.0,0.0,0.0,0.0,0.0,10.885942823525244,0.0,0.0,0.0 +9194,catchment_outflow,0.160391764350926,2011-12-19,0.0,0.0,2.0748868412116074e-05,0.0,0.0,0.0,0.0,0.0,6.167875211055827,0.0,0.0,0.0 +9195,reservoir_outflow,0.011,2011-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9196,gw1_gw2,0.0,2011-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9197,gw2_gw1,0.00027036132223656756,2011-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9198,urban_drainage,0.04,2011-12-20,0.0,0.0,1.5172811746875222e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +9199,percolation,0.06952047406931978,2011-12-20,0.0,0.0,1.498682014352778e-05,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 +9200,runoff,0.09363464668108117,2011-12-20,0.0,0.0,1.5465904742267272e-05,0.0,0.0,0.0,0.0,0.0,4.924298295943825,0.0,0.0,0.0 +9201,storm_outflow,0.04,2011-12-20,0.0,0.0,1.5172811746875222e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +9202,baseflow,0.0315666641384718,2011-12-20,0.0,0.0,4.3847734131656194e-06,0.0,0.0,0.0,0.0,0.0,10.863897770708597,0.0,0.0,0.0 +9203,catchment_outflow,0.16520131081955297,2011-12-20,0.0,0.0,2.1367959330120416e-05,0.0,0.0,0.0,0.0,0.0,5.9404767869547666,0.0,0.0,0.0 +9204,reservoir_outflow,0.012499999999999997,2011-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9205,gw1_gw2,0.0,2011-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9206,gw2_gw1,0.0002685589134218347,2011-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9207,urban_drainage,0.027999999999999966,2011-12-21,0.0,0.0,2.782805380257837e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +9208,percolation,0.0681300645879334,2011-12-21,0.0,0.0,1.4687083740657226e-05,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 +9209,runoff,0.06020503002939261,2011-12-21,0.0,0.0,1.2372723793813817e-05,0.0,0.0,0.0,0.0,0.0,5.258816555668013,0.0,0.0,0.0 +9210,storm_outflow,0.027999999999999966,2011-12-21,0.0,0.0,2.782805380257837e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +9211,baseflow,0.03165807263959545,2011-12-21,0.0,0.0,4.410529188984348e-06,0.0,0.0,0.0,0.0,0.0,10.842474603759847,0.0,0.0,0.0 +9212,catchment_outflow,0.11986310266898803,2011-12-21,0.0,0.0,1.9566058363056e-05,0.0,0.0,0.0,0.0,0.0,6.540844229659835,0.0,0.0,0.0 +9213,reservoir_outflow,0.0,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9214,gw1_gw2,0.0,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9215,gw2_gw1,0.0002667685206652948,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9216,urban_drainage,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9217,percolation,0.06676746329617474,2011-12-22,0.0,0.0,1.4393342065844082e-05,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 +9218,runoff,0.04783251872737228,2011-12-22,0.0,0.0,9.898179035051054e-06,0.0,0.0,0.0,0.0,0.0,5.268395603987982,0.0,0.0,0.0 +9219,storm_outflow,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9220,baseflow,0.031745846116236896,2011-12-22,0.0,0.0,4.435486221176498e-06,0.0,0.0,0.0,0.0,0.0,10.821650590337043,0.0,0.0,0.0 +9221,catchment_outflow,0.07957836484360917,2011-12-22,0.0,0.0,1.4333665256227552e-05,0.0,0.0,0.0,0.0,0.0,7.48373112372781,0.0,0.0,0.0 +9222,reservoir_outflow,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9223,gw1_gw2,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9224,gw2_gw1,0.0002649900638610703,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9225,urban_drainage,0.04,2011-12-23,0.0,0.0,1.5384615384615385e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +9226,percolation,0.072952396340516,2011-12-23,0.0,0.0,1.5565701741614047e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +9227,runoff,0.08972057815739351,2011-12-23,0.0,0.0,1.2785964951663664e-05,0.0,0.0,0.0,0.0,0.0,4.958410946950448,0.0,0.0,0.0 +9228,storm_outflow,0.04,2011-12-23,0.0,0.0,1.5384615384615385e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +9229,baseflow,0.031848862491797594,2011-12-23,0.0,0.0,4.463311759977591e-06,0.0,0.0,0.0,0.0,0.0,10.797958335196226,0.0,0.0,0.0 +9230,catchment_outflow,0.1615694406491911,2011-12-23,0.0,0.0,1.8787738250102795e-05,0.0,0.0,0.0,0.0,0.0,5.9968488876304,0.0,0.0,0.0 +9231,reservoir_outflow,0.026,2011-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9232,gw1_gw2,0.0,2011-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9233,gw2_gw1,0.00026322346343565783,2011-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9234,urban_drainage,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9235,percolation,0.07149334841370568,2011-12-24,0.0,0.0,1.5254387706781766e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +9236,runoff,0.05184313696423035,2011-12-24,0.0,0.0,1.022877196133093e-05,0.0,0.0,0.0,0.0,0.0,5.140494162162675,0.0,0.0,0.0 +9237,storm_outflow,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9238,baseflow,0.031947973706602364,2011-12-24,0.0,0.0,4.490289449844602e-06,0.0,0.0,0.0,0.0,0.0,10.774944501558391,0.0,0.0,0.0 +9239,catchment_outflow,0.08379111067083272,2011-12-24,0.0,0.0,1.4719061411175532e-05,0.0,0.0,0.0,0.0,0.0,7.2888040467436825,0.0,0.0,0.0 +9240,reservoir_outflow,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9241,gw1_gw2,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9242,gw2_gw1,0.0002614686403457967,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9243,urban_drainage,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9244,percolation,0.07006348144543156,2011-12-25,0.0,0.0,1.4949299952646131e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +9245,runoff,0.043142930022033954,2011-12-25,0.0,0.0,8.183017569064743e-06,0.0,0.0,0.0,0.0,0.0,5.146922450378,0.0,0.0,0.0 +9246,storm_outflow,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9247,baseflow,0.03204326247594944,2011-12-25,0.0,0.0,4.516436976101606e-06,0.0,0.0,0.0,0.0,0.0,10.752583814278706,0.0,0.0,0.0 +9248,catchment_outflow,0.07518619249798339,2011-12-25,0.0,0.0,1.269945454516635e-05,0.0,0.0,0.0,0.0,0.0,7.535973850202201,0.0,0.0,0.0 +9249,reservoir_outflow,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9250,gw1_gw2,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9251,gw2_gw1,0.0002597255160768697,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9252,urban_drainage,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9253,percolation,0.06866221181652293,2011-12-26,0.0,0.0,1.4650313953593207e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +9254,runoff,0.03315267840206656,2011-12-26,0.0,0.0,6.5464140552517945e-06,0.0,0.0,0.0,0.0,0.0,5.154477796985465,0.0,0.0,0.0 +9255,storm_outflow,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9256,baseflow,0.03213480984930087,2011-12-26,0.0,0.0,4.541771668545335e-06,0.0,0.0,0.0,0.0,0.0,10.730852213815792,0.0,0.0,0.0 +9257,catchment_outflow,0.06528748825136743,2011-12-26,0.0,0.0,1.108818572379713e-05,0.0,0.0,0.0,0.0,0.0,7.899195603304127,0.0,0.0,0.0 +9258,reservoir_outflow,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9259,gw1_gw2,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9260,gw2_gw1,0.0002579940126365088,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9261,urban_drainage,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9262,percolation,0.06728896758019247,2011-12-27,0.0,0.0,1.4357307674521343e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +9263,runoff,0.026612564336613898,2011-12-27,0.0,0.0,5.237131244201436e-06,0.0,0.0,0.0,0.0,0.0,5.163360845372488,0.0,0.0,0.0 +9264,storm_outflow,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9265,baseflow,0.032222695243628106,2011-12-27,0.0,0.0,4.566310508560274e-06,0.0,0.0,0.0,0.0,0.0,10.709726783926067,0.0,0.0,0.0 +9266,catchment_outflow,0.05883525958024201,2011-12-27,0.0,0.0,9.803441752761711e-06,0.0,0.0,0.0,0.0,0.0,8.200975714801372,0.0,0.0,0.0 +9267,reservoir_outflow,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9268,gw1_gw2,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9269,gw2_gw1,0.0002562740525521079,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9270,urban_drainage,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9271,percolation,0.06594318822858862,2011-12-28,0.0,0.0,1.4070161521030916e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +9272,runoff,0.021056539720324983,2011-12-28,0.0,0.0,4.189704995361147e-06,0.0,0.0,0.0,0.0,0.0,5.161295673902048,0.0,0.0,0.0 +9273,storm_outflow,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9274,baseflow,0.032306996476090505,2011-12-28,0.0,0.0,4.590070136091451e-06,0.0,0.0,0.0,0.0,0.0,10.689185684463764,0.0,0.0,0.0 +9275,catchment_outflow,0.053363536196415484,2011-12-28,0.0,0.0,8.779775131452598e-06,0.0,0.0,0.0,0.0,0.0,8.507954006927388,0.0,0.0,0.0 +9276,reservoir_outflow,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9277,gw1_gw2,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9278,gw2_gw1,0.00025456555886851364,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9279,urban_drainage,0.008999999999999998,2011-12-29,0.0,0.0,6.46153846153846e-06,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 +9280,percolation,0.06677921013131272,2011-12-29,0.0,0.0,1.42201575382661e-05,0.0,0.0,0.0,0.0,0.0,6.681290821266299,0.0,0.0,0.0 +9281,runoff,0.031346483750263304,2011-12-29,0.0,0.0,4.789761488474928e-06,0.0,0.0,0.0,0.0,0.0,5.776544881859261,0.0,0.0,0.0 +9282,storm_outflow,0.008999999999999998,2011-12-29,0.0,0.0,6.46153846153846e-06,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 +9283,baseflow,0.032393177010228556,2011-12-29,0.0,0.0,4.6141453545968884e-06,0.0,0.0,0.0,0.0,0.0,10.668529787299898,0.0,0.0,0.0 +9284,catchment_outflow,0.07273966076049185,2011-12-29,0.0,0.0,1.586544530461028e-05,0.0,0.0,0.0,0.0,0.0,8.03017140856707,0.0,0.0,0.0 +9285,reservoir_outflow,0.004499999999999999,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9286,gw1_gw2,0.0,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9287,gw2_gw1,0.0002528684551426963,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9288,urban_drainage,0.04,2011-12-30,0.0,0.0,9.30232558139535e-07,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 +9289,percolation,0.07047044589774171,2011-12-30,0.0,0.0,1.491284773520979e-05,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 +9290,runoff,0.05342241649431954,2011-12-30,0.0,0.0,7.088787016476653e-06,0.0,0.0,0.0,0.0,0.0,6.350208679425454,0.0,0.0,0.0 +9291,storm_outflow,0.04,2011-12-30,0.0,0.0,9.30232558139535e-07,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 +9292,baseflow,0.032488370182447344,2011-12-30,0.0,0.0,4.639892110548421e-06,0.0,0.0,0.0,0.0,0.0,10.64697559967172,0.0,0.0,0.0 +9293,catchment_outflow,0.1259107866767669,2011-12-30,0.0,0.0,1.2658911685164609e-05,0.0,0.0,0.0,0.0,0.0,7.568954728479819,0.0,0.0,0.0 +9294,reservoir_outflow,0.0215,2011-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9295,gw1_gw2,0.0,2011-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9296,gw2_gw1,0.00025118266544144063,2011-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9297,urban_drainage,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9298,percolation,0.06906103697978687,2011-12-31,0.0,0.0,1.4614590780505594e-05,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 +9299,runoff,0.031087246002991554,2011-12-31,0.0,0.0,5.671029613181322e-06,0.0,0.0,0.0,0.0,0.0,6.245156837632266,0.0,0.0,0.0 +9300,storm_outflow,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9301,baseflow,0.03257980184944069,2011-12-31,0.0,0.0,4.664828857223312e-06,0.0,0.0,0.0,0.0,0.0,10.626025999213889,0.0,0.0,0.0 +9302,catchment_outflow,0.06366704785243224,2011-12-31,0.0,0.0,1.0335858470404635e-05,0.0,0.0,0.0,0.0,0.0,8.486942094323764,0.0,0.0,0.0 +9303,reservoir_outflow,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9304,gw1_gw2,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9305,gw2_gw1,0.000249508114338326,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9306,urban_drainage,0.016,2012-01-01,0.0,0.0,2.0697674418604652e-06,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 +9307,percolation,0.07116949411234665,2012-01-01,0.0,0.0,1.4995779063422731e-05,0.0,0.0,0.0,0.0,0.0,6.728261964850857,0.0,0.0,0.0 +9308,runoff,0.04677879241779573,2012-01-01,0.0,0.0,6.7817573523025605e-06,0.0,0.0,0.0,0.0,0.0,6.781748533948404,0.0,0.0,0.0 +9309,storm_outflow,0.016,2012-01-01,0.0,0.0,2.0697674418604652e-06,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 +9310,baseflow,0.03267627608009796,2012-01-01,0.0,0.0,4.690656232738812e-06,0.0,0.0,0.0,0.0,0.0,10.604802505614515,0.0,0.0,0.0 +9311,catchment_outflow,0.09545506849789369,2012-01-01,0.0,0.0,1.3542181026901836e-05,0.0,0.0,0.0,0.0,0.0,8.18123968653241,0.0,0.0,0.0 +9312,reservoir_outflow,0.008,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9313,gw1_gw2,0.0,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9314,gw2_gw1,0.00024784472690964066,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9315,urban_drainage,0.04,2012-01-02,0.0,0.0,6.153846153846154e-07,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 +9316,percolation,0.07811482013262055,2012-01-02,0.0,0.0,1.6244585028323927e-05,0.0,0.0,0.0,0.0,0.0,6.828707645462627,0.0,0.0,0.0 +9317,runoff,0.08488708204718828,2012-01-02,0.0,0.0,1.0587811035740891e-05,0.0,0.0,0.0,0.0,0.0,7.305513472672865,0.0,0.0,0.0 +9318,storm_outflow,0.04,2012-01-02,0.0,0.0,6.153846153846154e-07,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 +9319,baseflow,0.03278987244022927,2012-01-02,0.0,0.0,4.7195410547277745e-06,0.0,0.0,0.0,0.0,0.0,10.5823131705811,0.0,0.0,0.0 +9320,catchment_outflow,0.15767695448741756,2012-01-02,0.0,0.0,1.592273670585328e-05,0.0,0.0,0.0,0.0,0.0,8.070951721223697,0.0,0.0,0.0 +9321,reservoir_outflow,0.0325,2012-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9322,gw1_gw2,0.0,2012-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9323,gw2_gw1,0.00024619242873011874,2012-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9324,urban_drainage,0.04,2012-01-03,0.0,0.0,6.672845227062094e-07,0.0,0.0,0.0,0.0,0.0,7.855622490060242,0.0,0.0,0.0 +9325,percolation,0.08530128825920669,2012-01-03,0.0,0.0,1.7479858341542763e-05,0.0,0.0,0.0,0.0,0.0,6.9423053143813584,0.0,0.0,0.0 +9326,runoff,0.10427850111142956,2012-01-03,0.0,0.0,1.367079887454376e-05,0.0,0.0,0.0,0.0,0.0,7.597041717038713,0.0,0.0,0.0 +9327,storm_outflow,0.04,2012-01-03,0.0,0.0,6.672845227062094e-07,0.0,0.0,0.0,0.0,0.0,7.855622490060242,0.0,0.0,0.0 +9328,baseflow,0.03292115097977671,2012-01-03,0.0,0.0,4.751441847944812e-06,0.0,0.0,0.0,0.0,0.0,10.55873430485446,0.0,0.0,0.0 +9329,catchment_outflow,0.17719965209120628,2012-01-03,0.0,0.0,1.908952524519478e-05,0.0,0.0,0.0,0.0,0.0,8.205652165689704,0.0,0.0,0.0 +9330,reservoir_outflow,0.028999999999999998,2012-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9331,gw1_gw2,0.0,2012-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9332,gw2_gw1,0.0002445511458718741,2012-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9333,urban_drainage,0.04,2012-01-04,0.0,0.0,9.038583483732501e-07,0.0,0.0,0.0,0.0,0.0,7.912109717244611,0.0,0.0,0.0 +9334,percolation,0.08977135477259976,2012-01-04,0.0,0.0,1.8207680414089184e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +9335,runoff,0.10112233885347607,2012-01-04,0.0,0.0,1.4528036564225933e-05,0.0,0.0,0.0,0.0,0.0,7.717170264427972,0.0,0.0,0.0 +9336,storm_outflow,0.04,2012-01-04,0.0,0.0,9.038583483732501e-07,0.0,0.0,0.0,0.0,0.0,7.912109717244611,0.0,0.0,0.0 +9337,baseflow,0.03306327648925877,2012-01-04,0.0,0.0,4.785082444360172e-06,0.0,0.0,0.0,0.0,0.0,10.534773419260748,0.0,0.0,0.0 +9338,catchment_outflow,0.17418561534273486,2012-01-04,0.0,0.0,2.0216977356959356e-05,0.0,0.0,0.0,0.0,0.0,8.29676330406711,0.0,0.0,0.0 +9339,reservoir_outflow,0.0165,2012-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9340,gw1_gw2,0.0,2012-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9341,gw2_gw1,0.00024292080489942693,2012-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9342,urban_drainage,0.018999999999999982,2012-01-05,0.0,0.0,1.8134725135359247e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +9343,percolation,0.08797592767714778,2012-01-05,0.0,0.0,1.78435268058074e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +9344,runoff,0.06478588530891835,2012-01-05,0.0,0.0,1.1622429251380747e-05,0.0,0.0,0.0,0.0,0.0,7.651059438306372,0.0,0.0,0.0 +9345,storm_outflow,0.018999999999999982,2012-01-05,0.0,0.0,1.8134725135359247e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +9346,baseflow,0.03320055811722849,2012-01-05,0.0,0.0,4.817728555263791e-06,0.0,0.0,0.0,0.0,0.0,10.511547577031282,0.0,0.0,0.0 +9347,catchment_outflow,0.11698644342614684,2012-01-05,0.0,0.0,1.8253630320180463e-05,0.0,0.0,0.0,0.0,0.0,8.505258908489349,0.0,0.0,0.0 +9348,reservoir_outflow,0.0,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9349,gw1_gw2,0.0,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9350,gw2_gw1,0.00024130133286650592,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9351,urban_drainage,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9352,percolation,0.08621640912360481,2012-01-06,0.0,0.0,1.748665626969125e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9353,runoff,0.05280619969446678,2012-01-06,0.0,0.0,9.297943401104597e-06,0.0,0.0,0.0,0.0,0.0,7.659238900515375,0.0,0.0,0.0 +9354,storm_outflow,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9355,baseflow,0.03333309774474443,2012-01-06,0.0,0.0,4.84940087454986e-06,0.0,0.0,0.0,0.0,0.0,10.48902694032885,0.0,0.0,0.0 +9356,catchment_outflow,0.08613929743921121,2012-01-06,0.0,0.0,1.4147344275654458e-05,0.0,0.0,0.0,0.0,0.0,8.754274547800254,0.0,0.0,0.0 +9357,reservoir_outflow,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9358,gw1_gw2,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9359,gw2_gw1,0.00023969265731391687,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9360,urban_drainage,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9361,percolation,0.08449208094113272,2012-01-07,0.0,0.0,1.7136923144297424e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643465,0.0,0.0,0.0 +9362,runoff,0.04067934189076383,2012-01-07,0.0,0.0,7.438354720883678e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +9363,storm_outflow,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9364,baseflow,0.0334609952027354,2012-01-07,0.0,0.0,4.880119680224229e-06,0.0,0.0,0.0,0.0,0.0,10.467183241726634,0.0,0.0,0.0 +9365,catchment_outflow,0.07414033709349924,2012-01-07,0.0,0.0,1.2318474401107907e-05,0.0,0.0,0.0,0.0,0.0,8.918116999091634,0.0,0.0,0.0 +9366,reservoir_outflow,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9367,gw1_gw2,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9368,gw2_gw1,0.00023809470626510177,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9369,urban_drainage,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9370,percolation,0.08280223932231007,2012-01-08,0.0,0.0,1.6794184681411476e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +9371,runoff,0.03254347351261107,2012-01-08,0.0,0.0,5.950683776706943e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +9372,storm_outflow,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9373,baseflow,0.033584348313034335,2012-01-08,0.0,0.0,4.909904842727196e-06,0.0,0.0,0.0,0.0,0.0,10.44598968210406,0.0,0.0,0.0 +9374,catchment_outflow,0.0661278218256454,2012-01-08,0.0,0.0,1.086058861943414e-05,0.0,0.0,0.0,0.0,0.0,9.067010000578913,0.0,0.0,0.0 +9375,reservoir_outflow,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9376,gw1_gw2,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9377,gw2_gw1,0.00023650740822347418,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9378,urban_drainage,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9379,percolation,0.08114619453586386,2012-01-09,0.0,0.0,1.6458300987783248e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643465,0.0,0.0,0.0 +9380,runoff,0.02695843545036535,2012-01-09,0.0,0.0,4.760547021365554e-06,0.0,0.0,0.0,0.0,0.0,7.6617535826337,0.0,0.0,0.0 +9381,storm_outflow,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9382,baseflow,0.03370325292859141,2012-01-09,0.0,0.0,4.938775833089837e-06,0.0,0.0,0.0,0.0,0.0,10.42542083641195,0.0,0.0,0.0 +9383,catchment_outflow,0.06066168837895676,2012-01-09,0.0,0.0,9.699322854455391e-06,0.0,0.0,0.0,0.0,0.0,9.19722974483141,0.0,0.0,0.0 +9384,reservoir_outflow,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9385,gw1_gw2,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9386,gw2_gw1,0.00023493069216851126,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9387,urban_drainage,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9388,percolation,0.07952327064514658,2012-01-10,0.0,0.0,1.6129134968027583e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +9389,runoff,0.020827823048071088,2012-01-10,0.0,0.0,3.808437617092444e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +9390,storm_outflow,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9391,baseflow,0.033817802972882796,2012-01-10,0.0,0.0,4.966751730927181e-06,0.0,0.0,0.0,0.0,0.0,10.405452566608364,0.0,0.0,0.0 +9392,catchment_outflow,0.05464562602095388,2012-01-10,0.0,0.0,8.775189348019626e-06,0.0,0.0,0.0,0.0,0.0,9.35291433371461,0.0,0.0,0.0 +9393,reservoir_outflow,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9394,gw1_gw2,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9395,gw2_gw1,0.00023336448755415518,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9396,urban_drainage,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9397,percolation,0.07793280523224365,2012-01-11,0.0,0.0,1.5806552268667034e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643465,0.0,0.0,0.0 +9398,runoff,0.016662258438456867,2012-01-11,0.0,0.0,3.0467500936739544e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +9399,storm_outflow,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9400,baseflow,0.0339280904785312,2012-01-11,0.0,0.0,4.9938512322715315e-06,0.0,0.0,0.0,0.0,0.0,10.386061941136493,0.0,0.0,0.0 +9401,catchment_outflow,0.05059034891698807,2012-01-11,0.0,0.0,8.040601325945486e-06,0.0,0.0,0.0,0.0,0.0,9.482921364263817,0.0,0.0,0.0 +9402,reservoir_outflow,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9403,gw1_gw2,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9404,gw2_gw1,0.00023180872430383914,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9405,urban_drainage,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9406,percolation,0.07637414912759877,2012-01-12,0.0,0.0,1.549042122329369e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +9407,runoff,0.013329806750765495,2012-01-12,0.0,0.0,2.4374000749391637e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +9408,storm_outflow,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9409,baseflow,0.03403420562515387,2012-01-12,0.0,0.0,5.0200926572490865e-06,0.0,0.0,0.0,0.0,0.0,10.3672271603782,0.0,0.0,0.0 +9410,catchment_outflow,0.04736401237591936,2012-01-12,0.0,0.0,7.45749273218825e-06,0.0,0.0,0.0,0.0,0.0,9.600799408264491,0.0,0.0,0.0 +9411,reservoir_outflow,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9412,gw1_gw2,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9413,gw2_gw1,0.0002302633328085335,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9414,urban_drainage,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9415,percolation,0.0748466661450468,2012-01-13,0.0,0.0,1.5180612798827817e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9416,runoff,0.010742778013475509,2012-01-13,0.0,0.0,1.949920059951331e-06,0.0,0.0,0.0,0.0,0.0,7.6291826326879555,0.0,0.0,0.0 +9417,storm_outflow,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9418,baseflow,0.0341362367764536,2012-01-13,0.0,0.0,5.045493957603032e-06,0.0,0.0,0.0,0.0,0.0,10.348927487572135,0.0,0.0,0.0 +9419,catchment_outflow,0.04487901478992911,2012-01-13,0.0,0.0,6.995414017554362e-06,0.0,0.0,0.0,0.0,0.0,9.697896813969441,0.0,0.0,0.0 +9420,reservoir_outflow,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9421,gw1_gw2,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9422,gw2_gw1,0.00022872824392319304,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9423,urban_drainage,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9424,percolation,0.07334973282214587,2012-01-14,0.0,0.0,1.4877000542851261e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 +9425,runoff,0.008531076320489916,2012-01-14,0.0,0.0,1.5599360479610646e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +9426,storm_outflow,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9427,baseflow,0.03423427051656784,2012-01-14,0.0,0.0,5.070072724066154e-06,0.0,0.0,0.0,0.0,0.0,10.33114318473471,0.0,0.0,0.0 +9428,catchment_outflow,0.04276534683705776,2012-01-14,0.0,0.0,6.630008772027219e-06,0.0,0.0,0.0,0.0,0.0,9.795081480372593,0.0,0.0,0.0 +9429,reservoir_outflow,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9430,gw1_gw2,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9431,gw2_gw1,0.00022720338896355943,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9432,urban_drainage,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9433,percolation,0.07188273816570295,2012-01-15,0.0,0.0,1.4579460531994235e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9434,runoff,0.0068248610563919326,2012-01-15,0.0,0.0,1.2479488383688516e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +9435,storm_outflow,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9436,baseflow,0.03432839168569068,2012-01-15,0.0,0.0,5.093846193585973e-06,0.0,0.0,0.0,0.0,0.0,10.313855453166271,0.0,0.0,0.0 +9437,catchment_outflow,0.04115325274208261,2012-01-15,0.0,0.0,6.341795031954824e-06,0.0,0.0,0.0,0.0,0.0,9.871073797029528,0.0,0.0,0.0 +9438,reservoir_outflow,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9439,gw1_gw2,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9440,gw2_gw1,0.00022568869970349681,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9441,urban_drainage,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9442,percolation,0.07044508340238889,2012-01-16,0.0,0.0,1.428787132135435e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9443,runoff,0.005459888845113547,2012-01-16,0.0,0.0,9.983590706950816e-07,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +9444,storm_outflow,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9445,baseflow,0.03441868341498242,2012-01-16,0.0,0.0,5.116831256405394e-06,0.0,0.0,0.0,0.0,0.0,10.297046378164193,0.0,0.0,0.0 +9446,catchment_outflow,0.03987857226009597,2012-01-16,0.0,0.0,6.1151903271004756e-06,0.0,0.0,0.0,0.0,0.0,9.933799957302805,0.0,0.0,0.0 +9447,reservoir_outflow,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9448,gw1_gw2,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9449,gw2_gw1,0.00022418410837232727,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9450,urban_drainage,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9451,percolation,0.06903618173434112,2012-01-17,0.0,0.0,1.4002113894927265e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9452,runoff,0.004367911076090837,2012-01-17,0.0,0.0,7.986872565560652e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9453,storm_outflow,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9454,baseflow,0.034505227160780826,2012-01-17,0.0,0.0,5.1390444630016994e-06,0.0,0.0,0.0,0.0,0.0,10.280698877599844,0.0,0.0,0.0 +9455,catchment_outflow,0.03887313823687166,2012-01-17,0.0,0.0,5.937731719557765e-06,0.0,0.0,0.0,0.0,0.0,9.984422451058904,0.0,0.0,0.0 +9456,reservoir_outflow,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9457,gw1_gw2,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9458,gw2_gw1,0.0002226895476496793,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9459,urban_drainage,0.022,2012-01-18,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +9460,percolation,0.06765545809965429,2012-01-18,0.0,0.0,1.3722071617028717e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9461,runoff,0.0034943288608726706,2012-01-18,0.0,0.0,6.389498052448522e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9462,storm_outflow,0.022,2012-01-18,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +9463,baseflow,0.03458810273812801,2012-01-18,0.0,0.0,5.160502030886766e-06,0.0,0.0,0.0,0.0,0.0,10.264796654048011,0.0,0.0,0.0 +9464,catchment_outflow,0.06008243159900068,2012-01-18,0.0,0.0,1.879945183613162e-05,0.0,0.0,0.0,0.0,0.0,7.749773370918069,0.0,0.0,0.0 +9465,reservoir_outflow,0.011,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9466,gw1_gw2,0.0,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9467,gw2_gw1,0.00022120495066548786,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9468,urban_drainage,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9469,percolation,0.06630234893766121,2012-01-19,0.0,0.0,1.3447630184688145e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +9470,runoff,0.002795463088698136,2012-01-19,0.0,0.0,5.111598441958817e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9471,storm_outflow,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9472,baseflow,0.03466738835362684,2012-01-19,0.0,0.0,5.18121985127127e-06,0.0,0.0,0.0,0.0,0.0,10.249324150185664,0.0,0.0,0.0 +9473,catchment_outflow,0.03746285144232498,2012-01-19,0.0,0.0,5.692379695467151e-06,0.0,0.0,0.0,0.0,0.0,10.054910289581114,0.0,0.0,0.0 +9474,reservoir_outflow,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9475,gw1_gw2,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9476,gw2_gw1,0.00021973025099430998,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9477,urban_drainage,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9478,percolation,0.06497630195890798,2012-01-20,0.0,0.0,1.3178677580994381e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 +9479,runoff,0.002236370470958509,2012-01-20,0.0,0.0,4.0892787535670534e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9480,storm_outflow,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9481,baseflow,0.03474316063764004,2012-01-20,0.0,0.0,5.201213495595577e-06,0.0,0.0,0.0,0.0,0.0,10.234266507202527,0.0,0.0,0.0 +9482,catchment_outflow,0.03697953110859855,2012-01-20,0.0,0.0,5.610141370952282e-06,0.0,0.0,0.0,0.0,0.0,10.077613260913825,0.0,0.0,0.0 +9483,reservoir_outflow,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9484,gw1_gw2,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9485,gw2_gw1,0.00021826538265443674,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9486,urban_drainage,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9487,percolation,0.06367677591972982,2012-01-21,0.0,0.0,1.2915104029374493e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 +9488,runoff,0.001789096376766807,2012-01-21,0.0,0.0,3.271423002853642e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9489,storm_outflow,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9490,baseflow,0.034815494675845264,2012-01-21,0.0,0.0,5.220498221930025e-06,0.0,0.0,0.0,0.0,0.0,10.219609525988746,0.0,0.0,0.0 +9491,catchment_outflow,0.03660459105261207,2012-01-21,0.0,0.0,5.547640522215389e-06,0.0,0.0,0.0,0.0,0.0,10.093719631005092,0.0,0.0,0.0 +9492,reservoir_outflow,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9493,gw1_gw2,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9494,gw2_gw1,0.00021681028010345216,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9495,urban_drainage,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9496,percolation,0.06240324040133522,2012-01-22,0.0,0.0,1.2656801948787002e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 +9497,runoff,0.001431277101413446,2012-01-22,0.0,0.0,2.6171384022829146e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9498,storm_outflow,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9499,baseflow,0.03488446404015899,2012-01-22,0.0,0.0,5.239088981247168e-06,0.0,0.0,0.0,0.0,0.0,10.205339630885716,0.0,0.0,0.0 +9500,catchment_outflow,0.03631574114157244,2012-01-22,0.0,0.0,5.500802821475459e-06,0.0,0.0,0.0,0.0,0.0,10.10438907309773,0.0,0.0,0.0 +9501,reservoir_outflow,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9502,gw1_gw2,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9503,gw2_gw1,0.0002153648782359241,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9504,urban_drainage,0.04,2012-01-23,0.0,0.0,2.9850746268656716e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 +9505,percolation,0.061155175593308526,2012-01-23,0.0,0.0,1.2403665909811264e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 +9506,runoff,0.0011450216811307566,2012-01-23,0.0,0.0,2.0937107218263314e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +9507,storm_outflow,0.04,2012-01-23,0.0,0.0,2.9850746268656716e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 +9508,baseflow,0.03495014081904187,2012-01-23,0.0,0.0,5.257000423568579e-06,0.0,0.0,0.0,0.0,0.0,10.19144383580467,0.0,0.0,0.0 +9509,catchment_outflow,0.07609516250017262,2012-01-23,0.0,0.0,8.451446122616883e-06,0.0,0.0,0.0,0.0,0.0,7.7691516446958735,0.0,0.0,0.0 +9510,reservoir_outflow,0.033499999999999995,2012-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9511,gw1_gw2,0.0,2012-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9512,gw2_gw1,0.00021392911238127255,2012-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9513,urban_drainage,0.023999999999999987,2012-01-24,0.0,0.0,3.0149253731343277e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 +9514,percolation,0.061290990973037404,2012-01-24,0.0,0.0,1.2415126116258566e-05,0.0,0.0,0.0,0.0,0.0,7.011035885784654,0.0,0.0,0.0 +9515,runoff,0.010213883445291838,2012-01-24,0.0,0.0,1.0326086065578677e-06,0.0,0.0,0.0,0.0,0.0,6.260727334261514,0.0,0.0,0.0 +9516,storm_outflow,0.023999999999999987,2012-01-24,0.0,0.0,3.0149253731343277e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 +9517,baseflow,0.03501599294442685,2012-01-24,0.0,0.0,5.274895737800303e-06,0.0,0.0,0.0,0.0,0.0,10.177526598382288,0.0,0.0,0.0 +9518,catchment_outflow,0.06922987638971867,2012-01-24,0.0,0.0,9.322429717492499e-06,0.0,0.0,0.0,0.0,0.0,8.032262483111307,0.0,0.0,0.0 +9519,reservoir_outflow,0.0,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9520,gw1_gw2,0.0,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9521,gw2_gw1,0.00021250291829879588,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9522,urban_drainage,0.02,2012-01-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 +9523,percolation,0.06312132629753298,2012-01-25,0.0,0.0,1.2741673351943546e-05,0.0,0.0,0.0,0.0,0.0,6.987877609016408,0.0,0.0,0.0 +9524,runoff,0.02526713278233438,2012-01-25,0.0,0.0,2.7422527452801273e-06,0.0,0.0,0.0,0.0,0.0,6.190743153683396,0.0,0.0,0.0 +9525,storm_outflow,0.02,2012-01-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 +9526,baseflow,0.03508625627780962,2012-01-25,0.0,0.0,5.293562681835661e-06,0.0,0.0,0.0,0.0,0.0,10.16318089040491,0.0,0.0,0.0 +9527,catchment_outflow,0.080353389060144,2012-01-25,0.0,0.0,9.035815427115788e-06,0.0,0.0,0.0,0.0,0.0,7.816493299539795,0.0,0.0,0.0 +9528,reservoir_outflow,0.01,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9529,gw1_gw2,0.0,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9530,gw2_gw1,0.00021108623217660496,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9531,urban_drainage,0.014999999999999998,2012-01-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +9532,percolation,0.06492654487585858,2012-01-26,0.0,0.0,1.3057009890321234e-05,0.0,0.0,0.0,0.0,0.0,6.958592335172325,0.0,0.0,0.0 +9533,runoff,0.032624175833494445,2012-01-26,0.0,0.0,4.094368880945965e-06,0.0,0.0,0.0,0.0,0.0,6.127487375546989,0.0,0.0,0.0 +9534,storm_outflow,0.014999999999999998,2012-01-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +9535,baseflow,0.03516085699930474,2012-01-26,0.0,0.0,5.312971299856875e-06,0.0,0.0,0.0,0.0,0.0,10.148387247672872,0.0,0.0,0.0 +9536,catchment_outflow,0.08278503283279919,2012-01-26,0.0,0.0,1.0407340180802839e-05,0.0,0.0,0.0,0.0,0.0,7.718331917459856,0.0,0.0,0.0 +9537,reservoir_outflow,0.0075,2012-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9538,gw1_gw2,0.0,2012-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9539,gw2_gw1,0.0002096789906286034,2012-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9540,urban_drainage,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9541,percolation,0.06491177393890295,2012-01-27,0.0,0.0,1.3034757987312581e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +9542,runoff,0.02627202782354631,2012-01-27,0.0,0.0,4.071789420749345e-06,0.0,0.0,0.0,0.0,0.0,6.186376687594011,0.0,0.0,0.0 +9543,storm_outflow,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9544,baseflow,0.03523523429165373,2012-01-27,0.0,0.0,5.332275766575514e-06,0.0,0.0,0.0,0.0,0.0,10.133623170371216,0.0,0.0,0.0 +9545,catchment_outflow,0.061507262115200044,2012-01-27,0.0,0.0,9.40406518732486e-06,0.0,0.0,0.0,0.0,0.0,8.447608123437588,0.0,0.0,0.0 +9546,reservoir_outflow,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9547,gw1_gw2,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9548,gw2_gw1,0.0002082811306912902,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9549,urban_drainage,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9550,percolation,0.06361353846012488,2012-01-28,0.0,0.0,1.277406282756633e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +9551,runoff,0.017414085527436264,2012-01-28,0.0,0.0,3.2574315365994753e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +9552,storm_outflow,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9553,baseflow,0.03530618005207491,2012-01-28,0.0,0.0,5.350880234227991e-06,0.0,0.0,0.0,0.0,0.0,10.119249952435409,0.0,0.0,0.0 +9554,catchment_outflow,0.05272026557951118,2012-01-28,0.0,0.0,8.608311770827467e-06,0.0,0.0,0.0,0.0,0.0,8.886867008481216,0.0,0.0,0.0 +9555,reservoir_outflow,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9556,gw1_gw2,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9557,gw2_gw1,0.00020689258981967387,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9558,urban_drainage,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9559,percolation,0.06234126769092239,2012-01-29,0.0,0.0,1.2518581571015007e-05,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 +9560,runoff,0.01443667402506289,2012-01-29,0.0,0.0,2.60594522927958e-06,0.0,0.0,0.0,0.0,0.0,6.328043663758067,0.0,0.0,0.0 +9561,storm_outflow,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9562,baseflow,0.03537376777117203,2012-01-29,0.0,0.0,5.368799487569958e-06,0.0,0.0,0.0,0.0,0.0,10.105254439048279,0.0,0.0,0.0 +9563,catchment_outflow,0.04981044179623492,2012-01-29,0.0,0.0,7.974744716849539e-06,0.0,0.0,0.0,0.0,0.0,9.01049681955369,0.0,0.0,0.0 +9564,reservoir_outflow,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9565,gw1_gw2,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9566,gw2_gw1,0.00020551330588780559,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9567,urban_drainage,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9568,percolation,0.06109444233710395,2012-01-30,0.0,0.0,1.2268209939594709e-05,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 +9569,runoff,0.01114501473755921,2012-01-30,0.0,0.0,2.0847561834236646e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +9570,storm_outflow,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9571,baseflow,0.03543806945758686,2012-01-30,0.0,0.0,5.3860480137000195e-06,0.0,0.0,0.0,0.0,0.0,10.09162404250676,0.0,0.0,0.0 +9572,catchment_outflow,0.04658308419514607,2012-01-30,0.0,0.0,7.470804197123684e-06,0.0,0.0,0.0,0.0,0.0,9.205596304231772,0.0,0.0,0.0 +9573,reservoir_outflow,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9574,gw1_gw2,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9575,gw2_gw1,0.00020414321718167374,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9576,urban_drainage,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9577,percolation,0.05987255349036185,2012-01-31,0.0,0.0,1.2022845740802811e-05,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 +9578,runoff,0.008916011790047366,2012-01-31,0.0,0.0,1.6678049467389315e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +9579,storm_outflow,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9580,baseflow,0.03549915566766879,2012-01-31,0.0,0.0,5.402640008017777e-06,0.0,0.0,0.0,0.0,0.0,10.07834671195888,0.0,0.0,0.0 +9581,catchment_outflow,0.04441516745771616,2012-01-31,0.0,0.0,7.070444954756708e-06,0.0,0.0,0.0,0.0,0.0,9.337592036640912,0.0,0.0,0.0 +9582,reservoir_outflow,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9583,gw1_gw2,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9584,gw2_gw1,0.00020278226240080246,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9585,urban_drainage,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9586,percolation,0.0586751024205546,2012-02-01,0.0,0.0,1.1782388825986752e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +9587,runoff,0.007132809432037892,2012-02-01,0.0,0.0,1.3342439573911452e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +9588,storm_outflow,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9589,baseflow,0.03555709553455101,2012-02-01,0.0,0.0,5.4185893800627e-06,0.0,0.0,0.0,0.0,0.0,10.065410905061507,0.0,0.0,0.0 +9590,catchment_outflow,0.04268990496658891,2012-02-01,0.0,0.0,6.752833337453845e-06,0.0,0.0,0.0,0.0,0.0,9.451019148168493,0.0,0.0,0.0 +9591,reservoir_outflow,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9592,gw1_gw2,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9593,gw2_gw1,0.0002014303806511464,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9594,urban_drainage,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9595,percolation,0.05750160037214353,2012-02-02,0.0,0.0,1.1546741049467024e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +9596,runoff,0.005706247545630315,2012-02-02,0.0,0.0,1.0673951659129163e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 +9597,storm_outflow,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9598,baseflow,0.03561195679664499,2012-02-02,0.0,0.0,5.4339097592362105e-06,0.0,0.0,0.0,0.0,0.0,10.052805561418086,0.0,0.0,0.0 +9599,catchment_outflow,0.04131820434227531,2012-02-02,0.0,0.0,6.501304925149127e-06,0.0,0.0,0.0,0.0,0.0,9.546715529364286,0.0,0.0,0.0 +9600,reservoir_outflow,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9601,gw1_gw2,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9602,gw2_gw1,0.0002000875114470446,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9603,urban_drainage,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9604,percolation,0.05635156836470065,2012-02-03,0.0,0.0,1.131580622847768e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +9605,runoff,0.004564998036504252,2012-02-03,0.0,0.0,8.53916132730333e-07,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 +9606,storm_outflow,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9607,baseflow,0.03566380582556513,2012-02-03,0.0,0.0,5.448614500409314e-06,0.0,0.0,0.0,0.0,0.0,10.040520077667294,0.0,0.0,0.0 +9608,catchment_outflow,0.04022880386206938,2012-02-03,0.0,0.0,6.302530633139647e-06,0.0,0.0,0.0,0.0,0.0,9.626078178376567,0.0,0.0,0.0 +9609,reservoir_outflow,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9610,gw1_gw2,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9611,gw2_gw1,0.00019875359470375998,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9612,urban_drainage,0.04,2012-02-04,0.0,0.0,4.444444444444445e-06,0.0,0.0,0.0,0.0,0.0,3.296428570999999,0.0,0.0,0.0 +9613,percolation,0.055224536997406655,2012-02-04,0.0,0.0,1.1089490103908129e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +9614,runoff,0.003651998429203401,2012-02-04,0.0,0.0,6.831329061842664e-07,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 +9615,storm_outflow,0.04,2012-02-04,0.0,0.0,4.444444444444445e-06,0.0,0.0,0.0,0.0,0.0,3.296428570999999,0.0,0.0,0.0 +9616,baseflow,0.035712707653494734,2012-02-04,0.0,0.0,5.462716689418061e-06,0.0,0.0,0.0,0.0,0.0,10.02854428410406,0.0,0.0,0.0 +9617,catchment_outflow,0.07936470608269813,2012-02-04,0.0,0.0,1.0590294040046772e-05,0.0,0.0,0.0,0.0,0.0,6.468033467703309,0.0,0.0,0.0 +9618,reservoir_outflow,0.040499999999999994,2012-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9619,gw1_gw2,0.0,2012-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9620,gw2_gw1,0.00019742857073925537,2012-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9621,urban_drainage,0.03399999999999999,2012-02-05,0.0,0.0,5.555555555555555e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 +9622,percolation,0.05553245681996641,2012-02-05,0.0,0.0,1.1134365360687143e-05,0.0,0.0,0.0,0.0,0.0,6.874709055479213,0.0,0.0,0.0 +9623,runoff,0.012585460486837837,2012-02-05,0.0,0.0,1.4353898544713468e-06,0.0,0.0,0.0,0.0,0.0,4.296480192589978,0.0,0.0,0.0 +9624,storm_outflow,0.03399999999999999,2012-02-05,0.0,0.0,5.555555555555555e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 +9625,baseflow,0.035762257026410914,2012-02-05,0.0,0.0,5.476895811096234e-06,0.0,0.0,0.0,0.0,0.0,10.01630091405323,0.0,0.0,0.0 +9626,catchment_outflow,0.08234771751324874,2012-02-05,0.0,0.0,1.2467841221123136e-05,0.0,0.0,0.0,0.0,0.0,6.367599451292698,0.0,0.0,0.0 +9627,reservoir_outflow,0.0,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9628,gw1_gw2,0.0,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9629,gw2_gw1,0.00019611238026762123,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9630,urban_drainage,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9631,percolation,0.05442180768356709,2012-02-06,0.0,0.0,1.09116780534734e-05,0.0,0.0,0.0,0.0,0.0,6.8747090554792125,0.0,0.0,0.0 +9632,runoff,0.008990415555916302,2012-02-06,0.0,0.0,1.1483118835770773e-06,0.0,0.0,0.0,0.0,0.0,4.374712136408567,0.0,0.0,0.0 +9633,storm_outflow,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9634,baseflow,0.0358089059030538,2012-02-06,0.0,0.0,5.4904827667021765e-06,0.0,0.0,0.0,0.0,0.0,10.004364560258281,0.0,0.0,0.0 +9635,catchment_outflow,0.0447993214589701,2012-02-06,0.0,0.0,6.638794650279254e-06,0.0,0.0,0.0,0.0,0.0,8.874594887917715,0.0,0.0,0.0 +9636,reservoir_outflow,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9637,gw1_gw2,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9638,gw2_gw1,0.00019480496439925333,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9639,urban_drainage,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9640,percolation,0.05333337152989574,2012-02-07,0.0,0.0,1.0693444492403932e-05,0.0,0.0,0.0,0.0,0.0,6.874709055479212,0.0,0.0,0.0 +9641,runoff,0.004882965729102331,2012-02-07,0.0,0.0,9.18649506861662e-07,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 +9642,storm_outflow,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9643,baseflow,0.035852717067120905,2012-02-07,0.0,0.0,5.5034901710164315e-06,0.0,0.0,0.0,0.0,0.0,9.99272561811866,0.0,0.0,0.0 +9644,catchment_outflow,0.040735682796223235,2012-02-07,0.0,0.0,6.422139677878093e-06,0.0,0.0,0.0,0.0,0.0,9.403913160937753,0.0,0.0,0.0 +9645,reservoir_outflow,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9646,gw1_gw2,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9647,gw2_gw1,0.00019350626463641163,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9648,urban_drainage,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9649,percolation,0.052266704099297845,2012-02-08,0.0,0.0,1.0479575602555856e-05,0.0,0.0,0.0,0.0,0.0,6.874709055479211,0.0,0.0,0.0 +9650,runoff,0.003906372583281865,2012-02-08,0.0,0.0,7.349196054893296e-07,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 +9651,storm_outflow,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9652,baseflow,0.03589375203470135,2012-02-08,0.0,0.0,5.515930384595279e-06,0.0,0.0,0.0,0.0,0.0,9.98137486486649,0.0,0.0,0.0 +9653,catchment_outflow,0.03980012461798321,2012-02-08,0.0,0.0,6.250849990084608e-06,0.0,0.0,0.0,0.0,0.0,9.500366277627167,0.0,0.0,0.0 +9654,reservoir_outflow,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9655,gw1_gw2,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9656,gw2_gw1,0.00019221622287233232,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9657,urban_drainage,0.024,2012-02-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +9658,percolation,0.054630911745471515,2012-02-09,0.0,0.0,1.0918084155758943e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 +9659,runoff,0.02645354146982303,2012-02-09,0.0,0.0,2.748269235238816e-06,0.0,0.0,0.0,0.0,0.0,3.599654049179957,0.0,0.0,0.0 +9660,storm_outflow,0.024,2012-02-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +9661,baseflow,0.035940594933978276,2012-02-09,0.0,0.0,5.52943576902319e-06,0.0,0.0,0.0,0.0,0.0,9.96884655987413,0.0,0.0,0.0 +9662,catchment_outflow,0.08639413640380131,2012-02-09,0.0,0.0,1.2277705004262005e-05,0.0,0.0,0.0,0.0,0.0,6.081710882352183,0.0,0.0,0.0 +9663,reservoir_outflow,0.012,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9664,gw1_gw2,0.0,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9665,gw2_gw1,0.0001909347813864315,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9666,urban_drainage,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9667,percolation,0.05353829351056208,2012-02-10,0.0,0.0,1.0699722472643763e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 +9668,runoff,0.011909189341372734,2012-02-10,0.0,0.0,2.198615388191053e-06,0.0,0.0,0.0,0.0,0.0,4.072648468191999,0.0,0.0,0.0 +9669,storm_outflow,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9670,baseflow,0.03598458918041973,2012-02-10,0.0,0.0,5.5423614857822405e-06,0.0,0.0,0.0,0.0,0.0,9.956630430967884,0.0,0.0,0.0 +9671,catchment_outflow,0.04789377852179247,2012-02-10,0.0,0.0,7.740976873973293e-06,0.0,0.0,0.0,0.0,0.0,8.493529012815307,0.0,0.0,0.0 +9672,reservoir_outflow,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9673,gw1_gw2,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9674,gw2_gw1,0.0001896618828437724,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9675,urban_drainage,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9676,percolation,0.05246752764035084,2012-02-11,0.0,0.0,1.048572802319089e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 +9677,runoff,0.009550733570749925,2012-02-11,0.0,0.0,1.7588923105528422e-06,0.0,0.0,0.0,0.0,0.0,4.075068019373735,0.0,0.0,0.0 +9678,storm_outflow,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9679,baseflow,0.036025796526569565,2012-02-11,0.0,0.0,5.554719902125763e-06,0.0,0.0,0.0,0.0,0.0,9.944716796887766,0.0,0.0,0.0 +9680,catchment_outflow,0.04557653009731949,2012-02-11,0.0,0.0,7.313612212678605e-06,0.0,0.0,0.0,0.0,0.0,8.714709784326457,0.0,0.0,0.0 +9681,reservoir_outflow,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9682,gw1_gw2,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9683,gw2_gw1,0.00018839747029133493,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9684,urban_drainage,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9685,percolation,0.05141817708754382,2012-02-12,0.0,0.0,1.0276013462727074e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 +9686,runoff,0.007877554360069506,2012-02-12,0.0,0.0,1.407113848442274e-06,0.0,0.0,0.0,0.0,0.0,4.061645279424695,0.0,0.0,0.0 +9687,storm_outflow,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9688,baseflow,0.036064277477972,2012-02-12,0.0,0.0,5.566523136027266e-06,0.0,0.0,0.0,0.0,0.0,9.933096357492971,0.0,0.0,0.0 +9689,catchment_outflow,0.043941831838041505,2012-02-12,0.0,0.0,6.97363698446954e-06,0.0,0.0,0.0,0.0,0.0,8.880507671376124,0.0,0.0,0.0 +9690,reservoir_outflow,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9691,gw1_gw2,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9692,gw2_gw1,0.00018714148715570644,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9693,urban_drainage,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9694,percolation,0.05038981354579296,2012-02-13,0.0,0.0,1.0070493193472534e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9695,runoff,0.007189754600241287,2012-02-13,0.0,0.0,1.1256910787538188e-06,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +9696,storm_outflow,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9697,baseflow,0.036100091318141556,2012-02-13,0.0,0.0,5.577783061170879e-06,0.0,0.0,0.0,0.0,0.0,9.92176017519104,0.0,0.0,0.0 +9698,catchment_outflow,0.04328984591838284,2012-02-13,0.0,0.0,6.703474139924698e-06,0.0,0.0,0.0,0.0,0.0,8.941189244450133,0.0,0.0,0.0 +9699,reservoir_outflow,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9700,gw1_gw2,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9701,gw2_gw1,0.00018589387724130547,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9702,urban_drainage,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9703,percolation,0.04938201727487709,2012-02-14,0.0,0.0,9.869083329603082e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9704,runoff,0.004748160912749678,2012-02-14,0.0,0.0,9.005528630030554e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9705,storm_outflow,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9706,baseflow,0.03613329613303339,2012-02-14,0.0,0.0,5.588511311841961e-06,0.0,0.0,0.0,0.0,0.0,9.910699657445143,0.0,0.0,0.0 +9707,catchment_outflow,0.04088145704578307,2012-02-14,0.0,0.0,6.489064174845016e-06,0.0,0.0,0.0,0.0,0.0,9.235549199879822,0.0,0.0,0.0 +9708,reservoir_outflow,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9709,gw1_gw2,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9710,gw2_gw1,0.00018465458472629594,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9711,urban_drainage,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9712,percolation,0.048394376929379555,2012-02-15,0.0,0.0,9.671701663011021e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9713,runoff,0.0037985287301997425,2012-02-15,0.0,0.0,7.204422904024442e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9714,storm_outflow,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9715,baseflow,0.03616394883502425,2012-02-15,0.0,0.0,5.598719287719883e-06,0.0,0.0,0.0,0.0,0.0,9.89990654028712,0.0,0.0,0.0 +9716,catchment_outflow,0.039962477565223996,2012-02-15,0.0,0.0,6.3191615781223265e-06,0.0,0.0,0.0,0.0,0.0,9.348391446090751,0.0,0.0,0.0 +9717,reservoir_outflow,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9718,gw1_gw2,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9719,gw2_gw1,0.0001834235541616991,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9720,urban_drainage,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9721,percolation,0.04742648939079195,2012-02-16,0.0,0.0,9.4782676297508e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9722,runoff,0.003038822984159794,2012-02-16,0.0,0.0,5.763538323219554e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9723,storm_outflow,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9724,baseflow,0.03619210518641367,2012-02-16,0.0,0.0,5.60841815857496e-06,0.0,0.0,0.0,0.0,0.0,9.889372872769435,0.0,0.0,0.0 +9725,catchment_outflow,0.03923092817057346,2012-02-16,0.0,0.0,6.1847719908969155e-06,0.0,0.0,0.0,0.0,0.0,9.440749336882638,0.0,0.0,0.0 +9726,reservoir_outflow,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9727,gw1_gw2,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9728,gw2_gw1,0.00018220073046713026,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9729,urban_drainage,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9730,percolation,0.046477959602976106,2012-02-17,0.0,0.0,9.288702277155784e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9731,runoff,0.0024310583873278354,2012-02-17,0.0,0.0,4.6108306585756437e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9732,storm_outflow,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9733,baseflow,0.03621781982245508,2012-02-17,0.0,0.0,5.617618868871413e-06,0.0,0.0,0.0,0.0,0.0,9.879091002294214,0.0,0.0,0.0 +9734,catchment_outflow,0.03864887820978292,2012-02-17,0.0,0.0,6.078701934728977e-06,0.0,0.0,0.0,0.0,0.0,9.515433918488116,0.0,0.0,0.0 +9735,reservoir_outflow,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9736,gw1_gw2,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9737,gw2_gw1,0.0001809860589304435,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9738,urban_drainage,0.007000000000000001,2012-02-18,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +9739,percolation,0.04554840041091659,2012-02-18,0.0,0.0,9.102928231612668e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9740,runoff,0.0019448467098622689,2012-02-18,0.0,0.0,3.688664526860516e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9741,storm_outflow,0.007000000000000001,2012-02-18,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +9742,baseflow,0.03624114627392623,2012-02-18,0.0,0.0,5.626332142278265e-06,0.0,0.0,0.0,0.0,0.0,9.869053560762142,0.0,0.0,0.0 +9743,catchment_outflow,0.0451859929837885,2012-02-18,0.0,0.0,1.4995198594964317e-05,0.0,0.0,0.0,0.0,0.0,8.881849310765526,0.0,0.0,0.0 +9744,reservoir_outflow,0.0035000000000000005,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9745,gw1_gw2,0.0,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9746,gw2_gw1,0.00017977948520453424,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9747,urban_drainage,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9748,percolation,0.044637432402698254,2012-02-19,0.0,0.0,8.920869666980414e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9749,runoff,0.0015558773678898147,2012-02-19,0.0,0.0,2.950931621488412e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9750,storm_outflow,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9751,baseflow,0.03626213698924816,2012-02-19,0.0,0.0,5.634568486090021e-06,0.0,0.0,0.0,0.0,0.0,9.85925345148825,0.0,0.0,0.0 +9752,catchment_outflow,0.037818014357137976,2012-02-19,0.0,0.0,5.9296616482388616e-06,0.0,0.0,0.0,0.0,0.0,9.62221573560012,0.0,0.0,0.0 +9753,reservoir_outflow,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9754,gw1_gw2,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9755,gw2_gw1,0.00017858095530307594,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9756,urban_drainage,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9757,percolation,0.04374468375464429,2012-02-20,0.0,0.0,8.742452273640807e-06,0.0,0.0,0.0,0.0,0.0,6.6845253666364055,0.0,0.0,0.0 +9758,runoff,0.0012447018943118518,2012-02-20,0.0,0.0,2.3607452971907296e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9759,storm_outflow,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9760,baseflow,0.036280843356161656,2012-02-20,0.0,0.0,5.642338195558898e-06,0.0,0.0,0.0,0.0,0.0,9.84968383683545,0.0,0.0,0.0 +9761,catchment_outflow,0.03752554525047351,2012-02-20,0.0,0.0,5.878412725277971e-06,0.0,0.0,0.0,0.0,0.0,9.658893130695452,0.0,0.0,0.0 +9762,reservoir_outflow,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9763,gw1_gw2,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9764,gw2_gw1,0.0001773904156006978,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9765,urban_drainage,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9766,percolation,0.042869790079551405,2012-02-21,0.0,0.0,8.567603228167991e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9767,runoff,0.0009957615154494814,2012-02-21,0.0,0.0,1.8885962377525841e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9768,storm_outflow,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9769,baseflow,0.03629731572297013,2012-02-21,0.0,0.0,5.6496513581404205e-06,0.0,0.0,0.0,0.0,0.0,9.840338126520287,0.0,0.0,0.0 +9770,catchment_outflow,0.03729307723841961,2012-02-21,0.0,0.0,5.838510981915679e-06,0.0,0.0,0.0,0.0,0.0,9.687003659480286,0.0,0.0,0.0 +9771,reservoir_outflow,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9772,gw1_gw2,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9773,gw2_gw1,0.00017620781283014255,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9774,urban_drainage,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9775,percolation,0.04201239427796037,2012-02-22,0.0,0.0,8.396251163604631e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 +9776,runoff,0.0007966092123595852,2012-02-22,0.0,0.0,1.5108769902020671e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9777,storm_outflow,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9778,baseflow,0.0363116034193576,2012-02-22,0.0,0.0,5.6565178576540795e-06,0.0,0.0,0.0,0.0,0.0,9.831209966548634,0.0,0.0,0.0 +9779,catchment_outflow,0.03710821263171719,2012-02-22,0.0,0.0,5.807605556674286e-06,0.0,0.0,0.0,0.0,0.0,9.708127247175657,0.0,0.0,0.0 +9780,reservoir_outflow,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9781,gw1_gw2,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9782,gw2_gw1,0.00017503309407782553,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9783,urban_drainage,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9784,percolation,0.04117214639240117,2012-02-23,0.0,0.0,8.228326140332538e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9785,runoff,0.0006372873698876682,2012-02-23,0.0,0.0,1.2087015921616537e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9786,storm_outflow,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9787,baseflow,0.036323754776790215,2012-02-23,0.0,0.0,5.662947378360777e-06,0.0,0.0,0.0,0.0,0.0,9.822293228742037,0.0,0.0,0.0 +9788,catchment_outflow,0.036961042146677885,2012-02-23,0.0,0.0,5.783817537576942e-06,0.0,0.0,0.0,0.0,0.0,9.723588726889426,0.0,0.0,0.0 +9789,reservoir_outflow,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9790,gw1_gw2,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9791,gw2_gw1,0.0001738662067838348,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9792,urban_drainage,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9793,percolation,0.04034870346455314,2012-02-24,0.0,0.0,8.063759617525886e-06,0.0,0.0,0.0,0.0,0.0,6.6845253666364055,0.0,0.0,0.0 +9794,runoff,0.0005098298959101345,2012-02-24,0.0,0.0,9.669612737293229e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9795,storm_outflow,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9796,baseflow,0.036333817148509626,2012-02-24,0.0,0.0,5.66894940895869e-06,0.0,0.0,0.0,0.0,0.0,9.813582000818254,0.0,0.0,0.0 +9797,catchment_outflow,0.03684364704441976,2012-02-24,0.0,0.0,5.765645536331622e-06,0.0,0.0,0.0,0.0,0.0,9.734487340224694,0.0,0.0,0.0 +9798,reservoir_outflow,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9799,gw1_gw2,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9800,gw2_gw1,0.0001727070987383783,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9801,urban_drainage,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9802,percolation,0.03954172939526208,2012-02-25,0.0,0.0,7.902484425175368e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9803,runoff,0.00040786391672810766,2012-02-25,0.0,0.0,7.735690189834584e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9804,storm_outflow,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9805,baseflow,0.03634183692912651,2012-02-25,0.0,0.0,5.674533246499233e-06,0.0,0.0,0.0,0.0,0.0,9.805070576992007,0.0,0.0,0.0 +9806,catchment_outflow,0.03674970084585461,2012-02-25,0.0,0.0,5.751890148397579e-06,0.0,0.0,0.0,0.0,0.0,9.741727555139635,0.0,0.0,0.0 +9807,reservoir_outflow,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9808,gw1_gw2,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9809,gw2_gw1,0.00017155571808036285,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9810,urban_drainage,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9811,percolation,0.038750894807356835,2012-02-26,0.0,0.0,7.74443473667186e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 +9812,runoff,0.00032629113338248614,2012-02-26,0.0,0.0,6.188552151867668e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9813,storm_outflow,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9814,baseflow,0.03634785957382208,2012-02-26,0.0,0.0,5.679708000224665e-06,0.0,0.0,0.0,0.0,0.0,9.796753449064399,0.0,0.0,0.0 +9815,catchment_outflow,0.03667415070720457,2012-02-26,0.0,0.0,5.741593521743342e-06,0.0,0.0,0.0,0.0,0.0,9.746048638126966,0.0,0.0,0.0 +9816,reservoir_outflow,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9817,gw1_gw2,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9818,gw2_gw1,0.0001704120132934861,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9819,urban_drainage,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9820,percolation,0.0379758769112097,2012-02-27,0.0,0.0,7.589546041938424e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9821,runoff,0.0002610329067059889,2012-02-27,0.0,0.0,4.9508417214941327e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9822,storm_outflow,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9823,baseflow,0.036351929617165546,2012-02-27,0.0,0.0,5.684482595328949e-06,0.0,0.0,0.0,0.0,0.0,9.788625297971555,0.0,0.0,0.0 +9824,catchment_outflow,0.036612962523871535,2012-02-27,0.0,0.0,5.73399101254389e-06,0.0,0.0,0.0,0.0,0.0,9.748051608081115,0.0,0.0,0.0 +9825,reservoir_outflow,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9826,gw1_gw2,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9827,gw2_gw1,0.0001692759332048155,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9828,urban_drainage,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9829,percolation,0.0372163593729855,2012-02-28,0.0,0.0,7.437755121099655e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9830,runoff,0.0002088263253647911,2012-02-28,0.0,0.0,3.960673377195306e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9831,storm_outflow,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9832,baseflow,0.0363540906915551,2012-02-28,0.0,0.0,5.688865776643376e-06,0.0,0.0,0.0,0.0,0.0,9.780680985765098,0.0,0.0,0.0 +9833,catchment_outflow,0.03656291701691989,2012-02-28,0.0,0.0,5.728472510415329e-06,0.0,0.0,0.0,0.0,0.0,9.748222978985815,0.0,0.0,0.0 +9834,reservoir_outflow,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9835,gw1_gw2,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9836,gw2_gw1,0.00016814742698336718,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9837,urban_drainage,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9838,percolation,0.03647203218552579,2012-02-29,0.0,0.0,7.289000018677661e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9839,runoff,0.0001670610602918329,2012-02-29,0.0,0.0,3.168538701756246e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9840,storm_outflow,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9841,baseflow,0.036354385545290024,2012-02-29,0.0,0.0,5.692866112248461e-06,0.0,0.0,0.0,0.0,0.0,9.772915547998892,0.0,0.0,0.0 +9842,catchment_outflow,0.036521446605581855,2012-02-29,0.0,0.0,5.724551499266023e-06,0.0,0.0,0.0,0.0,0.0,9.746955179158721,0.0,0.0,0.0 +9843,reservoir_outflow,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9844,gw1_gw2,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9845,gw2_gw1,0.00016702644413690848,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9846,urban_drainage,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9847,percolation,0.03574259154181528,2012-03-01,0.0,0.0,7.1432200183041094e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9848,runoff,0.00013364884823346631,2012-03-01,0.0,0.0,2.5348309614049966e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9849,storm_outflow,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9850,baseflow,0.03635285606028134,2012-03-01,0.0,0.0,5.6964919970136e-06,0.0,0.0,0.0,0.0,0.0,9.76532418649822,0.0,0.0,0.0 +9851,catchment_outflow,0.03648650490851481,2012-03-01,0.0,0.0,5.72184030662765e-06,0.0,0.0,0.0,0.0,0.0,9.744563809346605,0.0,0.0,0.0 +9852,reservoir_outflow,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9853,gw1_gw2,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9854,gw2_gw1,0.00016591293450929356,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9855,urban_drainage,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9856,percolation,0.03502773971097897,2012-03-02,0.0,0.0,7.0003556179380265e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9857,runoff,0.00010691907858677305,2012-03-02,0.0,0.0,2.027864769123997e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9858,storm_outflow,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9859,baseflow,0.036349543269408084,2012-03-02,0.0,0.0,5.699751656065911e-06,0.0,0.0,0.0,0.0,0.0,9.757902262489146,0.0,0.0,0.0 +9860,catchment_outflow,0.03645646234799486,2012-03-02,0.0,0.0,5.720030303757151e-06,0.0,0.0,0.0,0.0,0.0,9.741302041348028,0.0,0.0,0.0 +9861,reservoir_outflow,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9862,gw1_gw2,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9863,gw2_gw1,0.00016480684827904215,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9864,urban_drainage,0.04,2012-03-03,0.0,0.0,1.3333333333333338e-05,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0 +9865,percolation,0.03432718491675939,2012-03-03,0.0,0.0,6.860348505579265e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9866,runoff,8.553526286941844e-05,2012-03-03,0.0,0.0,1.622291815299198e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9867,storm_outflow,0.04,2012-03-03,0.0,0.0,1.3333333333333338e-05,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0 +9868,baseflow,0.03634448737352646,2012-03-03,0.0,0.0,5.702653148189694e-06,0.0,0.0,0.0,0.0,0.0,9.750645290067267,0.0,0.0,0.0 +9869,catchment_outflow,0.07643002263639588,2012-03-03,0.0,0.0,1.9052209399676025e-05,0.0,0.0,0.0,0.0,0.0,8.51736894271263,0.0,0.0,0.0 +9870,reservoir_outflow,0.020999999999999998,2012-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9871,gw1_gw2,0.0,2012-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9872,gw2_gw1,0.0001637081359572079,2012-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9873,urban_drainage,0.04,2012-03-04,0.0,0.0,1.0928961748633867e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +9874,percolation,0.0336406412184242,2012-03-04,0.0,0.0,6.723141535467681e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9875,runoff,6.842821029553475e-05,2012-03-04,0.0,0.0,1.297833452239358e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9876,storm_outflow,0.04,2012-03-04,0.0,0.0,1.0928961748633867e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +9877,baseflow,0.036337727758138705,2012-03-04,0.0,0.0,5.705204369157889e-06,0.0,0.0,0.0,0.0,0.0,9.743548929986407,0.0,0.0,0.0 +9878,catchment_outflow,0.07640615596843424,2012-03-04,0.0,0.0,6.811078878543669e-06,0.0,0.0,0.0,0.0,0.0,8.39145078813232,0.0,0.0,0.0 +9879,reservoir_outflow,0.029500000000000005,2012-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9880,gw1_gw2,0.0,2012-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9881,gw2_gw1,0.0001626167483843588,2012-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9882,urban_drainage,0.0010000000000000044,2012-03-05,0.0,0.0,1.573770491803278e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +9883,percolation,0.032967828394055716,2012-03-05,0.0,0.0,6.588678704758327e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +9884,runoff,5.474256823642781e-05,2012-03-05,0.0,0.0,1.0382667617914869e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +9885,storm_outflow,0.0010000000000000044,2012-03-05,0.0,0.0,1.573770491803278e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +9886,baseflow,0.036329303009728496,2012-03-05,0.0,0.0,5.70741305499689e-06,0.0,0.0,0.0,0.0,0.0,9.736608983749143,0.0,0.0,0.0 +9887,catchment_outflow,0.03738404557796493,2012-03-05,0.0,0.0,7.291566214418083e-06,0.0,0.0,0.0,0.0,0.0,9.65970969744118,0.0,0.0,0.0 +9888,reservoir_outflow,0.0,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9889,gw1_gw2,0.0,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9890,gw2_gw1,0.0001615326367282677,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9891,urban_drainage,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9892,percolation,0.03245887430016816,2012-03-06,0.0,0.0,6.4888733735910474e-06,0.0,0.0,0.0,0.0,0.0,6.68778201659618,0.0,0.0,0.0 +9893,runoff,0.0010728636134924269,2012-03-06,0.0,0.0,1.1486694385395287e-07,0.0,0.0,0.0,0.0,0.0,6.90267259588467,0.0,0.0,0.0 +9894,storm_outflow,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9895,baseflow,0.0363196269379546,2012-03-06,0.0,0.0,5.709366705793375e-06,0.0,0.0,0.0,0.0,0.0,9.729797137122882,0.0,0.0,0.0 +9896,catchment_outflow,0.03739249055144702,2012-03-06,0.0,0.0,5.824233649647328e-06,0.0,0.0,0.0,0.0,0.0,9.648681410238288,0.0,0.0,0.0 +9897,reservoir_outflow,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9898,gw1_gw2,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9899,gw2_gw1,0.00016045575248302413,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9900,urban_drainage,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9901,percolation,0.032064531526172384,2012-03-07,0.0,0.0,6.413182359623936e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 +9902,runoff,0.0021797144319165855,2012-03-07,0.0,0.0,2.721817334321939e-07,0.0,0.0,0.0,0.0,0.0,7.107565515544522,0.0,0.0,0.0 +9903,storm_outflow,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9904,baseflow,0.03630898919942514,2012-03-07,0.0,0.0,5.711126244927951e-06,0.0,0.0,0.0,0.0,0.0,9.723089733962304,0.0,0.0,0.0 +9905,catchment_outflow,0.03848870363134173,2012-03-07,0.0,0.0,5.983307978360145e-06,0.0,0.0,0.0,0.0,0.0,9.574965859993473,0.0,0.0,0.0 +9906,reservoir_outflow,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9907,gw1_gw2,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9908,gw2_gw1,0.00015938604746637,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9909,urban_drainage,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9910,percolation,0.031423240895648935,2012-03-08,0.0,0.0,6.284918712431458e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 +9911,runoff,0.001028446038143544,2012-03-08,0.0,0.0,2.177453867457551e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9912,storm_outflow,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9913,baseflow,0.0362967748286657,2012-03-08,0.0,0.0,5.712560726096709e-06,0.0,0.0,0.0,0.0,0.0,9.71652878388902,0.0,0.0,0.0 +9914,catchment_outflow,0.03732522086680925,2012-03-08,0.0,0.0,5.930306112842465e-06,0.0,0.0,0.0,0.0,0.0,9.646087775786723,0.0,0.0,0.0 +9915,reservoir_outflow,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9916,gw1_gw2,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9917,gw2_gw1,0.0001583234738165018,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9918,urban_drainage,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9919,percolation,0.030794776077735952,2012-03-09,0.0,0.0,6.159220338182828e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 +9920,runoff,0.0008227568305148352,2012-03-09,0.0,0.0,1.7419630939660408e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9921,storm_outflow,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9922,baseflow,0.03628301983178838,2012-03-09,0.0,0.0,5.713677375126924e-06,0.0,0.0,0.0,0.0,0.0,9.710110536606093,0.0,0.0,0.0 +9923,catchment_outflow,0.03710577666230322,2012-03-09,0.0,0.0,5.887873684523528e-06,0.0,0.0,0.0,0.0,0.0,9.653566772256358,0.0,0.0,0.0 +9924,reservoir_outflow,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9925,gw1_gw2,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9926,gw2_gw1,0.00015726798399082754,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9927,urban_drainage,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9928,percolation,0.03017888055618123,2012-03-10,0.0,0.0,6.036035931419172e-06,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 +9929,runoff,0.0006582054644118682,2012-03-10,0.0,0.0,1.3935704751728327e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9930,storm_outflow,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9931,baseflow,0.036267759483599366,2012-03-10,0.0,0.0,5.714483271517656e-06,0.0,0.0,0.0,0.0,0.0,9.703831359451785,0.0,0.0,0.0 +9932,catchment_outflow,0.03692596494801123,2012-03-10,0.0,0.0,5.853840319034939e-06,0.0,0.0,0.0,0.0,0.0,9.65848800154826,0.0,0.0,0.0 +9933,reservoir_outflow,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9934,gw1_gw2,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9935,gw2_gw1,0.00015621953076436768,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9936,urban_drainage,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9937,percolation,0.02957530294505761,2012-03-11,0.0,0.0,5.915315212790789e-06,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 +9938,runoff,0.0005265643715294945,2012-03-11,0.0,0.0,1.1148563801382662e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9939,storm_outflow,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9940,baseflow,0.036251028342253,2012-03-11,0.0,0.0,5.714985351370837e-06,0.0,0.0,0.0,0.0,0.0,9.697687732861871,0.0,0.0,0.0 +9941,catchment_outflow,0.036777592713782496,2012-03-11,0.0,0.0,5.826470989384664e-06,0.0,0.0,0.0,0.0,0.0,9.661354664757562,0.0,0.0,0.0 +9942,reservoir_outflow,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9943,gw1_gw2,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9944,gw2_gw1,0.00015517806722584738,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9945,urban_drainage,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9946,percolation,0.028983796886156456,2012-03-12,0.0,0.0,5.797008908534974e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +9947,runoff,0.0004212514972235957,2012-03-12,0.0,0.0,8.918851041106129e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +9948,storm_outflow,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9949,baseflow,0.03623286026361276,2012-03-12,0.0,0.0,5.715190410263747e-06,0.0,0.0,0.0,0.0,0.0,9.691676246041489,0.0,0.0,0.0 +9950,catchment_outflow,0.036654111760836355,2012-03-12,0.0,0.0,5.804378920674809e-06,0.0,0.0,0.0,0.0,0.0,9.662580959712884,0.0,0.0,0.0 +9951,reservoir_outflow,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9952,gw1_gw2,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9953,gw2_gw1,0.0001541435467776964,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9954,urban_drainage,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9955,percolation,0.02840412094843333,2012-03-13,0.0,0.0,5.6810687303642745e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +9956,runoff,0.00033700119777887647,2012-03-13,0.0,0.0,7.135080832884903e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9957,storm_outflow,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9958,baseflow,0.03621328841532481,2012-03-13,0.0,0.0,5.715105106063999e-06,0.0,0.0,0.0,0.0,0.0,9.685793592835278,0.0,0.0,0.0 +9959,catchment_outflow,0.036550289613103686,2012-03-13,0.0,0.0,5.7864559143928475e-06,0.0,0.0,0.0,0.0,0.0,9.662505486249113,0.0,0.0,0.0 +9960,reservoir_outflow,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9961,gw1_gw2,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9962,gw2_gw1,0.00015311592313285163,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9963,urban_drainage,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9964,percolation,0.027836038529464664,2012-03-14,0.0,0.0,5.5674473557569885e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 +9965,runoff,0.0002696009582231012,2012-03-14,0.0,0.0,5.708064666307923e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9966,storm_outflow,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9967,baseflow,0.03619234529061016,2012-03-14,0.0,0.0,5.714735961688233e-06,0.0,0.0,0.0,0.0,0.0,9.680036567785272,0.0,0.0,0.0 +9968,catchment_outflow,0.03646194624883326,2012-03-14,0.0,0.0,5.7718166083513125e-06,0.0,0.0,0.0,0.0,0.0,9.661403510512201,0.0,0.0,0.0 +9969,reservoir_outflow,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9970,gw1_gw2,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9971,gw2_gw1,0.00015209515031191503,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9972,urban_drainage,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9973,percolation,0.02727931775887537,2012-03-15,0.0,0.0,5.456098408641849e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +9974,runoff,0.00021568076657848095,2012-03-15,0.0,0.0,4.5664517330463387e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9975,storm_outflow,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9976,baseflow,0.036170062721780825,2012-03-15,0.0,0.0,5.7140893678056166e-06,0.0,0.0,0.0,0.0,0.0,9.67440206236664,0.0,0.0,0.0 +9977,catchment_outflow,0.03638574348835931,2012-03-15,0.0,0.0,5.75975388513608e-06,0.0,0.0,0.0,0.0,0.0,9.659497797131019,0.0,0.0,0.0 +9978,reservoir_outflow,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9979,gw1_gw2,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9980,gw2_gw1,0.0001510811826429759,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9981,urban_drainage,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9982,percolation,0.026733731403697863,2012-03-16,0.0,0.0,5.346976440469012e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 +9983,runoff,0.00017254461326278477,2012-03-16,0.0,0.0,3.653161386437071e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +9984,storm_outflow,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9985,baseflow,0.036146471893485625,2012-03-16,0.0,0.0,5.7131715854872755e-06,0.0,0.0,0.0,0.0,0.0,9.668887061391954,0.0,0.0,0.0 +9986,catchment_outflow,0.03631901650674841,2012-03-16,0.0,0.0,5.749703199351646e-06,0.0,0.0,0.0,0.0,0.0,9.656967943659076,0.0,0.0,0.0 +9987,reservoir_outflow,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9988,gw1_gw2,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9989,gw2_gw1,0.00015007397475876874,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9990,urban_drainage,0.016,2012-03-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +9991,percolation,0.026199056775623904,2012-03-17,0.0,0.0,5.240036911659632e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9992,runoff,0.0001380356906102278,2012-03-17,0.0,0.0,2.9225291091496564e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +9993,storm_outflow,0.016,2012-03-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +9994,baseflow,0.03612160335569097,2012-03-17,0.0,0.0,5.711988748802707e-06,0.0,0.0,0.0,0.0,0.0,9.66348863957523,0.0,0.0,0.0 +9995,catchment_outflow,0.052259639046301196,2012-03-17,0.0,0.0,1.7741214039894205e-05,0.0,0.0,0.0,0.0,0.0,9.415469598460433,0.0,0.0,0.0 +9996,reservoir_outflow,0.008,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9997,gw1_gw2,0.0,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9998,gw2_gw1,0.0001490734815936534,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9999,urban_drainage,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10000,percolation,0.025675075640111428,2012-03-18,0.0,0.0,5.135236173426439e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10001,runoff,0.00011042855248818225,2012-03-18,0.0,0.0,2.3380232873197252e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10002,storm_outflow,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10003,baseflow,0.03609548703640202,2012-03-18,0.0,0.0,5.710546867364266e-06,0.0,0.0,0.0,0.0,0.0,9.658203958247487,0.0,0.0,0.0 +10004,catchment_outflow,0.036205915588890206,2012-03-18,0.0,0.0,5.733927100237463e-06,0.0,0.0,0.0,0.0,0.0,9.650584477246776,0.0,0.0,0.0 +10005,reservoir_outflow,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10006,gw1_gw2,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10007,gw2_gw1,0.00014807965838325998,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10008,urban_drainage,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10009,percolation,0.025161574127309193,2012-03-19,0.0,0.0,5.032531449957909e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10010,runoff,8.83428419905458e-05,2012-03-19,0.0,0.0,1.8704186298557802e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10011,storm_outflow,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10012,baseflow,0.03606815225412929,2012-03-19,0.0,0.0,5.708851828820751e-06,0.0,0.0,0.0,0.0,0.0,9.653030262216076,0.0,0.0,0.0 +10013,catchment_outflow,0.03615649509611984,2012-03-19,0.0,0.0,5.727556015119309e-06,0.0,0.0,0.0,0.0,0.0,9.646938986799091,0.0,0.0,0.0 +10014,reservoir_outflow,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10015,gw1_gw2,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10016,gw2_gw1,0.00014709246066058057,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10017,urban_drainage,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10018,percolation,0.02465834264476302,2012-03-20,0.0,0.0,4.931880820958753e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10019,runoff,7.067427359243662e-05,2012-03-20,0.0,0.0,1.496334903884624e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10020,storm_outflow,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10021,baseflow,0.036039627730105876,2012-03-20,0.0,0.0,5.7069094013010966e-06,0.0,0.0,0.0,0.0,0.0,9.647964876760453,0.0,0.0,0.0 +10022,catchment_outflow,0.03611030200369831,2012-03-20,0.0,0.0,5.721872750339943e-06,0.0,0.0,0.0,0.0,0.0,9.643095536610955,0.0,0.0,0.0 +10023,reservoir_outflow,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10024,gw1_gw2,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10025,gw2_gw1,0.0001461118442561471,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10026,urban_drainage,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10027,percolation,0.024165175791867752,2012-03-21,0.0,0.0,4.833243204539577e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10028,runoff,5.653941887394931e-05,2012-03-21,0.0,0.0,1.1970679231076994e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10029,storm_outflow,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10030,baseflow,0.03600994160026028,2012-03-21,0.0,0.0,5.7047252358091925e-06,0.0,0.0,0.0,0.0,0.0,9.643005204757504,0.0,0.0,0.0 +10031,catchment_outflow,0.03606648101913423,2012-03-21,0.0,0.0,5.716695915040269e-06,0.0,0.0,0.0,0.0,0.0,9.639112774618884,0.0,0.0,0.0 +10032,reservoir_outflow,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10033,gw1_gw2,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10034,gw2_gw1,0.00014513776529465617,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10035,urban_drainage,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10036,percolation,0.0236818722760304,2012-03-22,0.0,0.0,4.7365783404487855e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10037,runoff,4.523153509915945e-05,2012-03-22,0.0,0.0,9.576543384861596e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10038,storm_outflow,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10039,baseflow,0.03597912142694971,2012-03-22,0.0,0.0,5.702304868570791e-06,0.0,0.0,0.0,0.0,0.0,9.638148723929964,0.0,0.0,0.0 +10040,catchment_outflow,0.03602435296204887,2012-03-22,0.0,0.0,5.711881411955652e-06,0.0,0.0,0.0,0.0,0.0,9.635037235981649,0.0,0.0,0.0 +10041,reservoir_outflow,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10042,gw1_gw2,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10043,gw2_gw1,0.0001441701801926598,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10044,urban_drainage,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10045,percolation,0.02320823483050979,2012-03-23,0.0,0.0,4.64184677363981e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10046,runoff,3.618522807932756e-05,2012-03-23,0.0,0.0,7.661234707889277e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10047,storm_outflow,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10048,baseflow,0.035947194210458604,2012-03-23,0.0,0.0,5.699653723333463e-06,0.0,0.0,0.0,0.0,0.0,9.633392984211754,0.0,0.0,0.0 +10049,catchment_outflow,0.03598337943853793,2012-03-23,0.0,0.0,5.707314958041352e-06,0.0,0.0,0.0,0.0,0.0,9.63090574188099,0.0,0.0,0.0 +10050,reservoir_outflow,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10051,gw1_gw2,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10052,gw2_gw1,0.0001432090456580326,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10053,urban_drainage,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10054,percolation,0.022744070133899594,2012-03-24,0.0,0.0,4.549009838167014e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10055,runoff,2.8948182463462045e-05,2012-03-24,0.0,0.0,6.128987766311421e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10056,storm_outflow,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10057,baseflow,0.0359141864002672,2012-03-24,0.0,0.0,5.696777113620547e-06,0.0,0.0,0.0,0.0,0.0,9.628735605224488,0.0,0.0,0.0 +10058,catchment_outflow,0.035943134582730664,2012-03-24,0.0,0.0,5.702906101386859e-06,0.0,0.0,0.0,0.0,0.0,9.626747334423746,0.0,0.0,0.0 +10059,reservoir_outflow,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10060,gw1_gw2,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10061,gw2_gw1,0.0001422543186873071,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10062,urban_drainage,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10063,percolation,0.022289188731221602,2012-03-25,0.0,0.0,4.458029641403674e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10064,runoff,2.315854597076964e-05,2012-03-25,0.0,0.0,4.903190213049137e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10065,storm_outflow,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10066,baseflow,0.03588012390609459,2012-03-25,0.0,0.0,5.693680244940005e-06,0.0,0.0,0.0,0.0,0.0,9.624174273859692,0.0,0.0,0.0 +10067,catchment_outflow,0.03590328245206536,2012-03-25,0.0,0.0,5.698583435153054e-06,0.0,0.0,0.0,0.0,0.0,9.622584833834077,0.0,0.0,0.0 +10068,reservoir_outflow,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10069,gw1_gw2,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10070,gw2_gw1,0.00014130595656247635,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10071,urban_drainage,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10072,percolation,0.02184340495659717,2012-03-26,0.0,0.0,4.3688690485756006e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10073,runoff,1.8526836776615712e-05,2012-03-26,0.0,0.0,3.92255217043931e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10074,storm_outflow,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10075,baseflow,0.035845032108720844,2012-03-26,0.0,0.0,5.690368216949093e-06,0.0,0.0,0.0,0.0,0.0,9.619706741961586,0.0,0.0,0.0 +10076,catchment_outflow,0.03586355894549746,2012-03-26,0.0,0.0,5.694290769119533e-06,0.0,0.0,0.0,0.0,0.0,9.61843608942598,0.0,0.0,0.0 +10077,reservoir_outflow,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10078,gw1_gw2,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10079,gw2_gw1,0.00014036391685223748,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10080,urban_drainage,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10081,percolation,0.021406536857465228,2012-03-27,0.0,0.0,4.281491667604089e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10082,runoff,1.482146942129257e-05,2012-03-27,0.0,0.0,3.1380417363514477e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10083,storm_outflow,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10084,baseflow,0.03580893587059271,2012-03-27,0.0,0.0,5.686846025575732e-06,0.0,0.0,0.0,0.0,0.0,9.615330824105543,0.0,0.0,0.0 +10085,catchment_outflow,0.035823757340014,2012-03-27,0.0,0.0,5.689984067312083e-06,0.0,0.0,0.0,0.0,0.0,9.614314983142522,0.0,0.0,0.0 +10086,reservoir_outflow,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10087,gw1_gw2,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10088,gw2_gw1,0.00013942815740666247,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10089,urban_drainage,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10090,percolation,0.020978406120315922,2012-03-28,0.0,0.0,4.195861834252007e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10091,runoff,1.1857175537034056e-05,2012-03-28,0.0,0.0,2.510433389081158e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10092,storm_outflow,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10093,baseflow,0.03577185954621701,2012-03-28,0.0,0.0,5.683118565097423e-06,0.0,0.0,0.0,0.0,0.0,9.611044395467651,0.0,0.0,0.0 +10094,catchment_outflow,0.035783716721754046,2012-03-28,0.0,0.0,5.685628998486504e-06,0.0,0.0,0.0,0.0,0.0,9.610232233684306,0.0,0.0,0.0 +10095,reservoir_outflow,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10096,gw1_gw2,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10097,gw2_gw1,0.00013849863635719827,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10098,urban_drainage,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10099,percolation,0.020558837997909602,2012-03-29,0.0,0.0,4.111944597566966e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 +10100,runoff,9.485740429627245e-06,2012-03-29,0.0,0.0,2.0083467112649263e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10101,storm_outflow,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10102,baseflow,0.03573382699234624,2012-03-29,0.0,0.0,5.679190630178598e-06,0.0,0.0,0.0,0.0,0.0,9.606845389781022,0.0,0.0,0.0 +10103,catchment_outflow,0.03574331273277587,2012-03-29,0.0,0.0,5.681198976889863e-06,0.0,0.0,0.0,0.0,0.0,9.606196040258066,0.0,0.0,0.0 +10104,reservoir_outflow,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10105,gw1_gw2,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10106,gw2_gw1,0.00013757531211453511,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10107,urban_drainage,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10108,percolation,0.02014766123795141,2012-03-30,0.0,0.0,4.0297057056156265e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 +10109,runoff,7.588592343701796e-06,2012-03-30,0.0,0.0,1.6066773690119414e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +10110,storm_outflow,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10111,baseflow,0.03569486157796026,2012-03-30,0.0,0.0,5.67506691786719e-06,0.0,0.0,0.0,0.0,0.0,9.60273179737473,0.0,0.0,0.0 +10112,catchment_outflow,0.03570245017030396,2012-03-30,0.0,0.0,5.676673595236202e-06,0.0,0.0,0.0,0.0,0.0,9.602212597544094,0.0,0.0,0.0 +10113,reservoir_outflow,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10114,gw1_gw2,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10115,gw2_gw1,0.0001366581433671854,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10116,urban_drainage,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10117,percolation,0.01974470801319238,2012-03-31,0.0,0.0,3.949111591503314e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10118,runoff,6.070873874961437e-06,2012-03-31,0.0,0.0,1.2853418952095533e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +10119,storm_outflow,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10120,baseflow,0.03565498619404833,2012-03-31,0.0,0.0,5.670752029551281e-06,0.0,0.0,0.0,0.0,0.0,9.5987016632915,0.0,0.0,0.0 +10121,catchment_outflow,0.035661057067923295,2012-03-31,0.0,0.0,5.67203737144649e-06,0.0,0.0,0.0,0.0,0.0,9.598286507386238,0.0,0.0,0.0 +10122,reservoir_outflow,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10123,gw1_gw2,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10124,gw2_gw1,0.0001357470890779311,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10125,urban_drainage,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10126,percolation,0.019349813852928534,2012-04-01,0.0,0.0,3.870129359673248e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10127,runoff,4.8566990999691495e-06,2012-04-01,0.0,0.0,1.0282735161676424e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +10128,storm_outflow,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10129,baseflow,0.035614223263195535,2012-04-01,0.0,0.0,5.666250472876586e-06,0.0,0.0,0.0,0.0,0.0,9.594753085480445,0.0,0.0,0.0 +10130,catchment_outflow,0.035619079962295505,2012-04-01,0.0,0.0,5.667278746392754e-06,0.0,0.0,0.0,0.0,0.0,9.594421107739809,0.0,0.0,0.0 +10131,reservoir_outflow,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10132,gw1_gw2,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10133,gw2_gw1,0.00013484210848400125,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10134,urban_drainage,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10135,percolation,0.018962817575869963,2012-04-02,0.0,0.0,3.792726772479783e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10136,runoff,3.88535927997532e-06,2012-04-02,0.0,0.0,8.226188129341139e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +10137,storm_outflow,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10138,baseflow,0.03557259474897722,2012-04-02,0.0,0.0,5.661566663625593e-06,0.0,0.0,0.0,0.0,0.0,9.59088421306139,0.0,0.0,0.0 +10139,catchment_outflow,0.035576480108257195,2012-04-02,0.0,0.0,5.662389282438528e-06,0.0,0.0,0.0,0.0,0.0,9.590618735381659,0.0,0.0,0.0 +10140,reservoir_outflow,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10141,gw1_gw2,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10142,gw2_gw1,0.00013394316109440748,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10143,urban_drainage,0.002000000000000001,2012-04-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 +10144,percolation,0.018583561224352566,2012-04-03,0.0,0.0,3.7168722370301873e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10145,runoff,3.1082874239802557e-06,2012-04-03,0.0,0.0,6.580950503472911e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +10146,storm_outflow,0.002000000000000001,2012-04-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 +10147,baseflow,0.035530122165165656,2012-04-03,0.0,0.0,5.656704927559106e-06,0.0,0.0,0.0,0.0,0.0,9.587093244657462,0.0,0.0,0.0 +10148,catchment_outflow,0.03753323045258964,2012-04-03,0.0,0.0,2.2657363022609457e-05,0.0,0.0,0.0,0.0,0.0,9.623548126597855,0.0,0.0,0.0 +10149,reservoir_outflow,0.0010000000000000005,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10150,gw1_gw2,0.0,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10151,gw2_gw1,0.00013305020668710199,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10152,urban_drainage,0.008,2012-04-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 +10153,percolation,0.018211889999865515,2012-04-04,0.0,0.0,3.642534792289584e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10154,runoff,2.4866299391842046e-06,2012-04-04,0.0,0.0,5.26476040277833e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +10155,storm_outflow,0.008,2012-04-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 +10156,baseflow,0.035486826584752405,2012-04-04,0.0,0.0,5.651669502220933e-06,0.0,0.0,0.0,0.0,0.0,9.583378426792816,0.0,0.0,0.0 +10157,catchment_outflow,0.043489313214691586,2012-04-04,0.0,0.0,6.652195978261211e-06,0.0,0.0,0.0,0.0,0.0,9.695355447410245,0.0,0.0,0.0 +10158,reservoir_outflow,0.004,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10159,gw1_gw2,0.0,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10160,gw2_gw1,0.00013216320530915482,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10161,urban_drainage,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10162,percolation,0.017847652199868204,2012-04-05,0.0,0.0,3.569684096443792e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10163,runoff,1.9893039513473638e-06,2012-04-05,0.0,0.0,4.211808322222664e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +10164,storm_outflow,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10165,baseflow,0.035442728648790195,2012-04-05,0.0,0.0,5.64646453870649e-06,0.0,0.0,0.0,0.0,0.0,9.579738052352546,0.0,0.0,0.0 +10166,catchment_outflow,0.03544471795274154,2012-04-05,0.0,0.0,5.646885719538712e-06,0.0,0.0,0.0,0.0,0.0,9.57960224806324,0.0,0.0,0.0 +10167,reservoir_outflow,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10168,gw1_gw2,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10169,gw2_gw1,0.0001312821172737344,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10170,urban_drainage,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10171,percolation,0.01749069915587084,2012-04-06,0.0,0.0,3.498290414514916e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10172,runoff,1.591443161077891e-06,2012-04-06,0.0,0.0,3.3694466577781305e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +10173,storm_outflow,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10174,baseflow,0.03539784857505789,2012-04-06,0.0,0.0,5.64109410339601e-06,0.0,0.0,0.0,0.0,0.0,9.576170459101958,0.0,0.0,0.0 +10175,catchment_outflow,0.03539944001821897,2012-04-06,0.0,0.0,5.641431048061788e-06,0.0,0.0,0.0,0.0,0.0,9.576061837096605,0.0,0.0,0.0 +10176,reservoir_outflow,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10177,gw1_gw2,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10178,gw2_gw1,0.00013040690315904157,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10179,urban_drainage,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10180,percolation,0.01714088517275342,2012-04-07,0.0,0.0,3.428324606224618e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10181,runoff,1.2731545288623127e-06,2012-04-07,0.0,0.0,2.695557326222505e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +10182,storm_outflow,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10183,baseflow,0.03535220616655214,2012-04-07,0.0,0.0,5.635562179653083e-06,0.0,0.0,0.0,0.0,0.0,9.57267402826252,0.0,0.0,0.0 +10184,catchment_outflow,0.035353479321081,2012-04-07,0.0,0.0,5.635831735385705e-06,0.0,0.0,0.0,0.0,0.0,9.572587143602433,0.0,0.0,0.0 +10185,reservoir_outflow,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10186,gw1_gw2,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10187,gw2_gw1,0.00012953752380440164,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10188,urban_drainage,0.0009999999999999983,2012-04-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0 +10189,percolation,0.016798067469298354,2012-04-08,0.0,0.0,3.3597581141001255e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10190,runoff,1.0185236230898502e-06,2012-04-08,0.0,0.0,2.156445860978004e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +10191,storm_outflow,0.0009999999999999983,2012-04-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0 +10192,baseflow,0.03530582081980901,2012-04-08,0.0,0.0,5.6298726694892004e-06,0.0,0.0,0.0,0.0,0.0,9.569247183142,0.0,0.0,0.0 +10193,catchment_outflow,0.036306839343432096,2012-04-08,0.0,0.0,9.630088314075299e-06,0.0,0.0,0.0,0.0,0.0,9.5773058488492,0.0,0.0,0.0 +10194,reservoir_outflow,0.0004999999999999991,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10195,gw1_gw2,0.0,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10196,gw2_gw1,0.00012867394031221835,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10197,urban_drainage,0.04,2012-04-09,0.0,0.0,5.263157894736843e-07,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +10198,percolation,0.016462106119912386,2012-04-09,0.0,0.0,3.2925629518181233e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10199,runoff,0.0,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10200,storm_outflow,0.04,2012-04-09,0.0,0.0,5.263157894736843e-07,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +10201,baseflow,0.03525871153305926,2012-04-09,0.0,0.0,5.624029395195023e-06,0.0,0.0,0.0,0.0,0.0,9.565888387816337,0.0,0.0,0.0 +10202,catchment_outflow,0.07525871153305927,2012-04-09,0.0,0.0,6.150345184668708e-06,0.0,0.0,0.0,0.0,0.0,9.680827623303337,0.0,0.0,0.0 +10203,reservoir_outflow,0.03799999999999999,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10204,gw1_gw2,0.0,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10205,gw2_gw1,0.000127816114043533,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10206,urban_drainage,0.02999999999999998,2012-04-10,0.0,0.0,1.4736842105263154e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +10207,percolation,0.016132863997514138,2012-04-10,0.0,0.0,3.2267116927817606e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10208,runoff,0.0,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10209,storm_outflow,0.02999999999999998,2012-04-10,0.0,0.0,1.4736842105263154e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +10210,baseflow,0.0352108969142204,2012-04-10,0.0,0.0,5.61803610093899e-06,0.0,0.0,0.0,0.0,0.0,9.562596145860999,0.0,0.0,0.0 +10211,catchment_outflow,0.06521089691422038,2012-04-10,0.0,0.0,7.091720311465306e-06,0.0,0.0,0.0,0.0,0.0,9.663597690784293,0.0,0.0,0.0 +10212,reservoir_outflow,0.0,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10213,gw1_gw2,0.0,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10214,gw2_gw1,0.00012696400661624808,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10215,urban_drainage,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10216,percolation,0.015810206717563856,2012-04-11,0.0,0.0,3.1621774589261252e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10217,runoff,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10218,storm_outflow,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10219,baseflow,0.03516239518872876,2012-04-11,0.0,0.0,5.611896454333958e-06,0.0,0.0,0.0,0.0,0.0,9.559368999129664,0.0,0.0,0.0 +10220,catchment_outflow,0.03516239518872876,2012-04-11,0.0,0.0,5.611896454333958e-06,0.0,0.0,0.0,0.0,0.0,9.559368999129664,0.0,0.0,0.0 +10221,reservoir_outflow,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10222,gw1_gw2,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10223,gw2_gw1,0.0001261175799056602,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10224,urban_drainage,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10225,percolation,0.015494002583212577,2012-04-12,0.0,0.0,3.0989339097476025e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10226,runoff,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10227,storm_outflow,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10228,baseflow,0.035113224207214966,2012-04-12,0.0,0.0,5.605614047972492e-06,0.0,0.0,0.0,0.0,0.0,9.556205526578118,0.0,0.0,0.0 +10229,catchment_outflow,0.035113224207214966,2012-04-12,0.0,0.0,5.605614047972492e-06,0.0,0.0,0.0,0.0,0.0,9.556205526578118,0.0,0.0,0.0 +10230,reservoir_outflow,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10231,gw1_gw2,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10232,gw2_gw1,0.0001252767960396639,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10233,urban_drainage,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10234,percolation,0.015184122531548326,2012-04-13,0.0,0.0,3.0369552315526503e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10235,runoff,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10236,storm_outflow,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10237,baseflow,0.0350634014530258,2012-04-13,0.0,0.0,5.599192400931443e-06,0.0,0.0,0.0,0.0,0.0,9.553104343131475,0.0,0.0,0.0 +10238,catchment_outflow,0.0350634014530258,2012-04-13,0.0,0.0,5.599192400931443e-06,0.0,0.0,0.0,0.0,0.0,9.553104343131475,0.0,0.0,0.0 +10239,reservoir_outflow,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10240,gw1_gw2,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10241,gw2_gw1,0.00012444161739946224,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10242,urban_drainage,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10243,percolation,0.01488044008091736,2012-04-14,0.0,0.0,2.9762161269215975e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10244,runoff,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10245,storm_outflow,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10246,baseflow,0.035012944049595526,2012-04-14,0.0,0.0,5.592634960246419e-06,0.0,0.0,0.0,0.0,0.0,9.550064098592802,0.0,0.0,0.0 +10247,catchment_outflow,0.035012944049595526,2012-04-14,0.0,0.0,5.592634960246419e-06,0.0,0.0,0.0,0.0,0.0,9.550064098592802,0.0,0.0,0.0 +10248,reservoir_outflow,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10249,gw1_gw2,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10250,gw2_gw1,0.0001236120066169022,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10251,urban_drainage,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10252,percolation,0.014582831279299014,2012-04-15,0.0,0.0,2.916691804383166e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10253,runoff,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10254,storm_outflow,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10255,baseflow,0.03496186876766978,2012-04-15,0.0,0.0,5.5859451023567615e-06,0.0,0.0,0.0,0.0,0.0,9.547083476591428,0.0,0.0,0.0 +10256,catchment_outflow,0.03496186876766978,2012-04-15,0.0,0.0,5.5859451023567615e-06,0.0,0.0,0.0,0.0,0.0,9.547083476591428,0.0,0.0,0.0 +10257,reservoir_outflow,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10258,gw1_gw2,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10259,gw2_gw1,0.00012278792657252068,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10260,urban_drainage,0.02700000000000001,2012-04-16,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0 +10261,percolation,0.014291174653713032,2012-04-16,0.0,0.0,2.8583579682955023e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10262,runoff,0.0,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10263,storm_outflow,0.02700000000000001,2012-04-16,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0 +10264,baseflow,0.03491019203238489,2012-04-16,0.0,0.0,5.579126134521608e-06,0.0,0.0,0.0,0.0,0.0,9.5441611935692,0.0,0.0,0.0 +10265,catchment_outflow,0.0619101920323849,2012-04-16,0.0,0.0,1.1579126134521609e-05,0.0,0.0,0.0,0.0,0.0,9.565398256344645,0.0,0.0,0.0 +10266,reservoir_outflow,0.013500000000000002,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10267,gw1_gw2,0.0,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10268,gw2_gw1,0.00012196934039554463,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10269,urban_drainage,0.01799999999999999,2012-04-17,0.0,0.0,9.999999999999983e-07,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +10270,percolation,0.014005351160638772,2012-04-17,0.0,0.0,2.801190808929592e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +10271,runoff,0.0,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10272,storm_outflow,0.01799999999999999,2012-04-17,0.0,0.0,9.999999999999983e-07,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +10273,baseflow,0.034857929930205526,2012-04-17,0.0,0.0,5.572181296207627e-06,0.0,0.0,0.0,0.0,0.0,9.541295997803143,0.0,0.0,0.0 +10274,catchment_outflow,0.05285792993020552,2012-04-17,0.0,0.0,6.572181296207625e-06,0.0,0.0,0.0,0.0,0.0,9.552773406024471,0.0,0.0,0.0 +10275,reservoir_outflow,0.009,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10276,gw1_gw2,0.0,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10277,gw2_gw1,0.00012115621145945,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10278,urban_drainage,0.04,2012-04-18,0.0,0.0,5.128205128205127e-07,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0 +10279,percolation,0.013725244137425999,2012-04-18,0.0,0.0,2.7451669927510007e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +10280,runoff,0.0,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10281,storm_outflow,0.04,2012-04-18,0.0,0.0,5.128205128205127e-07,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0 +10282,baseflow,0.03480509821572358,2012-04-18,0.0,0.0,5.565113760448985e-06,0.0,0.0,0.0,0.0,0.0,9.538486668462939,0.0,0.0,0.0 +10283,catchment_outflow,0.07480509821572358,2012-04-18,0.0,0.0,6.077934273269498e-06,0.0,0.0,0.0,0.0,0.0,9.607664025420071,0.0,0.0,0.0 +10284,reservoir_outflow,0.039,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10285,gw1_gw2,0.0,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10286,gw2_gw1,0.00012034850338338288,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10287,urban_drainage,0.04,2012-04-19,0.0,0.0,1.2656846699399893e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042553,0.0,0.0,0.0 +10288,percolation,0.01682058293387428,2012-04-19,0.0,0.0,3.4582803581882324e-06,0.0,0.0,0.0,0.0,0.0,7.2956606799455095,0.0,0.0,0.0 +10289,runoff,0.02305763999235028,2012-04-19,0.0,0.0,2.560228199976384e-06,0.0,0.0,0.0,0.0,0.0,9.734175780969188,0.0,0.0,0.0 +10290,storm_outflow,0.04,2012-04-19,0.0,0.0,1.2656846699399893e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042553,0.0,0.0,0.0 +10291,baseflow,0.034760136927518955,2012-04-19,0.0,0.0,5.559846676943334e-06,0.0,0.0,0.0,0.0,0.0,9.53577338509579,0.0,0.0,0.0 +10292,catchment_outflow,0.09781777691986923,2012-04-19,0.0,0.0,9.385759546859708e-06,0.0,0.0,0.0,0.0,0.0,9.643824169609093,0.0,0.0,0.0 +10293,reservoir_outflow,0.004499999999999999,2012-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10294,gw1_gw2,0.0,2012-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10295,gw2_gw1,0.00011954618002718576,2012-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10296,urban_drainage,0.004999999999999998,2012-04-20,0.0,0.0,1.221494817239498e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0 +10297,percolation,0.018521033827644133,2012-04-20,0.0,0.0,3.8524823189867675e-06,0.0,0.0,0.0,0.0,0.0,7.569335049122665,0.0,0.0,0.0 +10298,runoff,0.02292332965673942,2012-04-20,0.0,0.0,3.592741119855441e-06,0.0,0.0,0.0,0.0,0.0,9.77525391713784,0.0,0.0,0.0 +10299,storm_outflow,0.004999999999999998,2012-04-20,0.0,0.0,1.221494817239498e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0 +10300,baseflow,0.03471953916976927,2012-04-20,0.0,0.0,5.555578266048442e-06,0.0,0.0,0.0,0.0,0.0,9.533150908544298,0.0,0.0,0.0 +10301,catchment_outflow,0.06264286882650869,2012-04-20,0.0,0.0,1.0369814203143382e-05,0.0,0.0,0.0,0.0,0.0,9.63391647280751,0.0,0.0,0.0 +10302,reservoir_outflow,0.0,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10303,gw1_gw2,0.0,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10304,gw2_gw1,0.00011874920549370671,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10305,urban_drainage,0.0009999999999999983,2012-04-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0 +10306,percolation,0.02042984501456678,2012-04-21,0.0,0.0,4.292028567346997e-06,0.0,0.0,0.0,0.0,0.0,7.825307329068979,0.0,0.0,0.0 +10307,runoff,0.0282158991352842,2012-04-21,0.0,0.0,4.596179211684235e-06,0.0,0.0,0.0,0.0,0.0,9.831725609983907,0.0,0.0,0.0 +10308,storm_outflow,0.0009999999999999983,2012-04-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0 +10309,baseflow,0.03468381493438126,2012-04-21,0.0,0.0,5.552419391801688e-06,0.0,0.0,0.0,0.0,0.0,9.530635976168504,0.0,0.0,0.0 +10310,catchment_outflow,0.06389971406966546,2012-04-21,0.0,0.0,1.1148598603485923e-05,0.0,0.0,0.0,0.0,0.0,9.6700936789609,0.0,0.0,0.0 +10311,reservoir_outflow,0.0004999999999999991,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10312,gw1_gw2,0.0,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10313,gw2_gw1,0.00011795754412382565,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10314,urban_drainage,0.008,2012-04-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 +10315,percolation,0.022944708481829598,2012-04-22,0.0,0.0,4.863528182174632e-06,0.0,0.0,0.0,0.0,0.0,8.095234728637555,0.0,0.0,0.0 +10316,runoff,0.03617749904840341,2012-04-22,0.0,0.0,5.8680773232626384e-06,0.0,0.0,0.0,0.0,0.0,9.90048804868733,0.0,0.0,0.0 +10317,storm_outflow,0.008,2012-04-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 +10318,baseflow,0.03465446716824989,2012-04-22,0.0,0.0,5.550697163777622e-06,0.0,0.0,0.0,0.0,0.0,9.528260029727086,0.0,0.0,0.0 +10319,catchment_outflow,0.0788319662166533,2012-04-22,0.0,0.0,1.2418774487040261e-05,0.0,0.0,0.0,0.0,0.0,9.750942338521234,0.0,0.0,0.0 +10320,reservoir_outflow,0.004,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10321,gw1_gw2,0.0,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10322,gw2_gw1,0.00011717116049592136,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10323,urban_drainage,0.024,2012-04-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 +10324,percolation,0.026981088015395574,2012-04-23,0.0,0.0,5.759255304817269e-06,0.0,0.0,0.0,0.0,0.0,8.41669587850042,0.0,0.0,0.0 +10325,runoff,0.051492930562237374,2012-04-23,0.0,0.0,8.00445414623054e-06,0.0,0.0,0.0,0.0,0.0,9.985465601714546,0.0,0.0,0.0 +10326,storm_outflow,0.024,2012-04-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 +10327,baseflow,0.03463528372036775,2012-04-23,0.0,0.0,5.551218559130221e-06,0.0,0.0,0.0,0.0,0.0,9.526095242335627,0.0,0.0,0.0 +10328,catchment_outflow,0.11012821428260514,2012-04-23,0.0,0.0,1.4555672705360761e-05,0.0,0.0,0.0,0.0,0.0,9.872958842100969,0.0,0.0,0.0 +10329,reservoir_outflow,0.012,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10330,gw1_gw2,0.0,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10331,gw2_gw1,0.00011639001942622685,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10332,urban_drainage,0.04,2012-04-24,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 +10333,percolation,0.03416380929232636,2012-04-24,0.0,0.0,7.290261594765059e-06,0.0,0.0,0.0,0.0,0.0,8.798731458121146,0.0,0.0,0.0 +10334,runoff,0.08141311623945102,2012-04-24,0.0,0.0,1.1890867970464892e-05,0.0,0.0,0.0,0.0,0.0,10.080826560498007,0.0,0.0,0.0 +10335,storm_outflow,0.04,2012-04-24,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 +10336,baseflow,0.034634105034297646,2012-04-24,0.0,0.0,5.555566166719308e-06,0.0,0.0,0.0,0.0,0.0,9.524301525016712,0.0,0.0,0.0 +10337,catchment_outflow,0.15604722127374868,2012-04-24,0.0,0.0,1.818717487792494e-05,0.0,0.0,0.0,0.0,0.0,9.994264244022666,0.0,0.0,0.0 +10338,reservoir_outflow,0.027000000000000003,2012-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10339,gw1_gw2,0.0,2012-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10340,gw2_gw1,0.0001156140859635002,2012-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10341,urban_drainage,0.04,2012-04-25,0.0,0.0,5.416168857029071e-07,0.0,0.0,0.0,0.0,0.0,10.334216591075268,0.0,0.0,0.0 +10342,percolation,0.044576666604536234,2012-04-25,0.0,0.0,9.39502894875706e-06,0.0,0.0,0.0,0.0,0.0,9.145276564864984,0.0,0.0,0.0 +10343,runoff,0.11937465401408366,2012-04-25,0.0,0.0,1.7014602995996244e-05,0.0,0.0,0.0,0.0,0.0,10.17771094858147,0.0,0.0,0.0 +10344,storm_outflow,0.04,2012-04-25,0.0,0.0,5.416168857029071e-07,0.0,0.0,0.0,0.0,0.0,10.334216591075268,0.0,0.0,0.0 +10345,baseflow,0.034658961438223244,2012-04-25,0.0,0.0,5.565164823674402e-06,0.0,0.0,0.0,0.0,0.0,9.523082816450273,0.0,0.0,0.0 +10346,catchment_outflow,0.1940336154523069,2012-04-25,0.0,0.0,2.3121384705373553e-05,0.0,0.0,0.0,0.0,0.0,10.09304260155375,0.0,0.0,0.0 +10347,reservoir_outflow,0.03950000000000001,2012-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10348,gw1_gw2,0.0,2012-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10349,gw2_gw1,0.00011484332539044573,2012-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10350,urban_drainage,0.04,2012-04-26,0.0,0.0,7.083061334252997e-07,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0 +10351,percolation,0.05130898617802394,2012-04-26,0.0,0.0,1.0709531299728198e-05,0.0,0.0,0.0,0.0,0.0,9.316126670901943,0.0,0.0,0.0 +10352,runoff,0.11651588590401374,2012-04-26,0.0,0.0,1.8619692163284607e-05,0.0,0.0,0.0,0.0,0.0,10.226198093977855,0.0,0.0,0.0 +10353,storm_outflow,0.04,2012-04-26,0.0,0.0,7.083061334252997e-07,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0 +10354,baseflow,0.03470058650007274,2012-04-26,0.0,0.0,5.578025739864537e-06,0.0,0.0,0.0,0.0,0.0,9.522317792636384,0.0,0.0,0.0 +10355,catchment_outflow,0.19121647240408648,2012-04-26,0.0,0.0,2.4906024036574443e-05,0.0,0.0,0.0,0.0,0.0,10.135095606019085,0.0,0.0,0.0 +10356,reservoir_outflow,0.022000000000000002,2012-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10357,gw1_gw2,0.0,2012-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10358,gw2_gw1,0.00011407770322122702,2012-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10359,urban_drainage,0.04,2012-04-27,0.0,0.0,6.279175750409538e-07,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0 +10360,percolation,0.061148287022370525,2012-04-27,0.0,0.0,1.2543561130331502e-05,0.0,0.0,0.0,0.0,0.0,9.510206584540276,0.0,0.0,0.0 +10361,runoff,0.1461551816458637,2012-04-27,0.0,0.0,2.1723155252620572e-05,0.0,0.0,0.0,0.0,0.0,10.33416436205642,0.0,0.0,0.0 +10362,storm_outflow,0.04,2012-04-27,0.0,0.0,6.279175750409538e-07,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0 +10363,baseflow,0.03476670575137849,2012-04-27,0.0,0.0,5.595439578340705e-06,0.0,0.0,0.0,0.0,0.0,9.52226453912754,0.0,0.0,0.0 +10364,catchment_outflow,0.2209218873972422,2012-04-27,0.0,0.0,2.794651240600223e-05,0.0,0.0,0.0,0.0,0.0,10.239583550570929,0.0,0.0,0.0 +10365,reservoir_outflow,0.035500000000000004,2012-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10366,gw1_gw2,0.0,2012-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10367,gw2_gw1,0.00011331718519969058,2012-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10368,urban_drainage,0.04,2012-04-28,0.0,0.0,3.8880304736164885e-07,0.0,0.0,0.0,0.0,0.0,10.659612098855124,0.0,0.0,0.0 +10369,percolation,0.08150210938919379,2012-04-28,0.0,0.0,1.6001308718363514e-05,0.0,0.0,0.0,0.0,0.0,9.780208130396774,0.0,0.0,0.0 +10370,runoff,0.23405520621090906,2012-04-28,0.0,0.0,2.974058690422526e-05,0.0,0.0,0.0,0.0,0.0,10.489372993997897,0.0,0.0,0.0 +10371,storm_outflow,0.04,2012-04-28,0.0,0.0,3.8880304736164885e-07,0.0,0.0,0.0,0.0,0.0,10.659612098855124,0.0,0.0,0.0 +10372,baseflow,0.03488354426047303,2012-04-28,0.0,0.0,5.621454251190762e-06,0.0,0.0,0.0,0.0,0.0,9.523771191278115,0.0,0.0,0.0 +10373,catchment_outflow,0.3089387504713821,2012-04-28,0.0,0.0,3.5750844202777665e-05,0.0,0.0,0.0,0.0,0.0,10.402384718853149,0.0,0.0,0.0 +10374,reservoir_outflow,0.07849999999999999,2012-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10375,gw1_gw2,0.0,2012-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10376,gw2_gw1,0.00011256173729812247,2012-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10377,urban_drainage,0.04,2012-04-29,0.0,0.0,4.0577838884453563e-07,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0 +10378,percolation,0.09400618172596151,2012-04-29,0.0,0.0,1.7983043128757093e-05,0.0,0.0,0.0,0.0,0.0,9.908661452609529,0.0,0.0,0.0 +10379,runoff,0.22338484158998712,2012-04-29,0.0,0.0,3.146500480591637e-05,0.0,0.0,0.0,0.0,0.0,10.536260480153619,0.0,0.0,0.0 +10380,storm_outflow,0.04,2012-04-29,0.0,0.0,4.0577838884453563e-07,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0 +10381,baseflow,0.03503135085413674,2012-04-29,0.0,0.0,5.652358223384677e-06,0.0,0.0,0.0,0.0,0.0,9.52635331150536,0.0,0.0,0.0 +10382,catchment_outflow,0.2984161924441238,2012-04-29,0.0,0.0,3.7523141418145586e-05,0.0,0.0,0.0,0.0,0.0,10.44275666603057,0.0,0.0,0.0 +10383,reservoir_outflow,0.045,2012-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10384,gw1_gw2,0.0,2012-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10385,gw2_gw1,0.00011181132571635999,2012-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10386,urban_drainage,0.04,2012-04-30,0.0,0.0,3.726584133905365e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 +10387,percolation,0.11144255296768657,2012-04-30,0.0,0.0,2.0539027978653033e-05,0.0,0.0,0.0,0.0,0.0,10.054599911665507,0.0,0.0,0.0 +10388,runoff,0.27119865709316554,2012-04-30,0.0,0.0,3.4890822886303375e-05,0.0,0.0,0.0,0.0,0.0,10.653648092650755,0.0,0.0,0.0 +10389,storm_outflow,0.04,2012-04-30,0.0,0.0,3.726584133905365e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 +10390,baseflow,0.03522237885942062,2012-04-30,0.0,0.0,5.6895748977728485e-06,0.0,0.0,0.0,0.0,0.0,9.530531702603907,0.0,0.0,0.0 +10391,catchment_outflow,0.3464210359525861,2012-04-30,0.0,0.0,4.095305619746676e-05,0.0,0.0,0.0,0.0,0.0,10.558134650437722,0.0,0.0,0.0 +10392,reservoir_outflow,0.065,2012-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10393,gw1_gw2,0.0,2012-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10394,gw2_gw1,0.00011106591687806145,2012-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10395,urban_drainage,0.04,2012-05-01,0.0,0.0,4.972482378163278e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 +10396,percolation,0.11103710224071628,2012-05-01,0.0,0.0,2.0404030172983046e-05,0.0,0.0,0.0,0.0,0.0,10.067525981266865,0.0,0.0,0.0 +10397,runoff,0.17521308268208433,2012-05-01,0.0,0.0,2.8831934155386274e-05,0.0,0.0,0.0,0.0,0.0,10.57130684051329,0.0,0.0,0.0 +10398,storm_outflow,0.04,2012-05-01,0.0,0.0,4.972482378163278e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 +10399,baseflow,0.035411915667873856,2012-05-01,0.0,0.0,5.726361035960874e-06,0.0,0.0,0.0,0.0,0.0,9.534741181779069,0.0,0.0,0.0 +10400,catchment_outflow,0.2506249983499582,2012-05-01,0.0,0.0,3.5055543429163474e-05,0.0,0.0,0.0,0.0,0.0,10.463806948688557,0.0,0.0,0.0 +10401,reservoir_outflow,0.0,2012-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10402,gw1_gw2,0.0,2012-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10403,gw2_gw1,0.00011032547743230482,2012-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10404,urban_drainage,0.04,2012-05-02,0.0,0.0,5.360148383723921e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +10405,percolation,0.1181013004271518,2012-05-02,0.0,0.0,2.1355309038350254e-05,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +10406,runoff,0.19858068784752875,2012-05-02,0.0,0.0,2.7596745553731922e-05,0.0,0.0,0.0,0.0,0.0,10.701661750599438,0.0,0.0,0.0 +10407,storm_outflow,0.04,2012-05-02,0.0,0.0,5.360148383723921e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +10408,baseflow,0.03561863912977205,2012-05-02,0.0,0.0,5.765433405966847e-06,0.0,0.0,0.0,0.0,0.0,9.539735309057914,0.0,0.0,0.0 +10409,catchment_outflow,0.2741993269773008,2012-05-02,0.0,0.0,3.3898193798071164e-05,0.0,0.0,0.0,0.0,0.0,10.573337531634849,0.0,0.0,0.0 +10410,reservoir_outflow,0.0265,2012-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10411,gw1_gw2,0.0,2012-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10412,gw2_gw1,0.00010958997424950213,2012-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10413,urban_drainage,0.039999999999999994,2012-05-03,0.0,0.0,6.907887652406209e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +10414,percolation,0.11573927441860876,2012-05-03,0.0,0.0,2.0928202857583247e-05,0.0,0.0,0.0,0.0,0.0,10.137220635163311,0.0,0.0,0.0 +10415,runoff,0.13634808518628722,2012-05-03,0.0,0.0,2.2077396442985535e-05,0.0,0.0,0.0,0.0,0.0,10.636720736382392,0.0,0.0,0.0 +10416,storm_outflow,0.039999999999999994,2012-05-03,0.0,0.0,6.907887652406209e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +10417,baseflow,0.03581894071799414,2012-05-03,0.0,0.0,5.803340329595888e-06,0.0,0.0,0.0,0.0,0.0,9.544561841943382,0.0,0.0,0.0 +10418,catchment_outflow,0.21216702590428133,2012-05-03,0.0,0.0,2.8571525537822043e-05,0.0,0.0,0.0,0.0,0.0,10.493802628090156,0.0,0.0,0.0 +10419,reservoir_outflow,0.0,2012-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10420,gw1_gw2,0.0,2012-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10421,gw2_gw1,0.00010885937442104421,2012-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10422,urban_drainage,0.04,2012-05-04,0.0,0.0,8.927035730185424e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +10423,percolation,0.11342448893023659,2012-05-04,0.0,0.0,2.050963880043158e-05,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +10424,runoff,0.10888069667619861,2012-05-04,0.0,0.0,1.7661917154388425e-05,0.0,0.0,0.0,0.0,0.0,10.635097792995282,0.0,0.0,0.0 +10425,storm_outflow,0.04,2012-05-04,0.0,0.0,8.927035730185424e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +10426,baseflow,0.03601295458852474,2012-05-04,0.0,0.0,5.840106075772976e-06,0.0,0.0,0.0,0.0,0.0,9.549228358582953,0.0,0.0,0.0 +10427,catchment_outflow,0.18489365126472335,2012-05-04,0.0,0.0,2.4394726803179944e-05,0.0,0.0,0.0,0.0,0.0,10.471528173498386,0.0,0.0,0.0 +10428,reservoir_outflow,0.0,2012-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10429,gw1_gw2,0.0,2012-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10430,gw2_gw1,0.00010813364525841251,2012-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10431,urban_drainage,0.04,2012-05-05,0.0,0.0,1.2037469679667725e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 +10432,percolation,0.11115599915163185,2012-05-05,0.0,0.0,2.009944602442295e-05,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +10433,runoff,0.08499299849933847,2012-05-05,0.0,0.0,1.4129533723510742e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261918,0.0,0.0,0.0 +10434,storm_outflow,0.04,2012-05-05,0.0,0.0,1.2037469679667725e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 +10435,baseflow,0.036200812199932514,2012-05-05,0.0,0.0,5.875754425644601e-06,0.0,0.0,0.0,0.0,0.0,9.553741991359738,0.0,0.0,0.0 +10436,catchment_outflow,0.161193810699271,2012-05-05,0.0,0.0,2.1209035117122114e-05,0.0,0.0,0.0,0.0,0.0,10.442213248613447,0.0,0.0,0.0 +10437,reservoir_outflow,0.0,2012-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10438,gw1_gw2,0.0,2012-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10439,gw2_gw1,0.00010741275429015928,2012-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10440,urban_drainage,0.04,2012-05-06,0.0,0.0,1.5521371030442358e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 +10441,percolation,0.11047053222523323,2012-05-06,0.0,0.0,1.9928473218865013e-05,0.0,0.0,0.0,0.0,0.0,10.147091262597801,0.0,0.0,0.0 +10442,runoff,0.0785151828711773,2012-05-06,0.0,0.0,1.2073680695243664e-05,0.0,0.0,0.0,0.0,0.0,10.662047699171783,0.0,0.0,0.0 +10443,storm_outflow,0.04,2012-05-06,0.0,0.0,1.5521371030442358e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 +10444,baseflow,0.03638648649999576,2012-05-06,0.0,0.0,5.910886222627652e-06,0.0,0.0,0.0,0.0,0.0,9.558245559586169,0.0,0.0,0.0 +10445,catchment_outflow,0.15490166937117306,2012-05-06,0.0,0.0,1.953670402091555e-05,0.0,0.0,0.0,0.0,0.0,10.453017702378293,0.0,0.0,0.0 +10446,reservoir_outflow,0.0,2012-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10447,gw1_gw2,0.0,2012-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10448,gw2_gw1,0.0001066966692615523,2012-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10449,urban_drainage,0.04,2012-05-07,0.0,0.0,8.684375479882483e-07,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0 +10450,percolation,0.12458773753794276,2012-05-07,0.0,0.0,2.1807502064275336e-05,0.0,0.0,0.0,0.0,0.0,10.23563764199505,0.0,0.0,0.0 +10451,runoff,0.1702043521610135,2012-05-07,0.0,0.0,1.725093892215366e-05,0.0,0.0,0.0,0.0,0.0,10.78992582539095,0.0,0.0,0.0 +10452,storm_outflow,0.04,2012-05-07,0.0,0.0,8.684375479882483e-07,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0 +10453,baseflow,0.03660698962759063,2012-05-07,0.0,0.0,5.95062776223177e-06,0.0,0.0,0.0,0.0,0.0,9.564009127406957,0.0,0.0,0.0 +10454,catchment_outflow,0.24681134178860414,2012-05-07,0.0,0.0,2.4070004232373676e-05,0.0,0.0,0.0,0.0,0.0,10.623784691879816,0.0,0.0,0.0 +10455,reservoir_outflow,0.062,2012-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10456,gw1_gw2,0.0,2012-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10457,gw2_gw1,0.00010598535813297617,2012-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10458,urban_drainage,0.04,2012-05-08,0.0,0.0,1.0046670266760072e-06,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0 +10459,percolation,0.12644397935407015,2012-05-08,0.0,0.0,2.197178779002204e-05,0.0,0.0,0.0,0.0,0.0,10.254603322429517,0.0,0.0,0.0 +10460,runoff,0.12008383449953643,2012-05-08,0.0,0.0,1.5802203694496958e-05,0.0,0.0,0.0,0.0,0.0,10.75430448481618,0.0,0.0,0.0 +10461,storm_outflow,0.04,2012-05-08,0.0,0.0,1.0046670266760072e-06,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0 +10462,baseflow,0.036831582101906825,2012-05-08,0.0,0.0,5.990680662301245e-06,0.0,0.0,0.0,0.0,0.0,9.569936206367062,0.0,0.0,0.0 +10463,catchment_outflow,0.19691541660144324,2012-05-08,0.0,0.0,2.279755138347421e-05,0.0,0.0,0.0,0.0,0.0,10.559493923243991,0.0,0.0,0.0 +10464,reservoir_outflow,0.0075,2012-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10465,gw1_gw2,0.0,2012-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10466,gw2_gw1,0.00010527878907886646,2012-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10467,urban_drainage,0.04,2012-05-09,0.0,0.0,8.529501725957475e-07,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10468,percolation,0.13546696214422574,2012-05-09,0.0,0.0,2.3057125107075564e-05,0.0,0.0,0.0,0.0,0.0,10.298155999720672,0.0,0.0,0.0 +10469,runoff,0.1629012233263068,2012-05-09,0.0,0.0,1.7724339865110774e-05,0.0,0.0,0.0,0.0,0.0,10.802783192127276,0.0,0.0,0.0 +10470,storm_outflow,0.04,2012-05-09,0.0,0.0,8.529501725957475e-07,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10471,baseflow,0.037078170552012624,2012-05-09,0.0,0.0,6.033346773413182e-06,0.0,0.0,0.0,0.0,0.0,9.576587675527367,0.0,0.0,0.0 +10472,catchment_outflow,0.23997939387831943,2012-05-09,0.0,0.0,2.4610636811119702e-05,0.0,0.0,0.0,0.0,0.0,10.631955411074554,0.0,0.0,0.0 +10473,reservoir_outflow,0.0375,2012-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10474,gw1_gw2,0.0,2012-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10475,gw2_gw1,0.00010457693048504524,2012-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10476,urban_drainage,0.04,2012-05-10,0.0,0.0,1.0602040586061102e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10477,percolation,0.13522778049895495,2012-05-10,0.0,0.0,2.2921710612248755e-05,0.0,0.0,0.0,0.0,0.0,10.307840556708321,0.0,0.0,0.0 +10478,runoff,0.11479577660335151,2012-05-10,0.0,0.0,1.5265231916470972e-05,0.0,0.0,0.0,0.0,0.0,10.776522532758745,0.0,0.0,0.0 +10479,storm_outflow,0.04,2012-05-10,0.0,0.0,1.0602040586061102e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10480,baseflow,0.03732354457687998,2012-05-10,0.0,0.0,6.075567683010271e-06,0.0,0.0,0.0,0.0,0.0,9.583211222756509,0.0,0.0,0.0 +10481,catchment_outflow,0.19211932118023148,2012-05-10,0.0,0.0,2.2401003658087353e-05,0.0,0.0,0.0,0.0,0.0,10.573428736057142,0.0,0.0,0.0 +10482,reservoir_outflow,0.0,2012-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10483,gw1_gw2,0.0,2012-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10484,gw2_gw1,0.00010387975094836577,2012-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10485,urban_drainage,0.04,2012-05-11,0.0,0.0,1.5203851200506379e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10486,percolation,0.13252322488897586,2012-05-11,0.0,0.0,2.2463276400003784e-05,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 +10487,runoff,0.08490284557008121,2012-05-11,0.0,0.0,1.2212185533176778e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 +10488,storm_outflow,0.04,2012-05-11,0.0,0.0,1.5203851200506379e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10489,baseflow,0.03756154377766022,2012-05-11,0.0,0.0,6.116536954802753e-06,0.0,0.0,0.0,0.0,0.0,9.589602747606557,0.0,0.0,0.0 +10490,catchment_outflow,0.16246438934774143,2012-05-11,0.0,0.0,1.984910760803017e-05,0.0,0.0,0.0,0.0,0.0,10.523348591477948,0.0,0.0,0.0 +10491,reservoir_outflow,0.0,2012-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10492,gw1_gw2,0.0,2012-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10493,gw2_gw1,0.00010318721927546904,2012-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10494,urban_drainage,0.04,2012-05-12,0.0,0.0,2.4848741940371148e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10495,percolation,0.12987276039119636,2012-05-12,0.0,0.0,2.201401087200371e-05,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 +10496,runoff,0.06792227645606497,2012-05-12,0.0,0.0,9.769748426541423e-06,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 +10497,storm_outflow,0.04,2012-05-12,0.0,0.0,2.4848741940371148e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10498,baseflow,0.037792321819194064,2012-05-12,0.0,0.0,6.156280639595757e-06,0.0,0.0,0.0,0.0,0.0,9.595773281884103,0.0,0.0,0.0 +10499,catchment_outflow,0.14571459827525904,2012-05-12,0.0,0.0,1.8410903260174293e-05,0.0,0.0,0.0,0.0,0.0,10.496807587962408,0.0,0.0,0.0 +10500,reservoir_outflow,0.0,2012-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10501,gw1_gw2,0.0,2012-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10502,gw2_gw1,0.00010249930448011924,2012-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10503,urban_drainage,0.023999999999999966,2012-05-13,0.0,0.0,3.050021210080618e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10504,percolation,0.12844368670157466,2012-05-13,0.0,0.0,2.1731951438587657e-05,0.0,0.0,0.0,0.0,0.0,10.314871131712378,0.0,0.0,0.0 +10505,runoff,0.06233201049991978,2012-05-13,0.0,0.0,8.343201354646542e-06,0.0,0.0,0.0,0.0,0.0,10.813642448979444,0.0,0.0,0.0 +10506,storm_outflow,0.023999999999999966,2012-05-13,0.0,0.0,3.050021210080618e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +10507,baseflow,0.03801895023140001,2012-05-13,0.0,0.0,6.195219816593238e-06,0.0,0.0,0.0,0.0,0.0,9.601846804322845,0.0,0.0,0.0 +10508,catchment_outflow,0.12435096073131977,2012-05-13,0.0,0.0,1.75884423813204e-05,0.0,0.0,0.0,0.0,0.0,10.462620979353689,0.0,0.0,0.0 +10509,reservoir_outflow,0.0,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10510,gw1_gw2,0.0,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10511,gw2_gw1,0.00010181597578373669,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10512,urban_drainage,0.005999999999999998,2012-05-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +10513,percolation,0.1284686055518544,2012-05-14,0.0,0.0,2.164683870599375e-05,0.0,0.0,0.0,0.0,0.0,10.332122223644802,0.0,0.0,0.0 +10514,runoff,0.06433294287307682,2012-05-14,0.0,0.0,7.839648737643407e-06,0.0,0.0,0.0,0.0,0.0,10.926384291851422,0.0,0.0,0.0 +10515,storm_outflow,0.005999999999999998,2012-05-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +10516,baseflow,0.03824507436970114,2012-05-14,0.0,0.0,6.233848863816738e-06,0.0,0.0,0.0,0.0,0.0,9.607979454496444,0.0,0.0,0.0 +10517,catchment_outflow,0.10857801724277796,2012-05-14,0.0,0.0,1.5073497601460146e-05,0.0,0.0,0.0,0.0,0.0,10.492311189376728,0.0,0.0,0.0 +10518,reservoir_outflow,0.002999999999999999,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10519,gw1_gw2,0.0,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10520,gw2_gw1,0.00010113720261184511,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10521,urban_drainage,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10522,percolation,0.12755826370307483,2012-05-15,0.0,0.0,2.1437608063593985e-05,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 +10523,runoff,0.05553679269829702,2012-05-15,0.0,0.0,7.01740609584841e-06,0.0,0.0,0.0,0.0,0.0,10.9691829929053,0.0,0.0,0.0 +10524,storm_outflow,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10525,baseflow,0.038468357343034575,2012-05-15,0.0,0.0,6.271858261816181e-06,0.0,0.0,0.0,0.0,0.0,9.614081892202526,0.0,0.0,0.0 +10526,catchment_outflow,0.09400515004133159,2012-05-15,0.0,0.0,1.3289264357664592e-05,0.0,0.0,0.0,0.0,0.0,10.414654721264288,0.0,0.0,0.0 +10527,reservoir_outflow,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10528,gw1_gw2,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10529,gw2_gw1,0.00010046295459478217,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10530,urban_drainage,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10531,percolation,0.12500709842901334,2012-05-16,0.0,0.0,2.1008855902322103e-05,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 +10532,runoff,0.039772507106686714,2012-05-16,0.0,0.0,5.613924876678729e-06,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 +10533,storm_outflow,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10534,baseflow,0.03868470419574952,2012-05-16,0.0,0.0,6.308700755917446e-06,0.0,0.0,0.0,0.0,0.0,9.6199795363469,0.0,0.0,0.0 +10535,catchment_outflow,0.07845721130243624,2012-05-16,0.0,0.0,1.1922625632596174e-05,0.0,0.0,0.0,0.0,0.0,10.259999530038657,0.0,0.0,0.0 +10536,reservoir_outflow,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10537,gw1_gw2,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10538,gw2_gw1,9.97932015639691e-05,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10539,urban_drainage,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10540,percolation,0.12250695646043307,2012-05-17,0.0,0.0,2.0588678784275658e-05,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 +10541,runoff,0.03181800568534937,2012-05-17,0.0,0.0,4.491139901342983e-06,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 +10542,storm_outflow,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10543,baseflow,0.03889425982641123,2012-05-17,0.0,0.0,6.344400700988341e-06,0.0,0.0,0.0,0.0,0.0,9.62568164744754,0.0,0.0,0.0 +10544,catchment_outflow,0.0707122655117606,2012-05-17,0.0,0.0,1.0835540602331323e-05,0.0,0.0,0.0,0.0,0.0,10.191211785867683,0.0,0.0,0.0 +10545,reservoir_outflow,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10546,gw1_gw2,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10547,gw2_gw1,9.912791355350948e-05,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10548,urban_drainage,0.0009999999999999983,2012-05-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +10549,percolation,0.12143350243545988,2012-05-18,0.0,0.0,2.0366363458741857e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10550,runoff,0.03487382894568005,2012-05-18,0.0,0.0,4.224439421580098e-06,0.0,0.0,0.0,0.0,0.0,11.220722498202683,0.0,0.0,0.0 +10551,storm_outflow,0.0009999999999999983,2012-05-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +10552,baseflow,0.03910060793293385,2012-05-18,0.0,0.0,6.379455607882725e-06,0.0,0.0,0.0,0.0,0.0,9.631391560082655,0.0,0.0,0.0 +10553,catchment_outflow,0.07497443687861391,2012-05-18,0.0,0.0,1.4603895029462822e-05,0.0,0.0,0.0,0.0,0.0,10.407751692113145,0.0,0.0,0.0 +10554,reservoir_outflow,0.0004999999999999991,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10555,gw1_gw2,0.0,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10556,gw2_gw1,9.846706079663647e-05,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10557,urban_drainage,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10558,percolation,0.11900483238675069,2012-05-19,0.0,0.0,1.9959036189567026e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10559,runoff,0.024034683916584844,2012-05-19,0.0,0.0,3.3795515372640783e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10560,storm_outflow,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10561,baseflow,0.03930036849406839,2012-05-19,0.0,0.0,6.413404559336936e-06,0.0,0.0,0.0,0.0,0.0,9.636915606662876,0.0,0.0,0.0 +10562,catchment_outflow,0.06333505241065324,2012-05-19,0.0,0.0,9.792956096601013e-06,0.0,0.0,0.0,0.0,0.0,10.165229968345535,0.0,0.0,0.0 +10563,reservoir_outflow,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10564,gw1_gw2,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10565,gw2_gw1,9.781061372446943e-05,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10566,urban_drainage,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10567,percolation,0.11662473573901565,2012-05-20,0.0,0.0,1.955985546577568e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10568,runoff,0.019227747133267876,2012-05-20,0.0,0.0,2.703641229811263e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10569,storm_outflow,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10570,baseflow,0.03949367941218076,2012-05-20,0.0,0.0,6.4462706866030334e-06,0.0,0.0,0.0,0.0,0.0,9.64226189312741,0.0,0.0,0.0 +10571,catchment_outflow,0.05872142654544864,2012-05-20,0.0,0.0,9.149911916414296e-06,0.0,0.0,0.0,0.0,0.0,10.09636968228844,0.0,0.0,0.0 +10572,reservoir_outflow,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10573,gw1_gw2,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10574,gw2_gw1,9.715854296619142e-05,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10575,urban_drainage,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10576,percolation,0.11429224102423534,2012-05-21,0.0,0.0,1.9168658356460172e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10577,runoff,0.015382197706614299,2012-05-21,0.0,0.0,2.1629129838490098e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10578,storm_outflow,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10579,baseflow,0.0396806758162109,2012-05-21,0.0,0.0,6.478076655777675e-06,0.0,0.0,0.0,0.0,0.0,9.64743806594515,0.0,0.0,0.0 +10580,catchment_outflow,0.0550628735228252,2012-05-21,0.0,0.0,8.640989639626685e-06,0.0,0.0,0.0,0.0,0.0,10.033416193757395,0.0,0.0,0.0 +10581,reservoir_outflow,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10582,gw1_gw2,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10583,gw2_gw1,9.651081934638484e-05,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10584,urban_drainage,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10585,percolation,0.11200639620375064,2012-05-22,0.0,0.0,1.878528518933097e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10586,runoff,0.012305758165291442,2012-05-22,0.0,0.0,1.7303303870792082e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10587,storm_outflow,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10588,baseflow,0.039861490117179744,2012-05-22,0.0,0.0,6.508844677111557e-06,0.0,0.0,0.0,0.0,0.0,9.652451344251919,0.0,0.0,0.0 +10589,catchment_outflow,0.052167248282471185,2012-05-22,0.0,0.0,8.239175064190765e-06,0.0,0.0,0.0,0.0,0.0,9.977190720675493,0.0,0.0,0.0 +10590,reservoir_outflow,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10591,gw1_gw2,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10592,gw2_gw1,9.586741388414311e-05,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10593,urban_drainage,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10594,percolation,0.10976626827967566,2012-05-23,0.0,0.0,1.8409579485544354e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10595,runoff,0.009844606532233154,2012-05-23,0.0,0.0,1.3842643096633666e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10596,storm_outflow,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10597,baseflow,0.04003625206258599,2012-05-23,0.0,0.0,6.5385965141326405e-06,0.0,0.0,0.0,0.0,0.0,9.657308549326293,0.0,0.0,0.0 +10598,catchment_outflow,0.049880858594819145,2012-05-23,0.0,0.0,7.922860823796007e-06,0.0,0.0,0.0,0.0,0.0,9.928049487818999,0.0,0.0,0.0 +10599,reservoir_outflow,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10600,gw1_gw2,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10601,gw2_gw1,9.522829779129438e-05,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10602,urban_drainage,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10603,percolation,0.10757094291408215,2012-05-24,0.0,0.0,1.8041387895833467e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454356,0.0,0.0,0.0 +10604,runoff,0.007875685225786523,2012-05-24,0.0,0.0,1.1074114477306933e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10605,storm_outflow,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10606,baseflow,0.04020508878971473,2012-05-24,0.0,0.0,6.5673534925868925e-06,0.0,0.0,0.0,0.0,0.0,9.662016131657705,0.0,0.0,0.0 +10607,catchment_outflow,0.04808077401550125,2012-05-24,0.0,0.0,7.674764940317585e-06,0.0,0.0,0.0,0.0,0.0,9.885946739241907,0.0,0.0,0.0 +10608,reservoir_outflow,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10609,gw1_gw2,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10610,gw2_gw1,9.459344247311209e-05,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10611,urban_drainage,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10612,percolation,0.10541952405580046,2012-05-25,0.0,0.0,1.768056013791679e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10613,runoff,0.006300548180629219,2012-05-25,0.0,0.0,8.859291581845546e-07,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10614,storm_outflow,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10615,baseflow,0.04036812487787994,2012-05-25,0.0,0.0,6.595136509200217e-06,0.0,0.0,0.0,0.0,0.0,9.666580195833147,0.0,0.0,0.0 +10616,catchment_outflow,0.04666867305850916,2012-05-25,0.0,0.0,7.481065667384772e-06,0.0,0.0,0.0,0.0,0.0,9.850529060925762,0.0,0.0,0.0 +10617,reservoir_outflow,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10618,gw1_gw2,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10619,gw2_gw1,9.39628195229858e-05,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10620,urban_drainage,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10621,percolation,0.10331113357468447,2012-05-26,0.0,0.0,1.7326948935158458e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10622,runoff,0.005040438544503375,2012-05-26,0.0,0.0,7.087433265476438e-07,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10623,storm_outflow,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10624,baseflow,0.040525482399621955,2012-05-26,0.0,0.0,6.621966040265113e-06,0.0,0.0,0.0,0.0,0.0,9.671006523444873,0.0,0.0,0.0 +10625,catchment_outflow,0.04556592094412533,2012-05-26,0.0,0.0,7.330709366812756e-06,0.0,0.0,0.0,0.0,0.0,9.82123741489733,0.0,0.0,0.0 +10626,reservoir_outflow,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10627,gw1_gw2,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10628,gw2_gw1,9.333640072615169e-05,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10629,urban_drainage,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10630,percolation,0.10124491090319078,2012-05-27,0.0,0.0,1.6980409956455288e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10631,runoff,0.0040323508356027,2012-05-27,0.0,0.0,5.669946612381151e-07,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +10632,storm_outflow,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10633,baseflow,0.04067728097088088,2012-05-27,0.0,0.0,6.647862150055589e-06,0.0,0.0,0.0,0.0,0.0,9.675300594200312,0.0,0.0,0.0 +10634,catchment_outflow,0.04470963180648358,2012-05-27,0.0,0.0,7.214856811293704e-06,0.0,0.0,0.0,0.0,0.0,9.797399831395103,0.0,0.0,0.0 +10635,reservoir_outflow,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10636,gw1_gw2,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10637,gw2_gw1,9.271415805489625e-05,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10638,urban_drainage,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10639,percolation,0.09922001268512697,2012-05-28,0.0,0.0,1.6640801757326183e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454356,0.0,0.0,0.0 +10640,runoff,0.0032258806684821602,2012-05-28,0.0,0.0,4.5359572899049195e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10641,storm_outflow,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10642,baseflow,0.040823637800166485,2012-05-28,0.0,0.0,6.672844499073765e-06,0.0,0.0,0.0,0.0,0.0,9.67946760539664,0.0,0.0,0.0 +10643,catchment_outflow,0.044049518468648644,2012-05-28,0.0,0.0,7.1264402280642575e-06,0.0,0.0,0.0,0.0,0.0,9.778305627276504,0.0,0.0,0.0 +10644,reservoir_outflow,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10645,gw1_gw2,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10646,gw2_gw1,9.209606366802348e-05,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10647,urban_drainage,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10648,percolation,0.09723561243142444,2012-05-29,0.0,0.0,1.630798572217966e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10649,runoff,0.0025807045347857284,2012-05-29,0.0,0.0,3.628765831923936e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10650,storm_outflow,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10651,baseflow,0.040964667736744634,2012-05-29,0.0,0.0,6.6969323521315305e-06,0.0,0.0,0.0,0.0,0.0,9.683512489905969,0.0,0.0,0.0 +10652,catchment_outflow,0.04354537227153036,2012-05-29,0.0,0.0,7.0598089353239245e-06,0.0,0.0,0.0,0.0,0.0,9.763258625562177,0.0,0.0,0.0 +10653,reservoir_outflow,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10654,gw1_gw2,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10655,gw2_gw1,9.148208991014429e-05,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10656,urban_drainage,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10657,percolation,0.09529090018279596,2012-05-30,0.0,0.0,1.5981826007736065e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10658,runoff,0.0020645636278285827,2012-05-30,0.0,0.0,2.903012665539149e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10659,storm_outflow,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10660,baseflow,0.041100483317859766,2012-05-30,0.0,0.0,6.7201445862705415e-06,0.0,0.0,0.0,0.0,0.0,9.687439932802334,0.0,0.0,0.0 +10661,catchment_outflow,0.043165046945688346,2012-05-30,0.0,0.0,7.010445852824457e-06,0.0,0.0,0.0,0.0,0.0,9.75161110535367,0.0,0.0,0.0 +10662,reservoir_outflow,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10663,gw1_gw2,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10664,gw2_gw1,9.087220931114359e-05,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10665,urban_drainage,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10666,percolation,0.09338508217914003,2012-05-31,0.0,0.0,1.5662189487581344e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10667,runoff,0.0016516509022628661,2012-05-31,0.0,0.0,2.3224101324313193e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10668,storm_outflow,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10669,baseflow,0.041231194815012966,2012-05-31,0.0,0.0,6.742499698523819e-06,0.0,0.0,0.0,0.0,0.0,9.691254386748689,0.0,0.0,0.0 +10670,catchment_outflow,0.04288284571727583,2012-05-31,0.0,0.0,6.974740711766951e-06,0.0,0.0,0.0,0.0,0.0,9.742782244970984,0.0,0.0,0.0 +10671,reservoir_outflow,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10672,gw1_gw2,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10673,gw2_gw1,9.026639458245001e-05,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10674,urban_drainage,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10675,percolation,0.09151738053555722,2012-06-01,0.0,0.0,1.5348945697829718e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10676,runoff,0.001321320721810293,2012-06-01,0.0,0.0,1.8579281059450556e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10677,storm_outflow,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10678,baseflow,0.041356910279314325,2012-06-01,0.0,0.0,6.764015813522084e-06,0.0,0.0,0.0,0.0,0.0,9.694960086250445,0.0,0.0,0.0 +10679,catchment_outflow,0.04267823100112462,2012-06-01,0.0,0.0,6.949808624116589e-06,0.0,0.0,0.0,0.0,0.0,9.736265278535566,0.0,0.0,0.0 +10680,reservoir_outflow,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10681,gw1_gw2,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10682,gw2_gw1,8.966461861845688e-05,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10683,urban_drainage,0.04,2012-06-02,0.0,0.0,6.593406593406596e-06,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0 +10684,percolation,0.08968703292484607,2012-06-02,0.0,0.0,1.5041966783873122e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10685,runoff,0.0010570565774482344,2012-06-02,0.0,0.0,1.4863424847560443e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10686,storm_outflow,0.04,2012-06-02,0.0,0.0,6.593406593406596e-06,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0 +10687,baseflow,0.041477735585928155,2012-06-02,0.0,0.0,6.78471069094796e-06,0.0,0.0,0.0,0.0,0.0,9.698561060871814,0.0,0.0,0.0 +10688,catchment_outflow,0.08253479216337639,2012-06-02,0.0,0.0,1.3526751532830162e-05,0.0,0.0,0.0,0.0,0.0,12.733208760301904,0.0,0.0,0.0 +10689,reservoir_outflow,0.0455,2012-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10690,gw1_gw2,0.0,2012-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10691,gw2_gw1,8.906685449474595e-05,2012-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10692,urban_drainage,0.04,2012-06-03,0.0,0.0,1.6797488226059657e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 +10693,percolation,0.08789329226634914,2012-06-03,0.0,0.0,1.474112744819566e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10694,runoff,0.0008456452619585875,2012-06-03,0.0,0.0,1.1890739878048355e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10695,storm_outflow,0.04,2012-06-03,0.0,0.0,1.6797488226059657e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 +10696,baseflow,0.041593774477629214,2012-06-03,0.0,0.0,6.804601732841079e-06,0.0,0.0,0.0,0.0,0.0,9.702061147501942,0.0,0.0,0.0 +10697,catchment_outflow,0.0824394197395878,2012-06-03,0.0,0.0,8.603257954227528e-06,0.0,0.0,0.0,0.0,0.0,12.543022102824972,0.0,0.0,0.0 +10698,reservoir_outflow,0.08650000000000002,2012-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10699,gw1_gw2,0.0,2012-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10700,gw2_gw1,8.847307546453465e-05,2012-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10701,urban_drainage,0.04,2012-06-04,0.0,0.0,2.1284986790213274e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 +10702,percolation,0.08613542642102216,2012-06-04,0.0,0.0,1.4446304899231748e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +10703,runoff,0.00067651620956687,2012-06-04,0.0,0.0,9.512591902438682e-08,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +10704,storm_outflow,0.04,2012-06-04,0.0,0.0,2.1284986790213274e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 +10705,baseflow,0.041705128607487686,2012-06-04,0.0,0.0,6.823705990757055e-06,0.0,0.0,0.0,0.0,0.0,9.705464001749593,0.0,0.0,0.0 +10706,catchment_outflow,0.08238164481705457,2012-06-04,0.0,0.0,9.047330588802769e-06,0.0,0.0,0.0,0.0,0.0,12.544012750732477,0.0,0.0,0.0 +10707,reservoir_outflow,0.0,2012-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10708,gw1_gw2,0.0,2012-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10709,gw2_gw1,8.788325496169592e-05,2012-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10710,urban_drainage,0.04,2012-06-05,0.0,0.0,1.9482938217861838e-06,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0 +10711,percolation,0.09171073749297143,2012-06-05,0.0,0.0,1.5133167002235705e-05,0.0,0.0,0.0,0.0,0.0,10.67184785195944,0.0,0.0,0.0 +10712,runoff,0.050475031285972666,2012-06-05,0.0,0.0,3.328728071848155e-06,0.0,0.0,0.0,0.0,0.0,14.292990519283904,0.0,0.0,0.0 +10713,storm_outflow,0.04,2012-06-05,0.0,0.0,1.9482938217861838e-06,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0 +10714,baseflow,0.041830142629701396,2012-06-05,0.0,0.0,6.844479643285751e-06,0.0,0.0,0.0,0.0,0.0,9.710760886366305,0.0,0.0,0.0 +10715,catchment_outflow,0.13230517391567406,2012-06-05,0.0,0.0,1.2121501536920089e-05,0.0,0.0,0.0,0.0,0.0,13.147191011447932,0.0,0.0,0.0 +10716,reservoir_outflow,0.016,2012-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10717,gw1_gw2,0.0,2012-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10718,gw2_gw1,8.729736659542908e-05,2012-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10719,urban_drainage,0.04,2012-06-06,0.0,0.0,2.000015664114265e-06,0.0,0.0,0.0,0.0,0.0,15.113490499944918,0.0,0.0,0.0 +10720,percolation,0.09504397676520997,2012-06-06,0.0,0.0,1.551417123835812e-05,0.0,0.0,0.0,0.0,0.0,10.843262985791139,0.0,0.0,0.0 +10721,runoff,0.055250620336831605,2012-06-06,0.0,0.0,4.941874378035615e-06,0.0,0.0,0.0,0.0,0.0,13.974769813043475,0.0,0.0,0.0 +10722,storm_outflow,0.04,2012-06-06,0.0,0.0,2.000015664114265e-06,0.0,0.0,0.0,0.0,0.0,15.113490499944918,0.0,0.0,0.0 +10723,baseflow,0.04196317721504017,2012-06-06,0.0,0.0,6.866153872273433e-06,0.0,0.0,0.0,0.0,0.0,9.717173502758092,0.0,0.0,0.0 +10724,catchment_outflow,0.13721379755187177,2012-06-06,0.0,0.0,1.3808043914423314e-05,0.0,0.0,0.0,0.0,0.0,13.004652788534864,0.0,0.0,0.0 +10725,reservoir_outflow,0.0085,2012-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10726,gw1_gw2,0.0,2012-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10727,gw2_gw1,8.671538415150337e-05,2012-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10728,urban_drainage,0.04,2012-06-07,0.0,0.0,9.377653807577873e-07,0.0,0.0,0.0,0.0,0.0,14.23010214313227,0.0,0.0,0.0 +10729,percolation,0.11645806008430874,2012-06-07,0.0,0.0,1.8045074642300242e-05,0.0,0.0,0.0,0.0,0.0,11.356822818436166,0.0,0.0,0.0 +10730,runoff,0.18921879222878957,2012-06-07,0.0,0.0,1.3424122264792775e-05,0.0,0.0,0.0,0.0,0.0,13.620231353416788,0.0,0.0,0.0 +10731,storm_outflow,0.04,2012-06-07,0.0,0.0,9.377653807577873e-07,0.0,0.0,0.0,0.0,0.0,14.23010214313227,0.0,0.0,0.0 +10732,baseflow,0.04214941442221334,2012-06-07,0.0,0.0,6.8941011741985005e-06,0.0,0.0,0.0,0.0,0.0,9.728499305330915,0.0,0.0,0.0 +10733,catchment_outflow,0.2713682066510029,2012-06-07,0.0,0.0,2.1255988819749062e-05,0.0,0.0,0.0,0.0,0.0,13.105655983480593,0.0,0.0,0.0 +10734,reservoir_outflow,0.074,2012-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10735,gw1_gw2,0.0,2012-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10736,gw2_gw1,8.613728159048152e-05,2012-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10737,urban_drainage,0.04,2012-06-08,0.0,0.0,1.1311427798629465e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 +10738,percolation,0.1170296790807534,2012-06-08,0.0,0.0,1.803728651351882e-05,0.0,0.0,0.0,0.0,0.0,11.402114365606243,0.0,0.0,0.0 +10739,runoff,0.10577696747718175,2012-06-08,0.0,0.0,1.1916342358716164e-05,0.0,0.0,0.0,0.0,0.0,13.53250081428982,0.0,0.0,0.0 +10740,storm_outflow,0.04,2012-06-08,0.0,0.0,1.1311427798629465e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 +10741,baseflow,0.04233661508385969,2012-06-08,0.0,0.0,6.921959137546799e-06,0.0,0.0,0.0,0.0,0.0,9.740065099680603,0.0,0.0,0.0 +10742,catchment_outflow,0.18811358256104144,2012-06-08,0.0,0.0,1.996944427612591e-05,0.0,0.0,0.0,0.0,0.0,12.826521154050463,0.0,0.0,0.0 +10743,reservoir_outflow,0.0004999999999999991,2012-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10744,gw1_gw2,0.0,2012-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10745,gw2_gw1,8.556303304665392e-05,2012-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10746,urban_drainage,0.04,2012-06-09,0.0,0.0,1.572148805195756e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 +10747,percolation,0.11468908549913835,2012-06-09,0.0,0.0,1.7676540783248444e-05,0.0,0.0,0.0,0.0,0.0,11.402114365606243,0.0,0.0,0.0 +10748,runoff,0.07647903307471145,2012-06-09,0.0,0.0,9.53307388697293e-06,0.0,0.0,0.0,0.0,0.0,13.538622789342579,0.0,0.0,0.0 +10749,storm_outflow,0.04,2012-06-09,0.0,0.0,1.572148805195756e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 +10750,baseflow,0.04251749625989789,2012-06-09,0.0,0.0,6.948845591661054e-06,0.0,0.0,0.0,0.0,0.0,9.751273362580088,0.0,0.0,0.0 +10751,catchment_outflow,0.15899652933460934,2012-06-09,0.0,0.0,1.8054068283829742e-05,0.0,0.0,0.0,0.0,0.0,12.698862533748702,0.0,0.0,0.0 +10752,reservoir_outflow,0.0,2012-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10753,gw1_gw2,0.0,2012-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10754,gw2_gw1,8.499261282626237e-05,2012-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10755,urban_drainage,0.04,2012-06-10,0.0,0.0,1.2926398589030136e-06,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0 +10756,percolation,0.1222539384045482,2012-06-10,0.0,0.0,1.8499556162415313e-05,0.0,0.0,0.0,0.0,0.0,11.518095795257373,0.0,0.0,0.0 +10757,runoff,0.12863704224929753,2012-06-10,0.0,0.0,1.154827975901779e-05,0.0,0.0,0.0,0.0,0.0,13.235570642772338,0.0,0.0,0.0 +10758,storm_outflow,0.04,2012-06-10,0.0,0.0,1.2926398589030136e-06,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0 +10759,baseflow,0.04271683736525952,2012-06-10,0.0,0.0,6.97772236808794e-06,0.0,0.0,0.0,0.0,0.0,9.763914806456736,0.0,0.0,0.0 +10760,catchment_outflow,0.21135387961455707,2012-06-10,0.0,0.0,1.9818641986008742e-05,0.0,0.0,0.0,0.0,0.0,12.646917566789092,0.0,0.0,0.0 +10761,reservoir_outflow,0.0265,2012-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10762,gw1_gw2,0.0,2012-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10763,gw2_gw1,8.442599540749996e-05,2012-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10764,urban_drainage,0.04,2012-06-11,0.0,0.0,7.013144378209909e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +10765,percolation,0.1430753431028075,2012-06-11,0.0,0.0,2.067587235057814e-05,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 +10766,runoff,0.23442800245582054,2012-06-11,0.0,0.0,1.7726314845251357e-05,0.0,0.0,0.0,0.0,0.0,12.945174221043672,0.0,0.0,0.0 +10767,storm_outflow,0.04,2012-06-11,0.0,0.0,7.013144378209909e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +10768,baseflow,0.04296773362960339,2012-06-11,0.0,0.0,7.011967743044165e-06,0.0,0.0,0.0,0.0,0.0,9.780090561908207,0.0,0.0,0.0 +10769,catchment_outflow,0.31739573608542393,2012-06-11,0.0,0.0,2.5439597026116514e-05,0.0,0.0,0.0,0.0,0.0,12.559451028611896,0.0,0.0,0.0 +10770,reservoir_outflow,0.077,2012-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10771,gw1_gw2,0.0,2012-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10772,gw2_gw1,8.38631554382019e-05,2012-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10773,urban_drainage,0.04,2012-06-12,0.0,0.0,9.598134270861574e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +10774,percolation,0.14021383624075137,2012-06-12,0.0,0.0,2.0262354903566578e-05,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 +10775,runoff,0.12223297469069064,2012-06-12,0.0,0.0,1.4181051876201086e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 +10776,storm_outflow,0.04,2012-06-12,0.0,0.0,9.598134270861574e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +10777,baseflow,0.04321084888613126,2012-06-12,0.0,0.0,7.045093710945471e-06,0.0,0.0,0.0,0.0,0.0,9.79572239271143,0.0,0.0,0.0 +10778,catchment_outflow,0.2054438235768219,2012-06-12,0.0,0.0,2.2185959014232713e-05,0.0,0.0,0.0,0.0,0.0,12.371110363610084,0.0,0.0,0.0 +10779,reservoir_outflow,0.0,2012-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10780,gw1_gw2,0.0,2012-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10781,gw2_gw1,8.330406773513488e-05,2012-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10782,urban_drainage,0.04,2012-06-13,0.0,0.0,1.3480564611837373e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +10783,percolation,0.13740955951593634,2012-06-13,0.0,0.0,1.9857107805495243e-05,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 +10784,runoff,0.09824711305265976,2012-06-13,0.0,0.0,1.1344841500960868e-05,0.0,0.0,0.0,0.0,0.0,12.983034506097322,0.0,0.0,0.0 +10785,storm_outflow,0.04,2012-06-13,0.0,0.0,1.3480564611837373e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +10786,baseflow,0.04344634566270578,2012-06-13,0.0,0.0,7.077123746181846e-06,0.0,0.0,0.0,0.0,0.0,9.810834952067127,0.0,0.0,0.0 +10787,catchment_outflow,0.18169345871536555,2012-06-13,0.0,0.0,1.977002170832645e-05,0.0,0.0,0.0,0.0,0.0,12.290850452621832,0.0,0.0,0.0 +10788,reservoir_outflow,0.0,2012-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10789,gw1_gw2,0.0,2012-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10790,gw2_gw1,8.274870728364192e-05,2012-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10791,urban_drainage,0.04,2012-06-14,0.0,0.0,7.531448429208444e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 +10792,percolation,0.15520628679040774,2012-06-14,0.0,0.0,2.1584371153425877e-05,0.0,0.0,0.0,0.0,0.0,11.832617275379805,0.0,0.0,0.0 +10793,runoff,0.21879959856113243,2012-06-14,0.0,0.0,1.615722488090382e-05,0.0,0.0,0.0,0.0,0.0,13.033113721605504,0.0,0.0,0.0 +10794,storm_outflow,0.04,2012-06-14,0.0,0.0,7.531448429208444e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 +10795,baseflow,0.043725745515525036,2012-06-14,0.0,0.0,7.1133918646999555e-06,0.0,0.0,0.0,0.0,0.0,9.828775945605386,0.0,0.0,0.0 +10796,catchment_outflow,0.3025253440766575,2012-06-14,0.0,0.0,2.402376158852462e-05,0.0,0.0,0.0,0.0,0.0,12.615195255522867,0.0,0.0,0.0 +10797,reservoir_outflow,0.07,2012-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10798,gw1_gw2,0.0,2012-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10799,gw2_gw1,8.219704923515537e-05,2012-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10800,urban_drainage,0.04,2012-06-15,0.0,0.0,9.80992163432561e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 +10801,percolation,0.1536662851649532,2012-06-15,0.0,0.0,2.13152442459217e-05,0.0,0.0,0.0,0.0,0.0,11.843661046906638,0.0,0.0,0.0 +10802,runoff,0.1280716340887566,2012-06-15,0.0,0.0,1.3467648289937547e-05,0.0,0.0,0.0,0.0,0.0,12.876538197112357,0.0,0.0,0.0 +10803,storm_outflow,0.04,2012-06-15,0.0,0.0,9.80992163432561e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 +10804,baseflow,0.044000596864648606,2012-06-15,0.0,0.0,7.14889649565301e-06,0.0,0.0,0.0,0.0,0.0,9.84636774722933,0.0,0.0,0.0 +10805,catchment_outflow,0.21207223095340522,2012-06-15,0.0,0.0,2.1597536949023117e-05,0.0,0.0,0.0,0.0,0.0,12.341884713648348,0.0,0.0,0.0 +10806,reservoir_outflow,0.0,2012-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10807,gw1_gw2,0.0,2012-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10808,gw2_gw1,8.164906890719693e-05,2012-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10809,urban_drainage,0.04,2012-06-16,0.0,0.0,1.2129312833907004e-06,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0 +10810,percolation,0.1533923576384691,2012-06-16,0.0,0.0,2.1179630690728665e-05,0.0,0.0,0.0,0.0,0.0,11.86924454931506,0.0,0.0,0.0 +10811,runoff,0.11722056045172898,2012-06-16,0.0,0.0,1.1743089731034691e-05,0.0,0.0,0.0,0.0,0.0,12.982512472937383,0.0,0.0,0.0 +10812,storm_outflow,0.04,2012-06-16,0.0,0.0,1.2129312833907004e-06,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0 +10813,baseflow,0.04427407626658316,2012-06-16,0.0,0.0,7.183973331140698e-06,0.0,0.0,0.0,0.0,0.0,9.863888939541493,0.0,0.0,0.0 +10814,catchment_outflow,0.20149463671831214,2012-06-16,0.0,0.0,2.013999434556609e-05,0.0,0.0,0.0,0.0,0.0,12.377246162889628,0.0,0.0,0.0 +10815,reservoir_outflow,0.0010000000000000005,2012-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10816,gw1_gw2,0.0,2012-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10817,gw2_gw1,8.110474178089078e-05,2012-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10818,urban_drainage,0.04,2012-06-17,0.0,0.0,1.3600248510031918e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 +10819,percolation,0.15479084539364474,2012-06-17,0.0,0.0,2.1215579252975978e-05,0.0,0.0,0.0,0.0,0.0,11.918742667445928,0.0,0.0,0.0 +10820,runoff,0.1164776221474915,2012-06-17,0.0,0.0,1.0926275705034044e-05,0.0,0.0,0.0,0.0,0.0,13.194246892046447,0.0,0.0,0.0 +10821,storm_outflow,0.04,2012-06-17,0.0,0.0,1.3600248510031918e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 +10822,baseflow,0.04455036818940081,2012-06-17,0.0,0.0,7.219052345945286e-06,0.0,0.0,0.0,0.0,0.0,9.881737980897917,0.0,0.0,0.0 +10823,catchment_outflow,0.2010279903368923,2012-06-17,0.0,0.0,1.9505352901982522e-05,0.0,0.0,0.0,0.0,0.0,12.525892647372412,0.0,0.0,0.0 +10824,reservoir_outflow,0.008,2012-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10825,gw1_gw2,0.0,2012-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10826,gw2_gw1,8.056404350256231e-05,2012-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10827,urban_drainage,0.04,2012-06-18,0.0,0.0,2.20003106375399e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 +10828,percolation,0.1516950284857718,2012-06-18,0.0,0.0,2.079126766791645e-05,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 +10829,runoff,0.08064501727463871,2012-06-18,0.0,0.0,8.741020564027235e-06,0.0,0.0,0.0,0.0,0.0,12.975153193511474,0.0,0.0,0.0 +10830,storm_outflow,0.04,2012-06-18,0.0,0.0,2.20003106375399e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 +10831,baseflow,0.04481822984014174,2012-06-18,0.0,0.0,7.252982884250215e-06,0.0,0.0,0.0,0.0,0.0,9.8989744650838,0.0,0.0,0.0 +10832,catchment_outflow,0.16546324711478047,2012-06-18,0.0,0.0,1.819403451203144e-05,0.0,0.0,0.0,0.0,0.0,12.274758644407463,0.0,0.0,0.0 +10833,reservoir_outflow,0.0,2012-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10834,gw1_gw2,0.0,2012-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10835,gw2_gw1,8.002694987894188e-05,2012-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10836,urban_drainage,0.019999999999999945,2012-06-19,0.0,0.0,3.2000310637539876e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0 +10837,percolation,0.1486611279160564,2012-06-19,0.0,0.0,2.037544231455813e-05,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 +10838,runoff,0.06451601381971098,2012-06-19,0.0,0.0,6.992816451221789e-06,0.0,0.0,0.0,0.0,0.0,12.975153193511474,0.0,0.0,0.0 +10839,storm_outflow,0.019999999999999945,2012-06-19,0.0,0.0,3.2000310637539876e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0 +10840,baseflow,0.04507783708533153,2012-06-19,0.0,0.0,7.285789032825985e-06,0.0,0.0,0.0,0.0,0.0,9.91562682900067,0.0,0.0,0.0 +10841,catchment_outflow,0.12959385090504244,2012-06-19,0.0,0.0,1.747863654780176e-05,0.0,0.0,0.0,0.0,0.0,11.99573043796109,0.0,0.0,0.0 +10842,reservoir_outflow,0.0,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10843,gw1_gw2,0.0,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10844,gw2_gw1,7.949343687982947e-05,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10845,urban_drainage,0.04,2012-06-20,0.0,0.0,5.194805194805195e-07,0.0,0.0,0.0,0.0,0.0,15.345833330000003,0.0,0.0,0.0 +10846,percolation,0.15624130613178466,2012-06-20,0.0,0.0,2.103131187417563e-05,0.0,0.0,0.0,0.0,0.0,12.09982316852747,0.0,0.0,0.0 +10847,runoff,0.12382029003610671,2012-06-20,0.0,0.0,9.138847847339639e-06,0.0,0.0,0.0,0.0,0.0,14.145641045374415,0.0,0.0,0.0 +10848,storm_outflow,0.04,2012-06-20,0.0,0.0,5.194805194805195e-07,0.0,0.0,0.0,0.0,0.0,15.345833330000003,0.0,0.0,0.0 +10849,baseflow,0.04535574575794767,2012-06-20,0.0,0.0,7.320152839929359e-06,0.0,0.0,0.0,0.0,0.0,9.934437107788563,0.0,0.0,0.0 +10850,catchment_outflow,0.2091760357940544,2012-06-20,0.0,0.0,1.697848120674952e-05,0.0,0.0,0.0,0.0,0.0,13.462032126216128,0.0,0.0,0.0 +10851,reservoir_outflow,0.0385,2012-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10852,gw1_gw2,0.0,2012-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10853,gw2_gw1,7.89634806338313e-05,2012-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10854,urban_drainage,0.04,2012-06-21,0.0,0.0,5.981896890987799e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 +10855,percolation,0.16276137509667216,2012-06-21,0.0,0.0,2.154792527683515e-05,0.0,0.0,0.0,0.0,0.0,12.248855671790007,0.0,0.0,0.0 +10856,runoff,0.13542403834969477,2012-06-21,0.0,0.0,1.0435210411681823e-05,0.0,0.0,0.0,0.0,0.0,14.287115208278871,0.0,0.0,0.0 +10857,storm_outflow,0.04,2012-06-21,0.0,0.0,5.981896890987799e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 +10858,baseflow,0.045649259831294475,2012-06-21,0.0,0.0,7.355722271021623e-06,0.0,0.0,0.0,0.0,0.0,9.955067121802935,0.0,0.0,0.0 +10859,catchment_outflow,0.22107329818098925,2012-06-21,0.0,0.0,1.8389122371802226e-05,0.0,0.0,0.0,0.0,0.0,13.580848532562266,0.0,0.0,0.0 +10860,reservoir_outflow,0.031000000000000003,2012-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10861,gw1_gw2,0.0,2012-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10862,gw2_gw1,7.843705742960339e-05,2012-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10863,urban_drainage,0.04,2012-06-22,0.0,0.0,1.4479459934005386e-06,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 +10864,percolation,0.1610669662166417,2012-06-22,0.0,0.0,2.126938803116521e-05,0.0,0.0,0.0,0.0,0.0,12.271304793683495,0.0,0.0,0.0 +10865,runoff,0.09194512626814991,2012-06-22,0.0,0.0,8.856239195567998e-06,0.0,0.0,0.0,0.0,0.0,14.05929901125112,0.0,0.0,0.0 +10866,storm_outflow,0.04,2012-06-22,0.0,0.0,1.4479459934005386e-06,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 +10867,baseflow,0.045937804097257846,2012-06-22,0.0,0.0,7.390506435421982e-06,0.0,0.0,0.0,0.0,0.0,9.97537008263105,0.0,0.0,0.0 +10868,catchment_outflow,0.17788293036540775,2012-06-22,0.0,0.0,1.769469162439052e-05,0.0,0.0,0.0,0.0,0.0,13.289826675695465,0.0,0.0,0.0 +10869,reservoir_outflow,0.0,2012-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10870,gw1_gw2,0.0,2012-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10871,gw2_gw1,7.791414371336459e-05,2012-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10872,urban_drainage,0.04,2012-06-23,0.0,0.0,4.1277231597702497e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 +10873,percolation,0.17480651193275823,2012-06-23,0.0,0.0,2.2383122469811662e-05,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 +10874,runoff,0.1852230165631298,2012-06-23,0.0,0.0,1.2215398687353577e-05,0.0,0.0,0.0,0.0,0.0,14.578009064585878,0.0,0.0,0.0 +10875,storm_outflow,0.04,2012-06-23,0.0,0.0,4.1277231597702497e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 +10876,baseflow,0.046259975866846596,2012-06-23,0.0,0.0,7.4279879755079555e-06,0.0,0.0,0.0,0.0,0.0,9.999186604730353,0.0,0.0,0.0 +10877,catchment_outflow,0.2714829924299764,2012-06-23,0.0,0.0,2.0056158978838556e-05,0.0,0.0,0.0,0.0,0.0,13.898908827962549,0.0,0.0,0.0 +10878,reservoir_outflow,0.0635,2012-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10879,gw1_gw2,0.0,2012-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10880,gw2_gw1,7.739471608871896e-05,2012-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10881,urban_drainage,0.04,2012-06-24,0.0,0.0,9.86151942460067e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 +10882,percolation,0.17131038169410306,2012-06-24,0.0,0.0,2.193546002041543e-05,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 +10883,runoff,0.10188389061548875,2012-06-24,0.0,0.0,9.772318949882863e-06,0.0,0.0,0.0,0.0,0.0,14.268503406075386,0.0,0.0,0.0 +10884,storm_outflow,0.04,2012-06-24,0.0,0.0,9.86151942460067e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 +10885,baseflow,0.04657260188141474,2012-06-24,0.0,0.0,7.464256655620224e-06,0.0,0.0,0.0,0.0,0.0,10.022151107804277,0.0,0.0,0.0 +10886,catchment_outflow,0.1884564924969035,2012-06-24,0.0,0.0,1.8222727547963155e-05,0.0,0.0,0.0,0.0,0.0,13.430477639440147,0.0,0.0,0.0 +10887,reservoir_outflow,0.0,2012-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10888,gw1_gw2,0.0,2012-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10889,gw2_gw1,7.687875131487943e-05,2012-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10890,urban_drainage,0.022000000000000002,2012-06-25,0.0,0.0,2.03545953958307e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 +10891,percolation,0.167884174060221,2012-06-25,0.0,0.0,2.149675082000712e-05,0.0,0.0,0.0,0.0,0.0,12.496447187515498,0.0,0.0,0.0 +10892,runoff,0.0804551291060607,2012-06-25,0.0,0.0,7.81785515990629e-06,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 +10893,storm_outflow,0.022000000000000002,2012-06-25,0.0,0.0,2.03545953958307e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 +10894,baseflow,0.04687588081186175,2012-06-25,0.0,0.0,7.499337891031191e-06,0.0,0.0,0.0,0.0,0.0,10.044305099714848,0.0,0.0,0.0 +10895,catchment_outflow,0.14933100991792247,2012-06-25,0.0,0.0,1.7352652590520552e-05,0.0,0.0,0.0,0.0,0.0,13.082441213855212,0.0,0.0,0.0 +10896,reservoir_outflow,0.0,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10897,gw1_gw2,0.0,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10898,gw2_gw1,7.636622630613488e-05,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10899,urban_drainage,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10900,percolation,0.16661298247578657,2012-06-26,0.0,0.0,2.1261284261365513e-05,0.0,0.0,0.0,0.0,0.0,12.521087887475797,0.0,0.0,0.0 +10901,runoff,0.0786401004732749,2012-06-26,0.0,0.0,6.902512320453479e-06,0.0,0.0,0.0,0.0,0.0,14.359619631200871,0.0,0.0,0.0 +10902,storm_outflow,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10903,baseflow,0.047175223566021565,2012-06-26,0.0,0.0,7.533742756957026e-06,0.0,0.0,0.0,0.0,0.0,10.06617379137224,0.0,0.0,0.0 +10904,catchment_outflow,0.12581532403929646,2012-06-26,0.0,0.0,1.4436255077410505e-05,0.0,0.0,0.0,0.0,0.0,12.749765911798145,0.0,0.0,0.0 +10905,reservoir_outflow,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10906,gw1_gw2,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10907,gw2_gw1,7.58571181306067e-05,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10908,urban_drainage,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10909,percolation,0.16328072282627082,2012-06-27,0.0,0.0,2.0836058576138194e-05,0.0,0.0,0.0,0.0,0.0,12.521087887475796,0.0,0.0,0.0 +10910,runoff,0.060183151748097345,2012-06-27,0.0,0.0,5.5220098563627825e-06,0.0,0.0,0.0,0.0,0.0,14.321327205646194,0.0,0.0,0.0 +10911,storm_outflow,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10912,baseflow,0.04746548731417219,2012-06-27,0.0,0.0,7.566998546504978e-06,0.0,0.0,0.0,0.0,0.0,10.087285981026747,0.0,0.0,0.0 +10913,catchment_outflow,0.10764863906226954,2012-06-27,0.0,0.0,1.308900840286776e-05,0.0,0.0,0.0,0.0,0.0,12.454412474670313,0.0,0.0,0.0 +10914,reservoir_outflow,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10915,gw1_gw2,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10916,gw2_gw1,7.535140400971585e-05,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10917,urban_drainage,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10918,percolation,0.16199000347349685,2012-06-28,0.0,0.0,2.060532800270674e-05,0.0,0.0,0.0,0.0,0.0,12.544185836885163,0.0,0.0,0.0 +10919,runoff,0.05915664899897476,2012-06-28,0.0,0.0,5.037576545394574e-06,0.0,0.0,0.0,0.0,0.0,14.390081439466883,0.0,0.0,0.0 +10920,storm_outflow,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10921,baseflow,0.0477517986045705,2012-06-28,0.0,0.0,7.599594370145482e-06,0.0,0.0,0.0,0.0,0.0,10.108122537335351,0.0,0.0,0.0 +10922,catchment_outflow,0.10690844760354526,2012-06-28,0.0,0.0,1.2637170915540057e-05,0.0,0.0,0.0,0.0,0.0,12.477498816568035,0.0,0.0,0.0 +10923,reservoir_outflow,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10924,gw1_gw2,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10925,gw2_gw1,7.484906131640657e-05,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10926,urban_drainage,0.013999999999999999,2012-06-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0 +10927,percolation,0.16231969236447408,2012-06-29,0.0,0.0,2.0526814662430664e-05,0.0,0.0,0.0,0.0,0.0,12.58496767464177,0.0,0.0,0.0 +10928,runoff,0.06620457319872662,2012-06-29,0.0,0.0,5.14203863557586e-06,0.0,0.0,0.0,0.0,0.0,14.462816210586755,0.0,0.0,0.0 +10929,storm_outflow,0.013999999999999999,2012-06-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0 +10930,baseflow,0.04803821833897026,2012-06-29,0.0,0.0,7.631912420876194e-06,0.0,0.0,0.0,0.0,0.0,10.12904550006292,0.0,0.0,0.0 +10931,catchment_outflow,0.12824279153769688,2012-06-29,0.0,0.0,1.6773951056452054e-05,0.0,0.0,0.0,0.0,0.0,12.907632888545864,0.0,0.0,0.0 +10932,reservoir_outflow,0.006999999999999999,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10933,gw1_gw2,0.0,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10934,gw2_gw1,7.43500675742581e-05,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10935,urban_drainage,0.029999999999999995,2012-06-30,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 +10936,percolation,0.1642770847343196,2012-06-30,0.0,0.0,2.059425487262863e-05,0.0,0.0,0.0,0.0,0.0,12.641892806669919,0.0,0.0,0.0 +10937,runoff,0.07854889348900064,2012-06-30,0.0,0.0,5.70688591994929e-06,0.0,0.0,0.0,0.0,0.0,14.503962409018348,0.0,0.0,0.0 +10938,storm_outflow,0.029999999999999995,2012-06-30,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 +10939,baseflow,0.048328815504958635,2012-06-30,0.0,0.0,7.664318277005576e-06,0.0,0.0,0.0,0.0,0.0,10.15039938726245,0.0,0.0,0.0 +10940,catchment_outflow,0.15687770899395928,2012-06-30,0.0,0.0,1.4371204196954865e-05,0.0,0.0,0.0,0.0,0.0,13.268986658922062,0.0,0.0,0.0 +10941,reservoir_outflow,0.015,2012-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10942,gw1_gw2,0.0,2012-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10943,gw2_gw1,7.385440045712955e-05,2012-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10944,urban_drainage,0.0030000000000000027,2012-07-01,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0 +10945,percolation,0.16345299792720486,2012-07-01,0.0,0.0,2.0408279449455548e-05,0.0,0.0,0.0,0.0,0.0,12.667579012983037,0.0,0.0,0.0 +10946,runoff,0.06507352902648736,2012-07-01,0.0,0.0,5.318540983557747e-06,0.0,0.0,0.0,0.0,0.0,14.42955420060965,0.0,0.0,0.0 +10947,storm_outflow,0.0030000000000000027,2012-07-01,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0 +10948,baseflow,0.04861662596101425,2012-07-01,0.0,0.0,7.6961781799367e-06,0.0,0.0,0.0,0.0,0.0,10.17155678702088,0.0,0.0,0.0 +10949,catchment_outflow,0.11669015498750161,2012-07-01,0.0,0.0,1.4014719163494447e-05,0.0,0.0,0.0,0.0,0.0,12.67101355745754,0.0,0.0,0.0 +10950,reservoir_outflow,0.0014999999999999996,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10951,gw1_gw2,0.0,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10952,gw2_gw1,7.336203778738338e-05,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10953,urban_drainage,0.029999999999999995,2012-07-02,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0 +10954,percolation,0.16535278424807992,2012-07-02,0.0,0.0,2.0466407480408492e-05,0.0,0.0,0.0,0.0,0.0,12.719647878296659,0.0,0.0,0.0 +10955,runoff,0.08051526650122523,2012-07-02,0.0,0.0,5.809144853319702e-06,0.0,0.0,0.0,0.0,0.0,14.486516132048328,0.0,0.0,0.0 +10956,storm_outflow,0.029999999999999995,2012-07-02,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0 +10957,baseflow,0.04890846635673191,2012-07-02,0.0,0.0,7.728103753187881e-06,0.0,0.0,0.0,0.0,0.0,10.193093649033024,0.0,0.0,0.0 +10958,catchment_outflow,0.15942373285795713,2012-07-02,0.0,0.0,1.4537248606507583e-05,0.0,0.0,0.0,0.0,0.0,13.26658206363379,0.0,0.0,0.0 +10959,reservoir_outflow,0.015,2012-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10960,gw1_gw2,0.0,2012-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10961,gw2_gw1,7.287295753553025e-05,2012-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10962,urban_drainage,0.04,2012-07-03,0.0,0.0,6.451612903225806e-07,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 +10963,percolation,0.17078463581224107,2012-07-03,0.0,0.0,2.081751396942082e-05,0.0,0.0,0.0,0.0,0.0,12.801677021060193,0.0,0.0,0.0 +10964,runoff,0.10969569429660833,2012-07-03,0.0,0.0,7.182098011390765e-06,0.0,0.0,0.0,0.0,0.0,14.511240871061199,0.0,0.0,0.0 +10965,storm_outflow,0.04,2012-07-03,0.0,0.0,6.451612903225806e-07,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 +10966,baseflow,0.049213156780370686,2012-07-03,0.0,0.0,7.760827278728462e-06,0.0,0.0,0.0,0.0,0.0,10.2157250950895,0.0,0.0,0.0 +10967,catchment_outflow,0.19890885107697903,2012-07-03,0.0,0.0,1.5588086580441808e-05,0.0,0.0,0.0,0.0,0.0,13.541723802646446,0.0,0.0,0.0 +10968,reservoir_outflow,0.031000000000000003,2012-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10969,gw1_gw2,0.0,2012-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10970,gw2_gw1,7.238713781863027e-05,2012-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10971,urban_drainage,0.03100000000000001,2012-07-04,0.0,0.0,1.3548387096774195e-06,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 +10972,percolation,0.1706884394284169,2012-07-04,0.0,0.0,2.0688866437331935e-05,0.0,0.0,0.0,0.0,0.0,12.830458664073673,0.0,0.0,0.0 +10973,runoff,0.08593863280192571,2012-07-04,0.0,0.0,6.7046875667777155e-06,0.0,0.0,0.0,0.0,0.0,14.438294062874892,0.0,0.0,0.0 +10974,storm_outflow,0.03100000000000001,2012-07-04,0.0,0.0,1.3548387096774195e-06,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 +10975,baseflow,0.0495168449869908,2012-07-04,0.0,0.0,7.793147376624972e-06,0.0,0.0,0.0,0.0,0.0,10.238258073136073,0.0,0.0,0.0 +10976,catchment_outflow,0.1664554777889165,2012-07-04,0.0,0.0,1.5852673653080106e-05,0.0,0.0,0.0,0.0,0.0,13.299257154920243,0.0,0.0,0.0 +10977,reservoir_outflow,0.004499999999999999,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10978,gw1_gw2,0.0,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10979,gw2_gw1,7.190455689976005e-05,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10980,urban_drainage,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10981,percolation,0.16861266893506652,2012-07-05,0.0,0.0,2.039179234036474e-05,0.0,0.0,0.0,0.0,0.0,12.843008892361265,0.0,0.0,0.0 +10982,runoff,0.068587746977465,2012-07-05,0.0,0.0,5.752760826020326e-06,0.0,0.0,0.0,0.0,0.0,14.400610244642497,0.0,0.0,0.0 +10983,storm_outflow,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10984,baseflow,0.04981458454686099,2012-07-05,0.0,0.0,7.824643989034322e-06,0.0,0.0,0.0,0.0,0.0,10.26029950896935,0.0,0.0,0.0 +10985,catchment_outflow,0.118402331524326,2012-07-05,0.0,0.0,1.3577404815054647e-05,0.0,0.0,0.0,0.0,0.0,12.65868627627797,0.0,0.0,0.0 +10986,reservoir_outflow,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10987,gw1_gw2,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10988,gw2_gw1,7.142519318712458e-05,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10989,urban_drainage,0.04,2012-07-06,0.0,0.0,7.079646017699116e-07,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0 +10990,percolation,0.17930256886917448,2012-07-06,0.0,0.0,2.1132727493205153e-05,0.0,0.0,0.0,0.0,0.0,12.984016704601535,0.0,0.0,0.0 +10991,runoff,0.14732914608654657,2012-07-06,0.0,0.0,8.431445326308611e-06,0.0,0.0,0.0,0.0,0.0,14.838733321189105,0.0,0.0,0.0 +10992,storm_outflow,0.04,2012-07-06,0.0,0.0,7.079646017699116e-07,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0 +10993,baseflow,0.05013830450766677,2012-07-06,0.0,0.0,7.857914197794748e-06,0.0,0.0,0.0,0.0,0.0,10.284650626086568,0.0,0.0,0.0 +10994,catchment_outflow,0.23746745059421334,2012-07-06,0.0,0.0,1.699732412587327e-05,0.0,0.0,0.0,0.0,0.0,13.997605578974744,0.0,0.0,0.0 +10995,reservoir_outflow,0.056499999999999995,2012-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10996,gw1_gw2,0.0,2012-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10997,gw2_gw1,7.094902523263613e-05,2012-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10998,urban_drainage,0.04,2012-07-07,0.0,0.0,7.903570338724443e-07,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +10999,percolation,0.1833879541247346,2012-07-07,0.0,0.0,2.132220623735812e-05,0.0,0.0,0.0,0.0,0.0,13.058980444739438,0.0,0.0,0.0 +11000,runoff,0.13087938277798322,2012-07-07,0.0,0.0,8.785600574437122e-06,0.0,0.0,0.0,0.0,0.0,14.797574405650607,0.0,0.0,0.0 +11001,storm_outflow,0.04,2012-07-07,0.0,0.0,7.903570338724443e-07,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +11002,baseflow,0.05047142863170945,2012-07-07,0.0,0.0,7.891574927893656e-06,0.0,0.0,0.0,0.0,0.0,10.309851947076636,0.0,0.0,0.0 +11003,catchment_outflow,0.22135081140969268,2012-07-07,0.0,0.0,1.7467532536203222e-05,0.0,0.0,0.0,0.0,0.0,13.923837934064192,0.0,0.0,0.0 +11004,reservoir_outflow,0.0215,2012-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11005,gw1_gw2,0.0,2012-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11006,gw2_gw1,7.047603173084838e-05,2012-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11007,urban_drainage,0.04,2012-07-08,0.0,0.0,1.370782665401449e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +11008,percolation,0.1817830660860765,2012-07-08,0.0,0.0,2.1061012889410175e-05,0.0,0.0,0.0,0.0,0.0,13.07999593597676,0.0,0.0,0.0 +11009,runoff,0.09728402983335693,2012-07-08,0.0,0.0,7.579316382213774e-06,0.0,0.0,0.0,0.0,0.0,14.680500702750466,0.0,0.0,0.0 +11010,storm_outflow,0.04,2012-07-08,0.0,0.0,1.370782665401449e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +11011,baseflow,0.05079970772534537,2012-07-08,0.0,0.0,7.924498522797447e-06,0.0,0.0,0.0,0.0,0.0,10.334633844962976,0.0,0.0,0.0 +11012,catchment_outflow,0.1880837375587023,2012-07-08,0.0,0.0,1.687459757041267e-05,0.0,0.0,0.0,0.0,0.0,13.707602494723249,0.0,0.0,0.0 +11013,reservoir_outflow,0.0,2012-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11014,gw1_gw2,0.0,2012-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11015,gw2_gw1,7.000619151931176e-05,2012-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11016,urban_drainage,0.01899999999999998,2012-07-09,0.0,0.0,2.130895698956195e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +11017,percolation,0.178147404764355,2012-07-09,0.0,0.0,2.0639792631621976e-05,0.0,0.0,0.0,0.0,0.0,13.079995935976758,0.0,0.0,0.0 +11018,runoff,0.07450387104399468,2012-07-09,0.0,0.0,6.063453105771021e-06,0.0,0.0,0.0,0.0,0.0,14.630737156933328,0.0,0.0,0.0 +11019,storm_outflow,0.01899999999999998,2012-07-09,0.0,0.0,2.130895698956195e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +11020,baseflow,0.05111807696794289,2012-07-09,0.0,0.0,7.956286758069508e-06,0.0,0.0,0.0,0.0,0.0,10.358552933896977,0.0,0.0,0.0 +11021,catchment_outflow,0.14462194801193756,2012-07-09,0.0,0.0,1.6150635562796723e-05,0.0,0.0,0.0,0.0,0.0,13.2513222015912,0.0,0.0,0.0 +11022,reservoir_outflow,0.0,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11023,gw1_gw2,0.0,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11024,gw2_gw1,6.953948357590889e-05,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11025,urban_drainage,0.0039999999999999975,2012-07-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0 +11026,percolation,0.17733283470310346,2012-07-10,0.0,0.0,2.0449404294594117e-05,0.0,0.0,0.0,0.0,0.0,13.113497592849635,0.0,0.0,0.0 +11027,runoff,0.07643405873655502,2012-07-10,0.0,0.0,5.592120869965436e-06,0.0,0.0,0.0,0.0,0.0,14.8789451052896,0.0,0.0,0.0 +11028,storm_outflow,0.0039999999999999975,2012-07-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0 +11029,baseflow,0.05143361386228079,2012-07-10,0.0,0.0,7.98751955191082e-06,0.0,0.0,0.0,0.0,0.0,10.382299182173949,0.0,0.0,0.0 +11030,catchment_outflow,0.1318676725988358,2012-07-10,0.0,0.0,1.4579640421876257e-05,0.0,0.0,0.0,0.0,0.0,13.168938960022432,0.0,0.0,0.0 +11031,reservoir_outflow,0.0019999999999999987,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11032,gw1_gw2,0.0,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11033,gw2_gw1,6.907588701867696e-05,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11034,urban_drainage,0.04,2012-07-11,0.0,0.0,9.09090909090909e-07,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0 +11035,percolation,0.18087943540516258,2012-07-11,0.0,0.0,2.0600563397884704e-05,0.0,0.0,0.0,0.0,0.0,13.204115407814035,0.0,0.0,0.0 +11036,runoff,0.10196531539348208,2012-07-11,0.0,0.0,6.3408539932472515e-06,0.0,0.0,0.0,0.0,0.0,15.217426287323882,0.0,0.0,0.0 +11037,storm_outflow,0.04,2012-07-11,0.0,0.0,9.09090909090909e-07,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0 +11038,baseflow,0.051757228416138,2012-07-11,0.0,0.0,8.019052161525754e-06,0.0,0.0,0.0,0.0,0.0,10.40695315521937,0.0,0.0,0.0 +11039,catchment_outflow,0.1937225438096201,2012-07-11,0.0,0.0,1.5268997063863913e-05,0.0,0.0,0.0,0.0,0.0,14.134225174771883,0.0,0.0,0.0 +11040,reservoir_outflow,0.022000000000000002,2012-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11041,gw1_gw2,0.0,2012-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11042,gw2_gw1,6.861538110491949e-05,2012-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11043,urban_drainage,0.04,2012-07-12,0.0,0.0,2.833530106257379e-07,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0 +11044,percolation,0.19660902971215946,2012-07-12,0.0,0.0,2.1592058393689894e-05,0.0,0.0,0.0,0.0,0.0,13.419285263648918,0.0,0.0,0.0 +11045,runoff,0.1940368170956567,2012-07-12,0.0,0.0,9.751037407140733e-06,0.0,0.0,0.0,0.0,0.0,15.471730623216873,0.0,0.0,0.0 +11046,storm_outflow,0.04,2012-07-12,0.0,0.0,2.833530106257379e-07,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0 +11047,baseflow,0.05211935791937806,2012-07-12,0.0,0.0,8.052984677106165e-06,0.0,0.0,0.0,0.0,0.0,10.435361587165387,0.0,0.0,0.0 +11048,catchment_outflow,0.28615617501503476,2012-07-12,0.0,0.0,1.8087375094872634e-05,0.0,0.0,0.0,0.0,0.0,14.638057614437981,0.0,0.0,0.0 +11049,reservoir_outflow,0.07500000000000001,2012-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11050,gw1_gw2,0.0,2012-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11051,gw2_gw1,6.815794523085117e-05,2012-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11052,urban_drainage,0.04,2012-07-13,0.0,0.0,4.756726527061455e-07,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0 +11053,percolation,0.20001533026922727,2012-07-13,0.0,0.0,2.1682326467267503e-05,0.0,0.0,0.0,0.0,0.0,13.486217189464094,0.0,0.0,0.0 +11054,runoff,0.15113223203784606,2012-07-13,0.0,0.0,9.541194063883961e-06,0.0,0.0,0.0,0.0,0.0,15.300370778844988,0.0,0.0,0.0 +11055,storm_outflow,0.04,2012-07-13,0.0,0.0,4.756726527061455e-07,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0 +11056,baseflow,0.052489097850252686,2012-07-13,0.0,0.0,8.087058031581569e-06,0.0,0.0,0.0,0.0,0.0,10.464425617406409,0.0,0.0,0.0 +11057,catchment_outflow,0.24362132988809876,2012-07-13,0.0,0.0,1.8103924748171673e-05,0.0,0.0,0.0,0.0,0.0,14.379377610518508,0.0,0.0,0.0 +11058,reservoir_outflow,0.018999999999999996,2012-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11059,gw1_gw2,0.0,2012-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11060,gw2_gw1,6.770355892928848e-05,2012-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11061,urban_drainage,0.04,2012-07-14,0.0,0.0,7.402804531991136e-07,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0 +11062,percolation,0.20026770082288764,2012-07-14,0.0,0.0,2.1549662900691963e-05,0.0,0.0,0.0,0.0,0.0,13.52087459280988,0.0,0.0,0.0 +11063,runoff,0.1294038050656758,2012-07-14,0.0,0.0,8.6362317936732e-06,0.0,0.0,0.0,0.0,0.0,15.237578450250671,0.0,0.0,0.0 +11064,storm_outflow,0.04,2012-07-14,0.0,0.0,7.402804531991136e-07,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0 +11065,baseflow,0.05285854435768427,2012-07-14,0.0,0.0,8.120714543754345e-06,0.0,0.0,0.0,0.0,0.0,10.493375904272261,0.0,0.0,0.0 +11066,catchment_outflow,0.2222623494233601,2012-07-14,0.0,0.0,1.7497226790626662e-05,0.0,0.0,0.0,0.0,0.0,14.248589794414613,0.0,0.0,0.0 +11067,reservoir_outflow,0.006999999999999999,2012-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11068,gw1_gw2,0.0,2012-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11069,gw2_gw1,6.725220186964975e-05,2012-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11070,urban_drainage,0.04,2012-07-15,0.0,0.0,1.191541597415216e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +11071,percolation,0.1988326869867118,2012-07-15,0.0,0.0,2.1301043921046594e-05,0.0,0.0,0.0,0.0,0.0,13.540000029188292,0.0,0.0,0.0 +11072,runoff,0.10917224273434364,2012-07-15,0.0,0.0,7.51689969616679e-06,0.0,0.0,0.0,0.0,0.0,15.193032055602634,0.0,0.0,0.0 +11073,storm_outflow,0.04,2012-07-15,0.0,0.0,1.191541597415216e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +11074,baseflow,0.053223479714256845,2012-07-15,0.0,0.0,8.153665367197575e-06,0.0,0.0,0.0,0.0,0.0,10.521829909170465,0.0,0.0,0.0 +11075,catchment_outflow,0.2023957224486005,2012-07-15,0.0,0.0,1.6862106660779583e-05,0.0,0.0,0.0,0.0,0.0,14.125658344254264,0.0,0.0,0.0 +11076,reservoir_outflow,0.0004999999999999991,2012-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11077,gw1_gw2,0.0,2012-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11078,gw2_gw1,6.680385385724464e-05,2012-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11079,urban_drainage,0.04,2012-07-16,0.0,0.0,2.04260542720245e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +11080,percolation,0.19722959201442744,2012-07-16,0.0,0.0,2.1043956492187003e-05,0.0,0.0,0.0,0.0,0.0,13.55622558573622,0.0,0.0,0.0 +11081,runoff,0.09636294314291968,2012-07-16,0.0,0.0,6.5766312554712335e-06,0.0,0.0,0.0,0.0,0.0,15.162461266524968,0.0,0.0,0.0 +11082,storm_outflow,0.04,2012-07-16,0.0,0.0,2.04260542720245e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +11083,baseflow,0.053583494995007266,2012-07-16,0.0,0.0,8.18589109501005e-06,0.0,0.0,0.0,0.0,0.0,10.549752342251546,0.0,0.0,0.0 +11084,catchment_outflow,0.18994643813792694,2012-07-16,0.0,0.0,1.6805127777683734e-05,0.0,0.0,0.0,0.0,0.0,14.039215804094292,0.0,0.0,0.0 +11085,reservoir_outflow,0.0,2012-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11086,gw1_gw2,0.0,2012-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11087,gw2_gw1,6.635849483114243e-05,2012-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11088,urban_drainage,0.0029999999999999923,2012-07-17,0.0,0.0,1.3574559497604282e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +11089,percolation,0.1951186275609616,2012-07-17,0.0,0.0,2.0754300048711068e-05,0.0,0.0,0.0,0.0,0.0,13.567699106201786,0.0,0.0,0.0 +11090,runoff,0.08297360500677209,2012-07-17,0.0,0.0,5.698713958936323e-06,0.0,0.0,0.0,0.0,0.0,15.155301077130988,0.0,0.0,0.0 +11091,storm_outflow,0.0029999999999999923,2012-07-17,0.0,0.0,1.3574559497604282e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +11092,baseflow,0.05393733282642216,2012-07-17,0.0,0.0,8.217312117394302e-06,0.0,0.0,0.0,0.0,0.0,10.57704594390817,0.0,0.0,0.0 +11093,catchment_outflow,0.13991093783319425,2012-07-17,0.0,0.0,1.5273482026091054e-05,0.0,0.0,0.0,0.0,0.0,13.40860600246108,0.0,0.0,0.0 +11094,reservoir_outflow,0.0,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11095,gw1_gw2,0.0,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11096,gw2_gw1,6.591610486559319e-05,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11097,urban_drainage,0.012,2012-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +11098,percolation,0.19472820339889435,2012-07-18,0.0,0.0,2.0589470429822286e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +11099,runoff,0.0852609803190606,2012-07-18,0.0,0.0,5.393159107433864e-06,0.0,0.0,0.0,0.0,0.0,15.231611144486477,0.0,0.0,0.0 +11100,storm_outflow,0.012,2012-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +11101,baseflow,0.05428931000285334,2012-07-18,0.0,0.0,8.248242513175372e-06,0.0,0.0,0.0,0.0,0.0,10.604093653299463,0.0,0.0,0.0 +11102,catchment_outflow,0.15155029032191394,2012-07-18,0.0,0.0,1.4641401620609236e-05,0.0,0.0,0.0,0.0,0.0,13.644652354466007,0.0,0.0,0.0 +11103,reservoir_outflow,0.006,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11104,gw1_gw2,0.0,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11105,gw2_gw1,6.547666416665266e-05,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11106,urban_drainage,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11107,percolation,0.19083363933091646,2012-07-19,0.0,0.0,2.017768102122584e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +11108,runoff,0.05835068351376918,2012-07-19,0.0,0.0,4.314527285947091e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +11109,storm_outflow,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11110,baseflow,0.05463067082617349,2012-07-19,0.0,0.0,8.278066109445496e-06,0.0,0.0,0.0,0.0,0.0,10.630198575622346,0.0,0.0,0.0 +11111,catchment_outflow,0.11298135433994266,2012-07-19,0.0,0.0,1.2592593395392587e-05,0.0,0.0,0.0,0.0,0.0,12.928705729304914,0.0,0.0,0.0 +11112,reservoir_outflow,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11113,gw1_gw2,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11114,gw2_gw1,6.504015307182698e-05,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11115,urban_drainage,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11116,percolation,0.18701696654429814,2012-07-20,0.0,0.0,1.977412740080132e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196282,0.0,0.0,0.0 +11117,runoff,0.04737376982583062,2012-07-20,0.0,0.0,3.4516218287576723e-06,0.0,0.0,0.0,0.0,0.0,15.104372528180564,0.0,0.0,0.0 +11118,storm_outflow,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11119,baseflow,0.054961636565468805,2012-07-20,0.0,0.0,8.306806262673887e-06,0.0,0.0,0.0,0.0,0.0,10.655405279026905,0.0,0.0,0.0 +11120,catchment_outflow,0.10233540639129943,2012-07-20,0.0,0.0,1.175842809143156e-05,0.0,0.0,0.0,0.0,0.0,12.714950043213072,0.0,0.0,0.0 +11121,reservoir_outflow,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11122,gw1_gw2,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11123,gw2_gw1,6.460655205167144e-05,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11124,urban_drainage,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11125,percolation,0.18327662721341217,2012-07-21,0.0,0.0,1.9378644852785295e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +11126,runoff,0.03734443744881228,2012-07-21,0.0,0.0,2.7612974630061384e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 +11127,storm_outflow,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11128,baseflow,0.05528242404208866,2012-07-21,0.0,0.0,8.334485859149166e-06,0.0,0.0,0.0,0.0,0.0,10.679755588595848,0.0,0.0,0.0 +11129,catchment_outflow,0.09262686149090094,2012-07-21,0.0,0.0,1.1095783322155303e-05,0.0,0.0,0.0,0.0,0.0,12.454078148387987,0.0,0.0,0.0 +11130,reservoir_outflow,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11131,gw1_gw2,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11132,gw2_gw1,6.41758417048166e-05,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11133,urban_drainage,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11134,percolation,0.1796110946691439,2012-07-22,0.0,0.0,1.8991071955729588e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 +11135,runoff,0.02987554995904982,2012-07-22,0.0,0.0,2.2090379704049104e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 +11136,storm_outflow,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11137,baseflow,0.0555932457186563,2012-07-22,0.0,0.0,8.361127324390616e-06,0.0,0.0,0.0,0.0,0.0,10.703288794384756,0.0,0.0,0.0 +11138,catchment_outflow,0.08546879567770613,2012-07-22,0.0,0.0,1.0570165294795526e-05,0.0,0.0,0.0,0.0,0.0,12.23340133998257,0.0,0.0,0.0 +11139,reservoir_outflow,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11140,gw1_gw2,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11141,gw2_gw1,6.374800276010006e-05,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11142,urban_drainage,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11143,percolation,0.17601887277576103,2012-07-23,0.0,0.0,1.8611250516614996e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 +11144,runoff,0.02390043996723986,2012-07-23,0.0,0.0,1.7672303763239286e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 +11145,storm_outflow,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11146,baseflow,0.05589430978629906,2012-07-23,0.0,0.0,8.386752632371176e-06,0.0,0.0,0.0,0.0,0.0,10.726041840805832,0.0,0.0,0.0 +11147,catchment_outflow,0.07979474975353892,2012-07-23,0.0,0.0,1.0153983008695105e-05,0.0,0.0,0.0,0.0,0.0,12.03035940205241,0.0,0.0,0.0 +11148,reservoir_outflow,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11149,gw1_gw2,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11150,gw2_gw1,6.332301607478997e-05,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11151,urban_drainage,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11152,percolation,0.1724984953202458,2012-07-24,0.0,0.0,1.8239025506282697e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 +11153,runoff,0.019120351973791888,2012-07-24,0.0,0.0,1.4137843010591428e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +11154,storm_outflow,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11155,baseflow,0.05618582025013391,2012-07-24,0.0,0.0,8.411383314555955e-06,0.0,0.0,0.0,0.0,0.0,10.748049499278256,0.0,0.0,0.0 +11156,catchment_outflow,0.0753061722239258,2012-07-24,0.0,0.0,9.825167615615098e-06,0.0,0.0,0.0,0.0,0.0,11.8481101994372,0.0,0.0,0.0 +11157,reservoir_outflow,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11158,gw1_gw2,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11159,gw2_gw1,6.290086263405215e-05,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11160,urban_drainage,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11161,percolation,0.16904852541384088,2012-07-25,0.0,0.0,1.787424499615704e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 +11162,runoff,0.01529628157903351,2012-07-25,0.0,0.0,1.1310274408473142e-06,0.0,0.0,0.0,0.0,0.0,15.0806768827329,0.0,0.0,0.0 +11163,storm_outflow,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11164,baseflow,0.05646797701304318,2012-07-25,0.0,0.0,8.435040468759957e-06,0.0,0.0,0.0,0.0,0.0,10.769344525845039,0.0,0.0,0.0 +11165,catchment_outflow,0.07176425859207669,2012-07-25,0.0,0.0,9.56606790960727e-06,0.0,0.0,0.0,0.0,0.0,11.688288788707332,0.0,0.0,0.0 +11166,reservoir_outflow,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11167,gw1_gw2,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11168,gw2_gw1,6.248152354970671e-05,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11169,urban_drainage,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11170,percolation,0.16566755490556406,2012-07-26,0.0,0.0,1.7516760096233902e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +11171,runoff,0.012237025263226809,2012-07-26,0.0,0.0,9.048219526778515e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +11172,storm_outflow,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11173,baseflow,0.056740975957774484,2012-07-26,0.0,0.0,8.457744767828642e-06,0.0,0.0,0.0,0.0,0.0,10.789957805261752,0.0,0.0,0.0 +11174,catchment_outflow,0.0689780012210013,2012-07-26,0.0,0.0,9.362566720506494e-06,0.0,0.0,0.0,0.0,0.0,11.551151763030965,0.0,0.0,0.0 +11175,reservoir_outflow,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11176,gw1_gw2,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11177,gw2_gw1,6.20649800593398e-05,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11178,urban_drainage,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11179,percolation,0.16235420380745277,2012-07-27,0.0,0.0,1.7166424894309225e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196282,0.0,0.0,0.0 +11180,runoff,0.009789620210581447,2012-07-27,0.0,0.0,7.238575621422812e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +11181,storm_outflow,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11182,baseflow,0.05700500902739868,2012-07-27,0.0,0.0,8.479516468144842e-06,0.0,0.0,0.0,0.0,0.0,10.809918482892604,0.0,0.0,0.0 +11183,catchment_outflow,0.06679462923798013,2012-07-27,0.0,0.0,9.203374030287123e-06,0.0,0.0,0.0,0.0,0.0,11.435853580108684,0.0,0.0,0.0 +11184,reservoir_outflow,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11185,gw1_gw2,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11186,gw2_gw1,6.165121352577075e-05,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11187,urban_drainage,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11188,percolation,0.15910711973130373,2012-07-28,0.0,0.0,1.682309639642304e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 +11189,runoff,0.007831696168465158,2012-07-28,0.0,0.0,5.790860497138249e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +11190,storm_outflow,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11191,baseflow,0.05726026430415845,2012-07-28,0.0,0.0,8.500375417965539e-06,0.0,0.0,0.0,0.0,0.0,10.829254085600857,0.0,0.0,0.0 +11192,catchment_outflow,0.06509196047262361,2012-07-28,0.0,0.0,9.079461467679364e-06,0.0,0.0,0.0,0.0,0.0,11.34077427010702,0.0,0.0,0.0 +11193,reservoir_outflow,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11194,gw1_gw2,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11195,gw2_gw1,6.124020543563091e-05,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11196,urban_drainage,0.002999999999999999,2012-07-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0 +11197,percolation,0.15592497733667765,2012-07-29,0.0,0.0,1.6486634468494576e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +11198,runoff,0.006265356934772126,2012-07-29,0.0,0.0,4.632688397710598e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +11199,storm_outflow,0.002999999999999999,2012-07-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0 +11200,baseflow,0.05750692608673974,2012-07-29,0.0,0.0,8.520341065591862e-06,0.0,0.0,0.0,0.0,0.0,10.847990632690212,0.0,0.0,0.0 +11201,catchment_outflow,0.06677228302151186,2012-07-29,0.0,0.0,1.9983609905362923e-05,0.0,0.0,0.0,0.0,0.0,11.48352427960292,0.0,0.0,0.0 +11202,reservoir_outflow,0.0014999999999999996,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11203,gw1_gw2,0.0,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11204,gw2_gw1,6.083193739936377e-05,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11205,urban_drainage,0.034999999999999996,2012-07-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 +11206,percolation,0.1528064777899441,2012-07-30,0.0,0.0,1.6156901779124687e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +11207,runoff,0.005012285547817701,2012-07-30,0.0,0.0,3.706150718168479e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +11208,storm_outflow,0.034999999999999996,2012-07-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 +11209,baseflow,0.05774517496599776,2012-07-30,0.0,0.0,8.539432467375695e-06,0.0,0.0,0.0,0.0,0.0,10.86615273783956,0.0,0.0,0.0 +11210,catchment_outflow,0.09775746051381545,2012-07-30,0.0,0.0,9.910047539192543e-06,0.0,0.0,0.0,0.0,0.0,12.853817428255004,0.0,0.0,0.0 +11211,reservoir_outflow,0.017499999999999998,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11212,gw1_gw2,0.0,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11213,gw2_gw1,6.042639114998139e-05,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11214,urban_drainage,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11215,percolation,0.15059184612747575,2012-07-31,0.0,0.0,1.590226165774383e-05,0.0,0.0,0.0,0.0,0.0,13.601373646119358,0.0,0.0,0.0 +11216,runoff,0.009767445603147327,2012-07-31,0.0,0.0,5.248184381255965e-07,0.0,0.0,0.0,0.0,0.0,15.18481076006975,0.0,0.0,0.0 +11217,storm_outflow,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11218,baseflow,0.057977291643901446,2012-07-31,0.0,0.0,8.557839540351614e-06,0.0,0.0,0.0,0.0,0.0,10.883914086915428,0.0,0.0,0.0 +11219,catchment_outflow,0.06774473724704877,2012-07-31,0.0,0.0,9.08265797847721e-06,0.0,0.0,0.0,0.0,0.0,11.504017965193032,0.0,0.0,0.0 +11220,reservoir_outflow,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11221,gw1_gw2,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11222,gw2_gw1,6.002354854253156e-05,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11223,urban_drainage,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11224,percolation,0.14826076792220985,2012-08-01,0.0,0.0,1.564001219895528e-05,0.0,0.0,0.0,0.0,0.0,13.606581847908506,0.0,0.0,0.0 +11225,runoff,0.010109679935285004,2012-08-01,0.0,0.0,6.058406650549084e-07,0.0,0.0,0.0,0.0,0.0,15.089818717292156,0.0,0.0,0.0 +11226,storm_outflow,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11227,baseflow,0.05820300033459723,2012-08-01,0.0,0.0,8.575544971998125e-06,0.0,0.0,0.0,0.0,0.0,10.90125274689521,0.0,0.0,0.0 +11228,catchment_outflow,0.06831268026988223,2012-08-01,0.0,0.0,9.181385637053033e-06,0.0,0.0,0.0,0.0,0.0,11.521123921342582,0.0,0.0,0.0 +11229,reservoir_outflow,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11230,gw1_gw2,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11231,gw2_gw1,5.962339155232144e-05,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11232,urban_drainage,0.04,2012-08-02,0.0,0.0,1.3636363636363636e-06,0.0,0.0,0.0,0.0,0.0,15.517857139999998,0.0,0.0,0.0 +11233,percolation,0.15086660291041235,2012-08-02,0.0,0.0,1.576016056885898e-05,0.0,0.0,0.0,0.0,0.0,13.649247178604615,0.0,0.0,0.0 +11234,runoff,0.044294555183786485,2012-08-02,0.0,0.0,1.927834578319952e-06,0.0,0.0,0.0,0.0,0.0,15.123729499519152,0.0,0.0,0.0 +11235,storm_outflow,0.04,2012-08-02,0.0,0.0,1.3636363636363636e-06,0.0,0.0,0.0,0.0,0.0,15.517857139999998,0.0,0.0,0.0 +11236,baseflow,0.05843465934103676,2012-08-02,0.0,0.0,8.593506510990276e-06,0.0,0.0,0.0,0.0,0.0,10.91898967688693,0.0,0.0,0.0 +11237,catchment_outflow,0.14272921452482323,2012-08-02,0.0,0.0,1.1884977452946592e-05,0.0,0.0,0.0,0.0,0.0,13.51272481278082,0.0,0.0,0.0 +11238,reservoir_outflow,0.044000000000000004,2012-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11239,gw1_gw2,0.0,2012-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11240,gw2_gw1,5.92259022752728e-05,2012-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11241,urban_drainage,0.03900000000000001,2012-08-03,0.0,0.0,2.6363636363636364e-06,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 +11242,percolation,0.14914828864436072,2012-08-03,0.0,0.0,1.5546695911912572e-05,0.0,0.0,0.0,0.0,0.0,13.65869419243055,0.0,0.0,0.0 +11243,runoff,0.02868562455891703,2012-08-03,0.0,0.0,1.8813961774251937e-06,0.0,0.0,0.0,0.0,0.0,14.916057386654051,0.0,0.0,0.0 +11244,storm_outflow,0.03900000000000001,2012-08-03,0.0,0.0,2.6363636363636364e-06,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 +11245,baseflow,0.05866144341429508,2012-08-03,0.0,0.0,8.610889484492582e-06,0.0,0.0,0.0,0.0,0.0,10.936404106881374,0.0,0.0,0.0 +11246,catchment_outflow,0.1263470679732121,2012-08-03,0.0,0.0,1.3128649298281411e-05,0.0,0.0,0.0,0.0,0.0,13.254111299041424,0.0,0.0,0.0 +11247,reservoir_outflow,0.0,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11248,gw1_gw2,0.0,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11249,gw2_gw1,5.883106292667862e-05,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11250,urban_drainage,0.029999999999999995,2012-08-04,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 +11251,percolation,0.15181194297234815,2012-08-04,0.0,0.0,1.56710704700984e-05,0.0,0.0,0.0,0.0,0.0,13.69985899499671,0.0,0.0,0.0 +11252,runoff,0.05793690302601175,2012-08-04,0.0,0.0,2.9561451966870903e-06,0.0,0.0,0.0,0.0,0.0,15.048351847746327,0.0,0.0,0.0 +11253,storm_outflow,0.029999999999999995,2012-08-04,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 +11254,baseflow,0.05889431966319021,2012-08-04,0.0,0.0,8.628539936956598e-06,0.0,0.0,0.0,0.0,0.0,10.954212507516631,0.0,0.0,0.0 +11255,catchment_outflow,0.14683122268920196,2012-08-04,0.0,0.0,1.2584685133643688e-05,0.0,0.0,0.0,0.0,0.0,13.510867696576605,0.0,0.0,0.0 +11256,reservoir_outflow,0.015,2012-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11257,gw1_gw2,0.0,2012-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11258,gw2_gw1,5.84388558406701e-05,2012-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11259,urban_drainage,0.04,2012-08-05,0.0,0.0,7.017543859649122e-07,0.0,0.0,0.0,0.0,0.0,15.582142859999998,0.0,0.0,0.0 +11260,percolation,0.15749138228454826,2012-08-05,0.0,0.0,1.6008637137668257e-05,0.0,0.0,0.0,0.0,0.0,13.760635458556788,0.0,0.0,0.0 +11261,runoff,0.09013294822436052,2012-08-05,0.0,0.0,4.534876413922415e-06,0.0,0.0,0.0,0.0,0.0,15.058693700551798,0.0,0.0,0.0 +11262,storm_outflow,0.04,2012-08-05,0.0,0.0,7.017543859649122e-07,0.0,0.0,0.0,0.0,0.0,15.582142859999998,0.0,0.0,0.0 +11263,baseflow,0.05914081231974361,2012-08-05,0.0,0.0,8.646990179958377e-06,0.0,0.0,0.0,0.0,0.0,10.97289619702384,0.0,0.0,0.0 +11264,catchment_outflow,0.18927376054410414,2012-08-05,0.0,0.0,1.3883620979845704e-05,0.0,0.0,0.0,0.0,0.0,13.892660879519168,0.0,0.0,0.0 +11265,reservoir_outflow,0.0285,2012-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11266,gw1_gw2,0.0,2012-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11267,gw2_gw1,5.8049263468618056e-05,2012-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11268,urban_drainage,0.02700000000000001,2012-08-06,0.0,0.0,1.298245614035088e-06,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0 +11269,percolation,0.15785037896013518,2012-08-06,0.0,0.0,1.5949661587539177e-05,0.0,0.0,0.0,0.0,0.0,13.783649642335789,0.0,0.0,0.0 +11270,runoff,0.0716490424011523,2012-08-06,0.0,0.0,4.49855843988554e-06,0.0,0.0,0.0,0.0,0.0,14.930698504749344,0.0,0.0,0.0 +11271,storm_outflow,0.02700000000000001,2012-08-06,0.0,0.0,1.298245614035088e-06,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0 +11272,baseflow,0.05938758623634459,2012-08-06,0.0,0.0,8.665246858477328e-06,0.0,0.0,0.0,0.0,0.0,10.991573437699202,0.0,0.0,0.0 +11273,catchment_outflow,0.1580366286374969,2012-08-06,0.0,0.0,1.4462050912397956e-05,0.0,0.0,0.0,0.0,0.0,13.563092474509476,0.0,0.0,0.0 +11274,reservoir_outflow,0.005,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11275,gw1_gw2,0.0,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11276,gw2_gw1,5.7662268378777526e-05,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11277,urban_drainage,0.005,2012-08-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +11278,percolation,0.15754371159250133,2012-08-07,0.0,0.0,1.5842772289474814e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126916,0.0,0.0,0.0 +11279,runoff,0.06697223025613927,2012-08-07,0.0,0.0,4.305859864196507e-06,0.0,0.0,0.0,0.0,0.0,14.918219870977202,0.0,0.0,0.0 +11280,storm_outflow,0.005,2012-08-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +11281,baseflow,0.05963297654973498,2012-08-07,0.0,0.0,8.68319067205482e-06,0.0,0.0,0.0,0.0,0.0,11.010136902424245,0.0,0.0,0.0 +11282,catchment_outflow,0.13160520680587426,2012-08-07,0.0,0.0,1.3989050536251327e-05,0.0,0.0,0.0,0.0,0.0,13.174240852642658,0.0,0.0,0.0 +11283,reservoir_outflow,0.0025,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11284,gw1_gw2,0.0,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11285,gw2_gw1,5.727785325628787e-05,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11286,urban_drainage,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11287,percolation,0.1543928373606513,2012-08-08,0.0,0.0,1.5525916843685314e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +11288,runoff,0.045576829225069004,2012-08-08,0.0,0.0,3.4446878913572057e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 +11289,storm_outflow,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11290,baseflow,0.05986987620176227,2012-08-08,0.0,0.0,8.7002974874839e-06,0.0,0.0,0.0,0.0,0.0,11.028137434025322,0.0,0.0,0.0 +11291,catchment_outflow,0.10544670542683127,2012-08-08,0.0,0.0,1.2144985378841105e-05,0.0,0.0,0.0,0.0,0.0,12.655904809142976,0.0,0.0,0.0 +11292,reservoir_outflow,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11293,gw1_gw2,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11294,gw2_gw1,5.689600090086344e-05,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11295,urban_drainage,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11296,percolation,0.15130498061343828,2012-08-09,0.0,0.0,1.5215398506811611e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +11297,runoff,0.03646146338005521,2012-08-09,0.0,0.0,2.7557503130857646e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 +11298,storm_outflow,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11299,baseflow,0.06009846396279146,2012-08-09,0.0,0.0,8.716585240032218e-06,0.0,0.0,0.0,0.0,0.0,11.045597562157537,0.0,0.0,0.0 +11300,catchment_outflow,0.09655992734284667,2012-08-09,0.0,0.0,1.1472335553117982e-05,0.0,0.0,0.0,0.0,0.0,12.46106614694797,0.0,0.0,0.0 +11301,reservoir_outflow,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11302,gw1_gw2,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11303,gw2_gw1,5.651669422821471e-05,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11304,urban_drainage,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11305,percolation,0.1482788810011695,2012-08-10,0.0,0.0,1.4911090536675379e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126916,0.0,0.0,0.0 +11306,runoff,0.029169170704044168,2012-08-10,0.0,0.0,2.204600250468612e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 +11307,storm_outflow,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11308,baseflow,0.0603189150053874,2012-08-10,0.0,0.0,8.732071503273824e-06,0.0,0.0,0.0,0.0,0.0,11.062538648099945,0.0,0.0,0.0 +11309,catchment_outflow,0.08948808570943156,2012-08-10,0.0,0.0,1.0936671753742436e-05,0.0,0.0,0.0,0.0,0.0,12.278877970503387,0.0,0.0,0.0 +11310,reservoir_outflow,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11311,gw1_gw2,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11312,gw2_gw1,5.6139916266850776e-05,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11313,urban_drainage,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11314,percolation,0.14531330338114612,2012-08-11,0.0,0.0,1.461286872594187e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126916,0.0,0.0,0.0 +11315,runoff,0.02361504404320483,2012-08-11,0.0,0.0,1.7636802003748893e-06,0.0,0.0,0.0,0.0,0.0,14.814138928939915,0.0,0.0,0.0 +11316,storm_outflow,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11317,baseflow,0.06053140097632681,2012-08-11,0.0,0.0,8.746773496330494e-06,0.0,0.0,0.0,0.0,0.0,11.078980959621598,0.0,0.0,0.0 +11318,catchment_outflow,0.08414644501953164,2012-08-11,0.0,0.0,1.0510453696705384e-05,0.0,0.0,0.0,0.0,0.0,12.127223935701048,0.0,0.0,0.0 +11319,reservoir_outflow,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11320,gw1_gw2,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11321,gw2_gw1,5.576565015861235e-05,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11322,urban_drainage,0.0039999999999999975,2012-08-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 +11323,percolation,0.14399747737575827,2012-08-12,0.0,0.0,1.4446074340811932e-05,0.0,0.0,0.0,0.0,0.0,13.821402671541934,0.0,0.0,0.0 +11324,runoff,0.029550227571143946,2012-08-12,0.0,0.0,1.8291541249295776e-06,0.0,0.0,0.0,0.0,0.0,15.28720585089952,0.0,0.0,0.0 +11325,storm_outflow,0.0039999999999999975,2012-08-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 +11326,baseflow,0.060740066167325385,2012-08-12,0.0,0.0,8.761021748441699e-06,0.0,0.0,0.0,0.0,0.0,11.095234720661683,0.0,0.0,0.0 +11327,catchment_outflow,0.09429029373846934,2012-08-12,0.0,0.0,1.5590175873371278e-05,0.0,0.0,0.0,0.0,0.0,12.646597755687067,0.0,0.0,0.0 +11328,reservoir_outflow,0.0019999999999999987,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11329,gw1_gw2,0.0,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11330,gw2_gw1,5.539387915778349e-05,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11331,urban_drainage,0.008,2012-08-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 +11332,percolation,0.1430986084649318,2012-08-13,0.0,0.0,1.4312965290473113e-05,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 +11333,runoff,0.03273055115079194,2012-08-13,0.0,0.0,1.9826980882017234e-06,0.0,0.0,0.0,0.0,0.0,15.528751604482606,0.0,0.0,0.0 +11334,storm_outflow,0.008,2012-08-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 +11335,baseflow,0.06094596252306939,2012-08-13,0.0,0.0,8.774901607296776e-06,0.0,0.0,0.0,0.0,0.0,11.1113919972488,0.0,0.0,0.0 +11336,catchment_outflow,0.10167651367386132,2012-08-13,0.0,0.0,1.17575996954985e-05,0.0,0.0,0.0,0.0,0.0,12.989674267337232,0.0,0.0,0.0 +11337,reservoir_outflow,0.004,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11338,gw1_gw2,0.0,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11339,gw2_gw1,5.502458663020349e-05,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11340,urban_drainage,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11341,percolation,0.14023663629563315,2012-08-14,0.0,0.0,1.402670598466365e-05,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 +11342,runoff,0.020893012627295336,2012-08-14,0.0,0.0,1.5861584705613786e-06,0.0,0.0,0.0,0.0,0.0,15.181515587071152,0.0,0.0,0.0 +11343,storm_outflow,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11344,baseflow,0.06114418920750082,2012-08-14,0.0,0.0,8.788031118240197e-06,0.0,0.0,0.0,0.0,0.0,11.127082151374978,0.0,0.0,0.0 +11345,catchment_outflow,0.08203720183479615,2012-08-14,0.0,0.0,1.0374189588801575e-05,0.0,0.0,0.0,0.0,0.0,12.159654290282317,0.0,0.0,0.0 +11346,reservoir_outflow,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11347,gw1_gw2,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11348,gw2_gw1,5.4657756052378664e-05,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11349,urban_drainage,0.039999999999999994,2012-08-15,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 +11350,percolation,0.1473554070683084,2012-08-15,0.0,0.0,1.4475303884932178e-05,0.0,0.0,0.0,0.0,0.0,14.005023368864164,0.0,0.0,0.0 +11351,runoff,0.08439646577077238,2012-08-15,0.0,0.0,3.699366842988433e-06,0.0,0.0,0.0,0.0,0.0,16.42371208375259,0.0,0.0,0.0 +11352,storm_outflow,0.039999999999999994,2012-08-15,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 +11353,baseflow,0.061359717252152834,2012-08-15,0.0,0.0,8.802249300156925e-06,0.0,0.0,0.0,0.0,0.0,11.144360596363532,0.0,0.0,0.0 +11354,catchment_outflow,0.1857561830229252,2012-08-15,0.0,0.0,1.3081326288072894e-05,0.0,0.0,0.0,0.0,0.0,14.858514436172017,0.0,0.0,0.0 +11355,reservoir_outflow,0.069,2012-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11356,gw1_gw2,0.0,2012-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11357,gw2_gw1,5.429337101237053e-05,2012-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11358,urban_drainage,0.04,2012-08-16,0.0,0.0,9.047812542326967e-07,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0 +11359,percolation,0.14816500113212197,2012-08-16,0.0,0.0,1.4461130529094092e-05,0.0,0.0,0.0,0.0,0.0,14.061328539956195,0.0,0.0,0.0 +11360,runoff,0.06536547612970597,2012-08-16,0.0,0.0,3.877269213925949e-06,0.0,0.0,0.0,0.0,0.0,16.225410272636935,0.0,0.0,0.0 +11361,storm_outflow,0.04,2012-08-16,0.0,0.0,9.047812542326967e-07,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0 +11362,baseflow,0.061576730461852754,2012-08-16,0.0,0.0,8.816396503229269e-06,0.0,0.0,0.0,0.0,0.0,11.161907507161782,0.0,0.0,0.0 +11363,catchment_outflow,0.16694220659155873,2012-08-16,0.0,0.0,1.3598446971387913e-05,0.0,0.0,0.0,0.0,0.0,14.606676895191452,0.0,0.0,0.0 +11364,reservoir_outflow,0.004499999999999999,2012-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11365,gw1_gw2,0.0,2012-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11366,gw2_gw1,5.393141520535494e-05,2012-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11367,urban_drainage,0.04,2012-08-17,0.0,0.0,1.3597343788323063e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +11368,percolation,0.14862803937462757,2012-08-17,0.0,0.0,1.4422693059165877e-05,0.0,0.0,0.0,0.0,0.0,14.113548214485728,0.0,0.0,0.0 +11369,runoff,0.06519061898409767,2012-08-17,0.0,0.0,3.937765839986314e-06,0.0,0.0,0.0,0.0,0.0,16.293044406553644,0.0,0.0,0.0 +11370,storm_outflow,0.04,2012-08-17,0.0,0.0,1.3597343788323063e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +11371,baseflow,0.0617943587341347,2012-08-17,0.0,0.0,8.830412244619111e-06,0.0,0.0,0.0,0.0,0.0,11.179655752319377,0.0,0.0,0.0 +11372,catchment_outflow,0.16698497771823237,2012-08-17,0.0,0.0,1.4127912463437731e-05,0.0,0.0,0.0,0.0,0.0,14.639046152639262,0.0,0.0,0.0 +11373,reservoir_outflow,0.0035000000000000005,2012-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11374,gw1_gw2,0.0,2012-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11375,gw2_gw1,5.35718724373524e-05,2012-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11376,urban_drainage,0.014000000000000009,2012-08-18,0.0,0.0,2.1557742220074603e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +11377,percolation,0.145655478587135,2012-08-18,0.0,0.0,1.413423919798256e-05,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 +11378,runoff,0.04253470356581,2012-08-18,0.0,0.0,3.150212671989051e-06,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 +11379,storm_outflow,0.014000000000000009,2012-08-18,0.0,0.0,2.1557742220074603e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +11380,baseflow,0.062004011533767195,2012-08-18,0.0,0.0,8.84367181200252e-06,0.0,0.0,0.0,0.0,0.0,11.19688598872381,0.0,0.0,0.0 +11381,catchment_outflow,0.11853871509957721,2012-08-18,0.0,0.0,1.414965870599903e-05,0.0,0.0,0.0,0.0,0.0,13.646073235056207,0.0,0.0,0.0 +11382,reservoir_outflow,0.0,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11383,gw1_gw2,0.0,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11384,gw2_gw1,5.321472662114246e-05,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11385,urban_drainage,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11386,percolation,0.1427423690153923,2012-08-19,0.0,0.0,1.385155441402291e-05,0.0,0.0,0.0,0.0,0.0,14.113548214485732,0.0,0.0,0.0 +11387,runoff,0.035695729016912724,2012-08-19,0.0,0.0,2.5201701375912413e-06,0.0,0.0,0.0,0.0,0.0,16.0994890817446,0.0,0.0,0.0 +11388,storm_outflow,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11389,baseflow,0.06220585742747126,2012-08-19,0.0,0.0,8.85619151850757e-06,0.0,0.0,0.0,0.0,0.0,11.213617985232675,0.0,0.0,0.0 +11390,catchment_outflow,0.09790158644438399,2012-08-19,0.0,0.0,1.137636165609881e-05,0.0,0.0,0.0,0.0,0.0,12.99504704074376,0.0,0.0,0.0 +11391,reservoir_outflow,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11392,gw1_gw2,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11393,gw2_gw1,5.2859961776974275e-05,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11394,urban_drainage,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11395,percolation,0.13988752163508444,2012-08-20,0.0,0.0,1.3574523325742449e-05,0.0,0.0,0.0,0.0,0.0,14.113548214485732,0.0,0.0,0.0 +11396,runoff,0.0272222102821184,2012-08-20,0.0,0.0,2.016136110072993e-06,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 +11397,storm_outflow,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11398,baseflow,0.062400061587990295,2012-08-20,0.0,0.0,8.867987348025658e-06,0.0,0.0,0.0,0.0,0.0,11.229870535404954,0.0,0.0,0.0 +11399,catchment_outflow,0.0896222718701087,2012-08-20,0.0,0.0,1.0884123458098651e-05,0.0,0.0,0.0,0.0,0.0,12.684146935299074,0.0,0.0,0.0 +11400,reservoir_outflow,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11401,gw1_gw2,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11402,gw2_gw1,5.250756203167839e-05,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11403,urban_drainage,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11404,percolation,0.1391402260442641,2012-08-21,0.0,0.0,1.3460027442554817e-05,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 +11405,runoff,0.0358071960911985,2012-08-21,0.0,0.0,2.136224165815778e-06,0.0,0.0,0.0,0.0,0.0,16.5625832547404,0.0,0.0,0.0 +11406,storm_outflow,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11407,baseflow,0.06259191199913099,2012-08-21,0.0,0.0,8.87946744826198e-06,0.0,0.0,0.0,0.0,0.0,11.24611307324296,0.0,0.0,0.0 +11408,catchment_outflow,0.09839910809032948,2012-08-21,0.0,0.0,1.1015691614077759e-05,0.0,0.0,0.0,0.0,0.0,13.180763640676282,0.0,0.0,0.0 +11409,reservoir_outflow,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11410,gw1_gw2,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11411,gw2_gw1,5.215751161813387e-05,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11412,urban_drainage,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11413,percolation,0.1363574215233788,2012-08-22,0.0,0.0,1.3190826893703721e-05,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 +11414,runoff,0.02361554197518987,2012-08-22,0.0,0.0,1.7089793326526224e-06,0.0,0.0,0.0,0.0,0.0,16.241976005264757,0.0,0.0,0.0 +11415,storm_outflow,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11416,baseflow,0.0627763257729416,2012-08-22,0.0,0.0,8.890245846875585e-06,0.0,0.0,0.0,0.0,0.0,11.261895798344716,0.0,0.0,0.0 +11417,catchment_outflow,0.08639186774813146,2012-08-22,0.0,0.0,1.0599225179528208e-05,0.0,0.0,0.0,0.0,0.0,12.623219453358253,0.0,0.0,0.0 +11418,reservoir_outflow,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11419,gw1_gw2,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11420,gw2_gw1,5.1809794874202454e-05,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11421,urban_drainage,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11422,percolation,0.1336302730929112,2012-08-23,0.0,0.0,1.2927010355829643e-05,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 +11423,runoff,0.018312075327124772,2012-08-23,0.0,0.0,1.367183466122098e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 +11424,storm_outflow,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11425,baseflow,0.06295346064124152,2012-08-23,0.0,0.0,8.900337758147969e-06,0.0,0.0,0.0,0.0,0.0,11.277235594254597,0.0,0.0,0.0 +11426,catchment_outflow,0.08126553596836629,2012-08-23,0.0,0.0,1.0267521224270067e-05,0.0,0.0,0.0,0.0,0.0,12.385355308095345,0.0,0.0,0.0 +11427,reservoir_outflow,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11428,gw1_gw2,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11429,gw2_gw1,5.1464396241840406e-05,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11430,urban_drainage,0.02700000000000001,2012-08-24,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 +11431,percolation,0.13490348504185745,2012-08-24,0.0,0.0,1.2974726997473877e-05,0.0,0.0,0.0,0.0,0.0,14.21892881986854,0.0,0.0,0.0 +11432,runoff,0.04164735833562501,2012-08-24,0.0,0.0,2.114602935433753e-06,0.0,0.0,0.0,0.0,0.0,16.579484118942432,0.0,0.0,0.0 +11433,storm_outflow,0.02700000000000001,2012-08-24,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 +11434,baseflow,0.06313333570224305,2012-08-24,0.0,0.0,8.910523731246284e-06,0.0,0.0,0.0,0.0,0.0,11.292950139654627,0.0,0.0,0.0 +11435,catchment_outflow,0.13178069403786807,2012-08-24,0.0,0.0,1.702512666668004e-05,0.0,0.0,0.0,0.0,0.0,14.160781499987142,0.0,0.0,0.0 +11436,reservoir_outflow,0.013500000000000002,2012-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11437,gw1_gw2,0.0,2012-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11438,gw2_gw1,5.112130026674322e-05,2012-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11439,urban_drainage,0.039999999999999994,2012-08-25,0.0,0.0,5.970149253731335e-07,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +11440,percolation,0.14045605947297266,2012-08-25,0.0,0.0,1.3331499343681853e-05,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 +11441,runoff,0.0786936836111792,2012-08-25,0.0,0.0,3.745905302205185e-06,0.0,0.0,0.0,0.0,0.0,16.459180867454993,0.0,0.0,0.0 +11442,storm_outflow,0.039999999999999994,2012-08-25,0.0,0.0,5.970149253731335e-07,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +11443,baseflow,0.06332664251166988,2012-08-25,0.0,0.0,8.921576170277375e-06,0.0,0.0,0.0,0.0,0.0,11.309815051431732,0.0,0.0,0.0 +11444,catchment_outflow,0.18202032612284907,2012-08-25,0.0,0.0,1.3264496397855694e-05,0.0,0.0,0.0,0.0,0.0,14.751196593866261,0.0,0.0,0.0 +11445,reservoir_outflow,0.033499999999999995,2012-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11446,gw1_gw2,0.0,2012-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11447,gw2_gw1,5.0780491598345634e-05,2012-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11448,urban_drainage,0.006999999999999982,2012-08-26,0.0,0.0,1.4029850746268647e-06,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +11449,percolation,0.1376469382835132,2012-08-26,0.0,0.0,1.3064869356808219e-05,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 +11450,runoff,0.039795244062410376,2012-08-26,0.0,0.0,2.996724241764147e-06,0.0,0.0,0.0,0.0,0.0,16.237970634833662,0.0,0.0,0.0 +11451,storm_outflow,0.006999999999999981,2012-08-26,0.0,0.0,1.4029850746268645e-06,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +11452,baseflow,0.06351244325109949,2012-08-26,0.0,0.0,8.931934403243702e-06,0.0,0.0,0.0,0.0,0.0,11.326202938786754,0.0,0.0,0.0 +11453,catchment_outflow,0.11030768731350984,2012-08-26,0.0,0.0,1.3331643719634713e-05,0.0,0.0,0.0,0.0,0.0,13.448054818205827,0.0,0.0,0.0 +11454,reservoir_outflow,0.0,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11455,gw1_gw2,0.0,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11456,gw2_gw1,5.044195498769e-05,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11457,urban_drainage,0.04,2012-08-27,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 +11458,percolation,0.14629841087882206,2012-08-27,0.0,0.0,1.3624958105822416e-05,0.0,0.0,0.0,0.0,0.0,14.439340603064899,0.0,0.0,0.0 +11459,runoff,0.10986637824610114,2012-08-27,0.0,0.0,5.135333180579193e-06,0.0,0.0,0.0,0.0,0.0,16.047927898375047,0.0,0.0,0.0 +11460,storm_outflow,0.04,2012-08-27,0.0,0.0,4.4444444444444465e-07,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 +11461,baseflow,0.0637194081701688,2012-08-27,0.0,0.0,8.943666962500147e-06,0.0,0.0,0.0,0.0,0.0,11.344072184053228,0.0,0.0,0.0 +11462,catchment_outflow,0.21358578641626993,2012-08-27,0.0,0.0,1.4523444587523785e-05,0.0,0.0,0.0,0.0,0.0,14.681793567690821,0.0,0.0,0.0 +11463,reservoir_outflow,0.045,2012-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11464,gw1_gw2,0.0,2012-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11465,gw2_gw1,5.010567528760391e-05,2012-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11466,urban_drainage,0.04,2012-08-28,0.0,0.0,1.003584229390681e-06,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0 +11467,percolation,0.14715247448452426,2012-08-28,0.0,0.0,1.3623556145243356e-05,0.0,0.0,0.0,0.0,0.0,14.464068389091073,0.0,0.0,0.0 +11468,runoff,0.08174409546217938,2012-08-28,0.0,0.0,5.011923882921312e-06,0.0,0.0,0.0,0.0,0.0,15.854733380141788,0.0,0.0,0.0 +11469,storm_outflow,0.04,2012-08-28,0.0,0.0,1.003584229390681e-06,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0 +11470,baseflow,0.06392799083595468,2012-08-28,0.0,0.0,8.955366685457006e-06,0.0,0.0,0.0,0.0,0.0,11.362026571323577,0.0,0.0,0.0 +11471,catchment_outflow,0.18567208629813406,2012-08-28,0.0,0.0,1.4970874797768998e-05,0.0,0.0,0.0,0.0,0.0,14.379892177930868,0.0,0.0,0.0 +11472,reservoir_outflow,0.006,2012-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11473,gw1_gw2,0.0,2012-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11474,gw2_gw1,4.977163745198965e-05,2012-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11475,urban_drainage,0.04,2012-08-29,0.0,0.0,4.3717502145489427e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 +11476,percolation,0.16036003543607819,2012-08-29,0.0,0.0,1.4434197179468282e-05,0.0,0.0,0.0,0.0,0.0,14.537819147680773,0.0,0.0,0.0 +11477,runoff,0.16528883742870387,2012-08-29,0.0,0.0,7.619912963436363e-06,0.0,0.0,0.0,0.0,0.0,15.66316525976567,0.0,0.0,0.0 +11478,storm_outflow,0.04,2012-08-29,0.0,0.0,4.3717502145489427e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 +11479,baseflow,0.064169070947455,2012-08-29,0.0,0.0,8.969063761692036e-06,0.0,0.0,0.0,0.0,0.0,11.38186752439345,0.0,0.0,0.0 +11480,catchment_outflow,0.2694579083761589,2012-08-29,0.0,0.0,1.7026151746583292e-05,0.0,0.0,0.0,0.0,0.0,14.69034462953471,0.0,0.0,0.0 +11481,reservoir_outflow,0.06,2012-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11482,gw1_gw2,0.0,2012-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11483,gw2_gw1,4.943982653582424e-05,2012-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11484,urban_drainage,0.04,2012-08-30,0.0,0.0,8.631821651877473e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 +11485,percolation,0.15914215080692812,2012-08-30,0.0,0.0,1.427972525569104e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +11486,runoff,0.1005071331084679,2012-08-30,0.0,0.0,6.543303770122847e-06,0.0,0.0,0.0,0.0,0.0,15.52033903749402,0.0,0.0,0.0 +11487,storm_outflow,0.04,2012-08-30,0.0,0.0,8.631821651877473e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 +11488,baseflow,0.06440650364710368,2012-08-30,0.0,0.0,8.982340415427033e-06,0.0,0.0,0.0,0.0,0.0,11.401406572028234,0.0,0.0,0.0 +11489,catchment_outflow,0.2049136367555716,2012-08-30,0.0,0.0,1.6388826350737627e-05,0.0,0.0,0.0,0.0,0.0,14.315049296909946,0.0,0.0,0.0 +11490,reservoir_outflow,0.0,2012-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11491,gw1_gw2,0.0,2012-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11492,gw2_gw1,4.911022769213958e-05,2012-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11493,urban_drainage,0.03799999999999998,2012-08-31,0.0,0.0,2.2516141395222326e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +11494,percolation,0.15595930779078956,2012-08-31,0.0,0.0,1.3994130750577222e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +11495,runoff,0.07482166135113505,2012-08-31,0.0,0.0,5.234643016098278e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +11496,storm_outflow,0.03799999999999998,2012-08-31,0.0,0.0,2.2516141395222326e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +11497,baseflow,0.06463538565746291,2012-08-31,0.0,0.0,8.994869891264909e-06,0.0,0.0,0.0,0.0,0.0,11.420369167432721,0.0,0.0,0.0 +11498,catchment_outflow,0.17745704700859793,2012-08-31,0.0,0.0,1.648112704688542e-05,0.0,0.0,0.0,0.0,0.0,14.112154476666019,0.0,0.0,0.0 +11499,reservoir_outflow,0.0,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11500,gw1_gw2,0.0,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11501,gw2_gw1,4.8782826174509354e-05,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11502,urban_drainage,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11503,percolation,0.1528401216349738,2012-09-01,0.0,0.0,1.3714248135565678e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11504,runoff,0.0602591484555649,2012-09-01,0.0,0.0,4.187714412878622e-06,0.0,0.0,0.0,0.0,0.0,15.492654523903147,0.0,0.0,0.0 +11505,storm_outflow,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11506,baseflow,0.06485589749740668,2012-09-01,0.0,0.0,9.00666833687566e-06,0.0,0.0,0.0,0.0,0.0,11.438777608396355,0.0,0.0,0.0 +11507,catchment_outflow,0.12511504595297157,2012-09-01,0.0,0.0,1.319438274975428e-05,0.0,0.0,0.0,0.0,0.0,13.391245986691423,0.0,0.0,0.0 +11508,reservoir_outflow,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11509,gw1_gw2,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11510,gw2_gw1,4.845760733331872e-05,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11511,urban_drainage,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11512,percolation,0.1497833192022743,2012-09-02,0.0,0.0,1.3439963172854365e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +11513,runoff,0.0482646753053071,2012-09-02,0.0,0.0,3.3501715303028977e-06,0.0,0.0,0.0,0.0,0.0,15.493062998942092,0.0,0.0,0.0 +11514,storm_outflow,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11515,baseflow,0.06506821605166885,2012-09-02,0.0,0.0,9.017751573965606e-06,0.0,0.0,0.0,0.0,0.0,11.45665307691426,0.0,0.0,0.0 +11516,catchment_outflow,0.11333289135697594,2012-09-02,0.0,0.0,1.2367923104268504e-05,0.0,0.0,0.0,0.0,0.0,13.175624612478122,0.0,0.0,0.0 +11517,reservoir_outflow,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11518,gw1_gw2,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11519,gw2_gw1,4.8134556617895896e-05,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11520,urban_drainage,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11521,percolation,0.1467876528182288,2012-09-03,0.0,0.0,1.3171163909397278e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11522,runoff,0.038308690611781146,2012-09-03,0.0,0.0,2.680137224242318e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +11523,storm_outflow,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11524,baseflow,0.06527251464358526,2012-09-03,0.0,0.0,9.028135104804186e-06,0.0,0.0,0.0,0.0,0.0,11.47401570820889,0.0,0.0,0.0 +11525,catchment_outflow,0.1035812052553664,2012-09-03,0.0,0.0,1.1708272329046504e-05,0.0,0.0,0.0,0.0,0.0,12.95924846879976,0.0,0.0,0.0 +11526,reservoir_outflow,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11527,gw1_gw2,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11528,gw2_gw1,4.7813659573847644e-05,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11529,urban_drainage,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11530,percolation,0.14385189976186424,2012-09-04,0.0,0.0,1.2907740631209331e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +11531,runoff,0.030646952489424915,2012-09-04,0.0,0.0,2.1441097793938546e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +11532,storm_outflow,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11533,baseflow,0.06546896310638095,2012-09-04,0.0,0.0,9.0378341186202e-06,0.0,0.0,0.0,0.0,0.0,11.490884654686404,0.0,0.0,0.0 +11534,catchment_outflow,0.09611591559580587,2012-09-04,0.0,0.0,1.1181943898014054e-05,0.0,0.0,0.0,0.0,0.0,12.765978139261302,0.0,0.0,0.0 +11535,reservoir_outflow,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11536,gw1_gw2,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11537,gw2_gw1,4.749490184305927e-05,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11538,urban_drainage,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11539,percolation,0.14097486176662696,2012-09-05,0.0,0.0,1.2649585818585146e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11540,runoff,0.024517561991539934,2012-09-05,0.0,0.0,1.7152878235150838e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +11541,storm_outflow,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11542,baseflow,0.06565772785303156,2012-09-05,0.0,0.0,9.046863497870112e-06,0.0,0.0,0.0,0.0,0.0,11.507278145256214,0.0,0.0,0.0 +11543,catchment_outflow,0.09017528984457149,2012-09-05,0.0,0.0,1.0762151321385196e-05,0.0,0.0,0.0,0.0,0.0,12.590096885724122,0.0,0.0,0.0 +11544,reservoir_outflow,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11545,gw1_gw2,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11546,gw2_gw1,4.717826916458279e-05,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11547,urban_drainage,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11548,percolation,0.13815536453129443,2012-09-06,0.0,0.0,1.2396594102213442e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905578,0.0,0.0,0.0 +11549,runoff,0.019614049593231948,2012-09-06,0.0,0.0,1.372230258812067e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +11550,storm_outflow,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11551,baseflow,0.06583897194472722,2012-09-06,0.0,0.0,9.055237824380971e-06,0.0,0.0,0.0,0.0,0.0,11.523213540401246,0.0,0.0,0.0 +11552,catchment_outflow,0.08545302153795917,2012-09-06,0.0,0.0,1.0427468083193039e-05,0.0,0.0,0.0,0.0,0.0,12.433681490928178,0.0,0.0,0.0 +11553,reservoir_outflow,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11554,gw1_gw2,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11555,gw2_gw1,4.686374737019605e-05,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11556,urban_drainage,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11557,percolation,0.13539225724066856,2012-09-07,0.0,0.0,1.2148662220169175e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11558,runoff,0.015691239674585557,2012-09-07,0.0,0.0,1.0977842070496534e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +11559,storm_outflow,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11560,baseflow,0.06601285515796707,2012-09-07,0.0,0.0,9.062971385370443e-06,0.0,0.0,0.0,0.0,0.0,11.538707383349864,0.0,0.0,0.0 +11561,catchment_outflow,0.08170409483255262,2012-09-07,0.0,0.0,1.0160755592420096e-05,0.0,0.0,0.0,0.0,0.0,12.297527029203293,0.0,0.0,0.0 +11562,reservoir_outflow,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11563,gw1_gw2,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11564,gw2_gw1,4.655132238795545e-05,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11565,urban_drainage,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11566,percolation,0.1326844120958552,2012-09-08,0.0,0.0,1.1905688975765791e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11567,runoff,0.012552991739668446,2012-09-08,0.0,0.0,8.782273656397228e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11568,storm_outflow,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11569,baseflow,0.06617953405031178,2012-09-08,0.0,0.0,9.070078179346431e-06,0.0,0.0,0.0,0.0,0.0,11.55377544766767,0.0,0.0,0.0 +11570,catchment_outflow,0.07873252578998023,2012-09-08,0.0,0.0,9.948305544986153e-06,0.0,0.0,0.0,0.0,0.0,12.181340587510595,0.0,0.0,0.0 +11571,reservoir_outflow,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11572,gw1_gw2,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11573,gw2_gw1,4.6240980238643203e-05,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11574,urban_drainage,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11575,percolation,0.13003072385393807,2012-09-09,0.0,0.0,1.1667575196250476e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11576,runoff,0.010042393391734756,2012-09-09,0.0,0.0,7.025818925117781e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11577,storm_outflow,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11578,baseflow,0.06633916202482085,2012-09-09,0.0,0.0,9.07657192188869e-06,0.0,0.0,0.0,0.0,0.0,11.568432781558034,0.0,0.0,0.0 +11579,catchment_outflow,0.0763815554165556,2012-09-09,0.0,0.0,9.779153814400469e-06,0.0,0.0,0.0,0.0,0.0,12.084010605527352,0.0,0.0,0.0 +11580,reservoir_outflow,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11581,gw1_gw2,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11582,gw2_gw1,4.59327070370108e-05,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11583,urban_drainage,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11584,percolation,0.1274301093768593,2012-09-10,0.0,0.0,1.1434223692325467e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11585,runoff,0.008033914713387805,2012-09-10,0.0,0.0,5.620655140094225e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11586,storm_outflow,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11587,baseflow,0.06649188939320094,2012-09-10,0.0,0.0,9.082466051314782e-06,0.0,0.0,0.0,0.0,0.0,11.58269374913393,0.0,0.0,0.0 +11588,catchment_outflow,0.07452580410658875,2012-09-10,0.0,0.0,9.644531565324206e-06,0.0,0.0,0.0,0.0,0.0,12.003889305297509,0.0,0.0,0.0 +11589,reservoir_outflow,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11590,gw1_gw2,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11591,gw2_gw1,4.562648899000266e-05,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11592,urban_drainage,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11593,percolation,0.12488150718932216,2012-09-11,0.0,0.0,1.120553921847896e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11594,runoff,0.006427131770710244,2012-09-11,0.0,0.0,4.4965241120753797e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11595,storm_outflow,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11596,baseflow,0.06663786343769124,2012-09-11,0.0,0.0,9.087773734232693e-06,0.0,0.0,0.0,0.0,0.0,11.596572068899919,0.0,0.0,0.0 +11597,catchment_outflow,0.07306499520840148,2012-09-11,0.0,0.0,9.537426145440232e-06,0.0,0.0,0.0,0.0,0.0,11.939044577740933,0.0,0.0,0.0 +11598,reservoir_outflow,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11599,gw1_gw2,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11600,gw2_gw1,4.5322312396756105e-05,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11601,urban_drainage,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11602,percolation,0.12238387704553572,2012-09-12,0.0,0.0,1.098142843410938e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11603,runoff,0.005141705416568195,2012-09-12,0.0,0.0,3.5972192896603044e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11604,storm_outflow,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11605,baseflow,0.06677722847171086,2012-09-12,0.0,0.0,9.092507870982386e-06,0.0,0.0,0.0,0.0,0.0,11.610080849661864,0.0,0.0,0.0 +11606,catchment_outflow,0.07191893388827905,2012-09-12,0.0,0.0,9.452229799948417e-06,0.0,0.0,0.0,0.0,0.0,11.88745903818947,0.0,0.0,0.0 +11607,reservoir_outflow,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11608,gw1_gw2,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11609,gw2_gw1,4.502016364735795e-05,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11610,urban_drainage,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11611,percolation,0.119936199504625,2012-09-13,0.0,0.0,1.0761799865427194e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11612,runoff,0.0041133643332545555,2012-09-13,0.0,0.0,2.8777754317282435e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11613,storm_outflow,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11614,baseflow,0.06691012589929314,2012-09-13,0.0,0.0,9.096681100968498e-06,0.0,0.0,0.0,0.0,0.0,11.62323262406282,0.0,0.0,0.0 +11615,catchment_outflow,0.0710234902325477,2012-09-13,0.0,0.0,9.384458644141322e-06,0.0,0.0,0.0,0.0,0.0,11.84717116595083,0.0,0.0,0.0 +11616,reservoir_outflow,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11617,gw1_gw2,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11618,gw2_gw1,4.472002922284445e-05,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11619,urban_drainage,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11620,percolation,0.11753747551453245,2012-09-14,0.0,0.0,1.0546563868118647e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +11621,runoff,0.003290691466603644,2012-09-14,0.0,0.0,2.3022203453825942e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11622,storm_outflow,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11623,baseflow,0.06703669427333123,2012-09-14,0.0,0.0,9.100305807886371e-06,0.0,0.0,0.0,0.0,0.0,11.636039379926158,0.0,0.0,0.0 +11624,catchment_outflow,0.07032738573993487,2012-09-14,0.0,0.0,9.330527842424631e-06,0.0,0.0,0.0,0.0,0.0,11.816364217232653,0.0,0.0,0.0 +11625,reservoir_outflow,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11626,gw1_gw2,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11627,gw2_gw1,4.442189569466848e-05,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11628,urban_drainage,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11629,percolation,0.11518672600424185,2012-09-15,0.0,0.0,1.0335632590756279e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +11630,runoff,0.0026325531732829155,2012-09-15,0.0,0.0,1.841776276306076e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11631,storm_outflow,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11632,baseflow,0.06715706935265851,2012-09-15,0.0,0.0,9.103394124843548e-06,0.0,0.0,0.0,0.0,0.0,11.648512589571435,0.0,0.0,0.0 +11633,catchment_outflow,0.06978962252594142,2012-09-15,0.0,0.0,9.287571752474154e-06,0.0,0.0,0.0,0.0,0.0,11.79341354704551,0.0,0.0,0.0 +11634,reservoir_outflow,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11635,gw1_gw2,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11636,gw2_gw1,4.412574972310069e-05,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11637,urban_drainage,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11638,percolation,0.11288299148415697,2012-09-16,0.0,0.0,1.012891993894115e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11639,runoff,0.0021060425386263326,2012-09-16,0.0,0.0,1.473421021044861e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11640,storm_outflow,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11641,baseflow,0.06727138415798727,2012-09-16,0.0,0.0,9.105957939378791e-06,0.0,0.0,0.0,0.0,0.0,11.660663237254399,0.0,0.0,0.0 +11642,catchment_outflow,0.06937742669661359,2012-09-16,0.0,0.0,9.253300041483278e-06,0.0,0.0,0.0,0.0,0.0,11.776903880698617,0.0,0.0,0.0 +11643,reservoir_outflow,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11644,gw1_gw2,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11645,gw2_gw1,4.383157805865068e-05,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11646,urban_drainage,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11647,percolation,0.11062533165447383,2012-09-17,0.0,0.0,9.926341540162327e-06,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +11648,runoff,0.001684834030901066,2012-09-17,0.0,0.0,1.1787368168358888e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11649,storm_outflow,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11650,baseflow,0.06737976902672849,2012-09-17,0.0,0.0,9.10800889838075e-06,0.0,0.0,0.0,0.0,0.0,11.672501844869647,0.0,0.0,0.0 +11651,catchment_outflow,0.06906460305762956,2012-09-17,0.0,0.0,9.225882580064339e-06,0.0,0.0,0.0,0.0,0.0,11.765626759833964,0.0,0.0,0.0 +11652,reservoir_outflow,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11653,gw1_gw2,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11654,gw2_gw1,4.353936753798138e-05,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11655,urban_drainage,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11656,percolation,0.10841282502138437,2012-09-18,0.0,0.0,9.727814709359082e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +11657,runoff,0.0013478672247208528,2012-09-18,0.0,0.0,9.429894534687108e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11658,storm_outflow,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11659,baseflow,0.06748235166671512,2012-09-18,0.0,0.0,9.109558412908196e-06,0.0,0.0,0.0,0.0,0.0,11.684038496043046,0.0,0.0,0.0 +11660,catchment_outflow,0.06883021889143598,2012-09-18,0.0,0.0,9.203857358255068e-06,0.0,0.0,0.0,0.0,0.0,11.75856620259473,0.0,0.0,0.0 +11661,reservoir_outflow,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11662,gw1_gw2,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11663,gw2_gw1,4.324910508781699e-05,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11664,urban_drainage,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11665,percolation,0.10624456852095669,2012-09-19,0.0,0.0,9.5332584151719e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +11666,runoff,0.0010782937797766822,2012-09-19,0.0,0.0,7.543915627749688e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11667,storm_outflow,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11668,baseflow,0.06757925720885073,2012-09-19,0.0,0.0,9.110617662913857e-06,0.0,0.0,0.0,0.0,0.0,11.695282858730328,0.0,0.0,0.0 +11669,catchment_outflow,0.06865755098862741,2012-09-19,0.0,0.0,9.186056819191353e-06,0.0,0.0,0.0,0.0,0.0,11.754878371519268,0.0,0.0,0.0 +11670,reservoir_outflow,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11671,gw1_gw2,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11672,gw2_gw1,4.296077772050211e-05,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11673,urban_drainage,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11674,percolation,0.10411967715053756,2012-09-20,0.0,0.0,9.342593246868462e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +11675,runoff,0.0008626350238213458,2012-09-20,0.0,0.0,6.035132502199751e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11676,storm_outflow,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11677,baseflow,0.06767060825870494,2012-09-20,0.0,0.0,9.111197601873742e-06,0.0,0.0,0.0,0.0,0.0,11.706244206428902,0.0,0.0,0.0 +11678,catchment_outflow,0.06853324328252629,2012-09-20,0.0,0.0,9.17154892689574e-06,0.0,0.0,0.0,0.0,0.0,11.753869121982827,0.0,0.0,0.0 +11679,reservoir_outflow,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11680,gw1_gw2,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11681,gw2_gw1,4.267437253577811e-05,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11682,urban_drainage,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11683,percolation,0.10203728360752681,2012-09-21,0.0,0.0,9.155741381931093e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +11684,runoff,0.0006901080190570765,2012-09-21,0.0,0.0,4.828106001759798e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +11685,storm_outflow,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11686,baseflow,0.067756524947077,2012-09-21,0.0,0.0,9.111308961323886e-06,0.0,0.0,0.0,0.0,0.0,11.716931438101154,0.0,0.0,0.0 +11687,catchment_outflow,0.06844663296613407,2012-09-21,0.0,0.0,9.159590021341484e-06,0.0,0.0,0.0,0.0,0.0,11.75497182784806,0.0,0.0,0.0 +11688,reservoir_outflow,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11689,gw1_gw2,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11690,gw2_gw1,4.2389876719006736e-05,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11691,urban_drainage,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11692,percolation,0.09999653793537627,2012-09-22,0.0,0.0,8.972626554292471e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905585,0.0,0.0,0.0 +11693,runoff,0.0005520864152456612,2012-09-22,0.0,0.0,3.86248480140784e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +11694,storm_outflow,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11695,baseflow,0.06783712497954775,2012-09-22,0.0,0.0,9.110962255306307e-06,0.0,0.0,0.0,0.0,0.0,11.727353096899677,0.0,0.0,0.0 +11696,catchment_outflow,0.06838921139479341,2012-09-22,0.0,0.0,9.149587103320385e-06,0.0,0.0,0.0,0.0,0.0,11.75772682950024,0.0,0.0,0.0 +11697,reservoir_outflow,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11698,gw1_gw2,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11699,gw2_gw1,4.210727754063726e-05,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11700,urban_drainage,0.04,2012-09-23,0.0,0.0,2.7380952380952395e-06,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0 +11701,percolation,0.09799660717666875,2012-09-23,0.0,0.0,8.79317402320662e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +11702,runoff,0.000441669132196529,2012-09-23,0.0,0.0,3.089987841126272e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +11703,storm_outflow,0.04,2012-09-23,0.0,0.0,2.7380952380952395e-06,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0 +11704,baseflow,0.06791252368504055,2012-09-23,0.0,0.0,9.110167784726057e-06,0.0,0.0,0.0,0.0,0.0,11.737517387777663,0.0,0.0,0.0 +11705,catchment_outflow,0.10835419281723709,2012-09-23,0.0,0.0,1.1879162901232559e-05,0.0,0.0,0.0,0.0,0.0,11.88508839094196,0.0,0.0,0.0 +11706,reservoir_outflow,0.1,2012-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11707,gw1_gw2,0.0,2012-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11708,gw2_gw1,4.182656235727223e-05,2012-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11709,urban_drainage,0.04,2012-09-24,0.0,0.0,2.4230090896757576e-06,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0 +11710,percolation,0.10671902128636329,2012-09-24,0.0,0.0,9.38822300581945e-06,0.0,0.0,0.0,0.0,0.0,14.273659488076007,0.0,0.0,0.0 +11711,runoff,0.07344307282784301,2012-09-24,0.0,0.0,2.5944281129855504e-06,0.0,0.0,0.0,0.0,0.0,11.809140395754488,0.0,0.0,0.0 +11712,storm_outflow,0.04,2012-09-24,0.0,0.0,2.4230090896757576e-06,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0 +11713,baseflow,0.06800953992904385,2012-09-24,0.0,0.0,9.110862922778791e-06,0.0,0.0,0.0,0.0,0.0,11.747466528849245,0.0,0.0,0.0 +11714,catchment_outflow,0.18145261275688687,2012-09-24,0.0,0.0,1.4128300125440099e-05,0.0,0.0,0.0,0.0,0.0,11.837278264176367,0.0,0.0,0.0 +11715,reservoir_outflow,0.09549999999999997,2012-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11716,gw1_gw2,0.0,2012-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11717,gw2_gw1,4.154771860811479e-05,2012-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11718,urban_drainage,0.039999999999999994,2012-09-25,0.0,0.0,2.487635820969155e-06,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0 +11719,percolation,0.10857171602104781,2012-09-25,0.0,0.0,9.48774845097421e-06,0.0,0.0,0.0,0.0,0.0,14.173444353367161,0.0,0.0,0.0 +11720,runoff,0.05604891285953983,2012-09-25,0.0,0.0,3.0331755079589415e-06,0.0,0.0,0.0,0.0,0.0,11.78738535774892,0.0,0.0,0.0 +11721,storm_outflow,0.039999999999999994,2012-09-25,0.0,0.0,2.487635820969155e-06,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0 +11722,baseflow,0.06811094536927385,2012-09-25,0.0,0.0,9.111805136599277e-06,0.0,0.0,0.0,0.0,0.0,11.757134305959402,0.0,0.0,0.0 +11723,catchment_outflow,0.16415985822881368,2012-09-25,0.0,0.0,1.4632616465527373e-05,0.0,0.0,0.0,0.0,0.0,11.835594759345996,0.0,0.0,0.0 +11724,reservoir_outflow,0.004,2012-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11725,gw1_gw2,0.0,2012-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11726,gw2_gw1,4.127073381745561e-05,2012-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11727,urban_drainage,0.04,2012-09-26,0.0,0.0,1.9679635229233088e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11728,percolation,0.12262747072663001,2012-09-26,0.0,0.0,1.041375433628238e-05,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 +11729,runoff,0.144675475804743,2012-09-26,0.0,0.0,6.1457432541259935e-06,0.0,0.0,0.0,0.0,0.0,11.772955202568403,0.0,0.0,0.0 +11730,storm_outflow,0.04,2012-09-26,0.0,0.0,1.9679635229233088e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11731,baseflow,0.06824723668266724,2012-09-26,0.0,0.0,9.115060009598485e-06,0.0,0.0,0.0,0.0,0.0,11.766457146410339,0.0,0.0,0.0 +11732,catchment_outflow,0.2529227124874103,2012-09-26,0.0,0.0,1.7228766786647786e-05,0.0,0.0,0.0,0.0,0.0,11.809178740102642,0.0,0.0,0.0 +11733,reservoir_outflow,0.047,2012-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11734,gw1_gw2,0.0,2012-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11735,gw2_gw1,4.0995595591653006e-05,2012-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11736,urban_drainage,0.039999999999999994,2012-09-27,0.0,0.0,2.179723677534363e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11737,percolation,0.12017492131209741,2012-09-27,0.0,0.0,1.0205479249556731e-05,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 +11738,runoff,0.07318555205494444,2012-09-27,0.0,0.0,4.916594603300795e-06,0.0,0.0,0.0,0.0,0.0,11.678109606405265,0.0,0.0,0.0 +11739,storm_outflow,0.039999999999999994,2012-09-27,0.0,0.0,2.179723677534363e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11740,baseflow,0.06837705589424084,2012-09-27,0.0,0.0,9.117786057698383e-06,0.0,0.0,0.0,0.0,0.0,11.775535220914595,0.0,0.0,0.0 +11741,catchment_outflow,0.18156260794918527,2012-09-27,0.0,0.0,1.6214104338533538e-05,0.0,0.0,0.0,0.0,0.0,11.788598932966499,0.0,0.0,0.0 +11742,reservoir_outflow,0.0,2012-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11743,gw1_gw2,0.0,2012-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11744,gw2_gw1,4.072229162108699e-05,2012-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11745,urban_drainage,0.04,2012-09-28,0.0,0.0,2.4928573308926434e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11746,percolation,0.11777142288585546,2012-09-28,0.0,0.0,1.0001369664565598e-05,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 +11747,runoff,0.056651355363313394,2012-09-28,0.0,0.0,3.933275682640635e-06,0.0,0.0,0.0,0.0,0.0,11.666864347896446,0.0,0.0,0.0 +11748,storm_outflow,0.04,2012-09-28,0.0,0.0,2.4928573308926434e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11749,baseflow,0.06850054181171987,2012-09-28,0.0,0.0,9.11999501671555e-06,0.0,0.0,0.0,0.0,0.0,11.784376676868622,0.0,0.0,0.0 +11750,catchment_outflow,0.16515189717503326,2012-09-28,0.0,0.0,1.5546128030248827e-05,0.0,0.0,0.0,0.0,0.0,11.799460597235726,0.0,0.0,0.0 +11751,reservoir_outflow,0.0,2012-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11752,gw1_gw2,0.0,2012-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11753,gw2_gw1,4.0450809676961796e-05,2012-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11754,urban_drainage,0.04,2012-09-29,0.0,0.0,2.9421430639819075e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11755,percolation,0.11541599442813835,2012-09-29,0.0,0.0,9.801342271274286e-06,0.0,0.0,0.0,0.0,0.0,13.832552138651145,0.0,0.0,0.0 +11756,runoff,0.04492184087057717,2012-09-29,0.0,0.0,3.146620546112508e-06,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 +11757,storm_outflow,0.04,2012-09-29,0.0,0.0,2.9421430639819075e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11758,baseflow,0.06861783044326092,2012-09-29,0.0,0.0,9.121698384851948e-06,0.0,0.0,0.0,0.0,0.0,11.792989314653797,0.0,0.0,0.0 +11759,catchment_outflow,0.15353967131383808,2012-09-29,0.0,0.0,1.5210461994946363e-05,0.0,0.0,0.0,0.0,0.0,11.812208545072307,0.0,0.0,0.0 +11760,reservoir_outflow,0.0,2012-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11761,gw1_gw2,0.0,2012-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11762,gw2_gw1,4.0181137612727014e-05,2012-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11763,urban_drainage,0.04,2012-09-30,0.0,0.0,3.2739928861352904e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11764,percolation,0.11537908552969814,2012-09-30,0.0,0.0,9.768428590116361e-06,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 +11765,runoff,0.05147870578677401,2012-09-30,0.0,0.0,3.061006984448545e-06,0.0,0.0,0.0,0.0,0.0,11.801094538184765,0.0,0.0,0.0 +11766,storm_outflow,0.04,2012-09-30,0.0,0.0,3.2739928861352904e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11767,baseflow,0.06873473358097701,2012-09-30,0.0,0.0,9.123315210365107e-06,0.0,0.0,0.0,0.0,0.0,11.801388981146047,0.0,0.0,0.0 +11768,catchment_outflow,0.160213439367751,2012-09-30,0.0,0.0,1.545831508094894e-05,0.0,0.0,0.0,0.0,0.0,11.854148107305015,0.0,0.0,0.0 +11769,reservoir_outflow,0.0,2012-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11770,gw1_gw2,0.0,2012-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11771,gw2_gw1,3.991326336230117e-05,2012-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11772,urban_drainage,0.04,2012-10-01,0.0,0.0,4.036376680689362e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11773,percolation,0.11307150381910418,2012-10-01,0.0,0.0,9.573060018314034e-06,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 +11774,runoff,0.03878587237526712,2012-10-01,0.0,0.0,2.448805587558835e-06,0.0,0.0,0.0,0.0,0.0,11.778386761031697,0.0,0.0,0.0 +11775,storm_outflow,0.04,2012-10-01,0.0,0.0,4.036376680689362e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +11776,baseflow,0.06884557550657232,2012-10-01,0.0,0.0,9.124439572384981e-06,0.0,0.0,0.0,0.0,0.0,11.809572912361572,0.0,0.0,0.0 +11777,catchment_outflow,0.14763144788183946,2012-10-01,0.0,0.0,1.5609621840633177e-05,0.0,0.0,0.0,0.0,0.0,11.856520492758603,0.0,0.0,0.0 +11778,reservoir_outflow,0.0,2012-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11779,gw1_gw2,0.0,2012-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11780,gw2_gw1,3.964717493953884e-05,2012-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11781,urban_drainage,0.04,2012-10-02,0.0,0.0,3.1737032719587146e-06,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0 +11782,percolation,0.11789413560107742,2012-10-02,0.0,0.0,9.888189671041416e-06,0.0,0.0,0.0,0.0,0.0,13.690947055920006,0.0,0.0,0.0 +11783,runoff,0.07631555623025278,2012-10-02,0.0,0.0,3.6476806470259506e-06,0.0,0.0,0.0,0.0,0.0,11.98717328533459,0.0,0.0,0.0 +11784,storm_outflow,0.04,2012-10-02,0.0,0.0,3.1737032719587146e-06,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0 +11785,baseflow,0.06896819690680858,2012-10-02,0.0,0.0,9.126348947631622e-06,0.0,0.0,0.0,0.0,0.0,11.8176129579313,0.0,0.0,0.0 +11786,catchment_outflow,0.18528375313706136,2012-10-02,0.0,0.0,1.5947732866616285e-05,0.0,0.0,0.0,0.0,0.0,11.944252750289177,0.0,0.0,0.0 +11787,reservoir_outflow,0.015,2012-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11788,gw1_gw2,0.0,2012-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11789,gw2_gw1,3.9382860439829416e-05,2012-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11790,urban_drainage,0.04,2012-10-03,0.0,0.0,3.108529068908391e-06,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0 +11791,percolation,0.12034290761921819,2012-10-03,0.0,0.0,1.0032485935371838e-05,0.0,0.0,0.0,0.0,0.0,13.62056431542778,0.0,0.0,0.0 +11792,runoff,0.0740549966934381,2012-10-03,0.0,0.0,4.058344710124924e-06,0.0,0.0,0.0,0.0,0.0,11.919296553225566,0.0,0.0,0.0 +11793,storm_outflow,0.04,2012-10-03,0.0,0.0,3.108529068908391e-06,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0 +11794,baseflow,0.0690966336835896,2012-10-03,0.0,0.0,9.128614290100972e-06,0.0,0.0,0.0,0.0,0.0,11.82546328279845,0.0,0.0,0.0 +11795,catchment_outflow,0.1831516303770277,2012-10-03,0.0,0.0,1.6295488069134288e-05,0.0,0.0,0.0,0.0,0.0,11.916645435853775,0.0,0.0,0.0 +11796,reservoir_outflow,0.006999999999999999,2012-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11797,gw1_gw2,0.0,2012-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11798,gw2_gw1,3.912030803689959e-05,2012-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11799,urban_drainage,0.04,2012-10-04,0.0,0.0,8.701288625303764e-07,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0 +11800,percolation,0.13738866657237492,2012-10-04,0.0,0.0,1.113392372722557e-05,0.0,0.0,0.0,0.0,0.0,13.357728837564117,0.0,0.0,0.0 +11801,runoff,0.17884848707992698,2012-10-04,0.0,0.0,7.586967469970498e-06,0.0,0.0,0.0,0.0,0.0,11.819114550166622,0.0,0.0,0.0 +11802,storm_outflow,0.04,2012-10-04,0.0,0.0,8.701288625303764e-07,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0 +11803,baseflow,0.06926736376581157,2012-10-04,0.0,0.0,9.133627563693785e-06,0.0,0.0,0.0,0.0,0.0,11.833061230445043,0.0,0.0,0.0 +11804,catchment_outflow,0.28811585084573854,2012-10-04,0.0,0.0,1.759072389619466e-05,0.0,0.0,0.0,0.0,0.0,11.829787830459964,0.0,0.0,0.0 +11805,reservoir_outflow,0.059,2012-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11806,gw1_gw2,0.0,2012-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11807,gw2_gw1,3.8859505983346315e-05,2012-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11808,urban_drainage,0.04,2012-10-05,0.0,0.0,5.556036110429408e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +11809,percolation,0.1559962425535431,2012-10-05,0.0,0.0,1.2246166098815238e-05,0.0,0.0,0.0,0.0,0.0,13.11599784119183,0.0,0.0,0.0 +11810,runoff,0.2345905001031266,2012-10-05,0.0,0.0,1.0519310129756993e-05,0.0,0.0,0.0,0.0,0.0,11.686806632754475,0.0,0.0,0.0 +11811,storm_outflow,0.04,2012-10-05,0.0,0.0,5.556036110429408e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +11812,baseflow,0.06948418596278089,2012-10-05,0.0,0.0,9.141408910031586e-06,0.0,0.0,0.0,0.0,0.0,11.840261908122194,0.0,0.0,0.0 +11813,catchment_outflow,0.34407468606590746,2012-10-05,0.0,0.0,2.021632265083152e-05,0.0,0.0,0.0,0.0,0.0,11.723391620036466,0.0,0.0,0.0 +11814,reservoir_outflow,0.066,2012-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11815,gw1_gw2,0.0,2012-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11816,gw2_gw1,3.860044260992624e-05,2012-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11817,urban_drainage,0.04,2012-10-06,0.0,0.0,8.427500841938331e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +11818,percolation,0.15287631770247223,2012-10-06,0.0,0.0,1.2001242776838933e-05,0.0,0.0,0.0,0.0,0.0,13.115997841191826,0.0,0.0,0.0 +11819,runoff,0.1277275599067379,2012-10-06,0.0,0.0,8.415448103805596e-06,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 +11820,storm_outflow,0.04,2012-10-06,0.0,0.0,8.427500841938331e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +11821,baseflow,0.06969266629213011,2012-10-06,0.0,0.0,9.148558494698606e-06,0.0,0.0,0.0,0.0,0.0,11.847257974644851,0.0,0.0,0.0 +11822,catchment_outflow,0.23742022619886802,2012-10-06,0.0,0.0,1.8406756682698033e-05,0.0,0.0,0.0,0.0,0.0,11.757619991586981,0.0,0.0,0.0 +11823,reservoir_outflow,0.0,2012-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11824,gw1_gw2,0.0,2012-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11825,gw2_gw1,3.834310632591098e-05,2012-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11826,urban_drainage,0.04,2012-10-07,0.0,0.0,1.2210899345214764e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +11827,percolation,0.1498187913484228,2012-10-07,0.0,0.0,1.1761217921302155e-05,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 +11828,runoff,0.10706223971026772,2012-10-07,0.0,0.0,6.732358483044477e-06,0.0,0.0,0.0,0.0,0.0,11.693440961014067,0.0,0.0,0.0 +11829,storm_outflow,0.04,2012-10-07,0.0,0.0,1.2210899345214764e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +11830,baseflow,0.06989298160477085,2012-10-07,0.0,0.0,9.155090143265114e-06,0.0,0.0,0.0,0.0,0.0,11.85405697895749,0.0,0.0,0.0 +11831,catchment_outflow,0.21695522131503858,2012-10-07,0.0,0.0,1.710853856083107e-05,0.0,0.0,0.0,0.0,0.0,11.752834841014824,0.0,0.0,0.0 +11832,reservoir_outflow,0.0,2012-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11833,gw1_gw2,0.0,2012-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11834,gw2_gw1,3.808748561695552e-05,2012-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11835,urban_drainage,0.04,2012-10-08,0.0,0.0,1.8204433856529626e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +11836,percolation,0.1486298933471781,2012-10-08,0.0,0.0,1.164280373462205e-05,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 +11837,runoff,0.094112591884738,2012-10-08,0.0,0.0,5.775254025588716e-06,0.0,0.0,0.0,0.0,0.0,11.62820071128321,0.0,0.0,0.0 +11838,storm_outflow,0.04,2012-10-08,0.0,0.0,1.8204433856529626e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +11839,baseflow,0.07008982388412686,2012-10-08,0.0,0.0,9.161309427243506e-06,0.0,0.0,0.0,0.0,0.0,11.860615421700048,0.0,0.0,0.0 +11840,catchment_outflow,0.2042024157688649,2012-10-08,0.0,0.0,1.6757006838485184e-05,0.0,0.0,0.0,0.0,0.0,11.728882165152363,0.0,0.0,0.0 +11841,reservoir_outflow,0.0,2012-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11842,gw1_gw2,0.0,2012-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11843,gw2_gw1,3.783356904616398e-05,2012-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11844,urban_drainage,0.02099999999999996,2012-10-09,0.0,0.0,2.865954470294285e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +11845,percolation,0.14565729548023454,2012-10-09,0.0,0.0,1.1409947659929611e-05,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 +11846,runoff,0.0702164515408465,2012-10-09,0.0,0.0,4.620203220470973e-06,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 +11847,storm_outflow,0.02099999999999996,2012-10-09,0.0,0.0,2.865954470294285e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +11848,baseflow,0.07027874256311713,2012-10-09,0.0,0.0,9.166931022825222e-06,0.0,0.0,0.0,0.0,0.0,11.866991436209144,0.0,0.0,0.0 +11849,catchment_outflow,0.1614951941039636,2012-10-09,0.0,0.0,1.665308871359048e-05,0.0,0.0,0.0,0.0,0.0,11.76494661648401,0.0,0.0,0.0 +11850,reservoir_outflow,0.0,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11851,gw1_gw2,0.0,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11852,gw2_gw1,3.758134525266854e-05,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11853,urban_drainage,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11854,percolation,0.14274414957062984,2012-10-10,0.0,0.0,1.118174870673102e-05,0.0,0.0,0.0,0.0,0.0,13.091170419404726,0.0,0.0,0.0 +11855,runoff,0.05713081668971579,2012-10-10,0.0,0.0,3.6961625763767785e-06,0.0,0.0,0.0,0.0,0.0,11.656229907188973,0.0,0.0,0.0 +11856,storm_outflow,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11857,baseflow,0.0704599060806359,2012-10-10,0.0,0.0,9.171968067034986e-06,0.0,0.0,0.0,0.0,0.0,11.87319157177555,0.0,0.0,0.0 +11858,catchment_outflow,0.1275907227703517,2012-10-10,0.0,0.0,1.2868130643411765e-05,0.0,0.0,0.0,0.0,0.0,11.776043465557034,0.0,0.0,0.0 +11859,reservoir_outflow,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11860,gw1_gw2,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11861,gw2_gw1,3.733080295145186e-05,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11862,urban_drainage,0.04,2012-10-11,0.0,0.0,1.1267605633802815e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +11863,percolation,0.15217274797776997,2012-10-11,0.0,0.0,1.1746276068551305e-05,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 +11864,runoff,0.12898340171308165,2012-10-11,0.0,0.0,5.584137847617774e-06,0.0,0.0,0.0,0.0,0.0,10.991128070311518,0.0,0.0,0.0 +11865,storm_outflow,0.04,2012-10-11,0.0,0.0,1.1267605633802815e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +11866,baseflow,0.07066418818537873,2012-10-11,0.0,0.0,9.178403837038775e-06,0.0,0.0,0.0,0.0,0.0,11.878688977951288,0.0,0.0,0.0 +11867,catchment_outflow,0.23964758989846038,2012-10-11,0.0,0.0,1.588930224803683e-05,0.0,0.0,0.0,0.0,0.0,11.18807830131939,0.0,0.0,0.0 +11868,reservoir_outflow,0.035500000000000004,2012-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11869,gw1_gw2,0.0,2012-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11870,gw2_gw1,3.708193093157064e-05,2012-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11871,urban_drainage,0.015000000000000006,2012-10-12,0.0,0.0,1.8732394366197183e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +11872,percolation,0.1491292930182146,2012-10-12,0.0,0.0,1.1511350547180278e-05,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 +11873,runoff,0.07058559153522272,2012-10-12,0.0,0.0,4.46731027809422e-06,0.0,0.0,0.0,0.0,0.0,11.166590646002705,0.0,0.0,0.0 +11874,storm_outflow,0.015000000000000006,2012-10-12,0.0,0.0,1.8732394366197183e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +11875,baseflow,0.07086035094746083,2012-10-12,0.0,0.0,9.184236203814131e-06,0.0,0.0,0.0,0.0,0.0,11.88403259795654,0.0,0.0,0.0 +11876,catchment_outflow,0.15644594248268356,2012-10-12,0.0,0.0,1.552478591852807e-05,0.0,0.0,0.0,0.0,0.0,11.43752259308424,0.0,0.0,0.0 +11877,reservoir_outflow,0.0,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11878,gw1_gw2,0.0,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11879,gw2_gw1,3.683471805846495e-05,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11880,urban_drainage,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11881,percolation,0.14773481709550354,2012-10-13,0.0,0.0,1.1385286269312485e-05,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 +11882,runoff,0.06583143423093377,2012-10-13,0.0,0.0,3.921057332728082e-06,0.0,0.0,0.0,0.0,0.0,11.050609511342577,0.0,0.0,0.0 +11883,storm_outflow,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11884,baseflow,0.07105253711283094,2012-10-13,0.0,0.0,9.189738828977878e-06,0.0,0.0,0.0,0.0,0.0,11.88914553429037,0.0,0.0,0.0 +11885,catchment_outflow,0.1368839713437647,2012-10-13,0.0,0.0,1.311079616170596e-05,0.0,0.0,0.0,0.0,0.0,11.485869471336844,0.0,0.0,0.0 +11886,reservoir_outflow,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11887,gw1_gw2,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11888,gw2_gw1,3.658915327164891e-05,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11889,urban_drainage,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11890,percolation,0.14478012075359345,2012-10-14,0.0,0.0,1.1157580543926236e-05,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 +11891,runoff,0.04957199748657957,2012-10-14,0.0,0.0,3.1368458661824656e-06,0.0,0.0,0.0,0.0,0.0,11.092209081398902,0.0,0.0,0.0 +11892,storm_outflow,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11893,baseflow,0.07123685607193285,2012-10-14,0.0,0.0,9.194658433265247e-06,0.0,0.0,0.0,0.0,0.0,11.894117268689138,0.0,0.0,0.0 +11894,catchment_outflow,0.12080885355851242,2012-10-14,0.0,0.0,1.2331504299447712e-05,0.0,0.0,0.0,0.0,0.0,11.565066959263216,0.0,0.0,0.0 +11895,reservoir_outflow,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11896,gw1_gw2,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11897,gw2_gw1,3.6345225582934404e-05,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11898,urban_drainage,0.018,2012-10-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 +11899,percolation,0.1467148153671328,2012-10-15,0.0,0.0,1.1253450191906315e-05,0.0,0.0,0.0,0.0,0.0,12.778851645365535,0.0,0.0,0.0 +11900,runoff,0.07161523666461792,2012-10-15,0.0,0.0,3.5728808891413196e-06,0.0,0.0,0.0,0.0,0.0,10.649991446334871,0.0,0.0,0.0 +11901,storm_outflow,0.018,2012-10-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 +11902,baseflow,0.07142555097017085,2012-10-15,0.0,0.0,9.199805412661851e-06,0.0,0.0,0.0,0.0,0.0,11.898660588235153,0.0,0.0,0.0 +11903,catchment_outflow,0.16104078763478877,2012-10-15,0.0,0.0,1.5772686301803173e-05,0.0,0.0,0.0,0.0,0.0,11.135696257857745,0.0,0.0,0.0 +11904,reservoir_outflow,0.009,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11905,gw1_gw2,0.0,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11906,gw2_gw1,3.6102924079095545e-05,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11907,urban_drainage,0.04,2012-10-16,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 +11908,percolation,0.1551272755506998,2012-10-16,0.0,0.0,1.175003531704627e-05,0.0,0.0,0.0,0.0,0.0,12.578868314585371,0.0,0.0,0.0 +11909,runoff,0.12136916313655355,2012-10-16,0.0,0.0,5.263818474573327e-06,0.0,0.0,0.0,0.0,0.0,10.28344023299525,0.0,0.0,0.0 +11910,storm_outflow,0.04,2012-10-16,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 +11911,baseflow,0.07163480528162217,2012-10-16,0.0,0.0,9.206180987422812e-06,0.0,0.0,0.0,0.0,0.0,11.902343112776903,0.0,0.0,0.0 +11912,catchment_outflow,0.23300396841817572,2012-10-16,0.0,0.0,1.5033379743686281e-05,0.0,0.0,0.0,0.0,0.0,10.715330659267302,0.0,0.0,0.0 +11913,reservoir_outflow,0.035500000000000004,2012-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11914,gw1_gw2,0.0,2012-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11915,gw2_gw1,3.586223791849363e-05,2012-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11916,urban_drainage,0.04,2012-10-17,0.0,0.0,5.57910570217421e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +11917,percolation,0.16355076157526124,2012-10-17,0.0,0.0,1.2220825696782074e-05,0.0,0.0,0.0,0.0,0.0,12.393025533385632,0.0,0.0,0.0 +11918,runoff,0.14410710700624063,2012-10-17,0.0,0.0,6.563691733247761e-06,0.0,0.0,0.0,0.0,0.0,10.24567392919247,0.0,0.0,0.0 +11919,storm_outflow,0.04,2012-10-17,0.0,0.0,5.57910570217421e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +11920,baseflow,0.07186459517235627,2012-10-17,0.0,0.0,9.21371759919621e-06,0.0,0.0,0.0,0.0,0.0,11.905134872870649,0.0,0.0,0.0 +11921,catchment_outflow,0.2559717021785969,2012-10-17,0.0,0.0,1.6335319902661393e-05,0.0,0.0,0.0,0.0,0.0,10.687203167920096,0.0,0.0,0.0 +11922,reservoir_outflow,0.036,2012-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11923,gw1_gw2,0.0,2012-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11924,gw2_gw1,3.562315633267588e-05,2012-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11925,urban_drainage,0.04,2012-10-18,0.0,0.0,1.6336601287760333e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +11926,percolation,0.16027974634375602,2012-10-18,0.0,0.0,1.1976409182846433e-05,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +11927,runoff,0.08425561441306267,2012-10-18,0.0,0.0,5.25095338659821e-06,0.0,0.0,0.0,0.0,0.0,10.277281664961066,0.0,0.0,0.0 +11928,storm_outflow,0.04,2012-10-18,0.0,0.0,1.6336601287760333e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +11929,baseflow,0.07208563305028477,2012-10-18,0.0,0.0,9.220624328155334e-06,0.0,0.0,0.0,0.0,0.0,11.907846890092454,0.0,0.0,0.0 +11930,catchment_outflow,0.19634124746334747,2012-10-18,0.0,0.0,1.6105237843529576e-05,0.0,0.0,0.0,0.0,0.0,10.837726911954494,0.0,0.0,0.0 +11931,reservoir_outflow,0.0,2012-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11932,gw1_gw2,0.0,2012-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11933,gw2_gw1,3.538566862371084e-05,2012-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11934,urban_drainage,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11935,percolation,0.1570741514168809,2012-10-19,0.0,0.0,1.1736880999189504e-05,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +11936,runoff,0.07064536755290511,2012-10-19,0.0,0.0,4.200762709278568e-06,0.0,0.0,0.0,0.0,0.0,10.301398012898353,0.0,0.0,0.0 +11937,storm_outflow,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11938,baseflow,0.07229810434620126,2012-10-19,0.0,0.0,9.22691496983292e-06,0.0,0.0,0.0,0.0,0.0,11.91048212598038,0.0,0.0,0.0 +11939,catchment_outflow,0.1429434718991064,2012-10-19,0.0,0.0,1.3427677679111488e-05,0.0,0.0,0.0,0.0,0.0,11.11524232186778,0.0,0.0,0.0 +11940,reservoir_outflow,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11941,gw1_gw2,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11942,gw2_gw1,3.5149764165964825e-05,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11943,urban_drainage,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11944,percolation,0.1539326683885433,2012-10-20,0.0,0.0,1.1502143379205712e-05,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +11945,runoff,0.0535056715797564,2012-10-20,0.0,0.0,3.3606101674228543e-06,0.0,0.0,0.0,0.0,0.0,10.280343441560388,0.0,0.0,0.0 +11946,storm_outflow,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11947,baseflow,0.07250219075630711,2012-10-20,0.0,0.0,9.232603040856353e-06,0.0,0.0,0.0,0.0,0.0,11.91304340011363,0.0,0.0,0.0 +11948,catchment_outflow,0.1260078623360635,2012-10-20,0.0,0.0,1.2593213208279207e-05,0.0,0.0,0.0,0.0,0.0,11.219763582877736,0.0,0.0,0.0 +11949,reservoir_outflow,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11950,gw1_gw2,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11951,gw2_gw1,3.491543240485839e-05,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11952,urban_drainage,0.002000000000000001,2012-10-21,0.0,0.0,3.2450490193164044e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +11953,percolation,0.15343759236478186,2012-10-21,0.0,0.0,1.1437348841317485e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +11954,runoff,0.060138247534481215,2012-10-21,0.0,0.0,3.239315899591237e-06,0.0,0.0,0.0,0.0,0.0,10.50009039116509,0.0,0.0,0.0 +11955,storm_outflow,0.002000000000000001,2012-10-21,0.0,0.0,3.2450490193164044e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +11956,baseflow,0.07270452926032829,2012-10-21,0.0,0.0,9.238114905357504e-06,0.0,0.0,0.0,0.0,0.0,11.915435609786748,0.0,0.0,0.0 +11957,catchment_outflow,0.1348427767948095,2012-10-21,0.0,0.0,1.5722479824265145e-05,0.0,0.0,0.0,0.0,0.0,11.274444904475834,0.0,0.0,0.0 +11958,reservoir_outflow,0.0010000000000000005,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11959,gw1_gw2,0.0,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11960,gw2_gw1,3.46826628554453e-05,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11961,urban_drainage,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11962,percolation,0.15036884051748622,2012-10-22,0.0,0.0,1.1208601864491136e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +11963,runoff,0.04324854221357427,2012-10-22,0.0,0.0,2.591452719672989e-06,0.0,0.0,0.0,0.0,0.0,10.429981846726673,0.0,0.0,0.0 +11964,storm_outflow,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11965,baseflow,0.0728986900384712,2012-10-22,0.0,0.0,9.243041122755338e-06,0.0,0.0,0.0,0.0,0.0,11.917761395120285,0.0,0.0,0.0 +11966,catchment_outflow,0.11614723225204547,2012-10-22,0.0,0.0,1.1834493842428328e-05,0.0,0.0,0.0,0.0,0.0,11.363772330072544,0.0,0.0,0.0 +11967,reservoir_outflow,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11968,gw1_gw2,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11969,gw2_gw1,3.445144510330067e-05,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11970,urban_drainage,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11971,percolation,0.1473614637071365,2012-10-23,0.0,0.0,1.0984429827201311e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +11972,runoff,0.033074538709649305,2012-10-23,0.0,0.0,2.0731621757383912e-06,0.0,0.0,0.0,0.0,0.0,10.382533847302307,0.0,0.0,0.0 +11973,storm_outflow,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11974,baseflow,0.07308484697264285,2012-10-23,0.0,0.0,9.247394594516455e-06,0.0,0.0,0.0,0.0,0.0,11.920023135399736,0.0,0.0,0.0 +11975,catchment_outflow,0.10615938568229216,2012-10-23,0.0,0.0,1.1320556770254846e-05,0.0,0.0,0.0,0.0,0.0,11.44100991722762,0.0,0.0,0.0 +11976,reservoir_outflow,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11977,gw1_gw2,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11978,gw2_gw1,3.422176880238936e-05,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11979,urban_drainage,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11980,percolation,0.14441423443299375,2012-10-24,0.0,0.0,1.0764741230657286e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +11981,runoff,0.02687314304125159,2012-10-24,0.0,0.0,1.6585297405907138e-06,0.0,0.0,0.0,0.0,0.0,10.389757289614696,0.0,0.0,0.0 +11982,storm_outflow,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11983,baseflow,0.07326317044129373,2012-10-24,0.0,0.0,9.251187961106808e-06,0.0,0.0,0.0,0.0,0.0,11.92222310017976,0.0,0.0,0.0 +11984,catchment_outflow,0.10013631348254531,2012-10-24,0.0,0.0,1.0909717701697521e-05,0.0,0.0,0.0,0.0,0.0,11.510961975210137,0.0,0.0,0.0 +11985,reservoir_outflow,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11986,gw1_gw2,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11987,gw2_gw1,3.399362367684233e-05,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11988,urban_drainage,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11989,percolation,0.14152594974433388,2012-10-25,0.0,0.0,1.054944640604414e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +11990,runoff,0.021588132767792062,2012-10-25,0.0,0.0,1.3268237924725705e-06,0.0,0.0,0.0,0.0,0.0,10.376587038230165,0.0,0.0,0.0 +11991,storm_outflow,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11992,baseflow,0.07343382738955133,2012-10-25,0.0,0.0,9.25443360721915e-06,0.0,0.0,0.0,0.0,0.0,11.924363455545617,0.0,0.0,0.0 +11993,catchment_outflow,0.09502196015734339,2012-10-25,0.0,0.0,1.0581257399691721e-05,0.0,0.0,0.0,0.0,0.0,11.5727226060353,0.0,0.0,0.0 +11994,reservoir_outflow,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11995,gw1_gw2,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11996,gw2_gw1,3.3766999518825e-05,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11997,urban_drainage,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11998,percolation,0.1386954307494472,2012-10-26,0.0,0.0,1.0338457477923257e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +11999,runoff,0.016735621569344414,2012-10-26,0.0,0.0,1.0614590339780567e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +12000,storm_outflow,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12001,baseflow,0.07359698139795107,2012-10-26,0.0,0.0,9.25714366689591e-06,0.0,0.0,0.0,0.0,0.0,11.926446269950146,0.0,0.0,0.0 +12002,catchment_outflow,0.09033260296729548,2012-10-26,0.0,0.0,1.0318602700873967e-05,0.0,0.0,0.0,0.0,0.0,11.63729528677356,0.0,0.0,0.0 +12003,reservoir_outflow,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12004,gw1_gw2,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12005,gw2_gw1,3.3541886188892535e-05,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12006,urban_drainage,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12007,percolation,0.13592152213445827,2012-10-27,0.0,0.0,1.013168832836479e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455684,0.0,0.0,0.0 +12008,runoff,0.01491185834398355,2012-10-27,0.0,0.0,8.491672271824453e-07,0.0,0.0,0.0,0.0,0.0,10.29089909495573,0.0,0.0,0.0 +12009,storm_outflow,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12010,baseflow,0.07375279274979234,2012-10-27,0.0,0.0,9.259330028549581e-06,0.0,0.0,0.0,0.0,0.0,11.928473519659487,0.0,0.0,0.0 +12011,catchment_outflow,0.08866465109377589,2012-10-27,0.0,0.0,1.0108497255732027e-05,0.0,0.0,0.0,0.0,0.0,11.6530618697215,0.0,0.0,0.0 +12012,reservoir_outflow,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12013,gw1_gw2,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12014,gw2_gw1,3.331827361421347e-05,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12015,urban_drainage,0.011,2012-10-28,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 +12016,percolation,0.13524444006482286,2012-10-28,0.0,0.0,1.0070799350524274e-05,0.0,0.0,0.0,0.0,0.0,12.326859058443523,0.0,0.0,0.0 +12017,runoff,0.024677918251590342,2012-10-28,0.0,0.0,1.1518164108352219e-06,0.0,0.0,0.0,0.0,0.0,9.824332316324453,0.0,0.0,0.0 +12018,storm_outflow,0.011,2012-10-28,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 +12019,baseflow,0.07390652186807992,2012-10-28,0.0,0.0,9.261358701854518e-06,0.0,0.0,0.0,0.0,0.0,11.930296072925454,0.0,0.0,0.0 +12020,catchment_outflow,0.10958444011967025,2012-10-28,0.0,0.0,1.741317511268974e-05,0.0,0.0,0.0,0.0,0.0,11.171103209408164,0.0,0.0,0.0 +12021,reservoir_outflow,0.0055,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12022,gw1_gw2,0.0,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12023,gw2_gw1,3.309615179016845e-05,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12024,urban_drainage,0.0009999999999999983,2012-10-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 +12025,percolation,0.13413695393856495,2012-10-29,0.0,0.0,9.980586008470977e-06,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 +12026,runoff,0.02494183115524478,2012-10-29,0.0,0.0,1.292128611858813e-06,0.0,0.0,0.0,0.0,0.0,9.590443387522173,0.0,0.0,0.0 +12027,storm_outflow,0.0009999999999999983,2012-10-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 +12028,baseflow,0.07405709794825613,2012-10-29,0.0,0.0,9.263156770121059e-06,0.0,0.0,0.0,0.0,0.0,11.931927564347495,0.0,0.0,0.0 +12029,catchment_outflow,0.0999989291035009,2012-10-29,0.0,0.0,1.1555285381979872e-05,0.0,0.0,0.0,0.0,0.0,11.314092642420928,0.0,0.0,0.0 +12030,reservoir_outflow,0.0004999999999999991,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12031,gw1_gw2,0.0,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12032,gw2_gw1,3.287551077804096e-05,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12033,urban_drainage,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12034,percolation,0.13145421485979364,2012-10-30,0.0,0.0,9.780974288301559e-06,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 +12035,runoff,0.015469527590754284,2012-10-30,0.0,0.0,1.0337028894870502e-06,0.0,0.0,0.0,0.0,0.0,9.892022276811032,0.0,0.0,0.0 +12036,storm_outflow,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12037,baseflow,0.07420059074053498,2012-10-30,0.0,0.0,9.26445131391651e-06,0.0,0.0,0.0,0.0,0.0,11.933516108082884,0.0,0.0,0.0 +12038,catchment_outflow,0.08967011833128927,2012-10-30,0.0,0.0,1.0298154203403561e-05,0.0,0.0,0.0,0.0,0.0,11.581325816189459,0.0,0.0,0.0 +12039,reservoir_outflow,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12040,gw1_gw2,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12041,gw2_gw1,3.265634070626078e-05,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12042,urban_drainage,0.04,2012-10-31,0.0,0.0,6.666666666666667e-07,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0 +12043,percolation,0.1372090033735932,2012-10-31,0.0,0.0,1.0137819256388645e-05,0.0,0.0,0.0,0.0,0.0,12.057217799977936,0.0,0.0,0.0 +12044,runoff,0.06973896235836176,2012-10-31,0.0,0.0,2.66851049110003e-06,0.0,0.0,0.0,0.0,0.0,8.47974896053436,0.0,0.0,0.0 +12045,storm_outflow,0.04,2012-10-31,0.0,0.0,6.666666666666667e-07,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0 +12046,baseflow,0.07435811177211762,2012-10-31,0.0,0.0,9.26663473377269e-06,0.0,0.0,0.0,0.0,0.0,11.93408675819274,0.0,0.0,0.0 +12047,catchment_outflow,0.18409707413047938,2012-10-31,0.0,0.0,1.2601811891539387e-05,0.0,0.0,0.0,0.0,0.0,9.74765655079906,0.0,0.0,0.0 +12048,reservoir_outflow,0.06,2012-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12049,gw1_gw2,0.0,2012-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12050,gw2_gw1,3.243863176827233e-05,2012-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12051,urban_drainage,0.04,2012-11-01,0.0,0.0,1.0256410256410259e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 +12052,percolation,0.13837992728970896,2012-11-01,0.0,0.0,1.0192342933504871e-05,0.0,0.0,0.0,0.0,0.0,11.948686352301085,0.0,0.0,0.0 +12053,runoff,0.059045045392652505,2012-11-01,0.0,0.0,2.9924086003600193e-06,0.0,0.0,0.0,0.0,0.0,8.443479980128728,0.0,0.0,0.0 +12054,storm_outflow,0.04,2012-11-01,0.0,0.0,1.0256410256410259e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 +12055,baseflow,0.0745181663109116,2012-11-01,0.0,0.0,9.268949004272022e-06,0.0,0.0,0.0,0.0,0.0,11.934154536657749,0.0,0.0,0.0 +12056,catchment_outflow,0.1735632117035641,2012-11-01,0.0,0.0,1.3286998630273067e-05,0.0,0.0,0.0,0.0,0.0,9.806343268680978,0.0,0.0,0.0 +12057,reservoir_outflow,0.0055,2012-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12058,gw1_gw2,0.0,2012-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12059,gw2_gw1,3.222237422306762e-05,2012-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12060,urban_drainage,0.04,2012-11-02,0.0,0.0,2.1978021978021984e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 +12061,percolation,0.1369707004474208,2012-11-02,0.0,0.0,1.00785851612162e-05,0.0,0.0,0.0,0.0,0.0,11.909046559621892,0.0,0.0,0.0 +12062,runoff,0.045540392928040005,2012-11-02,0.0,0.0,2.6942238348927713e-06,0.0,0.0,0.0,0.0,0.0,8.48020346703862,0.0,0.0,0.0 +12063,storm_outflow,0.04,2012-11-02,0.0,0.0,2.1978021978021984e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 +12064,baseflow,0.07467429764625287,2012-11-02,0.0,0.0,9.270973094664381e-06,0.0,0.0,0.0,0.0,0.0,11.934039401420128,0.0,0.0,0.0 +12065,catchment_outflow,0.16021469057429288,2012-11-02,0.0,0.0,1.416299912735935e-05,0.0,0.0,0.0,0.0,0.0,9.933678767009708,0.0,0.0,0.0 +12066,reservoir_outflow,0.0,2012-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12067,gw1_gw2,0.0,2012-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12068,gw2_gw1,3.200755839518621e-05,2012-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12069,urban_drainage,0.04,2012-11-03,0.0,0.0,3.894351262772312e-07,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0 +12070,percolation,0.1499558918800576,2012-11-03,0.0,0.0,1.0857653245805745e-05,0.0,0.0,0.0,0.0,0.0,11.459268856510318,0.0,0.0,0.0 +12071,runoff,0.14020874679255949,2012-11-03,0.0,0.0,5.424178360627114e-06,0.0,0.0,0.0,0.0,0.0,7.57420231478438,0.0,0.0,0.0 +12072,storm_outflow,0.04,2012-11-03,0.0,0.0,3.894351262772312e-07,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0 +12073,baseflow,0.07486250163183737,2012-11-03,0.0,0.0,9.274939795042234e-06,0.0,0.0,0.0,0.0,0.0,11.931661888013934,0.0,0.0,0.0 +12074,catchment_outflow,0.2550712484243969,2012-11-03,0.0,0.0,1.508855328194658e-05,0.0,0.0,0.0,0.0,0.0,8.751442749136109,0.0,0.0,0.0 +12075,reservoir_outflow,0.056,2012-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12076,gw1_gw2,0.0,2012-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12077,gw2_gw1,3.179417467258361e-05,2012-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12078,urban_drainage,0.04,2012-11-04,0.0,0.0,4.1962316673484824e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +12079,percolation,0.1606947093103479,2012-11-04,0.0,0.0,1.1457110720790874e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +12080,runoff,0.1620241532906095,2012-11-04,0.0,0.0,7.061377821505831e-06,0.0,0.0,0.0,0.0,0.0,7.3935032359873345,0.0,0.0,0.0 +12081,storm_outflow,0.04,2012-11-04,0.0,0.0,4.1962316673484824e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +12082,baseflow,0.07507708215103365,2012-11-04,0.0,0.0,9.280395222356606e-06,0.0,0.0,0.0,0.0,0.0,11.927249370948855,0.0,0.0,0.0 +12083,catchment_outflow,0.27710123544164317,2012-11-04,0.0,0.0,1.6761396210597284e-05,0.0,0.0,0.0,0.0,0.0,8.527066194036452,0.0,0.0,0.0 +12084,reservoir_outflow,0.045,2012-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12085,gw1_gw2,0.0,2012-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12086,gw2_gw1,3.158221350805235e-05,2012-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12087,urban_drainage,0.04,2012-11-05,0.0,0.0,8.849353141838578e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +12088,percolation,0.15748081512414094,2012-11-05,0.0,0.0,1.1227968506375055e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +12089,runoff,0.09105669731910812,2012-11-05,0.0,0.0,5.649102257204663e-06,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +12090,storm_outflow,0.04,2012-11-05,0.0,0.0,8.849353141838578e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +12091,baseflow,0.07528309148346643,2012-11-05,0.0,0.0,9.285264155566653e-06,0.0,0.0,0.0,0.0,0.0,11.922960013209414,0.0,0.0,0.0 +12092,catchment_outflow,0.20633978880257456,2012-11-05,0.0,0.0,1.5819301726955174e-05,0.0,0.0,0.0,0.0,0.0,9.070568979036674,0.0,0.0,0.0 +12093,reservoir_outflow,0.0,2012-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12094,gw1_gw2,0.0,2012-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12095,gw2_gw1,3.13716654178009e-05,2012-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12096,urban_drainage,0.04,2012-11-06,0.0,0.0,2.056082129952488e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +12097,percolation,0.15433119882165813,2012-11-06,0.0,0.0,1.1003409136247554e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +12098,runoff,0.07412854775684957,2012-11-06,0.0,0.0,4.519281805763731e-06,0.0,0.0,0.0,0.0,0.0,7.706118630967804,0.0,0.0,0.0 +12099,storm_outflow,0.04,2012-11-06,0.0,0.0,2.056082129952488e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +12100,baseflow,0.07548071175181191,2012-11-06,0.0,0.0,9.289559518018355e-06,0.0,0.0,0.0,0.0,0.0,11.918789373753716,0.0,0.0,0.0 +12101,catchment_outflow,0.18960925950866148,2012-11-06,0.0,0.0,1.5864923453734575e-05,0.0,0.0,0.0,0.0,0.0,9.178631292351827,0.0,0.0,0.0 +12102,reservoir_outflow,0.0,2012-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12103,gw1_gw2,0.0,2012-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12104,gw2_gw1,3.116252098145367e-05,2012-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12105,urban_drainage,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12106,percolation,0.15124457484522497,2012-11-07,0.0,0.0,1.0783340953522602e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +12107,runoff,0.058690494842079326,2012-11-07,0.0,0.0,3.615425444610984e-06,0.0,0.0,0.0,0.0,0.0,7.728112941620628,0.0,0.0,0.0 +12108,storm_outflow,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12109,baseflow,0.07567012140954545,2012-11-07,0.0,0.0,9.293293971607117e-06,0.0,0.0,0.0,0.0,0.0,11.914733217827319,0.0,0.0,0.0 +12110,catchment_outflow,0.13436061625162476,2012-11-07,0.0,0.0,1.2908719416218102e-05,0.0,0.0,0.0,0.0,0.0,10.08596208993751,0.0,0.0,0.0 +12111,reservoir_outflow,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12112,gw1_gw2,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12113,gw2_gw1,3.095477084134046e-05,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12114,urban_drainage,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12115,percolation,0.14821968334832047,2012-11-08,0.0,0.0,1.0567674134452151e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746091,0.0,0.0,0.0 +12116,runoff,0.046621029027383354,2012-11-08,0.0,0.0,2.892340355688788e-06,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +12117,storm_outflow,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12118,baseflow,0.07585149531439238,2012-11-08,0.0,0.0,9.296479922014229e-06,0.0,0.0,0.0,0.0,0.0,11.910787505108404,0.0,0.0,0.0 +12119,catchment_outflow,0.12247252434177573,2012-11-08,0.0,0.0,1.2188820277703017e-05,0.0,0.0,0.0,0.0,0.0,10.322159671433532,0.0,0.0,0.0 +12120,reservoir_outflow,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12121,gw1_gw2,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12122,gw2_gw1,3.0748405702496484e-05,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12123,urban_drainage,0.0009999999999999983,2012-11-09,0.0,0.0,3.3598143727416837e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 +12124,percolation,0.14744716071986844,2012-11-09,0.0,0.0,1.049573135986352e-05,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 +12125,runoff,0.052293835590689244,2012-11-09,0.0,0.0,2.7785746448857325e-06,0.0,0.0,0.0,0.0,0.0,7.620083484578406,0.0,0.0,0.0 +12126,storm_outflow,0.0009999999999999983,2012-11-09,0.0,0.0,3.3598143727416837e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 +12127,baseflow,0.07603048447790607,2012-11-09,0.0,0.0,9.299478050608853e-06,0.0,0.0,0.0,0.0,0.0,11.906614811915473,0.0,0.0,0.0 +12128,catchment_outflow,0.12932432006859532,2012-11-09,0.0,0.0,1.543786706823627e-05,0.0,0.0,0.0,0.0,0.0,10.138263900217515,0.0,0.0,0.0 +12129,reservoir_outflow,0.0004999999999999991,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12130,gw1_gw2,0.0,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12131,gw2_gw1,3.0543416330885974e-05,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12132,urban_drainage,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12133,percolation,0.14449821750547107,2012-11-10,0.0,0.0,1.028581673266625e-05,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 +12134,runoff,0.0360346826054515,2012-11-10,0.0,0.0,2.222859715908586e-06,0.0,0.0,0.0,0.0,0.0,7.664258301294077,0.0,0.0,0.0 +12135,storm_outflow,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12136,baseflow,0.07620165381047497,2012-11-10,0.0,0.0,9.301943897313996e-06,0.0,0.0,0.0,0.0,0.0,11.902554539401132,0.0,0.0,0.0 +12137,catchment_outflow,0.11223633641592648,2012-11-10,0.0,0.0,1.1524803613222582e-05,0.0,0.0,0.0,0.0,0.0,10.541803960710693,0.0,0.0,0.0 +12138,reservoir_outflow,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12139,gw1_gw2,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12140,gw2_gw1,3.0339793555178575e-05,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12141,urban_drainage,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12142,percolation,0.14160825315536166,2012-11-11,0.0,0.0,1.0080100398012925e-05,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 +12143,runoff,0.029503390359475617,2012-11-11,0.0,0.0,1.778287772726869e-06,0.0,0.0,0.0,0.0,0.0,7.684387664485412,0.0,0.0,0.0 +12144,storm_outflow,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12145,baseflow,0.07636517030883719,2012-11-11,0.0,0.0,9.303889288565744e-06,0.0,0.0,0.0,0.0,0.0,11.89860281547466,0.0,0.0,0.0 +12146,catchment_outflow,0.10586856066831281,2012-11-11,0.0,0.0,1.1082177061292613e-05,0.0,0.0,0.0,0.0,0.0,10.724187730641395,0.0,0.0,0.0 +12147,reservoir_outflow,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12148,gw1_gw2,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12149,gw2_gw1,3.0137528264617688e-05,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12150,urban_drainage,0.013999999999999999,2012-11-12,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +12151,percolation,0.14157296334780384,2012-11-12,0.0,0.0,1.0060970146845501e-05,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +12152,runoff,0.0419732816350715,2012-11-12,0.0,0.0,2.030869407490943e-06,0.0,0.0,0.0,0.0,0.0,8.125541475371083,0.0,0.0,0.0 +12153,storm_outflow,0.013999999999999999,2012-11-12,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +12154,baseflow,0.07652818979143461,2012-11-12,0.0,0.0,9.305781990711442e-06,0.0,0.0,0.0,0.0,0.0,11.894447951610742,0.0,0.0,0.0 +12155,catchment_outflow,0.1325014714265061,2012-11-12,0.0,0.0,1.4336651398202386e-05,0.0,0.0,0.0,0.0,0.0,10.376233533761187,0.0,0.0,0.0 +12156,reservoir_outflow,0.006999999999999999,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12157,gw1_gw2,0.0,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12158,gw2_gw1,2.993661140973103e-05,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12159,urban_drainage,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12160,percolation,0.13874150408084776,2012-11-13,0.0,0.0,9.859750743908592e-06,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +12161,runoff,0.026035687305594444,2012-11-13,0.0,0.0,1.6246955259927544e-06,0.0,0.0,0.0,0.0,0.0,7.920785538130448,0.0,0.0,0.0 +12162,storm_outflow,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12163,baseflow,0.07668372307715815,2012-11-13,0.0,0.0,9.307166912594436e-06,0.0,0.0,0.0,0.0,0.0,11.89040323672826,0.0,0.0,0.0 +12164,catchment_outflow,0.10271941038275259,2012-11-13,0.0,0.0,1.0931862438587191e-05,0.0,0.0,0.0,0.0,0.0,10.884247489354543,0.0,0.0,0.0 +12165,reservoir_outflow,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12166,gw1_gw2,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12167,gw2_gw1,2.9737034000554274e-05,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12168,urban_drainage,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12169,percolation,0.1359666739992308,2012-11-14,0.0,0.0,9.66255572903042e-06,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +12170,runoff,0.020848364273045053,2012-11-14,0.0,0.0,1.2997564207942034e-06,0.0,0.0,0.0,0.0,0.0,7.919195413188496,0.0,0.0,0.0 +12171,storm_outflow,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12172,baseflow,0.07683193045446333,2012-11-14,0.0,0.0,9.308055384635525e-06,0.0,0.0,0.0,0.0,0.0,11.886464956742444,0.0,0.0,0.0 +12173,catchment_outflow,0.09768029472750839,2012-11-14,0.0,0.0,1.0607811805429728e-05,0.0,0.0,0.0,0.0,0.0,11.03971197709488,0.0,0.0,0.0 +12174,reservoir_outflow,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12175,gw1_gw2,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12176,gw2_gw1,2.953878710698632e-05,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12177,urban_drainage,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12178,percolation,0.1332473405192462,2012-11-15,0.0,0.0,9.469304614449813e-06,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +12179,runoff,0.01646575833455555,2012-11-15,0.0,0.0,1.0398051366353628e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 +12180,storm_outflow,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12181,baseflow,0.07697296897962529,2012-11-15,0.0,0.0,9.30845850771006e-06,0.0,0.0,0.0,0.0,0.0,11.882629558011194,0.0,0.0,0.0 +12182,catchment_outflow,0.09343872731418083,2012-11-15,0.0,0.0,1.0348263644345423e-05,0.0,0.0,0.0,0.0,0.0,11.182943475837963,0.0,0.0,0.0 +12183,reservoir_outflow,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12184,gw1_gw2,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12185,gw2_gw1,2.9341861859855103e-05,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12186,urban_drainage,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12187,percolation,0.13131075069770068,2012-11-16,0.0,0.0,9.330013195754609e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +12188,runoff,0.018156101854440505,2012-11-16,0.0,0.0,9.988263546209395e-07,0.0,0.0,0.0,0.0,0.0,8.025814329109314,0.0,0.0,0.0 +12189,storm_outflow,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12190,baseflow,0.07710881343392048,2012-11-16,0.0,0.0,9.308512394430172e-06,0.0,0.0,0.0,0.0,0.0,11.878815108957399,0.0,0.0,0.0 +12191,catchment_outflow,0.09526491528836098,2012-11-16,0.0,0.0,1.0307338749051111e-05,0.0,0.0,0.0,0.0,0.0,11.144489419458704,0.0,0.0,0.0 +12192,reservoir_outflow,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12193,gw1_gw2,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12194,gw2_gw1,2.9146249447187246e-05,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12195,urban_drainage,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12196,percolation,0.12868453568374666,2012-11-17,0.0,0.0,9.143412931839516e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +12197,runoff,0.012480370637687352,2012-11-17,0.0,0.0,7.990610836967516e-07,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +12198,storm_outflow,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12199,baseflow,0.07723775273954504,2012-11-17,0.0,0.0,9.308099645773694e-06,0.0,0.0,0.0,0.0,0.0,11.87509907727678,0.0,0.0,0.0 +12200,catchment_outflow,0.0897181233772324,2012-11-17,0.0,0.0,1.0107160729470447e-05,0.0,0.0,0.0,0.0,0.0,11.337703984569806,0.0,0.0,0.0 +12201,reservoir_outflow,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12202,gw1_gw2,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12203,gw2_gw1,2.895194111740551e-05,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12204,urban_drainage,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12205,percolation,0.12611084497007174,2012-11-18,0.0,0.0,8.960544673202727e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +12206,runoff,0.00998429651014988,2012-11-18,0.0,0.0,6.392488669574012e-07,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +12207,storm_outflow,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12208,baseflow,0.07735993547012136,2012-11-18,0.0,0.0,9.307230758342267e-06,0.0,0.0,0.0,0.0,0.0,11.87147826249769,0.0,0.0,0.0 +12209,catchment_outflow,0.08734423198027125,2012-11-18,0.0,0.0,9.946479625299669e-06,0.0,0.0,0.0,0.0,0.0,11.430291578250651,0.0,0.0,0.0 +12210,reservoir_outflow,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12211,gw1_gw2,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12212,gw2_gw1,2.875892817701953e-05,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12213,urban_drainage,0.027999999999999997,2012-11-19,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0 +12214,percolation,0.1235886280706703,2012-11-19,0.0,0.0,8.781333779738672e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +12215,runoff,0.007987437208119905,2012-11-19,0.0,0.0,5.113990935659211e-07,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +12216,storm_outflow,0.027999999999999997,2012-11-19,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0 +12217,baseflow,0.07747550720162273,2012-11-19,0.0,0.0,9.305916015895758e-06,0.0,0.0,0.0,0.0,0.0,11.867949597003864,0.0,0.0,0.0 +12218,catchment_outflow,0.11346294440974264,2012-11-19,0.0,0.0,1.6817315109461678e-05,0.0,0.0,0.0,0.0,0.0,10.537096654803419,0.0,0.0,0.0 +12219,reservoir_outflow,0.013999999999999999,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12220,gw1_gw2,0.0,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12221,gw2_gw1,2.8567201989204706e-05,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12222,urban_drainage,0.04,2012-11-20,0.0,0.0,2.173913043478261e-07,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 +12223,percolation,0.1368425781570755,2012-11-20,0.0,0.0,9.594336346918289e-06,0.0,0.0,0.0,0.0,0.0,10.632623365112318,0.0,0.0,0.0 +12224,runoff,0.11398699946209678,2012-11-20,0.0,0.0,3.704550084100702e-06,0.0,0.0,0.0,0.0,0.0,7.77069366631267,0.0,0.0,0.0 +12225,storm_outflow,0.04,2012-11-20,0.0,0.0,2.173913043478261e-07,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 +12226,baseflow,0.07762392487901136,2012-11-20,0.0,0.0,9.306637066723314e-06,0.0,0.0,0.0,0.0,0.0,11.862505230891852,0.0,0.0,0.0 +12227,catchment_outflow,0.23161092434110814,2012-11-20,0.0,0.0,1.3228578455171842e-05,0.0,0.0,0.0,0.0,0.0,9.115043706369022,0.0,0.0,0.0 +12228,reservoir_outflow,0.092,2012-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12229,gw1_gw2,0.0,2012-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12230,gw2_gw1,2.8376753975933866e-05,2012-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12231,urban_drainage,0.04,2012-11-21,0.0,0.0,2.384760796859095e-07,0.0,0.0,0.0,0.0,0.0,7.634651218431439,0.0,0.0,0.0 +12232,percolation,0.15748574758762718,2012-11-21,0.0,0.0,1.0755804371455036e-05,0.0,0.0,0.0,0.0,0.0,10.23034394828577,0.0,0.0,0.0 +12233,runoff,0.20701578490106998,2012-11-21,0.0,0.0,7.474822572197606e-06,0.0,0.0,0.0,0.0,0.0,7.814933851536078,0.0,0.0,0.0 +12234,storm_outflow,0.04,2012-11-21,0.0,0.0,2.384760796859095e-07,0.0,0.0,0.0,0.0,0.0,7.634651218431439,0.0,0.0,0.0 +12235,baseflow,0.07782357943578291,2012-11-21,0.0,0.0,9.310259984985144e-06,0.0,0.0,0.0,0.0,0.0,11.8542480246043,0.0,0.0,0.0 +12236,catchment_outflow,0.3248393643368529,2012-11-21,0.0,0.0,1.702355863686866e-05,0.0,0.0,0.0,0.0,0.0,8.760455287082205,0.0,0.0,0.0 +12237,reservoir_outflow,0.07750000000000001,2012-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12238,gw1_gw2,0.0,2012-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12239,gw2_gw1,2.818757561620089e-05,2012-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12240,urban_drainage,0.04,2012-11-22,0.0,0.0,2.4640509597736214e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 +12241,percolation,0.1776200327879321,2012-11-22,0.0,0.0,1.1783446439853925e-05,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 +12242,runoff,0.2592960788035137,2012-11-22,0.0,0.0,1.0122385243851387e-05,0.0,0.0,0.0,0.0,0.0,7.8593339144466565,0.0,0.0,0.0 +12243,storm_outflow,0.04,2012-11-22,0.0,0.0,2.4640509597736214e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 +12244,baseflow,0.07807307056916328,2012-11-22,0.0,0.0,9.316442951122317e-06,0.0,0.0,0.0,0.0,0.0,11.843315656648786,0.0,0.0,0.0 +12245,catchment_outflow,0.37736914937267696,2012-11-22,0.0,0.0,1.9685233290951067e-05,0.0,0.0,0.0,0.0,0.0,8.662055961363366,0.0,0.0,0.0 +12246,reservoir_outflow,0.077,2012-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12247,gw1_gw2,0.0,2012-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12248,gw2_gw1,2.7999658445487797e-05,2012-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12249,urban_drainage,0.04,2012-11-23,0.0,0.0,3.715749318297354e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 +12250,percolation,0.17406763213217347,2012-11-23,0.0,0.0,1.1547777511056846e-05,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 +12251,runoff,0.14301829248664763,2012-11-23,0.0,0.0,8.09790819508111e-06,0.0,0.0,0.0,0.0,0.0,7.934576913556085,0.0,0.0,0.0 +12252,storm_outflow,0.04,2012-11-23,0.0,0.0,3.715749318297354e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 +12253,baseflow,0.07831305697307081,2012-11-23,0.0,0.0,9.322021287522151e-06,0.0,0.0,0.0,0.0,0.0,11.832695516562078,0.0,0.0,0.0 +12254,catchment_outflow,0.2613313494597185,2012-11-23,0.0,0.0,1.7791504414432996e-05,0.0,0.0,0.0,0.0,0.0,9.060139205302507,0.0,0.0,0.0 +12255,reservoir_outflow,0.0,2012-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12256,gw1_gw2,0.0,2012-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12257,gw2_gw1,2.7812994055764763e-05,2012-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12258,urban_drainage,0.04,2012-11-24,0.0,0.0,2.7359948349541225e-07,0.0,0.0,0.0,0.0,0.0,7.708278507803088,0.0,0.0,0.0 +12259,percolation,0.20739566537134252,2012-11-24,0.0,0.0,1.3060380776870116e-05,0.0,0.0,0.0,0.0,0.0,9.591433476967335,0.0,0.0,0.0 +12260,runoff,0.3655163057753632,2012-11-24,0.0,0.0,1.2290189276179578e-05,0.0,0.0,0.0,0.0,0.0,7.90353922689548,0.0,0.0,0.0 +12261,storm_outflow,0.04,2012-11-24,0.0,0.0,2.7359948349541225e-07,0.0,0.0,0.0,0.0,0.0,7.708278507803088,0.0,0.0,0.0 +12262,baseflow,0.0786357634940665,2012-11-24,0.0,0.0,9.331367186245523e-06,0.0,0.0,0.0,0.0,0.0,11.817917633976618,0.0,0.0,0.0 +12263,catchment_outflow,0.48415206926942966,2012-11-24,0.0,0.0,2.1895155945920514e-05,0.0,0.0,0.0,0.0,0.0,8.523178643772304,0.0,0.0,0.0 +12264,reservoir_outflow,0.1,2012-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12265,gw1_gw2,0.0,2012-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12266,gw2_gw1,2.7627574095134833e-05,2012-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12267,urban_drainage,0.04,2012-11-25,0.0,0.0,3.3351635158879953e-07,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0 +12268,percolation,0.2091667854183224,2012-11-25,0.0,0.0,1.307771223510665e-05,0.0,0.0,0.0,0.0,0.0,9.548520006563194,0.0,0.0,0.0 +12269,runoff,0.22958710193833642,2012-11-25,0.0,0.0,1.0760615000190106e-05,0.0,0.0,0.0,0.0,0.0,7.969329248180333,0.0,0.0,0.0 +12270,storm_outflow,0.04,2012-11-25,0.0,0.0,3.3351635158879953e-07,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0 +12271,baseflow,0.07896209104887714,2012-11-25,0.0,0.0,9.340733048867676e-06,0.0,0.0,0.0,0.0,0.0,11.802888820774717,0.0,0.0,0.0 +12272,catchment_outflow,0.34854919298721354,2012-11-25,0.0,0.0,2.0434864400646582e-05,0.0,0.0,0.0,0.0,0.0,8.808350223922568,0.0,0.0,0.0 +12273,reservoir_outflow,0.041499999999999995,2012-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12274,gw1_gw2,0.0,2012-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12275,gw2_gw1,2.7443390268189206e-05,2012-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12276,urban_drainage,0.04,2012-11-26,0.0,0.0,4.0837134380613846e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12277,percolation,0.20803706976403152,2012-11-26,0.0,0.0,1.2960677842783249e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +12278,runoff,0.1879480409258339,2012-11-26,0.0,0.0,9.090224841414524e-06,0.0,0.0,0.0,0.0,0.0,7.984461710833754,0.0,0.0,0.0 +12279,storm_outflow,0.04,2012-11-26,0.0,0.0,4.0837134380613846e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12280,baseflow,0.07928477849566502,2012-11-26,0.0,0.0,9.349782910852464e-06,0.0,0.0,0.0,0.0,0.0,11.787962615877008,0.0,0.0,0.0 +12281,catchment_outflow,0.30723281942149894,2012-11-26,0.0,0.0,1.8848379096073126e-05,0.0,0.0,0.0,0.0,0.0,8.930715630558248,0.0,0.0,0.0 +12282,reservoir_outflow,0.0014999999999999996,2012-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12283,gw1_gw2,0.0,2012-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12284,gw2_gw1,2.7260434332987415e-05,2012-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12285,urban_drainage,0.04,2012-11-27,0.0,0.0,5.095401214886909e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12286,percolation,0.2038763283687509,2012-11-27,0.0,0.0,1.2701464285927586e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +12287,runoff,0.14315943715378518,2012-11-27,0.0,0.0,7.27217987313162e-06,0.0,0.0,0.0,0.0,0.0,7.9880174411026195,0.0,0.0,0.0 +12288,storm_outflow,0.04,2012-11-27,0.0,0.0,5.095401214886909e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12289,baseflow,0.07959625737034774,2012-11-27,0.0,0.0,9.358162114290153e-06,0.0,0.0,0.0,0.0,0.0,11.773487755870393,0.0,0.0,0.0 +12290,catchment_outflow,0.26275569452413294,2012-11-27,0.0,0.0,1.7139882108910465e-05,0.0,0.0,0.0,0.0,0.0,9.092950956010068,0.0,0.0,0.0 +12291,reservoir_outflow,0.0,2012-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12292,gw1_gw2,0.0,2012-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12293,gw2_gw1,2.7078698104610056e-05,2012-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12294,urban_drainage,0.04,2012-11-28,0.0,0.0,6.337747809683291e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12295,percolation,0.19979880180137588,2012-11-28,0.0,0.0,1.2447435000209034e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +12296,runoff,0.11342949414127632,2012-11-28,0.0,0.0,5.817743898505296e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +12297,storm_outflow,0.04,2012-11-28,0.0,0.0,6.337747809683291e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12298,baseflow,0.0798967637314253,2012-11-28,0.0,0.0,9.36588529650495e-06,0.0,0.0,0.0,0.0,0.0,11.7594462404544,0.0,0.0,0.0 +12299,catchment_outflow,0.23332625787270161,2012-11-28,0.0,0.0,1.5817403975978576e-05,0.0,0.0,0.0,0.0,0.0,9.234606552807108,0.0,0.0,0.0 +12300,reservoir_outflow,0.0,2012-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12301,gw1_gw2,0.0,2012-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12302,gw2_gw1,2.6898173450362606e-05,2012-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12303,urban_drainage,0.04,2012-11-29,0.0,0.0,7.869012217223018e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12304,percolation,0.19580282576534835,2012-11-29,0.0,0.0,1.2198486300204853e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +12305,runoff,0.09074359531302105,2012-11-29,0.0,0.0,4.654195118804236e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +12306,storm_outflow,0.04,2012-11-29,0.0,0.0,7.869012217223018e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12307,baseflow,0.08018652888651012,2012-11-29,0.0,0.0,9.3729667990142e-06,0.0,0.0,0.0,0.0,0.0,11.745820999394452,0.0,0.0,0.0 +12308,catchment_outflow,0.21093012419953117,2012-11-29,0.0,0.0,1.481406313954074e-05,0.0,0.0,0.0,0.0,0.0,9.366476297446763,0.0,0.0,0.0 +12309,reservoir_outflow,0.0,2012-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12310,gw1_gw2,0.0,2012-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12311,gw2_gw1,2.6718852293861064e-05,2012-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12312,urban_drainage,0.04,2012-11-30,0.0,0.0,9.831618711393651e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12313,percolation,0.1918867692500414,2012-11-30,0.0,0.0,1.1954516574200756e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +12314,runoff,0.07259487625041684,2012-11-30,0.0,0.0,3.723356095043389e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808099,0.0,0.0,0.0 +12315,storm_outflow,0.04,2012-11-30,0.0,0.0,9.831618711393651e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12316,baseflow,0.08046577948741895,2012-11-30,0.0,0.0,9.379420673452166e-06,0.0,0.0,0.0,0.0,0.0,11.732595833141378,0.0,0.0,0.0 +12317,catchment_outflow,0.1930606557378358,2012-11-30,0.0,0.0,1.408593863963492e-05,0.0,0.0,0.0,0.0,0.0,9.493558267880822,0.0,0.0,0.0 +12318,reservoir_outflow,0.0,2012-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12319,gw1_gw2,0.0,2012-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12320,gw2_gw1,2.6540726612012122e-05,2012-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12321,urban_drainage,0.04,2012-12-01,0.0,0.0,1.2495156096339513e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12322,percolation,0.18804903386504054,2012-12-01,0.0,0.0,1.1715426242716741e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +12323,runoff,0.05807590100033347,2012-12-01,0.0,0.0,2.978684876034711e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808099,0.0,0.0,0.0 +12324,storm_outflow,0.04,2012-12-01,0.0,0.0,1.2495156096339513e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +12325,baseflow,0.080734737623363,2012-12-01,0.0,0.0,9.385260687375326e-06,0.0,0.0,0.0,0.0,0.0,11.719755357946292,0.0,0.0,0.0 +12326,catchment_outflow,0.17881063862369648,2012-12-01,0.0,0.0,1.3613461173043989e-05,0.0,0.0,0.0,0.0,0.0,9.613003340368344,0.0,0.0,0.0 +12327,reservoir_outflow,0.0,2012-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12328,gw1_gw2,0.0,2012-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12329,gw2_gw1,2.6363788434657922e-05,2012-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12330,urban_drainage,0.04,2012-12-02,0.0,0.0,1.088350291018738e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12331,percolation,0.1930817559057384,2012-12-02,0.0,0.0,1.192355025561794e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +12332,runoff,0.10662816044973124,2012-12-02,0.0,0.0,3.857723026679546e-06,0.0,0.0,0.0,0.0,0.0,7.022326237059145,0.0,0.0,0.0 +12333,storm_outflow,0.04,2012-12-02,0.0,0.0,1.088350291018738e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12334,baseflow,0.08101560516906893,2012-12-02,0.0,0.0,9.391606411295934e-06,0.0,0.0,0.0,0.0,0.0,11.705932982175138,0.0,0.0,0.0 +12335,catchment_outflow,0.22764376561880018,2012-12-02,0.0,0.0,1.433767972899422e-05,0.0,0.0,0.0,0.0,0.0,8.725824675382466,0.0,0.0,0.0 +12336,reservoir_outflow,0.032,2012-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12337,gw1_gw2,0.0,2012-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12338,gw2_gw1,2.618802984510893e-05,2012-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12339,urban_drainage,0.04,2012-12-03,0.0,0.0,1.3873794819369663e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12340,percolation,0.18922012078762362,2012-12-03,0.0,0.0,1.1685079250505581e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +12341,runoff,0.062219222242344684,2012-12-03,0.0,0.0,3.0861784213436364e-06,0.0,0.0,0.0,0.0,0.0,7.4509747650960145,0.0,0.0,0.0 +12342,storm_outflow,0.04,2012-12-03,0.0,0.0,1.3873794819369663e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12343,baseflow,0.08128611645811532,2012-12-03,0.0,0.0,9.397340093393958e-06,0.0,0.0,0.0,0.0,0.0,11.69251257357751,0.0,0.0,0.0 +12344,catchment_outflow,0.18350533870045999,2012-12-03,0.0,0.0,1.387089799667456e-05,0.0,0.0,0.0,0.0,0.0,9.281862966582274,0.0,0.0,0.0 +12345,reservoir_outflow,0.0,2012-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12346,gw1_gw2,0.0,2012-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12347,gw2_gw1,2.6013442979611058e-05,2012-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12348,urban_drainage,0.04,2012-12-04,0.0,0.0,1.8049041816864667e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12349,percolation,0.18543571837187112,2012-12-04,0.0,0.0,1.1451377665495471e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +12350,runoff,0.05118813893877733,2012-12-04,0.0,0.0,2.46894273707491e-06,0.0,0.0,0.0,0.0,0.0,7.37979391701596,0.0,0.0,0.0 +12351,storm_outflow,0.04,2012-12-04,0.0,0.0,1.8049041816864667e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12352,baseflow,0.0815464904628997,2012-12-04,0.0,0.0,9.402475187324213e-06,0.0,0.0,0.0,0.0,0.0,11.679478861464917,0.0,0.0,0.0 +12353,catchment_outflow,0.17273462940167705,2012-12-04,0.0,0.0,1.367632210608559e-05,0.0,0.0,0.0,0.0,0.0,9.375173046885573,0.0,0.0,0.0 +12354,reservoir_outflow,0.0,2012-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12355,gw1_gw2,0.0,2012-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12356,gw2_gw1,2.5840020026279832e-05,2012-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12357,urban_drainage,0.04,2012-12-05,0.0,0.0,2.7681710631260785e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12358,percolation,0.18172700400443373,2012-12-05,0.0,0.0,1.1222350112185561e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +12359,runoff,0.03879580835512096,2012-12-05,0.0,0.0,1.975154189659928e-06,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 +12360,storm_outflow,0.04,2012-12-05,0.0,0.0,2.7681710631260785e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +12361,baseflow,0.08179694174675355,2012-12-05,0.0,0.0,9.407024874636366e-06,0.0,0.0,0.0,0.0,0.0,11.66681732491934,0.0,0.0,0.0 +12362,catchment_outflow,0.16059275010187452,2012-12-05,0.0,0.0,1.4150350127422372e-05,0.0,0.0,0.0,0.0,0.0,9.555875568004701,0.0,0.0,0.0 +12363,reservoir_outflow,0.0,2012-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12364,gw1_gw2,0.0,2012-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12365,gw2_gw1,2.5667753225988577e-05,2012-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12366,urban_drainage,0.04,2012-12-06,0.0,0.0,1.9215411878171053e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +12367,percolation,0.18377929941492116,2012-12-06,0.0,0.0,1.1293480578129693e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12368,runoff,0.06994657372488092,2012-12-06,0.0,0.0,2.565381579020748e-06,0.0,0.0,0.0,0.0,0.0,6.306473507708247,0.0,0.0,0.0 +12369,storm_outflow,0.04,2012-12-06,0.0,0.0,1.9215411878171053e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +12370,baseflow,0.08205189764092397,2012-12-06,0.0,0.0,9.411741013895097e-06,0.0,0.0,0.0,0.0,0.0,11.653493714973619,0.0,0.0,0.0 +12371,catchment_outflow,0.1919984713658049,2012-12-06,0.0,0.0,1.389866378073295e-05,0.0,0.0,0.0,0.0,0.0,8.550749098114938,0.0,0.0,0.0 +12372,reservoir_outflow,0.018999999999999996,2012-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12373,gw1_gw2,0.0,2012-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12374,gw2_gw1,2.5496634871302605e-05,2012-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12375,urban_drainage,0.017999999999999957,2012-12-07,0.0,0.0,2.77742559873082e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +12376,percolation,0.18010371342662276,2012-12-07,0.0,0.0,1.1067610966567099e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12377,runoff,0.04036439338460967,2012-12-07,0.0,0.0,2.052305263216598e-06,0.0,0.0,0.0,0.0,0.0,6.825361037512118,0.0,0.0,0.0 +12378,storm_outflow,0.017999999999999957,2012-12-07,0.0,0.0,2.77742559873082e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +12379,baseflow,0.08229702718038823,2012-12-07,0.0,0.0,9.415880688776779e-06,0.0,0.0,0.0,0.0,0.0,11.640548364609012,0.0,0.0,0.0 +12380,catchment_outflow,0.14066142056499786,2012-12-07,0.0,0.0,1.4245611550724196e-05,0.0,0.0,0.0,0.0,0.0,9.551123174978574,0.0,0.0,0.0 +12381,reservoir_outflow,0.0,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12382,gw1_gw2,0.0,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12383,gw2_gw1,2.5326657305235758e-05,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12384,urban_drainage,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12385,percolation,0.17650163915809028,2012-12-08,0.0,0.0,1.0846258747235757e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12386,runoff,0.03199536959105104,2012-12-08,0.0,0.0,1.6418442105732786e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +12387,storm_outflow,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12388,baseflow,0.08253253871033246,2012-12-08,0.0,0.0,9.419456633922925e-06,0.0,0.0,0.0,0.0,0.0,11.627967334131487,0.0,0.0,0.0 +12389,catchment_outflow,0.1145279083013835,2012-12-08,0.0,0.0,1.1061300844496204e-05,0.0,0.0,0.0,0.0,0.0,10.291374097885326,0.0,0.0,0.0 +12390,reservoir_outflow,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12391,gw1_gw2,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12392,gw2_gw1,2.5157812923559675e-05,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12393,urban_drainage,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12394,percolation,0.17297160637492848,2012-12-09,0.0,0.0,1.0629333572291042e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12395,runoff,0.025897432327499945,2012-12-09,0.0,0.0,1.3134753684586228e-06,0.0,0.0,0.0,0.0,0.0,6.817979660221072,0.0,0.0,0.0 +12396,storm_outflow,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12397,baseflow,0.08275863637949397,2012-12-09,0.0,0.0,9.422481326268846e-06,0.0,0.0,0.0,0.0,0.0,11.615737346557331,0.0,0.0,0.0 +12398,catchment_outflow,0.10865606870699392,2012-12-09,0.0,0.0,1.0735956694727468e-05,0.0,0.0,0.0,0.0,0.0,10.47222454985665,0.0,0.0,0.0 +12399,reservoir_outflow,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12400,gw1_gw2,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12401,gw2_gw1,2.4990094170895816e-05,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12402,urban_drainage,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12403,percolation,0.16951217424742993,2012-12-10,0.0,0.0,1.0416746900845222e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12404,runoff,0.020477036538272663,2012-12-10,0.0,0.0,1.0507802947668982e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +12405,storm_outflow,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12406,baseflow,0.08297552022416381,2012-12-10,0.0,0.0,9.424966990205287e-06,0.0,0.0,0.0,0.0,0.0,11.603845748643195,0.0,0.0,0.0 +12407,catchment_outflow,0.10345255676243648,2012-12-10,0.0,0.0,1.0475747284972186e-05,0.0,0.0,0.0,0.0,0.0,10.661621698071443,0.0,0.0,0.0 +12408,reservoir_outflow,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12409,gw1_gw2,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12410,gw2_gw1,2.4823493543024713e-05,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12411,urban_drainage,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12412,percolation,0.16612193076248133,2012-12-11,0.0,0.0,1.0208411962828318e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12413,runoff,0.016582311598468593,2012-12-11,0.0,0.0,8.406242358135186e-07,0.0,0.0,0.0,0.0,0.0,6.8143411641092,0.0,0.0,0.0 +12414,storm_outflow,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12415,baseflow,0.0831833862505096,2012-12-11,0.0,0.0,9.426925602636843e-06,0.0,0.0,0.0,0.0,0.0,11.592280474637073,0.0,0.0,0.0 +12416,catchment_outflow,0.0997656978489782,2012-12-11,0.0,0.0,1.0267549838450362e-05,0.0,0.0,0.0,0.0,0.0,10.798126971439212,0.0,0.0,0.0 +12417,reservoir_outflow,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12418,gw1_gw2,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12419,gw2_gw1,2.465800358599779e-05,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12420,urban_drainage,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12421,percolation,0.16279949214723172,2012-12-12,0.0,0.0,1.0004243723571753e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12422,runoff,0.013105303384494504,2012-12-12,0.0,0.0,6.724993886508149e-07,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +12423,storm_outflow,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12424,baseflow,0.08338242651525139,2012-12-12,0.0,0.0,9.42836889793918e-06,0.0,0.0,0.0,0.0,0.0,11.581030012531118,0.0,0.0,0.0 +12425,catchment_outflow,0.0964877298997459,2012-12-12,0.0,0.0,1.0100868286589995e-05,0.0,0.0,0.0,0.0,0.0,10.937577164706509,0.0,0.0,0.0 +12426,reservoir_outflow,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12427,gw1_gw2,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12428,gw2_gw1,2.449361689507157e-05,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12429,urban_drainage,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12430,percolation,0.15954350230428707,2012-12-13,0.0,0.0,9.804158849100316e-06,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +12431,runoff,0.010881519760453501,2012-12-13,0.0,0.0,5.379995109206519e-07,0.0,0.0,0.0,0.0,0.0,6.773260192867159,0.0,0.0,0.0 +12432,storm_outflow,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12433,baseflow,0.08357282920472399,2012-12-13,0.0,0.0,9.429308372817084e-06,0.0,0.0,0.0,0.0,0.0,11.570083372617109,0.0,0.0,0.0 +12434,catchment_outflow,0.09445434896517749,2012-12-13,0.0,0.0,9.967307883737735e-06,0.0,0.0,0.0,0.0,0.0,11.017470107164463,0.0,0.0,0.0 +12435,reservoir_outflow,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12436,gw1_gw2,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12437,gw2_gw1,2.4330326115951097e-05,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12438,urban_drainage,0.04,2012-12-14,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +12439,percolation,0.15766192577501012,2012-12-14,0.0,0.0,9.678783533427023e-06,0.0,0.0,0.0,0.0,0.0,9.256532837769155,0.0,0.0,0.0 +12440,runoff,0.01734571822845254,2012-12-14,0.0,0.0,6.660924797655647e-07,0.0,0.0,0.0,0.0,0.0,6.078579370776604,0.0,0.0,0.0 +12441,storm_outflow,0.04,2012-12-14,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +12442,baseflow,0.08375805194614967,2012-12-14,0.0,0.0,9.429932060718608e-06,0.0,0.0,0.0,0.0,0.0,11.559196095984396,0.0,0.0,0.0 +12443,catchment_outflow,0.1411037701746022,2012-12-14,0.0,0.0,1.2096024540484173e-05,0.0,0.0,0.0,0.0,0.0,9.072139394106559,0.0,0.0,0.0 +12444,reservoir_outflow,0.07,2012-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12445,gw1_gw2,0.0,2012-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12446,gw2_gw1,2.416812394177015e-05,2012-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12447,urban_drainage,0.04,2012-12-15,0.0,0.0,2.424242424242424e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +12448,percolation,0.15712492478477394,2012-12-15,0.0,0.0,9.62738924279515e-06,0.0,0.0,0.0,0.0,0.0,9.199253044001107,0.0,0.0,0.0 +12449,runoff,0.02810193725229821,2012-12-15,0.0,0.0,1.0068119172680116e-06,0.0,0.0,0.0,0.0,0.0,5.898095906044198,0.0,0.0,0.0 +12450,storm_outflow,0.04,2012-12-15,0.0,0.0,2.424242424242424e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +12451,baseflow,0.08394146912824625,2012-12-15,0.0,0.0,9.430425703673799e-06,0.0,0.0,0.0,0.0,0.0,11.548152511734855,0.0,0.0,0.0 +12452,catchment_outflow,0.15204340638054448,2012-12-15,0.0,0.0,1.2861480045184235e-05,0.0,0.0,0.0,0.0,0.0,8.8239065445158,0.0,0.0,0.0 +12453,reservoir_outflow,0.0,2012-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12454,gw1_gw2,0.0,2012-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12455,gw2_gw1,2.4007003115222858e-05,2012-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12456,urban_drainage,0.04,2012-12-16,0.0,0.0,1.947130883301096e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +12457,percolation,0.16147752826636577,2012-12-16,0.0,0.0,9.836345628982527e-06,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 +12458,runoff,0.06642000185622118,2012-12-16,0.0,0.0,2.143796770625341e-06,0.0,0.0,0.0,0.0,0.0,5.902920019755045,0.0,0.0,0.0 +12459,storm_outflow,0.04,2012-12-16,0.0,0.0,1.947130883301096e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +12460,baseflow,0.08413530927609156,2012-12-16,0.0,0.0,9.431440503487072e-06,0.0,0.0,0.0,0.0,0.0,11.536174919110506,0.0,0.0,0.0 +12461,catchment_outflow,0.19055531113231275,2012-12-16,0.0,0.0,1.352236815741351e-05,0.0,0.0,0.0,0.0,0.0,8.273158533469001,0.0,0.0,0.0 +12462,reservoir_outflow,0.017499999999999998,2012-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12463,gw1_gw2,0.0,2012-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12464,gw2_gw1,2.3846956427853174e-05,2012-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12465,urban_drainage,0.037,2012-12-17,0.0,0.0,3.6286266924564797e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +12466,percolation,0.15824797770103846,2012-12-17,0.0,0.0,9.639618716402877e-06,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 +12467,runoff,0.03351662407715482,2012-12-17,0.0,0.0,1.7150374165002732e-06,0.0,0.0,0.0,0.0,0.0,6.058942524436515,0.0,0.0,0.0 +12468,storm_outflow,0.037,2012-12-17,0.0,0.0,3.6286266924564797e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +12469,baseflow,0.08432059094715393,2012-12-17,0.0,0.0,9.43196094901936e-06,0.0,0.0,0.0,0.0,0.0,11.524518868019431,0.0,0.0,0.0 +12470,catchment_outflow,0.15483721502430875,2012-12-17,0.0,0.0,1.4775625057976113e-05,0.0,0.0,0.0,0.0,0.0,8.864894224082686,0.0,0.0,0.0 +12471,reservoir_outflow,0.0,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12472,gw1_gw2,0.0,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12473,gw2_gw1,2.3687976718456126e-05,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12474,urban_drainage,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12475,percolation,0.1550830181470177,2012-12-18,0.0,0.0,9.44682634207482e-06,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 +12476,runoff,0.026145263082095704,2012-12-18,0.0,0.0,1.3720299332002185e-06,0.0,0.0,0.0,0.0,0.0,6.065324249576981,0.0,0.0,0.0 +12477,storm_outflow,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12478,baseflow,0.08449749701515358,2012-12-18,0.0,0.0,9.431998112501998e-06,0.0,0.0,0.0,0.0,0.0,11.513173335800197,0.0,0.0,0.0 +12479,catchment_outflow,0.11064276009724928,2012-12-18,0.0,0.0,1.0804028045702217e-05,0.0,0.0,0.0,0.0,0.0,10.22582794179821,0.0,0.0,0.0 +12480,reservoir_outflow,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12481,gw1_gw2,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12482,gw2_gw1,2.3530056873966033e-05,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12483,urban_drainage,0.04,2012-12-19,0.0,0.0,4.210526315789473e-07,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 +12484,percolation,0.1794509204731485,2012-12-19,0.0,0.0,1.0632850709894652e-05,0.0,0.0,0.0,0.0,0.0,8.666571607648867,0.0,0.0,0.0 +12485,runoff,0.2084917954462369,2012-12-19,0.0,0.0,5.680826928764606e-06,0.0,0.0,0.0,0.0,0.0,6.315158246436944,0.0,0.0,0.0 +12486,storm_outflow,0.04,2012-12-19,0.0,0.0,4.210526315789473e-07,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 +12487,baseflow,0.08473488057379858,2012-12-19,0.0,0.0,9.435000243995481e-06,0.0,0.0,0.0,0.0,0.0,11.498102054148587,0.0,0.0,0.0 +12488,catchment_outflow,0.3332266760200355,2012-12-19,0.0,0.0,1.5536879804339034e-05,0.0,0.0,0.0,0.0,0.0,7.614426217058976,0.0,0.0,0.0 +12489,reservoir_outflow,0.09500000000000001,2012-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12490,gw1_gw2,0.0,2012-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12491,gw2_gw1,2.337318982803538e-05,2012-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12492,urban_drainage,0.04,2012-12-20,0.0,0.0,6.032625423207139e-07,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0 +12493,percolation,0.18130695087211787,2012-12-20,0.0,0.0,1.0691232294662643e-05,0.0,0.0,0.0,0.0,0.0,8.60689508614274,0.0,0.0,0.0 +12494,runoff,0.12694148907694092,2012-12-20,0.0,0.0,5.448123539564634e-06,0.0,0.0,0.0,0.0,0.0,6.457892703090237,0.0,0.0,0.0 +12495,storm_outflow,0.04,2012-12-20,0.0,0.0,6.032625423207139e-07,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0 +12496,baseflow,0.08497631074954437,2012-12-20,0.0,0.0,9.43814082412215e-06,0.0,0.0,0.0,0.0,0.0,11.48268022908094,0.0,0.0,0.0 +12497,catchment_outflow,0.2519177998264853,2012-12-20,0.0,0.0,1.54895269060075e-05,0.0,0.0,0.0,0.0,0.0,8.107996735907964,0.0,0.0,0.0 +12498,reservoir_outflow,0.010500000000000002,2012-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12499,gw1_gw2,0.0,2012-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12500,gw2_gw1,2.3217368562455933e-05,2012-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12501,urban_drainage,0.04,2012-12-21,0.0,0.0,5.38585488886939e-07,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0 +12502,percolation,0.19207029979562593,2012-12-21,0.0,0.0,1.116223592578988e-05,0.0,0.0,0.0,0.0,0.0,8.470072038829677,0.0,0.0,0.0 +12503,runoff,0.18472323490403492,2012-12-21,0.0,0.0,6.641259755053339e-06,0.0,0.0,0.0,0.0,0.0,6.545016459616218,0.0,0.0,0.0 +12504,storm_outflow,0.04,2012-12-21,0.0,0.0,5.38585488886939e-07,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0 +12505,baseflow,0.08524404572215957,2012-12-21,0.0,0.0,9.44245106187632e-06,0.0,0.0,0.0,0.0,0.0,11.465710347097795,0.0,0.0,0.0 +12506,catchment_outflow,0.3099672806261945,2012-12-21,0.0,0.0,1.6622296305816598e-05,0.0,0.0,0.0,0.0,0.0,7.863366984748944,0.0,0.0,0.0 +12507,reservoir_outflow,0.045,2012-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12508,gw1_gw2,0.0,2012-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12509,gw2_gw1,2.3062586105382368e-05,2012-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12510,urban_drainage,0.04,2012-12-22,0.0,0.0,4.823999069773192e-07,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0 +12511,percolation,0.2044129252812932,2012-12-22,0.0,0.0,1.1670081669025038e-05,0.0,0.0,0.0,0.0,0.0,8.344890937886982,0.0,0.0,0.0 +12512,runoff,0.21811988980505342,2012-12-22,0.0,0.0,7.749976009879189e-06,0.0,0.0,0.0,0.0,0.0,6.654399207402822,0.0,0.0,0.0 +12513,storm_outflow,0.04,2012-12-22,0.0,0.0,4.823999069773192e-07,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0 +12514,baseflow,0.08554196792105742,2012-12-22,0.0,0.0,9.448020138394192e-06,0.0,0.0,0.0,0.0,0.0,11.447066404240994,0.0,0.0,0.0 +12515,catchment_outflow,0.3436618577261108,2012-12-22,0.0,0.0,1.7680396055250702e-05,0.0,0.0,0.0,0.0,0.0,7.814802038116088,0.0,0.0,0.0 +12516,reservoir_outflow,0.052,2012-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12517,gw1_gw2,0.0,2012-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12518,gw2_gw1,2.2908835531687544e-05,2012-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12519,urban_drainage,0.04,2012-12-23,0.0,0.0,4.882344975600098e-07,0.0,0.0,0.0,0.0,0.0,6.448791676696904,0.0,0.0,0.0 +12520,percolation,0.2132587284217239,2012-12-23,0.0,0.0,1.1999468198245068e-05,0.0,0.0,0.0,0.0,0.0,8.263661885199351,0.0,0.0,0.0 +12521,runoff,0.21756326280736346,2012-12-23,0.0,0.0,8.07594134990512e-06,0.0,0.0,0.0,0.0,0.0,6.751080135716519,0.0,0.0,0.0 +12522,storm_outflow,0.04,2012-12-23,0.0,0.0,4.882344975600098e-07,0.0,0.0,0.0,0.0,0.0,6.448791676696904,0.0,0.0,0.0 +12523,baseflow,0.08586125982230908,2012-12-23,0.0,0.0,9.45439875854382e-06,0.0,0.0,0.0,0.0,0.0,11.427299375397377,0.0,0.0,0.0 +12524,catchment_outflow,0.34342452262967255,2012-12-23,0.0,0.0,1.801857460600895e-05,0.0,0.0,0.0,0.0,0.0,7.8849960651373605,0.0,0.0,0.0 +12525,reservoir_outflow,0.03950000000000001,2012-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12526,gw1_gw2,0.0,2012-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12527,gw2_gw1,2.2756109961363793e-05,2012-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12528,urban_drainage,0.04,2012-12-24,0.0,0.0,5.514154237871691e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499756,0.0,0.0,0.0 +12529,percolation,0.21679951666388605,2012-12-24,0.0,0.0,1.2094151658320303e-05,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 +12530,runoff,0.1911536915224461,2012-12-24,0.0,0.0,7.576329160057885e-06,0.0,0.0,0.0,0.0,0.0,6.823995679199291,0.0,0.0,0.0 +12531,storm_outflow,0.04,2012-12-24,0.0,0.0,5.514154237871691e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499756,0.0,0.0,0.0 +12532,baseflow,0.08618860546441301,2012-12-24,0.0,0.0,9.46099814079326e-06,0.0,0.0,0.0,0.0,0.0,11.407147030406493,0.0,0.0,0.0 +12533,catchment_outflow,0.3173422969868591,2012-12-24,0.0,0.0,1.7588742724638314e-05,0.0,0.0,0.0,0.0,0.0,8.027058685517408,0.0,0.0,0.0 +12534,reservoir_outflow,0.02,2012-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12535,gw1_gw2,0.0,2012-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12536,gw2_gw1,2.2604402561654525e-05,2012-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12537,urban_drainage,0.039999999999999994,2012-12-25,0.0,0.0,7.228013983660146e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0 +12538,percolation,0.2124635263306083,2012-12-25,0.0,0.0,1.1852268625153897e-05,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 +12539,runoff,0.13461851376293835,2012-12-25,0.0,0.0,6.0610633280463075e-06,0.0,0.0,0.0,0.0,0.0,6.8296022350343275,0.0,0.0,0.0 +12540,storm_outflow,0.039999999999999994,2012-12-25,0.0,0.0,7.228013983660146e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0 +12541,baseflow,0.08650429276657849,2012-12-25,0.0,0.0,9.466976317004163e-06,0.0,0.0,0.0,0.0,0.0,11.38759354569987,0.0,0.0,0.0 +12542,catchment_outflow,0.26112280652951686,2012-12-25,0.0,0.0,1.6250841043416485e-05,0.0,0.0,0.0,0.0,0.0,8.288030596177503,0.0,0.0,0.0 +12543,reservoir_outflow,0.0,2012-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12544,gw1_gw2,0.0,2012-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12545,gw2_gw1,2.245370654474499e-05,2012-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12546,urban_drainage,0.04,2012-12-26,0.0,0.0,7.60768953922767e-07,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0 +12547,percolation,0.2160005608214728,2012-12-26,0.0,0.0,1.1949203251394692e-05,0.0,0.0,0.0,0.0,0.0,8.191249753745728,0.0,0.0,0.0 +12548,runoff,0.15808390147014678,2012-12-26,0.0,0.0,5.962117324916617e-06,0.0,0.0,0.0,0.0,0.0,6.954385138684238,0.0,0.0,0.0 +12549,storm_outflow,0.04,2012-12-26,0.0,0.0,7.60768953922767e-07,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0 +12550,baseflow,0.08682803343671573,2012-12-26,0.0,0.0,9.473181884340138e-06,0.0,0.0,0.0,0.0,0.0,11.367714826111468,0.0,0.0,0.0 +12551,catchment_outflow,0.2849119349068625,2012-12-26,0.0,0.0,1.6196068163179523e-05,0.0,0.0,0.0,0.0,0.0,8.246731103052255,0.0,0.0,0.0 +12552,reservoir_outflow,0.0205,2012-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12553,gw1_gw2,0.0,2012-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12554,gw2_gw1,2.2304015167584625e-05,2012-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12555,urban_drainage,0.04,2012-12-27,0.0,0.0,7.815077923165637e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 +12556,percolation,0.21988557244813386,2012-12-27,0.0,0.0,1.2056013564252719e-05,0.0,0.0,0.0,0.0,0.0,8.164006388702758,0.0,0.0,0.0 +12557,runoff,0.16075045636925833,2012-12-27,0.0,0.0,5.922341786219697e-06,0.0,0.0,0.0,0.0,0.0,7.06874116338308,0.0,0.0,0.0 +12558,storm_outflow,0.04,2012-12-27,0.0,0.0,7.815077923165637e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 +12559,baseflow,0.08716067728424427,2012-12-27,0.0,0.0,9.479638963539919e-06,0.0,0.0,0.0,0.0,0.0,11.347509347974256,0.0,0.0,0.0 +12560,catchment_outflow,0.2879111336535026,2012-12-27,0.0,0.0,1.618348854207618e-05,0.0,0.0,0.0,0.0,0.0,8.31000070250493,0.0,0.0,0.0 +12561,reservoir_outflow,0.0225,2012-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12562,gw1_gw2,0.0,2012-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12563,gw2_gw1,2.2155321733308144e-05,2012-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12564,urban_drainage,0.04,2012-12-28,0.0,0.0,9.616972534950729e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 +12565,percolation,0.21761554652103676,2012-12-28,0.0,0.0,1.1905541559526038e-05,0.0,0.0,0.0,0.0,0.0,8.15829512129369,0.0,0.0,0.0 +12566,runoff,0.12012657033458372,2012-12-28,0.0,0.0,5.040034317503673e-06,0.0,0.0,0.0,0.0,0.0,7.09028249986687,0.0,0.0,0.0 +12567,storm_outflow,0.04,2012-12-28,0.0,0.0,9.616972534950729e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 +12568,baseflow,0.08748681445733625,2012-12-28,0.0,0.0,9.485703720029884e-06,0.0,0.0,0.0,0.0,0.0,11.327677142366568,0.0,0.0,0.0 +12569,catchment_outflow,0.24761338479191997,2012-12-28,0.0,0.0,1.5487435291028628e-05,0.0,0.0,0.0,0.0,0.0,8.521088083598965,0.0,0.0,0.0 +12570,reservoir_outflow,0.0,2012-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12571,gw1_gw2,0.0,2012-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12572,gw2_gw1,2.200761958839337e-05,2012-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12573,urban_drainage,0.04,2012-12-29,0.0,0.0,7.223205220048865e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 +12574,percolation,0.2302657916907304,2012-12-29,0.0,0.0,1.234923731054763e-05,0.0,0.0,0.0,0.0,0.0,8.122677163850419,0.0,0.0,0.0 +12575,runoff,0.20646208425970392,2012-12-29,0.0,0.0,6.3047160613766464e-06,0.0,0.0,0.0,0.0,0.0,7.350191179919029,0.0,0.0,0.0 +12576,storm_outflow,0.04,2012-12-29,0.0,0.0,7.223205220048865e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 +12577,baseflow,0.08784376190041975,2012-12-29,0.0,0.0,9.49286255400618e-06,0.0,0.0,0.0,0.0,0.0,11.30667389064283,0.0,0.0,0.0 +12578,catchment_outflow,0.33430584616012365,2012-12-29,0.0,0.0,1.6519899137387712e-05,0.0,0.0,0.0,0.0,0.0,8.34501542239217,0.0,0.0,0.0 +12579,reservoir_outflow,0.06,2012-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12580,gw1_gw2,0.0,2012-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12581,gw2_gw1,2.1860902124437588e-05,2012-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12582,urban_drainage,0.04,2012-12-30,0.0,0.0,8.937758185443586e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 +12583,percolation,0.22717608968986847,2012-12-30,0.0,0.0,1.2163920988306518e-05,0.0,0.0,0.0,0.0,0.0,8.12053875107678,0.0,0.0,0.0 +12584,runoff,0.12781318352764456,2012-12-30,0.0,0.0,5.249334262334121e-06,0.0,0.0,0.0,0.0,0.0,7.337968004326666,0.0,0.0,0.0 +12585,storm_outflow,0.04,2012-12-30,0.0,0.0,8.937758185443586e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 +12586,baseflow,0.08819209271989337,2012-12-30,0.0,0.0,9.499540200091929e-06,0.0,0.0,0.0,0.0,0.0,11.286155789192144,0.0,0.0,0.0 +12587,catchment_outflow,0.25600527624753794,2012-12-30,0.0,0.0,1.564265028097041e-05,0.0,0.0,0.0,0.0,0.0,8.64150014268801,0.0,0.0,0.0 +12588,reservoir_outflow,0.0,2012-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12589,gw1_gw2,0.0,2012-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12590,gw2_gw1,2.171516277726937e-05,2012-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12591,urban_drainage,0.04,2012-12-31,0.0,0.0,9.306019571247869e-07,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12592,percolation,0.2292458326223332,2012-12-31,0.0,0.0,1.2186905943317104e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12593,runoff,0.1432448455935156,2012-12-31,0.0,0.0,5.087011992456349e-06,0.0,0.0,0.0,0.0,0.0,7.480008056266196,0.0,0.0,0.0 +12594,storm_outflow,0.04,2012-12-31,0.0,0.0,9.306019571247869e-07,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12595,baseflow,0.08854472706964947,2012-12-31,0.0,0.0,9.506258614449993e-06,0.0,0.0,0.0,0.0,0.0,11.26562677349215,0.0,0.0,0.0 +12596,catchment_outflow,0.27178957266316506,2012-12-31,0.0,0.0,1.5523872564031127e-05,0.0,0.0,0.0,0.0,0.0,8.653297131221413,0.0,0.0,0.0 +12597,reservoir_outflow,0.017,2012-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12598,gw1_gw2,0.0,2012-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12599,gw2_gw1,2.157039502517222e-05,2012-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12600,urban_drainage,0.04,2013-01-01,0.0,0.0,1.2161536263592964e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12601,percolation,0.22466091596988655,2013-01-01,0.0,0.0,1.1943167824450762e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12602,runoff,0.09645780740187528,2013-01-01,0.0,0.0,4.069609593965079e-06,0.0,0.0,0.0,0.0,0.0,7.436078807685925,0.0,0.0,0.0 +12603,storm_outflow,0.04,2013-01-01,0.0,0.0,1.2161536263592964e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12604,baseflow,0.08888501754190006,2013-01-01,0.0,0.0,9.512350887474995e-06,0.0,0.0,0.0,0.0,0.0,11.245715080266583,0.0,0.0,0.0 +12605,catchment_outflow,0.22534282494377533,2013-01-01,0.0,0.0,1.479811410779937e-05,0.0,0.0,0.0,0.0,0.0,8.874189460317394,0.0,0.0,0.0 +12606,reservoir_outflow,0.0,2013-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12607,gw1_gw2,0.0,2013-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12608,gw2_gw1,2.142659239154909e-05,2013-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12609,urban_drainage,0.04,2013-01-02,0.0,0.0,1.657460751539902e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12610,percolation,0.22016769765048883,2013-01-02,0.0,0.0,1.1704304467961746e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12611,runoff,0.07723333722586198,2013-01-02,0.0,0.0,3.255687675172063e-06,0.0,0.0,0.0,0.0,0.0,7.437119883768105,0.0,0.0,0.0 +12612,storm_outflow,0.04,2013-01-02,0.0,0.0,1.657460751539902e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12613,baseflow,0.08921322424217154,2013-01-02,0.0,0.0,9.517830771426211e-06,0.0,0.0,0.0,0.0,0.0,11.226396258274479,0.0,0.0,0.0 +12614,catchment_outflow,0.20644656146803353,2013-01-02,0.0,0.0,1.4430979198138176e-05,0.0,0.0,0.0,0.0,0.0,9.003918805969185,0.0,0.0,0.0 +12615,reservoir_outflow,0.0,2013-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12616,gw1_gw2,0.0,2013-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12617,gw2_gw1,2.128374844225789e-05,2013-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12618,urban_drainage,0.04,2013-01-03,0.0,0.0,2.5387765952844566e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12619,percolation,0.21576434369747904,2013-01-03,0.0,0.0,1.1470218378602511e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12620,runoff,0.0614606888742442,2013-01-03,0.0,0.0,2.604550140137651e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 +12621,storm_outflow,0.04,2013-01-03,0.0,0.0,2.5387765952844566e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12622,baseflow,0.08952960204080979,2013-01-03,0.0,0.0,9.52271174044415e-06,0.0,0.0,0.0,0.0,0.0,11.207647110619702,0.0,0.0,0.0 +12623,catchment_outflow,0.19099029091505398,2013-01-03,0.0,0.0,1.4666038475866258e-05,0.0,0.0,0.0,0.0,0.0,9.127283090091375,0.0,0.0,0.0 +12624,reservoir_outflow,0.0,2013-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12625,gw1_gw2,0.0,2013-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12626,gw2_gw1,2.114185678614433e-05,2013-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12627,urban_drainage,0.023000000000000055,2013-01-04,0.0,0.0,3.7291848399307935e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12628,percolation,0.21144905682352946,2013-01-04,0.0,0.0,1.124081401103046e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12629,runoff,0.04916855109939536,2013-01-04,0.0,0.0,2.0836401121101203e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 +12630,storm_outflow,0.023000000000000055,2013-01-04,0.0,0.0,3.7291848399307935e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +12631,baseflow,0.0898344006777666,2013-01-04,0.0,0.0,9.52700699612062e-06,0.0,0.0,0.0,0.0,0.0,11.189445615231882,0.0,0.0,0.0 +12632,catchment_outflow,0.162002951777162,2013-01-04,0.0,0.0,1.5339831948161532e-05,0.0,0.0,0.0,0.0,0.0,9.465207602712047,0.0,0.0,0.0 +12633,reservoir_outflow,0.0,2013-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12634,gw1_gw2,0.0,2013-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12635,gw2_gw1,2.1000911074153805e-05,2013-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12636,urban_drainage,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12637,percolation,0.20722007568705889,2013-01-05,0.0,0.0,1.101599773080985e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12638,runoff,0.03933484087951629,2013-01-05,0.0,0.0,1.6669120896880963e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 +12639,storm_outflow,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12640,baseflow,0.09012786486528984,2013-01-05,0.0,0.0,9.530729472957342e-06,0.0,0.0,0.0,0.0,0.0,11.17177085132548,0.0,0.0,0.0 +12641,catchment_outflow,0.12946270574480612,2013-01-05,0.0,0.0,1.1197641562645438e-05,0.0,0.0,0.0,0.0,0.0,10.03619774705111,0.0,0.0,0.0 +12642,reservoir_outflow,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12643,gw1_gw2,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12644,gw2_gw1,2.0860905000219533e-05,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12645,urban_drainage,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12646,percolation,0.20307567417331768,2013-01-06,0.0,0.0,1.0795677776193655e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12647,runoff,0.0320199266672827,2013-01-06,0.0,0.0,1.3335296717504769e-06,0.0,0.0,0.0,0.0,0.0,7.452552969448971,0.0,0.0,0.0 +12648,storm_outflow,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12649,baseflow,0.09041023438855993,2013-01-06,0.0,0.0,9.533891843715432e-06,0.0,0.0,0.0,0.0,0.0,11.154602931319172,0.0,0.0,0.0 +12650,catchment_outflow,0.12243016105584262,2013-01-06,0.0,0.0,1.086742151546591e-05,0.0,0.0,0.0,0.0,0.0,10.186382622896703,0.0,0.0,0.0 +12651,reservoir_outflow,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12652,gw1_gw2,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12653,gw2_gw1,2.0721832300196753e-05,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12654,urban_drainage,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12655,percolation,0.1990141606898513,2013-01-07,0.0,0.0,1.0579764220669782e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +12656,runoff,0.025174298162890425,2013-01-07,0.0,0.0,1.0668237374003818e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 +12657,storm_outflow,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12658,baseflow,0.09068174420431316,2013-01-07,0.0,0.0,9.536506524657819e-06,0.0,0.0,0.0,0.0,0.0,11.137922937748312,0.0,0.0,0.0 +12659,catchment_outflow,0.11585604236720358,2013-01-07,0.0,0.0,1.06033302620582e-05,0.0,0.0,0.0,0.0,0.0,10.33315613161012,0.0,0.0,0.0 +12660,reservoir_outflow,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12661,gw1_gw2,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12662,gw2_gw1,2.0583686751507457e-05,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12663,urban_drainage,0.008,2013-01-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 +12664,percolation,0.19640027863622844,2013-01-08,0.0,0.0,1.0432029194080231e-05,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 +12665,runoff,0.02948849909992496,2013-01-08,0.0,0.0,1.0663265159997835e-06,0.0,0.0,0.0,0.0,0.0,7.746604197321716,0.0,0.0,0.0 +12666,storm_outflow,0.008,2013-01-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 +12667,baseflow,0.09094604054039294,2013-01-08,0.0,0.0,9.538745331331375e-06,0.0,0.0,0.0,0.0,0.0,11.121625548809932,0.0,0.0,0.0 +12668,catchment_outflow,0.1284345396403179,2013-01-08,0.0,0.0,1.4605071847331158e-05,0.0,0.0,0.0,0.0,0.0,10.156062822962486,0.0,0.0,0.0 +12669,reservoir_outflow,0.004,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12670,gw1_gw2,0.0,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12671,gw2_gw1,2.044646217314039e-05,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12672,urban_drainage,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12673,percolation,0.1924722730635039,2013-01-09,0.0,0.0,1.0223388610198627e-05,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 +12674,runoff,0.020204401731259643,2013-01-09,0.0,0.0,8.53061212799827e-07,0.0,0.0,0.0,0.0,0.0,7.681413921597131,0.0,0.0,0.0 +12675,storm_outflow,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12676,baseflow,0.09119985612170071,2013-01-09,0.0,0.0,9.540456939528543e-06,0.0,0.0,0.0,0.0,0.0,11.105784544142908,0.0,0.0,0.0 +12677,catchment_outflow,0.11140425785296036,2013-01-09,0.0,0.0,1.039351815232837e-05,0.0,0.0,0.0,0.0,0.0,10.484736829557734,0.0,0.0,0.0 +12678,reservoir_outflow,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12679,gw1_gw2,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12680,gw2_gw1,2.0310152425118134e-05,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12681,urban_drainage,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12682,percolation,0.1886228276022338,2013-01-10,0.0,0.0,1.0018920837994653e-05,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 +12683,runoff,0.016846617979976202,2013-01-10,0.0,0.0,6.824489702398616e-07,0.0,0.0,0.0,0.0,0.0,7.638997834181787,0.0,0.0,0.0 +12684,storm_outflow,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12685,baseflow,0.09144341355040204,2013-01-10,0.0,0.0,9.541653099274708e-06,0.0,0.0,0.0,0.0,0.0,11.090383397060625,0.0,0.0,0.0 +12686,catchment_outflow,0.10829003153037825,2013-01-10,0.0,0.0,1.0224102069514569e-05,0.0,0.0,0.0,0.0,0.0,10.553453328265569,0.0,0.0,0.0 +12687,reservoir_outflow,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12688,gw1_gw2,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12689,gw2_gw1,2.0174751409030023e-05,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12690,urban_drainage,0.018,2013-01-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 +12691,percolation,0.18641724703623605,2013-01-11,0.0,0.0,9.89409046872718e-06,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 +12692,runoff,0.023364114271731285,2013-01-11,0.0,0.0,7.97786001166622e-07,0.0,0.0,0.0,0.0,0.0,7.316220544306218,0.0,0.0,0.0 +12693,storm_outflow,0.018,2013-01-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 +12694,baseflow,0.09168084813411664,2013-01-11,0.0,0.0,9.542534192698337e-06,0.0,0.0,0.0,0.0,0.0,11.075250181554585,0.0,0.0,0.0 +12695,catchment_outflow,0.13304496240584793,2013-01-11,0.0,0.0,1.334032019386496e-05,0.0,0.0,0.0,0.0,0.0,9.778249005643147,0.0,0.0,0.0 +12696,reservoir_outflow,0.009,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12697,gw1_gw2,0.0,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12698,gw2_gw1,2.0040253066255788e-05,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12699,urban_drainage,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12700,percolation,0.18268890209551134,2013-01-12,0.0,0.0,9.696208659352637e-06,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 +12701,runoff,0.014544709018580557,2013-01-12,0.0,0.0,6.382288009332977e-07,0.0,0.0,0.0,0.0,0.0,7.576827715184076,0.0,0.0,0.0 +12702,storm_outflow,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12703,baseflow,0.09190836826902013,2013-01-12,0.0,0.0,9.542918378864975e-06,0.0,0.0,0.0,0.0,0.0,11.060531545361806,0.0,0.0,0.0 +12704,catchment_outflow,0.10645307728760069,2013-01-12,0.0,0.0,1.0181147179798273e-05,0.0,0.0,0.0,0.0,0.0,10.584552270662611,0.0,0.0,0.0 +12705,reservoir_outflow,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12706,gw1_gw2,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12707,gw2_gw1,1.9906651379386633e-05,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12708,urban_drainage,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12709,percolation,0.1790351240536011,2013-01-13,0.0,0.0,9.502284486165585e-06,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 +12710,runoff,0.012828692956728997,2013-01-13,0.0,0.0,5.105830407466381e-07,0.0,0.0,0.0,0.0,0.0,7.350606442989441,0.0,0.0,0.0 +12711,storm_outflow,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12712,baseflow,0.09212618515848157,2013-01-13,0.0,0.0,9.542816794133226e-06,0.0,0.0,0.0,0.0,0.0,11.046212894974843,0.0,0.0,0.0 +12713,catchment_outflow,0.10495487811521056,2013-01-13,0.0,0.0,1.0053399834879864e-05,0.0,0.0,0.0,0.0,0.0,10.594496868880421,0.0,0.0,0.0 +12714,reservoir_outflow,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12715,gw1_gw2,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12716,gw2_gw1,1.9773940369915978e-05,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12717,urban_drainage,0.033,2013-01-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +12718,percolation,0.17815377498149837,2013-01-14,0.0,0.0,9.445081176664803e-06,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 +12719,runoff,0.02761680770935137,2013-01-14,0.0,0.0,8.512743666724118e-07,0.0,0.0,0.0,0.0,0.0,6.062943675021874,0.0,0.0,0.0 +12720,storm_outflow,0.033,2013-01-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +12721,baseflow,0.0923412541330391,2013-01-14,0.0,0.0,9.542572455089555e-06,0.0,0.0,0.0,0.0,0.0,11.031909107983017,0.0,0.0,0.0 +12722,catchment_outflow,0.15295806184239047,2013-01-14,0.0,0.0,1.3393846821761966e-05,0.0,0.0,0.0,0.0,0.0,8.763280967300256,0.0,0.0,0.0 +12723,reservoir_outflow,0.0165,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12724,gw1_gw2,0.0,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12725,gw2_gw1,1.9642114100903997e-05,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12726,urban_drainage,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12727,percolation,0.17459069948186842,2013-01-15,0.0,0.0,9.256179553131507e-06,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 +12728,runoff,0.014516313791426908,2013-01-15,0.0,0.0,6.810194933379294e-07,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 +12729,storm_outflow,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12730,baseflow,0.09254687774641118,2013-01-15,0.0,0.0,9.54185647283466e-06,0.0,0.0,0.0,0.0,0.0,11.017990002357728,0.0,0.0,0.0 +12731,catchment_outflow,0.1070631915378381,2013-01-15,0.0,0.0,1.0222875966172588e-05,0.0,0.0,0.0,0.0,0.0,10.444381337228288,0.0,0.0,0.0 +12732,reservoir_outflow,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12733,gw1_gw2,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12734,gw2_gw1,1.9511166673424896e-05,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12735,urban_drainage,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12736,percolation,0.17109888549223104,2013-01-16,0.0,0.0,9.071055962068877e-06,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 +12737,runoff,0.011613051033141527,2013-01-16,0.0,0.0,5.448155946703434e-07,0.0,0.0,0.0,0.0,0.0,6.787413613275676,0.0,0.0,0.0 +12738,storm_outflow,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12739,baseflow,0.09274325776577572,2013-01-16,0.0,0.0,9.540679471557746e-06,0.0,0.0,0.0,0.0,0.0,11.004442359726555,0.0,0.0,0.0 +12740,catchment_outflow,0.10435630879891725,2013-01-16,0.0,0.0,1.008549506622809e-05,0.0,0.0,0.0,0.0,0.0,10.53516004604178,0.0,0.0,0.0 +12741,reservoir_outflow,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12742,gw1_gw2,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12743,gw2_gw1,1.9381092228876184e-05,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12744,urban_drainage,0.012999999999999998,2013-01-17,0.0,0.0,2.9999999999999997e-06,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 +12745,percolation,0.16960435789115086,2013-01-17,0.0,0.0,8.98808275782482e-06,0.0,0.0,0.0,0.0,0.0,8.046385796074881,0.0,0.0,0.0 +12746,runoff,0.022478257360164577,2013-01-17,0.0,0.0,7.640121923940107e-07,0.0,0.0,0.0,0.0,0.0,5.460643443900516,0.0,0.0,0.0 +12747,storm_outflow,0.012999999999999998,2013-01-17,0.0,0.0,2.9999999999999997e-06,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 +12748,baseflow,0.09293541051608915,2013-01-17,0.0,0.0,9.539297979773414e-06,0.0,0.0,0.0,0.0,0.0,10.990946446777501,0.0,0.0,0.0 +12749,catchment_outflow,0.12841366787625375,2013-01-17,0.0,0.0,1.3303310172167425e-05,0.0,0.0,0.0,0.0,0.0,9.316244712724506,0.0,0.0,0.0 +12750,reservoir_outflow,0.0065,2013-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12751,gw1_gw2,0.0,2013-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12752,gw2_gw1,1.9251884947202316e-05,2013-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12753,urban_drainage,0.04,2013-01-18,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +12754,percolation,0.17063861007246028,2013-01-18,0.0,0.0,9.030282794149214e-06,0.0,0.0,0.0,0.0,0.0,7.963675849984911,0.0,0.0,0.0 +12755,runoff,0.042857699306716845,2013-01-18,0.0,0.0,1.3510820588515104e-06,0.0,0.0,0.0,0.0,0.0,4.8304883851058795,0.0,0.0,0.0 +12756,storm_outflow,0.04,2013-01-18,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +12757,baseflow,0.09312966851498007,2013-01-18,0.0,0.0,9.538025441809354e-06,0.0,0.0,0.0,0.0,0.0,10.977079511160019,0.0,0.0,0.0 +12758,catchment_outflow,0.17598736782169694,2013-01-18,0.0,0.0,1.1889107500660863e-05,0.0,0.0,0.0,0.0,0.0,7.8465110337318364,0.0,0.0,0.0 +12759,reservoir_outflow,0.02,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12760,gw1_gw2,0.0,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12761,gw2_gw1,1.9123539047782857e-05,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12762,urban_drainage,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12763,percolation,0.16722583787101108,2013-01-19,0.0,0.0,8.84967713826623e-06,0.0,0.0,0.0,0.0,0.0,7.963675849984911,0.0,0.0,0.0 +12764,runoff,0.022202256263826145,2013-01-19,0.0,0.0,1.0808656470812083e-06,0.0,0.0,0.0,0.0,0.0,5.393778220563514,0.0,0.0,0.0 +12765,storm_outflow,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12766,baseflow,0.09331490893837013,2013-01-19,0.0,0.0,9.536304571050495e-06,0.0,0.0,0.0,0.0,0.0,10.963579017031684,0.0,0.0,0.0 +12767,catchment_outflow,0.11551716520219628,2013-01-19,0.0,0.0,1.0617170218131704e-05,0.0,0.0,0.0,0.0,0.0,9.893070193471164,0.0,0.0,0.0 +12768,reservoir_outflow,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12769,gw1_gw2,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12770,gw2_gw1,1.899604878730088e-05,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12771,urban_drainage,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12772,percolation,0.16501347053522664,2013-01-20,0.0,0.0,8.731154927543413e-06,0.0,0.0,0.0,0.0,0.0,7.939989472913498,0.0,0.0,0.0 +12773,runoff,0.025235363328737374,2013-01-20,0.0,0.0,1.0595969578066554e-06,0.0,0.0,0.0,0.0,0.0,4.959259619990679,0.0,0.0,0.0 +12774,storm_outflow,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12775,baseflow,0.09349415534236229,2013-01-20,0.0,0.0,9.53429169694173e-06,0.0,0.0,0.0,0.0,0.0,10.950237728415246,0.0,0.0,0.0 +12776,catchment_outflow,0.11872951867109965,2013-01-20,0.0,0.0,1.0593888654748385e-05,0.0,0.0,0.0,0.0,0.0,9.676885398238522,0.0,0.0,0.0 +12777,reservoir_outflow,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12778,gw1_gw2,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12779,gw2_gw1,1.8869408462052208e-05,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12780,urban_drainage,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12781,percolation,0.16171320112452212,2013-01-21,0.0,0.0,8.556531828992545e-06,0.0,0.0,0.0,0.0,0.0,7.939989472913499,0.0,0.0,0.0 +12782,runoff,0.019844087034524553,2013-01-21,0.0,0.0,8.476775662453242e-07,0.0,0.0,0.0,0.0,0.0,4.95561455167104,0.0,0.0,0.0 +12783,storm_outflow,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12784,baseflow,0.09366470295681768,2013-01-21,0.0,0.0,9.531847297271857e-06,0.0,0.0,0.0,0.0,0.0,10.937244656686795,0.0,0.0,0.0 +12785,catchment_outflow,0.11350878999134223,2013-01-21,0.0,0.0,1.0379524863517181e-05,0.0,0.0,0.0,0.0,0.0,9.891510767519987,0.0,0.0,0.0 +12786,reservoir_outflow,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12787,gw1_gw2,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12788,gw2_gw1,1.8743612405813794e-05,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12789,urban_drainage,0.018,2013-01-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 +12790,percolation,0.16153340245306186,2013-01-22,0.0,0.0,8.54436933169776e-06,0.0,0.0,0.0,0.0,0.0,7.867763581583282,0.0,0.0,0.0 +12791,runoff,0.03450723535376722,2013-01-22,0.0,0.0,1.208035850613142e-06,0.0,0.0,0.0,0.0,0.0,4.324101442547188,0.0,0.0,0.0 +12792,storm_outflow,0.018,2013-01-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 +12793,baseflow,0.0938343747055583,2013-01-22,0.0,0.0,9.529378602357921e-06,0.0,0.0,0.0,0.0,0.0,10.924034579799127,0.0,0.0,0.0 +12794,catchment_outflow,0.14634161005932553,2013-01-22,0.0,0.0,1.4737414452971062e-05,0.0,0.0,0.0,0.0,0.0,8.433534559655067,0.0,0.0,0.0 +12795,reservoir_outflow,0.009,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12796,gw1_gw2,0.0,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12797,gw2_gw1,1.8618654989666085e-05,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12798,urban_drainage,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12799,percolation,0.15936707895398514,2013-01-23,0.0,0.0,8.429504576276618e-06,0.0,0.0,0.0,0.0,0.0,7.843673603993154,0.0,0.0,0.0 +12800,runoff,0.02631420790282306,2013-01-23,0.0,0.0,1.1531707845332235e-06,0.0,0.0,0.0,0.0,0.0,4.527531596550584,0.0,0.0,0.0 +12801,storm_outflow,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12802,baseflow,0.09399820646617936,2013-01-23,0.0,0.0,9.526628917292717e-06,0.0,0.0,0.0,0.0,0.0,10.910978263373167,0.0,0.0,0.0 +12803,catchment_outflow,0.12031241436900242,2013-01-23,0.0,0.0,1.067979970182594e-05,0.0,0.0,0.0,0.0,0.0,9.514818576874266,0.0,0.0,0.0 +12804,reservoir_outflow,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12805,gw1_gw2,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12806,gw2_gw1,1.8494530623058838e-05,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12807,urban_drainage,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12808,percolation,0.15617973737490545,2013-01-24,0.0,0.0,8.260914484751085e-06,0.0,0.0,0.0,0.0,0.0,7.843673603993153,0.0,0.0,0.0 +12809,runoff,0.018063732497740518,2013-01-24,0.0,0.0,9.225366276265785e-07,0.0,0.0,0.0,0.0,0.0,4.69216296867689,0.0,0.0,0.0 +12810,storm_outflow,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12811,baseflow,0.09415366029345118,2013-01-24,0.0,0.0,9.523464631211362e-06,0.0,0.0,0.0,0.0,0.0,10.898258342696218,0.0,0.0,0.0 +12812,catchment_outflow,0.1122173927911917,2013-01-24,0.0,0.0,1.0446001258837941e-05,0.0,0.0,0.0,0.0,0.0,9.899257707381604,0.0,0.0,0.0 +12813,reservoir_outflow,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12814,gw1_gw2,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12815,gw2_gw1,1.8371233752034755e-05,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12816,urban_drainage,0.04,2013-01-25,0.0,0.0,1.7910447761194032e-06,0.0,0.0,0.0,0.0,0.0,3.939285714000001,0.0,0.0,0.0 +12817,percolation,0.15890762273868736,2013-01-25,0.0,0.0,8.39852474147187e-06,0.0,0.0,0.0,0.0,0.0,7.723297608388759,0.0,0.0,0.0 +12818,runoff,0.05448742886484534,2013-01-25,0.0,0.0,1.7474577901539436e-06,0.0,0.0,0.0,0.0,0.0,4.366401382933879,0.0,0.0,0.0 +12819,storm_outflow,0.04,2013-01-25,0.0,0.0,1.7910447761194032e-06,0.0,0.0,0.0,0.0,0.0,3.939285714000001,0.0,0.0,0.0 +12820,baseflow,0.09431554519956427,2013-01-25,0.0,0.0,9.520652281487013e-06,0.0,0.0,0.0,0.0,0.0,10.884885004782783,0.0,0.0,0.0 +12821,catchment_outflow,0.1888029740644096,2013-01-25,0.0,0.0,1.305915484776036e-05,0.0,0.0,0.0,0.0,0.0,7.532186841948141,0.0,0.0,0.0 +12822,reservoir_outflow,0.033499999999999995,2013-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12823,gw1_gw2,0.0,2013-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12824,gw2_gw1,1.8248758860472947e-05,2013-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12825,urban_drainage,0.04,2013-01-26,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0 +12826,percolation,0.1710410582392291,2013-01-26,0.0,0.0,8.973195795659973e-06,0.0,0.0,0.0,0.0,0.0,7.455273030125969,0.0,0.0,0.0 +12827,runoff,0.13192823229833645,2013-01-26,0.0,0.0,3.873438062181622e-06,0.0,0.0,0.0,0.0,0.0,4.468928787334068,0.0,0.0,0.0 +12828,storm_outflow,0.04,2013-01-26,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0 +12829,baseflow,0.09450735898216342,2013-01-26,0.0,0.0,9.519283640272446e-06,0.0,0.0,0.0,0.0,0.0,10.869367576621292,0.0,0.0,0.0 +12830,catchment_outflow,0.2664355912804999,2013-01-26,0.0,0.0,1.3989736627827201e-05,0.0,0.0,0.0,0.0,0.0,6.6846994974453775,0.0,0.0,0.0 +12831,reservoir_outflow,0.0605,2013-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12832,gw1_gw2,0.0,2013-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12833,gw2_gw1,1.8127100468134928e-05,2013-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12834,urban_drainage,0.04,2013-01-27,0.0,0.0,8.425613866153106e-07,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0 +12835,percolation,0.17205233287348373,2013-01-27,0.0,0.0,9.008187619129577e-06,0.0,0.0,0.0,0.0,0.0,7.390458369696871,0.0,0.0,0.0 +12836,runoff,0.09288755581717474,2013-01-27,0.0,0.0,3.8136029143546425e-06,0.0,0.0,0.0,0.0,0.0,4.674090813698536,0.0,0.0,0.0 +12837,storm_outflow,0.04,2013-01-27,0.0,0.0,8.425613866153106e-07,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0 +12838,baseflow,0.09470122141689173,2013-01-27,0.0,0.0,9.518005900219587e-06,0.0,0.0,0.0,0.0,0.0,10.85356644871737,0.0,0.0,0.0 +12839,catchment_outflow,0.22758877723406645,2013-01-27,0.0,0.0,1.4174170201189541e-05,0.0,0.0,0.0,0.0,0.0,7.150976539513462,0.0,0.0,0.0 +12840,reservoir_outflow,0.008,2013-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12841,gw1_gw2,0.0,2013-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12842,gw2_gw1,1.8006253131552798e-05,2013-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12843,urban_drainage,0.04,2013-01-28,0.0,0.0,1.130358739547817e-06,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0 +12844,percolation,0.17271028208060205,2013-01-28,0.0,0.0,9.026128145323339e-06,0.0,0.0,0.0,0.0,0.0,7.336551890999767,0.0,0.0,0.0 +12845,runoff,0.08991483516853002,2013-01-28,0.0,0.0,3.711229926738224e-06,0.0,0.0,0.0,0.0,0.0,4.767204423985279,0.0,0.0,0.0 +12846,storm_outflow,0.04,2013-01-28,0.0,0.0,1.130358739547817e-06,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0 +12847,baseflow,0.094896244068551,2013-01-28,0.0,0.0,9.516776205832348e-06,0.0,0.0,0.0,0.0,0.0,10.837564114212269,0.0,0.0,0.0 +12848,catchment_outflow,0.22481107923708105,2013-01-28,0.0,0.0,1.435836487211839e-05,0.0,0.0,0.0,0.0,0.0,7.227930834136282,0.0,0.0,0.0 +12849,reservoir_outflow,0.006999999999999999,2013-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12850,gw1_gw2,0.0,2013-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12851,gw2_gw1,1.7886211444029245e-05,2013-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12852,urban_drainage,0.04,2013-01-29,0.0,0.0,7.761824036306869e-07,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0 +12853,percolation,0.18081058099379987,2013-01-29,0.0,0.0,9.382812713087117e-06,0.0,0.0,0.0,0.0,0.0,7.205079967926501,0.0,0.0,0.0 +12854,runoff,0.13948305125836388,2013-01-29,0.0,0.0,4.7596743769580575e-06,0.0,0.0,0.0,0.0,0.0,4.948490533583281,0.0,0.0,0.0 +12855,storm_outflow,0.04,2013-01-29,0.0,0.0,7.761824036306869e-07,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0 +12856,baseflow,0.09511102991086412,2013-01-29,0.0,0.0,9.516441297100484e-06,0.0,0.0,0.0,0.0,0.0,10.820300302392647,0.0,0.0,0.0 +12857,catchment_outflow,0.274594081169228,2013-01-29,0.0,0.0,1.5052298077689228e-05,0.0,0.0,0.0,0.0,0.0,6.926722090942332,0.0,0.0,0.0 +12858,reservoir_outflow,0.039,2013-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12859,gw1_gw2,0.0,2013-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12860,gw2_gw1,1.7766970034394094e-05,2013-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12861,urban_drainage,0.04,2013-01-30,0.0,0.0,1.122681477926921e-06,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0 +12862,percolation,0.18035780383928948,2013-01-30,0.0,0.0,9.34284248851735e-06,0.0,0.0,0.0,0.0,0.0,7.175844483017311,0.0,0.0,0.0 +12863,runoff,0.10079729561586653,2013-01-30,0.0,0.0,4.300026267206362e-06,0.0,0.0,0.0,0.0,0.0,5.064796284046184,0.0,0.0,0.0 +12864,storm_outflow,0.04,2013-01-30,0.0,0.0,1.122681477926921e-06,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0 +12865,baseflow,0.0953241468456852,2013-01-30,0.0,0.0,9.516007300079025e-06,0.0,0.0,0.0,0.0,0.0,10.803061594533139,0.0,0.0,0.0 +12866,catchment_outflow,0.23612144246155176,2013-01-30,0.0,0.0,1.4938715045212309e-05,0.0,0.0,0.0,0.0,0.0,7.30270476658885,0.0,0.0,0.0 +12867,reservoir_outflow,0.002999999999999999,2013-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12868,gw1_gw2,0.0,2013-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12869,gw2_gw1,1.7648523567892482e-05,2013-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12870,urban_drainage,0.04,2013-01-31,0.0,0.0,1.2178472403496567e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +12871,percolation,0.18243000269500637,2013-01-31,0.0,0.0,9.418736794172005e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +12872,runoff,0.11061676472458008,2013-01-31,0.0,0.0,4.3158581985150975e-06,0.0,0.0,0.0,0.0,0.0,5.248053873708764,0.0,0.0,0.0 +12873,storm_outflow,0.04,2013-01-31,0.0,0.0,1.2178472403496567e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +12874,baseflow,0.09554191148530851,2013-01-31,0.0,0.0,9.515764123814256e-06,0.0,0.0,0.0,0.0,0.0,10.785540304025412,0.0,0.0,0.0 +12875,catchment_outflow,0.24615867620988857,2013-01-31,0.0,0.0,1.504946956267901e-05,0.0,0.0,0.0,0.0,0.0,7.3339489875917705,0.0,0.0,0.0 +12876,reservoir_outflow,0.013999999999999999,2013-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12877,gw1_gw2,0.0,2013-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12878,gw2_gw1,1.7530866744053242e-05,2013-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12879,urban_drainage,0.03299999999999997,2013-02-01,0.0,0.0,2.52230905043707e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +12880,percolation,0.17878140264110623,2013-02-01,0.0,0.0,9.230362058288564e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +12881,runoff,0.07378533146790112,2013-02-01,0.0,0.0,3.452686558812078e-06,0.0,0.0,0.0,0.0,0.0,5.21696788234107,0.0,0.0,0.0 +12882,storm_outflow,0.03299999999999997,2013-02-01,0.0,0.0,2.52230905043707e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +12883,baseflow,0.09575001021319801,2013-02-01,0.0,0.0,9.515050618650442e-06,0.0,0.0,0.0,0.0,0.0,10.768488545710257,0.0,0.0,0.0 +12884,catchment_outflow,0.2025353416810991,2013-02-01,0.0,0.0,1.549004622789959e-05,0.0,0.0,0.0,0.0,0.0,7.7830054213343,0.0,0.0,0.0 +12885,reservoir_outflow,0.0,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12886,gw1_gw2,0.0,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12887,gw2_gw1,1.7413994298998148e-05,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12888,urban_drainage,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12889,percolation,0.1752057745882841,2013-02-02,0.0,0.0,9.045754817122792e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241233,0.0,0.0,0.0 +12890,runoff,0.05804109027705857,2013-02-02,0.0,0.0,2.762149247049662e-06,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 +12891,storm_outflow,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12892,baseflow,0.09594864962413574,2013-02-02,0.0,0.0,9.513877379146622e-06,0.0,0.0,0.0,0.0,0.0,10.751890261085075,0.0,0.0,0.0 +12893,catchment_outflow,0.1539897399011943,2013-02-02,0.0,0.0,1.2276026626196284e-05,0.0,0.0,0.0,0.0,0.0,8.662459363960762,0.0,0.0,0.0 +12894,reservoir_outflow,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12895,gw1_gw2,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12896,gw2_gw1,1.7297901004020844e-05,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12897,urban_drainage,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12898,percolation,0.17170165909651844,2013-02-03,0.0,0.0,8.864839720780337e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +12899,runoff,0.04643287222164686,2013-02-03,0.0,0.0,2.2097193976397303e-06,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 +12900,storm_outflow,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12901,baseflow,0.0961380321478167,2013-02-03,0.0,0.0,9.512254785000706e-06,0.0,0.0,0.0,0.0,0.0,10.735730096177223,0.0,0.0,0.0 +12902,catchment_outflow,0.14257090436946357,2013-02-03,0.0,0.0,1.1721974182640435e-05,0.0,0.0,0.0,0.0,0.0,8.935570557493135,0.0,0.0,0.0 +12903,reservoir_outflow,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12904,gw1_gw2,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12905,gw2_gw1,1.7182581663810483e-05,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12906,urban_drainage,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12907,percolation,0.169982773833338,2013-02-04,0.0,0.0,8.772295197645215e-06,0.0,0.0,0.0,0.0,0.0,7.129197127589859,0.0,0.0,0.0 +12908,runoff,0.04888152037929086,2013-02-04,0.0,0.0,2.050283089046734e-06,0.0,0.0,0.0,0.0,0.0,5.565623893603972,0.0,0.0,0.0 +12909,storm_outflow,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12910,baseflow,0.0963226440020305,2013-02-04,0.0,0.0,9.510404886032318e-06,0.0,0.0,0.0,0.0,0.0,10.719818768049931,0.0,0.0,0.0 +12911,catchment_outflow,0.14520416438132136,2013-02-04,0.0,0.0,1.1560687975079052e-05,0.0,0.0,0.0,0.0,0.0,8.984710943370516,0.0,0.0,0.0 +12912,reservoir_outflow,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12913,gw1_gw2,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12914,gw2_gw1,1.706803111947153e-05,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12915,urban_drainage,0.002000000000000001,2013-02-05,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +12916,percolation,0.16858187843832048,2013-02-05,0.0,0.0,8.696182045094339e-06,0.0,0.0,0.0,0.0,0.0,7.128184783444413,0.0,0.0,0.0 +12917,runoff,0.04796649287962945,2013-02-05,0.0,0.0,1.9713356425774833e-06,0.0,0.0,0.0,0.0,0.0,5.764574376286292,0.0,0.0,0.0 +12918,storm_outflow,0.002000000000000001,2013-02-05,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +12919,baseflow,0.09650329208812122,2013-02-05,0.0,0.0,9.508369328929974e-06,0.0,0.0,0.0,0.0,0.0,10.704133178711828,0.0,0.0,0.0 +12920,catchment_outflow,0.14646978496775068,2013-02-05,0.0,0.0,1.547970497150746e-05,0.0,0.0,0.0,0.0,0.0,9.025443660442816,0.0,0.0,0.0 +12921,reservoir_outflow,0.0010000000000000005,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12922,gw1_gw2,0.0,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12923,gw2_gw1,1.6954244245326323e-05,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12924,urban_drainage,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12925,percolation,0.16521024086955408,2013-02-06,0.0,0.0,8.522258404192452e-06,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 +12926,runoff,0.03276263968854777,2013-02-06,0.0,0.0,1.5770685140619868e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 +12927,storm_outflow,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12928,baseflow,0.0966750594600748,2013-02-06,0.0,0.0,9.50590405161813e-06,0.0,0.0,0.0,0.0,0.0,10.688855626801885,0.0,0.0,0.0 +12929,catchment_outflow,0.12943769914862258,2013-02-06,0.0,0.0,1.1082972565680116e-05,0.0,0.0,0.0,0.0,0.0,9.422178515639496,0.0,0.0,0.0 +12930,reservoir_outflow,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12931,gw1_gw2,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12932,gw2_gw1,1.6841215950336166e-05,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12933,urban_drainage,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12934,percolation,0.161906036052163,2013-02-07,0.0,0.0,8.351813236108604e-06,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 +12935,runoff,0.028324733581620055,2013-02-07,0.0,0.0,1.2616548112495893e-06,0.0,0.0,0.0,0.0,0.0,5.670462925461687,0.0,0.0,0.0 +12936,storm_outflow,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12937,baseflow,0.09683813690155503,2013-02-07,0.0,0.0,9.503018824579355e-06,0.0,0.0,0.0,0.0,0.0,10.673972696368171,0.0,0.0,0.0 +12938,catchment_outflow,0.1251628704831751,2013-02-07,0.0,0.0,1.0764673635828944e-05,0.0,0.0,0.0,0.0,0.0,9.541663404588146,0.0,0.0,0.0 +12939,reservoir_outflow,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12940,gw1_gw2,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12941,gw2_gw1,1.6728941177568406e-05,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12942,urban_drainage,0.008,2013-02-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 +12943,percolation,0.16068562338883877,2013-02-08,0.0,0.0,8.288624928519996e-06,0.0,0.0,0.0,0.0,0.0,7.116189371345609,0.0,0.0,0.0 +12944,runoff,0.03477346032190635,2013-02-08,0.0,0.0,1.3554837061115618e-06,0.0,0.0,0.0,0.0,0.0,5.665781751723586,0.0,0.0,0.0 +12945,storm_outflow,0.008,2013-02-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 +12946,baseflow,0.09699775561777324,2013-02-08,0.0,0.0,9.499982839839206e-06,0.0,0.0,0.0,0.0,0.0,10.65923821545615,0.0,0.0,0.0 +12947,catchment_outflow,0.1397712159396796,2013-02-08,0.0,0.0,1.3855466545950768e-05,0.0,0.0,0.0,0.0,0.0,9.100368651092827,0.0,0.0,0.0 +12948,reservoir_outflow,0.004,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12949,gw1_gw2,0.0,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12950,gw2_gw1,1.661741490277535e-05,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12951,urban_drainage,0.04,2013-02-09,0.0,0.0,7.999999999999999e-07,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 +12952,percolation,0.16290782725385974,2013-02-09,0.0,0.0,8.39585184299784e-06,0.0,0.0,0.0,0.0,0.0,7.0731961318885235,0.0,0.0,0.0 +12953,runoff,0.05934813809184191,2013-02-09,0.0,0.0,1.994385008383388e-06,0.0,0.0,0.0,0.0,0.0,5.4756232351553455,0.0,0.0,0.0 +12954,storm_outflow,0.04,2013-02-09,0.0,0.0,7.999999999999999e-07,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 +12955,baseflow,0.09716253079686346,2013-02-09,0.0,0.0,9.497222512347104e-06,0.0,0.0,0.0,0.0,0.0,10.644206846895559,0.0,0.0,0.0 +12956,catchment_outflow,0.1965106688887054,2013-02-09,0.0,0.0,1.2291607520730491e-05,0.0,0.0,0.0,0.0,0.0,7.885651703654842,0.0,0.0,0.0 +12957,reservoir_outflow,0.025,2013-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12958,gw1_gw2,0.0,2013-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12959,gw2_gw1,1.650663213670356e-05,2013-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12960,urban_drainage,0.039999999999999994,2013-02-10,0.0,0.0,3.157894736842105e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +12961,percolation,0.17626314009414246,2013-02-10,0.0,0.0,9.000533152784627e-06,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 +12962,runoff,0.14589090428124063,2013-02-10,0.0,0.0,4.170835828862521e-06,0.0,0.0,0.0,0.0,0.0,5.108009940414348,0.0,0.0,0.0 +12963,storm_outflow,0.039999999999999994,2013-02-10,0.0,0.0,3.157894736842105e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +12964,baseflow,0.09736028232010666,2013-02-10,0.0,0.0,9.495980788948199e-06,0.0,0.0,0.0,0.0,0.0,10.627351782438279,0.0,0.0,0.0 +12965,catchment_outflow,0.2832511866013473,2013-02-10,0.0,0.0,1.398260609149493e-05,0.0,0.0,0.0,0.0,0.0,6.907566790619567,0.0,0.0,0.0 +12966,reservoir_outflow,0.071,2013-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12967,gw1_gw2,0.0,2013-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12968,gw2_gw1,1.639658792207399e-05,2013-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12969,urban_drainage,0.04,2013-02-11,0.0,0.0,7.933518005540166e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +12970,percolation,0.17273787729225956,2013-02-11,0.0,0.0,8.820522489728932e-06,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 +12971,runoff,0.07139662214683036,2013-02-11,0.0,0.0,3.336668663090017e-06,0.0,0.0,0.0,0.0,0.0,5.555132322547769,0.0,0.0,0.0 +12972,storm_outflow,0.04,2013-02-11,0.0,0.0,7.933518005540166e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +12973,baseflow,0.09754872630753704,2013-02-11,0.0,0.0,9.49429214320015e-06,0.0,0.0,0.0,0.0,0.0,10.61094034532514,0.0,0.0,0.0 +12974,catchment_outflow,0.2089453484543674,2013-02-11,0.0,0.0,1.3624312606844184e-05,0.0,0.0,0.0,0.0,0.0,7.697628790261069,0.0,0.0,0.0 +12975,reservoir_outflow,0.0,2013-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12976,gw1_gw2,0.0,2013-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12977,gw2_gw1,1.628727733606894e-05,2013-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12978,urban_drainage,0.035,2013-02-12,0.0,0.0,2.090858725761773e-06,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +12979,percolation,0.16928311974641436,2013-02-12,0.0,0.0,8.644112039934355e-06,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 +12980,runoff,0.05606273871672966,2013-02-12,0.0,0.0,2.6693349304720132e-06,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 +12981,storm_outflow,0.035,2013-02-12,0.0,0.0,2.090858725761773e-06,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +12982,baseflow,0.09772806229113425,2013-02-12,0.0,0.0,9.492166692941985e-06,0.0,0.0,0.0,0.0,0.0,10.59495771959089,0.0,0.0,0.0 +12983,catchment_outflow,0.1887908010078639,2013-02-12,0.0,0.0,1.4252360349175771e-05,0.0,0.0,0.0,0.0,0.0,7.9615705118886035,0.0,0.0,0.0 +12984,reservoir_outflow,0.0,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12985,gw1_gw2,0.0,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12986,gw2_gw1,1.617869548731221e-05,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12987,urban_drainage,0.04,2013-02-13,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +12988,percolation,0.1764862166383655,2013-02-13,0.0,0.0,8.964949244195513e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +12989,runoff,0.11729959662045358,2013-02-13,0.0,0.0,3.7811994279104304e-06,0.0,0.0,0.0,0.0,0.0,5.0960410888442915,0.0,0.0,0.0 +12990,storm_outflow,0.04,2013-02-13,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +12991,baseflow,0.09792495767700231,2013-02-13,0.0,0.0,9.490848649320118e-06,0.0,0.0,0.0,0.0,0.0,10.577896226704054,0.0,0.0,0.0 +12992,catchment_outflow,0.2552245542974559,2013-02-13,0.0,0.0,1.3835428358920689e-05,0.0,0.0,0.0,0.0,0.0,7.113189999417333,0.0,0.0,0.0 +12993,reservoir_outflow,0.035500000000000004,2013-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12994,gw1_gw2,0.0,2013-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12995,gw2_gw1,1.6070837517290217e-05,2013-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12996,urban_drainage,0.012000000000000007,2013-02-14,0.0,0.0,1.4366197183098591e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +12997,percolation,0.17295649230559826,2013-02-14,0.0,0.0,8.785650259311604e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +12998,runoff,0.06453867588814219,2013-02-14,0.0,0.0,3.024959542328344e-06,0.0,0.0,0.0,0.0,0.0,5.347272997167171,0.0,0.0,0.0 +12999,storm_outflow,0.012000000000000007,2013-02-14,0.0,0.0,1.4366197183098591e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +13000,baseflow,0.09811253651357381,2013-02-14,0.0,0.0,9.489085653345097e-06,0.0,0.0,0.0,0.0,0.0,10.56128312232937,0.0,0.0,0.0 +13001,catchment_outflow,0.174651212401716,2013-02-14,0.0,0.0,1.39506649139833e-05,0.0,0.0,0.0,0.0,0.0,8.221284684635892,0.0,0.0,0.0 +13002,reservoir_outflow,0.0,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13003,gw1_gw2,0.0,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13004,gw2_gw1,1.5963698600707234e-05,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13005,urban_drainage,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13006,percolation,0.1694973624594863,2013-02-15,0.0,0.0,8.609937254125373e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295023,0.0,0.0,0.0 +13007,runoff,0.051293475368308396,2013-02-15,0.0,0.0,2.4199676338626754e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13008,storm_outflow,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13009,baseflow,0.09829099857843861,2013-02-15,0.0,0.0,9.486887782347049e-06,0.0,0.0,0.0,0.0,0.0,10.545103461292857,0.0,0.0,0.0 +13010,catchment_outflow,0.149584473946747,2013-02-15,0.0,0.0,1.1906855416209723e-05,0.0,0.0,0.0,0.0,0.0,8.763952606207866,0.0,0.0,0.0 +13011,reservoir_outflow,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13012,gw1_gw2,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13013,gw2_gw1,1.5857273943176155e-05,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13014,urban_drainage,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13015,percolation,0.16610741521029657,2013-02-16,0.0,0.0,8.437738509042865e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295025,0.0,0.0,0.0 +13016,runoff,0.04141239608861509,2013-02-16,0.0,0.0,1.9359741070901404e-06,0.0,0.0,0.0,0.0,0.0,5.3506236401548595,0.0,0.0,0.0 +13017,storm_outflow,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13018,baseflow,0.09846053962001826,2013-02-16,0.0,0.0,9.48426490916379e-06,0.0,0.0,0.0,0.0,0.0,10.52934293589918,0.0,0.0,0.0 +13019,catchment_outflow,0.13987293570863335,2013-02-16,0.0,0.0,1.142023901625393e-05,0.0,0.0,0.0,0.0,0.0,8.996071516231105,0.0,0.0,0.0 +13020,reservoir_outflow,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13021,gw1_gw2,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13022,gw2_gw1,1.5751558783883014e-05,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13023,urban_drainage,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13024,percolation,0.16278526690609063,2013-02-17,0.0,0.0,8.268983738862009e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13025,runoff,0.032827824235717375,2013-02-17,0.0,0.0,1.5487792856721124e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13026,storm_outflow,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13027,baseflow,0.09862135143823343,2013-02-17,0.0,0.0,9.481226706238036e-06,0.0,0.0,0.0,0.0,0.0,10.513987842272488,0.0,0.0,0.0 +13028,catchment_outflow,0.1314491756739508,2013-02-17,0.0,0.0,1.1030005991910148e-05,0.0,0.0,0.0,0.0,0.0,9.224551451268004,0.0,0.0,0.0 +13029,reservoir_outflow,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13030,gw1_gw2,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13031,gw2_gw1,1.5646548391679007e-05,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13032,urban_drainage,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13033,percolation,0.15952956156796883,2013-02-18,0.0,0.0,8.103604064084769e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13034,runoff,0.0262622593885739,2013-02-18,0.0,0.0,1.2390234285376897e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13035,storm_outflow,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13036,baseflow,0.09877362196355778,2013-02-18,0.0,0.0,9.477782649632652e-06,0.0,0.0,0.0,0.0,0.0,10.499025048811431,0.0,0.0,0.0 +13037,catchment_outflow,0.12503588135213167,2013-02-18,0.0,0.0,1.0716806078170342e-05,0.0,0.0,0.0,0.0,0.0,9.417708851252037,0.0,0.0,0.0 +13038,reservoir_outflow,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13039,gw1_gw2,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13040,gw2_gw1,1.554223806934374e-05,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13041,urban_drainage,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13042,percolation,0.15633897033660943,2013-02-19,0.0,0.0,7.941531982803074e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295023,0.0,0.0,0.0 +13043,runoff,0.021009807510859117,2013-02-19,0.0,0.0,9.912187428301517e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13044,storm_outflow,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13045,baseflow,0.09891753533449041,2013-02-19,0.0,0.0,9.473942022965578e-06,0.0,0.0,0.0,0.0,0.0,10.484441966605036,0.0,0.0,0.0 +13046,catchment_outflow,0.11992734284534953,2013-02-19,0.0,0.0,1.046516076579573e-05,0.0,0.0,0.0,0.0,0.0,9.585095172815459,0.0,0.0,0.0 +13047,reservoir_outflow,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13048,gw1_gw2,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13049,gw2_gw1,1.5438623148433807e-05,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13050,urban_drainage,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13051,percolation,0.15321219092987726,2013-02-20,0.0,0.0,7.782701343147013e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13052,runoff,0.016807846008687295,2013-02-20,0.0,0.0,7.929749942641214e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13053,storm_outflow,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13054,baseflow,0.09905327197347888,2013-02-20,0.0,0.0,9.469713921266033e-06,0.0,0.0,0.0,0.0,0.0,10.470226521668632,0.0,0.0,0.0 +13055,catchment_outflow,0.11586111798216617,2013-02-20,0.0,0.0,1.0262688915530153e-05,0.0,0.0,0.0,0.0,0.0,9.72756075501909,0.0,0.0,0.0 +13056,reservoir_outflow,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13057,gw1_gw2,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13058,gw2_gw1,1.5335698994256575e-05,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13059,urban_drainage,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13060,percolation,0.1501479471112797,2013-02-21,0.0,0.0,7.627047316284072e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295025,0.0,0.0,0.0 +13061,runoff,0.013446276806949835,2013-02-21,0.0,0.0,6.34379995411297e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13062,storm_outflow,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13063,baseflow,0.09918100866132337,2013-02-21,0.0,0.0,9.465107254753578e-06,0.0,0.0,0.0,0.0,0.0,10.45636712887049,0.0,0.0,0.0 +13064,catchment_outflow,0.1126272854682732,2013-02-21,0.0,0.0,1.0099487250164876e-05,0.0,0.0,0.0,0.0,0.0,9.846830005681301,0.0,0.0,0.0 +13065,reservoir_outflow,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13066,gw1_gw2,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13067,gw2_gw1,1.5233461000718762e-05,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13068,urban_drainage,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13069,percolation,0.1471449881690541,2013-02-22,0.0,0.0,7.47450636995839e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13070,runoff,0.010757021445559869,2013-02-22,0.0,0.0,5.075039963290377e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13071,storm_outflow,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13072,baseflow,0.09930091861009269,2013-02-22,0.0,0.0,9.46013075254159e-06,0.0,0.0,0.0,0.0,0.0,10.442852667430246,0.0,0.0,0.0 +13073,catchment_outflow,0.11005794005565256,2013-02-22,0.0,0.0,9.967634748870628e-06,0.0,0.0,0.0,0.0,0.0,9.945159962275895,0.0,0.0,0.0 +13074,reservoir_outflow,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13075,gw1_gw2,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13076,gw2_gw1,1.5131904594234413e-05,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13077,urban_drainage,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13078,percolation,0.14420208840567303,2013-02-23,0.0,0.0,7.325016242559223e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13079,runoff,0.008605617156447896,2013-02-23,0.0,0.0,4.060031970632302e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13080,storm_outflow,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13081,baseflow,0.09941317153458164,2013-02-23,0.0,0.0,9.454792966266634e-06,0.0,0.0,0.0,0.0,0.0,10.429672457879626,0.0,0.0,0.0 +13082,catchment_outflow,0.10801878869102953,2013-02-23,0.0,0.0,9.860796163329865e-06,0.0,0.0,0.0,0.0,0.0,10.02505207821964,0.0,0.0,0.0 +13083,reservoir_outflow,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13084,gw1_gw2,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13085,gw2_gw1,1.5031025230172192e-05,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13086,urban_drainage,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13087,percolation,0.14131804663755956,2013-02-24,0.0,0.0,7.1785159177080365e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13088,runoff,0.006884493725158316,2013-02-24,0.0,0.0,3.2480255765058404e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13089,storm_outflow,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13090,baseflow,0.09951793372233908,2013-02-24,0.0,0.0,9.449102273645237e-06,0.0,0.0,0.0,0.0,0.0,10.416816240384605,0.0,0.0,0.0 +13091,catchment_outflow,0.1064024274474974,2013-02-24,0.0,0.0,9.773904831295821e-06,0.0,0.0,0.0,0.0,0.0,10.089034488403462,0.0,0.0,0.0 +13092,reservoir_outflow,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13093,gw1_gw2,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13094,gw2_gw1,1.4930818395342273e-05,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13095,urban_drainage,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13096,percolation,0.13849168570480838,2013-02-25,0.0,0.0,7.034945599353877e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +13097,runoff,0.005507594980126652,2013-02-25,0.0,0.0,2.598420461204672e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +13098,storm_outflow,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13099,baseflow,0.09961536810229525,2013-02-25,0.0,0.0,9.443066881959509e-06,0.0,0.0,0.0,0.0,0.0,10.404274154336065,0.0,0.0,0.0 +13100,catchment_outflow,0.1051229630824219,2013-02-25,0.0,0.0,9.702908928079975e-06,0.0,0.0,0.0,0.0,0.0,10.139514279606825,0.0,0.0,0.0 +13101,reservoir_outflow,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13102,gw1_gw2,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13103,gw2_gw1,1.4831279605864721e-05,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/docs/demo/data/processed/surfaces.csv b/docs/demo/data/processed/surfaces.csv new file mode 100644 index 00000000..a9eb7275 --- /dev/null +++ b/docs/demo/data/processed/surfaces.csv @@ -0,0 +1,2913 @@ +,node,surface,storage,evaporation,precipitation,capacity,time,do,org-phosphorus,phosphate,ammonia,solids,bod,cod,ph,temperature,nitrate,nitrite,org-nitrogen,percolation,subsurface_r,surface_r,tank_recharge,et0_coef +0,my_land,urban,0.09,0.02,0.15,0.0,2009-03-03,0.0,0.0,6.923076923076922e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, +1,my_land,rural,1.457562715432305,0.042437284567694994,1.5,20.0,2009-03-03,0.0,0.0,9.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.921875000000001,0.0,0.0,0.0,0.0,0.0,0.0,1.457562715432305,0.5 +2,my_land,urban,0.030999999999999993,0.02,0.001,0.0,2009-03-04,0.0,0.0,7.388949079089923e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, +3,my_land,rural,1.4153017060826107,0.05226100934969432,0.01,20.0,2009-03-04,0.0,0.0,1.9999999999999998e-05,0.0,0.0,0.0,0.0,0.0,7.86210937475,0.0,0.0,0.0,0.0,0.0,0.0,-0.042261009349694324,0.5 +4,my_land,urban,0.0,0.02,0.0,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, +5,my_land,rural,1.3633552609352309,0.05194644514737989,0.0,20.0,2009-03-05,0.0,0.0,2.9999999999999997e-05,0.0,0.0,0.0,0.0,0.0,7.757763672093751,0.0,0.0,0.0,0.0,0.0,0.0,-0.05194644514737989,0.5 +6,my_land,urban,0.0,0.0,0.0,0.0,2009-03-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, +7,my_land,rural,1.311792879424338,0.05156238151089282,0.0,20.0,2009-03-06,0.0,0.0,3.9999999999999996e-05,0.0,0.0,0.0,0.0,0.0,7.647845459011719,0.0,0.0,0.0,0.0,0.0,0.0,-0.05156238151089282,0.5 +8,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2009-03-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, +9,my_land,rural,1.4306089137988367,0.051183965625501406,0.16999999999999998,20.0,2009-03-07,0.0,0.0,4.9999999999999996e-05,0.0,0.0,0.0,0.0,0.0,7.531629685001101,0.0,0.0,0.0,0.0,0.0,0.0,0.11881603437449857,0.5 +10,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +11,my_land,rural,1.7485487507857025,0.05206016301313425,0.37,20.0,2009-03-08,0.0,0.0,5.9999999999999995e-05,0.0,0.0,0.0,0.0,0.0,7.413271868965125,0.0,0.0,0.0,0.0,0.0,0.0,0.3179398369868658,0.5 +12,my_land,urban,0.0,0.013,0.013,0.0,2009-03-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +13,my_land,rural,1.8240694946675606,0.05447925611814175,0.13,20.0,2009-03-09,0.0,0.0,7e-05,0.0,0.0,0.0,0.0,0.0,7.311243887000397,0.0,0.0,0.0,0.0,0.0,0.0,0.07552074388185824,0.5 +14,my_land,urban,0.0,0.001,0.001,0.0,2009-03-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +15,my_land,rural,1.7789992974091149,0.055070197258445766,0.01,20.0,2009-03-10,0.0,0.0,7.999999999999999e-05,0.0,0.0,0.0,0.0,0.0,7.63086977137505,0.0,0.0,0.0,0.0,0.0,0.0,-0.045070197258445764,0.5 +16,my_land,urban,0.0,0.001,0.001,0.0,2009-03-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +17,my_land,rural,1.7342825360640128,0.05471676134510205,0.01,20.0,2009-03-11,0.0,0.0,8.999999999999999e-05,0.0,0.0,0.0,0.0,0.0,8.000287293171882,0.0,0.0,0.0,0.0,0.0,0.0,-0.044716761345102045,0.5 +18,my_land,urban,0.0,0.001,0.001,0.0,2009-03-12,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +19,my_land,rural,1.6899141972761127,0.054368338787900136,0.01,20.0,2009-03-12,0.0,0.0,9.999999999999999e-05,0.0,0.0,0.0,0.0,0.0,8.375928768896486,0.0,0.0,0.0,0.0,0.0,0.0,-0.04436833878790014,0.5 +20,my_land,urban,0.0,0.0,0.0,0.0,2009-03-13,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +21,my_land,rural,1.6358893733784778,0.05402482389763485,0.0,20.0,2009-03-13,0.0,0.0,0.00010999999999999999,0.0,0.0,0.0,0.0,0.0,8.75234823886206,0.0,0.0,0.0,0.0,0.0,0.0,-0.05402482389763485,0.5 +22,my_land,urban,0.0,0.0,0.0,0.0,2009-03-14,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +23,my_land,rural,1.5822798991336195,0.053609474244858395,0.0,20.0,2009-03-14,0.0,0.0,0.00011999999999999999,0.0,0.0,0.0,0.0,0.0,9.128864958107759,0.0,0.0,0.0,0.0,0.0,0.0,-0.053609474244858395,0.5 +24,my_land,urban,0.0,0.0,0.0,0.0,2009-03-15,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +25,my_land,rural,1.5290794246892143,0.053200474444405295,0.0,20.0,2009-03-15,0.0,0.0,0.00013,0.0,0.0,0.0,0.0,0.0,9.50539383426347,0.0,0.0,0.0,0.0,0.0,0.0,-0.053200474444405295,0.5 +26,my_land,urban,0.0,0.0,0.0,0.0,2009-03-16,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +27,my_land,rural,1.4762817448842982,0.05279767980491609,0.0,20.0,2009-03-16,0.0,0.0,0.00014,0.0,0.0,0.0,0.0,0.0,9.881924229282935,0.0,0.0,0.0,0.0,0.0,0.0,-0.05279767980491609,0.5 +28,my_land,urban,0.0,0.0,0.0,0.0,2009-03-17,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +29,my_land,rural,1.4238807948823113,0.052400950001986836,0.0,20.0,2009-03-17,0.0,0.0,0.00015,0.0,0.0,0.0,0.0,0.0,9.76492802866037,0.0,0.0,0.0,0.0,0.0,0.0,-0.052400950001986836,0.5 +30,my_land,urban,0.0,0.0,0.0,0.0,2009-03-18,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +31,my_land,rural,1.3718706459677787,0.05201014891453255,0.0,20.0,2009-03-18,0.0,0.0,0.00015999999999999999,0.0,0.0,0.0,0.0,0.0,9.586241003582547,0.0,0.0,0.0,0.0,0.0,0.0,-0.05201014891453255,0.5 +32,my_land,urban,0.0,0.0,0.0,0.0,2009-03-19,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +33,my_land,rural,1.3202455014993209,0.051625144468457944,0.0,20.0,2009-03-19,0.0,0.0,0.00016999999999999999,0.0,0.0,0.0,0.0,0.0,9.39984262544782,0.0,0.0,0.0,0.0,0.0,0.0,-0.051625144468457944,0.5 +34,my_land,urban,0.0,0.0,0.0,0.0,2009-03-20,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +35,my_land,rural,1.2689996930120624,0.05124580848725849,0.0,20.0,2009-03-20,0.0,0.0,0.00017999999999999998,0.0,0.0,0.0,0.0,0.0,9.212480328180979,0.0,0.0,0.0,0.0,0.0,0.0,-0.05124580848725849,0.5 +36,my_land,urban,0.0,0.0,0.0,0.0,2009-03-21,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +37,my_land,rural,1.218127676462868,0.05087201654919449,0.0,20.0,2009-03-21,0.0,0.0,0.00018999999999999998,0.0,0.0,0.0,0.0,0.0,9.024997541022623,0.0,0.0,0.0,0.0,0.0,0.0,-0.05087201654919449,0.5 +38,my_land,urban,0.0,0.0,0.0,0.0,2009-03-22,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +39,my_land,rural,1.1676240286121635,0.0505036478507044,0.0,20.0,2009-03-22,0.0,0.0,0.00019999999999999998,0.0,0.0,0.0,0.0,0.0,8.837499692627828,0.0,0.0,0.0,0.0,0.0,0.0,-0.0505036478507044,0.5 +40,my_land,urban,0.0,0.005,0.005,0.0,2009-03-23,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +41,my_land,rural,1.1674834435364232,0.05014058507574028,0.05,20.0,2009-03-23,0.0,0.0,0.00020999999999999998,0.0,0.0,0.0,0.0,0.0,8.649999961578478,0.0,0.0,0.0,0.0,0.0,0.0,-0.000140585075740279,0.5 +42,my_land,urban,0.0,0.005,0.005,0.0,2009-03-24,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +43,my_land,rural,1.1673438654531352,0.05013957808328798,0.05,20.0,2009-03-24,0.0,0.0,0.00021999999999999998,0.0,0.0,0.0,0.0,0.0,8.46249999519731,0.0,0.0,0.0,0.0,0.0,0.0,-0.00013957808328797549,0.5 +44,my_land,urban,0.0,0.009,0.009,0.0,2009-03-25,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +45,my_land,rural,1.2072052871293377,0.050138578323797506,0.09,20.0,2009-03-25,0.0,0.0,0.00022999999999999998,0.0,0.0,0.0,0.0,0.0,8.529785140753722,0.0,0.0,0.0,0.0,0.0,0.0,0.03986142167620249,0.5 +46,my_land,urban,0.0,0.009,0.009,0.0,2009-03-26,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +47,my_land,rural,1.2467803807600906,0.05042490636924722,0.09,20.0,2009-03-26,0.0,0.0,0.00023999999999999998,0.0,0.0,0.0,0.0,0.0,8.629845085243515,0.0,0.0,0.0,0.0,0.0,0.0,0.039575093630752775,0.5 +48,my_land,urban,0.0,0.004,0.004,0.0,2009-03-27,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +49,my_land,rural,1.2360695855194306,0.05071079524066002,0.04,20.0,2009-03-27,0.0,0.0,0.00025,0.0,0.0,0.0,0.0,0.0,8.73419938565544,0.0,0.0,0.0,0.0,0.0,0.0,-0.01071079524066002,0.5 +50,my_land,urban,0.0,0.016,0.016,0.0,2009-03-28,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +51,my_land,rural,1.3454363242235305,0.05063326129589999,0.16,20.0,2009-03-28,0.0,0.0,0.00026000000000000003,0.0,0.0,0.0,0.0,0.0,8.837921393004958,0.0,0.0,0.0,0.0,0.0,0.0,0.10936673870410002,0.5 +52,my_land,urban,0.0,0.0,0.0,0.0,2009-03-29,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +53,my_land,rural,1.2940057657815653,0.051430558441965306,0.0,20.0,2009-03-29,0.0,0.0,0.00027000000000000006,0.0,0.0,0.0,0.0,0.0,8.943021424125622,0.0,0.0,0.0,0.0,0.0,0.0,-0.051430558441965306,0.5 +54,my_land,urban,0.0,0.0,0.0,0.0,2009-03-30,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +55,my_land,rural,1.2429516943421646,0.05105407143940076,0.0,20.0,2009-03-30,0.0,0.0,0.0002800000000000001,0.0,0.0,0.0,0.0,0.0,9.047565178015704,0.0,0.0,0.0,0.0,0.0,0.0,-0.05105407143940076,0.5 +56,my_land,urban,0.0,0.0,0.0,0.0,2009-03-31,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +57,my_land,rural,1.1922686280508497,0.05068306629131499,0.0,20.0,2009-03-31,0.0,0.0,0.0002900000000000001,0.0,0.0,0.0,0.0,0.0,9.152039397251963,0.0,0.0,0.0,0.0,0.0,0.0,-0.05068306629131499,0.5 +58,my_land,urban,0.0,0.0,0.0,0.0,2009-04-01,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +59,my_land,rural,1.1419512040582054,0.05031742399264425,0.0,20.0,2009-04-01,0.0,0.0,0.00030000000000000014,0.0,0.0,0.0,0.0,0.0,9.256504924656497,0.0,0.0,0.0,0.0,0.0,0.0,-0.05031742399264425,0.5 +60,my_land,urban,0.0,0.0,0.0,0.0,2009-04-02,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +61,my_land,rural,1.0919941750969615,0.04995702896124396,0.0,20.0,2009-04-02,0.0,0.0,0.00031000000000000016,0.0,0.0,0.0,0.0,0.0,9.569563115582064,0.0,0.0,0.0,0.0,0.0,0.0,-0.04995702896124396,0.5 +62,my_land,urban,0.0,0.002,0.002,0.0,2009-04-03,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +63,my_land,rural,1.0623924061813461,0.04960176891561542,0.02,20.0,2009-04-03,0.0,0.0,0.0003200000000000002,0.0,0.0,0.0,0.0,0.0,9.90869538944776,0.0,0.0,0.0,0.0,0.0,0.0,-0.02960176891561542,0.5 +64,my_land,urban,0.0,0.0,0.0,0.0,2009-04-04,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +65,my_land,rural,1.0129999515345065,0.04939245464683967,0.0,20.0,2009-04-04,0.0,0.0,0.0003300000000000002,0.0,0.0,0.0,0.0,0.0,10.25108692368097,0.0,0.0,0.0,0.0,0.0,0.0,-0.04939245464683967,0.5 +66,my_land,urban,0.0,0.0,0.0,0.0,2009-04-05,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +67,my_land,rural,0.9639547865655058,0.04904516496900069,0.0,20.0,2009-04-05,0.0,0.0,0.00034000000000000024,0.0,0.0,0.0,0.0,0.0,10.593885865460123,0.0,0.0,0.0,0.0,0.0,0.0,-0.04904516496900069,0.5 +68,my_land,urban,0.0,0.009,0.009,0.0,2009-04-06,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, +69,my_land,rural,1.0052520531813867,0.04870273338411913,0.09,20.0,2009-04-06,0.0,0.0,0.00035000000000000027,0.0,0.0,0.0,0.0,0.0,10.939591483838567,0.0,0.0,0.0,0.0,0.0,0.0,0.041297266615880866,0.5 +70,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2009-04-07,0.0,0.0,3.3881317890172014e-21,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +71,my_land,rural,1.4562611434598214,0.04899090972156532,0.5,20.0,2009-04-07,0.0,0.0,0.0003600000000000003,0.0,0.0,0.0,0.0,0.0,11.05217739131531,0.0,0.0,0.0,0.0,0.0,0.0,0.45100909027843467,0.5 +72,my_land,urban,0.0,0.014000000000000004,0.014,0.0,2009-04-08,0.0,0.0,1.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +73,my_land,rural,1.5440098505589126,0.05225129290090875,0.13999999999999999,20.0,2009-04-08,0.0,0.0,0.0003700000000000003,0.0,0.0,0.0,0.0,0.0,11.117746496016576,0.0,0.0,0.0,0.0,0.0,0.0,0.08774870709909124,0.5 +74,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2009-04-09,0.0,0.0,2.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +75,my_land,rural,1.661099437450659,0.05291041310825378,0.16999999999999998,20.0,2009-04-09,0.0,0.0,0.00038000000000000035,0.0,0.0,0.0,0.0,0.0,11.187462720617349,0.0,0.0,0.0,0.0,0.0,0.0,0.11708958689174623,0.5 +76,my_land,urban,0.0,0.019,0.019,0.0,2009-04-10,0.0,0.0,3.0000000000000035e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +77,my_land,rural,1.7972965439381954,0.053802893512463534,0.19,20.0,2009-04-10,0.0,0.0,0.00039000000000000037,0.0,0.0,0.0,0.0,0.0,11.257406496448128,0.0,0.0,0.0,0.0,0.0,0.0,0.13619710648753647,0.5 +78,my_land,urban,0.0,0.0,0.0,0.0,2009-04-11,0.0,0.0,4.000000000000003e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +79,my_land,rural,1.7424365717812949,0.05485997215690057,0.0,20.0,2009-04-11,0.0,0.0,0.0004000000000000004,0.0,0.0,0.0,0.0,0.0,11.324363312056017,0.0,0.0,0.0,0.0,0.0,0.0,-0.05485997215690057,0.5 +80,my_land,urban,0.0,0.0,0.0,0.0,2009-04-12,0.0,0.0,5.000000000000003e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +81,my_land,rural,1.6880048644675634,0.05443170731373148,0.0,20.0,2009-04-12,0.0,0.0,0.0004100000000000004,0.0,0.0,0.0,0.0,0.0,11.393670414007001,0.0,0.0,0.0,0.0,0.0,0.0,-0.05443170731373148,0.5 +82,my_land,urban,0.0,0.001,0.001,0.0,2009-04-13,0.0,0.0,6.000000000000003e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, +83,my_land,rural,1.643994774470235,0.054010089997328425,0.01,20.0,2009-04-13,0.0,0.0,0.00042000000000000045,0.0,0.0,0.0,0.0,0.0,11.463271301750876,0.0,0.0,0.0,0.0,0.0,0.0,-0.044010089997328423,0.5 +84,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0,,,,, +85,my_land,rural,2.100323189088186,0.05367158538204903,0.51,20.0,2009-04-14,0.0,0.0,0.0004300000000000005,0.0,0.0,0.0,0.0,0.0,11.542053866804183,0.0,0.0,0.0,0.0,0.0,0.0,0.45632841461795104,0.5 +86,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-04-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0,,,,, +87,my_land,rural,2.1530362018731934,0.05728698721499271,0.11,20.0,2009-04-15,0.0,0.0,0.0004400000000000005,0.0,0.0,0.0,0.0,0.0,11.584336922192195,0.0,0.0,0.0,0.0,0.0,0.0,0.0527130127850073,0.5 +88,my_land,urban,0.022000000000000006,0.02,0.082,0.0,2009-04-16,0.0,0.0,7.096774193548387e-07,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +89,my_land,rural,2.915316190605835,0.05772001126735857,0.8200000000000001,20.0,2009-04-16,0.0,0.0,0.00045000000000000053,0.0,0.0,0.0,0.0,0.0,11.63988170074432,0.0,0.0,0.0,0.0,0.0,0.0,0.7622799887326415,0.5 +90,my_land,urban,0.0,0.02,0.009,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +91,my_land,rural,2.940955627566892,0.06436056303894279,0.09,20.0,2009-04-17,0.0,0.0,0.00046000000000000056,0.0,0.0,0.0,0.0,0.0,11.677211788432402,0.0,0.0,0.0,0.0,0.0,0.0,0.025639436961057204,0.5 +92,my_land,urban,0.0,0.0,0.0,0.0,2009-04-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +93,my_land,rural,2.8763588939005906,0.06459673366630128,0.0,20.0,2009-04-18,0.0,0.0,0.0004700000000000006,0.0,0.0,0.0,0.0,0.0,11.722151476054051,0.0,0.0,0.0,0.0,0.0,0.0,-0.06459673366630128,0.5 +94,my_land,urban,0.0,0.0,0.0,0.0,2009-04-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +95,my_land,rural,2.8123555236422586,0.06400337025833196,0.0,20.0,2009-04-19,0.0,0.0,0.0004800000000000006,0.0,0.0,0.0,0.0,0.0,11.768393932006756,0.0,0.0,0.0,0.0,0.0,0.0,-0.06400337025833196,0.5 +96,my_land,urban,0.0,0.0,0.0,0.0,2009-04-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +97,my_land,rural,2.7489346906441936,0.0634208329980652,0.0,20.0,2009-04-20,0.0,0.0,0.0004900000000000006,0.0,0.0,0.0,0.0,0.0,11.814799241500845,0.0,0.0,0.0,0.0,0.0,0.0,-0.0634208329980652,0.5 +98,my_land,urban,0.0,0.0,0.0,0.0,2009-04-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +99,my_land,rural,2.686085862809942,0.06284882783425177,0.0,20.0,2009-04-21,0.0,0.0,0.0005000000000000007,0.0,0.0,0.0,0.0,0.0,11.801849905187606,0.0,0.0,0.0,0.0,0.0,0.0,-0.06284882783425177,0.5 +100,my_land,urban,0.0,0.0,0.0,0.0,2009-04-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +101,my_land,rural,2.623798791529112,0.06228707128083,0.0,20.0,2009-04-22,0.0,0.0,0.0005100000000000007,0.0,0.0,0.0,0.0,0.0,11.781481238148451,0.0,0.0,0.0,0.0,0.0,0.0,-0.06228707128083,0.5 +102,my_land,urban,0.0,0.0,0.0,0.0,2009-04-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +103,my_land,rural,2.5620635015828794,0.06173528994623264,0.0,20.0,2009-04-23,0.0,0.0,0.0005200000000000007,0.0,0.0,0.0,0.0,0.0,11.760185154768557,0.0,0.0,0.0,0.0,0.0,0.0,-0.06173528994623264,0.5 +104,my_land,urban,0.0,0.015,0.015,0.0,2009-04-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +105,my_land,rural,2.6508702814952256,0.0611932200876539,0.15,20.0,2009-04-24,0.0,0.0,0.0005300000000000007,0.0,0.0,0.0,0.0,0.0,11.739882089295309,0.0,0.0,0.0,0.0,0.0,0.0,0.0888067799123461,0.5 +106,my_land,urban,0.0,0.0,0.0,0.0,2009-04-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, +107,my_land,rural,2.5888957769571364,0.061974504538089406,0.0,20.0,2009-04-25,0.0,0.0,0.0005400000000000008,0.0,0.0,0.0,0.0,0.0,11.717485261161913,0.0,0.0,0.0,0.0,0.0,0.0,-0.061974504538089406,0.5 +108,my_land,urban,0.0,0.02,0.056,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0,,,,, +109,my_land,rural,3.0874675419680004,0.06142823498913598,0.5599999999999999,20.0,2009-04-26,0.0,0.0,0.0005500000000000008,0.0,0.0,0.0,0.0,0.0,11.701133670908279,0.0,0.0,0.0,0.0,0.0,0.0,0.49857176501086403,0.5 +110,my_land,urban,0.0,0.02,0.054000000000000006,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +111,my_land,rural,3.5615045326152734,0.0659630093527269,0.54,20.0,2009-04-27,0.0,0.0,0.0005600000000000008,0.0,0.0,0.0,0.0,0.0,11.679282228854305,0.0,0.0,0.0,0.0,0.0,0.0,0.4740369906472731,0.5 +112,my_land,urban,0.0,0.007,0.007,0.0,2009-04-28,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +113,my_land,rural,3.5609198126034434,0.07058472001183014,0.06999999999999999,20.0,2009-04-28,0.0,0.0,0.0005700000000000008,0.0,0.0,0.0,0.0,0.0,11.766160278606788,0.0,0.0,0.0,0.0,0.0,0.0,-0.0005847200118301392,0.5 +114,my_land,urban,0.0,0.005,0.005,0.0,2009-04-29,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +115,my_land,rural,3.540340988387985,0.07057882421545852,0.05,20.0,2009-04-29,0.0,0.0,0.0005800000000000009,0.0,0.0,0.0,0.0,0.0,11.87077003482585,0.0,0.0,0.0,0.0,0.0,0.0,-0.020578824215458515,0.5 +116,my_land,urban,0.0,0.019,0.019,0.0,2009-04-30,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +117,my_land,rural,3.6599693493665963,0.07037163902138849,0.19,20.0,2009-04-30,0.0,0.0,0.0005900000000000009,0.0,0.0,0.0,0.0,0.0,11.979452102758442,0.0,0.0,0.0,0.0,0.0,0.0,0.11962836097861151,0.5 +118,my_land,urban,0.0,0.002,0.002,0.0,2009-05-01,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +119,my_land,rural,3.608384740346465,0.07158460902013139,0.02,20.0,2009-05-01,0.0,0.0,0.0006000000000000009,0.0,0.0,0.0,0.0,0.0,12.084931512844804,0.0,0.0,0.0,0.0,0.0,0.0,-0.05158460902013139,0.5 +120,my_land,urban,0.0,0.0,0.0,0.0,2009-05-02,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +121,my_land,rural,3.5373257158096973,0.07105902453676755,0.0,20.0,2009-05-02,0.0,0.0,0.000610000000000001,0.0,0.0,0.0,0.0,0.0,12.191866439105599,0.0,0.0,0.0,0.0,0.0,0.0,-0.07105902453676755,0.5 +122,my_land,urban,0.0,0.0,0.0,0.0,2009-05-03,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +123,my_land,rural,3.4669843830710656,0.07034133273863154,0.0,20.0,2009-05-03,0.0,0.0,0.000620000000000001,0.0,0.0,0.0,0.0,0.0,12.2989833048882,0.0,0.0,0.0,0.0,0.0,0.0,-0.07034133273863154,0.5 +124,my_land,urban,0.0,0.001,0.001,0.0,2009-05-04,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +125,my_land,rural,3.4073463540473026,0.06963802902376323,0.01,20.0,2009-05-04,0.0,0.0,0.000630000000000001,0.0,0.0,0.0,0.0,0.0,12.406122913111025,0.0,0.0,0.0,0.0,0.0,0.0,-0.05963802902376323,0.5 +126,my_land,urban,0.0,0.0,0.0,0.0,2009-05-05,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +127,my_land,rural,3.338299101226045,0.0690472528212574,0.0,20.0,2009-05-05,0.0,0.0,0.000640000000000001,0.0,0.0,0.0,0.0,0.0,12.513265364138878,0.0,0.0,0.0,0.0,0.0,0.0,-0.0690472528212574,0.5 +128,my_land,urban,0.0,0.0,0.0,0.0,2009-05-06,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +129,my_land,rural,3.269929575129468,0.06836952609657722,0.0,20.0,2009-05-06,0.0,0.0,0.0006500000000000011,0.0,0.0,0.0,0.0,0.0,12.67665817051736,0.0,0.0,0.0,0.0,0.0,0.0,-0.06836952609657722,0.5 +130,my_land,urban,0.0,0.013,0.013,0.0,2009-05-07,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +131,my_land,rural,3.3322245688425496,0.06770500628691827,0.13,20.0,2009-05-07,0.0,0.0,0.0006600000000000011,0.0,0.0,0.0,0.0,0.0,12.848655763143022,0.0,0.0,0.0,0.0,0.0,0.0,0.06229499371308173,0.5 +132,my_land,urban,0.0,0.007,0.007,0.0,2009-05-08,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +133,my_land,rural,3.3339143474245683,0.06831022141798135,0.06999999999999999,20.0,2009-05-08,0.0,0.0,0.0006700000000000011,0.0,0.0,0.0,0.0,0.0,13.018626404515452,0.0,0.0,0.0,0.0,0.0,0.0,0.0016897785820186467,0.5 +134,my_land,urban,0.0,0.0,0.0,0.0,2009-05-09,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +135,my_land,rural,3.265587634137683,0.06832671328688535,0.0,20.0,2009-05-09,0.0,0.0,0.0006800000000000011,0.0,0.0,0.0,0.0,0.0,13.189828300564434,0.0,0.0,0.0,0.0,0.0,0.0,-0.06832671328688535,0.5 +136,my_land,urban,0.0,0.0,0.0,0.0,2009-05-10,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +137,my_land,rural,3.1979246107063624,0.06766302343132068,0.0,20.0,2009-05-10,0.0,0.0,0.0006900000000000012,0.0,0.0,0.0,0.0,0.0,13.361228537570554,0.0,0.0,0.0,0.0,0.0,0.0,-0.06766302343132068,0.5 +138,my_land,urban,0.0,0.0,0.0,0.0,2009-05-11,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +139,my_land,rural,3.1309124770861776,0.0670121336201849,0.0,20.0,2009-05-11,0.0,0.0,0.0007000000000000012,0.0,0.0,0.0,0.0,0.0,13.532653567196322,0.0,0.0,0.0,0.0,0.0,0.0,-0.0670121336201849,0.5 +140,my_land,urban,0.0,0.008,0.008,0.0,2009-05-12,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +141,my_land,rural,3.1445388005708725,0.06637367651530499,0.08,20.0,2009-05-12,0.0,0.0,0.0007100000000000012,0.0,0.0,0.0,0.0,0.0,13.441834841673717,0.0,0.0,0.0,0.0,0.0,0.0,0.013626323484695023,0.5 +142,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2009-05-13,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, +143,my_land,rural,3.19803579404879,0.0665030065220828,0.12,20.0,2009-05-13,0.0,0.0,0.0007200000000000012,0.0,0.0,0.0,0.0,0.0,13.318582832555117,0.0,0.0,0.0,0.0,0.0,0.0,0.0534969934779172,0.5 +144,my_land,urban,0.07700000000000001,0.02,0.137,0.0,2009-05-14,0.0,0.0,1.118803418803419e-05,0.0,0.0,0.0,0.0,0.0,13.7,0.0,0.0,0.0,,,,, +145,my_land,rural,4.50102259604401,0.06701319800478059,1.37,20.0,2009-05-14,0.0,0.0,0.0007300000000000013,0.0,0.0,0.0,0.0,0.0,13.203624760320423,0.0,0.0,0.0,0.0,0.0,0.0,1.3029868019952195,0.5 +146,my_land,urban,0.031000000000000007,0.02,0.014,0.0,2009-05-15,0.0,0.0,5.3215360539304225e-06,0.0,0.0,0.0,0.0,0.0,13.7,0.0,0.0,0.0,,,,, +147,my_land,rural,4.560299029690554,0.08072356635345548,0.13999999999999999,20.0,2009-05-15,0.0,0.0,0.0007400000000000013,0.0,0.0,0.0,0.0,0.0,13.063515884036402,0.0,0.0,0.0,0.0,0.0,0.0,0.05927643364654451,0.5 +148,my_land,urban,0.0050000000000000044,0.02,0.033999999999999996,0.0,2009-05-16,0.0,0.0,7.023928948811583e-07,0.0,0.0,0.0,0.0,0.0,13.60666666666667,0.0,0.0,0.0,,,,, +149,my_land,rural,4.818888988723798,0.081410040966755,0.33999999999999997,20.0,2009-05-16,0.0,0.0,0.0007500000000000013,0.0,0.0,0.0,0.0,0.0,12.935196525819391,0.0,0.0,0.0,0.0,0.0,0.0,0.25858995903324494,0.5 +150,my_land,urban,0.011000000000000003,0.02,0.066,0.0,2009-05-17,0.0,0.0,3.671827812488773e-07,0.0,0.0,0.0,0.0,0.0,13.284967320261439,0.0,0.0,0.0,,,,, +151,my_land,rural,5.394415305770039,0.08447368295375954,0.66,20.0,2009-05-17,0.0,0.0,0.0007600000000000013,0.0,0.0,0.0,0.0,0.0,12.808597835461464,0.0,0.0,0.0,0.0,0.0,0.0,0.5755263170462405,0.5 +152,my_land,urban,0.016,0.02,0.065,0.0,2009-05-18,0.0,0.0,3.9062365178539356e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0,,,,, +153,my_land,rural,5.952702860543271,0.09171244522676819,0.65,20.0,2009-05-18,0.0,0.0,0.0007700000000000014,0.0,0.0,0.0,0.0,0.0,12.67949095492107,0.0,0.0,0.0,0.0,0.0,0.0,0.5582875547732318,0.5 +154,my_land,urban,0.0,0.02,0.035,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, +155,my_land,rural,6.203376256423689,0.09932660411958225,0.35000000000000003,20.0,2009-05-19,0.0,0.0,0.0007800000000000014,0.0,0.0,0.0,0.0,0.0,13.072619484965148,0.0,0.0,0.0,0.0,0.0,0.0,0.25067339588041776,0.5 +156,my_land,urban,0.0,0.001,0.001,0.0,2009-05-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, +157,my_land,rural,6.113376256423689,0.1,0.01,20.0,2009-05-20,0.0,0.0,0.0007900000000000014,0.0,0.0,0.0,0.0,0.0,13.524702435620645,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +158,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-05-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, +159,my_land,rural,6.043376256423689,0.1,0.03,20.0,2009-05-21,0.0,0.0,0.0008000000000000014,0.0,0.0,0.0,0.0,0.0,13.989025304452582,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +160,my_land,urban,0.0,0.0,0.0,0.0,2009-05-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, +161,my_land,rural,5.943376256423689,0.1,0.0,20.0,2009-05-22,0.0,0.0,0.0008100000000000015,0.0,0.0,0.0,0.0,0.0,14.454878163056573,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +162,my_land,urban,0.0,0.0,0.0,0.0,2009-05-23,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, +163,my_land,rural,5.844181904168082,0.09919435225560742,0.0,20.0,2009-05-23,0.0,0.0,0.0008200000000000015,0.0,0.0,0.0,0.0,0.0,14.920922270382071,0.0,0.0,0.0,0.0,0.0,0.0,-0.09919435225560742,0.5 +164,my_land,urban,0.0,0.0,0.0,0.0,2009-05-24,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, +165,my_land,rural,5.746383284999338,0.09779861916874427,0.0,20.0,2009-05-24,0.0,0.0,0.0008300000000000015,0.0,0.0,0.0,0.0,0.0,15.386990283797763,0.0,0.0,0.0,0.0,0.0,0.0,-0.09779861916874427,0.5 +166,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +167,my_land,rural,5.889941532341746,0.09644175265759114,0.24,20.0,2009-05-25,0.0,0.0,0.0008400000000000016,0.0,0.0,0.0,0.0,0.0,15.857689987239379,0.0,0.0,0.0,0.0,0.0,0.0,0.14355824734240885,0.5 +168,my_land,urban,0.0,0.008,0.008,0.0,2009-05-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +169,my_land,rural,5.871501500621583,0.0984400317201632,0.08,20.0,2009-05-26,0.0,0.0,0.0008500000000000016,0.0,0.0,0.0,0.0,0.0,16.319711248404925,0.0,0.0,0.0,0.0,0.0,0.0,-0.018440031720163196,0.5 +170,my_land,urban,0.0,0.013,0.013,0.0,2009-05-27,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +171,my_land,rural,5.90332044725493,0.09818105336665264,0.13,20.0,2009-05-27,0.0,0.0,0.0008600000000000016,0.0,0.0,0.0,0.0,0.0,16.653472483832484,0.0,0.0,0.0,0.0,0.0,0.0,0.031818946633347354,0.5 +172,my_land,urban,0.0,0.0,0.0,0.0,2009-05-28,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +173,my_land,rural,5.804692089791312,0.09862835746361767,0.0,20.0,2009-05-28,0.0,0.0,0.0008700000000000016,0.0,0.0,0.0,0.0,0.0,16.969184057979064,0.0,0.0,0.0,0.0,0.0,0.0,-0.09862835746361767,0.5 +174,my_land,urban,0.0,0.0,0.0,0.0,2009-05-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +175,my_land,rural,5.70744363863502,0.097248451156292,0.0,20.0,2009-05-29,0.0,0.0,0.0008800000000000017,0.0,0.0,0.0,0.0,0.0,17.283648007247386,0.0,0.0,0.0,0.0,0.0,0.0,-0.097248451156292,0.5 +176,my_land,urban,0.0,0.0,0.0,0.0,2009-05-30,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +177,my_land,rural,5.611536883374744,0.09590675526027635,0.0,20.0,2009-05-30,0.0,0.0,0.0008900000000000017,0.0,0.0,0.0,0.0,0.0,17.597956003405926,0.0,0.0,0.0,0.0,0.0,0.0,-0.09590675526027635,0.5 +178,my_land,urban,0.0,0.0,0.0,0.0,2009-05-31,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +179,my_land,rural,5.516935182547588,0.09460170082715641,0.0,20.0,2009-05-31,0.0,0.0,0.0009000000000000017,0.0,0.0,0.0,0.0,0.0,17.91224449792574,0.0,0.0,0.0,0.0,0.0,0.0,-0.09460170082715641,0.5 +180,my_land,urban,0.0,0.0,0.0,0.0,2009-06-01,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +181,my_land,rural,5.423603378762304,0.0933318037852833,0.0,20.0,2009-06-01,0.0,0.0,0.0009100000000000017,0.0,0.0,0.0,0.0,0.0,18.22653056224072,0.0,0.0,0.0,0.0,0.0,0.0,-0.0933318037852833,0.5 +182,my_land,urban,0.0,0.0,0.0,0.0,2009-06-02,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +183,my_land,rural,5.331507719492868,0.09209565926943614,0.0,20.0,2009-06-02,0.0,0.0,0.0009200000000000018,0.0,0.0,0.0,0.0,0.0,17.772959175280093,0.0,0.0,0.0,0.0,0.0,0.0,-0.09209565926943614,0.5 +184,my_land,urban,0.0,0.0,0.0,0.0,2009-06-03,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +185,my_land,rural,5.24061578309332,0.09089193639954828,0.0,20.0,2009-06-03,0.0,0.0,0.0009300000000000018,0.0,0.0,0.0,0.0,0.0,17.223405614410012,0.0,0.0,0.0,0.0,0.0,0.0,-0.09089193639954828,0.5 +186,my_land,urban,0.0,0.0,0.0,0.0,2009-06-04,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, +187,my_land,rural,5.150896409625811,0.08971937346750859,0.0,20.0,2009-06-04,0.0,0.0,0.0009400000000000018,0.0,0.0,0.0,0.0,0.0,16.661854274301255,0.0,0.0,0.0,0.0,0.0,0.0,-0.08971937346750859,0.5 +188,my_land,urban,0.024,0.02,0.08399999999999999,0.0,2009-06-05,0.0,0.0,4.125e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0,,,,, +189,my_land,rural,5.902319636130534,0.08857677349527637,0.84,20.0,2009-06-05,0.0,0.0,0.0009500000000000018,0.0,0.0,0.0,0.0,0.0,16.104525378963004,0.0,0.0,0.0,0.0,0.0,0.0,0.7514232265047236,0.5 +190,my_land,urban,0.118,0.02,0.154,0.0,2009-06-06,0.0,0.0,3.82753164556962e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0,,,,, +191,my_land,rural,7.343705378852824,0.09861425727771043,1.54,20.0,2009-06-06,0.0,0.0,0.0009600000000000019,0.0,0.0,0.0,0.0,0.0,15.542653012107253,0.0,0.0,0.0,0.0,0.0,0.0,1.4413857427222896,0.5 +192,my_land,urban,0.10699999999999998,0.02,0.049,0.0,2009-06-07,0.0,0.0,3.5139175923533963e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0,,,,, +193,my_land,rural,7.733705378852823,0.1,0.49,20.0,2009-06-07,0.0,0.0,0.0009700000000000019,0.0,0.0,0.0,0.0,0.0,14.97422564577897,0.0,0.0,0.0,0.0,0.0,0.0,0.38999999999999996,0.5 +194,my_land,urban,0.04899999999999998,0.019999999999999997,0.002,0.0,2009-06-08,0.0,0.0,2.4851905845541163e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0,,,,, +195,my_land,rural,7.653705378852823,0.1,0.02,20.0,2009-06-08,0.0,0.0,0.000980000000000002,0.0,0.0,0.0,0.0,0.0,14.409278205722373,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +196,my_land,urban,-6.938893903907228e-18,0.02,0.0,0.0,2009-06-09,0.0,0.0,-8.470329472543003e-22,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0,,,,, +197,my_land,rural,7.553705378852824,0.1,0.0,20.0,2009-06-09,0.0,0.0,0.000990000000000002,0.0,0.0,0.0,0.0,0.0,14.753838348215298,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +198,my_land,urban,0.03499999999999998,0.02,0.095,0.0,2009-06-10,0.0,0.0,4.666666666666662e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +199,my_land,rural,8.403705378852823,0.1,0.95,20.0,2009-06-10,0.0,0.0,0.001000000000000002,0.0,0.0,0.0,0.0,0.0,15.229829243576342,0.0,0.0,0.0,0.0,0.0,0.0,0.8500000000000001,0.5 +200,my_land,urban,0.0,0.02,0.0,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +201,my_land,rural,8.303705378852824,0.1,0.0,20.0,2009-06-11,0.0,0.0,0.001010000000000002,0.0,0.0,0.0,0.0,0.0,15.686764372947042,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +202,my_land,urban,0.0,0.0,0.0,0.0,2009-06-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +203,my_land,rural,8.203705378852824,0.1,0.0,20.0,2009-06-12,0.0,0.0,0.001020000000000002,0.0,0.0,0.0,0.0,0.0,16.15905982911838,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +204,my_land,urban,0.0,0.0,0.0,0.0,2009-06-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +205,my_land,rural,8.103705378852824,0.1,0.0,20.0,2009-06-13,0.0,0.0,0.001030000000000002,0.0,0.0,0.0,0.0,0.0,16.6332753336398,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +206,my_land,urban,0.0,0.0,0.0,0.0,2009-06-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +207,my_land,rural,8.003705378852825,0.1,0.0,20.0,2009-06-14,0.0,0.0,0.001040000000000002,0.0,0.0,0.0,0.0,0.0,17.107730844204976,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +208,my_land,urban,0.0,0.015,0.015,0.0,2009-06-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +209,my_land,rural,8.053705378852825,0.1,0.15,20.0,2009-06-15,0.0,0.0,0.001050000000000002,0.0,0.0,0.0,0.0,0.0,17.58362662964039,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 +210,my_land,urban,0.0,0.0,0.0,0.0,2009-06-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +211,my_land,rural,7.953705378852826,0.1,0.0,20.0,2009-06-16,0.0,0.0,0.0010600000000000021,0.0,0.0,0.0,0.0,0.0,17.46759618370505,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +212,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2009-06-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +213,my_land,rural,7.973705378852825,0.1,0.12,20.0,2009-06-17,0.0,0.0,0.0010700000000000022,0.0,0.0,0.0,0.0,0.0,17.279296613300197,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 +214,my_land,urban,0.0,0.0,0.0,0.0,2009-06-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, +215,my_land,rural,7.873705378852826,0.1,0.0,20.0,2009-06-18,0.0,0.0,0.0010800000000000022,0.0,0.0,0.0,0.0,0.0,17.081340649162527,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +216,my_land,urban,0.0,0.02,0.023,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, +217,my_land,rural,8.003705378852827,0.1,0.22999999999999998,20.0,2009-06-19,0.0,0.0,0.0010900000000000022,0.0,0.0,0.0,0.0,0.0,16.88434692045113,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 +218,my_land,urban,0.0,0.002,0.002,0.0,2009-06-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, +219,my_land,rural,7.923705378852826,0.1,0.02,20.0,2009-06-20,0.0,0.0,0.0011000000000000022,0.0,0.0,0.0,0.0,0.0,16.683757647556394,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +220,my_land,urban,0.0,0.001,0.001,0.0,2009-06-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, +221,my_land,rural,7.833705378852827,0.1,0.01,20.0,2009-06-21,0.0,0.0,0.0011100000000000023,0.0,0.0,0.0,0.0,0.0,16.484576850944553,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +222,my_land,urban,0.0,0.013,0.013,0.0,2009-06-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, +223,my_land,rural,7.863705378852827,0.1,0.13,20.0,2009-06-22,0.0,0.0,0.0011200000000000023,0.0,0.0,0.0,0.0,0.0,16.285960960815387,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +224,my_land,urban,0.0,0.0,0.0,0.0,2009-06-23,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, +225,my_land,rural,7.763705378852827,0.1,0.0,20.0,2009-06-23,0.0,0.0,0.0011300000000000023,0.0,0.0,0.0,0.0,0.0,16.750923692601926,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +226,my_land,urban,0.0,0.0,0.0,0.0,2009-06-24,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, +227,my_land,rural,7.6637053788528275,0.1,0.0,20.0,2009-06-24,0.0,0.0,0.0011400000000000023,0.0,0.0,0.0,0.0,0.0,17.299222606575242,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +228,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0,,,,, +229,my_land,rural,7.933705378852828,0.1,0.37,20.0,2009-06-25,0.0,0.0,0.0011500000000000024,0.0,0.0,0.0,0.0,0.0,17.866282733224903,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.5 +230,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2009-06-26,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +231,my_land,rural,8.333705378852828,0.1,0.5,20.0,2009-06-26,0.0,0.0,0.0011600000000000024,0.0,0.0,0.0,0.0,0.0,18.43128709343402,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 +232,my_land,urban,0.0,0.0040000000000000036,0.004,0.0,2009-06-27,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +233,my_land,rural,8.273705378852828,0.1,0.04,20.0,2009-06-27,0.0,0.0,0.0011700000000000024,0.0,0.0,0.0,0.0,0.0,18.979803741679255,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +234,my_land,urban,0.0,0.001,0.001,0.0,2009-06-28,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +235,my_land,rural,8.183705378852828,0.1,0.01,20.0,2009-06-28,0.0,0.0,0.0011800000000000024,0.0,0.0,0.0,0.0,0.0,19.538546895209908,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +236,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-06-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +237,my_land,rural,8.113705378852828,0.1,0.03,20.0,2009-06-29,0.0,0.0,0.0011900000000000025,0.0,0.0,0.0,0.0,0.0,20.09856836190124,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +238,my_land,urban,0.0,0.001,0.001,0.0,2009-06-30,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +239,my_land,rural,8.023705378852828,0.1,0.01,20.0,2009-06-30,0.0,0.0,0.0012000000000000025,0.0,0.0,0.0,0.0,0.0,19.983749617737658,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +240,my_land,urban,0.0,0.0,0.0,0.0,2009-07-01,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +241,my_land,rural,7.923705378852828,0.1,0.0,20.0,2009-07-01,0.0,0.0,0.0012100000000000025,0.0,0.0,0.0,0.0,0.0,19.78457584721721,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +242,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2009-07-02,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +243,my_land,rural,7.883705378852828,0.1,0.06,20.0,2009-07-02,0.0,0.0,0.0012200000000000025,0.0,0.0,0.0,0.0,0.0,19.574857698402152,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +244,my_land,urban,0.0,0.001,0.001,0.0,2009-07-03,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +245,my_land,rural,7.793705378852828,0.1,0.01,20.0,2009-07-03,0.0,0.0,0.0012300000000000026,0.0,0.0,0.0,0.0,0.0,19.36382149480027,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +246,my_land,urban,0.0,0.0,0.0,0.0,2009-07-04,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +247,my_land,rural,7.693705378852829,0.1,0.0,20.0,2009-07-04,0.0,0.0,0.0012400000000000026,0.0,0.0,0.0,0.0,0.0,19.152620541850034,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +248,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-07-05,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, +249,my_land,rural,7.623705378852828,0.1,0.03,20.0,2009-07-05,0.0,0.0,0.0012500000000000026,0.0,0.0,0.0,0.0,0.0,18.941398995231257,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +250,my_land,urban,0.0,0.02,0.025,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0,,,,, +251,my_land,rural,7.773705378852829,0.1,0.25,20.0,2009-07-06,0.0,0.0,0.0012600000000000027,0.0,0.0,0.0,0.0,0.0,18.73308999245058,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.5 +252,my_land,urban,0.049999999999999996,0.02,0.10999999999999999,0.0,2009-07-07,0.0,0.0,5.555555555555555e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, +253,my_land,rural,8.773705378852828,0.1,1.0999999999999999,20.0,2009-07-07,0.0,0.0,0.0012700000000000027,0.0,0.0,0.0,0.0,0.0,18.593309340316768,0.0,0.0,0.0,0.0,0.0,0.0,0.9999999999999999,0.5 +254,my_land,urban,0.0029999999999999957,0.02,0.013,0.0,2009-07-08,0.0,0.0,1.0852713178294554e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, +255,my_land,rural,8.803705378852827,0.1,0.13,20.0,2009-07-08,0.0,0.0,0.0012800000000000027,0.0,0.0,0.0,0.0,0.0,18.430037853433507,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +256,my_land,urban,0.0,0.0029999999999999957,0.0,0.0,2009-07-09,0.0,0.0,1.1085271317829455e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, +257,my_land,rural,8.703705378852828,0.1,0.0,20.0,2009-07-09,0.0,0.0,0.0012900000000000027,0.0,0.0,0.0,0.0,0.0,18.28054044917919,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +258,my_land,urban,0.0,0.008,0.008,0.0,2009-07-10,0.0,0.0,2.1085271317829452e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, +259,my_land,rural,8.683705378852828,0.1,0.08,20.0,2009-07-10,0.0,0.0,0.0013000000000000028,0.0,0.0,0.0,0.0,0.0,18.1332818386474,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 +260,my_land,urban,0.028000000000000004,0.02,0.08800000000000001,0.0,2009-07-11,0.0,0.0,1.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0,,,,, +261,my_land,rural,9.463705378852827,0.1,0.88,20.0,2009-07-11,0.0,0.0,0.0013100000000000028,0.0,0.0,0.0,0.0,0.0,17.9982496308566,0.0,0.0,0.0,0.0,0.0,0.0,0.78,0.5 +262,my_land,urban,0.0,0.02,0.013,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0,,,,, +263,my_land,rural,9.493705378852827,0.1,0.13,20.0,2009-07-12,0.0,0.0,0.0013200000000000028,0.0,0.0,0.0,0.0,0.0,17.841296285426136,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +264,my_land,urban,0.0,0.009,0.009,0.0,2009-07-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0,,,,, +265,my_land,rural,9.483705378852827,0.1,0.09,20.0,2009-07-13,0.0,0.0,0.0013300000000000028,0.0,0.0,0.0,0.0,0.0,17.692662035678268,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +266,my_land,urban,0.0,0.02,0.025,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0,,,,, +267,my_land,rural,9.633705378852827,0.1,0.25,20.0,2009-07-14,0.0,0.0,0.0013400000000000029,0.0,0.0,0.0,0.0,0.0,17.579851090800798,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.5 +268,my_land,urban,0.0,0.001,0.001,0.0,2009-07-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0,,,,, +269,my_land,rural,9.543705378852827,0.1,0.01,20.0,2009-07-15,0.0,0.0,0.0013500000000000029,0.0,0.0,0.0,0.0,0.0,17.467124241350103,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +270,my_land,urban,0.022000000000000006,0.02,0.082,0.0,2009-07-16,0.0,0.0,7.096774193548387e-07,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0,,,,, +271,my_land,rural,10.263705378852828,0.1,0.8200000000000001,20.0,2009-07-16,0.0,0.0,0.001360000000000003,0.0,0.0,0.0,0.0,0.0,17.366225561563404,0.0,0.0,0.0,0.0,0.0,0.0,0.7200000000000001,0.5 +272,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0,,,,, +273,my_land,rural,10.503705378852828,0.1,0.33999999999999997,20.0,2009-07-17,0.0,0.0,0.001370000000000003,0.0,0.0,0.0,0.0,0.0,17.250618516827572,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 +274,my_land,urban,0.0,0.015,0.015,0.0,2009-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0,,,,, +275,my_land,rural,10.553705378852829,0.1,0.15,20.0,2009-07-18,0.0,0.0,0.001380000000000003,0.0,0.0,0.0,0.0,0.0,17.137310142897398,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 +276,my_land,urban,0.005999999999999998,0.02,0.066,0.0,2009-07-19,0.0,0.0,2.6086956521739115e-07,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0,,,,, +277,my_land,rural,11.11370537885283,0.1,0.66,20.0,2009-07-19,0.0,0.0,0.001390000000000003,0.0,0.0,0.0,0.0,0.0,17.03265075518536,0.0,0.0,0.0,0.0,0.0,0.0,0.5599999999999999,0.5 +278,my_land,urban,0.03400000000000001,0.02,0.08800000000000001,0.0,2009-07-20,0.0,0.0,5.793184488836663e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0,,,,, +279,my_land,rural,11.893705378852829,0.1,0.88,20.0,2009-07-20,0.0,0.0,0.001400000000000003,0.0,0.0,0.0,0.0,0.0,16.92492118032061,0.0,0.0,0.0,0.0,0.0,0.0,0.78,0.5 +280,my_land,urban,0.028000000000000004,0.02,0.054000000000000006,0.0,2009-07-21,0.0,0.0,6.503075965991567e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0,,,,, +281,my_land,rural,12.333705378852828,0.1,0.54,20.0,2009-07-21,0.0,0.0,0.001410000000000003,0.0,0.0,0.0,0.0,0.0,16.881187260456155,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.5 +282,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0,,,,, +283,my_land,rural,12.263705378852828,0.1,0.03,20.0,2009-07-22,0.0,0.0,0.001420000000000003,0.0,0.0,0.0,0.0,0.0,16.84407698005702,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +284,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-07-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0,,,,, +285,my_land,rural,12.273705378852828,0.1,0.11,20.0,2009-07-23,0.0,0.0,0.001430000000000003,0.0,0.0,0.0,0.0,0.0,16.812764381382735,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 +286,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0,,,,, +287,my_land,rural,12.383705378852827,0.1,0.21,20.0,2009-07-24,0.0,0.0,0.0014400000000000031,0.0,0.0,0.0,0.0,0.0,16.783167813964948,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 +288,my_land,urban,0.0,0.001,0.001,0.0,2009-07-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0,,,,, +289,my_land,rural,12.293705378852827,0.1,0.01,20.0,2009-07-25,0.0,0.0,0.0014500000000000032,0.0,0.0,0.0,0.0,0.0,16.75146740424562,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +290,my_land,urban,0.012999999999999998,0.02,0.073,0.0,2009-07-26,0.0,0.0,4.90566037735849e-07,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0,,,,, +291,my_land,rural,12.923705378852828,0.1,0.73,20.0,2009-07-26,0.0,0.0,0.0014600000000000032,0.0,0.0,0.0,0.0,0.0,16.727325951198342,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.5 +292,my_land,urban,0.0,0.015999999999999997,0.0029999999999999996,0.0,2009-07-27,0.0,0.0,1.490566037735849e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0,,,,, +293,my_land,rural,12.853705378852828,0.1,0.03,20.0,2009-07-27,0.0,0.0,0.0014700000000000032,0.0,0.0,0.0,0.0,0.0,16.690915743899794,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +294,my_land,urban,0.0,0.004,0.004,0.0,2009-07-28,0.0,0.0,2.4905660377358487e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0,,,,, +295,my_land,rural,12.793705378852827,0.1,0.04,20.0,2009-07-28,0.0,0.0,0.0014800000000000032,0.0,0.0,0.0,0.0,0.0,16.693395717987475,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +296,my_land,urban,0.112,0.02,0.172,0.0,2009-07-29,0.0,0.0,2.571996027805362e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0,,,,, +297,my_land,rural,14.413705378852827,0.1,1.72,20.0,2009-07-29,0.0,0.0,0.0014900000000000033,0.0,0.0,0.0,0.0,0.0,16.716547211740295,0.0,0.0,0.0,0.0,0.0,0.0,1.6199999999999999,0.5 +298,my_land,urban,0.069,0.02,0.016999999999999998,0.0,2009-07-30,0.0,0.0,2.261171797418073e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0,,,,, +299,my_land,rural,14.483705378852827,0.1,0.16999999999999998,20.0,2009-07-30,0.0,0.0,0.0015000000000000033,0.0,0.0,0.0,0.0,0.0,16.711333685815475,0.0,0.0,0.0,0.0,0.0,0.0,0.06999999999999999,0.5 +300,my_land,urban,0.03200000000000001,0.02,0.023,0.0,2009-07-31,0.0,0.0,1.449409687741366e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0,,,,, +301,my_land,rural,14.613705378852828,0.1,0.22999999999999998,20.0,2009-07-31,0.0,0.0,0.0015100000000000033,0.0,0.0,0.0,0.0,0.0,16.718293973731498,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 +302,my_land,urban,0.013000000000000012,0.02,0.041,0.0,2009-08-01,0.0,0.0,6.007986026535429e-07,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0,,,,, +303,my_land,rural,14.923705378852828,0.1,0.41000000000000003,20.0,2009-08-01,0.0,0.0,0.0015200000000000033,0.0,0.0,0.0,0.0,0.0,16.727873402648324,0.0,0.0,0.0,0.0,0.0,0.0,0.31000000000000005,0.5 +304,my_land,urban,0.0,0.013000000000000012,0.0,0.0,2009-08-02,0.0,0.0,1.6007986026535429e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0,,,,, +305,my_land,rural,14.823705378852829,0.1,0.0,20.0,2009-08-02,0.0,0.0,0.0015300000000000034,0.0,0.0,0.0,0.0,0.0,16.733171675331043,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +306,my_land,urban,0.0,0.016,0.016,0.0,2009-08-03,0.0,0.0,2.600798602653543e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0,,,,, +307,my_land,rural,14.883705378852829,0.1,0.16,20.0,2009-08-03,0.0,0.0,0.0015400000000000034,0.0,0.0,0.0,0.0,0.0,16.741435860320767,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 +308,my_land,urban,0.157,0.02,0.217,0.0,2009-08-04,0.0,0.0,2.8696719828254125e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0,,,,, +309,my_land,rural,16.953705378852828,0.1,2.17,20.0,2009-08-04,0.0,0.0,0.0015500000000000034,0.0,0.0,0.0,0.0,0.0,16.766230108839046,0.0,0.0,0.0,0.0,0.0,0.0,2.07,0.5 +310,my_land,urban,0.10299999999999998,0.02,0.005999999999999999,0.0,2009-08-05,0.0,0.0,2.7872462533637584e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0,,,,, +311,my_land,rural,16.910726520569472,0.1,0.06,20.0,2009-08-05,0.0,0.0,0.0015600000000000034,0.0,0.0,0.0,0.0,0.0,16.81140376610488,0.0,0.0,0.0,0.0,0.0,0.0029788582833558063,-0.09957716566711614,0.5 +312,my_land,urban,0.228,0.02,0.185,0.0,2009-08-06,0.0,0.0,3.2219856185333465e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +313,my_land,rural,16.825724586084544,0.1,1.8499999999999999,20.0,2009-08-06,0.0,0.0,0.0014226087102049614,0.0,0.0,0.0,0.0,0.0,16.890065588583212,0.0,0.0,0.0,1.3074388783205093,0.4358129594401698,0.09175009672424628,-0.08500193448492573,0.5 +314,my_land,urban,0.168,0.02,0.0,0.0,2009-08-07,0.0,0.0,3.410065307276934e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +315,my_land,rural,16.725724586084542,0.1,0.0,20.0,2009-08-07,0.0,0.0,0.0014326087102049614,0.0,0.0,0.0,0.0,0.0,16.945633198572903,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +316,my_land,urban,0.10800000000000001,0.02,0.0,0.0,2009-08-08,0.0,0.0,3.218155764769655e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +317,my_land,rural,16.62572458608454,0.1,0.0,20.0,2009-08-08,0.0,0.0,0.0014426087102049614,0.0,0.0,0.0,0.0,0.0,17.011954152321614,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +318,my_land,urban,0.04800000000000001,0.02,0.0,0.0,2009-08-09,0.0,0.0,2.3008122353289026e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +319,my_land,rural,16.52572458608454,0.1,0.0,20.0,2009-08-09,0.0,0.0,0.0014526087102049614,0.0,0.0,0.0,0.0,0.0,17.079619266540202,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +320,my_land,urban,0.0,0.02,0.004,0.0,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +321,my_land,rural,16.463777063493325,0.1,0.04,20.0,2009-08-10,0.0,0.0,0.0014626087102049615,0.0,0.0,0.0,0.0,0.0,17.147452408317527,0.0,0.0,0.0,0.0,0.0,0.0019475225912147184,-0.09895045182429438,0.5 +322,my_land,urban,0.0,0.0,0.0,0.0,2009-08-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +323,my_land,rural,16.363777063493323,0.1,0.0,20.0,2009-08-11,0.0,0.0,0.0014726087102049615,0.0,0.0,0.0,0.0,0.0,17.249681551039693,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +324,my_land,urban,0.0,0.02,0.02,0.0,2009-08-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +325,my_land,rural,16.27205333961332,0.1,0.2,20.0,2009-08-12,0.0,0.0,0.0014661971648520322,0.0,0.0,0.0,0.0,0.0,17.357137673706635,0.0,0.0,0.0,0.13660315326450204,0.04553438442150068,0.009586186194000146,-0.09172372388000288,0.5 +326,my_land,urban,0.0,0.0,0.0,0.0,2009-08-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +327,my_land,rural,16.172053339613317,0.1,0.0,20.0,2009-08-13,0.0,0.0,0.0014761971648520323,0.0,0.0,0.0,0.0,0.0,17.463392209213332,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +328,my_land,urban,0.0,0.0,0.0,0.0,2009-08-14,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +329,my_land,rural,16.072053339613316,0.1,0.0,20.0,2009-08-14,0.0,0.0,0.0014861971648520323,0.0,0.0,0.0,0.0,0.0,17.57042402615167,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +330,my_land,urban,0.0,0.0,0.0,0.0,2009-08-15,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +331,my_land,rural,15.972053339613316,0.1,0.0,20.0,2009-08-15,0.0,0.0,0.0014961971648520323,0.0,0.0,0.0,0.0,0.0,17.67755300326896,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +332,my_land,urban,0.0,0.0,0.0,0.0,2009-08-16,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +333,my_land,rural,15.872053339613316,0.1,0.0,20.0,2009-08-16,0.0,0.0,0.0015061971648520323,0.0,0.0,0.0,0.0,0.0,17.784694125408624,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +334,my_land,urban,0.0,0.0,0.0,0.0,2009-08-17,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +335,my_land,rural,15.772053339613317,0.1,0.0,20.0,2009-08-17,0.0,0.0,0.0015161971648520324,0.0,0.0,0.0,0.0,0.0,17.891836765676082,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +336,my_land,urban,0.0,0.0,0.0,0.0,2009-08-18,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +337,my_land,rural,15.672053339613317,0.1,0.0,20.0,2009-08-18,0.0,0.0,0.0015261971648520324,0.0,0.0,0.0,0.0,0.0,17.846301023209513,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +338,my_land,urban,0.0,0.001,0.001,0.0,2009-08-19,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +339,my_land,rural,15.581671395856217,0.1,0.01,20.0,2009-08-19,0.0,0.0,0.0015361971648520324,0.0,0.0,0.0,0.0,0.0,17.78168048290119,0.0,0.0,0.0,0.0,0.0,0.00038194375709914904,-0.09763887514198298,0.5 +340,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-08-20,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, +341,my_land,rural,15.510606878991204,0.1,0.03,20.0,2009-08-20,0.0,0.0,0.0015461971648520324,0.0,0.0,0.0,0.0,0.0,17.71467434286265,0.0,0.0,0.0,0.0,0.0,0.0010645168650119724,-0.09129033730023946,0.5 +342,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2009-08-21,0.0,0.0,-1.6940658945086007e-21,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, +343,my_land,rural,15.570663698314464,0.1,0.47000000000000003,20.0,2009-08-21,0.0,0.0,0.001527315167048624,0.0,0.0,0.0,0.0,0.0,17.65071067082799,0.0,0.0,0.0,0.22083451623217662,0.07361150541072554,0.015497159033836957,0.06005681932326089,0.5 +344,my_land,urban,0.0,-6.938893903907228e-18,0.0,0.0,2009-08-22,0.0,0.0,9.999999999999983e-07,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, +345,my_land,rural,15.470663698314464,0.1,0.0,20.0,2009-08-22,0.0,0.0,0.001537315167048624,0.0,0.0,0.0,0.0,0.0,17.5804459788535,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +346,my_land,urban,0.0,0.0,0.0,0.0,2009-08-23,0.0,0.0,1.9999999999999982e-06,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, +347,my_land,rural,15.370663698314464,0.1,0.0,20.0,2009-08-23,0.0,0.0,0.0015473151670486241,0.0,0.0,0.0,0.0,0.0,17.51273431985669,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +348,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-08-24,0.0,0.0,2.9999999999999984e-06,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, +349,my_land,rural,15.299858048461077,0.1,0.03,20.0,2009-08-24,0.0,0.0,0.0015573151670486242,0.0,0.0,0.0,0.0,0.0,17.445341789982088,0.0,0.0,0.0,0.0,0.0,0.0008056498533867156,-0.08611299706773431,0.5 +350,my_land,urban,0.0,0.02,0.023,0.0,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0,,,,, +351,my_land,rural,15.323776945035684,0.1,0.22999999999999998,20.0,2009-08-25,0.0,0.0,0.0015570750397627532,0.0,0.0,0.0,0.0,0.0,17.25875225956068,0.0,0.0,0.0,0.07558278619059165,0.02519426206353055,0.005304055171269591,0.023918896574608182,0.5 +352,my_land,urban,0.0,0.02,0.028,0.0,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0,,,,, +353,my_land,rural,15.367131063841644,0.1,0.27999999999999997,20.0,2009-08-26,0.0,0.0,0.0015539480888184277,0.0,0.0,0.0,0.0,0.0,17.05657154204868,0.0,0.0,0.0,0.097360190350754,0.032453396783584665,0.006832294059702034,0.0433541188059593,0.5 +354,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-08-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0,,,,, +355,my_land,rural,15.296330730788169,0.1,0.03,20.0,2009-08-27,0.0,0.0,0.0015639480888184278,0.0,0.0,0.0,0.0,0.0,16.850821440256084,0.0,0.0,0.0,0.0,0.0,0.0008003330534751417,-0.08600666106950285,0.5 +356,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, +357,my_land,rural,15.315754400379888,0.1,0.22,20.0,2009-08-28,0.0,0.0,0.0015641898719129545,0.0,0.0,0.0,0.0,0.0,16.64674602120785,0.0,0.0,0.0,0.07166063541590141,0.023886878471967136,0.005028816520414135,0.019423669591717325,0.5 +358,my_land,urban,0.0,0.0,0.0,0.0,2009-08-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, +359,my_land,rural,15.215754400379888,0.1,0.0,20.0,2009-08-29,0.0,0.0,0.0015741898719129545,0.0,0.0,0.0,0.0,0.0,16.441259922650982,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +360,my_land,urban,0.0,0.002,0.002,0.0,2009-08-30,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, +361,my_land,rural,15.13539773158498,0.1,0.02,20.0,2009-08-30,0.0,0.0,0.0015841898719129545,0.0,0.0,0.0,0.0,0.0,16.236407492831376,0.0,0.0,0.0,0.0,0.0,0.00035666879490721187,-0.08713337589814424,0.5 +362,my_land,urban,0.0,0.001,0.001,0.0,2009-08-31,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, +363,my_land,rural,15.045277696363524,0.1,0.01,20.0,2009-08-31,0.0,0.0,0.0015941898719129546,0.0,0.0,0.0,0.0,0.0,16.031634271603924,0.0,0.0,0.0,0.0,0.0,0.0001200352214565932,-0.09240070442913186,0.5 +364,my_land,urban,0.011000000000000003,0.02,0.07100000000000001,0.0,2009-09-01,0.0,0.0,8.627450980392156e-07,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0,,,,, +365,my_land,rural,15.593541080746418,0.1,0.7100000000000001,20.0,2009-09-01,0.0,0.0,0.0015981788673429123,0.0,0.0,0.0,0.0,0.0,15.830420094945344,0.0,0.0,0.0,0.04398733862718857,0.014662446209062858,0.0030868307808553388,0.5482633843828932,0.5 +366,my_land,urban,0.037999999999999985,0.02,0.087,0.0,2009-09-02,0.0,0.0,9.074912016088485e-07,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +367,my_land,rural,15.739417265406848,0.1,0.8699999999999999,20.0,2009-09-02,0.0,0.0,0.0015497966702880492,0.0,0.0,0.0,0.0,0.0,15.62647993052362,0.0,0.0,0.0,0.44468821842944245,0.14822940614314747,0.03120619076697842,0.14587618466043156,0.5 +368,my_land,urban,0.0,0.02,0.008,0.0,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +369,my_land,rural,15.716224593340074,0.1,0.08,20.0,2009-09-03,0.0,0.0,0.0015597966702880493,0.0,0.0,0.0,0.0,0.0,15.522059991315455,0.0,0.0,0.0,0.0,0.0,0.0031926720667744325,-0.08385344133548865,0.5 +370,my_land,urban,0.0,0.0,0.0,0.0,2009-09-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +371,my_land,rural,15.616224593340075,0.1,0.0,20.0,2009-09-04,0.0,0.0,0.0015697966702880493,0.0,0.0,0.0,0.0,0.0,15.434007498914434,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +372,my_land,urban,0.0,0.0,0.0,0.0,2009-09-05,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +373,my_land,rural,15.516224593340075,0.1,0.0,20.0,2009-09-05,0.0,0.0,0.0015797966702880493,0.0,0.0,0.0,0.0,0.0,15.348000937364306,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +374,my_land,urban,0.0,0.0,0.0,0.0,2009-09-06,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +375,my_land,rural,15.416224593340075,0.1,0.0,20.0,2009-09-06,0.0,0.0,0.0015897966702880493,0.0,0.0,0.0,0.0,0.0,15.262250117170538,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +376,my_land,urban,0.0,0.001,0.001,0.0,2009-09-07,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +377,my_land,rural,15.325934247393072,0.1,0.01,20.0,2009-09-07,0.0,0.0,0.0015997966702880494,0.0,0.0,0.0,0.0,0.0,15.176531264646316,0.0,0.0,0.0,0.0,0.0,0.00029034594700315093,-0.09580691894006302,0.5 +378,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-09-08,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +379,my_land,rural,15.255198680330201,0.1,0.03,20.0,2009-09-08,0.0,0.0,0.0016097966702880494,0.0,0.0,0.0,0.0,0.0,15.22206640808079,0.0,0.0,0.0,0.0,0.0,0.0007355670628696025,-0.08471134125739206,0.5 +380,my_land,urban,0.0,0.0,0.0,0.0,2009-09-09,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +381,my_land,rural,15.155198680330201,0.1,0.0,20.0,2009-09-09,0.0,0.0,0.0016197966702880494,0.0,0.0,0.0,0.0,0.0,15.2840083010101,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +382,my_land,urban,0.0,0.0,0.0,0.0,2009-09-10,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +383,my_land,rural,15.055198680330202,0.1,0.0,20.0,2009-09-10,0.0,0.0,0.0016297966702880494,0.0,0.0,0.0,0.0,0.0,15.348001037626263,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +384,my_land,urban,0.0,0.0,0.0,0.0,2009-09-11,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +385,my_land,rural,14.955198680330202,0.1,0.0,20.0,2009-09-11,0.0,0.0,0.0016397966702880495,0.0,0.0,0.0,0.0,0.0,15.412250129703283,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +386,my_land,urban,0.0,0.0,0.0,0.0,2009-09-12,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +387,my_land,rural,14.855198680330203,0.1,0.0,20.0,2009-09-12,0.0,0.0,0.0016497966702880495,0.0,0.0,0.0,0.0,0.0,15.476531266212909,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +388,my_land,urban,0.0,0.0,0.0,0.0,2009-09-13,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +389,my_land,rural,14.755198680330203,0.1,0.0,20.0,2009-09-13,0.0,0.0,0.0016597966702880495,0.0,0.0,0.0,0.0,0.0,15.540816408276616,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +390,my_land,urban,0.0,0.0,0.0,0.0,2009-09-14,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +391,my_land,rural,14.655198680330203,0.1,0.0,20.0,2009-09-14,0.0,0.0,0.0016697966702880495,0.0,0.0,0.0,0.0,0.0,15.605102051034578,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +392,my_land,urban,0.0,0.0,0.0,0.0,2009-09-15,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +393,my_land,rural,14.555198680330204,0.1,0.0,20.0,2009-09-15,0.0,0.0,0.0016797966702880496,0.0,0.0,0.0,0.0,0.0,15.669387756379324,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +394,my_land,urban,0.0,0.0,0.0,0.0,2009-09-16,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +395,my_land,rural,14.455198680330204,0.1,0.0,20.0,2009-09-16,0.0,0.0,0.0016897966702880496,0.0,0.0,0.0,0.0,0.0,15.714923469547418,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +396,my_land,urban,0.0,0.0,0.0,0.0,2009-09-17,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +397,my_land,rural,14.355198680330204,0.1,0.0,20.0,2009-09-17,0.0,0.0,0.0016997966702880496,0.0,0.0,0.0,0.0,0.0,15.758115433693428,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +398,my_land,urban,0.0,0.0,0.0,0.0,2009-09-18,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +399,my_land,rural,14.255198680330205,0.1,0.0,20.0,2009-09-18,0.0,0.0,0.0017097966702880496,0.0,0.0,0.0,0.0,0.0,15.801014429211678,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +400,my_land,urban,0.0,0.0,0.0,0.0,2009-09-19,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +401,my_land,rural,14.155198680330205,0.1,0.0,20.0,2009-09-19,0.0,0.0,0.0017197966702880497,0.0,0.0,0.0,0.0,0.0,15.843876803651458,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +402,my_land,urban,0.0,0.0,0.0,0.0,2009-09-20,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +403,my_land,rural,14.055198680330205,0.1,0.0,20.0,2009-09-20,0.0,0.0,0.0017297966702880497,0.0,0.0,0.0,0.0,0.0,15.886734600456435,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +404,my_land,urban,0.0,0.0,0.0,0.0,2009-09-21,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +405,my_land,rural,13.955198680330206,0.1,0.0,20.0,2009-09-21,0.0,0.0,0.0017397966702880497,0.0,0.0,0.0,0.0,0.0,15.929591825057056,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +406,my_land,urban,0.0,0.001,0.001,0.0,2009-09-22,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +407,my_land,rural,13.865198680330206,0.1,0.01,20.0,2009-09-22,0.0,0.0,0.0017497966702880498,0.0,0.0,0.0,0.0,0.0,15.972448978132133,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +408,my_land,urban,0.0,0.0,0.0,0.0,2009-09-23,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +409,my_land,rural,13.765198680330206,0.1,0.0,20.0,2009-09-23,0.0,0.0,0.0017597966702880498,0.0,0.0,0.0,0.0,0.0,16.02334183976652,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +410,my_land,urban,0.0,0.0,0.0,0.0,2009-09-24,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +411,my_land,rural,13.665198680330207,0.1,0.0,20.0,2009-09-24,0.0,0.0,0.0017697966702880498,0.0,0.0,0.0,0.0,0.0,16.07523915747082,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +412,my_land,urban,0.0,0.0,0.0,0.0,2009-09-25,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +413,my_land,rural,13.565198680330207,0.1,0.0,20.0,2009-09-25,0.0,0.0,0.0017797966702880498,0.0,0.0,0.0,0.0,0.0,16.127262039683853,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +414,my_land,urban,0.0,0.0,0.0,0.0,2009-09-26,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +415,my_land,rural,13.465198680330207,0.1,0.0,20.0,2009-09-26,0.0,0.0,0.0017897966702880499,0.0,0.0,0.0,0.0,0.0,16.17930060996048,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +416,my_land,urban,0.0,0.0,0.0,0.0,2009-09-27,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +417,my_land,rural,13.365198680330208,0.1,0.0,20.0,2009-09-27,0.0,0.0,0.0017997966702880499,0.0,0.0,0.0,0.0,0.0,16.231341148745063,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +418,my_land,urban,0.0,0.0,0.0,0.0,2009-09-28,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +419,my_land,rural,13.265198680330208,0.1,0.0,20.0,2009-09-28,0.0,0.0,0.00180979667028805,0.0,0.0,0.0,0.0,0.0,16.283381926093135,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +420,my_land,urban,0.0,0.0,0.0,0.0,2009-09-29,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +421,my_land,rural,13.165198680330208,0.1,0.0,20.0,2009-09-29,0.0,0.0,0.00181979667028805,0.0,0.0,0.0,0.0,0.0,16.335422740761643,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +422,my_land,urban,0.0,0.001,0.001,0.0,2009-09-30,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +423,my_land,rural,13.075198680330208,0.1,0.01,20.0,2009-09-30,0.0,0.0,0.00182979667028805,0.0,0.0,0.0,0.0,0.0,15.988802845095208,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +424,my_land,urban,0.0,0.0,0.0,0.0,2009-10-01,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +425,my_land,rural,12.975198680330209,0.1,0.0,20.0,2009-10-01,0.0,0.0,0.00183979667028805,0.0,0.0,0.0,0.0,0.0,15.5923503531369,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +426,my_land,urban,0.0,0.002,0.002,0.0,2009-10-02,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +427,my_land,rural,12.895198680330209,0.1,0.02,20.0,2009-10-02,0.0,0.0,0.00184979667028805,0.0,0.0,0.0,0.0,0.0,15.189668794142113,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +428,my_land,urban,0.0,0.007,0.007,0.0,2009-10-03,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +429,my_land,rural,12.86519868033021,0.1,0.06999999999999999,20.0,2009-10-03,0.0,0.0,0.00185979667028805,0.0,0.0,0.0,0.0,0.0,14.786208601767765,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 +430,my_land,urban,0.0,0.0,0.0,0.0,2009-10-04,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, +431,my_land,rural,12.76519868033021,0.1,0.0,20.0,2009-10-04,0.0,0.0,0.00186979667028805,0.0,0.0,0.0,0.0,0.0,14.382651072720972,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +432,my_land,urban,0.0,0.02,0.043,0.0,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0,,,,, +433,my_land,rural,13.09519868033021,0.1,0.43,20.0,2009-10-05,0.0,0.0,0.00187979667028805,0.0,0.0,0.0,0.0,0.0,13.97968728503473,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.5 +434,my_land,urban,0.0,0.02,0.059,0.0,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0,,,,, +435,my_land,rural,13.58519868033021,0.1,0.59,20.0,2009-10-06,0.0,0.0,0.0018897966702880501,0.0,0.0,0.0,0.0,0.0,13.858301908590894,0.0,0.0,0.0,0.0,0.0,0.0,0.49,0.5 +436,my_land,urban,0.0,0.02,0.06,0.0,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, +437,my_land,rural,14.08519868033021,0.1,0.6,20.0,2009-10-07,0.0,0.0,0.0018997966702880501,0.0,0.0,0.0,0.0,0.0,13.770545706779874,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.5 +438,my_land,urban,0.0,0.0,0.0,0.0,2009-10-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, +439,my_land,rural,13.98519868033021,0.1,0.0,20.0,2009-10-08,0.0,0.0,0.0019097966702880502,0.0,0.0,0.0,0.0,0.0,13.684599463347485,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +440,my_land,urban,0.0,0.009,0.009,0.0,2009-10-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, +441,my_land,rural,13.97519868033021,0.1,0.09,20.0,2009-10-09,0.0,0.0,0.0019197966702880502,0.0,0.0,0.0,0.0,0.0,13.601199932918437,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +442,my_land,urban,0.0,0.0,0.0,0.0,2009-10-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, +443,my_land,rural,13.875198680330211,0.1,0.0,20.0,2009-10-10,0.0,0.0,0.0019297966702880502,0.0,0.0,0.0,0.0,0.0,13.518118741614805,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +444,my_land,urban,0.0,0.02,0.04,0.0,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +445,my_land,rural,14.175198680330212,0.1,0.4,20.0,2009-10-11,0.0,0.0,0.0019397966702880502,0.0,0.0,0.0,0.0,0.0,13.436335608818023,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.5 +446,my_land,urban,0.0,0.0,0.0,0.0,2009-10-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +447,my_land,rural,14.075198680330212,0.1,0.0,20.0,2009-10-12,0.0,0.0,0.0019497966702880503,0.0,0.0,0.0,0.0,0.0,13.352198201102253,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +448,my_land,urban,0.0,0.0,0.0,0.0,2009-10-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +449,my_land,rural,13.975198680330212,0.1,0.0,20.0,2009-10-13,0.0,0.0,0.00195979667028805,0.0,0.0,0.0,0.0,0.0,13.269024775137781,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +450,my_land,urban,0.0,0.0,0.0,0.0,2009-10-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +451,my_land,rural,13.875198680330213,0.1,0.0,20.0,2009-10-14,0.0,0.0,0.00196979667028805,0.0,0.0,0.0,0.0,0.0,12.998806669392224,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +452,my_land,urban,0.0,0.016,0.016,0.0,2009-10-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +453,my_land,rural,13.935198680330213,0.1,0.16,20.0,2009-10-15,0.0,0.0,0.00197979667028805,0.0,0.0,0.0,0.0,0.0,12.705266285803207,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 +454,my_land,urban,0.0,0.0,0.0,0.0,2009-10-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +455,my_land,rural,13.835198680330214,0.1,0.0,20.0,2009-10-16,0.0,0.0,0.00198979667028805,0.0,0.0,0.0,0.0,0.0,12.408694003225401,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +456,my_land,urban,0.0,0.0,0.0,0.0,2009-10-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +457,my_land,rural,13.735198680330214,0.1,0.0,20.0,2009-10-17,0.0,0.0,0.00199979667028805,0.0,0.0,0.0,0.0,0.0,12.111801032903175,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +458,my_land,urban,0.0,0.0,0.0,0.0,2009-10-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +459,my_land,rural,13.635198680330214,0.1,0.0,20.0,2009-10-18,0.0,0.0,0.00200979667028805,0.0,0.0,0.0,0.0,0.0,11.814867984112897,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +460,my_land,urban,0.0,0.004,0.004,0.0,2009-10-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, +461,my_land,rural,13.575198680330214,0.1,0.04,20.0,2009-10-19,0.0,0.0,0.0020197966702880502,0.0,0.0,0.0,0.0,0.0,11.517929925514114,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +462,my_land,urban,0.0,0.02,0.053,0.0,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0,,,,, +463,my_land,rural,14.005198680330214,0.1,0.53,20.0,2009-10-20,0.0,0.0,0.0020297966702880503,0.0,0.0,0.0,0.0,0.0,11.220442695561722,0.0,0.0,0.0,0.0,0.0,0.0,0.43,0.5 +464,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-10-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0,,,,, +465,my_land,rural,13.935198680330213,0.1,0.03,20.0,2009-10-21,0.0,0.0,0.0020397966702880503,0.0,0.0,0.0,0.0,0.0,11.532019619445217,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +466,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0,,,,, +467,my_land,rural,14.175198680330213,0.1,0.33999999999999997,20.0,2009-10-22,0.0,0.0,0.0020497966702880503,0.0,0.0,0.0,0.0,0.0,11.920813915928418,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 +468,my_land,urban,0.0,0.02,0.039,0.0,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0,,,,, +469,my_land,rural,14.465198680330213,0.1,0.38999999999999996,20.0,2009-10-23,0.0,0.0,0.0020597966702880503,0.0,0.0,0.0,0.0,0.0,12.318117297230998,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.5 +470,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0,,,,, +471,my_land,rural,14.635198680330213,0.1,0.27,20.0,2009-10-24,0.0,0.0,0.0020697966702880504,0.0,0.0,0.0,0.0,0.0,12.71519895300499,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.5 +472,my_land,urban,0.0,0.009,0.009,0.0,2009-10-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0,,,,, +473,my_land,rural,14.625198680330213,0.1,0.09,20.0,2009-10-25,0.0,0.0,0.0020797966702880504,0.0,0.0,0.0,0.0,0.0,13.111721296625626,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +474,my_land,urban,1.734723475976807e-18,0.02,0.033,0.0,2009-10-26,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, +475,my_land,rural,14.855198680330213,0.1,0.33,20.0,2009-10-26,0.0,0.0,0.0020897966702880504,0.0,0.0,0.0,0.0,0.0,13.511531047548925,0.0,0.0,0.0,0.0,0.0,0.0,0.22999999999999998,0.5 +476,my_land,urban,0.0,1.734723475976807e-18,0.0,0.0,2009-10-27,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, +477,my_land,rural,14.755198680330214,0.1,0.0,20.0,2009-10-27,0.0,0.0,0.0020997966702880505,0.0,0.0,0.0,0.0,0.0,13.907691380943618,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +478,my_land,urban,0.0,0.0,0.0,0.0,2009-10-28,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, +479,my_land,rural,14.655198680330214,0.1,0.0,20.0,2009-10-28,0.0,0.0,0.0021097966702880505,0.0,0.0,0.0,0.0,0.0,13.831318567617952,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +480,my_land,urban,0.0,0.0,0.0,0.0,2009-10-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, +481,my_land,rural,14.555198680330214,0.1,0.0,20.0,2009-10-29,0.0,0.0,0.0021197966702880505,0.0,0.0,0.0,0.0,0.0,13.695879103452244,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +482,my_land,urban,0.012999999999999998,0.02,0.073,0.0,2009-10-30,0.0,0.0,9.81132075471698e-07,0.0,0.0,0.0,0.0,0.0,14.12142857,0.0,0.0,0.0,,,,, +483,my_land,rural,15.185198680330215,0.1,0.73,20.0,2009-10-30,0.0,0.0,0.0021297966702880505,0.0,0.0,0.0,0.0,0.0,13.555263202624522,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.5 +484,my_land,urban,0.013999999999999999,0.02,0.061000000000000006,0.0,2009-10-31,0.0,0.0,5.136268343815513e-07,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0,,,,, +485,my_land,rural,15.503427061151035,0.1,0.61,20.0,2009-10-31,0.0,0.0,0.002114943658126145,0.0,0.0,0.0,0.0,0.0,13.41117485530103,0.0,0.0,0.0,0.1366372786651656,0.045545759555055194,0.00958858095895899,0.3182283808208203,0.5 +486,my_land,urban,0.008,0.02,0.054000000000000006,0.0,2009-11-01,0.0,0.0,2.5227113906359176e-07,0.0,0.0,0.0,0.0,0.0,13.846458887731481,0.0,0.0,0.0,,,,, +487,my_land,rural,15.590284392203404,0.1,0.54,20.0,2009-11-01,0.0,0.0,0.0020801804935011055,0.0,0.0,0.0,0.0,0.0,13.26692414749831,0.0,0.0,0.0,0.25161415162518674,0.08387138387506224,0.017657133447381526,0.08685733105236954,0.5 +488,my_land,urban,0.0020000000000000018,0.02,0.054000000000000006,0.0,2009-11-02,0.0,0.0,5.963195900302817e-08,0.0,0.0,0.0,0.0,0.0,13.661400330044092,0.0,0.0,0.0,,,,, +489,my_land,rural,15.644028872991731,0.1,0.54,20.0,2009-11-02,0.0,0.0,0.0020422773067015534,0.0,0.0,0.0,0.0,0.0,13.122910966093576,0.0,0.0,0.0,0.2752070574383171,0.09173568581277236,0.019312775960583655,0.053744480788326915,0.5 +490,my_land,urban,0.0,0.02,0.056,0.0,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0,,,,, +491,my_land,rural,15.685067446875463,0.1,0.5599999999999999,20.0,2009-11-03,0.0,0.0,0.002001488916969903,0.0,0.0,0.0,0.0,0.0,12.978980020964524,0.0,0.0,0.0,0.29851001610784034,0.09950333870261344,0.02094807130581336,0.04103857388373282,0.5 +492,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0,,,,, +493,my_land,rural,15.635471185843787,0.1,0.22,20.0,2009-11-04,0.0,0.0,0.001990972843690913,0.0,0.0,0.0,0.0,0.0,12.61970932795122,0.0,0.0,0.0,0.12083733598506866,0.04027911199502288,0.008479813051583766,-0.049596261031675304,0.5 +494,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-11-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0,,,,, +495,my_land,rural,15.563724297892488,0.1,0.11,20.0,2009-11-05,0.0,0.0,0.001991038004211257,0.0,0.0,0.0,0.0,0.0,12.234602889597504,0.0,0.0,0.0,0.05824465766530041,0.019414885888433472,0.004087344397564942,-0.07174688795129883,0.5 +496,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0,,,,, +497,my_land,rural,15.527214182301073,0.1,0.21,20.0,2009-11-06,0.0,0.0,0.001983260230420957,0.0,0.0,0.0,0.0,0.0,11.846170596175472,0.0,0.0,0.0,0.1043884573588825,0.03479615245296084,0.0073255057795707035,-0.03651011559141408,0.5 +498,my_land,urban,0.0,0.005,0.005,0.0,2009-11-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0,,,,, +499,my_land,rural,15.47553457348977,0.1,0.05,20.0,2009-11-07,0.0,0.0,0.0019932602304209572,0.0,0.0,0.0,0.0,0.0,11.457557042021934,0.0,0.0,0.0,0.0,0.0,0.001679608811304119,-0.08359217622608238,0.5 +500,my_land,urban,0.0,0.008,0.008,0.0,2009-11-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0,,,,, +501,my_land,rural,15.453006996809986,0.1,0.08,20.0,2009-11-08,0.0,0.0,0.0020032602304209573,0.0,0.0,0.0,0.0,0.0,11.068801775252744,0.0,0.0,0.0,0.0,0.0,0.0025275766797837437,-0.07055153359567487,0.5 +502,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0,,,,, +503,my_land,rural,15.457456548440684,0.1,0.27,20.0,2009-11-09,0.0,0.0,0.0019929824966531044,0.0,0.0,0.0,0.0,0.0,10.679588321722832,0.0,0.0,0.0,0.11795469446312715,0.03931823148770905,0.008277522418465064,0.004449551630698748,0.5 +504,my_land,urban,0.0,0.015,0.015,0.0,2009-11-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0,,,,, +505,my_land,rural,15.414918731056288,0.1,0.15,20.0,2009-11-10,0.0,0.0,0.0019916243090858134,0.0,0.0,0.0,0.0,0.0,10.291050523446158,0.0,0.0,0.0,0.06593319488638257,0.021977731628794187,0.00462689086921983,-0.04253781738439658,0.5 +506,my_land,urban,0.0,0.02,0.039,0.0,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0,,,,, +507,my_land,rural,15.478915367791325,0.1,0.38999999999999996,20.0,2009-11-11,0.0,0.0,0.0019742402400241294,0.0,0.0,0.0,0.0,0.0,10.167373700677684,0.0,0.0,0.0,0.16102739632628632,0.053675798775428774,0.011300168163248163,0.06399663673503672,0.5 +508,my_land,urban,0.053,0.02,0.11299999999999999,0.0,2009-11-12,0.0,0.0,5.698924731182795e-07,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0,,,,, +509,my_land,rural,15.791777231561056,0.1,1.13,20.0,2009-11-12,0.0,0.0,0.001902177420093762,0.0,0.0,0.0,0.0,0.0,10.076474872675332,0.0,0.0,0.0,0.5109609220640651,0.17032030735468837,0.035856906811513344,0.31286186376973324,0.5 +510,my_land,urban,0.13999999999999999,0.02,0.147,0.0,2009-11-13,0.0,0.0,1.221027479091995e-06,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0,,,,, +511,my_land,rural,15.95396021982234,0.1,1.47,20.0,2009-11-13,0.0,0.0,0.0017838789098033748,0.0,0.0,0.0,0.0,0.0,9.98983800200603,0.0,0.0,0.0,0.8605696208638338,0.2868565402879446,0.060390850586935704,0.16218298826128597,0.5 +512,my_land,urban,0.12599999999999997,0.02,0.046,0.0,2009-11-14,0.0,0.0,1.6858401347324782e-06,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0,,,,, +513,my_land,rural,15.909341025836387,0.1,0.45999999999999996,20.0,2009-11-14,0.0,0.0,0.0017515591967619307,0.0,0.0,0.0,0.0,0.0,9.90468041425231,0.0,0.0,0.0,0.2882911757149913,0.09609705857166376,0.020230959699297637,-0.04461919398595273,0.5 +514,my_land,urban,0.10699999999999996,0.02,0.041,0.0,2009-11-15,0.0,0.0,1.9549992817440487e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, +515,my_land,rural,15.864423896462473,0.1,0.41000000000000003,20.0,2009-11-15,0.0,0.0,0.0017248994018182152,0.0,0.0,0.0,0.0,0.0,9.819042645092537,0.0,0.0,0.0,0.2528784546789132,0.0842928182263044,0.017745856468695663,-0.04491712937391319,0.5 +516,my_land,urban,0.05299999999999996,0.02,0.005999999999999999,0.0,2009-11-16,0.0,0.0,1.6840318487358552e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, +517,my_land,rural,15.821873449962538,0.1,0.06,20.0,2009-11-16,0.0,0.0,0.0017348994018182152,0.0,0.0,0.0,0.0,0.0,9.733630330636569,0.0,0.0,0.0,0.0,0.0,0.0025504464999337043,-0.09100892999867409,0.5 +518,my_land,urban,0.0,0.019999999999999997,0.002,0.0,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, +519,my_land,rural,15.741039452932181,0.1,0.02,20.0,2009-11-17,0.0,0.0,0.0017448994018182153,0.0,0.0,0.0,0.0,0.0,9.64795379132957,0.0,0.0,0.0,0.0,0.0,0.0008339970303573862,-0.09667994060714773,0.5 +520,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-11-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, +521,my_land,rural,15.669841050188037,0.1,0.03,20.0,2009-11-18,0.0,0.0,0.0017548994018182153,0.0,0.0,0.0,0.0,0.0,9.664029938416197,0.0,0.0,0.0,0.0,0.0,0.0011984027441448166,-0.09396805488289635,0.5 +522,my_land,urban,3.469446951953614e-18,0.02,0.046,0.0,2009-11-19,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0,,,,, +523,my_land,rural,15.67900925630948,0.1,0.45999999999999996,20.0,2009-11-19,0.0,0.0,0.0017281636610553968,0.0,0.0,0.0,0.0,0.0,9.692778115034487,0.0,0.0,0.0,0.24996765313847333,0.08332255104615777,0.017541589693927953,0.009168206121440946,0.5 +524,my_land,urban,0.0,0.008000000000000004,0.008,0.0,2009-11-20,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0,,,,, +525,my_land,rural,15.655938636278245,0.1,0.08,20.0,2009-11-20,0.0,0.0,0.0017381636610553969,0.0,0.0,0.0,0.0,0.0,9.723204407129312,0.0,0.0,0.0,0.0,0.0,0.0030706200312338133,-0.08141240062467626,0.5 +526,my_land,urban,0.052,0.02,0.112,0.0,2009-11-21,0.0,0.0,1.1304347826086956e-06,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0,,,,, +527,my_land,rural,15.830397646932658,0.1,1.1199999999999999,20.0,2009-11-21,0.0,0.0,0.0016637422711766414,0.0,0.0,0.0,0.0,0.0,9.753754119265754,0.0,0.0,0.0,0.6024479549087313,0.2008159849695771,0.042277049467279386,0.17445901065441233,0.5 +528,my_land,urban,0.12,0.02,0.128,0.0,2009-11-22,0.0,0.0,1.5978260869565219e-06,0.0,0.0,0.0,0.0,0.0,9.741964286049999,0.0,0.0,0.0,,,,, +529,my_land,rural,15.93858594626796,0.1,1.28,20.0,2009-11-22,0.0,0.0,0.0015732375171615823,0.0,0.0,0.0,0.0,0.0,9.784396319686051,0.0,0.0,0.0,0.763665836723597,0.25455527890786567,0.05359058503323488,0.10818829933530258,0.5 +530,my_land,urban,0.097,0.02,0.037000000000000005,0.0,2009-11-23,0.0,0.0,1.839336718502063e-06,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0,,,,, +531,my_land,rural,15.884853267270634,0.1,0.37,20.0,2009-11-23,0.0,0.0,0.0015531667149671605,0.0,0.0,0.0,0.0,0.0,9.815023405523638,0.0,0.0,0.0,0.23065953378559695,0.07688651126186564,0.016186633949866452,-0.05373267899732902,0.5 +532,my_land,urban,0.13999999999999999,0.02,0.10300000000000001,0.0,2009-11-24,0.0,0.0,2.2083730032793823e-06,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0,,,,, +533,my_land,rural,15.931742659825426,0.1,1.03,20.0,2009-11-24,0.0,0.0,0.001484969214039827,0.0,0.0,0.0,0.0,0.0,9.84569379736125,0.0,0.0,0.0,0.6292163078047099,0.20973876926823665,0.044155530372260346,0.04688939255479297,0.5 +534,my_land,urban,0.13399999999999998,0.02,0.054000000000000006,0.0,2009-11-25,0.0,0.0,2.470815991031248e-06,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0,,,,, +535,my_land,rural,15.90041437321406,0.1,0.54,20.0,2009-11-25,0.0,0.0,0.0014540233492394586,0.0,0.0,0.0,0.0,0.0,9.480873614336847,0.0,0.0,0.0,0.3358214042105994,0.1119404680701998,0.023566414330568386,-0.03132828661136762,0.5 +536,my_land,urban,0.13099999999999998,0.02,0.057,0.0,2009-11-26,0.0,0.0,2.6589292095034705e-06,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0,,,,, +537,my_land,rural,15.87868060603828,0.1,0.5700000000000001,20.0,2009-11-26,0.0,0.0,0.0014221830555508899,0.0,0.0,0.0,0.0,0.0,9.06776960252139,0.0,0.0,0.0,0.3503603091127438,0.11678676970424795,0.024586688358789043,-0.021733767175780797,0.5 +538,my_land,urban,0.10999999999999996,0.02,0.039,0.0,2009-11-27,0.0,0.0,2.6832147536358783e-06,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0,,,,, +539,my_land,rural,15.835138840304083,0.1,0.38999999999999996,20.0,2009-11-27,0.0,0.0,0.0014040869607571918,0.0,0.0,0.0,0.0,0.0,8.649825196946074,0.0,0.0,0.0,0.237648508085617,0.07921616936187234,0.016677088286709968,-0.04354176573419938,0.5 +540,my_land,urban,0.10299999999999995,0.02,0.053,0.0,2009-11-28,0.0,0.0,2.652944892478989e-06,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0,,,,, +541,my_land,rural,15.820366607156734,0.1,0.53,20.0,2009-11-28,0.0,0.0,0.0013773017021999347,0.0,0.0,0.0,0.0,0.0,8.229667193395695,0.0,0.0,0.0,0.31690021611748637,0.10563340537249545,0.022238611657367464,-0.014772233147349306,0.5 +542,my_land,urban,0.17299999999999993,0.02,0.13,0.0,2009-11-29,0.0,0.0,2.966945851637864e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0,,,,, +543,my_land,rural,15.936950029407171,0.1,1.3,20.0,2009-11-29,0.0,0.0,0.0013031417409428995,0.0,0.0,0.0,0.0,0.0,7.805452019396436,0.0,0.0,0.0,0.7719343116465639,0.2573114372155213,0.05417082888747817,0.11658342225043666,0.5 +544,my_land,urban,0.11299999999999993,0.02,0.0,0.0,2009-11-30,0.0,0.0,2.9298358250658726e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0,,,,, +545,my_land,rural,15.836950029407172,0.1,0.0,20.0,2009-11-30,0.0,0.0,0.0013131417409428996,0.0,0.0,0.0,0.0,0.0,7.392645787924555,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +546,my_land,urban,0.07099999999999992,0.02,0.018,0.0,2009-12-01,0.0,0.0,2.51367877098808e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0,,,,, +547,my_land,rural,15.765769679316602,0.1,0.18,20.0,2009-12-01,0.0,0.0,0.0013111971366590361,0.0,0.0,0.0,0.0,0.0,6.9735157408641655,0.0,0.0,0.0,0.10771599943953056,0.035905333146510184,0.007559017504528461,-0.07118035009056921,0.5 +548,my_land,urban,0.04999999999999991,0.02,0.039,0.0,2009-12-02,0.0,0.0,1.9520437616600427e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0,,,,, +549,my_land,rural,15.739748830005217,0.1,0.38999999999999996,20.0,2009-12-02,0.0,0.0,0.0012964683134204585,0.0,0.0,0.0,0.0,0.0,7.140732601935397,0.0,0.0,0.0,0.2251648551343603,0.07505495171145343,0.015801042465569147,-0.026020849311382932,0.5 +550,my_land,urban,0.0,0.019999999999999997,0.002,0.0,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0,,,,, +551,my_land,rural,15.658950504975001,0.1,0.02,20.0,2009-12-03,0.0,0.0,0.0013064683134204585,0.0,0.0,0.0,0.0,0.0,7.381877289741926,0.0,0.0,0.0,0.0,0.0,0.000798325030215587,-0.09596650060431175,0.5 +552,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0,,,,, +553,my_land,rural,15.666028445204873,0.1,0.44,20.0,2009-12-04,0.0,0.0,0.0012904165461078555,0.0,0.0,0.0,0.0,0.0,7.631401972515127,0.0,0.0,0.0,0.23720696758621607,0.07906898919540535,0.01664610298850639,0.007077940229872209,0.5 +554,my_land,urban,0.092,0.02,0.152,0.0,2009-12-05,0.0,0.0,6.969696969696969e-07,0.0,0.0,0.0,0.0,0.0,7.571428571,0.0,0.0,0.0,,,,, +555,my_land,rural,15.929946925653065,0.1,1.52,20.0,2009-12-05,0.0,0.0,0.0012165429648775094,0.0,0.0,0.0,0.0,0.0,7.881896968105971,0.0,0.0,0.0,0.8237080826806615,0.2745693608935538,0.05780407597759028,0.2639184804481944,0.5 +556,my_land,urban,0.04499999999999999,0.02,0.013,0.0,2009-12-06,0.0,0.0,8.983957219251335e-07,0.0,0.0,0.0,0.0,0.0,7.571428571,0.0,0.0,0.0,,,,, +557,my_land,rural,15.846552122735352,0.1,0.13,20.0,2009-12-06,0.0,0.0,0.0012182612096875095,0.0,0.0,0.0,0.0,0.0,8.133448049369706,0.0,0.0,0.0,0.08079379707887123,0.026931265692957077,0.0056697401458857015,-0.08339480291771402,0.5 +558,my_land,urban,0.04499999999999999,0.02,0.06,0.0,2009-12-07,0.0,0.0,1.0050330292544823e-06,0.0,0.0,0.0,0.0,0.0,7.847058823235296,0.0,0.0,0.0,,,,, +559,my_land,rural,15.840424724434023,0.1,0.6,20.0,2009-12-07,0.0,0.0,0.0011920768505452636,0.0,0.0,0.0,0.0,0.0,8.3846242925773,0.0,0.0,0.0,0.36061577128969774,0.1202052570965659,0.025306369915066507,-0.0061273983013301545,0.5 +560,my_land,urban,0.014999999999999993,0.02,0.03,0.0,2009-12-08,0.0,0.0,5.468271897966767e-07,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, +561,my_land,rural,15.788058070745501,0.1,0.3,20.0,2009-12-08,0.0,0.0,0.0011840958555424498,0.0,0.0,0.0,0.0,0.0,8.635673575293739,0.0,0.0,0.0,0.17981124075307162,0.05993708025102387,0.012618332684426081,-0.052366653688521586,0.5 +562,my_land,urban,-1.734723475976807e-18,0.02,0.011999999999999999,0.0,2009-12-09,0.0,0.0,-4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, +563,my_land,rural,15.709650671329419,0.1,0.12,20.0,2009-12-09,0.0,0.0,0.0011870319118800396,0.0,0.0,0.0,0.0,0.0,8.474718985512384,0.0,0.0,0.0,0.07011527208395861,0.023371757361319537,0.004920369970804114,-0.07840739941608228,0.5 +564,my_land,urban,0.0,0.0009999999999999983,0.001,0.0,2009-12-10,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, +565,my_land,rural,15.619258863668033,0.1,0.01,20.0,2009-12-10,0.0,0.0,0.0011970319118800397,0.0,0.0,0.0,0.0,0.0,8.26246487318905,0.0,0.0,0.0,0.0,0.0,0.0003918076613856561,-0.09783615322771314,0.5 +566,my_land,urban,0.0,0.001,0.001,0.0,2009-12-11,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, +567,my_land,rural,15.528892137802307,0.1,0.01,20.0,2009-12-11,0.0,0.0,0.0012070319118800397,0.0,0.0,0.0,0.0,0.0,8.043745609148631,0.0,0.0,0.0,0.0,0.0,0.0003667258657255478,-0.09733451731451095,0.5 +568,my_land,urban,0.0,0.001,0.001,0.0,2009-12-12,0.0,0.0,2.9999999999999992e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, +569,my_land,rural,15.43855560154233,0.1,0.01,20.0,2009-12-12,0.0,0.0,0.0012170319118800397,0.0,0.0,0.0,0.0,0.0,7.824218201143579,0.0,0.0,0.0,0.0,0.0,0.0003365362599782337,-0.09673072519956467,0.5 +570,my_land,urban,0.0,0.002,0.002,0.0,2009-12-13,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, +571,my_land,rural,15.357954924069375,0.1,0.02,20.0,2009-12-13,0.0,0.0,0.0012270319118800397,0.0,0.0,0.0,0.0,0.0,7.604589775142948,0.0,0.0,0.0,0.0,0.0,0.0006006774729538937,-0.09201354945907789,0.5 +572,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0,,,,, +573,my_land,rural,15.39592709173547,0.1,0.29,20.0,2009-12-14,0.0,0.0,0.0012255353834572243,0.0,0.0,0.0,0.0,0.0,7.3839333314482545,0.0,0.0,0.0,0.10831983053790824,0.036106610179302744,0.007601391616695315,0.03797216766609369,0.5 +574,my_land,urban,0.0,0.015,0.015,0.0,2009-12-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0,,,,, +575,my_land,rural,15.361664584945213,0.1,0.15,20.0,2009-12-15,0.0,0.0,0.0012291304051354206,0.0,0.0,0.0,0.0,0.0,7.164909455879778,0.0,0.0,0.0,0.06003703608805902,0.02001234536268634,0.004213125339512914,-0.03426250679025828,0.5 +576,my_land,urban,0.0,0.02,0.028,0.0,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +577,my_land,rural,15.393818336598887,0.1,0.27999999999999997,20.0,2009-12-16,0.0,0.0,0.0012279267427122785,0.0,0.0,0.0,0.0,0.0,6.944551279043968,0.0,0.0,0.0,0.10534045194675817,0.035113483982252724,0.0073923124173163645,0.03215375165367272,0.5 +578,my_land,urban,0.0,0.0,0.0,0.0,2009-12-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +579,my_land,rural,15.293818336598887,0.1,0.0,20.0,2009-12-17,0.0,0.0,0.0012379267427122785,0.0,0.0,0.0,0.0,0.0,6.775568909880497,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +580,my_land,urban,0.0,0.0,0.0,0.0,2009-12-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +581,my_land,rural,15.193818336598888,0.1,0.0,20.0,2009-12-18,0.0,0.0,0.0012479267427122785,0.0,0.0,0.0,0.0,0.0,6.611946113735063,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +582,my_land,urban,0.0,0.007,0.007,0.0,2009-12-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +583,my_land,rural,15.162675392175545,0.1,0.06999999999999999,20.0,2009-12-19,0.0,0.0,0.0012579267427122785,0.0,0.0,0.0,0.0,0.0,6.448993264216883,0.0,0.0,0.0,0.0,0.0,0.001142944423341944,-0.05285888846683889,0.5 +584,my_land,urban,0.0,0.001,0.001,0.0,2009-12-20,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +585,my_land,rural,15.072534580554477,0.1,0.01,20.0,2009-12-20,0.0,0.0,0.0012679267427122786,0.0,0.0,0.0,0.0,0.0,6.2861241580271106,0.0,0.0,0.0,0.0,0.0,0.00014081162106906905,-0.09281623242138137,0.5 +586,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-12-21,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +587,my_land,rural,15.067579409406559,0.1,0.11,20.0,2009-12-21,0.0,0.0,0.001276722904419876,0.0,0.0,0.0,0.0,0.0,6.123201402494958,0.0,0.0,0.0,0.010655559442891363,0.0035518531476304545,0.0007477585573958852,-0.004955171147917698,0.5 +588,my_land,urban,0.0,0.004,0.004,0.0,2009-12-22,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, +589,my_land,rural,15.007324954099435,0.1,0.04,20.0,2009-12-22,0.0,0.0,0.001286722904419876,0.0,0.0,0.0,0.0,0.0,5.96040017531187,0.0,0.0,0.0,0.0,0.0,0.00025445530712488325,-0.06508910614249766,0.5 +590,my_land,urban,0.0,0.02,0.045,0.0,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, +591,my_land,rural,15.350775786571363,0.1,0.44999999999999996,20.0,2009-12-23,0.0,0.0,0.001296197552197617,0.0,0.0,0.0,0.0,0.0,5.795015766011667,0.0,0.0,0.0,0.004666281863749557,0.001555427287916519,0.0003274583764034777,0.3434508324719304,0.5 +592,my_land,urban,0.0,0.01,0.01,0.0,2009-12-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, +593,my_land,rural,15.348191663857646,0.1,0.1,20.0,2009-12-24,0.0,0.0,0.001306197552197617,0.0,0.0,0.0,0.0,0.0,5.634376970751458,0.0,0.0,0.0,0.0,0.0,0.002584122713716708,-0.05168245427433416,0.5 +594,my_land,urban,0.0,0.01,0.01,0.0,2009-12-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, +595,my_land,rural,15.345621002661229,0.1,0.1,20.0,2009-12-25,0.0,0.0,0.0013161975521976171,0.0,0.0,0.0,0.0,0.0,5.471797121343934,0.0,0.0,0.0,0.0,0.0,0.002570661196416977,-0.05141322392833953,0.5 +596,my_land,urban,0.0,0.018,0.018,0.0,2009-12-26,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, +597,my_land,rural,15.333561699673583,0.1,0.18,20.0,2009-12-26,0.0,0.0,0.0013186763638504445,0.0,0.0,0.0,0.0,0.0,5.308380721682459,0.0,0.0,0.0,0.06559225337869778,0.021864084459565933,0.004602965149382301,-0.012059302987646035,0.5 +598,my_land,urban,0.0,0.0,0.0,0.0,2009-12-27,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, +599,my_land,rural,15.233561699673583,0.1,0.0,20.0,2009-12-27,0.0,0.0,0.0013286763638504446,0.0,0.0,0.0,0.0,0.0,5.1460475902103076,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +600,my_land,urban,0.0,0.013,0.013,0.0,2009-12-28,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, +601,my_land,rural,15.214133499514844,0.1,0.13,20.0,2009-12-28,0.0,0.0,0.0013345573956834238,0.0,0.0,0.0,0.0,0.0,4.98302459535652,0.0,0.0,0.0,0.03521759261310076,0.01173919753770025,0.002471410007936895,-0.019428200158737904,0.5 +602,my_land,urban,0.10899999999999999,0.02,0.16899999999999998,0.0,2009-12-29,0.0,0.0,4.389261744966442e-06,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0,,,,, +603,my_land,rural,16.205052387942818,0.1,1.69,20.0,2009-12-29,0.0,0.0,0.0012989382347118202,0.0,0.0,0.0,0.0,0.0,4.808136292676586,0.0,0.0,0.0,0.4268452919950684,0.14228176399835613,0.029954055578601292,0.9909188884279739,0.5 +604,my_land,urban,0.09699999999999998,0.02,0.047999999999999994,0.0,2009-12-30,0.0,0.0,3.815754666144123e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, +605,my_land,rural,16.135503211574175,0.1,0.48,20.0,2009-12-30,0.0,0.0,0.001275186810041582,0.0,0.0,0.0,0.0,0.0,4.653134915271009,0.0,0.0,0.0,0.3203037881626581,0.1067679293875527,0.02247745881843215,-0.06954917636864304,0.5 +606,my_land,urban,0.03699999999999997,0.02,0.0,0.0,2009-12-31,0.0,0.0,2.3140639304848372e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, +607,my_land,rural,16.035503211574174,0.1,0.0,20.0,2009-12-31,0.0,0.0,0.001285186810041582,0.0,0.0,0.0,0.0,0.0,4.494141864408876,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +608,my_land,urban,0.0,0.02,0.0,0.0,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, +609,my_land,rural,15.935503211574174,0.1,0.0,20.0,2010-01-01,0.0,0.0,0.001295186810041582,0.0,0.0,0.0,0.0,0.0,4.33176773305111,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +610,my_land,urban,0.0,0.001,0.001,0.0,2010-01-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, +611,my_land,rural,15.845066211176531,0.1,0.01,20.0,2010-01-02,0.0,0.0,0.001305186810041582,0.0,0.0,0.0,0.0,0.0,4.168970966631389,0.0,0.0,0.0,0.0,0.0,0.0004370003976416374,-0.09874000795283275,0.5 +612,my_land,urban,0.0,0.0,0.0,0.0,2010-01-03,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, +613,my_land,rural,15.745066211176532,0.1,0.0,20.0,2010-01-03,0.0,0.0,0.001315186810041582,0.0,0.0,0.0,0.0,0.0,4.006121370828923,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +614,my_land,urban,0.0,0.001,0.001,0.0,2010-01-04,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, +615,my_land,rural,15.654665797116056,0.1,0.01,20.0,2010-01-04,0.0,0.0,0.001325186810041582,0.0,0.0,0.0,0.0,0.0,3.8432651713536155,0.0,0.0,0.0,0.0,0.0,0.00040041406047590524,-0.0980082812095181,0.5 +616,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2010-01-05,0.0,0.0,1.6119402985074626e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, +617,my_land,rural,15.768487138179598,0.1,0.8699999999999999,20.0,2010-01-05,0.0,0.0,0.001284410681210202,0.0,0.0,0.0,0.0,0.0,3.673418975013127,0.0,0.0,0.0,0.46752729449222924,0.15584243149740973,0.032808932946823105,0.11382134106353789,0.5 +618,my_land,urban,0.0,0.02,0.016999999999999998,0.0,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, +619,my_land,rural,15.700528098982591,0.1,0.16999999999999998,20.0,2010-01-06,0.0,0.0,0.0012836949615679526,0.0,0.0,0.0,0.0,0.0,3.693487123779367,0.0,0.0,0.0,0.0982958154278669,0.03276527180928897,0.006897951959850309,-0.0679590391970062,0.5 +620,my_land,urban,0.0,0.001,0.001,0.0,2010-01-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, +621,my_land,rural,15.610138613952767,0.1,0.01,20.0,2010-01-07,0.0,0.0,0.0012936949615679526,0.0,0.0,0.0,0.0,0.0,3.7313287477224213,0.0,0.0,0.0,0.0,0.0,0.00038948502982424715,-0.09778970059648494,0.5 +622,my_land,urban,0.0,0.0,0.0,0.0,2010-01-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, +623,my_land,rural,15.510138613952767,0.1,0.0,20.0,2010-01-08,0.0,0.0,0.0013036949615679526,0.0,0.0,0.0,0.0,0.0,3.770880378965303,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +624,my_land,urban,0.0,0.0,0.0,0.0,2010-01-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, +625,my_land,rural,15.410138613952768,0.1,0.0,20.0,2010-01-09,0.0,0.0,0.0013136949615679527,0.0,0.0,0.0,0.0,0.0,3.810645761870663,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +626,my_land,urban,0.0,0.02,0.031,0.0,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0,,,,, +627,my_land,rural,15.441860321135648,0.1,0.31,20.0,2010-01-10,0.0,0.0,0.0013093343474342716,0.0,0.0,0.0,0.0,0.0,3.848862367447426,0.0,0.0,0.0,0.12702328363219792,0.04234109454406597,0.008913914640855995,0.0317217071828801,0.5 +628,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-01-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0,,,,, +629,my_land,rural,15.37095497947081,0.1,0.03,20.0,2010-01-11,0.0,0.0,0.0013193343474342716,0.0,0.0,0.0,0.0,0.0,3.890036367680928,0.0,0.0,0.0,0.0,0.0,0.0009053416648387037,-0.08810683329677409,0.5 +630,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0,,,,, +631,my_land,rural,15.465250725929259,0.1,0.42,20.0,2010-01-12,0.0,0.0,0.0013111557378076388,0.0,0.0,0.0,0.0,0.0,3.9276294879914335,0.0,0.0,0.0,0.16081428064835535,0.05360476021611845,0.01128521267707757,0.09429574645844858,0.5 +632,my_land,urban,0.0,0.016,0.016,0.0,2010-01-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0,,,,, +633,my_land,rural,15.425500127665819,0.1,0.16,20.0,2010-01-13,0.0,0.0,0.001313089072319946,0.0,0.0,0.0,0.0,0.0,4.2371168332589075,0.0,0.0,0.0,0.07107230126270062,0.023690767087566872,0.004987529913171974,-0.03975059826343947,0.5 +634,my_land,urban,0.0,0.02,0.031,0.0,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0,,,,, +635,my_land,rural,15.452879131620277,0.1,0.31,20.0,2010-01-14,0.0,0.0,0.001308399629693315,0.0,0.0,0.0,0.0,0.0,4.5779353492629165,0.0,0.0,0.0,0.13011745968244853,0.04337248656081618,0.00913104980227709,0.027379003954458168,0.5 +636,my_land,urban,0.017999999999999995,0.02,0.078,0.0,2010-01-15,0.0,0.0,3.1034482758620683e-07,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0,,,,, +637,my_land,rural,15.654707144173736,0.1,0.7799999999999999,20.0,2010-01-15,0.0,0.0,0.00128122154426437,0.0,0.0,0.0,0.0,0.0,4.921776267713667,0.0,0.0,0.0,0.3406975410556602,0.1135658470185534,0.023908599372327033,0.2018280125534593,0.5 +638,my_land,urban,0.0,0.02,0.031,0.0,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0,,,,, +639,my_land,rural,15.630889108352012,0.1,0.31,20.0,2010-01-16,0.0,0.0,0.001273129382076378,0.0,0.0,0.0,0.0,0.0,5.269088235958894,0.0,0.0,0.0,0.16659535052297858,0.05553178350765953,0.011690901791086217,-0.023818035821724336,0.5 +640,my_land,urban,0.0,0.001,0.001,0.0,2010-01-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0,,,,, +641,my_land,rural,15.540518886220532,0.1,0.01,20.0,2010-01-17,0.0,0.0,0.001283129382076378,0.0,0.0,0.0,0.0,0.0,5.615778886744863,0.0,0.0,0.0,0.0,0.0,0.00037022213147976416,-0.09740444262959529,0.5 +642,my_land,urban,0.0,0.001,0.001,0.0,2010-01-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0,,,,, +643,my_land,rural,15.450178148618667,0.1,0.01,20.0,2010-01-18,0.0,0.0,0.001293129382076378,0.0,0.0,0.0,0.0,0.0,5.961793789093107,0.0,0.0,0.0,0.0,0.0,0.00034073760186561743,-0.09681475203731234,0.5 +644,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0,,,,, +645,my_land,rural,15.564273169744155,0.1,0.5499999999999999,20.0,2010-01-19,0.0,0.0,0.001276948481709884,0.0,0.0,0.0,0.0,0.0,6.30700216338459,0.0,0.0,0.0,0.23933229744809095,0.07977743248269697,0.016795248943725683,0.11409502112548633,0.5 +646,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0,,,,, +647,my_land,rural,15.618272226179116,0.1,0.51,20.0,2010-01-20,0.0,0.0,0.0012596713305014276,0.0,0.0,0.0,0.0,0.0,6.257719417720576,0.0,0.0,0.0,0.2536506722900914,0.08455022409669713,0.01780004717825203,0.05399905643495946,0.5 +648,my_land,urban,0.024000000000000007,0.02,0.08399999999999999,0.0,2010-01-21,0.0,0.0,3.750000000000001e-07,0.0,0.0,0.0,0.0,0.0,5.507142857,0.0,0.0,0.0,,,,, +649,my_land,rural,15.742677555517119,0.1,0.84,20.0,2010-01-21,0.0,0.0,0.001224194490768934,0.0,0.0,0.0,0.0,0.0,6.15849670361107,0.0,0.0,0.0,0.43861120284667277,0.14620373428222425,0.030779733533099842,0.12440532933800313,0.5 +650,my_land,urban,0.07200000000000001,0.02,0.10800000000000001,0.0,2010-01-22,0.0,0.0,8.839285714285715e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, +651,my_land,rural,15.858993810626771,0.1,1.08,20.0,2010-01-22,0.0,0.0,0.0011734818533185012,0.0,0.0,0.0,0.0,0.0,6.05367231700158,0.0,0.0,0.0,0.6153746682343743,0.2051248894114581,0.0431841872445175,0.11631625510965006,0.5 +652,my_land,urban,0.012000000000000004,0.02,0.0,0.0,2010-01-23,0.0,0.0,4.347527472527473e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, +653,my_land,rural,15.758993810626771,0.1,0.0,20.0,2010-01-23,0.0,0.0,0.0011834818533185013,0.0,0.0,0.0,0.0,0.0,5.954923325125197,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +654,my_land,urban,0.0,0.014000000000000004,0.002,0.0,2010-01-24,0.0,0.0,1.4347527472527472e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, +655,my_land,rural,15.678186558244636,0.1,0.02,20.0,2010-01-24,0.0,0.0,0.0011934818533185013,0.0,0.0,0.0,0.0,0.0,5.85150827289065,0.0,0.0,0.0,0.0,0.0,0.0008072523821347404,-0.09614504764269481,0.5 +656,my_land,urban,0.0,0.0,0.0,0.0,2010-01-25,0.0,0.0,2.434752747252747e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, +657,my_land,rural,15.578186558244637,0.1,0.0,20.0,2010-01-25,0.0,0.0,0.0012034818533185013,0.0,0.0,0.0,0.0,0.0,5.747509962361332,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +658,my_land,urban,0.0,0.0,0.0,0.0,2010-01-26,0.0,0.0,3.4347527472527474e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, +659,my_land,rural,15.478186558244637,0.1,0.0,20.0,2010-01-26,0.0,0.0,0.0012134818533185013,0.0,0.0,0.0,0.0,0.0,5.643438745295167,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +660,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-01-27,0.0,0.0,4.434752747252747e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, +661,my_land,rural,15.407235489071896,0.1,0.03,20.0,2010-01-27,0.0,0.0,0.0012234818533185014,0.0,0.0,0.0,0.0,0.0,5.638465557661896,0.0,0.0,0.0,0.0,0.0,0.0009510691727408367,-0.08902138345481675,0.5 +662,my_land,urban,0.020999999999999998,0.02,0.08099999999999999,0.0,2010-01-28,0.0,0.0,1.8709804539722567e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, +663,my_land,rural,15.65359471116825,0.1,0.8099999999999999,20.0,2010-01-28,0.0,0.0,0.0011997241760879386,0.0,0.0,0.0,0.0,0.0,5.6420546552239985,0.0,0.0,0.0,0.33034405425634655,0.11011468475211551,0.02318203889518221,0.2463592220963557,0.5 +664,my_land,urban,0.0,0.02,0.004,0.0,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, +665,my_land,rural,15.592087467436079,0.1,0.04,20.0,2010-01-29,0.0,0.0,0.0012097241760879386,0.0,0.0,0.0,0.0,0.0,5.654363974653,0.0,0.0,0.0,0.0,0.0,0.0015072437321718413,-0.09014487464343683,0.5 +666,my_land,urban,0.0,0.0,0.0,0.0,2010-01-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, +667,my_land,rural,15.492087467436079,0.1,0.0,20.0,2010-01-30,0.0,0.0,0.0012197241760879387,0.0,0.0,0.0,0.0,0.0,5.663938354081626,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +668,my_land,urban,0.0,0.0,0.0,0.0,2010-01-31,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, +669,my_land,rural,15.39208746743608,0.1,0.0,20.0,2010-01-31,0.0,0.0,0.0012297241760879387,0.0,0.0,0.0,0.0,0.0,5.673170866010205,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +670,my_land,urban,0.0,0.007,0.007,0.0,2010-02-01,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, +671,my_land,rural,15.36013418233202,0.1,0.06999999999999999,20.0,2010-02-01,0.0,0.0,0.0012397241760879387,0.0,0.0,0.0,0.0,0.0,5.682360643751277,0.0,0.0,0.0,0.0,0.0,0.0019532851040592785,-0.06906570208118558,0.5 +672,my_land,urban,0.0,0.02,0.023,0.0,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +673,my_land,rural,15.369047755034433,0.1,0.22999999999999998,20.0,2010-02-02,0.0,0.0,0.001240439904429485,0.0,0.0,0.0,0.0,0.0,5.690837302739972,0.0,0.0,0.0,0.08627407944953017,0.02875802648317672,0.0060543213648793105,0.008913572702413788,0.5 +674,my_land,urban,0.0,0.016,0.016,0.0,2010-02-03,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +675,my_land,rural,15.343370709349637,0.1,0.16,20.0,2010-02-03,0.0,0.0,0.0012438415994169296,0.0,0.0,0.0,0.0,0.0,5.72712384274031,0.0,0.0,0.0,0.061044895050417186,0.020348298350139064,0.004283852284239803,-0.025677045684796052,0.5 +676,my_land,urban,0.0,0.016,0.016,0.0,2010-02-04,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +677,my_land,rural,15.3219189740752,0.1,0.16,20.0,2010-02-04,0.0,0.0,0.0012475412346497916,0.0,0.0,0.0,0.0,0.0,5.766484045695794,0.0,0.0,0.0,0.05803436138303644,0.019344787127678814,0.004072586763721856,-0.021451735274437115,0.5 +678,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-02-05,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +679,my_land,rural,15.251189999345634,0.1,0.03,20.0,2010-02-05,0.0,0.0,0.0012575412346497916,0.0,0.0,0.0,0.0,0.0,5.806524791211975,0.0,0.0,0.0,0.0,0.0,0.0007289747295646704,-0.08457949459129341,0.5 +680,my_land,urban,0.0,0.001,0.001,0.0,2010-02-06,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +681,my_land,rural,15.160988618663826,0.1,0.01,20.0,2010-02-06,0.0,0.0,0.0012675412346497916,0.0,0.0,0.0,0.0,0.0,5.846351313401497,0.0,0.0,0.0,0.0,0.0,0.00020138068180881454,-0.09402761363617629,0.5 +682,my_land,urban,0.0,0.005,0.005,0.0,2010-02-07,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +683,my_land,rural,15.110290832837851,0.1,0.05,20.0,2010-02-07,0.0,0.0,0.0012775412346497917,0.0,0.0,0.0,0.0,0.0,5.886151056925188,0.0,0.0,0.0,0.0,0.0,0.0006977858259739543,-0.06395571651947908,0.5 +684,my_land,urban,0.0,0.004,0.004,0.0,2010-02-08,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +685,my_land,rural,15.049890981155084,0.1,0.04,20.0,2010-02-08,0.0,0.0,0.0012875412346497917,0.0,0.0,0.0,0.0,0.0,5.925947453865649,0.0,0.0,0.0,0.0,0.0,0.0003998516827672259,-0.06799703365534453,0.5 +686,my_land,urban,0.0,0.001,0.001,0.0,2010-02-09,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +687,my_land,rural,14.959843271793055,0.1,0.01,20.0,2010-02-09,0.0,0.0,0.0012975412346497917,0.0,0.0,0.0,0.0,0.0,5.965743431733206,0.0,0.0,0.0,0.0,0.0,4.7709362029658815e-05,-0.09095418724059318,0.5 +688,my_land,urban,0.0,0.002,0.002,0.0,2010-02-10,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +689,my_land,rural,14.879843271793055,0.1,0.02,20.0,2010-02-10,0.0,0.0,0.0013075412346497917,0.0,0.0,0.0,0.0,0.0,5.9894679289666515,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +690,my_land,urban,0.0,0.0,0.0,0.0,2010-02-11,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +691,my_land,rural,14.779843271793055,0.1,0.0,20.0,2010-02-11,0.0,0.0,0.0013175412346497918,0.0,0.0,0.0,0.0,0.0,6.011183491120831,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +692,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-02-12,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +693,my_land,rural,14.709843271793055,0.1,0.03,20.0,2010-02-12,0.0,0.0,0.0013275412346497918,0.0,0.0,0.0,0.0,0.0,6.032647936390105,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +694,my_land,urban,0.0,0.004,0.004,0.0,2010-02-13,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +695,my_land,rural,14.649843271793054,0.1,0.04,20.0,2010-02-13,0.0,0.0,0.0013375412346497918,0.0,0.0,0.0,0.0,0.0,6.054080992048764,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +696,my_land,urban,0.0,0.0,0.0,0.0,2010-02-14,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +697,my_land,rural,14.549843271793055,0.1,0.0,20.0,2010-02-14,0.0,0.0,0.0013475412346497918,0.0,0.0,0.0,0.0,0.0,6.0755101240060965,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +698,my_land,urban,0.0,0.015,0.015,0.0,2010-02-15,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, +699,my_land,rural,14.599843271793056,0.1,0.15,20.0,2010-02-15,0.0,0.0,0.0013575412346497919,0.0,0.0,0.0,0.0,0.0,6.09667099288141,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 +700,my_land,urban,0.0,0.02,0.025,0.0,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0,,,,, +701,my_land,rural,14.749843271793056,0.1,0.25,20.0,2010-02-16,0.0,0.0,0.001367541234649792,0.0,0.0,0.0,0.0,0.0,6.1175436059763575,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.5 +702,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0,,,,, +703,my_land,rural,14.869843271793055,0.1,0.22,20.0,2010-02-17,0.0,0.0,0.001377541234649792,0.0,0.0,0.0,0.0,0.0,6.026418688780782,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 +704,my_land,urban,0.014999999999999993,0.02,0.075,0.0,2010-02-18,0.0,0.0,2.7272727272727253e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, +705,my_land,rural,15.519843271793055,0.1,0.75,20.0,2010-02-18,0.0,0.0,0.001387541234649792,0.0,0.0,0.0,0.0,0.0,5.917856722306717,0.0,0.0,0.0,0.0,0.0,0.0,0.65,0.5 +706,my_land,urban,0.0,0.02,0.005999999999999999,0.0,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, +707,my_land,rural,15.47784408558623,0.1,0.06,20.0,2010-02-19,0.0,0.0,0.001397541234649792,0.0,0.0,0.0,0.0,0.0,5.81473209028834,0.0,0.0,0.0,0.0,0.0,0.001999186206825437,-0.07998372413650875,0.5 +708,my_land,urban,0.0,0.008,0.008,0.0,2010-02-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, +709,my_land,rural,15.455309010166683,0.1,0.08,20.0,2010-02-20,0.0,0.0,0.001407541234649792,0.0,0.0,0.0,0.0,0.0,5.708091511286042,0.0,0.0,0.0,0.0,0.0,0.0025350754195479414,-0.07070150839095882,0.5 +710,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0,,,,, +711,my_land,rural,15.497720579945245,0.1,0.37,20.0,2010-02-21,0.0,0.0,0.0013980371899472523,0.0,0.0,0.0,0.0,0.0,5.5992461251982215,0.0,0.0,0.0,0.16215675653277498,0.05405225217759166,0.01137942151107193,0.042411569778561406,0.5 +712,my_land,urban,0.0,0.018,0.018,0.0,2010-02-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0,,,,, +713,my_land,rural,15.460801338653779,0.1,0.18,20.0,2010-02-22,0.0,0.0,0.0013979937422700357,0.0,0.0,0.0,0.0,0.0,5.4931353652329715,0.0,0.0,0.0,0.08330495942017029,0.027768319806723424,0.005845962064573353,-0.03691924129146707,0.5 +714,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0,,,,, +715,my_land,rural,15.463474190349991,0.1,0.27,20.0,2010-02-23,0.0,0.0,0.0013936671792786565,0.0,0.0,0.0,0.0,0.0,5.385486845256326,0.0,0.0,0.0,0.1192205931664483,0.039740197722149435,0.008366357415189355,0.002672851696212909,0.5 +716,my_land,urban,0.0,0.018,0.018,0.0,2010-02-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0,,,,, +717,my_land,rural,15.431520773432636,0.1,0.18,20.0,2010-02-24,0.0,0.0,0.0013940591694646483,0.0,0.0,0.0,0.0,0.0,5.624702356037304,0.0,0.0,0.0,0.07976680955361576,0.02658893651787192,0.005597670845867772,-0.031953416917355454,0.5 +718,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0,,,,, +719,my_land,rural,15.538337984497964,0.1,0.51,20.0,2010-02-25,0.0,0.0,0.0013785067237769553,0.0,0.0,0.0,0.0,0.0,5.905557525089394,0.0,0.0,0.0,0.2160177371159532,0.0720059123719844,0.01515913944673356,0.10681721106532882,0.5 +720,my_land,urban,0.0010000000000000009,0.02,0.061000000000000006,0.0,2010-02-26,0.0,0.0,2.439024390243907e-08,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0,,,,, +721,my_land,rural,15.633590425610448,0.1,0.61,20.0,2010-02-26,0.0,0.0,0.0013543727445927958,0.0,0.0,0.0,0.0,0.0,6.1924131481070015,0.0,0.0,0.0,0.2955076357073541,0.0985025452357847,0.020737377944375728,0.09525244111248553,0.5 +722,my_land,urban,0.041,0.02,0.1,0.0,2010-02-27,0.0,0.0,5.185185185185186e-07,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +723,my_land,rural,15.791545848825752,0.1,1.0,20.0,2010-02-27,0.0,0.0,0.0013060691763076206,0.0,0.0,0.0,0.0,0.0,6.4795627798327,0.0,0.0,0.0,0.5287067609590959,0.1762355869863653,0.03710222883923481,0.15795542321530404,0.5 +724,my_land,urban,0.0,0.02,0.005,0.0,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +725,my_land,rural,15.739491983487772,0.1,0.05,20.0,2010-02-28,0.0,0.0,0.0013160691763076206,0.0,0.0,0.0,0.0,0.0,6.7688739192290885,0.0,0.0,0.0,0.0,0.0,0.00205386533798053,-0.0910773067596106,0.5 +726,my_land,urban,0.0,0.0,0.0,0.0,2010-03-01,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +727,my_land,rural,15.639491983487773,0.1,0.0,20.0,2010-03-01,0.0,0.0,0.0013260691763076207,0.0,0.0,0.0,0.0,0.0,7.056823525403637,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +728,my_land,urban,0.0,0.0,0.0,0.0,2010-03-02,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +729,my_land,rural,15.539491983487773,0.1,0.0,20.0,2010-03-02,0.0,0.0,0.0013360691763076207,0.0,0.0,0.0,0.0,0.0,7.344602940675455,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +730,my_land,urban,0.0,0.0,0.0,0.0,2010-03-03,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +731,my_land,rural,15.439491983487773,0.1,0.0,20.0,2010-03-03,0.0,0.0,0.0013460691763076207,0.0,0.0,0.0,0.0,0.0,7.289503939334432,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +732,my_land,urban,0.0,0.0,0.0,0.0,2010-03-04,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +733,my_land,rural,15.339491983487774,0.1,0.0,20.0,2010-03-04,0.0,0.0,0.0013560691763076207,0.0,0.0,0.0,0.0,0.0,7.1915451351668045,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +734,my_land,urban,0.0,0.0,0.0,0.0,2010-03-05,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +735,my_land,rural,15.239491983487774,0.1,0.0,20.0,2010-03-05,0.0,0.0,0.0013660691763076208,0.0,0.0,0.0,0.0,0.0,7.088228856395851,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +736,my_land,urban,0.0,0.0,0.0,0.0,2010-03-06,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +737,my_land,rural,15.139491983487774,0.1,0.0,20.0,2010-03-06,0.0,0.0,0.0013760691763076208,0.0,0.0,0.0,0.0,0.0,6.984242892549482,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +738,my_land,urban,0.0,0.0,0.0,0.0,2010-03-07,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +739,my_land,rural,15.039491983487775,0.1,0.0,20.0,2010-03-07,0.0,0.0,0.0013860691763076208,0.0,0.0,0.0,0.0,0.0,6.880173218818685,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +740,my_land,urban,0.0,0.0,0.0,0.0,2010-03-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +741,my_land,rural,14.939491983487775,0.1,0.0,20.0,2010-03-08,0.0,0.0,0.0013960691763076208,0.0,0.0,0.0,0.0,0.0,6.776093080602335,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +742,my_land,urban,0.0,0.0,0.0,0.0,2010-03-09,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +743,my_land,rural,14.839491983487775,0.1,0.0,20.0,2010-03-09,0.0,0.0,0.0014060691763076209,0.0,0.0,0.0,0.0,0.0,6.672011635075291,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +744,my_land,urban,0.0,0.0,0.0,0.0,2010-03-10,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +745,my_land,rural,14.739491983487776,0.1,0.0,20.0,2010-03-10,0.0,0.0,0.001416069176307621,0.0,0.0,0.0,0.0,0.0,6.835787168884411,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +746,my_land,urban,0.0,0.001,0.001,0.0,2010-03-11,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +747,my_land,rural,14.649491983487776,0.1,0.01,20.0,2010-03-11,0.0,0.0,0.001426069176307621,0.0,0.0,0.0,0.0,0.0,7.033044824360552,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +748,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2010-03-12,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +749,my_land,rural,14.659491983487776,0.1,0.11,20.0,2010-03-12,0.0,0.0,0.001436069176307621,0.0,0.0,0.0,0.0,0.0,7.234468483363635,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 +750,my_land,urban,0.0,0.0,0.0,0.0,2010-03-13,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +751,my_land,rural,14.559491983487776,0.1,0.0,20.0,2010-03-13,0.0,0.0,0.001446069176307621,0.0,0.0,0.0,0.0,0.0,7.436451417670455,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +752,my_land,urban,0.0,0.0,0.0,0.0,2010-03-14,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +753,my_land,rural,14.459491983487776,0.1,0.0,20.0,2010-03-14,0.0,0.0,0.001456069176307621,0.0,0.0,0.0,0.0,0.0,7.638484998958808,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +754,my_land,urban,0.0,0.0,0.0,0.0,2010-03-15,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +755,my_land,rural,14.359491983487777,0.1,0.0,20.0,2010-03-15,0.0,0.0,0.001466069176307621,0.0,0.0,0.0,0.0,0.0,7.840524910369851,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +756,my_land,urban,0.0,0.0,0.0,0.0,2010-03-16,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +757,my_land,rural,14.259491983487777,0.1,0.0,20.0,2010-03-16,0.0,0.0,0.001476069176307621,0.0,0.0,0.0,0.0,0.0,8.042565613796231,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +758,my_land,urban,0.0,0.0,0.0,0.0,2010-03-17,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, +759,my_land,rural,14.159491983487777,0.1,0.0,20.0,2010-03-17,0.0,0.0,0.001486069176307621,0.0,0.0,0.0,0.0,0.0,8.24996355897453,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +760,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0,,,,, +761,my_land,rural,14.269491983487777,0.1,0.21,20.0,2010-03-18,0.0,0.0,0.001496069176307621,0.0,0.0,0.0,0.0,0.0,8.458017428854738,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 +762,my_land,urban,0.039000000000000014,0.02,0.099,0.0,2010-03-19,0.0,0.0,4.936708860759494e-07,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0,,,,, +763,my_land,rural,15.159491983487777,0.1,0.9900000000000001,20.0,2010-03-19,0.0,0.0,0.0015060691763076211,0.0,0.0,0.0,0.0,0.0,8.666331588690914,0.0,0.0,0.0,0.0,0.0,0.0,0.8900000000000001,0.5 +764,my_land,urban,0.01200000000000001,0.02,0.033,0.0,2010-03-20,0.0,0.0,3.446932814021424e-07,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0,,,,, +765,my_land,rural,15.2981210451992,0.1,0.33,20.0,2010-03-20,0.0,0.0,0.0015075154496326285,0.0,0.0,0.0,0.0,0.0,8.874463792132058,0.0,0.0,0.0,0.06510179353061156,0.021700597843537187,0.004568546914428882,0.13862906171142236,0.5 +766,my_land,urban,0.0,0.01200000000000001,0.0,0.0,2010-03-21,0.0,0.0,1.3446932814021423e-06,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0,,,,, +767,my_land,rural,15.1981210451992,0.1,0.0,20.0,2010-03-21,0.0,0.0,0.0015175154496326285,0.0,0.0,0.0,0.0,0.0,9.082522259516509,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +768,my_land,urban,0.0,0.02,0.026,0.0,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0,,,,, +769,my_land,rural,15.27165536856516,0.1,0.26,20.0,2010-03-22,0.0,0.0,0.0015193432842813906,0.0,0.0,0.0,0.0,0.0,9.290830370846436,0.0,0.0,0.0,0.061606794601753084,0.02053559820058436,0.004323283831701971,0.07353432336596057,0.5 +770,my_land,urban,1.734723475976807e-18,0.02,0.035,0.0,2010-03-23,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0,,,,, +771,my_land,rural,15.371853137074124,0.1,0.35000000000000003,20.0,2010-03-23,0.0,0.0,0.0015153145511036222,0.0,0.0,0.0,0.0,0.0,9.499164804137784,0.0,0.0,0.0,0.10673408993736333,0.03557802997912111,0.007490111574551815,0.10019776850896374,0.5 +772,my_land,urban,0.049999999999999996,0.02,0.10999999999999999,0.0,2010-03-24,0.0,0.0,5.555555555555556e-07,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0,,,,, +773,my_land,rural,15.779736468343714,0.1,1.0999999999999999,20.0,2010-03-24,0.0,0.0,0.001472812227140122,0.0,0.0,0.0,0.0,0.0,9.521825597496692,0.0,0.0,0.0,0.42188312647041504,0.1406277088234717,0.02960583343652036,0.4078833312695927,0.5 +774,my_land,urban,0.049999999999999996,0.02,0.06,0.0,2010-03-25,0.0,0.0,8.641975308641975e-07,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0,,,,, +775,my_land,rural,15.789851578483349,0.1,0.6,20.0,2010-03-25,0.0,0.0,0.0014403590338967266,0.0,0.0,0.0,0.0,0.0,9.522082304283485,0.0,0.0,0.0,0.34904298402551087,0.11634766134183695,0.02449424449301831,0.010115110139633822,0.5 +776,my_land,urban,0.014999999999999993,0.02,0.025,0.0,2010-03-26,0.0,0.0,5.084175084175081e-07,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0,,,,, +777,my_land,rural,15.734644978585505,0.1,0.25,20.0,2010-03-26,0.0,0.0,0.0014326095462126,0.0,0.0,0.0,0.0,0.0,9.519633783633617,0.0,0.0,0.0,0.14620970242721482,0.04873656747573828,0.01026032999489227,-0.055206599897845376,0.5 +778,my_land,urban,0.0,0.01799999999999999,0.0029999999999999996,0.0,2010-03-27,0.0,0.0,1.508417508417508e-06,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0,,,,, +779,my_land,rural,15.663451134790071,0.1,0.03,20.0,2010-03-27,0.0,0.0,0.0014426095462126,0.0,0.0,0.0,0.0,0.0,9.516739937454203,0.0,0.0,0.0,0.0,0.0,0.001193843795434583,-0.09387687590869166,0.5 +780,my_land,urban,0.0,0.02,0.028,0.0,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0,,,,, +781,my_land,rural,15.630888474971625,0.1,0.27999999999999997,20.0,2010-03-28,0.0,0.0,0.001434082716136482,0.0,0.0,0.0,0.0,0.0,9.513586512610994,0.0,0.0,0.0,0.15145089512064355,0.05048363170688119,0.010628132990922358,-0.032562659818447144,0.5 +782,my_land,urban,0.0,0.02,0.023,0.0,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0,,,,, +783,my_land,rural,15.590586381033605,0.1,0.22999999999999998,20.0,2010-03-29,0.0,0.0,0.0014292510593843805,0.0,0.0,0.0,0.0,0.0,9.510544929537241,0.0,0.0,0.0,0.12134024193083956,0.040446747310279856,0.008515104696901024,-0.04030209393802047,0.5 +784,my_land,urban,0.0,0.02,0.057999999999999996,0.0,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0,,,,, +785,my_land,rural,15.655606289364222,0.1,0.58,20.0,2010-03-30,0.0,0.0,0.001403898831419554,0.0,0.0,0.0,0.0,0.0,9.50726214273335,0.0,0.0,0.0,0.2956733153144343,0.0985577717714781,0.02074900458346908,0.06501990833061838,0.5 +786,my_land,urban,0.0,0.007,0.007,0.0,2010-03-31,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0,,,,, +787,my_land,rural,15.622964630178812,0.1,0.06999999999999999,20.0,2010-03-31,0.0,0.0,0.001413898831419554,0.0,0.0,0.0,0.0,0.0,9.504479196091669,0.0,0.0,0.0,0.0,0.0,0.002641659185410869,-0.08283318370821738,0.5 +788,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0,,,,, +789,my_land,rural,15.63397148749884,0.1,0.42,20.0,2010-04-01,0.0,0.0,0.0013976564309730879,0.0,0.0,0.0,0.0,0.0,9.50124571900311,0.0,0.0,0.0,0.22015761415947888,0.07338587138649295,0.015449657133998517,0.011006857320029631,0.5 +790,my_land,urban,0.0,0.02,0.039,0.0,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0,,,,, +791,my_land,rural,15.634486339895512,0.1,0.38999999999999996,20.0,2010-04-02,0.0,0.0,0.0013833237419753866,0.0,0.0,0.0,0.0,0.0,9.498181750240814,0.0,0.0,0.0,0.20625816766737218,0.06875272255579072,0.014474257380166469,0.0005148523966705919,0.5 +792,my_land,urban,0.014000000000000005,0.02,0.07400000000000001,0.0,2010-04-03,0.0,0.0,2.5925925925925933e-07,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +793,my_land,rural,15.724982046258871,0.1,0.74,20.0,2010-04-03,0.0,0.0,0.0013485551685988044,0.0,0.0,0.0,0.0,0.0,9.494896234465935,0.0,0.0,0.0,0.3915218092161058,0.13050726973870194,0.027475214681831988,0.09049570636336024,0.5 +794,my_land,urban,0.0,0.016000000000000007,0.002,0.0,2010-04-04,0.0,0.0,1.2592592592592593e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +795,my_land,rural,15.644190821688627,0.1,0.02,20.0,2010-04-04,0.0,0.0,0.0013585551685988044,0.0,0.0,0.0,0.0,0.0,9.492219172058242,0.0,0.0,0.0,0.0,0.0,0.0007912245702453736,-0.09582449140490748,0.5 +796,my_land,urban,0.0,0.0,0.0,0.0,2010-04-05,0.0,0.0,2.2592592592592592e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +797,my_land,rural,15.544190821688627,0.1,0.0,20.0,2010-04-05,0.0,0.0,0.0013685551685988044,0.0,0.0,0.0,0.0,0.0,9.48920596825728,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +798,my_land,urban,0.0,0.004,0.004,0.0,2010-04-06,0.0,0.0,3.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +799,my_land,rural,15.482822645210048,0.1,0.04,20.0,2010-04-06,0.0,0.0,0.0013785551685988045,0.0,0.0,0.0,0.0,0.0,9.48615074603216,0.0,0.0,0.0,0.0,0.0,0.0013681764785794563,-0.08736352957158912,0.5 +800,my_land,urban,0.0,0.001,0.001,0.0,2010-04-07,0.0,0.0,4.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +801,my_land,rural,15.392503754773587,0.1,0.01,20.0,2010-04-07,0.0,0.0,0.0013885551685988045,0.0,0.0,0.0,0.0,0.0,9.37059027150402,0.0,0.0,0.0,0.0,0.0,0.00031889043646081227,-0.09637780872921624,0.5 +802,my_land,urban,0.0,0.0,0.0,0.0,2010-04-08,0.0,0.0,5.2592592592592585e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +803,my_land,rural,15.292503754773588,0.1,0.0,20.0,2010-04-08,0.0,0.0,0.0013985551685988045,0.0,0.0,0.0,0.0,0.0,9.240966641188002,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +804,my_land,urban,0.0,0.0,0.0,0.0,2010-04-09,0.0,0.0,6.259259259259258e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +805,my_land,rural,15.192503754773588,0.1,0.0,20.0,2010-04-09,0.0,0.0,0.0014085551685988045,0.0,0.0,0.0,0.0,0.0,9.109585115648501,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +806,my_land,urban,0.0,0.0,0.0,0.0,2010-04-10,0.0,0.0,7.259259259259258e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +807,my_land,rural,15.092503754773588,0.1,0.0,20.0,2010-04-10,0.0,0.0,0.0014185551685988046,0.0,0.0,0.0,0.0,0.0,8.977983853956063,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +808,my_land,urban,0.0,0.0,0.0,0.0,2010-04-11,0.0,0.0,8.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +809,my_land,rural,14.992503754773589,0.1,0.0,20.0,2010-04-11,0.0,0.0,0.0014285551685988046,0.0,0.0,0.0,0.0,0.0,8.846355124494508,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +810,my_land,urban,0.0,0.0,0.0,0.0,2010-04-12,0.0,0.0,9.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +811,my_land,rural,14.892503754773589,0.1,0.0,20.0,2010-04-12,0.0,0.0,0.0014385551685988046,0.0,0.0,0.0,0.0,0.0,8.714722962311814,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +812,my_land,urban,0.0,0.0,0.0,0.0,2010-04-13,0.0,0.0,1.025925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +813,my_land,rural,14.79250375477359,0.1,0.0,20.0,2010-04-13,0.0,0.0,0.0014485551685988046,0.0,0.0,0.0,0.0,0.0,8.583090370288977,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +814,my_land,urban,0.0,0.0,0.0,0.0,2010-04-14,0.0,0.0,1.125925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +815,my_land,rural,14.69250375477359,0.1,0.0,20.0,2010-04-14,0.0,0.0,0.0014585551685988047,0.0,0.0,0.0,0.0,0.0,8.808042546286122,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +816,my_land,urban,0.0,0.0,0.0,0.0,2010-04-15,0.0,0.0,1.2259259259259261e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +817,my_land,rural,14.59250375477359,0.1,0.0,20.0,2010-04-15,0.0,0.0,0.0014685551685988047,0.0,0.0,0.0,0.0,0.0,9.077567818285766,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +818,my_land,urban,0.0,0.0,0.0,0.0,2010-04-16,0.0,0.0,1.3259259259259261e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +819,my_land,rural,14.49250375477359,0.1,0.0,20.0,2010-04-16,0.0,0.0,0.0014785551685988047,0.0,0.0,0.0,0.0,0.0,9.352664727285722,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +820,my_land,urban,0.0,0.0,0.0,0.0,2010-04-17,0.0,0.0,1.4259259259259262e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +821,my_land,rural,14.39250375477359,0.1,0.0,20.0,2010-04-17,0.0,0.0,0.0014885551685988048,0.0,0.0,0.0,0.0,0.0,9.628458090910716,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +822,my_land,urban,0.0,0.0,0.0,0.0,2010-04-18,0.0,0.0,1.525925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +823,my_land,rural,14.292503754773591,0.1,0.0,20.0,2010-04-18,0.0,0.0,0.0014985551685988048,0.0,0.0,0.0,0.0,0.0,9.90433851136384,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +824,my_land,urban,0.0,0.0,0.0,0.0,2010-04-19,0.0,0.0,1.625925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +825,my_land,rural,14.192503754773591,0.1,0.0,20.0,2010-04-19,0.0,0.0,0.0015085551685988048,0.0,0.0,0.0,0.0,0.0,10.180229813920478,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +826,my_land,urban,0.0,0.0,0.0,0.0,2010-04-20,0.0,0.0,1.7259259259259262e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +827,my_land,rural,14.092503754773592,0.1,0.0,20.0,2010-04-20,0.0,0.0,0.0015185551685988048,0.0,0.0,0.0,0.0,0.0,10.45612247674006,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +828,my_land,urban,0.0,0.0,0.0,0.0,2010-04-21,0.0,0.0,1.8259259259259263e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +829,my_land,rural,13.992503754773592,0.1,0.0,20.0,2010-04-21,0.0,0.0,0.0015285551685988049,0.0,0.0,0.0,0.0,0.0,10.73201530959251,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +830,my_land,urban,0.0,0.0,0.0,0.0,2010-04-22,0.0,0.0,1.9259259259259263e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +831,my_land,rural,13.892503754773593,0.1,0.0,20.0,2010-04-22,0.0,0.0,0.0015385551685988049,0.0,0.0,0.0,0.0,0.0,11.138376911199066,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +832,my_land,urban,0.0,0.0,0.0,0.0,2010-04-23,0.0,0.0,2.0259259259259264e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +833,my_land,rural,13.792503754773593,0.1,0.0,20.0,2010-04-23,0.0,0.0,0.001548555168598805,0.0,0.0,0.0,0.0,0.0,11.561047116399884,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +834,my_land,urban,0.0,0.016,0.016,0.0,2010-04-24,0.0,0.0,2.1259259259259265e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +835,my_land,rural,13.852503754773593,0.1,0.16,20.0,2010-04-24,0.0,0.0,0.001558555168598805,0.0,0.0,0.0,0.0,0.0,11.986203346322906,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 +836,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-04-25,0.0,0.0,2.2259259259259265e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +837,my_land,rural,13.812503754773594,0.1,0.06,20.0,2010-04-25,0.0,0.0,0.001568555168598805,0.0,0.0,0.0,0.0,0.0,12.410775415790363,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +838,my_land,urban,0.0,0.0,0.0,0.0,2010-04-26,0.0,0.0,2.3259259259259266e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +839,my_land,rural,13.712503754773595,0.1,0.0,20.0,2010-04-26,0.0,0.0,0.001578555168598805,0.0,0.0,0.0,0.0,0.0,12.835721929473797,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +840,my_land,urban,0.0,0.0,0.0,0.0,2010-04-27,0.0,0.0,2.4259259259259266e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +841,my_land,rural,13.612503754773595,0.1,0.0,20.0,2010-04-27,0.0,0.0,0.001588555168598805,0.0,0.0,0.0,0.0,0.0,13.260715241184226,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +842,my_land,urban,0.0,0.0,0.0,0.0,2010-04-28,0.0,0.0,2.5259259259259267e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, +843,my_land,rural,13.512503754773595,0.1,0.0,20.0,2010-04-28,0.0,0.0,0.001598555168598805,0.0,0.0,0.0,0.0,0.0,12.946875122648029,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +844,my_land,urban,0.0,0.02,0.041,0.0,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0,,,,, +845,my_land,rural,13.822503754773596,0.1,0.41000000000000003,20.0,2010-04-29,0.0,0.0,0.001608555168598805,0.0,0.0,0.0,0.0,0.0,12.540539395990955,0.0,0.0,0.0,0.0,0.0,0.0,0.31000000000000005,0.5 +846,my_land,urban,0.0,0.013,0.013,0.0,2010-04-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0,,,,, +847,my_land,rural,13.852503754773595,0.1,0.13,20.0,2010-04-30,0.0,0.0,0.001618555168598805,0.0,0.0,0.0,0.0,0.0,12.122888457831346,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +848,my_land,urban,0.13899999999999998,0.02,0.199,0.0,2010-05-01,0.0,0.0,1.553072625698324e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +849,my_land,rural,15.742503754773596,0.1,1.9900000000000002,20.0,2010-05-01,0.0,0.0,0.0016285551685988051,0.0,0.0,0.0,0.0,0.0,11.700676977988204,0.0,0.0,0.0,0.0,0.0,0.0,1.8900000000000001,0.5 +850,my_land,urban,0.08199999999999999,0.02,0.0029999999999999996,0.0,2010-05-02,0.0,0.0,1.7159996336660864e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +851,my_land,rural,15.671304316690522,0.1,0.03,20.0,2010-05-02,0.0,0.0,0.0016385551685988051,0.0,0.0,0.0,0.0,0.0,11.284013194748526,0.0,0.0,0.0,0.0,0.0,0.00119943808307371,-0.0939887616614742,0.5 +852,my_land,urban,0.024999999999999988,0.02,0.0029999999999999996,0.0,2010-05-03,0.0,0.0,1.044615243717725e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +853,my_land,rural,15.600159098844511,0.1,0.03,20.0,2010-05-03,0.0,0.0,0.0016485551685988052,0.0,0.0,0.0,0.0,0.0,10.864965931843567,0.0,0.0,0.0,0.0,0.0,0.0011452178460108352,-0.09290435692021672,0.5 +854,my_land,urban,0.0,0.02,0.0,0.0,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +855,my_land,rural,15.500159098844511,0.1,0.0,20.0,2010-05-04,0.0,0.0,0.0016585551685988052,0.0,0.0,0.0,0.0,0.0,10.445620741480447,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +856,my_land,urban,0.0,0.004,0.004,0.0,2010-05-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +857,my_land,rural,15.438856209211325,0.1,0.04,20.0,2010-05-05,0.0,0.0,0.0016685551685988052,0.0,0.0,0.0,0.0,0.0,10.468202592685056,0.0,0.0,0.0,0.0,0.0,0.0013028896331860253,-0.0860577926637205,0.5 +858,my_land,urban,0.0,0.0,0.0,0.0,2010-05-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +859,my_land,rural,15.338856209211325,0.1,0.0,20.0,2010-05-06,0.0,0.0,0.0016785551685988053,0.0,0.0,0.0,0.0,0.0,10.546025324085631,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +860,my_land,urban,0.0,0.01,0.01,0.0,2010-05-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +861,my_land,rural,15.336334743703574,0.1,0.1,20.0,2010-05-07,0.0,0.0,0.0016885551685988053,0.0,0.0,0.0,0.0,0.0,10.630753165510706,0.0,0.0,0.0,0.0,0.0,0.0025214655077515215,-0.050429310155030424,0.5 +862,my_land,urban,0.0,0.007,0.007,0.0,2010-05-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +863,my_land,rural,15.304579126144239,0.1,0.06999999999999999,20.0,2010-05-08,0.0,0.0,0.0016985551685988053,0.0,0.0,0.0,0.0,0.0,10.71634414568884,0.0,0.0,0.0,0.0,0.0,0.0017556175593354839,-0.06511235118670967,0.5 +864,my_land,urban,0.0,0.0,0.0,0.0,2010-05-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +865,my_land,rural,15.204579126144239,0.1,0.0,20.0,2010-05-09,0.0,0.0,0.0017085551685988053,0.0,0.0,0.0,0.0,0.0,10.802043018211107,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +866,my_land,urban,0.0,0.0,0.0,0.0,2010-05-10,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +867,my_land,rural,15.10457912614424,0.1,0.0,20.0,2010-05-10,0.0,0.0,0.0017185551685988054,0.0,0.0,0.0,0.0,0.0,10.88775537727639,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +868,my_land,urban,0.0,0.0,0.0,0.0,2010-05-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +869,my_land,rural,15.00457912614424,0.1,0.0,20.0,2010-05-11,0.0,0.0,0.0017285551685988054,0.0,0.0,0.0,0.0,0.0,10.973469422159551,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +870,my_land,urban,0.0,0.008,0.008,0.0,2010-05-12,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +871,my_land,rural,14.984542643739424,0.1,0.08,20.0,2010-05-12,0.0,0.0,0.0017385551685988054,0.0,0.0,0.0,0.0,0.0,11.147576532769945,0.0,0.0,0.0,0.0,0.0,3.6482404815711525e-05,-0.02072964809631423,0.5 +872,my_land,urban,0.0,0.001,0.001,0.0,2010-05-13,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +873,my_land,rural,14.894542643739424,0.1,0.01,20.0,2010-05-13,0.0,0.0,0.0017485551685988054,0.0,0.0,0.0,0.0,0.0,11.332732784096246,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +874,my_land,urban,0.0,0.0,0.0,0.0,2010-05-14,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +875,my_land,rural,14.794542643739424,0.1,0.0,20.0,2010-05-14,0.0,0.0,0.0017585551685988055,0.0,0.0,0.0,0.0,0.0,11.519270170512032,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +876,my_land,urban,0.0,0.002,0.002,0.0,2010-05-15,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, +877,my_land,rural,14.714542643739424,0.1,0.02,20.0,2010-05-15,0.0,0.0,0.0017685551685988055,0.0,0.0,0.0,0.0,0.0,11.705980198814004,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +878,my_land,urban,0.0,0.02,0.032,0.0,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +879,my_land,rural,14.934542643739425,0.1,0.32,20.0,2010-05-16,0.0,0.0,0.0017785551685988055,0.0,0.0,0.0,0.0,0.0,11.893693819449977,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.5 +880,my_land,urban,0.0,0.0,0.0,0.0,2010-05-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +881,my_land,rural,14.834542643739425,0.1,0.0,20.0,2010-05-17,0.0,0.0,0.0017885551685988055,0.0,0.0,0.0,0.0,0.0,12.079568872431247,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +882,my_land,urban,0.0,0.0,0.0,0.0,2010-05-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +883,my_land,rural,14.734542643739426,0.1,0.0,20.0,2010-05-18,0.0,0.0,0.0017985551685988056,0.0,0.0,0.0,0.0,0.0,12.266196109053908,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +884,my_land,urban,0.0,0.0,0.0,0.0,2010-05-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +885,my_land,rural,14.634542643739426,0.1,0.0,20.0,2010-05-19,0.0,0.0,0.0018085551685988056,0.0,0.0,0.0,0.0,0.0,12.74655576363174,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +886,my_land,urban,0.0,0.0,0.0,0.0,2010-05-20,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +887,my_land,rural,14.534542643739426,0.1,0.0,20.0,2010-05-20,0.0,0.0,0.0018185551685988056,0.0,0.0,0.0,0.0,0.0,13.263631970453968,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +888,my_land,urban,0.0,0.0,0.0,0.0,2010-05-21,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +889,my_land,rural,14.434542643739427,0.1,0.0,20.0,2010-05-21,0.0,0.0,0.0018285551685988056,0.0,0.0,0.0,0.0,0.0,13.785297746306748,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +890,my_land,urban,0.0,0.0,0.0,0.0,2010-05-22,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +891,my_land,rural,14.334542643739427,0.1,0.0,20.0,2010-05-22,0.0,0.0,0.0018385551685988057,0.0,0.0,0.0,0.0,0.0,14.307537218288346,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +892,my_land,urban,0.0,0.0,0.0,0.0,2010-05-23,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +893,my_land,rural,14.234542643739427,0.1,0.0,20.0,2010-05-23,0.0,0.0,0.0018485551685988057,0.0,0.0,0.0,0.0,0.0,14.829848402286045,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +894,my_land,urban,0.0,0.0,0.0,0.0,2010-05-24,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +895,my_land,rural,14.134542643739428,0.1,0.0,20.0,2010-05-24,0.0,0.0,0.0018585551685988057,0.0,0.0,0.0,0.0,0.0,15.352168550285757,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +896,my_land,urban,0.0,0.0,0.0,0.0,2010-05-25,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, +897,my_land,rural,14.034542643739428,0.1,0.0,20.0,2010-05-25,0.0,0.0,0.0018685551685988057,0.0,0.0,0.0,0.0,0.0,15.87448981878572,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +898,my_land,urban,0.0,0.02,0.049,0.0,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0,,,,, +899,my_land,rural,14.424542643739429,0.1,0.49,20.0,2010-05-26,0.0,0.0,0.0018785551685988058,0.0,0.0,0.0,0.0,0.0,16.402473876303652,0.0,0.0,0.0,0.0,0.0,0.0,0.38999999999999996,0.5 +900,my_land,urban,0.0,0.0,0.0,0.0,2010-05-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0,,,,, +901,my_land,rural,14.324542643739429,0.1,0.0,20.0,2010-05-27,0.0,0.0,0.0018885551685988058,0.0,0.0,0.0,0.0,0.0,16.245844952037956,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +902,my_land,urban,0.0,0.005,0.005,0.0,2010-05-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0,,,,, +903,my_land,rural,14.274542643739428,0.1,0.05,20.0,2010-05-28,0.0,0.0,0.0018985551685988058,0.0,0.0,0.0,0.0,0.0,16.009302046504743,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +904,my_land,urban,0.0049999999999999975,0.02,0.065,0.0,2010-05-29,0.0,0.0,3.3333333333333325e-07,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0,,,,, +905,my_land,rural,14.824542643739429,0.1,0.65,20.0,2010-05-29,0.0,0.0,0.0019085551685988059,0.0,0.0,0.0,0.0,0.0,15.765890253800666,0.0,0.0,0.0,0.0,0.0,0.0,0.5499999999999999,0.5 +906,my_land,urban,0.0,0.0049999999999999975,0.0,0.0,2010-05-30,0.0,0.0,1.3333333333333332e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0,,,,, +907,my_land,rural,14.72454264373943,0.1,0.0,20.0,2010-05-30,0.0,0.0,0.0019185551685988059,0.0,0.0,0.0,0.0,0.0,15.515379136725084,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +908,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2010-05-31,0.0,0.0,2.333333333333333e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0,,,,, +909,my_land,rural,14.79454264373943,0.1,0.16999999999999998,20.0,2010-05-31,0.0,0.0,0.001928555168598806,0.0,0.0,0.0,0.0,0.0,15.267448841688974,0.0,0.0,0.0,0.0,0.0,0.0,0.06999999999999999,0.5 +910,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, +911,my_land,rural,14.96454264373943,0.1,0.27,20.0,2010-06-01,0.0,0.0,0.001938555168598806,0.0,0.0,0.0,0.0,0.0,15.019921908833636,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.5 +912,my_land,urban,0.0,0.0,0.0,0.0,2010-06-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, +913,my_land,rural,14.86454264373943,0.1,0.0,20.0,2010-06-02,0.0,0.0,0.001948555168598806,0.0,0.0,0.0,0.0,0.0,14.771240238604205,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +914,my_land,urban,0.0,0.0,0.0,0.0,2010-06-03,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, +915,my_land,rural,14.76454264373943,0.1,0.0,20.0,2010-06-03,0.0,0.0,0.0019585551685988058,0.0,0.0,0.0,0.0,0.0,14.880780029825528,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +916,my_land,urban,0.0,0.0,0.0,0.0,2010-06-04,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, +917,my_land,rural,14.66454264373943,0.1,0.0,20.0,2010-06-04,0.0,0.0,0.001968555168598806,0.0,0.0,0.0,0.0,0.0,15.03509750372819,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +918,my_land,urban,0.0,0.0,0.0,0.0,2010-06-05,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, +919,my_land,rural,14.564542643739431,0.1,0.0,20.0,2010-06-05,0.0,0.0,0.001978555168598806,0.0,0.0,0.0,0.0,0.0,15.195012187966023,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +920,my_land,urban,0.0,0.02,0.023,0.0,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0,,,,, +921,my_land,rural,14.694542643739432,0.1,0.22999999999999998,20.0,2010-06-06,0.0,0.0,0.001988555168598806,0.0,0.0,0.0,0.0,0.0,15.356820830958805,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 +922,my_land,urban,0.069,0.02,0.129,0.0,2010-06-07,0.0,0.0,6.330275229357798e-07,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0,,,,, +923,my_land,rural,15.884542643739431,0.1,1.29,20.0,2010-06-07,0.0,0.0,0.001998555168598806,0.0,0.0,0.0,0.0,0.0,15.526831680791272,0.0,0.0,0.0,0.0,0.0,0.0,1.1900000000000002,0.5 +924,my_land,urban,0.088,0.02,0.07900000000000001,0.0,2010-06-08,0.0,0.0,1.1227064220183485e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, +925,my_land,rural,15.89729045180037,0.1,0.79,20.0,2010-06-08,0.0,0.0,0.0019304275784169992,0.0,0.0,0.0,0.0,0.0,15.683923204595112,0.0,0.0,0.0,0.482542186756583,0.16084739558552766,0.0338626095969532,0.012747808060936151,0.5 +926,my_land,urban,0.03999999999999999,0.02,0.011999999999999999,0.0,2010-06-09,0.0,0.0,1.061353211009174e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, +927,my_land,rural,15.813893541872048,0.1,0.12,20.0,2010-06-09,0.0,0.0,0.0019284491306986542,0.0,0.0,0.0,0.0,0.0,15.593622439613187,0.0,0.0,0.0,0.07367029832392906,0.024556766107976354,0.005169845496416075,-0.08339690992832151,0.5 +928,my_land,urban,0.0,0.02,0.0,0.0,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, +929,my_land,rural,15.713893541872048,0.1,0.0,20.0,2010-06-10,0.0,0.0,0.0019384491306986542,0.0,0.0,0.0,0.0,0.0,15.477774232451647,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +930,my_land,urban,0.0,0.0,0.0,0.0,2010-06-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, +931,my_land,rural,15.613893541872049,0.1,0.0,20.0,2010-06-11,0.0,0.0,0.0019484491306986543,0.0,0.0,0.0,0.0,0.0,15.358828924056457,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +932,my_land,urban,0.0,0.002,0.002,0.0,2010-06-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, +933,my_land,rural,15.533163372747156,0.1,0.02,20.0,2010-06-12,0.0,0.0,0.0019584491306986543,0.0,0.0,0.0,0.0,0.0,15.239496470507058,0.0,0.0,0.0,0.0,0.0,0.0007301691248930458,-0.09460338249786092,0.5 +934,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +935,my_land,rural,15.598310422197667,0.1,0.51,20.0,2010-06-13,0.0,0.0,0.0019279563876216156,0.0,0.0,0.0,0.0,0.0,15.122316902713921,0.0,0.0,0.0,0.24570772726651172,0.08190257575550391,0.01724264752747451,0.06514704945050986,0.5 +936,my_land,urban,0.0,0.001,0.001,0.0,2010-06-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +937,my_land,rural,15.507950208325441,0.1,0.01,20.0,2010-06-14,0.0,0.0,0.0019379563876216156,0.0,0.0,0.0,0.0,0.0,15.001003895339242,0.0,0.0,0.0,0.0,0.0,0.0003602138722245492,-0.09720427744449098,0.5 +938,my_land,urban,0.0,0.002,0.002,0.0,2010-06-15,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +939,my_land,rural,15.427292775362783,0.1,0.02,20.0,2010-06-15,0.0,0.0,0.0019479563876216156,0.0,0.0,0.0,0.0,0.0,14.881375486917406,0.0,0.0,0.0,0.0,0.0,0.0006574329626589695,-0.09314865925317939,0.5 +940,my_land,urban,0.0,0.0,0.0,0.0,2010-06-16,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +941,my_land,rural,15.327292775362784,0.1,0.0,20.0,2010-06-16,0.0,0.0,0.0019579563876216156,0.0,0.0,0.0,0.0,0.0,15.201243363364677,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +942,my_land,urban,0.0,0.0,0.0,0.0,2010-06-17,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +943,my_land,rural,15.227292775362784,0.1,0.0,20.0,2010-06-17,0.0,0.0,0.0019679563876216157,0.0,0.0,0.0,0.0,0.0,15.576048275420586,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +944,my_land,urban,0.0,0.007,0.007,0.0,2010-06-18,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +945,my_land,rural,15.195990715908907,0.1,0.06999999999999999,20.0,2010-06-18,0.0,0.0,0.0019779563876216157,0.0,0.0,0.0,0.0,0.0,15.957720316927574,0.0,0.0,0.0,0.0,0.0,0.0013020594538765385,-0.05604118907753077,0.5 +946,my_land,urban,0.0,0.0,0.0,0.0,2010-06-19,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +947,my_land,rural,15.095990715908908,0.1,0.0,20.0,2010-06-19,0.0,0.0,0.0019879563876216157,0.0,0.0,0.0,0.0,0.0,16.340250757115946,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +948,my_land,urban,0.0,0.0,0.0,0.0,2010-06-20,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +949,my_land,rural,14.995990715908908,0.1,0.0,20.0,2010-06-20,0.0,0.0,0.0019979563876216157,0.0,0.0,0.0,0.0,0.0,16.722888489639494,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +950,my_land,urban,0.0,0.0,0.0,0.0,2010-06-21,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +951,my_land,rural,14.895990715908908,0.1,0.0,20.0,2010-06-21,0.0,0.0,0.0020079563876216158,0.0,0.0,0.0,0.0,0.0,17.105539633704936,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +952,my_land,urban,0.0,0.0,0.0,0.0,2010-06-22,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +953,my_land,rural,14.795990715908909,0.1,0.0,20.0,2010-06-22,0.0,0.0,0.002017956387621616,0.0,0.0,0.0,0.0,0.0,17.488192454213117,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +954,my_land,urban,0.0,0.0,0.0,0.0,2010-06-23,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +955,my_land,rural,14.69599071590891,0.1,0.0,20.0,2010-06-23,0.0,0.0,0.002027956387621616,0.0,0.0,0.0,0.0,0.0,17.720845484276637,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +956,my_land,urban,0.0,0.0,0.0,0.0,2010-06-24,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +957,my_land,rural,14.59599071590891,0.1,0.0,20.0,2010-06-24,0.0,0.0,0.002037956387621616,0.0,0.0,0.0,0.0,0.0,17.934748540534578,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +958,my_land,urban,0.0,0.0,0.0,0.0,2010-06-25,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +959,my_land,rural,14.49599071590891,0.1,0.0,20.0,2010-06-25,0.0,0.0,0.002047956387621616,0.0,0.0,0.0,0.0,0.0,18.146307850066826,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +960,my_land,urban,0.0,0.0,0.0,0.0,2010-06-26,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +961,my_land,rural,14.39599071590891,0.1,0.0,20.0,2010-06-26,0.0,0.0,0.002057956387621616,0.0,0.0,0.0,0.0,0.0,18.357574198758357,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +962,my_land,urban,0.0,0.0,0.0,0.0,2010-06-27,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +963,my_land,rural,14.29599071590891,0.1,0.0,20.0,2010-06-27,0.0,0.0,0.002067956387621616,0.0,0.0,0.0,0.0,0.0,18.568803919844797,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +964,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-06-28,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +965,my_land,rural,14.22599071590891,0.1,0.03,20.0,2010-06-28,0.0,0.0,0.002077956387621616,0.0,0.0,0.0,0.0,0.0,18.7800290624806,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +966,my_land,urban,0.0,0.001,0.001,0.0,2010-06-29,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +967,my_land,rural,14.13599071590891,0.1,0.01,20.0,2010-06-29,0.0,0.0,0.002087956387621616,0.0,0.0,0.0,0.0,0.0,18.991253632810075,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +968,my_land,urban,0.0,0.0,0.0,0.0,2010-06-30,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +969,my_land,rural,14.03599071590891,0.1,0.0,20.0,2010-06-30,0.0,0.0,0.002097956387621616,0.0,0.0,0.0,0.0,0.0,18.795335276601257,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +970,my_land,urban,0.0,0.005,0.005,0.0,2010-07-01,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +971,my_land,rural,13.98599071590891,0.1,0.05,20.0,2010-07-01,0.0,0.0,0.002107956387621616,0.0,0.0,0.0,0.0,0.0,18.548524054575157,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +972,my_land,urban,0.0,0.001,0.001,0.0,2010-07-02,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +973,my_land,rural,13.89599071590891,0.1,0.01,20.0,2010-07-02,0.0,0.0,0.002117956387621616,0.0,0.0,0.0,0.0,0.0,18.295351224321895,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +974,my_land,urban,0.0,0.0,0.0,0.0,2010-07-03,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +975,my_land,rural,13.79599071590891,0.1,0.0,20.0,2010-07-03,0.0,0.0,0.002127956387621616,0.0,0.0,0.0,0.0,0.0,18.041383185540237,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +976,my_land,urban,0.0,0.0,0.0,0.0,2010-07-04,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +977,my_land,rural,13.695990715908911,0.1,0.0,20.0,2010-07-04,0.0,0.0,0.002137956387621616,0.0,0.0,0.0,0.0,0.0,17.78731575319253,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +978,my_land,urban,0.0,0.0,0.0,0.0,2010-07-05,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +979,my_land,rural,13.595990715908911,0.1,0.0,20.0,2010-07-05,0.0,0.0,0.002147956387621616,0.0,0.0,0.0,0.0,0.0,17.533235896649067,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +980,my_land,urban,0.0,0.0,0.0,0.0,2010-07-06,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +981,my_land,rural,13.495990715908912,0.1,0.0,20.0,2010-07-06,0.0,0.0,0.002157956387621616,0.0,0.0,0.0,0.0,0.0,17.279154487081133,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +982,my_land,urban,0.0,0.0,0.0,0.0,2010-07-07,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +983,my_land,rural,13.395990715908912,0.1,0.0,20.0,2010-07-07,0.0,0.0,0.002167956387621616,0.0,0.0,0.0,0.0,0.0,17.23668002838514,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +984,my_land,urban,0.0,0.0,0.0,0.0,2010-07-08,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +985,my_land,rural,13.295990715908912,0.1,0.0,20.0,2010-07-08,0.0,0.0,0.0021779563876216162,0.0,0.0,0.0,0.0,0.0,17.22065643104814,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +986,my_land,urban,0.0,0.0,0.0,0.0,2010-07-09,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +987,my_land,rural,13.195990715908913,0.1,0.0,20.0,2010-07-09,0.0,0.0,0.0021879563876216162,0.0,0.0,0.0,0.0,0.0,17.207939198881018,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +988,my_land,urban,0.0,0.002,0.002,0.0,2010-07-10,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +989,my_land,rural,13.115990715908913,0.1,0.02,20.0,2010-07-10,0.0,0.0,0.0021979563876216163,0.0,0.0,0.0,0.0,0.0,17.19563525486013,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +990,my_land,urban,0.0,0.002,0.002,0.0,2010-07-11,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +991,my_land,rural,13.035990715908913,0.1,0.02,20.0,2010-07-11,0.0,0.0,0.0022079563876216163,0.0,0.0,0.0,0.0,0.0,17.183382979357518,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +992,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-07-12,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, +993,my_land,rural,12.995990715908913,0.1,0.06,20.0,2010-07-12,0.0,0.0,0.0022179563876216163,0.0,0.0,0.0,0.0,0.0,17.17113715491969,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +994,my_land,urban,0.0,0.02,0.026,0.0,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0,,,,, +995,my_land,rural,13.155990715908914,0.1,0.26,20.0,2010-07-13,0.0,0.0,0.0022279563876216163,0.0,0.0,0.0,0.0,0.0,17.16068427522084,0.0,0.0,0.0,0.0,0.0,0.0,0.15999999999999998,0.5 +996,my_land,urban,0.0,0.02,0.038,0.0,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0,,,,, +997,my_land,rural,13.435990715908913,0.1,0.38,20.0,2010-07-14,0.0,0.0,0.0022379563876216164,0.0,0.0,0.0,0.0,0.0,17.351970727340774,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 +998,my_land,urban,0.006999999999999999,0.02,0.067,0.0,2010-07-15,0.0,0.0,1.4893617021276598e-07,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0,,,,, +999,my_land,rural,14.005990715908913,0.1,0.67,20.0,2010-07-15,0.0,0.0,0.0022479563876216164,0.0,0.0,0.0,0.0,0.0,17.570409369017607,0.0,0.0,0.0,0.0,0.0,0.0,0.5700000000000001,0.5 +1000,my_land,urban,0.0,0.02,0.035,0.0,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, +1001,my_land,rural,14.255990715908913,0.1,0.35000000000000003,20.0,2010-07-16,0.0,0.0,0.0022579563876216164,0.0,0.0,0.0,0.0,0.0,17.784056527721038,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.5 +1002,my_land,urban,0.0,0.0,0.0,0.0,2010-07-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, +1003,my_land,rural,14.155990715908914,0.1,0.0,20.0,2010-07-17,0.0,0.0,0.0022679563876216165,0.0,0.0,0.0,0.0,0.0,17.99800706846513,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1004,my_land,urban,0.0,0.0,0.0,0.0,2010-07-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, +1005,my_land,rural,14.055990715908914,0.1,0.0,20.0,2010-07-18,0.0,0.0,0.0022779563876216165,0.0,0.0,0.0,0.0,0.0,18.21537588105814,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1006,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-07-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, +1007,my_land,rural,13.985990715908914,0.1,0.03,20.0,2010-07-19,0.0,0.0,0.0022879563876216165,0.0,0.0,0.0,0.0,0.0,18.43317198513227,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1008,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-07-20,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, +1009,my_land,rural,13.945990715908914,0.1,0.06,20.0,2010-07-20,0.0,0.0,0.0022979563876216165,0.0,0.0,0.0,0.0,0.0,18.507271498141538,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +1010,my_land,urban,0.0,0.001,0.001,0.0,2010-07-21,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, +1011,my_land,rural,13.855990715908915,0.1,0.01,20.0,2010-07-21,0.0,0.0,0.0023079563876216166,0.0,0.0,0.0,0.0,0.0,18.563408937267695,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1012,my_land,urban,0.0010000000000000009,0.02,0.061000000000000006,0.0,2010-07-22,0.0,0.0,1.4634146341463442e-07,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1013,my_land,rural,14.365990715908914,0.1,0.61,20.0,2010-07-22,0.0,0.0,0.0023179563876216166,0.0,0.0,0.0,0.0,0.0,18.62395342935461,0.0,0.0,0.0,0.0,0.0,0.0,0.51,0.5 +1014,my_land,urban,0.0,0.0010000000000000009,0.0,0.0,2010-07-23,0.0,0.0,1.1463414634146344e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1015,my_land,rural,14.265990715908915,0.1,0.0,20.0,2010-07-23,0.0,0.0,0.0023279563876216166,0.0,0.0,0.0,0.0,0.0,18.671744178669325,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1016,my_land,urban,0.0,0.0,0.0,0.0,2010-07-24,0.0,0.0,2.1463414634146343e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1017,my_land,rural,14.165990715908915,0.1,0.0,20.0,2010-07-24,0.0,0.0,0.0023379563876216166,0.0,0.0,0.0,0.0,0.0,18.724593022333664,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1018,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2010-07-25,0.0,0.0,3.1463414634146345e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1019,my_land,rural,14.175990715908915,0.1,0.11,20.0,2010-07-25,0.0,0.0,0.0023479563876216167,0.0,0.0,0.0,0.0,0.0,18.77820863399733,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 +1020,my_land,urban,0.0,0.002,0.002,0.0,2010-07-26,0.0,0.0,4.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1021,my_land,rural,14.095990715908915,0.1,0.02,20.0,2010-07-26,0.0,0.0,0.0023579563876216167,0.0,0.0,0.0,0.0,0.0,18.831651079249667,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1022,my_land,urban,0.0,0.007,0.007,0.0,2010-07-27,0.0,0.0,5.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1023,my_land,rural,14.065990715908915,0.1,0.06999999999999999,20.0,2010-07-27,0.0,0.0,0.0023679563876216167,0.0,0.0,0.0,0.0,0.0,18.88520638490621,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 +1024,my_land,urban,0.0,0.0,0.0,0.0,2010-07-28,0.0,0.0,6.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1025,my_land,rural,13.965990715908916,0.1,0.0,20.0,2010-07-28,0.0,0.0,0.0023779563876216167,0.0,0.0,0.0,0.0,0.0,18.822257943113275,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1026,my_land,urban,0.0,0.0,0.0,0.0,2010-07-29,0.0,0.0,7.1463414634146335e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1027,my_land,rural,13.865990715908916,0.1,0.0,20.0,2010-07-29,0.0,0.0,0.0023879563876216168,0.0,0.0,0.0,0.0,0.0,18.74474652538916,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1028,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2010-07-30,0.0,0.0,8.146341463414633e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1029,my_land,rural,13.875990715908916,0.1,0.11,20.0,2010-07-30,0.0,0.0,0.002397956387621617,0.0,0.0,0.0,0.0,0.0,18.665536507636478,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 +1030,my_land,urban,0.0,0.0,0.0,0.0,2010-07-31,0.0,0.0,9.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1031,my_land,rural,13.775990715908916,0.1,0.0,20.0,2010-07-31,0.0,0.0,0.002407956387621617,0.0,0.0,0.0,0.0,0.0,18.58587063595456,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1032,my_land,urban,0.0,0.0,0.0,0.0,2010-08-01,0.0,0.0,1.0146341463414634e-05,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1033,my_land,rural,13.675990715908917,0.1,0.0,20.0,2010-08-01,0.0,0.0,0.002417956387621617,0.0,0.0,0.0,0.0,0.0,18.50626954699432,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1034,my_land,urban,0.0,0.0,0.0,0.0,2010-08-02,0.0,0.0,1.1146341463414635e-05,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1035,my_land,rural,13.575990715908917,0.1,0.0,20.0,2010-08-02,0.0,0.0,0.002427956387621617,0.0,0.0,0.0,0.0,0.0,18.426676548374292,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1036,my_land,urban,0.0,0.004,0.004,0.0,2010-08-03,0.0,0.0,1.2146341463414636e-05,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, +1037,my_land,rural,13.515990715908917,0.1,0.04,20.0,2010-08-03,0.0,0.0,0.002437956387621617,0.0,0.0,0.0,0.0,0.0,18.34708456854679,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1038,my_land,urban,0.0,0.02,0.036,0.0,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, +1039,my_land,rural,13.775990715908916,0.1,0.36,20.0,2010-08-04,0.0,0.0,0.002447956387621617,0.0,0.0,0.0,0.0,0.0,18.08512159988485,0.0,0.0,0.0,0.0,0.0,0.0,0.26,0.5 +1040,my_land,urban,0.0,0.0,0.0,0.0,2010-08-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, +1041,my_land,rural,13.675990715908917,0.1,0.0,20.0,2010-08-05,0.0,0.0,0.002457956387621617,0.0,0.0,0.0,0.0,0.0,17.795461627485608,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1042,my_land,urban,0.0,0.009,0.009,0.0,2010-08-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, +1043,my_land,rural,13.665990715908917,0.1,0.09,20.0,2010-08-06,0.0,0.0,0.002467956387621617,0.0,0.0,0.0,0.0,0.0,17.504789848435703,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1044,my_land,urban,0.0,0.015,0.015,0.0,2010-08-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, +1045,my_land,rural,13.715990715908918,0.1,0.15,20.0,2010-08-07,0.0,0.0,0.002477956387621617,0.0,0.0,0.0,0.0,0.0,17.214384862098754,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 +1046,my_land,urban,0.0,0.0,0.0,0.0,2010-08-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, +1047,my_land,rural,13.615990715908918,0.1,0.0,20.0,2010-08-08,0.0,0.0,0.002487956387621617,0.0,0.0,0.0,0.0,0.0,16.923226680262342,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1048,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0,,,,, +1049,my_land,rural,13.935990715908918,0.1,0.42,20.0,2010-08-09,0.0,0.0,0.002497956387621617,0.0,0.0,0.0,0.0,0.0,16.6345664107018,0.0,0.0,0.0,0.0,0.0,0.0,0.31999999999999995,0.5 +1050,my_land,urban,0.029000000000000012,0.02,0.089,0.0,2010-08-10,0.0,0.0,4.2028985507246384e-07,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0,,,,, +1051,my_land,rural,14.725990715908917,0.1,0.89,20.0,2010-08-10,0.0,0.0,0.002507956387621617,0.0,0.0,0.0,0.0,0.0,16.346618377834012,0.0,0.0,0.0,0.0,0.0,0.0,0.79,0.5 +1052,my_land,urban,0.0,0.02,0.0,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0,,,,, +1053,my_land,rural,14.625990715908918,0.1,0.0,20.0,2010-08-11,0.0,0.0,0.002517956387621617,0.0,0.0,0.0,0.0,0.0,16.236184442229252,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1054,my_land,urban,0.0,0.013,0.013,0.0,2010-08-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0,,,,, +1055,my_land,rural,14.655990715908917,0.1,0.13,20.0,2010-08-12,0.0,0.0,0.002527956387621617,0.0,0.0,0.0,0.0,0.0,16.15297480925511,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +1056,my_land,urban,0.0,0.02,0.057999999999999996,0.0,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0,,,,, +1057,my_land,rural,15.135990715908918,0.1,0.58,20.0,2010-08-13,0.0,0.0,0.002537956387621617,0.0,0.0,0.0,0.0,0.0,16.07633408596703,0.0,0.0,0.0,0.0,0.0,0.0,0.48,0.5 +1058,my_land,urban,0.0,0.02,0.038,0.0,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, +1059,my_land,rural,15.324412132407694,0.1,0.38,20.0,2010-08-14,0.0,0.0,0.0025335728043374413,0.0,0.0,0.0,0.0,0.0,15.995485845994407,0.0,0.0,0.0,0.06524974074462095,0.02174991358154032,0.00457892917506112,0.1884214164987776,0.5 +1060,my_land,urban,0.0,0.0,0.0,0.0,2010-08-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, +1061,my_land,rural,15.224412132407695,0.1,0.0,20.0,2010-08-15,0.0,0.0,0.0025435728043374413,0.0,0.0,0.0,0.0,0.0,15.913721448249301,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1062,my_land,urban,0.0,0.007,0.007,0.0,2010-08-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, +1063,my_land,rural,15.193123375060894,0.1,0.06999999999999999,20.0,2010-08-16,0.0,0.0,0.0025535728043374413,0.0,0.0,0.0,0.0,0.0,15.833858036031161,0.0,0.0,0.0,0.0,0.0,0.0012887573468000444,-0.055775146936000886,0.5 +1064,my_land,urban,0.0,0.002,0.002,0.0,2010-08-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, +1065,my_land,rural,15.11279779392864,0.1,0.02,20.0,2010-08-17,0.0,0.0,0.0025635728043374413,0.0,0.0,0.0,0.0,0.0,15.754232254503895,0.0,0.0,0.0,0.0,0.0,0.0003255811322544887,-0.08651162264508977,0.5 +1066,my_land,urban,0.0,0.008,0.008,0.0,2010-08-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, +1067,my_land,rural,15.091981720399174,0.1,0.08,20.0,2010-08-18,0.0,0.0,0.0025735728043374414,0.0,0.0,0.0,0.0,0.0,15.797850459312988,0.0,0.0,0.0,0.0,0.0,0.000816073529466313,-0.036321470589326256,0.5 +1068,my_land,urban,0.0,0.02,0.041,0.0,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0,,,,, +1069,my_land,rural,15.332503997552307,0.1,0.41000000000000003,20.0,2010-08-19,0.0,0.0,0.002572498632779573,0.0,0.0,0.0,0.0,0.0,15.859474429273048,0.0,0.0,0.0,0.049502877528393906,0.016500959176131303,0.0034738861423434324,0.2405222771531314,0.5 +1070,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0,,,,, +1071,my_land,rural,15.353104952031218,0.1,0.24,20.0,2010-08-20,0.0,0.0,0.0025635589998039363,0.0,0.0,0.0,0.0,0.0,15.919291185447067,0.0,0.0,0.0,0.08507181993377468,0.028357273311258226,0.005969952276054364,0.020600954478912706,0.5 +1072,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0,,,,, +1073,my_land,rural,15.464639482977937,0.1,0.44,20.0,2010-08-21,0.0,0.0,0.0025379396761067725,0.0,0.0,0.0,0.0,0.0,15.981990197921604,0.0,0.0,0.0,0.16278164670046202,0.054260548900154006,0.011423273452664001,0.11153453094671999,0.5 +1074,my_land,urban,0.23900000000000002,0.02,0.299,0.0,2010-08-22,0.0,0.0,8.566308243727598e-07,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0,,,,, +1075,my_land,rural,16.492068723987334,0.1,2.9899999999999998,20.0,2010-08-22,0.0,0.0,0.002301058021399201,0.0,0.0,0.0,0.0,0.0,16.061189264451972,0.0,0.0,0.0,1.3270816657808033,0.4423605552602678,0.09312853794953006,1.0274292410093988,0.5 +1076,my_land,urban,0.24400000000000002,0.02,0.065,0.0,2010-08-23,0.0,0.0,1.595133525165329e-06,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0,,,,, +1077,my_land,rural,16.410849956023643,0.1,0.65,20.0,2010-08-23,0.0,0.0,0.002229588140865344,0.0,0.0,0.0,0.0,0.0,16.108143633329803,0.0,0.0,0.0,0.44974337217412824,0.1499144573913761,0.03156093839818445,-0.0812187679636889,0.5 +1078,my_land,urban,0.18500000000000003,0.02,0.001,0.0,2010-08-24,0.0,0.0,2.133776454024826e-06,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0,,,,, +1079,my_land,rural,16.320368118961806,0.1,0.01,20.0,2010-08-24,0.0,0.0,0.002239588140865344,0.0,0.0,0.0,0.0,0.0,16.163517954166227,0.0,0.0,0.0,0.0,0.0,0.0004818370618362331,-0.09963674123672467,0.5 +1080,my_land,urban,0.47400000000000003,0.02,0.349,0.0,2010-08-25,0.0,0.0,2.8899028000151115e-06,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0,,,,, +1081,my_land,rural,16.38298630552844,0.1,3.49,20.0,2010-08-25,0.0,0.0,0.0018857436316655645,0.0,0.0,0.0,0.0,0.0,15.922093479762975,0.0,0.0,0.0,2.3707595420712733,0.7902531806904244,0.1663690906716683,0.06261818656663407,0.5 +1082,my_land,urban,0.47100000000000003,0.02,0.057,0.0,2010-08-26,0.0,0.0,3.585409430150915e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1083,my_land,rural,16.305356839104544,0.1,0.5700000000000001,20.0,2010-08-26,0.0,0.0,0.001837127205709609,0.0,0.0,0.0,0.0,0.0,15.617162003971504,0.0,0.0,0.0,0.39018599482702754,0.13006199827567583,0.027381473321194914,-0.07762946642389827,0.5 +1084,my_land,urban,0.41200000000000003,0.02,0.001,0.0,2010-08-27,0.0,0.0,4.179620985004816e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1085,my_land,rural,16.214881104923588,0.1,0.01,20.0,2010-08-27,0.0,0.0,0.0018471272057096091,0.0,0.0,0.0,0.0,0.0,15.314645250496438,0.0,0.0,0.0,0.0,0.0,0.00047573418095675285,-0.09951468361913504,0.5 +1086,my_land,urban,0.35200000000000004,0.02,0.0,0.0,2010-08-28,0.0,0.0,4.651088231432896e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1087,my_land,rural,16.114881104923587,0.1,0.0,20.0,2010-08-28,0.0,0.0,0.0018571272057096092,0.0,0.0,0.0,0.0,0.0,15.014330656312056,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1088,my_land,urban,0.30300000000000005,0.02,0.011000000000000001,0.0,2010-08-29,0.0,0.0,4.992069195697281e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1089,my_land,rural,16.023706533020405,0.1,0.11,20.0,2010-08-29,0.0,0.0,0.0018559942973095972,0.0,0.0,0.0,0.0,0.0,14.714308025464808,0.0,0.0,0.0,0.0720868824810161,0.024028960827005372,0.0050587285951590255,-0.09117457190318051,0.5 +1090,my_land,urban,0.24300000000000002,0.02,0.0,0.0,2010-08-30,0.0,0.0,5.145133620333708e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1091,my_land,rural,15.923706533020406,0.1,0.0,20.0,2010-08-30,0.0,0.0,0.0018659942973095972,0.0,0.0,0.0,0.0,0.0,14.4142885031831,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1092,my_land,urban,0.18300000000000002,0.02,0.0,0.0,2010-08-31,0.0,0.0,5.042867500094478e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1093,my_land,rural,15.823706533020406,0.1,0.0,20.0,2010-08-31,0.0,0.0,0.0018759942973095973,0.0,0.0,0.0,0.0,0.0,14.114286062897888,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1094,my_land,urban,0.12300000000000003,0.02,0.0,0.0,2010-09-01,0.0,0.0,4.559955230132643e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1095,my_land,rural,15.723706533020406,0.1,0.0,20.0,2010-09-01,0.0,0.0,0.0018859942973095973,0.0,0.0,0.0,0.0,0.0,14.145535760362236,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1096,my_land,urban,0.06300000000000003,0.02,0.0,0.0,2010-09-02,0.0,0.0,3.4007493155180243e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1097,my_land,rural,15.623706533020407,0.1,0.0,20.0,2010-09-02,0.0,0.0,0.0018959942973095973,0.0,0.0,0.0,0.0,0.0,14.21819196754528,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1098,my_land,urban,0.0030000000000000235,0.02,0.0,0.0,2010-09-03,0.0,0.0,3.0702902201288783e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1099,my_land,rural,15.523706533020407,0.1,0.0,20.0,2010-09-03,0.0,0.0,0.0019059942973095973,0.0,0.0,0.0,0.0,0.0,14.296023995943163,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1100,my_land,urban,0.0,0.0050000000000000235,0.002,0.0,2010-09-04,0.0,0.0,1.3070290220128878e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1101,my_land,rural,15.443037272066238,0.1,0.02,20.0,2010-09-04,0.0,0.0,0.0019159942973095974,0.0,0.0,0.0,0.0,0.0,14.374503001992897,0.0,0.0,0.0,0.0,0.0,0.0006692609541691597,-0.09338521908338321,0.5 +1102,my_land,urban,0.0,0.019,0.019,0.0,2010-09-05,0.0,0.0,2.3070290220128877e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, +1103,my_land,rural,15.41816639553898,0.1,0.19,20.0,2010-09-05,0.0,0.0,0.0019124582217937283,0.0,0.0,0.0,0.0,0.0,14.45362845415143,0.0,0.0,0.0,0.08184549952567267,0.027281833175224226,0.005743543826362995,-0.024870876527259902,0.5 +1104,my_land,urban,0.04599999999999999,0.02,0.106,0.0,2010-09-06,0.0,0.0,1.7688759885185212e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1105,my_land,rural,15.760753701249751,0.1,1.06,20.0,2010-09-06,0.0,0.0,0.0018534802928839458,0.0,0.0,0.0,0.0,0.0,14.537716697020807,0.0,0.0,0.0,0.43990654468107676,0.14663551489369225,0.030870634714461533,0.34258730571076945,0.5 +1106,my_land,urban,0.0,0.02,0.005,0.0,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1107,my_land,rural,15.708733574411994,0.1,0.05,20.0,2010-09-07,0.0,0.0,0.0018634802928839459,0.0,0.0,0.0,0.0,0.0,14.5609645871276,0.0,0.0,0.0,0.0,0.0,0.00202012683775721,-0.0904025367551442,0.5 +1108,my_land,urban,0.0,0.0,0.0,0.0,2010-09-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1109,my_land,rural,15.608733574411994,0.1,0.0,20.0,2010-09-08,0.0,0.0,0.001873480292883946,0.0,0.0,0.0,0.0,0.0,14.582620573390951,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1110,my_land,urban,0.0,0.004,0.004,0.0,2010-09-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1111,my_land,rural,15.547279618645591,0.1,0.04,20.0,2010-09-09,0.0,0.0,0.001883480292883946,0.0,0.0,0.0,0.0,0.0,14.60407757167387,0.0,0.0,0.0,0.0,0.0,0.0014539557664029752,-0.08907911532805951,0.5 +1112,my_land,urban,0.0,0.01,0.01,0.0,2010-09-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1113,my_land,rural,15.54384826193452,0.1,0.1,20.0,2010-09-10,0.0,0.0,0.001893480292883946,0.0,0.0,0.0,0.0,0.0,14.625509696459234,0.0,0.0,0.0,0.0,0.0,0.003431356711069605,-0.0686271342213921,0.5 +1114,my_land,urban,0.0,0.001,0.001,0.0,2010-09-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1115,my_land,rural,15.453506339292364,0.1,0.01,20.0,2010-09-11,0.0,0.0,0.001903480292883946,0.0,0.0,0.0,0.0,0.0,14.646938712057405,0.0,0.0,0.0,0.0,0.0,0.00034192264215623485,-0.0968384528431247,0.5 +1116,my_land,urban,0.0,0.0,0.0,0.0,2010-09-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1117,my_land,rural,15.353506339292364,0.1,0.0,20.0,2010-09-12,0.0,0.0,0.001913480292883946,0.0,0.0,0.0,0.0,0.0,14.668367339007176,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1118,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-09-13,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1119,my_land,rural,15.311947374862875,0.1,0.06,20.0,2010-09-13,0.0,0.0,0.001923480292883946,0.0,0.0,0.0,0.0,0.0,14.689795917375898,0.0,0.0,0.0,0.0,0.0,0.0015589644294888149,-0.0711792885897763,0.5 +1120,my_land,urban,0.0,0.02,0.02,0.0,2010-09-14,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1121,my_land,rural,15.316963196315696,0.1,0.2,20.0,2010-09-14,0.0,0.0,0.0019221565250184401,0.0,0.0,0.0,0.0,0.0,14.711850597830727,0.0,0.0,0.0,0.06767622721486417,0.022558742404954726,0.00474920892735889,0.005015821452822203,0.5 +1122,my_land,urban,0.0,0.002,0.002,0.0,2010-09-15,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1123,my_land,rural,15.236482684489818,0.1,0.02,20.0,2010-09-15,0.0,0.0,0.0019321565250184402,0.0,0.0,0.0,0.0,0.0,14.550588469728842,0.0,0.0,0.0,0.0,0.0,0.00048051182587770307,-0.08961023651755406,0.5 +1124,my_land,urban,0.0,0.002,0.002,0.0,2010-09-16,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1125,my_land,rural,15.156098679847094,0.1,0.02,20.0,2010-09-16,0.0,0.0,0.0019421565250184402,0.0,0.0,0.0,0.0,0.0,14.367037841216105,0.0,0.0,0.0,0.0,0.0,0.0003840046427236764,-0.08768009285447353,0.5 +1126,my_land,urban,0.0,0.0,0.0,0.0,2010-09-17,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1127,my_land,rural,15.056098679847095,0.1,0.0,20.0,2010-09-17,0.0,0.0,0.0019521565250184402,0.0,0.0,0.0,0.0,0.0,14.180701157652013,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1128,my_land,urban,0.0,0.001,0.001,0.0,2010-09-18,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1129,my_land,rural,14.96604533042253,0.1,0.01,20.0,2010-09-18,0.0,0.0,0.0019621565250184402,0.0,0.0,0.0,0.0,0.0,13.994016217206504,0.0,0.0,0.0,0.0,0.0,5.3349424564661355e-05,-0.09106698849129322,0.5 +1130,my_land,urban,0.0,0.001,0.001,0.0,2010-09-19,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1131,my_land,rural,14.87604533042253,0.1,0.01,20.0,2010-09-19,0.0,0.0,0.0019721565250184403,0.0,0.0,0.0,0.0,0.0,13.807287744650814,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1132,my_land,urban,0.0,0.0,0.0,0.0,2010-09-20,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1133,my_land,rural,14.77604533042253,0.1,0.0,20.0,2010-09-20,0.0,0.0,0.0019821565250184403,0.0,0.0,0.0,0.0,0.0,13.620553823081353,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1134,my_land,urban,0.0,0.0,0.0,0.0,2010-09-21,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, +1135,my_land,rural,14.67604533042253,0.1,0.0,20.0,2010-09-21,0.0,0.0,0.0019921565250184403,0.0,0.0,0.0,0.0,0.0,13.43381922788517,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1136,my_land,urban,0.0,0.02,0.053,0.0,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0,,,,, +1137,my_land,rural,15.10604533042253,0.1,0.53,20.0,2010-09-22,0.0,0.0,0.0020021565250184403,0.0,0.0,0.0,0.0,0.0,13.242852430991487,0.0,0.0,0.0,0.0,0.0,0.0,0.43,0.5 +1138,my_land,urban,0.0,0.02,0.032,0.0,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, +1139,my_land,rural,15.26430069917166,0.1,0.32,20.0,2010-09-23,0.0,0.0,0.002004453843280228,0.0,0.0,0.0,0.0,0.0,13.049605816238184,0.0,0.0,0.0,0.043993049766245136,0.014664349922081711,0.003087231562543519,0.15825536874912965,0.5 +1140,my_land,urban,0.0,0.001,0.001,0.0,2010-09-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, +1141,my_land,rural,15.17409117576737,0.1,0.01,20.0,2010-09-24,0.0,0.0,0.002014453843280228,0.0,0.0,0.0,0.0,0.0,12.856200727029774,0.0,0.0,0.0,0.0,0.0,0.00020952340429017773,-0.09419046808580356,0.5 +1142,my_land,urban,0.0,0.0,0.0,0.0,2010-09-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, +1143,my_land,rural,15.07409117576737,0.1,0.0,20.0,2010-09-25,0.0,0.0,0.002024453843280228,0.0,0.0,0.0,0.0,0.0,12.663275090878722,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1144,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-09-26,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, +1145,my_land,rural,15.003883153135343,0.1,0.03,20.0,2010-09-26,0.0,0.0,0.002034453843280228,0.0,0.0,0.0,0.0,0.0,12.47040938635984,0.0,0.0,0.0,0.0,0.0,0.00020802263202740907,-0.07416045264054819,0.5 +1146,my_land,urban,0.0,0.004,0.004,0.0,2010-09-27,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, +1147,my_land,rural,14.943867674694493,0.1,0.04,20.0,2010-09-27,0.0,0.0,0.002044453843280228,0.0,0.0,0.0,0.0,0.0,12.27755117329498,0.0,0.0,0.0,0.0,0.0,1.5478440849844067e-05,-0.06030956881699688,0.5 +1148,my_land,urban,0.0,0.02,0.038,0.0,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0,,,,, +1149,my_land,rural,15.223867674694493,0.1,0.38,20.0,2010-09-28,0.0,0.0,0.002054453843280228,0.0,0.0,0.0,0.0,0.0,12.084975409154378,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 +1150,my_land,urban,0.0,0.02,0.043,0.0,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0,,,,, +1151,my_land,rural,15.395844511657737,0.1,0.43,20.0,2010-09-29,0.0,0.0,0.0020445181287901825,0.0,0.0,0.0,0.0,0.0,12.198516680537638,0.0,0.0,0.0,0.11259150366368784,0.03753050122122927,0.007901158151837742,0.17197683696324517,0.5 +1152,my_land,urban,0.01900000000000001,0.02,0.07900000000000001,0.0,2010-09-30,0.0,0.0,3.2203389830508484e-07,0.0,0.0,0.0,0.0,0.0,12.76428571,0.0,0.0,0.0,,,,, +1153,my_land,rural,15.642124079544889,0.1,0.79,20.0,2010-09-30,0.0,0.0,0.0020006045020262504,0.0,0.0,0.0,0.0,0.0,12.350968954866211,0.0,0.0,0.0,0.3161508078804041,0.10538360262680137,0.022186021605642398,0.24627956788715216,0.5 +1154,my_land,urban,0.08200000000000002,0.02,0.123,0.0,2010-10-01,0.0,0.0,8.885801611558769e-07,0.0,0.0,0.0,0.0,0.0,12.918062059016393,0.0,0.0,0.0,,,,, +1155,my_land,rural,15.853262522859788,0.1,1.23,20.0,2010-10-01,0.0,0.0,0.0019056735663093688,0.0,0.0,0.0,0.0,0.0,12.508516661502183,0.0,0.0,0.0,0.6546888591381358,0.2182296197127119,0.04594307783425515,0.21113844331489723,0.5 +1156,my_land,urban,0.139,0.02,0.117,0.0,2010-10-02,0.0,0.0,1.466551074864061e-06,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0,,,,, +1157,my_land,rural,15.933378084360733,0.1,1.17,20.0,2010-10-02,0.0,0.0,0.0018089113631204615,0.0,0.0,0.0,0.0,0.0,12.664680678616817,0.0,0.0,0.0,0.705292662430577,0.23509755414352565,0.049494221924952765,0.08011556150094475,0.5 +1158,my_land,urban,0.091,0.02,0.011999999999999999,0.0,2010-10-03,0.0,0.0,1.7134057084933551e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0,,,,, +1159,my_land,rural,15.848577229797959,0.1,0.12,20.0,2010-10-03,0.0,0.0,0.0018075562888481688,0.0,0.0,0.0,0.0,0.0,12.816195540115263,0.0,0.0,0.0,0.07467060887597708,0.02489020295865903,0.005240042728138744,-0.08480085456277489,0.5 +1160,my_land,urban,0.04399999999999999,0.02,0.013,0.0,2010-10-04,0.0,0.0,1.4213077520679477e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0,,,,, +1161,my_land,rural,15.768817343112016,0.1,0.13,20.0,2010-10-04,0.0,0.0,0.0018056165819088034,0.0,0.0,0.0,0.0,0.0,12.97179791428286,0.0,0.0,0.0,0.07820391926373317,0.026067973087911055,0.005487994334297064,-0.07975988668594129,0.5 +1162,my_land,urban,0.03199999999999998,0.02,0.047999999999999994,0.0,2010-10-05,0.0,0.0,1.0761367786968652e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1163,my_land,rural,15.759215366188531,0.1,0.48,20.0,2010-10-05,0.0,0.0,0.0017739534057356293,0.0,0.0,0.0,0.0,0.0,13.129689469318858,0.0,0.0,0.0,0.2775914085579805,0.09253046951932682,0.01948009884617407,-0.009601976923481444,0.5 +1164,my_land,urban,0.0,0.02,0.001,0.0,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1165,my_land,rural,15.668811689662393,0.1,0.01,20.0,2010-10-06,0.0,0.0,0.0017839534057356294,0.0,0.0,0.0,0.0,0.0,13.026925466164856,0.0,0.0,0.0,0.0,0.0,0.00040367652613772025,-0.09807353052275442,0.5 +1166,my_land,urban,0.0,0.005,0.005,0.0,2010-10-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1167,my_land,rural,15.616906407039254,0.1,0.05,20.0,2010-10-07,0.0,0.0,0.0017939534057356294,0.0,0.0,0.0,0.0,0.0,12.893544255770609,0.0,0.0,0.0,0.0,0.0,0.0019052826231389039,-0.08810565246277807,0.5 +1168,my_land,urban,0.0,0.0,0.0,0.0,2010-10-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1169,my_land,rural,15.516906407039254,0.1,0.0,20.0,2010-10-08,0.0,0.0,0.0018039534057356294,0.0,0.0,0.0,0.0,0.0,12.756335886971325,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1170,my_land,urban,0.0,0.0,0.0,0.0,2010-10-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1171,my_land,rural,15.416906407039255,0.1,0.0,20.0,2010-10-09,0.0,0.0,0.0018139534057356294,0.0,0.0,0.0,0.0,0.0,12.618649130871416,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1172,my_land,urban,0.0,0.0,0.0,0.0,2010-10-10,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1173,my_land,rural,15.316906407039255,0.1,0.0,20.0,2010-10-10,0.0,0.0,0.0018239534057356295,0.0,0.0,0.0,0.0,0.0,12.480902568858928,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1174,my_land,urban,0.0,0.0,0.0,0.0,2010-10-11,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1175,my_land,rural,15.216906407039255,0.1,0.0,20.0,2010-10-11,0.0,0.0,0.0018339534057356295,0.0,0.0,0.0,0.0,0.0,12.343148538607368,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1176,my_land,urban,0.0,0.0,0.0,0.0,2010-10-12,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1177,my_land,rural,15.116906407039256,0.1,0.0,20.0,2010-10-12,0.0,0.0,0.0018439534057356295,0.0,0.0,0.0,0.0,0.0,12.205393567325922,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1178,my_land,urban,0.0,0.0,0.0,0.0,2010-10-13,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1179,my_land,rural,15.016906407039256,0.1,0.0,20.0,2010-10-13,0.0,0.0,0.0018539534057356295,0.0,0.0,0.0,0.0,0.0,11.901567050915741,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1180,my_land,urban,0.0,0.0,0.0,0.0,2010-10-14,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1181,my_land,rural,14.916906407039257,0.1,0.0,20.0,2010-10-14,0.0,0.0,0.0018639534057356296,0.0,0.0,0.0,0.0,0.0,11.576981598864467,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1182,my_land,urban,0.0,0.007,0.007,0.0,2010-10-15,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1183,my_land,rural,14.886906407039257,0.1,0.06999999999999999,20.0,2010-10-15,0.0,0.0,0.0018739534057356296,0.0,0.0,0.0,0.0,0.0,11.24980127235806,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 +1184,my_land,urban,0.0,0.001,0.001,0.0,2010-10-16,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1185,my_land,rural,14.796906407039257,0.1,0.01,20.0,2010-10-16,0.0,0.0,0.0018839534057356296,0.0,0.0,0.0,0.0,0.0,10.922296586544757,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1186,my_land,urban,0.0,0.0,0.0,0.0,2010-10-17,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1187,my_land,rural,14.696906407039258,0.1,0.0,20.0,2010-10-17,0.0,0.0,0.0018939534057356296,0.0,0.0,0.0,0.0,0.0,10.594751355818095,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1188,my_land,urban,0.0,0.01,0.01,0.0,2010-10-18,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, +1189,my_land,rural,14.696906407039258,0.1,0.1,20.0,2010-10-18,0.0,0.0,0.0019039534057356297,0.0,0.0,0.0,0.0,0.0,10.267201064477263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +1190,my_land,urban,0.0,0.02,0.031,0.0,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0,,,,, +1191,my_land,rural,14.906906407039259,0.1,0.31,20.0,2010-10-19,0.0,0.0,0.0019139534057356297,0.0,0.0,0.0,0.0,0.0,9.938959494931169,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.5 +1192,my_land,urban,0.0,0.0,0.0,0.0,2010-10-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0,,,,, +1193,my_land,rural,14.806906407039259,0.1,0.0,20.0,2010-10-20,0.0,0.0,0.0019239534057356297,0.0,0.0,0.0,0.0,0.0,9.614691365116396,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1194,my_land,urban,0.0,0.0,0.0,0.0,2010-10-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0,,,,, +1195,my_land,rural,14.70690640703926,0.1,0.0,20.0,2010-10-21,0.0,0.0,0.0019339534057356297,0.0,0.0,0.0,0.0,0.0,9.29022927788955,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1196,my_land,urban,0.0,0.02,0.052,0.0,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, +1197,my_land,rural,15.12690640703926,0.1,0.52,20.0,2010-10-22,0.0,0.0,0.0019439534057356298,0.0,0.0,0.0,0.0,0.0,8.963830820157483,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.5 +1198,my_land,urban,0.0,0.018,0.018,0.0,2010-10-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, +1199,my_land,rural,15.166100237800553,0.1,0.18,20.0,2010-10-23,0.0,0.0,0.0019489716659952096,0.0,0.0,0.0,0.0,0.0,8.640628023176916,0.0,0.0,0.0,0.029074395582578516,0.009691465194192839,0.0020403084619353344,0.039193830761293305,0.5 +1200,my_land,urban,0.0,0.001,0.001,0.0,2010-10-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, +1201,my_land,rural,15.075956891198041,0.1,0.01,20.0,2010-10-24,0.0,0.0,0.0019589716659952094,0.0,0.0,0.0,0.0,0.0,8.316685645647116,0.0,0.0,0.0,0.0,0.0,0.00014334660251144512,-0.0928669320502289,0.5 +1202,my_land,urban,0.0,0.007,0.007,0.0,2010-10-25,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, +1203,my_land,rural,15.045460106479808,0.1,0.06999999999999999,20.0,2010-10-25,0.0,0.0,0.0019689716659952094,0.0,0.0,0.0,0.0,0.0,7.99226427745589,0.0,0.0,0.0,0.0,0.0,0.0004967847182327096,-0.039935694364654196,0.5 +1204,my_land,urban,0.0,0.02,0.054000000000000006,0.0,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1205,my_land,rural,15.43832401082222,0.1,0.54,20.0,2010-10-26,0.0,0.0,0.0019732482043520456,0.0,0.0,0.0,0.0,0.0,7.665072111818053,0.0,0.0,0.0,0.03358446815603205,0.011194822718677349,0.002356804782879442,0.3928639043424112,0.5 +1206,my_land,urban,0.0,0.007,0.007,0.0,2010-10-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1207,my_land,rural,15.40622234942415,0.1,0.06999999999999999,20.0,2010-10-27,0.0,0.0,0.0019832482043520457,0.0,0.0,0.0,0.0,0.0,7.9992054422272565,0.0,0.0,0.0,0.0,0.0,0.002101661398070194,-0.07203322796140388,0.5 +1208,my_land,urban,0.0,0.002,0.002,0.0,2010-10-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1209,my_land,rural,15.325650897610801,0.1,0.02,20.0,2010-10-28,0.0,0.0,0.0019932482043520457,0.0,0.0,0.0,0.0,0.0,8.413293537528407,0.0,0.0,0.0,0.0,0.0,0.0005714518133476659,-0.09142903626695331,0.5 +1210,my_land,urban,0.0,0.002,0.002,0.0,2010-10-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1211,my_land,rural,15.245160828594642,0.1,0.02,20.0,2010-10-29,0.0,0.0,0.0020032482043520457,0.0,0.0,0.0,0.0,0.0,8.837375977691051,0.0,0.0,0.0,0.0,0.0,0.0004900690161586151,-0.08980138032317231,0.5 +1212,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-10-30,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1213,my_land,rural,15.203975422842994,0.1,0.06,20.0,2010-10-30,0.0,0.0,0.0020132482043520457,0.0,0.0,0.0,0.0,0.0,9.262707711711382,0.0,0.0,0.0,0.0,0.0,0.00118540575164834,-0.0637081150329668,0.5 +1214,my_land,urban,0.0,0.002,0.002,0.0,2010-10-31,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1215,my_land,rural,15.123634769724292,0.1,0.02,20.0,2010-10-31,0.0,0.0,0.0020232482043520458,0.0,0.0,0.0,0.0,0.0,9.688195606713922,0.0,0.0,0.0,0.0,0.0,0.0003406531187026372,-0.08681306237405274,0.5 +1216,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-11-01,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1217,my_land,rural,15.053302529402838,0.1,0.03,20.0,2010-11-01,0.0,0.0,0.002033248204352046,0.0,0.0,0.0,0.0,0.0,10.11370302333924,0.0,0.0,0.0,0.0,0.0,0.000332240321453425,-0.07664480642906851,0.5 +1218,my_land,urban,0.0,0.004,0.004,0.0,2010-11-02,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1219,my_land,rural,14.993099262048952,0.1,0.04,20.0,2010-11-02,0.0,0.0,0.002043248204352046,0.0,0.0,0.0,0.0,0.0,10.539212877917405,0.0,0.0,0.0,0.0,0.0,0.00020326735388613652,-0.06406534707772274,0.5 +1220,my_land,urban,0.0,0.004,0.004,0.0,2010-11-03,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1221,my_land,rural,14.933099262048952,0.1,0.04,20.0,2010-11-03,0.0,0.0,0.002053248204352046,0.0,0.0,0.0,0.0,0.0,10.311151609739676,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1222,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-11-04,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, +1223,my_land,rural,14.863099262048951,0.1,0.03,20.0,2010-11-04,0.0,0.0,0.002063248204352046,0.0,0.0,0.0,0.0,0.0,10.001393951217459,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1224,my_land,urban,0.055,0.02,0.11499999999999999,0.0,2010-11-05,0.0,0.0,5.789473684210527e-06,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0,,,,, +1225,my_land,rural,15.913099262048952,0.1,1.15,20.0,2010-11-05,0.0,0.0,0.002073248204352046,0.0,0.0,0.0,0.0,0.0,9.677907379891238,0.0,0.0,0.0,0.0,0.0,0.0,1.0499999999999998,0.5 +1226,my_land,urban,0.04499999999999999,0.02,0.05,0.0,2010-11-06,0.0,0.0,3.594427244582043e-06,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0,,,,, +1227,my_land,rural,15.879658885839438,0.1,0.5,20.0,2010-11-06,0.0,0.0,0.0020305937819768325,0.0,0.0,0.0,0.0,0.0,9.358351145826031,0.0,0.0,0.0,0.3088262680492786,0.10294208934975953,0.021672018810475688,-0.03344037620951375,0.5 +1228,my_land,urban,0.10699999999999998,0.02,0.12200000000000001,0.0,2010-11-07,0.0,0.0,3.344242960342031e-06,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0,,,,, +1229,my_land,rural,15.955853044239761,0.1,1.22,20.0,2010-11-07,0.0,0.0,0.0019211963325426128,0.0,0.0,0.0,0.0,0.0,9.034343284092348,0.0,0.0,0.0,0.7437116621397686,0.24790388737992286,0.05219029207998376,0.0761941584003249,0.5 +1230,my_land,urban,0.09299999999999997,0.02,0.046,0.0,2010-11-08,0.0,0.0,3.037703724148939e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0,,,,, +1231,my_land,rural,15.910975311675383,0.1,0.45999999999999996,20.0,2010-11-08,0.0,0.0,0.0018856132883336325,0.0,0.0,0.0,0.0,0.0,8.715269998717039,0.0,0.0,0.0,0.2884753844521202,0.09615846148404006,0.020243886628218962,-0.044877732564379234,0.5 +1232,my_land,urban,0.03499999999999997,0.019999999999999997,0.002,0.0,2010-11-09,0.0,0.0,1.8842617379361704e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0,,,,, +1233,my_land,rural,15.830109124359957,0.1,0.02,20.0,2010-11-09,0.0,0.0,0.0018956132883336326,0.0,0.0,0.0,0.0,0.0,8.39565874983963,0.0,0.0,0.0,0.0,0.0,0.0008661873154258566,-0.09732374630851715,0.5 +1234,my_land,urban,0.017999999999999967,0.02,0.043,0.0,2010-11-10,0.0,0.0,8.951157117732933e-07,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0,,,,, +1235,my_land,rural,15.800095791180663,0.1,0.43,20.0,2010-11-10,0.0,0.0,0.0018652379009542579,0.0,0.0,0.0,0.0,0.0,8.105023008735586,0.0,0.0,0.0,0.25650949989024674,0.08550316663008224,0.018000666658964683,-0.03001333317929366,0.5 +1236,my_land,urban,0.0,0.02,0.031,0.0,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0,,,,, +1237,my_land,rural,15.75430280732313,0.1,0.31,20.0,2010-11-11,0.0,0.0,0.0018467525385328064,0.0,0.0,0.0,0.0,0.0,7.820093684934367,0.0,0.0,0.0,0.1822525009984918,0.060750833666163934,0.012789649192876618,-0.045792983857532346,0.5 +1238,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, +1239,my_land,rural,15.710820981144815,0.1,0.29,20.0,2010-11-12,0.0,0.0,0.0018309035664563393,0.0,0.0,0.0,0.0,0.0,7.535402846607912,0.0,0.0,0.0,0.16635580115204918,0.05545193371734973,0.011674091308915734,-0.043481826178314684,0.5 +1240,my_land,urban,0.0,0.01,0.01,0.0,2010-11-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, +1241,my_land,rural,15.706899956909794,0.1,0.1,20.0,2010-11-13,0.0,0.0,0.0018409035664563394,0.0,0.0,0.0,0.0,0.0,7.251746784075989,0.0,0.0,0.0,0.0,0.0,0.003921024235021004,-0.07842048470042007,0.5 +1242,my_land,urban,0.0,0.004,0.004,0.0,2010-11-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, +1243,my_land,rural,15.645335508940489,0.1,0.04,20.0,2010-11-14,0.0,0.0,0.0018509035664563394,0.0,0.0,0.0,0.0,0.0,6.967182633509499,0.0,0.0,0.0,0.0,0.0,0.0015644479693051703,-0.09128895938610342,0.5 +1244,my_land,urban,0.0,0.002,0.002,0.0,2010-11-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, +1245,my_land,rural,15.564586609081719,0.1,0.02,20.0,2010-11-15,0.0,0.0,0.0018609035664563394,0.0,0.0,0.0,0.0,0.0,6.682504971938688,0.0,0.0,0.0,0.0,0.0,0.0007488998587710609,-0.09497799717542123,0.5 +1246,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2010-11-16,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, +1247,my_land,rural,15.500796084733597,0.1,0.12,20.0,2010-11-16,0.0,0.0,0.00186134503014278,0.0,0.0,0.0,0.0,0.0,6.397694837075927,0.0,0.0,0.0,0.059700748598035674,0.019900249532678556,0.004189526217406012,-0.06379052434812026,0.5 +1248,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1249,my_land,rural,15.55394340514805,0.1,0.44,20.0,2010-11-17,0.0,0.0,0.0018391230088860232,0.0,0.0,0.0,0.0,0.0,6.457305190712142,0.0,0.0,0.0,0.20438253420470182,0.06812751140156727,0.01434263397927732,0.05314732041445361,0.5 +1250,my_land,urban,0.0,0.005,0.005,0.0,2010-11-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1251,my_land,rural,15.502216067642141,0.1,0.05,20.0,2010-11-18,0.0,0.0,0.0018491230088860233,0.0,0.0,0.0,0.0,0.0,6.562520291589017,0.0,0.0,0.0,0.0,0.0,0.0017273375059093617,-0.08454675011818724,0.5 +1252,my_land,urban,0.0,0.009,0.009,0.0,2010-11-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1253,my_land,rural,15.489277410773482,0.1,0.09,20.0,2010-11-19,0.0,0.0,0.0018591230088860233,0.0,0.0,0.0,0.0,0.0,6.672100750948627,0.0,0.0,0.0,0.0,0.0,0.0029386568686596967,-0.06877313737319395,0.5 +1254,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-11-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1255,my_land,rural,15.418313025368324,0.1,0.03,20.0,2010-11-20,0.0,0.0,0.0018691230088860233,0.0,0.0,0.0,0.0,0.0,6.7822268793685785,0.0,0.0,0.0,0.0,0.0,0.0009643854051577074,-0.08928770810315416,0.5 +1256,my_land,urban,0.0,0.001,0.001,0.0,2010-11-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1257,my_land,rural,15.328021726164264,0.1,0.01,20.0,2010-11-21,0.0,0.0,0.0018791230088860233,0.0,0.0,0.0,0.0,0.0,6.892421217171073,0.0,0.0,0.0,0.0,0.0,0.00029129920405924673,-0.09582598408118494,0.5 +1258,my_land,urban,0.0,0.0,0.0,0.0,2010-11-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1259,my_land,rural,15.228021726164265,0.1,0.0,20.0,2010-11-22,0.0,0.0,0.0018891230088860234,0.0,0.0,0.0,0.0,0.0,7.0026240803963855,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1260,my_land,urban,0.0,0.0,0.0,0.0,2010-11-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1261,my_land,rural,15.128021726164265,0.1,0.0,20.0,2010-11-23,0.0,0.0,0.0018991230088860234,0.0,0.0,0.0,0.0,0.0,7.112828010049548,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1262,my_land,urban,0.0,0.0,0.0,0.0,2010-11-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1263,my_land,rural,15.028021726164265,0.1,0.0,20.0,2010-11-24,0.0,0.0,0.0019091230088860234,0.0,0.0,0.0,0.0,0.0,6.566782073006194,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1264,my_land,urban,0.0,0.0,0.0,0.0,2010-11-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1265,my_land,rural,14.928021726164266,0.1,0.0,20.0,2010-11-25,0.0,0.0,0.0019191230088860234,0.0,0.0,0.0,0.0,0.0,5.9387049018757745,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1266,my_land,urban,0.0,0.0,0.0,0.0,2010-11-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1267,my_land,rural,14.828021726164266,0.1,0.0,20.0,2010-11-26,0.0,0.0,0.0019291230088860235,0.0,0.0,0.0,0.0,0.0,5.3003738272344725,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1268,my_land,urban,0.0,0.001,0.001,0.0,2010-11-27,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1269,my_land,rural,14.738021726164266,0.1,0.01,20.0,2010-11-27,0.0,0.0,0.0019391230088860235,0.0,0.0,0.0,0.0,0.0,4.660761013904309,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1270,my_land,urban,0.0,0.0,0.0,0.0,2010-11-28,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1271,my_land,rural,14.638021726164267,0.1,0.0,20.0,2010-11-28,0.0,0.0,0.0019491230088860235,0.0,0.0,0.0,0.0,0.0,4.020987983988039,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1272,my_land,urban,0.0,0.009,0.009,0.0,2010-11-29,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1273,my_land,rural,14.628021726164267,0.1,0.09,20.0,2010-11-29,0.0,0.0,0.0019591230088860235,0.0,0.0,0.0,0.0,0.0,3.3811949262485057,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1274,my_land,urban,0.0,0.008,0.008,0.0,2010-11-30,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1275,my_land,rural,14.608021726164267,0.1,0.08,20.0,2010-11-30,0.0,0.0,0.0019691230088860236,0.0,0.0,0.0,0.0,0.0,2.7413993657810636,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 +1276,my_land,urban,0.0,0.002,0.002,0.0,2010-12-01,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1277,my_land,rural,14.528021726164267,0.1,0.02,20.0,2010-12-01,0.0,0.0,0.0019791230088860236,0.0,0.0,0.0,0.0,0.0,2.6828534924726335,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1278,my_land,urban,0.0,0.0,0.0,0.0,2010-12-02,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, +1279,my_land,rural,14.428021726164268,0.1,0.0,20.0,2010-12-02,0.0,0.0,0.0019891230088860236,0.0,0.0,0.0,0.0,0.0,2.6969638293090794,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1280,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0,,,,, +1281,my_land,rural,14.548021726164267,0.1,0.22,20.0,2010-12-03,0.0,0.0,0.0019991230088860236,0.0,0.0,0.0,0.0,0.0,2.718933089192211,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 +1282,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1283,my_land,rural,14.668021726164266,0.1,0.22,20.0,2010-12-04,0.0,0.0,0.0020091230088860237,0.0,0.0,0.0,0.0,0.0,2.7431245755610387,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 +1284,my_land,urban,0.0,0.001,0.001,0.0,2010-12-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1285,my_land,rural,14.578021726164266,0.1,0.01,20.0,2010-12-05,0.0,0.0,0.0020191230088860237,0.0,0.0,0.0,0.0,0.0,2.76878342919513,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1286,my_land,urban,0.0,0.0,0.0,0.0,2010-12-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1287,my_land,rural,14.478021726164267,0.1,0.0,20.0,2010-12-06,0.0,0.0,0.0020291230088860237,0.0,0.0,0.0,0.0,0.0,2.793419356899391,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1288,my_land,urban,0.0,0.0,0.0,0.0,2010-12-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1289,my_land,rural,14.378021726164267,0.1,0.0,20.0,2010-12-07,0.0,0.0,0.0020391230088860238,0.0,0.0,0.0,0.0,0.0,2.817927419612424,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1290,my_land,urban,0.0,0.001,0.001,0.0,2010-12-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1291,my_land,rural,14.288021726164267,0.1,0.01,20.0,2010-12-08,0.0,0.0,0.0020491230088860238,0.0,0.0,0.0,0.0,0.0,2.9924194992015534,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1292,my_land,urban,0.0,0.001,0.001,0.0,2010-12-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1293,my_land,rural,14.198021726164267,0.1,0.01,20.0,2010-12-09,0.0,0.0,0.002059123008886024,0.0,0.0,0.0,0.0,0.0,3.1856595801501943,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1294,my_land,urban,0.0,0.0,0.0,0.0,2010-12-10,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1295,my_land,rural,14.098021726164268,0.1,0.0,20.0,2010-12-10,0.0,0.0,0.002069123008886024,0.0,0.0,0.0,0.0,0.0,3.381243162018775,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1296,my_land,urban,0.0,0.0,0.0,0.0,2010-12-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1297,my_land,rural,13.998021726164268,0.1,0.0,20.0,2010-12-11,0.0,0.0,0.002079123008886024,0.0,0.0,0.0,0.0,0.0,3.5771196807523467,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1298,my_land,urban,0.0,0.0,0.0,0.0,2010-12-12,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1299,my_land,rural,13.898021726164268,0.1,0.0,20.0,2010-12-12,0.0,0.0,0.002089123008886024,0.0,0.0,0.0,0.0,0.0,3.7730328173440433,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1300,my_land,urban,0.0,0.0,0.0,0.0,2010-12-13,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1301,my_land,rural,13.798021726164269,0.1,0.0,20.0,2010-12-13,0.0,0.0,0.002099123008886024,0.0,0.0,0.0,0.0,0.0,3.968950530418006,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1302,my_land,urban,0.0,0.009,0.009,0.0,2010-12-14,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1303,my_land,rural,13.788021726164269,0.1,0.09,20.0,2010-12-14,0.0,0.0,0.002109123008886024,0.0,0.0,0.0,0.0,0.0,4.164868816302251,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1304,my_land,urban,0.0,0.001,0.001,0.0,2010-12-15,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, +1305,my_land,rural,13.698021726164269,0.1,0.01,20.0,2010-12-15,0.0,0.0,0.002119123008886024,0.0,0.0,0.0,0.0,0.0,3.875965744787782,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1306,my_land,urban,0.0,0.02,0.036,0.0,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0,,,,, +1307,my_land,rural,13.958021726164269,0.1,0.36,20.0,2010-12-16,0.0,0.0,0.002129123008886024,0.0,0.0,0.0,0.0,0.0,3.522998402667588,0.0,0.0,0.0,0.0,0.0,0.0,0.26,0.5 +1308,my_land,urban,0.0,0.02,0.038,0.0,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0,,,,, +1309,my_land,rural,14.238021726164268,0.1,0.38,20.0,2010-12-17,0.0,0.0,0.002139123008886024,0.0,0.0,0.0,0.0,0.0,3.165132149271533,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 +1310,my_land,urban,0.0,0.02,0.049,0.0,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1311,my_land,rural,14.628021726164269,0.1,0.49,20.0,2010-12-18,0.0,0.0,0.002149123008886024,0.0,0.0,0.0,0.0,0.0,2.805449331014135,0.0,0.0,0.0,0.0,0.0,0.0,0.38999999999999996,0.5 +1312,my_land,urban,0.0,0.0,0.0,0.0,2010-12-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1313,my_land,rural,14.528021726164269,0.1,0.0,20.0,2010-12-19,0.0,0.0,0.002159123008886024,0.0,0.0,0.0,0.0,0.0,2.452466880876767,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1314,my_land,urban,0.0,0.009,0.009,0.0,2010-12-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1315,my_land,rural,14.51802172616427,0.1,0.09,20.0,2010-12-20,0.0,0.0,0.002169123008886024,0.0,0.0,0.0,0.0,0.0,2.094951217359596,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1316,my_land,urban,0.0,0.005,0.005,0.0,2010-12-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1317,my_land,rural,14.468021726164269,0.1,0.05,20.0,2010-12-21,0.0,0.0,0.002179123008886024,0.0,0.0,0.0,0.0,0.0,1.7368689021699497,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1318,my_land,urban,0.0,0.001,0.001,0.0,2010-12-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1319,my_land,rural,14.378021726164269,0.1,0.01,20.0,2010-12-22,0.0,0.0,0.002189123008886024,0.0,0.0,0.0,0.0,0.0,1.867555041021244,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1320,my_land,urban,0.0,0.0,0.0,0.0,2010-12-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1321,my_land,rural,14.278021726164269,0.1,0.0,20.0,2010-12-23,0.0,0.0,0.002199123008886024,0.0,0.0,0.0,0.0,0.0,2.0593372373776555,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1322,my_land,urban,0.0,0.0,0.0,0.0,2010-12-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1323,my_land,rural,14.17802172616427,0.1,0.0,20.0,2010-12-24,0.0,0.0,0.002209123008886024,0.0,0.0,0.0,0.0,0.0,2.258756440172207,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1324,my_land,urban,0.0,0.0,0.0,0.0,2010-12-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1325,my_land,rural,14.07802172616427,0.1,0.0,20.0,2010-12-25,0.0,0.0,0.0022191230088860242,0.0,0.0,0.0,0.0,0.0,2.4591302695215265,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1326,my_land,urban,0.0,0.001,0.001,0.0,2010-12-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, +1327,my_land,rural,13.98802172616427,0.1,0.01,20.0,2010-12-26,0.0,0.0,0.0022291230088860243,0.0,0.0,0.0,0.0,0.0,2.659623426440191,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1328,my_land,urban,0.001999999999999995,0.02,0.062,0.0,2010-12-27,0.0,0.0,4.285714285714276e-07,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1329,my_land,rural,14.50802172616427,0.1,0.62,20.0,2010-12-27,0.0,0.0,0.0022391230088860243,0.0,0.0,0.0,0.0,0.0,2.855848119384209,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.5 +1330,my_land,urban,0.0,0.02,0.019,0.0,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1331,my_land,rural,14.59802172616427,0.1,0.19,20.0,2010-12-28,0.0,0.0,0.0022491230088860243,0.0,0.0,0.0,0.0,0.0,3.0593982877708905,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.5 +1332,my_land,urban,0.0,0.009,0.009,0.0,2010-12-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1333,my_land,rural,14.58802172616427,0.1,0.09,20.0,2010-12-29,0.0,0.0,0.0022591230088860243,0.0,0.0,0.0,0.0,0.0,3.2609962142213615,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1334,my_land,urban,0.0,0.001,0.001,0.0,2010-12-30,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1335,my_land,rural,14.49802172616427,0.1,0.01,20.0,2010-12-30,0.0,0.0,0.0022691230088860244,0.0,0.0,0.0,0.0,0.0,3.4616423840276704,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1336,my_land,urban,0.0,0.0,0.0,0.0,2010-12-31,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1337,my_land,rural,14.39802172616427,0.1,0.0,20.0,2010-12-31,0.0,0.0,0.0022791230088860244,0.0,0.0,0.0,0.0,0.0,3.662169583503459,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1338,my_land,urban,0.0,0.009,0.009,0.0,2011-01-01,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1339,my_land,rural,14.38802172616427,0.1,0.09,20.0,2011-01-01,0.0,0.0,0.0022891230088860244,0.0,0.0,0.0,0.0,0.0,3.8626819124379326,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1340,my_land,urban,0.0,0.0,0.0,0.0,2011-01-02,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1341,my_land,rural,14.28802172616427,0.1,0.0,20.0,2011-01-02,0.0,0.0,0.0022991230088860244,0.0,0.0,0.0,0.0,0.0,4.0631923818047415,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1342,my_land,urban,0.0,0.002,0.002,0.0,2011-01-03,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1343,my_land,rural,14.20802172616427,0.1,0.02,20.0,2011-01-03,0.0,0.0,0.0023091230088860245,0.0,0.0,0.0,0.0,0.0,4.263702619475593,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1344,my_land,urban,0.0,0.005,0.005,0.0,2011-01-04,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1345,my_land,rural,14.15802172616427,0.1,0.05,20.0,2011-01-04,0.0,0.0,0.0023191230088860245,0.0,0.0,0.0,0.0,0.0,4.46421282743445,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1346,my_land,urban,0.0,0.018,0.018,0.0,2011-01-05,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, +1347,my_land,rural,14.23802172616427,0.1,0.18,20.0,2011-01-05,0.0,0.0,0.0023291230088860245,0.0,0.0,0.0,0.0,0.0,4.6950952142663684,0.0,0.0,0.0,0.0,0.0,0.0,0.07999999999999999,0.5 +1348,my_land,urban,0.04599999999999999,0.02,0.106,0.0,2011-01-06,0.0,0.0,4.813953488372093e-06,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0,,,,, +1349,my_land,rural,15.19802172616427,0.1,1.06,20.0,2011-01-06,0.0,0.0,0.0023391230088860245,0.0,0.0,0.0,0.0,0.0,4.926135564244465,0.0,0.0,0.0,0.0,0.0,0.0,0.9600000000000001,0.5 +1350,my_land,urban,0.03599999999999998,0.02,0.05,0.0,2011-01-07,0.0,0.0,2.753977968176254e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0,,,,, +1351,my_land,rural,15.431810609724911,0.1,0.5,20.0,2011-01-07,0.0,0.0,0.0023253298907192194,0.0,0.0,0.0,0.0,0.0,5.164114559667942,0.0,0.0,0.0,0.11842542046304368,0.03947514015434789,0.008310555821967977,0.23378888356064045,0.5 +1352,my_land,urban,0.0,0.02,0.0,0.0,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0,,,,, +1353,my_land,rural,15.331810609724911,0.1,0.0,20.0,2011-01-08,0.0,0.0,0.0023353298907192194,0.0,0.0,0.0,0.0,0.0,5.4017643199584935,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1354,my_land,urban,0.0,0.001,0.001,0.0,2011-01-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0,,,,, +1355,my_land,rural,15.241562235214705,0.1,0.01,20.0,2011-01-09,0.0,0.0,0.0023453298907192195,0.0,0.0,0.0,0.0,0.0,5.637720539994813,0.0,0.0,0.0,0.0,0.0,0.00024837451020699546,-0.09496749020413991,0.5 +1356,my_land,urban,0.016,0.02,0.076,0.0,2011-01-10,0.0,0.0,5.714285714285713e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, +1357,my_land,rural,15.604750432873434,0.1,0.76,20.0,2011-01-10,0.0,0.0,0.0023135254681762624,0.0,0.0,0.0,0.0,0.0,5.871369996014671,0.0,0.0,0.0,0.21147840916815452,0.07049280305605152,0.014840590117063478,0.36318819765873045,0.5 +1358,my_land,urban,0.025,0.02,0.069,0.0,2011-01-11,0.0,0.0,6.043956043956042e-07,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0,,,,, +1359,my_land,rural,15.69485145224883,0.1,0.69,20.0,2011-01-11,0.0,0.0,0.002255283767585958,0.0,0.0,0.0,0.0,0.0,6.107299194025051,0.0,0.0,0.0,0.35617802369503015,0.11872600789834338,0.02499494903123019,0.09010101937539623,0.5 +1360,my_land,urban,0.063,0.02,0.098,0.0,2011-01-12,0.0,0.0,9.81329350261389e-07,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0,,,,, +1361,my_land,rural,15.814337766040055,0.1,0.98,20.0,2011-01-12,0.0,0.0,0.0021663143301653234,0.0,0.0,0.0,0.0,0.0,6.291222791475223,0.0,0.0,0.0,0.5418660014237533,0.18062200047458446,0.038025684310438845,0.11948631379122311,0.5 +1362,my_land,urban,0.060000000000000005,0.02,0.057,0.0,2011-01-13,0.0,0.0,1.1887976101568336e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0,,,,, +1363,my_land,rural,15.81067997692028,0.1,0.5700000000000001,20.0,2011-01-13,0.0,0.0,0.002116090013876364,0.0,0.0,0.0,0.0,0.0,6.470823878807919,0.0,0.0,0.0,0.33748117474784023,0.11249372491594675,0.023682889455988794,-0.0036577891197758262,0.5 +1364,my_land,urban,0.012000000000000004,0.02,0.011999999999999999,0.0,2011-01-14,0.0,0.0,5.051071408054234e-07,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0,,,,, +1365,my_land,rural,15.731140492701877,0.1,0.12,20.0,2011-01-14,0.0,0.0,0.002113386097457639,0.0,0.0,0.0,0.0,0.0,6.649882953847024,0.0,0.0,0.0,0.07092188250561242,0.023640627501870806,0.0049769742109201705,-0.07953948421840341,0.5 +1366,my_land,urban,0.0,0.016000000000000004,0.004,0.0,2011-01-15,0.0,0.0,1.5051071408054234e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0,,,,, +1367,my_land,rural,15.669552067308501,0.1,0.04,20.0,2011-01-15,0.0,0.0,0.002123386097457639,0.0,0.0,0.0,0.0,0.0,6.827663940980878,0.0,0.0,0.0,0.0,0.0,0.0015884253933765246,-0.0917685078675305,0.5 +1368,my_land,urban,0.001999999999999995,0.02,0.062,0.0,2011-01-16,0.0,0.0,1.1929081622882934e-07,0.0,0.0,0.0,0.0,0.0,6.535714286,0.0,0.0,0.0,,,,, +1369,my_land,rural,15.716790049900549,0.1,0.62,20.0,2011-01-16,0.0,0.0,0.0020741160356741754,0.0,0.0,0.0,0.0,0.0,7.004123196046826,0.0,0.0,0.0,0.336842937403165,0.11228097913438834,0.02363810087039755,0.04723798259204902,0.5 +1370,my_land,urban,0.007999999999999993,0.02,0.066,0.0,2011-01-17,0.0,0.0,1.8654846937147137e-07,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1371,my_land,rural,15.757245151905337,0.1,0.66,20.0,2011-01-17,0.0,0.0,0.0020208175242181978,0.0,0.0,0.0,0.0,0.0,7.181585064147456,0.0,0.0,0.0,0.370175739821586,0.12339191327386202,0.02597724489976043,0.040455102004791424,0.5 +1372,my_land,urban,0.0,0.007999999999999993,0.0,0.0,2011-01-18,0.0,0.0,1.1865484693714713e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1373,my_land,rural,15.657245151905338,0.1,0.0,20.0,2011-01-18,0.0,0.0,0.002030817524218198,0.0,0.0,0.0,0.0,0.0,7.360198133018432,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1374,my_land,urban,0.0,0.001,0.001,0.0,2011-01-19,0.0,0.0,2.186548469371471e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1375,my_land,rural,15.566867310238697,0.1,0.01,20.0,2011-01-19,0.0,0.0,0.002040817524218198,0.0,0.0,0.0,0.0,0.0,7.270024766627305,0.0,0.0,0.0,0.0,0.0,0.0003778416666401325,-0.09755683333280264,0.5 +1376,my_land,urban,0.0,0.0,0.0,0.0,2011-01-20,0.0,0.0,3.186548469371471e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1377,my_land,rural,15.466867310238698,0.1,0.0,20.0,2011-01-20,0.0,0.0,0.002050817524218198,0.0,0.0,0.0,0.0,0.0,7.146253095828413,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1378,my_land,urban,0.0,0.0,0.0,0.0,2011-01-21,0.0,0.0,4.1865484693714706e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1379,my_land,rural,15.366867310238698,0.1,0.0,20.0,2011-01-21,0.0,0.0,0.002060817524218198,0.0,0.0,0.0,0.0,0.0,7.018281636978553,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1380,my_land,urban,0.0,0.001,0.001,0.0,2011-01-22,0.0,0.0,5.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1381,my_land,rural,15.276600665363894,0.1,0.01,20.0,2011-01-22,0.0,0.0,0.002070817524218198,0.0,0.0,0.0,0.0,0.0,6.889785204622319,0.0,0.0,0.0,0.0,0.0,0.0002666448748045194,-0.09533289749609038,0.5 +1382,my_land,urban,0.0,0.0,0.0,0.0,2011-01-23,0.0,0.0,6.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1383,my_land,rural,15.176600665363894,0.1,0.0,20.0,2011-01-23,0.0,0.0,0.002080817524218198,0.0,0.0,0.0,0.0,0.0,6.76122315057779,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1384,my_land,urban,0.0,0.0,0.0,0.0,2011-01-24,0.0,0.0,7.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1385,my_land,rural,15.076600665363895,0.1,0.0,20.0,2011-01-24,0.0,0.0,0.002090817524218198,0.0,0.0,0.0,0.0,0.0,6.6326528938222244,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1386,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2011-01-25,0.0,0.0,8.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1387,my_land,rural,15.122280521622555,0.1,0.16999999999999998,20.0,2011-01-25,0.0,0.0,0.002097612747578277,0.0,0.0,0.0,0.0,0.0,6.503665686410261,0.0,0.0,0.0,0.01732810241570433,0.0057760341385681094,0.0012160071870669707,0.04567985625866058,0.5 +1388,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-01-26,0.0,0.0,9.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1389,my_land,rural,15.051951528420787,0.1,0.03,20.0,2011-01-26,0.0,0.0,0.002107612747578277,0.0,0.0,0.0,0.0,0.0,6.204029639051283,0.0,0.0,0.0,0.0,0.0,0.00032899320176825334,-0.07657986403536508,0.5 +1390,my_land,urban,0.0,0.0,0.0,0.0,2011-01-27,0.0,0.0,1.018654846937147e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1391,my_land,rural,14.951951528420787,0.1,0.0,20.0,2011-01-27,0.0,0.0,0.002117612747578277,0.0,0.0,0.0,0.0,0.0,5.882646562131411,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1392,my_land,urban,0.0,0.0,0.0,0.0,2011-01-28,0.0,0.0,1.1186548469371471e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1393,my_land,rural,14.851951528420788,0.1,0.0,20.0,2011-01-28,0.0,0.0,0.002127612747578277,0.0,0.0,0.0,0.0,0.0,5.558545105766426,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1394,my_land,urban,0.0,0.0,0.0,0.0,2011-01-29,0.0,0.0,1.2186548469371472e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1395,my_land,rural,14.751951528420788,0.1,0.0,20.0,2011-01-29,0.0,0.0,0.002137612747578277,0.0,0.0,0.0,0.0,0.0,5.234103852720804,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1396,my_land,urban,0.0,0.0,0.0,0.0,2011-01-30,0.0,0.0,1.3186548469371472e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1397,my_land,rural,14.651951528420788,0.1,0.0,20.0,2011-01-30,0.0,0.0,0.002147612747578277,0.0,0.0,0.0,0.0,0.0,4.909620124340101,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1398,my_land,urban,0.0,0.0,0.0,0.0,2011-01-31,0.0,0.0,1.4186548469371473e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1399,my_land,rural,14.551951528420789,0.1,0.0,20.0,2011-01-31,0.0,0.0,0.0021576127475782772,0.0,0.0,0.0,0.0,0.0,4.585131087292512,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1400,my_land,urban,0.0,0.001,0.001,0.0,2011-02-01,0.0,0.0,1.5186548469371474e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1401,my_land,rural,14.461951528420789,0.1,0.01,20.0,2011-02-01,0.0,0.0,0.0021676127475782772,0.0,0.0,0.0,0.0,0.0,4.260641385911565,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1402,my_land,urban,0.0,0.01,0.01,0.0,2011-02-02,0.0,0.0,1.6186548469371473e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1403,my_land,rural,14.461951528420789,0.1,0.1,20.0,2011-02-02,0.0,0.0,0.0021776127475782773,0.0,0.0,0.0,0.0,0.0,4.6352587449889455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +1404,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-02-03,0.0,0.0,1.7186548469371473e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1405,my_land,rural,14.391951528420789,0.1,0.03,20.0,2011-02-03,0.0,0.0,0.0021876127475782773,0.0,0.0,0.0,0.0,0.0,5.097264485873619,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1406,my_land,urban,0.0,0.005,0.005,0.0,2011-02-04,0.0,0.0,1.8186548469371474e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1407,my_land,rural,14.341951528420788,0.1,0.05,20.0,2011-02-04,0.0,0.0,0.0021976127475782773,0.0,0.0,0.0,0.0,0.0,5.570193775234203,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1408,my_land,urban,0.0,0.002,0.002,0.0,2011-02-05,0.0,0.0,1.9186548469371474e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1409,my_land,rural,14.261951528420788,0.1,0.02,20.0,2011-02-05,0.0,0.0,0.0022076127475782773,0.0,0.0,0.0,0.0,0.0,6.044488507404276,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1410,my_land,urban,0.0,0.0,0.0,0.0,2011-02-06,0.0,0.0,2.0186548469371475e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1411,my_land,rural,14.161951528420788,0.1,0.0,20.0,2011-02-06,0.0,0.0,0.0022176127475782774,0.0,0.0,0.0,0.0,0.0,6.518953920675535,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1412,my_land,urban,0.0,0.002,0.002,0.0,2011-02-07,0.0,0.0,2.1186548469371476e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1413,my_land,rural,14.081951528420788,0.1,0.02,20.0,2011-02-07,0.0,0.0,0.0022276127475782774,0.0,0.0,0.0,0.0,0.0,6.993440668334443,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1414,my_land,urban,0.0,0.001,0.001,0.0,2011-02-08,0.0,0.0,2.2186548469371476e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1415,my_land,rural,13.991951528420788,0.1,0.01,20.0,2011-02-08,0.0,0.0,0.0022376127475782774,0.0,0.0,0.0,0.0,0.0,7.467930083541805,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1416,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-02-09,0.0,0.0,2.3186548469371477e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, +1417,my_land,rural,13.921951528420788,0.1,0.03,20.0,2011-02-09,0.0,0.0,0.0022476127475782775,0.0,0.0,0.0,0.0,0.0,7.545991260442727,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1418,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2011-02-10,0.0,0.0,3.3881317890172014e-21,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0,,,,, +1419,my_land,rural,14.321951528420788,0.1,0.5,20.0,2011-02-10,0.0,0.0,0.0022576127475782775,0.0,0.0,0.0,0.0,0.0,7.573203723516676,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 +1420,my_land,urban,0.0,0.008000000000000004,0.008,0.0,2011-02-11,0.0,0.0,1.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0,,,,, +1421,my_land,rural,14.301951528420789,0.1,0.08,20.0,2011-02-11,0.0,0.0,0.0022676127475782775,0.0,0.0,0.0,0.0,0.0,7.596650465439586,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 +1422,my_land,urban,0.0,0.014,0.014,0.0,2011-02-12,0.0,0.0,2.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0,,,,, +1423,my_land,rural,14.341951528420788,0.1,0.13999999999999999,20.0,2011-02-12,0.0,0.0,0.0022776127475782775,0.0,0.0,0.0,0.0,0.0,7.61820174057379,0.0,0.0,0.0,0.0,0.0,0.0,0.039999999999999994,0.5 +1424,my_land,urban,0.048999999999999995,0.02,0.109,0.0,2011-02-13,0.0,0.0,1.6516853932584288e-06,0.0,0.0,0.0,0.0,0.0,7.25,0.0,0.0,0.0,,,,, +1425,my_land,rural,15.331951528420788,0.1,1.09,20.0,2011-02-13,0.0,0.0,0.0022876127475782776,0.0,0.0,0.0,0.0,0.0,7.6368033215732565,0.0,0.0,0.0,0.0,0.0,0.0,0.9899999999999999,0.5 +1426,my_land,urban,0.0,0.02,0.011000000000000001,0.0,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.25,0.0,0.0,0.0,,,,, +1427,my_land,rural,15.287292427636594,0.1,0.11,20.0,2011-02-14,0.0,0.0,0.0022898348954128933,0.0,0.0,0.0,0.0,0.0,7.660828989390381,0.0,0.0,0.0,0.03894460930873799,0.012981536436245996,0.002732955039209684,-0.04465910078419367,0.5 +1428,my_land,urban,3.469446951953614e-18,0.02,0.046,0.0,2011-02-15,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0,,,,, +1429,my_land,rural,15.441836337522622,0.1,0.45999999999999996,20.0,2011-02-15,0.0,0.0,0.0022711280611144163,0.0,0.0,0.0,0.0,0.0,7.556913083638807,0.0,0.0,0.0,0.1463874642062047,0.04879582140206823,0.010272804505698575,0.1545439098860285,0.5 +1430,my_land,urban,0.0,0.0010000000000000035,0.001,0.0,2011-02-16,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0,,,,, +1431,my_land,rural,15.351534567397657,0.1,0.01,20.0,2011-02-16,0.0,0.0,0.0022811280611144164,0.0,0.0,0.0,0.0,0.0,7.439926635454851,0.0,0.0,0.0,0.0,0.0,0.0003017701249652223,-0.09603540249930444,0.5 +1432,my_land,urban,0.0,0.0,0.0,0.0,2011-02-17,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0,,,,, +1433,my_land,rural,15.251534567397657,0.1,0.0,20.0,2011-02-17,0.0,0.0,0.0022911280611144164,0.0,0.0,0.0,0.0,0.0,7.319834579431857,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1434,my_land,urban,0.01900000000000001,0.02,0.07900000000000001,0.0,2011-02-18,0.0,0.0,9.661016949152546e-07,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0,,,,, +1435,my_land,rural,15.623010855944486,0.1,0.79,20.0,2011-02-18,0.0,0.0,0.002257405043360061,0.0,0.0,0.0,0.0,0.0,7.196141035950563,0.0,0.0,0.0,0.22694814441038447,0.07564938147012816,0.015926185572658562,0.37147628854682885,0.5 +1436,my_land,urban,0.0,0.02,0.005,0.0,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0,,,,, +1437,my_land,rural,15.57117154126871,0.1,0.05,20.0,2011-02-19,0.0,0.0,0.002267405043360061,0.0,0.0,0.0,0.0,0.0,7.078423879493821,0.0,0.0,0.0,0.0,0.0,0.0018393146757764549,-0.08678629351552909,0.5 +1438,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0,,,,, +1439,my_land,rural,15.53360362680533,0.1,0.21,20.0,2011-02-20,0.0,0.0,0.0022570354803550835,0.0,0.0,0.0,0.0,0.0,6.957710826758719,0.0,0.0,0.0,0.10514213905515787,0.03504737968505262,0.007378395723168974,-0.03756791446337948,0.5 +1440,my_land,urban,0.0,0.02,0.02,0.0,2011-02-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0,,,,, +1441,my_land,rural,15.49830337257616,0.1,0.2,20.0,2011-02-21,0.0,0.0,0.002248388461582275,0.0,0.0,0.0,0.0,0.0,6.837185095978555,0.0,0.0,0.0,0.09640143113828378,0.032133810379427925,0.006765012711458511,-0.03530025422917023,0.5 +1442,my_land,urban,0.0,0.02,0.026,0.0,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0,,,,, +1443,my_land,rural,15.489302147770937,0.1,0.26,20.0,2011-02-22,0.0,0.0,0.00223521975270843,0.0,0.0,0.0,0.0,0.0,6.71631631722607,0.0,0.0,0.0,0.12041337267372298,0.04013779089124099,0.008450061240261262,-0.009001224805225257,0.5 +1444,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-02-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0,,,,, +1445,my_land,rural,15.4473733182154,0.1,0.06,20.0,2011-02-23,0.0,0.0,0.00224521975270843,0.0,0.0,0.0,0.0,0.0,6.61632525415326,0.0,0.0,0.0,0.0,0.0,0.0019288295555369996,-0.07857659111073999,0.5 +1446,my_land,urban,0.0,0.0,0.0,0.0,2011-02-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0,,,,, +1447,my_land,rural,15.3473733182154,0.1,0.0,20.0,2011-02-24,0.0,0.0,0.00225521975270843,0.0,0.0,0.0,0.0,0.0,6.518112085019158,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1448,my_land,urban,0.052,0.02,0.112,0.0,2011-02-25,0.0,0.0,1.6956521739130435e-06,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0,,,,, +1449,my_land,rural,15.792503275046013,0.1,1.1199999999999999,20.0,2011-02-25,0.0,0.0,0.0021895036956030484,0.0,0.0,0.0,0.0,0.0,6.414729384950562,0.0,0.0,0.0,0.40959490575818686,0.13653163525272896,0.02874350215846926,0.4451299568306149,0.5 +1450,my_land,urban,0.008,0.02,0.016,0.0,2011-02-26,0.0,0.0,4.4927536231884043e-07,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0,,,,, +1451,my_land,rural,15.720991002471672,0.1,0.16,20.0,2011-02-26,0.0,0.0,0.0021821617861270703,0.0,0.0,0.0,0.0,0.0,6.321179807239788,0.0,0.0,0.0,0.09370249420921728,0.03123416473640576,0.006575613628717002,-0.07151227257434004,0.5 +1452,my_land,urban,-6.938893903907228e-18,0.02,0.04,0.0,2011-02-27,0.0,0.0,-4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1453,my_land,rural,15.70528408672091,0.1,0.4,20.0,2011-02-27,0.0,0.0,0.002151082863518286,0.0,0.0,0.0,0.0,0.0,6.222427676275343,0.0,0.0,0.0,0.22494117747241604,0.07498039249080535,0.01578534578753797,-0.01570691575075939,0.5 +1454,my_land,urban,0.0,0.000999999999999993,0.001,0.0,2011-02-28,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1455,my_land,rural,15.61489338526455,0.1,0.01,20.0,2011-02-28,0.0,0.0,0.002161082863518286,0.0,0.0,0.0,0.0,0.0,6.126017745034418,0.0,0.0,0.0,0.0,0.0,0.00039070145636025587,-0.09781402912720512,0.5 +1456,my_land,urban,0.0,0.0,0.0,0.0,2011-03-01,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1457,my_land,rural,15.51489338526455,0.1,0.0,20.0,2011-03-01,0.0,0.0,0.002171082863518286,0.0,0.0,0.0,0.0,0.0,6.028252218129302,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1458,my_land,urban,0.0,0.0,0.0,0.0,2011-03-02,0.0,0.0,2.9999999999999992e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1459,my_land,rural,15.41489338526455,0.1,0.0,20.0,2011-03-02,0.0,0.0,0.002181082863518286,0.0,0.0,0.0,0.0,0.0,6.0294243845161635,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1460,my_land,urban,0.0,0.0,0.0,0.0,2011-03-03,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1461,my_land,rural,15.31489338526455,0.1,0.0,20.0,2011-03-03,0.0,0.0,0.002191082863518286,0.0,0.0,0.0,0.0,0.0,6.042963762564521,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1462,my_land,urban,0.0,0.0,0.0,0.0,2011-03-04,0.0,0.0,4.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1463,my_land,rural,15.214893385264551,0.1,0.0,20.0,2011-03-04,0.0,0.0,0.002201082863518286,0.0,0.0,0.0,0.0,0.0,6.058049042070566,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1464,my_land,urban,0.0,0.002,0.002,0.0,2011-03-05,0.0,0.0,5.9999999999999985e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1465,my_land,rural,15.134537875203433,0.1,0.02,20.0,2011-03-05,0.0,0.0,0.002211082863518286,0.0,0.0,0.0,0.0,0.0,6.073327558508821,0.0,0.0,0.0,0.0,0.0,0.00035551006111861415,-0.08711020122237229,0.5 +1466,my_land,urban,0.0,0.0,0.0,0.0,2011-03-06,0.0,0.0,6.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1467,my_land,rural,15.034537875203434,0.1,0.0,20.0,2011-03-06,0.0,0.0,0.002221082863518286,0.0,0.0,0.0,0.0,0.0,6.088630230313604,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1468,my_land,urban,0.0,0.0,0.0,0.0,2011-03-07,0.0,0.0,7.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1469,my_land,rural,14.934537875203434,0.1,0.0,20.0,2011-03-07,0.0,0.0,0.002231082863518286,0.0,0.0,0.0,0.0,0.0,6.103935921539201,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1470,my_land,urban,0.0,0.008,0.008,0.0,2011-03-08,0.0,0.0,8.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1471,my_land,rural,14.914537875203434,0.1,0.08,20.0,2011-03-08,0.0,0.0,0.002241082863518286,0.0,0.0,0.0,0.0,0.0,6.119241990192401,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 +1472,my_land,urban,0.0,0.005,0.005,0.0,2011-03-09,0.0,0.0,9.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1473,my_land,rural,14.864537875203434,0.1,0.05,20.0,2011-03-09,0.0,0.0,0.002251082863518286,0.0,0.0,0.0,0.0,0.0,6.455976677024051,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1474,my_land,urban,0.0,0.0,0.0,0.0,2011-03-10,0.0,0.0,1.1e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1475,my_land,rural,14.764537875203434,0.1,0.0,20.0,2011-03-10,0.0,0.0,0.002261082863518286,0.0,0.0,0.0,0.0,0.0,6.832889941878007,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1476,my_land,urban,0.0,0.0,0.0,0.0,2011-03-11,0.0,0.0,1.2e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1477,my_land,rural,14.664537875203434,0.1,0.0,20.0,2011-03-11,0.0,0.0,0.002271082863518286,0.0,0.0,0.0,0.0,0.0,7.214825528234751,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1478,my_land,urban,0.0,0.013,0.013,0.0,2011-03-12,0.0,0.0,1.3000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1479,my_land,rural,14.694537875203434,0.1,0.13,20.0,2011-03-12,0.0,0.0,0.002281082863518286,0.0,0.0,0.0,0.0,0.0,7.597400616196469,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +1480,my_land,urban,0.0,0.0,0.0,0.0,2011-03-13,0.0,0.0,1.4000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1481,my_land,rural,14.594537875203434,0.1,0.0,20.0,2011-03-13,0.0,0.0,0.0022910828635182862,0.0,0.0,0.0,0.0,0.0,7.980032219774559,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1482,my_land,urban,0.0,0.0,0.0,0.0,2011-03-14,0.0,0.0,1.5000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1483,my_land,rural,14.494537875203434,0.1,0.0,20.0,2011-03-14,0.0,0.0,0.0023010828635182863,0.0,0.0,0.0,0.0,0.0,8.36268259922182,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1484,my_land,urban,0.0,0.0,0.0,0.0,2011-03-15,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1485,my_land,rural,14.394537875203435,0.1,0.0,20.0,2011-03-15,0.0,0.0,0.0023110828635182863,0.0,0.0,0.0,0.0,0.0,8.745335324902728,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1486,my_land,urban,0.0,0.0,0.0,0.0,2011-03-16,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1487,my_land,rural,14.294537875203435,0.1,0.0,20.0,2011-03-16,0.0,0.0,0.0023210828635182863,0.0,0.0,0.0,0.0,0.0,8.929774058362842,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1488,my_land,urban,0.0,0.004,0.004,0.0,2011-03-17,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1489,my_land,rural,14.234537875203435,0.1,0.04,20.0,2011-03-17,0.0,0.0,0.0023310828635182863,0.0,0.0,0.0,0.0,0.0,9.089436042795356,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1490,my_land,urban,0.0,0.02,0.02,0.0,2011-03-18,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1491,my_land,rural,14.334537875203434,0.1,0.2,20.0,2011-03-18,0.0,0.0,0.0023410828635182864,0.0,0.0,0.0,0.0,0.0,9.246050632209082,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 +1492,my_land,urban,0.0,0.0,0.0,0.0,2011-03-19,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1493,my_land,rural,14.234537875203435,0.1,0.0,20.0,2011-03-19,0.0,0.0,0.0023510828635182864,0.0,0.0,0.0,0.0,0.0,9.402184900776136,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1494,my_land,urban,0.0,0.0,0.0,0.0,2011-03-20,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1495,my_land,rural,14.134537875203435,0.1,0.0,20.0,2011-03-20,0.0,0.0,0.0023610828635182864,0.0,0.0,0.0,0.0,0.0,9.558308827097019,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1496,my_land,urban,0.0,0.0,0.0,0.0,2011-03-21,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1497,my_land,rural,14.034537875203435,0.1,0.0,20.0,2011-03-21,0.0,0.0,0.0023710828635182864,0.0,0.0,0.0,0.0,0.0,9.714431460637128,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1498,my_land,urban,0.0,0.0,0.0,0.0,2011-03-22,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1499,my_land,rural,13.934537875203436,0.1,0.0,20.0,2011-03-22,0.0,0.0,0.0023810828635182865,0.0,0.0,0.0,0.0,0.0,9.870553932579641,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1500,my_land,urban,0.0,0.0,0.0,0.0,2011-03-23,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1501,my_land,rural,13.834537875203436,0.1,0.0,20.0,2011-03-23,0.0,0.0,0.0023910828635182865,0.0,0.0,0.0,0.0,0.0,9.927569241572456,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1502,my_land,urban,0.0,0.0,0.0,0.0,2011-03-24,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1503,my_land,rural,13.734537875203436,0.1,0.0,20.0,2011-03-24,0.0,0.0,0.0024010828635182865,0.0,0.0,0.0,0.0,0.0,9.972196155196558,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1504,my_land,urban,0.0,0.0,0.0,0.0,2011-03-25,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1505,my_land,rural,13.634537875203437,0.1,0.0,20.0,2011-03-25,0.0,0.0,0.0024110828635182865,0.0,0.0,0.0,0.0,0.0,10.015274519399568,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1506,my_land,urban,0.0,0.0,0.0,0.0,2011-03-26,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1507,my_land,rural,13.534537875203437,0.1,0.0,20.0,2011-03-26,0.0,0.0,0.0024210828635182866,0.0,0.0,0.0,0.0,0.0,10.058159314924945,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1508,my_land,urban,0.0,0.0,0.0,0.0,2011-03-27,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1509,my_land,rural,13.434537875203437,0.1,0.0,20.0,2011-03-27,0.0,0.0,0.0024310828635182866,0.0,0.0,0.0,0.0,0.0,10.101019914365619,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1510,my_land,urban,0.0,0.0,0.0,0.0,2011-03-28,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1511,my_land,rural,13.334537875203438,0.1,0.0,20.0,2011-03-28,0.0,0.0,0.0024410828635182866,0.0,0.0,0.0,0.0,0.0,10.143877489295704,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1512,my_land,urban,0.0,0.002,0.002,0.0,2011-03-29,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, +1513,my_land,rural,13.254537875203438,0.1,0.02,20.0,2011-03-29,0.0,0.0,0.0024510828635182867,0.0,0.0,0.0,0.0,0.0,10.186734686161962,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1514,my_land,urban,0.0,0.02,0.052,0.0,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1515,my_land,rural,13.674537875203438,0.1,0.52,20.0,2011-03-30,0.0,0.0,0.0024610828635182867,0.0,0.0,0.0,0.0,0.0,10.227238424452441,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.5 +1516,my_land,urban,0.0,0.0,0.0,0.0,2011-03-31,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1517,my_land,rural,13.574537875203438,0.1,0.0,20.0,2011-03-31,0.0,0.0,0.0024710828635182867,0.0,0.0,0.0,0.0,0.0,10.266797658056555,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1518,my_land,urban,0.0,0.001,0.001,0.0,2011-04-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1519,my_land,rural,13.484537875203438,0.1,0.01,20.0,2011-04-01,0.0,0.0,0.0024810828635182867,0.0,0.0,0.0,0.0,0.0,10.306563989757072,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1520,my_land,urban,0.0,0.0,0.0,0.0,2011-04-02,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1521,my_land,rural,13.384537875203439,0.1,0.0,20.0,2011-04-02,0.0,0.0,0.0024910828635182868,0.0,0.0,0.0,0.0,0.0,10.346356216219634,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1522,my_land,urban,0.0,0.013,0.013,0.0,2011-04-03,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1523,my_land,rural,13.414537875203438,0.1,0.13,20.0,2011-04-03,0.0,0.0,0.0025010828635182868,0.0,0.0,0.0,0.0,0.0,10.386182642152407,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +1524,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-04-04,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1525,my_land,rural,13.374537875203439,0.1,0.06,20.0,2011-04-04,0.0,0.0,0.002511082863518287,0.0,0.0,0.0,0.0,0.0,10.42595140276905,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +1526,my_land,urban,0.0,0.0,0.0,0.0,2011-04-05,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1527,my_land,rural,13.274537875203439,0.1,0.0,20.0,2011-04-05,0.0,0.0,0.002521082863518287,0.0,0.0,0.0,0.0,0.0,10.465743925346132,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1528,my_land,urban,0.0,0.0,0.0,0.0,2011-04-06,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1529,my_land,rural,13.17453787520344,0.1,0.0,20.0,2011-04-06,0.0,0.0,0.002531082863518287,0.0,0.0,0.0,0.0,0.0,10.817592990668267,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1530,my_land,urban,0.0,0.0,0.0,0.0,2011-04-07,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1531,my_land,rural,13.07453787520344,0.1,0.0,20.0,2011-04-07,0.0,0.0,0.002541082863518287,0.0,0.0,0.0,0.0,0.0,11.208449123833534,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1532,my_land,urban,0.0,0.0,0.0,0.0,2011-04-08,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1533,my_land,rural,12.97453787520344,0.1,0.0,20.0,2011-04-08,0.0,0.0,0.002551082863518287,0.0,0.0,0.0,0.0,0.0,11.604181140479191,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1534,my_land,urban,0.0,0.0,0.0,0.0,2011-04-09,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1535,my_land,rural,12.87453787520344,0.1,0.0,20.0,2011-04-09,0.0,0.0,0.002561082863518287,0.0,0.0,0.0,0.0,0.0,12.0005226425599,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1536,my_land,urban,0.0,0.0,0.0,0.0,2011-04-10,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1537,my_land,rural,12.77453787520344,0.1,0.0,20.0,2011-04-10,0.0,0.0,0.002571082863518287,0.0,0.0,0.0,0.0,0.0,12.396940330319989,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1538,my_land,urban,0.0,0.002,0.002,0.0,2011-04-11,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1539,my_land,rural,12.69453787520344,0.1,0.02,20.0,2011-04-11,0.0,0.0,0.002581082863518287,0.0,0.0,0.0,0.0,0.0,12.793367541289998,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1540,my_land,urban,0.0,0.0,0.0,0.0,2011-04-12,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1541,my_land,rural,12.594537875203441,0.1,0.0,20.0,2011-04-12,0.0,0.0,0.002591082863518287,0.0,0.0,0.0,0.0,0.0,12.80542094266125,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1542,my_land,urban,0.0,0.007,0.007,0.0,2011-04-13,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1543,my_land,rural,12.564537875203442,0.1,0.06999999999999999,20.0,2011-04-13,0.0,0.0,0.002601082863518287,0.0,0.0,0.0,0.0,0.0,12.769427617832656,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 +1544,my_land,urban,0.0,0.0,0.0,0.0,2011-04-14,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1545,my_land,rural,12.464537875203442,0.1,0.0,20.0,2011-04-14,0.0,0.0,0.002611082863518287,0.0,0.0,0.0,0.0,0.0,12.727428452229082,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1546,my_land,urban,0.0,0.0,0.0,0.0,2011-04-15,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1547,my_land,rural,12.364537875203442,0.1,0.0,20.0,2011-04-15,0.0,0.0,0.002621082863518287,0.0,0.0,0.0,0.0,0.0,12.684678556528636,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1548,my_land,urban,0.0,0.0,0.0,0.0,2011-04-16,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1549,my_land,rural,12.264537875203443,0.1,0.0,20.0,2011-04-16,0.0,0.0,0.002631082863518287,0.0,0.0,0.0,0.0,0.0,12.641834819566078,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1550,my_land,urban,0.0,0.0,0.0,0.0,2011-04-17,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1551,my_land,rural,12.164537875203443,0.1,0.0,20.0,2011-04-17,0.0,0.0,0.002641082863518287,0.0,0.0,0.0,0.0,0.0,12.598979352445761,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1552,my_land,urban,0.0,0.0,0.0,0.0,2011-04-18,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1553,my_land,rural,12.064537875203444,0.1,0.0,20.0,2011-04-18,0.0,0.0,0.002651082863518287,0.0,0.0,0.0,0.0,0.0,12.55612241905572,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1554,my_land,urban,0.0,0.0,0.0,0.0,2011-04-19,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1555,my_land,rural,11.964537875203444,0.1,0.0,20.0,2011-04-19,0.0,0.0,0.002661082863518287,0.0,0.0,0.0,0.0,0.0,12.513265302381967,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1556,my_land,urban,0.0,0.0,0.0,0.0,2011-04-20,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1557,my_land,rural,11.864537875203444,0.1,0.0,20.0,2011-04-20,0.0,0.0,0.0026710828635182872,0.0,0.0,0.0,0.0,0.0,12.695408162797747,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1558,my_land,urban,0.0,0.0,0.0,0.0,2011-04-21,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1559,my_land,rural,11.764537875203445,0.1,0.0,20.0,2011-04-21,0.0,0.0,0.0026810828635182873,0.0,0.0,0.0,0.0,0.0,12.90567602034972,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1560,my_land,urban,0.0,0.0,0.0,0.0,2011-04-22,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1561,my_land,rural,11.664537875203445,0.1,0.0,20.0,2011-04-22,0.0,0.0,0.0026910828635182873,0.0,0.0,0.0,0.0,0.0,13.119459502543716,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1562,my_land,urban,0.0,0.001,0.001,0.0,2011-04-23,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1563,my_land,rural,11.574537875203445,0.1,0.01,20.0,2011-04-23,0.0,0.0,0.0027010828635182873,0.0,0.0,0.0,0.0,0.0,13.333682437817965,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1564,my_land,urban,0.0,0.0,0.0,0.0,2011-04-24,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1565,my_land,rural,11.474537875203445,0.1,0.0,20.0,2011-04-24,0.0,0.0,0.0027110828635182873,0.0,0.0,0.0,0.0,0.0,13.547960304727248,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1566,my_land,urban,0.0,0.0,0.0,0.0,2011-04-25,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1567,my_land,rural,11.374537875203446,0.1,0.0,20.0,2011-04-25,0.0,0.0,0.0027210828635182874,0.0,0.0,0.0,0.0,0.0,13.762245038090906,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1568,my_land,urban,0.0,0.001,0.001,0.0,2011-04-26,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1569,my_land,rural,11.284537875203446,0.1,0.01,20.0,2011-04-26,0.0,0.0,0.0027310828635182874,0.0,0.0,0.0,0.0,0.0,13.976530629761365,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1570,my_land,urban,0.0,0.0,0.0,0.0,2011-04-27,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1571,my_land,rural,11.184537875203446,0.1,0.0,20.0,2011-04-27,0.0,0.0,0.0027410828635182874,0.0,0.0,0.0,0.0,0.0,13.810459183720171,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1572,my_land,urban,0.0,0.001,0.001,0.0,2011-04-28,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1573,my_land,rural,11.094537875203446,0.1,0.01,20.0,2011-04-28,0.0,0.0,0.0027510828635182874,0.0,0.0,0.0,0.0,0.0,13.596843115465022,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1574,my_land,urban,0.0,0.007,0.007,0.0,2011-04-29,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1575,my_land,rural,11.064537875203447,0.1,0.06999999999999999,20.0,2011-04-29,0.0,0.0,0.0027610828635182875,0.0,0.0,0.0,0.0,0.0,13.377283961933127,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 +1576,my_land,urban,0.0,0.001,0.001,0.0,2011-04-30,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1577,my_land,rural,10.974537875203447,0.1,0.01,20.0,2011-04-30,0.0,0.0,0.0027710828635182875,0.0,0.0,0.0,0.0,0.0,13.156981922741641,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1578,my_land,urban,0.0,0.0,0.0,0.0,2011-05-01,0.0,0.0,3.2000000000000005e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1579,my_land,rural,10.874537875203448,0.1,0.0,20.0,2011-05-01,0.0,0.0,0.0027810828635182875,0.0,0.0,0.0,0.0,0.0,12.936587022842707,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1580,my_land,urban,0.0,0.0,0.0,0.0,2011-05-02,0.0,0.0,3.3e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1581,my_land,rural,10.774537875203448,0.1,0.0,20.0,2011-05-02,0.0,0.0,0.0027910828635182875,0.0,0.0,0.0,0.0,0.0,12.716180522855339,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1582,my_land,urban,0.0,0.0,0.0,0.0,2011-05-03,0.0,0.0,3.4e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1583,my_land,rural,10.674537875203448,0.1,0.0,20.0,2011-05-03,0.0,0.0,0.0028010828635182876,0.0,0.0,0.0,0.0,0.0,12.49577256535692,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1584,my_land,urban,0.0,0.0,0.0,0.0,2011-05-04,0.0,0.0,3.5e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1585,my_land,rural,10.574537875203449,0.1,0.0,20.0,2011-05-04,0.0,0.0,0.0028110828635182876,0.0,0.0,0.0,0.0,0.0,12.808846573169614,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1586,my_land,urban,0.0,0.0,0.0,0.0,2011-05-05,0.0,0.0,3.5999999999999994e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, +1587,my_land,rural,10.474537875203449,0.1,0.0,20.0,2011-05-05,0.0,0.0,0.0028210828635182876,0.0,0.0,0.0,0.0,0.0,13.188605819146202,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1588,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2011-05-06,0.0,0.0,1.615492957746479e-05,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0,,,,, +1589,my_land,rural,11.28453787520345,0.1,0.91,20.0,2011-05-06,0.0,0.0,0.0028310828635182876,0.0,0.0,0.0,0.0,0.0,13.586111882461028,0.0,0.0,0.0,0.0,0.0,0.0,0.8099999999999999,0.5 +1590,my_land,urban,0.13999999999999999,0.02,0.16899999999999998,0.0,2011-05-07,0.0,0.0,1.3342723004694836e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1591,my_land,rural,12.87453787520345,0.1,1.69,20.0,2011-05-07,0.0,0.0,0.0028410828635182877,0.0,0.0,0.0,0.0,0.0,13.984080931580932,0.0,0.0,0.0,0.0,0.0,0.0,1.5899999999999999,0.5 +1592,my_land,urban,0.08499999999999999,0.02,0.005,0.0,2011-05-08,0.0,0.0,9.753051643192489e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1593,my_land,rural,12.824537875203449,0.1,0.05,20.0,2011-05-08,0.0,0.0,0.0028510828635182877,0.0,0.0,0.0,0.0,0.0,14.357385113947617,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1594,my_land,urban,0.030999999999999993,0.02,0.005999999999999999,0.0,2011-05-09,0.0,0.0,4.694994379422072e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1595,my_land,rural,12.78453787520345,0.1,0.06,20.0,2011-05-09,0.0,0.0,0.0028610828635182877,0.0,0.0,0.0,0.0,0.0,14.744673139243453,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +1596,my_land,urban,0.0,0.02,0.001,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1597,my_land,rural,12.69453787520345,0.1,0.01,20.0,2011-05-10,0.0,0.0,0.0028710828635182878,0.0,0.0,0.0,0.0,0.0,14.589512714905432,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1598,my_land,urban,0.0,0.001,0.001,0.0,2011-05-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1599,my_land,rural,12.60453787520345,0.1,0.01,20.0,2011-05-11,0.0,0.0,0.0028810828635182878,0.0,0.0,0.0,0.0,0.0,14.36654623436318,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1600,my_land,urban,0.0,0.004,0.004,0.0,2011-05-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1601,my_land,rural,12.54453787520345,0.1,0.04,20.0,2011-05-12,0.0,0.0,0.002891082863518288,0.0,0.0,0.0,0.0,0.0,14.135103996795399,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1602,my_land,urban,0.0,0.0,0.0,0.0,2011-05-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1603,my_land,rural,12.44453787520345,0.1,0.0,20.0,2011-05-13,0.0,0.0,0.002901082863518288,0.0,0.0,0.0,0.0,0.0,13.902602282099425,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1604,my_land,urban,0.0,0.002,0.002,0.0,2011-05-14,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1605,my_land,rural,12.36453787520345,0.1,0.02,20.0,2011-05-14,0.0,0.0,0.002911082863518288,0.0,0.0,0.0,0.0,0.0,13.669968140262428,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1606,my_land,urban,0.0,0.0,0.0,0.0,2011-05-15,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1607,my_land,rural,12.26453787520345,0.1,0.0,20.0,2011-05-15,0.0,0.0,0.002921082863518288,0.0,0.0,0.0,0.0,0.0,13.437317445032805,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1608,my_land,urban,0.0,0.0,0.0,0.0,2011-05-16,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1609,my_land,rural,12.16453787520345,0.1,0.0,20.0,2011-05-16,0.0,0.0,0.002931082863518288,0.0,0.0,0.0,0.0,0.0,13.2046646806291,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1610,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-05-17,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1611,my_land,rural,12.09453787520345,0.1,0.03,20.0,2011-05-17,0.0,0.0,0.002941082863518288,0.0,0.0,0.0,0.0,0.0,13.199020585078639,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1612,my_land,urban,0.0,0.002,0.002,0.0,2011-05-18,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1613,my_land,rural,12.01453787520345,0.1,0.02,20.0,2011-05-18,0.0,0.0,0.002951082863518288,0.0,0.0,0.0,0.0,0.0,13.221752573134829,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1614,my_land,urban,0.0,0.0,0.0,0.0,2011-05-19,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1615,my_land,rural,11.91453787520345,0.1,0.0,20.0,2011-05-19,0.0,0.0,0.002961082863518288,0.0,0.0,0.0,0.0,0.0,13.248031571641853,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1616,my_land,urban,0.0,0.0,0.0,0.0,2011-05-20,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1617,my_land,rural,11.81453787520345,0.1,0.0,20.0,2011-05-20,0.0,0.0,0.002971082863518288,0.0,0.0,0.0,0.0,0.0,13.274753946455233,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1618,my_land,urban,0.0,0.016,0.016,0.0,2011-05-21,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1619,my_land,rural,11.874537875203451,0.1,0.16,20.0,2011-05-21,0.0,0.0,0.002981082863518288,0.0,0.0,0.0,0.0,0.0,13.30189901826509,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 +1620,my_land,urban,0.0,0.004,0.004,0.0,2011-05-22,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1621,my_land,rural,11.81453787520345,0.1,0.04,20.0,2011-05-22,0.0,0.0,0.002991082863518288,0.0,0.0,0.0,0.0,0.0,13.328362377283137,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1622,my_land,urban,0.0,0.005,0.005,0.0,2011-05-23,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1623,my_land,rural,11.76453787520345,0.1,0.05,20.0,2011-05-23,0.0,0.0,0.003001082863518288,0.0,0.0,0.0,0.0,0.0,13.355107797160391,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1624,my_land,urban,0.0,0.0,0.0,0.0,2011-05-24,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1625,my_land,rural,11.66453787520345,0.1,0.0,20.0,2011-05-24,0.0,0.0,0.003011082863518288,0.0,0.0,0.0,0.0,0.0,13.381888474645049,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1626,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2011-05-25,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, +1627,my_land,rural,11.67453787520345,0.1,0.11,20.0,2011-05-25,0.0,0.0,0.003021082863518288,0.0,0.0,0.0,0.0,0.0,13.358507345932319,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 +1628,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, +1629,my_land,rural,11.86453787520345,0.1,0.29,20.0,2011-05-26,0.0,0.0,0.003031082863518288,0.0,0.0,0.0,0.0,0.0,13.329783036092527,0.0,0.0,0.0,0.0,0.0,0.0,0.18999999999999997,0.5 +1630,my_land,urban,0.0,0.001,0.001,0.0,2011-05-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, +1631,my_land,rural,11.77453787520345,0.1,0.01,20.0,2011-05-27,0.0,0.0,0.003041082863518288,0.0,0.0,0.0,0.0,0.0,13.298365734511565,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1632,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-05-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, +1633,my_land,rural,11.70453787520345,0.1,0.03,20.0,2011-05-28,0.0,0.0,0.0030510828635182882,0.0,0.0,0.0,0.0,0.0,13.267652861813946,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1634,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2011-05-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, +1635,my_land,rural,11.71453787520345,0.1,0.11,20.0,2011-05-29,0.0,0.0,0.0030610828635182883,0.0,0.0,0.0,0.0,0.0,13.237081790623836,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 +1636,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2011-05-30,0.0,0.0,8.470329472543003e-22,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1637,my_land,rural,12.11453787520345,0.1,0.5,20.0,2011-05-30,0.0,0.0,0.0030710828635182883,0.0,0.0,0.0,0.0,0.0,13.208478933570495,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 +1638,my_land,urban,0.0,3.469446951953614e-18,0.0,0.0,2011-05-31,0.0,0.0,1.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1639,my_land,rural,12.01453787520345,0.1,0.0,20.0,2011-05-31,0.0,0.0,0.0030810828635182883,0.0,0.0,0.0,0.0,0.0,13.176059866696312,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1640,my_land,urban,0.0,0.0,0.0,0.0,2011-06-01,0.0,0.0,2.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1641,my_land,rural,11.91453787520345,0.1,0.0,20.0,2011-06-01,0.0,0.0,0.0030910828635182883,0.0,0.0,0.0,0.0,0.0,13.354150338337039,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1642,my_land,urban,0.0,0.0,0.0,0.0,2011-06-02,0.0,0.0,3.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1643,my_land,rural,11.81453787520345,0.1,0.0,20.0,2011-06-02,0.0,0.0,0.0031010828635182884,0.0,0.0,0.0,0.0,0.0,13.558554509792133,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1644,my_land,urban,0.0,0.0,0.0,0.0,2011-06-03,0.0,0.0,4.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1645,my_land,rural,11.714537875203451,0.1,0.0,20.0,2011-06-03,0.0,0.0,0.0031110828635182884,0.0,0.0,0.0,0.0,0.0,13.766247886224019,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1646,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-06-04,0.0,0.0,5e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1647,my_land,rural,11.674537875203452,0.1,0.06,20.0,2011-06-04,0.0,0.0,0.0031210828635182884,0.0,0.0,0.0,0.0,0.0,13.974352413278003,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +1648,my_land,urban,0.0,0.014,0.014,0.0,2011-06-05,0.0,0.0,6e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1649,my_land,rural,11.714537875203451,0.1,0.13999999999999999,20.0,2011-06-05,0.0,0.0,0.0031310828635182884,0.0,0.0,0.0,0.0,0.0,14.182909516565209,0.0,0.0,0.0,0.0,0.0,0.0,0.039999999999999994,0.5 +1650,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-06-06,0.0,0.0,7e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, +1651,my_land,rural,11.64453787520345,0.1,0.03,20.0,2011-06-06,0.0,0.0,0.0031410828635182885,0.0,0.0,0.0,0.0,0.0,14.390720834570653,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1652,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0,,,,, +1653,my_land,rural,11.75453787520345,0.1,0.21,20.0,2011-06-07,0.0,0.0,0.0031510828635182885,0.0,0.0,0.0,0.0,0.0,14.600020719728931,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 +1654,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-06-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0,,,,, +1655,my_land,rural,11.714537875203451,0.1,0.06,20.0,2011-06-08,0.0,0.0,0.0031610828635182885,0.0,0.0,0.0,0.0,0.0,14.600895444966117,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +1656,my_land,urban,0.0,0.001,0.001,0.0,2011-06-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0,,,,, +1657,my_land,rural,11.624537875203451,0.1,0.01,20.0,2011-06-09,0.0,0.0,0.0031710828635182885,0.0,0.0,0.0,0.0,0.0,14.576897648120765,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1658,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0,,,,, +1659,my_land,rural,11.89453787520345,0.1,0.37,20.0,2011-06-10,0.0,0.0,0.0031810828635182886,0.0,0.0,0.0,0.0,0.0,14.55185266947679,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.5 +1660,my_land,urban,0.0,0.02,0.039,0.0,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0,,,,, +1661,my_land,rural,12.18453787520345,0.1,0.38999999999999996,20.0,2011-06-11,0.0,0.0,0.0031910828635182886,0.0,0.0,0.0,0.0,0.0,14.52469380853458,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.5 +1662,my_land,urban,0.11299999999999999,0.02,0.173,0.0,2011-06-12,0.0,0.0,7.385620915032679e-07,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1663,my_land,rural,13.814537875203449,0.1,1.73,20.0,2011-06-12,0.0,0.0,0.0032010828635182886,0.0,0.0,0.0,0.0,0.0,14.505590492495918,0.0,0.0,0.0,0.0,0.0,0.0,1.63,0.5 +1664,my_land,urban,0.052999999999999985,0.02,0.0,0.0,2011-06-13,0.0,0.0,9.90793449996486e-07,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1665,my_land,rural,13.71453787520345,0.1,0.0,20.0,2011-06-13,0.0,0.0,0.0032110828635182886,0.0,0.0,0.0,0.0,0.0,14.468555956561989,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1666,my_land,urban,0.0,0.02,0.0,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1667,my_land,rural,13.61453787520345,0.1,0.0,20.0,2011-06-14,0.0,0.0,0.0032210828635182887,0.0,0.0,0.0,0.0,0.0,14.439819494570251,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1668,my_land,urban,0.0,0.016,0.016,0.0,2011-06-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1669,my_land,rural,13.67453787520345,0.1,0.16,20.0,2011-06-15,0.0,0.0,0.0032310828635182887,0.0,0.0,0.0,0.0,0.0,14.54921292699662,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 +1670,my_land,urban,0.0,0.009,0.009,0.0,2011-06-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1671,my_land,rural,13.66453787520345,0.1,0.09,20.0,2011-06-16,0.0,0.0,0.0032410828635182887,0.0,0.0,0.0,0.0,0.0,14.67490161587458,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1672,my_land,urban,0.0,0.02,0.039,0.0,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, +1673,my_land,rural,13.95453787520345,0.1,0.38999999999999996,20.0,2011-06-17,0.0,0.0,0.0032510828635182887,0.0,0.0,0.0,0.0,0.0,14.805580792775473,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.5 +1674,my_land,urban,1.734723475976807e-18,0.02,0.033,0.0,2011-06-18,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0,,,,, +1675,my_land,rural,14.18453787520345,0.1,0.33,20.0,2011-06-18,0.0,0.0,0.0032610828635182888,0.0,0.0,0.0,0.0,0.0,14.93391247116065,0.0,0.0,0.0,0.0,0.0,0.0,0.22999999999999998,0.5 +1676,my_land,urban,0.0,1.734723475976807e-18,0.0,0.0,2011-06-19,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0,,,,, +1677,my_land,rural,14.08453787520345,0.1,0.0,20.0,2011-06-19,0.0,0.0,0.003271082863518289,0.0,0.0,0.0,0.0,0.0,15.060489058895083,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1678,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2011-06-20,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, +1679,my_land,rural,14.48453787520345,0.1,0.5,20.0,2011-06-20,0.0,0.0,0.003281082863518289,0.0,0.0,0.0,0.0,0.0,15.192313180372826,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 +1680,my_land,urban,0.0,0.010000000000000004,0.01,0.0,2011-06-21,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, +1681,my_land,rural,14.48453787520345,0.1,0.1,20.0,2011-06-21,0.0,0.0,0.003291082863518289,0.0,0.0,0.0,0.0,0.0,15.317789147546607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +1682,my_land,urban,0.0,0.004,0.004,0.0,2011-06-22,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, +1683,my_land,rural,14.42453787520345,0.1,0.04,20.0,2011-06-22,0.0,0.0,0.003301082863518289,0.0,0.0,0.0,0.0,0.0,15.550437925943326,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1684,my_land,urban,0.0,0.008,0.008,0.0,2011-06-23,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, +1685,my_land,rural,14.40453787520345,0.1,0.08,20.0,2011-06-23,0.0,0.0,0.003311082863518289,0.0,0.0,0.0,0.0,0.0,15.796483313242918,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 +1686,my_land,urban,0.007999999999999993,0.02,0.06799999999999999,0.0,2011-06-24,0.0,0.0,6.666666666666661e-07,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1687,my_land,rural,14.98453787520345,0.1,0.6799999999999999,20.0,2011-06-24,0.0,0.0,0.003321082863518289,0.0,0.0,0.0,0.0,0.0,16.050475541495203,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.5 +1688,my_land,urban,0.0,0.007999999999999993,0.0,0.0,2011-06-25,0.0,0.0,1.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1689,my_land,rural,14.884537875203451,0.1,0.0,20.0,2011-06-25,0.0,0.0,0.003331082863518289,0.0,0.0,0.0,0.0,0.0,16.2929165876869,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1690,my_land,urban,0.0,0.0,0.0,0.0,2011-06-26,0.0,0.0,2.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1691,my_land,rural,14.784537875203451,0.1,0.0,20.0,2011-06-26,0.0,0.0,0.003341082863518289,0.0,0.0,0.0,0.0,0.0,16.540186000960862,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1692,my_land,urban,0.0,0.001,0.001,0.0,2011-06-27,0.0,0.0,3.6666666666666657e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1693,my_land,rural,14.694537875203451,0.1,0.01,20.0,2011-06-27,0.0,0.0,0.003351082863518289,0.0,0.0,0.0,0.0,0.0,16.788058967620106,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1694,my_land,urban,0.0,0.0,0.0,0.0,2011-06-28,0.0,0.0,4.6666666666666655e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1695,my_land,rural,14.594537875203452,0.1,0.0,20.0,2011-06-28,0.0,0.0,0.003361082863518289,0.0,0.0,0.0,0.0,0.0,17.036007370952515,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1696,my_land,urban,0.0,0.0,0.0,0.0,2011-06-29,0.0,0.0,5.666666666666665e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1697,my_land,rural,14.494537875203452,0.1,0.0,20.0,2011-06-29,0.0,0.0,0.003371082863518289,0.0,0.0,0.0,0.0,0.0,17.037536638869067,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1698,my_land,urban,0.0,0.0,0.0,0.0,2011-06-30,0.0,0.0,6.666666666666665e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1699,my_land,rural,14.394537875203453,0.1,0.0,20.0,2011-06-30,0.0,0.0,0.003381082863518289,0.0,0.0,0.0,0.0,0.0,17.008263507358635,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1700,my_land,urban,0.0,0.0,0.0,0.0,2011-07-01,0.0,0.0,7.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1701,my_land,rural,14.294537875203453,0.1,0.0,20.0,2011-07-01,0.0,0.0,0.003391082863518289,0.0,0.0,0.0,0.0,0.0,16.975140083419827,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1702,my_land,urban,0.0,0.0,0.0,0.0,2011-07-02,0.0,0.0,8.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1703,my_land,rural,14.194537875203453,0.1,0.0,20.0,2011-07-02,0.0,0.0,0.003401082863518289,0.0,0.0,0.0,0.0,0.0,16.94153536542748,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1704,my_land,urban,0.0,0.0,0.0,0.0,2011-07-03,0.0,0.0,9.666666666666667e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1705,my_land,rural,14.094537875203454,0.1,0.0,20.0,2011-07-03,0.0,0.0,0.003411082863518289,0.0,0.0,0.0,0.0,0.0,16.90787049317844,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1706,my_land,urban,0.0,0.0,0.0,0.0,2011-07-04,0.0,0.0,1.0666666666666667e-05,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, +1707,my_land,rural,13.994537875203454,0.1,0.0,20.0,2011-07-04,0.0,0.0,0.003421082863518289,0.0,0.0,0.0,0.0,0.0,16.874198094147307,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1708,my_land,urban,0.0,0.02,0.026,0.0,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0,,,,, +1709,my_land,rural,14.154537875203454,0.1,0.26,20.0,2011-07-05,0.0,0.0,0.0034310828635182892,0.0,0.0,0.0,0.0,0.0,16.84208016670718,0.0,0.0,0.0,0.0,0.0,0.0,0.15999999999999998,0.5 +1710,my_land,urban,0.0,0.02,0.041,0.0,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0,,,,, +1711,my_land,rural,14.464537875203455,0.1,0.41000000000000003,20.0,2011-07-06,0.0,0.0,0.0034410828635182892,0.0,0.0,0.0,0.0,0.0,16.745460203442025,0.0,0.0,0.0,0.0,0.0,0.0,0.31000000000000005,0.5 +1712,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0,,,,, +1713,my_land,rural,14.704537875203455,0.1,0.33999999999999997,20.0,2011-07-07,0.0,0.0,0.0034510828635182893,0.0,0.0,0.0,0.0,0.0,16.638930969321937,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 +1714,my_land,urban,0.05599999999999999,0.02,0.11599999999999999,0.0,2011-07-08,0.0,0.0,5.833333333333332e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1715,my_land,rural,15.764537875203455,0.1,1.16,20.0,2011-07-08,0.0,0.0,0.0034610828635182893,0.0,0.0,0.0,0.0,0.0,16.537944099010673,0.0,0.0,0.0,0.0,0.0,0.0,1.0599999999999998,0.5 +1716,my_land,urban,0.003999999999999983,0.02,0.008,0.0,2011-07-09,0.0,0.0,1.4393939393939329e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1717,my_land,rural,15.741298845968815,0.1,0.08,20.0,2011-07-09,0.0,0.0,0.0034710828635182893,0.0,0.0,0.0,0.0,0.0,16.423493012376337,0.0,0.0,0.0,0.0,0.0,0.003239029234640413,-0.08478058469280826,0.5 +1718,my_land,urban,0.0,0.003999999999999983,0.0,0.0,2011-07-10,0.0,0.0,1.1439393939393932e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1719,my_land,rural,15.641298845968816,0.1,0.0,20.0,2011-07-10,0.0,0.0,0.0034810828635182894,0.0,0.0,0.0,0.0,0.0,16.315436626547044,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1720,my_land,urban,0.0,0.0,0.0,0.0,2011-07-11,0.0,0.0,2.1439393939393934e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1721,my_land,rural,15.541298845968816,0.1,0.0,20.0,2011-07-11,0.0,0.0,0.0034910828635182894,0.0,0.0,0.0,0.0,0.0,16.208179578318383,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1722,my_land,urban,0.0,0.0,0.0,0.0,2011-07-12,0.0,0.0,3.143939393939393e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1723,my_land,rural,15.441298845968817,0.1,0.0,20.0,2011-07-12,0.0,0.0,0.0035010828635182894,0.0,0.0,0.0,0.0,0.0,16.101022447289797,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1724,my_land,urban,0.0,0.0,0.0,0.0,2011-07-13,0.0,0.0,4.143939393939393e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1725,my_land,rural,15.341298845968817,0.1,0.0,20.0,2011-07-13,0.0,0.0,0.0035110828635182894,0.0,0.0,0.0,0.0,0.0,15.993877805911227,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1726,my_land,urban,0.0,0.0,0.0,0.0,2011-07-14,0.0,0.0,5.143939393939393e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, +1727,my_land,rural,15.241298845968817,0.1,0.0,20.0,2011-07-14,0.0,0.0,0.0035210828635182895,0.0,0.0,0.0,0.0,0.0,15.886734725738906,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1728,my_land,urban,0.0,0.02,0.053,0.0,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0,,,,, +1729,my_land,rural,15.464490506753846,0.1,0.53,20.0,2011-07-15,0.0,0.0,0.00348678515871001,0.0,0.0,0.0,0.0,0.0,15.782399667398817,0.0,0.0,0.0,0.14735094169066731,0.049116980563555776,0.010340416960748586,0.22319166078502828,0.5 +1730,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2011-07-16,0.0,0.0,4.0298507462686564e-07,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0,,,,, +1731,my_land,rural,15.69264625207895,0.1,0.8699999999999999,20.0,2011-07-16,0.0,0.0,0.003385726167746629,0.0,0.0,0.0,0.0,0.0,15.677484560195461,0.0,0.0,0.0,0.38606403145586426,0.1286880104852881,0.027092212733744864,0.2281557453251027,0.5 +1732,my_land,urban,0.0,0.02,0.031,0.0,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1733,my_land,rural,15.66243205082174,0.1,0.31,20.0,2011-07-17,0.0,0.0,0.0033469605557878853,0.0,0.0,0.0,0.0,0.0,15.567177649952761,0.0,0.0,0.0,0.17115261839575974,0.057050872798586574,0.012010710062860332,-0.03021420125720667,0.5 +1734,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2011-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1735,my_land,rural,15.588987616296457,0.1,0.11,20.0,2011-07-18,0.0,0.0,0.0033399763026264614,0.0,0.0,0.0,0.0,0.0,15.45843360239732,0.0,0.0,0.0,0.05945415959926334,0.019818053199754448,0.004172221726264094,-0.07344443452528188,0.5 +1736,my_land,urban,0.0,0.002,0.002,0.0,2011-07-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1737,my_land,rural,15.508273166666333,0.1,0.02,20.0,2011-07-19,0.0,0.0,0.0033499763026264614,0.0,0.0,0.0,0.0,0.0,15.351054200299668,0.0,0.0,0.0,0.0,0.0,0.000714449630123085,-0.09428899260246171,0.5 +1738,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-07-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1739,my_land,rural,15.466300129146104,0.1,0.06,20.0,2011-07-20,0.0,0.0,0.0033599763026264614,0.0,0.0,0.0,0.0,0.0,15.385846057537462,0.0,0.0,0.0,0.0,0.0,0.0019730375202293518,-0.07946075040458704,0.5 +1740,my_land,urban,0.0,0.008,0.008,0.0,2011-07-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1741,my_land,rural,15.44380288218248,0.1,0.08,20.0,2011-07-21,0.0,0.0,0.0033699763026264614,0.0,0.0,0.0,0.0,0.0,15.438409329692183,0.0,0.0,0.0,0.0,0.0,0.0024972469636243767,-0.06994493927248753,0.5 +1742,my_land,urban,0.0,0.001,0.001,0.0,2011-07-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1743,my_land,rural,15.353500258485838,0.1,0.01,20.0,2011-07-22,0.0,0.0,0.0033799763026264615,0.0,0.0,0.0,0.0,0.0,15.493194021211522,0.0,0.0,0.0,0.0,0.0,0.00030262369664302985,-0.0960524739328606,0.5 +1744,my_land,urban,0.0,0.0,0.0,0.0,2011-07-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1745,my_land,rural,15.253500258485838,0.1,0.0,20.0,2011-07-23,0.0,0.0,0.0033899763026264615,0.0,0.0,0.0,0.0,0.0,15.548256397651443,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1746,my_land,urban,0.0,0.0,0.0,0.0,2011-07-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1747,my_land,rural,15.153500258485838,0.1,0.0,20.0,2011-07-24,0.0,0.0,0.0033999763026264615,0.0,0.0,0.0,0.0,0.0,15.603353477206431,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1748,my_land,urban,0.0,0.0,0.0,0.0,2011-07-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1749,my_land,rural,15.053500258485839,0.1,0.0,20.0,2011-07-25,0.0,0.0,0.0034099763026264615,0.0,0.0,0.0,0.0,0.0,15.658454902150806,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1750,my_land,urban,0.0,0.0,0.0,0.0,2011-07-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1751,my_land,rural,14.953500258485839,0.1,0.0,20.0,2011-07-26,0.0,0.0,0.0034199763026264616,0.0,0.0,0.0,0.0,0.0,15.713556862768852,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1752,my_land,urban,0.0,0.0,0.0,0.0,2011-07-27,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1753,my_land,rural,14.85350025848584,0.1,0.0,20.0,2011-07-27,0.0,0.0,0.0034299763026264616,0.0,0.0,0.0,0.0,0.0,16.00973032534611,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1754,my_land,urban,0.0,0.002,0.002,0.0,2011-07-28,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1755,my_land,rural,14.77350025848584,0.1,0.02,20.0,2011-07-28,0.0,0.0,0.0034399763026264616,0.0,0.0,0.0,0.0,0.0,16.336037718168264,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1756,my_land,urban,0.0,0.0,0.0,0.0,2011-07-29,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1757,my_land,rural,14.67350025848584,0.1,0.0,20.0,2011-07-29,0.0,0.0,0.0034499763026264616,0.0,0.0,0.0,0.0,0.0,16.666111859771036,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1758,my_land,urban,0.0,0.0,0.0,0.0,2011-07-30,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1759,my_land,rural,14.57350025848584,0.1,0.0,20.0,2011-07-30,0.0,0.0,0.0034599763026264617,0.0,0.0,0.0,0.0,0.0,16.99665683747138,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1760,my_land,urban,0.0,0.002,0.002,0.0,2011-07-31,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1761,my_land,rural,14.49350025848584,0.1,0.02,20.0,2011-07-31,0.0,0.0,0.0034699763026264617,0.0,0.0,0.0,0.0,0.0,17.327260677183922,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1762,my_land,urban,0.0,0.0,0.0,0.0,2011-08-01,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1763,my_land,rural,14.39350025848584,0.1,0.0,20.0,2011-08-01,0.0,0.0,0.0034799763026264617,0.0,0.0,0.0,0.0,0.0,17.657871867147993,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1764,my_land,urban,0.0,0.01,0.01,0.0,2011-08-02,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, +1765,my_land,rural,14.39350025848584,0.1,0.1,20.0,2011-08-02,0.0,0.0,0.0034899763026264618,0.0,0.0,0.0,0.0,0.0,17.9884839833935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +1766,my_land,urban,0.0,0.02,0.043,0.0,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0,,,,, +1767,my_land,rural,14.72350025848584,0.1,0.43,20.0,2011-08-03,0.0,0.0,0.0034999763026264618,0.0,0.0,0.0,0.0,0.0,17.678802819295708,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.5 +1768,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0,,,,, +1769,my_land,rural,15.13350025848584,0.1,0.51,20.0,2011-08-04,0.0,0.0,0.003509976302626462,0.0,0.0,0.0,0.0,0.0,17.28650870344009,0.0,0.0,0.0,0.0,0.0,0.0,0.41000000000000003,0.5 +1770,my_land,urban,0.0,0.0,0.0,0.0,2011-08-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0,,,,, +1771,my_land,rural,15.03350025848584,0.1,0.0,20.0,2011-08-05,0.0,0.0,0.003519976302626462,0.0,0.0,0.0,0.0,0.0,16.88134930543001,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1772,my_land,urban,0.0,0.004,0.004,0.0,2011-08-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0,,,,, +1773,my_land,rural,14.97337022626906,0.1,0.04,20.0,2011-08-06,0.0,0.0,0.003529976302626462,0.0,0.0,0.0,0.0,0.0,16.477132945678754,0.0,0.0,0.0,0.0,0.0,0.0001300322167810906,-0.06260064433562182,0.5 +1774,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1775,my_land,rural,15.21337022626906,0.1,0.33999999999999997,20.0,2011-08-07,0.0,0.0,0.003539976302626462,0.0,0.0,0.0,0.0,0.0,16.074100754092278,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 +1776,my_land,urban,0.0,0.0,0.0,0.0,2011-08-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1777,my_land,rural,15.11337022626906,0.1,0.0,20.0,2011-08-08,0.0,0.0,0.003549976302626462,0.0,0.0,0.0,0.0,0.0,15.669084021761536,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1778,my_land,urban,0.0,0.0,0.0,0.0,2011-08-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1779,my_land,rural,15.01337022626906,0.1,0.0,20.0,2011-08-09,0.0,0.0,0.003559976302626462,0.0,0.0,0.0,0.0,0.0,15.264885502720192,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1780,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-08-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1781,my_land,rural,14.943330594824529,0.1,0.03,20.0,2011-08-10,0.0,0.0,0.003569976302626462,0.0,0.0,0.0,0.0,0.0,15.286682115340023,0.0,0.0,0.0,0.0,0.0,3.963144453209744e-05,-0.07079262889064196,0.5 +1782,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-08-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1783,my_land,rural,14.873330594824528,0.1,0.03,20.0,2011-08-11,0.0,0.0,0.003579976302626462,0.0,0.0,0.0,0.0,0.0,15.361728119417505,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1784,my_land,urban,0.0,0.02,0.02,0.0,2011-08-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1785,my_land,rural,14.973330594824528,0.1,0.2,20.0,2011-08-12,0.0,0.0,0.003589976302626462,0.0,0.0,0.0,0.0,0.0,15.444267250154768,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 +1786,my_land,urban,0.0,0.0,0.0,0.0,2011-08-13,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1787,my_land,rural,14.873330594824528,0.1,0.0,20.0,2011-08-13,0.0,0.0,0.003599976302626462,0.0,0.0,0.0,0.0,0.0,15.526069123769345,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1788,my_land,urban,0.0,0.0,0.0,0.0,2011-08-14,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1789,my_land,rural,14.773330594824529,0.1,0.0,20.0,2011-08-14,0.0,0.0,0.003609976302626462,0.0,0.0,0.0,0.0,0.0,15.608615785471168,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1790,my_land,urban,0.0,0.007,0.007,0.0,2011-08-15,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1791,my_land,rural,14.74333059482453,0.1,0.06999999999999999,20.0,2011-08-15,0.0,0.0,0.003619976302626462,0.0,0.0,0.0,0.0,0.0,15.691255545683896,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 +1792,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-08-16,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1793,my_land,rural,14.67333059482453,0.1,0.03,20.0,2011-08-16,0.0,0.0,0.003629976302626462,0.0,0.0,0.0,0.0,0.0,15.773906943210486,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +1794,my_land,urban,0.0,0.01,0.01,0.0,2011-08-17,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, +1795,my_land,rural,14.67333059482453,0.1,0.1,20.0,2011-08-17,0.0,0.0,0.003639976302626462,0.0,0.0,0.0,0.0,0.0,15.65566694040131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +1796,my_land,urban,0.031999999999999994,0.02,0.092,0.0,2011-08-18,0.0,0.0,4.888888888888889e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, +1797,my_land,rural,15.49333059482453,0.1,0.9199999999999999,20.0,2011-08-18,0.0,0.0,0.003649976302626462,0.0,0.0,0.0,0.0,0.0,15.517287089273932,0.0,0.0,0.0,0.0,0.0,0.0,0.8199999999999998,0.5 +1798,my_land,urban,0.0,0.02,0.0,0.0,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, +1799,my_land,rural,15.39333059482453,0.1,0.0,20.0,2011-08-19,0.0,0.0,0.003659976302626462,0.0,0.0,0.0,0.0,0.0,15.366446603659243,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1800,my_land,urban,0.0,0.004,0.004,0.0,2011-08-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, +1801,my_land,rural,15.332212050375784,0.1,0.04,20.0,2011-08-20,0.0,0.0,0.0036699763026264622,0.0,0.0,0.0,0.0,0.0,15.219020107957407,0.0,0.0,0.0,0.0,0.0,0.0011185444487459436,-0.08237088897491887,0.5 +1802,my_land,urban,0.0,0.0,0.0,0.0,2011-08-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, +1803,my_land,rural,15.232212050375784,0.1,0.0,20.0,2011-08-21,0.0,0.0,0.0036799763026264623,0.0,0.0,0.0,0.0,0.0,15.072020368494675,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1804,my_land,urban,0.0,0.02,0.038,0.0,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0,,,,, +1805,my_land,rural,15.368397353484188,0.1,0.38,20.0,2011-08-22,0.0,0.0,0.0036574617273759636,0.0,0.0,0.0,0.0,0.0,14.926502257427375,0.0,0.0,0.0,0.10246797153526206,0.034155990511754025,0.007190734844579795,0.1361853031084041,0.5 +1806,my_land,urban,0.0,0.001,0.001,0.0,2011-08-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0,,,,, +1807,my_land,rural,15.278129939122882,0.1,0.01,20.0,2011-08-23,0.0,0.0,0.0036674617273759636,0.0,0.0,0.0,0.0,0.0,14.778312782178423,0.0,0.0,0.0,0.0,0.0,0.0002674143613047554,-0.0953482872260951,0.5 +1808,my_land,urban,0.034999999999999996,0.02,0.095,0.0,2011-08-24,0.0,0.0,9.333333333333332e-07,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0,,,,, +1809,my_land,rural,15.714128815603102,0.1,0.95,20.0,2011-08-24,0.0,0.0,0.0035876677855116454,0.0,0.0,0.0,0.0,0.0,14.74854610549609,0.0,0.0,0.0,0.29497580050784333,0.09832526683594778,0.020700056175989006,0.43599887648021995,0.5 +1810,my_land,urban,0.0,0.02,0.023,0.0,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0,,,,, +1811,my_land,rural,15.663380255362075,0.1,0.22999999999999998,20.0,2011-08-25,0.0,0.0,0.0035586557208690623,0.0,0.0,0.0,0.0,0.0,14.724649763136096,0.0,0.0,0.0,0.12878334917173218,0.04292778305724406,0.009037428012051383,-0.05074856024102764,0.5 +1812,my_land,urban,0.042,0.02,0.10200000000000001,0.0,2011-08-26,0.0,0.0,5.121951219512195e-07,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1813,my_land,rural,15.809085007740531,0.1,1.02,20.0,2011-08-26,0.0,0.0,0.003409992282921242,0.0,0.0,0.0,0.0,0.0,14.709934394020735,0.0,0.0,0.0,0.5516853639303497,0.1838951213101166,0.038714762381077183,0.14570475237845637,0.5 +1814,my_land,urban,0.0,0.02,0.007,0.0,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1815,my_land,rural,15.776184048700573,0.1,0.06999999999999999,20.0,2011-08-27,0.0,0.0,0.003419992282921242,0.0,0.0,0.0,0.0,0.0,14.686956081752593,0.0,0.0,0.0,0.0,0.0,0.0029009590399579586,-0.08801918079915917,0.5 +1816,my_land,urban,0.0,0.004,0.004,0.0,2011-08-28,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1817,my_land,rural,15.714554200454904,0.1,0.04,20.0,2011-08-28,0.0,0.0,0.003429992282921242,0.0,0.0,0.0,0.0,0.0,14.668012365219075,0.0,0.0,0.0,0.0,0.0,0.001629848245668764,-0.09259696491337528,0.5 +1818,my_land,urban,0.0,0.0,0.0,0.0,2011-08-29,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1819,my_land,rural,15.614554200454904,0.1,0.0,20.0,2011-08-29,0.0,0.0,0.003439992282921242,0.0,0.0,0.0,0.0,0.0,14.649572973152386,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1820,my_land,urban,0.0,0.0,0.0,0.0,2011-08-30,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1821,my_land,rural,15.514554200454905,0.1,0.0,20.0,2011-08-30,0.0,0.0,0.0034499922829212422,0.0,0.0,0.0,0.0,0.0,14.631196621644051,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1822,my_land,urban,0.0,0.0,0.0,0.0,2011-08-31,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1823,my_land,rural,15.414554200454905,0.1,0.0,20.0,2011-08-31,0.0,0.0,0.0034599922829212423,0.0,0.0,0.0,0.0,0.0,14.626221005205508,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1824,my_land,urban,0.0,0.0,0.0,0.0,2011-09-01,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1825,my_land,rural,15.314554200454905,0.1,0.0,20.0,2011-09-01,0.0,0.0,0.0034699922829212423,0.0,0.0,0.0,0.0,0.0,14.622920480650691,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1826,my_land,urban,0.0,0.0,0.0,0.0,2011-09-02,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1827,my_land,rural,15.214554200454906,0.1,0.0,20.0,2011-09-02,0.0,0.0,0.0034799922829212423,0.0,0.0,0.0,0.0,0.0,14.619829342581335,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1828,my_land,urban,0.0,0.018,0.018,0.0,2011-09-03,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, +1829,my_land,rural,15.230644646281167,0.1,0.18,20.0,2011-09-03,0.0,0.0,0.0034761353286655995,0.0,0.0,0.0,0.0,0.0,14.617245240462676,0.0,0.0,0.0,0.045535557348788974,0.015178519116262992,0.0031954777086869455,0.016090445826261082,0.5 +1830,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0,,,,, +1831,my_land,rural,15.311484760965639,0.1,0.29,20.0,2011-09-04,0.0,0.0,0.0034626832074426167,0.0,0.0,0.0,0.0,0.0,14.61490741594927,0.0,0.0,0.0,0.07777641828731367,0.025925472762437892,0.005457994265776399,0.080840114684472,0.5 +1832,my_land,urban,1.734723475976807e-18,0.02,0.035,0.0,2011-09-05,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0,,,,, +1833,my_land,rural,15.39544387965206,0.1,0.35000000000000003,20.0,2011-09-05,0.0,0.0,0.0034374635986176593,0.0,0.0,0.0,0.0,0.0,14.612275426025837,0.0,0.0,0.0,0.1183041279359258,0.03943470931197527,0.008302044065679005,0.0839591186864199,0.5 +1834,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0,,,,, +1835,my_land,rural,15.391960108093732,0.1,0.22,20.0,2011-09-06,0.0,0.0,0.0034213875469950136,0.0,0.0,0.0,0.0,0.0,14.608484152879642,0.0,0.0,0.0,0.08798218723530808,0.02932739574510269,0.006174188577916358,-0.003483771558327126,0.5 +1836,my_land,urban,0.0,0.01,0.01,0.0,2011-09-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0,,,,, +1837,my_land,rural,15.389170311593496,0.1,0.1,20.0,2011-09-07,0.0,0.0,0.0034313875469950137,0.0,0.0,0.0,0.0,0.0,14.556417664109956,0.0,0.0,0.0,0.0,0.0,0.0027897965002364393,-0.05579593000472878,0.5 +1838,my_land,urban,0.0,0.02,0.026,0.0,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1839,my_land,rural,15.404798604284505,0.1,0.26,20.0,2011-09-08,0.0,0.0,0.003411018320902806,0.0,0.0,0.0,0.0,0.0,14.499855586753856,0.0,0.0,0.0,0.1028648414576555,0.03428828048588516,0.007218585365449509,0.015628292691009814,0.5 +1840,my_land,urban,0.0,0.001,0.001,0.0,2011-09-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1841,my_land,rural,15.31451354340246,0.1,0.01,20.0,2011-09-09,0.0,0.0,0.003421018320902806,0.0,0.0,0.0,0.0,0.0,14.441053375844232,0.0,0.0,0.0,0.0,0.0,0.0002850608820435218,-0.09570121764087043,0.5 +1842,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-09-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, +1843,my_land,rural,15.24379686136313,0.1,0.03,20.0,2011-09-10,0.0,0.0,0.003431018320902806,0.0,0.0,0.0,0.0,0.0,14.38281024448053,0.0,0.0,0.0,0.0,0.0,0.000716682039330536,-0.08433364078661074,0.5 +1844,my_land,urban,0.0,0.02,0.025,0.0,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1845,my_land,rural,15.295447385969586,0.1,0.25,20.0,2011-09-11,0.0,0.0,0.0034201265313677258,0.0,0.0,0.0,0.0,0.0,14.325406425173018,0.0,0.0,0.0,0.07007400121789956,0.02335800040596652,0.004917473769677163,0.05165052460645676,0.5 +1846,my_land,urban,0.0,0.001,0.001,0.0,2011-09-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1847,my_land,rural,15.205219313550925,0.1,0.01,20.0,2011-09-12,0.0,0.0,0.003430126531367726,0.0,0.0,0.0,0.0,0.0,14.266568658146626,0.0,0.0,0.0,0.0,0.0,0.00022807241866091755,-0.09456144837321834,0.5 +1848,my_land,urban,0.0,0.02,0.02,0.0,2011-09-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1849,my_land,rural,15.236747074002364,0.1,0.2,20.0,2011-09-13,0.0,0.0,0.0034255023974490185,0.0,0.0,0.0,0.0,0.0,14.208820815373594,0.0,0.0,0.0,0.04878647067834858,0.016262156892782858,0.003423611977427971,0.03152776045144059,0.5 +1850,my_land,urban,0.0,0.0,0.0,0.0,2011-09-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1851,my_land,rural,15.136747074002365,0.1,0.0,20.0,2011-09-14,0.0,0.0,0.0034355023974490186,0.0,0.0,0.0,0.0,0.0,14.1502097469217,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1852,my_land,urban,0.0,0.0,0.0,0.0,2011-09-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1853,my_land,rural,15.036747074002365,0.1,0.0,20.0,2011-09-15,0.0,0.0,0.0034455023974490186,0.0,0.0,0.0,0.0,0.0,14.091990500865213,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1854,my_land,urban,0.0,0.008,0.008,0.0,2011-09-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1855,my_land,rural,15.01646263179533,0.1,0.08,20.0,2011-09-16,0.0,0.0,0.0034555023974490186,0.0,0.0,0.0,0.0,0.0,14.03382024010815,0.0,0.0,0.0,0.0,0.0,0.0002844422070354513,-0.025688844140709023,0.5 +1856,my_land,urban,0.0,0.02,0.02,0.0,2011-09-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1857,my_land,rural,15.109974293920747,0.1,0.2,20.0,2011-09-17,0.0,0.0,0.0034640892664870525,0.0,0.0,0.0,0.0,0.0,13.976146325039378,0.0,0.0,0.0,0.004622940735640803,0.0015409802452136011,0.0003244168937291792,0.09351166212541642,0.5 +1858,my_land,urban,0.0,0.008,0.008,0.0,2011-09-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1859,my_land,rural,15.089176662894385,0.1,0.08,20.0,2011-09-18,0.0,0.0,0.0034740892664870526,0.0,0.0,0.0,0.0,0.0,13.917554008129922,0.0,0.0,0.0,0.0,0.0,0.000797631026361279,-0.03595262052722558,0.5 +1860,my_land,urban,0.0,0.001,0.001,0.0,2011-09-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, +1861,my_land,rural,14.999094313457384,0.1,0.01,20.0,2011-09-19,0.0,0.0,0.0034840892664870526,0.0,0.0,0.0,0.0,0.0,13.85933710601624,0.0,0.0,0.0,0.0,0.0,8.234943700090154e-05,-0.09164698874001803,0.5 +1862,my_land,urban,0.034999999999999996,0.02,0.095,0.0,2011-09-20,0.0,0.0,4.2000000000000004e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, +1863,my_land,rural,15.849094313457384,0.1,0.95,20.0,2011-09-20,0.0,0.0,0.0034940892664870526,0.0,0.0,0.0,0.0,0.0,13.804959259195796,0.0,0.0,0.0,0.0,0.0,0.0,0.8500000000000001,0.5 +1864,my_land,urban,3.469446951953614e-18,0.02,0.008,0.0,2011-09-21,0.0,0.0,8.470329472543003e-22,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, +1865,my_land,rural,15.825716310910023,0.1,0.08,20.0,2011-09-21,0.0,0.0,0.0035040892664870526,0.0,0.0,0.0,0.0,0.0,13.838119904899473,0.0,0.0,0.0,0.0,0.0,0.003378002547361473,-0.08756005094722946,0.5 +1866,my_land,urban,0.0,3.469446951953614e-18,0.0,0.0,2011-09-22,0.0,0.0,1.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, +1867,my_land,rural,15.725716310910023,0.1,0.0,20.0,2011-09-22,0.0,0.0,0.0035140892664870527,0.0,0.0,0.0,0.0,0.0,13.886014990612436,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1868,my_land,urban,0.0,0.0,0.0,0.0,2011-09-23,0.0,0.0,2.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, +1869,my_land,rural,15.625716310910024,0.1,0.0,20.0,2011-09-23,0.0,0.0,0.0035240892664870527,0.0,0.0,0.0,0.0,0.0,13.935751873826556,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1870,my_land,urban,0.0,0.002,0.002,0.0,2011-09-24,0.0,0.0,3.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, +1871,my_land,rural,15.544978956074473,0.1,0.02,20.0,2011-09-24,0.0,0.0,0.0035340892664870527,0.0,0.0,0.0,0.0,0.0,13.98571898172832,0.0,0.0,0.0,0.0,0.0,0.0007373548355501053,-0.09474709671100212,0.5 +1872,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1873,my_land,rural,15.618423340935188,0.1,0.5499999999999999,20.0,2011-09-25,0.0,0.0,0.0034647322696581308,0.0,0.0,0.0,0.0,0.0,14.038180772144566,0.0,0.0,0.0,0.2682958757867416,0.08943195859558054,0.018827780756964327,0.0734443848607135,0.5 +1874,my_land,urban,0.0,0.0,0.0,0.0,2011-09-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1875,my_land,rural,15.518423340935188,0.1,0.0,20.0,2011-09-26,0.0,0.0,0.003474732269658131,0.0,0.0,0.0,0.0,0.0,14.086022596518072,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1876,my_land,urban,0.0,0.001,0.001,0.0,2011-09-27,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1877,my_land,rural,15.42809067264815,0.1,0.01,20.0,2011-09-27,0.0,0.0,0.003484732269658131,0.0,0.0,0.0,0.0,0.0,14.192784074564761,0.0,0.0,0.0,0.0,0.0,0.00033266828703820635,-0.09665336574076412,0.5 +1878,my_land,urban,0.0,0.0,0.0,0.0,2011-09-28,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1879,my_land,rural,15.32809067264815,0.1,0.0,20.0,2011-09-28,0.0,0.0,0.003494732269658131,0.0,0.0,0.0,0.0,0.0,14.306910509320595,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1880,my_land,urban,0.0,0.0,0.0,0.0,2011-09-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1881,my_land,rural,15.22809067264815,0.1,0.0,20.0,2011-09-29,0.0,0.0,0.003504732269658131,0.0,0.0,0.0,0.0,0.0,14.421957563665075,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1882,my_land,urban,0.0,0.0,0.0,0.0,2011-09-30,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1883,my_land,rural,15.12809067264815,0.1,0.0,20.0,2011-09-30,0.0,0.0,0.003514732269658131,0.0,0.0,0.0,0.0,0.0,14.537119695458134,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1884,my_land,urban,0.0,0.0,0.0,0.0,2011-10-01,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1885,my_land,rural,15.028090672648151,0.1,0.0,20.0,2011-10-01,0.0,0.0,0.003524732269658131,0.0,0.0,0.0,0.0,0.0,14.652296211932267,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1886,my_land,urban,0.0,0.0,0.0,0.0,2011-10-02,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1887,my_land,rural,14.928090672648151,0.1,0.0,20.0,2011-10-02,0.0,0.0,0.003534732269658131,0.0,0.0,0.0,0.0,0.0,14.767474526491537,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1888,my_land,urban,0.0,0.002,0.002,0.0,2011-10-03,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1889,my_land,rural,14.848090672648151,0.1,0.02,20.0,2011-10-03,0.0,0.0,0.003544732269658131,0.0,0.0,0.0,0.0,0.0,14.882653065811441,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +1890,my_land,urban,0.0,0.005,0.005,0.0,2011-10-04,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, +1891,my_land,rural,14.79809067264815,0.1,0.05,20.0,2011-10-04,0.0,0.0,0.003554732269658131,0.0,0.0,0.0,0.0,0.0,14.997831633226431,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 +1892,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1893,my_land,rural,15.118090672648151,0.1,0.42,20.0,2011-10-05,0.0,0.0,0.003564732269658131,0.0,0.0,0.0,0.0,0.0,14.88545865302968,0.0,0.0,0.0,0.0,0.0,0.0,0.31999999999999995,0.5 +1894,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-10-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1895,my_land,rural,15.04777177709574,0.1,0.03,20.0,2011-10-06,0.0,0.0,0.003574732269658131,0.0,0.0,0.0,0.0,0.0,14.741039476628709,0.0,0.0,0.0,0.0,0.0,0.0003188955524110314,-0.07637791104822064,0.5 +1896,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2011-10-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1897,my_land,rural,15.056787141682443,0.1,0.12,20.0,2011-10-07,0.0,0.0,0.003582249520891919,0.0,0.0,0.0,0.0,0.0,14.594511612713768,0.0,0.0,0.0,0.007826552731973708,0.002608850910657903,0.0005492317706648217,0.009015364586703553,0.5 +1898,my_land,urban,0.0,0.001,0.001,0.0,2011-10-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1899,my_land,rural,14.966733170665272,0.1,0.01,20.0,2011-10-08,0.0,0.0,0.003592249520891919,0.0,0.0,0.0,0.0,0.0,14.447528234089221,0.0,0.0,0.0,0.0,0.0,5.3971017172606716e-05,-0.09107942034345214,0.5 +1900,my_land,urban,0.0,0.0,0.0,0.0,2011-10-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1901,my_land,rural,14.866733170665272,0.1,0.0,20.0,2011-10-09,0.0,0.0,0.003602249520891919,0.0,0.0,0.0,0.0,0.0,14.300583884261155,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1902,my_land,urban,0.0,0.0,0.0,0.0,2011-10-10,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1903,my_land,rural,14.766733170665272,0.1,0.0,20.0,2011-10-10,0.0,0.0,0.003612249520891919,0.0,0.0,0.0,0.0,0.0,14.153644413032646,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1904,my_land,urban,0.0,0.0,0.0,0.0,2011-10-11,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1905,my_land,rural,14.666733170665273,0.1,0.0,20.0,2011-10-11,0.0,0.0,0.003622249520891919,0.0,0.0,0.0,0.0,0.0,14.00670555162908,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1906,my_land,urban,0.0,0.0,0.0,0.0,2011-10-12,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1907,my_land,rural,14.566733170665273,0.1,0.0,20.0,2011-10-12,0.0,0.0,0.003632249520891919,0.0,0.0,0.0,0.0,0.0,13.589231048953636,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1908,my_land,urban,0.0,0.0,0.0,0.0,2011-10-13,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1909,my_land,rural,14.466733170665274,0.1,0.0,20.0,2011-10-13,0.0,0.0,0.003642249520891919,0.0,0.0,0.0,0.0,0.0,13.137939598619207,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1910,my_land,urban,0.0,0.0,0.0,0.0,2011-10-14,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1911,my_land,rural,14.366733170665274,0.1,0.0,20.0,2011-10-14,0.0,0.0,0.003652249520891919,0.0,0.0,0.0,0.0,0.0,12.6824210223274,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1912,my_land,urban,0.0,0.0,0.0,0.0,2011-10-15,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1913,my_land,rural,14.266733170665274,0.1,0.0,20.0,2011-10-15,0.0,0.0,0.0036622495208919192,0.0,0.0,0.0,0.0,0.0,12.226374055290925,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1914,my_land,urban,0.0,0.0,0.0,0.0,2011-10-16,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, +1915,my_land,rural,14.166733170665275,0.1,0.0,20.0,2011-10-16,0.0,0.0,0.0036722495208919193,0.0,0.0,0.0,0.0,0.0,11.770261039411368,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1916,my_land,urban,0.0,0.02,0.053,0.0,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1917,my_land,rural,14.596733170665274,0.1,0.53,20.0,2011-10-17,0.0,0.0,0.0036822495208919193,0.0,0.0,0.0,0.0,0.0,11.312986770213204,0.0,0.0,0.0,0.0,0.0,0.0,0.43,0.5 +1918,my_land,urban,0.0,0.0,0.0,0.0,2011-10-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1919,my_land,rural,14.496733170665275,0.1,0.0,20.0,2011-10-18,0.0,0.0,0.0036922495208919193,0.0,0.0,0.0,0.0,0.0,10.857873346276653,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1920,my_land,urban,0.0,0.009,0.009,0.0,2011-10-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1921,my_land,rural,14.486733170665275,0.1,0.09,20.0,2011-10-19,0.0,0.0,0.0037022495208919193,0.0,0.0,0.0,0.0,0.0,10.822412740784582,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +1922,my_land,urban,0.0,0.0,0.0,0.0,2011-10-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1923,my_land,rural,14.386733170665275,0.1,0.0,20.0,2011-10-20,0.0,0.0,0.0037122495208919194,0.0,0.0,0.0,0.0,0.0,10.839408737598074,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1924,my_land,urban,0.0,0.0,0.0,0.0,2011-10-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1925,my_land,rural,14.286733170665276,0.1,0.0,20.0,2011-10-21,0.0,0.0,0.0037222495208919194,0.0,0.0,0.0,0.0,0.0,10.86296180969976,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1926,my_land,urban,0.0,0.0,0.0,0.0,2011-10-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1927,my_land,rural,14.186733170665276,0.1,0.0,20.0,2011-10-22,0.0,0.0,0.0037322495208919194,0.0,0.0,0.0,0.0,0.0,10.88733450871247,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1928,my_land,urban,0.0,0.0,0.0,0.0,2011-10-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, +1929,my_land,rural,14.086733170665276,0.1,0.0,20.0,2011-10-23,0.0,0.0,0.0037422495208919195,0.0,0.0,0.0,0.0,0.0,10.91180966858906,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1930,my_land,urban,0.0,0.02,0.023,0.0,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0,,,,, +1931,my_land,rural,14.216733170665277,0.1,0.22999999999999998,20.0,2011-10-24,0.0,0.0,0.0037522495208919195,0.0,0.0,0.0,0.0,0.0,10.936508659035937,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 +1932,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2011-10-25,0.0,0.0,-2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0,,,,, +1933,my_land,rural,14.586733170665276,0.1,0.47000000000000003,20.0,2011-10-25,0.0,0.0,0.0037622495208919195,0.0,0.0,0.0,0.0,0.0,10.961411229873116,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.5 +1934,my_land,urban,0.025,0.02,0.085,0.0,2011-10-26,0.0,0.0,3.8461538461538447e-07,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0,,,,, +1935,my_land,rural,15.336733170665276,0.1,0.8500000000000001,20.0,2011-10-26,0.0,0.0,0.0037722495208919195,0.0,0.0,0.0,0.0,0.0,11.099946524571386,0.0,0.0,0.0,0.0,0.0,0.0,0.7500000000000001,0.5 +1936,my_land,urban,0.020999999999999998,0.02,0.056,0.0,2011-10-27,0.0,0.0,4.766708701134929e-07,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, +1937,my_land,rural,15.515596010663645,0.1,0.5599999999999999,20.0,2011-10-27,0.0,0.0,0.0037182448917483565,0.0,0.0,0.0,0.0,0.0,11.250450341219876,0.0,0.0,0.0,0.20031022650116198,0.06677007550038734,0.014056858000081546,0.1788628399983691,0.5 +1938,my_land,urban,0.0,0.02,0.0,0.0,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, +1939,my_land,rural,15.415596010663645,0.1,0.0,20.0,2011-10-28,0.0,0.0,0.0037282448917483565,0.0,0.0,0.0,0.0,0.0,11.401842010152484,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1940,my_land,urban,0.0,0.005,0.005,0.0,2011-10-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, +1941,my_land,rural,15.364145719330901,0.1,0.05,20.0,2011-10-29,0.0,0.0,0.0037382448917483565,0.0,0.0,0.0,0.0,0.0,11.554694533769062,0.0,0.0,0.0,0.0,0.0,0.0014502913327432913,-0.07900582665486583,0.5 +1942,my_land,urban,0.0,0.002,0.002,0.0,2011-10-30,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, +1943,my_land,rural,15.283615178385046,0.1,0.02,20.0,2011-10-30,0.0,0.0,0.0037482448917483565,0.0,0.0,0.0,0.0,0.0,11.707729671721133,0.0,0.0,0.0,0.0,0.0,0.0005305409458545031,-0.09061081891709007,0.5 +1944,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2011-10-31,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, +1945,my_land,rural,15.278422353922526,0.1,0.16999999999999998,20.0,2011-10-31,0.0,0.0,0.0037407552550960226,0.0,0.0,0.0,0.0,0.0,11.861051251245403,0.0,0.0,0.0,0.05357488742954661,0.017858295809848868,0.0037596412231260777,-0.005192824462521561,0.5 +1946,my_land,urban,0.0,0.001,0.001,0.0,2011-11-01,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, +1947,my_land,rural,15.188204283941952,0.1,0.01,20.0,2011-11-01,0.0,0.0,0.0037507552550960226,0.0,0.0,0.0,0.0,0.0,12.013881406405677,0.0,0.0,0.0,0.0,0.0,0.00021806998057401098,-0.09436139961148021,0.5 +1948,my_land,urban,0.0049999999999999975,0.02,0.065,0.0,2011-11-02,0.0,0.0,5.555555555555554e-07,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0,,,,, +1949,my_land,rural,15.531083321764946,0.1,0.65,20.0,2011-11-02,0.0,0.0,0.0037137059274636253,0.0,0.0,0.0,0.0,0.0,11.584654522470174,0.0,0.0,0.0,0.1475736855511164,0.049191228517038804,0.010356048108850274,0.3428790378229945,0.5 +1950,my_land,urban,-6.938893903907228e-18,0.02,0.04,0.0,2011-11-03,0.0,0.0,-4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0,,,,, +1951,my_land,rural,15.561214847663257,0.1,0.4,20.0,2011-11-03,0.0,0.0,0.003663351265282586,0.0,0.0,0.0,0.0,0.0,11.083777615414606,0.0,0.0,0.0,0.19228128779745352,0.06409376259915117,0.01349342370508446,0.03013152589831083,0.5 +1952,my_land,urban,0.0,0.02,0.041,0.0,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1953,my_land,rural,15.585874255609436,0.1,0.41000000000000003,20.0,2011-11-04,0.0,0.0,0.0036105555479074938,0.0,0.0,0.0,0.0,0.0,10.573596805791018,0.0,0.0,0.0,0.20330517183834648,0.06776839061278216,0.014267029602690981,0.024659407946180406,0.5 +1954,my_land,urban,0.0,0.0,0.0,0.0,2011-11-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1955,my_land,rural,15.485874255609437,0.1,0.0,20.0,2011-11-05,0.0,0.0,0.003620555547907494,0.0,0.0,0.0,0.0,0.0,10.063663886223878,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1956,my_land,urban,0.0,0.0,0.0,0.0,2011-11-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1957,my_land,rural,15.385874255609437,0.1,0.0,20.0,2011-11-06,0.0,0.0,0.003630555547907494,0.0,0.0,0.0,0.0,0.0,9.552600843027985,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1958,my_land,urban,0.0,0.007,0.007,0.0,2011-11-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1959,my_land,rural,15.353941953083565,0.1,0.06999999999999999,20.0,2011-11-07,0.0,0.0,0.003640555547907494,0.0,0.0,0.0,0.0,0.0,9.041396533628498,0.0,0.0,0.0,0.0,0.0,0.0019323025258729763,-0.06864605051745952,0.5 +1960,my_land,urban,0.0,0.009,0.009,0.0,2011-11-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1961,my_land,rural,15.341601480814468,0.1,0.09,20.0,2011-11-08,0.0,0.0,0.003650555547907494,0.0,0.0,0.0,0.0,0.0,8.530174566703561,0.0,0.0,0.0,0.0,0.0,0.002340472269095986,-0.056809445381919725,0.5 +1962,my_land,urban,0.0,0.008,0.008,0.0,2011-11-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1963,my_land,rural,15.319572661061219,0.1,0.08,20.0,2011-11-09,0.0,0.0,0.003660555547907494,0.0,0.0,0.0,0.0,0.0,8.699307535337946,0.0,0.0,0.0,0.0,0.0,0.0020288197532486022,-0.06057639506497203,0.5 +1964,my_land,urban,0.0,0.002,0.002,0.0,2011-11-10,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, +1965,my_land,rural,15.239089261809761,0.1,0.02,20.0,2011-11-10,0.0,0.0,0.003670555547907494,0.0,0.0,0.0,0.0,0.0,8.953484870167244,0.0,0.0,0.0,0.0,0.0,0.00048339925145697376,-0.08966798502913947,0.5 +1966,my_land,urban,0.0,0.02,0.057,0.0,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1967,my_land,rural,15.488290039641639,0.1,0.5700000000000001,20.0,2011-11-11,0.0,0.0,0.0036313755130362936,0.0,0.0,0.0,0.0,0.0,9.218945674019542,0.0,0.0,0.0,0.15731944579478707,0.052439815264929024,0.011039961108406111,0.2492007778318778,0.5 +1968,my_land,urban,0.0,0.0,0.0,0.0,2011-11-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1969,my_land,rural,15.388290039641639,0.1,0.0,20.0,2011-11-12,0.0,0.0,0.0036413755130362936,0.0,0.0,0.0,0.0,0.0,9.484511066502442,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1970,my_land,urban,0.0,0.0,0.0,0.0,2011-11-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1971,my_land,rural,15.28829003964164,0.1,0.0,20.0,2011-11-13,0.0,0.0,0.0036513755130362937,0.0,0.0,0.0,0.0,0.0,9.750742455062808,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1972,my_land,urban,0.0,0.001,0.001,0.0,2011-11-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1973,my_land,rural,15.198066132674523,0.1,0.01,20.0,2011-11-14,0.0,0.0,0.0036613755130362937,0.0,0.0,0.0,0.0,0.0,10.01705708938285,0.0,0.0,0.0,0.0,0.0,0.00022390696711645477,-0.0944781393423291,0.5 +1974,my_land,urban,0.0,0.0,0.0,0.0,2011-11-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1975,my_land,rural,15.098066132674523,0.1,0.0,20.0,2011-11-15,0.0,0.0,0.0036713755130362937,0.0,0.0,0.0,0.0,0.0,10.283382136172857,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1976,my_land,urban,0.0,0.007,0.007,0.0,2011-11-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1977,my_land,rural,15.06743719406746,0.1,0.06999999999999999,20.0,2011-11-16,0.0,0.0,0.0036813755130362938,0.0,0.0,0.0,0.0,0.0,10.214887049521609,0.0,0.0,0.0,0.0,0.0,0.0006289386070628726,-0.04257877214125745,0.5 +1978,my_land,urban,0.0,0.0,0.0,0.0,2011-11-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1979,my_land,rural,14.967437194067461,0.1,0.0,20.0,2011-11-17,0.0,0.0,0.0036913755130362938,0.0,0.0,0.0,0.0,0.0,10.104539453690203,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1980,my_land,urban,0.0,0.0,0.0,0.0,2011-11-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1981,my_land,rural,14.867437194067461,0.1,0.0,20.0,2011-11-18,0.0,0.0,0.003701375513036294,0.0,0.0,0.0,0.0,0.0,9.988960288961275,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1982,my_land,urban,0.0,0.001,0.001,0.0,2011-11-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1983,my_land,rural,14.777437194067462,0.1,0.01,20.0,2011-11-19,0.0,0.0,0.003711375513036294,0.0,0.0,0.0,0.0,0.0,9.872727178870159,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1984,my_land,urban,0.0,0.0,0.0,0.0,2011-11-20,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, +1985,my_land,rural,14.677437194067462,0.1,0.0,20.0,2011-11-20,0.0,0.0,0.003721375513036294,0.0,0.0,0.0,0.0,0.0,9.756412325608771,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +1986,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1987,my_land,rural,14.947437194067462,0.1,0.37,20.0,2011-11-21,0.0,0.0,0.003731375513036294,0.0,0.0,0.0,0.0,0.0,9.639645386220412,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.5 +1988,my_land,urban,0.0,0.001,0.001,0.0,2011-11-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1989,my_land,rural,14.857437194067462,0.1,0.01,20.0,2011-11-22,0.0,0.0,0.003741375513036294,0.0,0.0,0.0,0.0,0.0,9.523705673277552,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1990,my_land,urban,0.0,0.001,0.001,0.0,2011-11-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1991,my_land,rural,14.767437194067462,0.1,0.01,20.0,2011-11-23,0.0,0.0,0.003751375513036294,0.0,0.0,0.0,0.0,0.0,9.428856066409695,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1992,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-11-24,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1993,my_land,rural,14.727437194067463,0.1,0.06,20.0,2011-11-24,0.0,0.0,0.003761375513036294,0.0,0.0,0.0,0.0,0.0,9.336642722801212,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +1994,my_land,urban,0.0,0.001,0.001,0.0,2011-11-25,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1995,my_land,rural,14.637437194067463,0.1,0.01,20.0,2011-11-25,0.0,0.0,0.003771375513036294,0.0,0.0,0.0,0.0,0.0,9.244758912100153,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +1996,my_land,urban,0.0,0.004,0.004,0.0,2011-11-26,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1997,my_land,rural,14.577437194067462,0.1,0.04,20.0,2011-11-26,0.0,0.0,0.003781375513036294,0.0,0.0,0.0,0.0,0.0,9.15291629226252,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +1998,my_land,urban,0.0,0.0,0.0,0.0,2011-11-27,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +1999,my_land,rural,14.477437194067463,0.1,0.0,20.0,2011-11-27,0.0,0.0,0.003791375513036294,0.0,0.0,0.0,0.0,0.0,9.061078822032815,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2000,my_land,urban,0.0,0.019,0.019,0.0,2011-11-28,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, +2001,my_land,rural,14.567437194067463,0.1,0.19,20.0,2011-11-28,0.0,0.0,0.003801375513036294,0.0,0.0,0.0,0.0,0.0,8.969026581525322,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.5 +2002,my_land,urban,0.0,0.02,0.038,0.0,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0,,,,, +2003,my_land,rural,14.847437194067462,0.1,0.38,20.0,2011-11-29,0.0,0.0,0.003811375513036294,0.0,0.0,0.0,0.0,0.0,8.876685211130814,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 +2004,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2005,my_land,rural,14.967437194067461,0.1,0.22,20.0,2011-11-30,0.0,0.0,0.003821375513036294,0.0,0.0,0.0,0.0,0.0,8.490132439610306,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 +2006,my_land,urban,0.0,0.0,0.0,0.0,2011-12-01,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2007,my_land,rural,14.867437194067461,0.1,0.0,20.0,2011-12-01,0.0,0.0,0.003831375513036294,0.0,0.0,0.0,0.0,0.0,8.06751655495129,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2008,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2011-12-02,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2009,my_land,rural,14.887437194067461,0.1,0.12,20.0,2011-12-02,0.0,0.0,0.003841375513036294,0.0,0.0,0.0,0.0,0.0,7.639539691901199,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 +2010,my_land,urban,0.0,0.0,0.0,0.0,2011-12-03,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2011,my_land,rural,14.787437194067461,0.1,0.0,20.0,2011-12-03,0.0,0.0,0.003851375513036294,0.0,0.0,0.0,0.0,0.0,7.21119246148765,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2012,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-12-04,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2013,my_land,rural,14.717437194067461,0.1,0.03,20.0,2011-12-04,0.0,0.0,0.0038613755130362942,0.0,0.0,0.0,0.0,0.0,6.782649057685956,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +2014,my_land,urban,0.0,0.0,0.0,0.0,2011-12-05,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2015,my_land,rural,14.617437194067461,0.1,0.0,20.0,2011-12-05,0.0,0.0,0.0038713755130362943,0.0,0.0,0.0,0.0,0.0,6.354081132210745,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2016,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2011-12-06,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2017,my_land,rural,14.637437194067461,0.1,0.12,20.0,2011-12-06,0.0,0.0,0.0038813755130362943,0.0,0.0,0.0,0.0,0.0,5.925308760451812,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 +2018,my_land,urban,0.0,0.0,0.0,0.0,2011-12-07,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, +2019,my_land,rural,14.537437194067461,0.1,0.0,20.0,2011-12-07,0.0,0.0,0.0038913755130362943,0.0,0.0,0.0,0.0,0.0,5.904056452306477,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2020,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0,,,,, +2021,my_land,rural,14.98743719406746,0.1,0.5499999999999999,20.0,2011-12-08,0.0,0.0,0.0039013755130362943,0.0,0.0,0.0,0.0,0.0,5.931128215675298,0.0,0.0,0.0,0.0,0.0,0.0,0.44999999999999996,0.5 +2022,my_land,urban,0.0,0.0,0.0,0.0,2011-12-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0,,,,, +2023,my_land,rural,14.887437194067461,0.1,0.0,20.0,2011-12-09,0.0,0.0,0.003911375513036294,0.0,0.0,0.0,0.0,0.0,5.969069598709413,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2024,my_land,urban,0.0,0.002,0.002,0.0,2011-12-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0,,,,, +2025,my_land,rural,14.807437194067461,0.1,0.02,20.0,2011-12-10,0.0,0.0,0.0039213755130362935,0.0,0.0,0.0,0.0,0.0,6.005955128088677,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2026,my_land,urban,0.005999999999999998,0.02,0.066,0.0,2011-12-11,0.0,0.0,3.9130434782608684e-07,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0,,,,, +2027,my_land,rural,15.367437194067461,0.1,0.66,20.0,2011-12-11,0.0,0.0,0.003931375513036293,0.0,0.0,0.0,0.0,0.0,6.039899694216831,0.0,0.0,0.0,0.0,0.0,0.0,0.5599999999999999,0.5 +2028,my_land,urban,0.13400000000000004,0.02,0.188,0.0,2011-12-12,0.0,0.0,1.071464267866067e-06,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0,,,,, +2029,my_land,rural,16.14377382507794,0.1,1.8800000000000001,20.0,2011-12-12,0.0,0.0,0.0037215727593927794,0.0,0.0,0.0,0.0,0.0,6.071408370198682,0.0,0.0,0.0,0.7151101504050345,0.2383700501350115,0.05018316844947611,0.7763366310104778,0.5 +2030,my_land,urban,0.18100000000000002,0.02,0.107,0.0,2011-12-13,0.0,0.0,1.6965386085237925e-06,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0,,,,, +2031,my_land,rural,16.123446374815693,0.1,1.0699999999999998,20.0,2011-12-13,0.0,0.0,0.003525838346440872,0.0,0.0,0.0,0.0,0.0,6.11115459865552,0.0,0.0,0.0,0.7056083083118513,0.2352027694372838,0.04951637251311238,-0.020327450262247644,0.5 +2032,my_land,urban,0.212,0.02,0.091,0.0,2011-12-14,0.0,0.0,2.2685166071708094e-06,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0,,,,, +2033,my_land,rural,16.094862997646526,0.1,0.91,20.0,2011-12-14,0.0,0.0,0.003369077689937792,0.0,0.0,0.0,0.0,0.0,5.836295756498775,0.0,0.0,0.0,0.5974906562330325,0.1991635520776775,0.04192916885845842,-0.028583377169168374,0.5 +2034,my_land,urban,0.224,0.02,0.072,0.0,2011-12-15,0.0,0.0,2.773286818205535e-06,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0,,,,, +2035,my_land,rural,16.05567582559574,0.1,0.72,20.0,2011-12-15,0.0,0.0,0.003252229311058008,0.0,0.0,0.0,0.0,0.0,5.524685276554899,0.0,0.0,0.0,0.4696708600861854,0.15655695336206182,0.03295935860253933,-0.03918717205078663,0.5 +2036,my_land,urban,0.19,0.02,0.026,0.0,2011-12-16,0.0,0.0,3.1170630237350073e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0,,,,, +2037,my_land,rural,15.97994188844201,0.1,0.26,20.0,2011-12-16,0.0,0.0,0.003217143390905135,0.0,0.0,0.0,0.0,0.0,5.2111318788879695,0.0,0.0,0.0,0.16796043022203078,0.05598681007401026,0.011786696857686373,-0.07573393715372746,0.5 +2038,my_land,urban,0.13499999999999998,0.02,0.005,0.0,2011-12-17,0.0,0.0,3.176020046881291e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0,,,,, +2039,my_land,rural,15.927724092513754,0.1,0.05,20.0,2011-12-17,0.0,0.0,0.003227143390905135,0.0,0.0,0.0,0.0,0.0,4.8951414851109964,0.0,0.0,0.0,0.0,0.0,0.0022177959282548513,-0.09435591856509702,0.5 +2040,my_land,urban,0.07999999999999999,0.02,0.005,0.0,2011-12-18,0.0,0.0,2.784013364587527e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0,,,,, +2041,my_land,rural,15.875545171523285,0.1,0.05,20.0,2011-12-18,0.0,0.0,0.003237143390905135,0.0,0.0,0.0,0.0,0.0,4.577517685388875,0.0,0.0,0.0,0.0,0.0,0.002178920990468581,-0.09357841980937162,0.5 +2042,my_land,urban,0.06199999999999998,0.02,0.041999999999999996,0.0,2011-12-19,0.0,0.0,2.300086554945359e-06,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0,,,,, +2043,my_land,rural,15.836810499422008,0.1,0.42,20.0,2011-12-19,0.0,0.0,0.0031787389800882497,0.0,0.0,0.0,0.0,0.0,4.2565913360762115,0.0,0.0,0.0,0.25559845387215985,0.08519948462405329,0.017936733605063853,-0.038734672101277054,0.5 +2044,my_land,urban,0.046999999999999965,0.02,0.045,0.0,2011-12-20,0.0,0.0,1.782805380257837e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0,,,,, +2045,my_land,rural,15.808883776030767,0.1,0.44999999999999996,20.0,2011-12-20,0.0,0.0,0.0031179287210028788,0.0,0.0,0.0,0.0,0.0,4.452799257838773,0.0,0.0,0.0,0.26927279041625835,0.08975759680541945,0.01889633616956199,-0.027926723391239826,0.5 +2046,my_land,urban,0.0,0.02,0.001,0.0,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0,,,,, +2047,my_land,rural,15.718469394410588,0.1,0.01,20.0,2011-12-21,0.0,0.0,0.003127928721002879,0.0,0.0,0.0,0.0,0.0,4.714099907479847,0.0,0.0,0.0,0.0,0.0,0.0004143816201772698,-0.0982876324035454,0.5 +2048,my_land,urban,0.0,0.0,0.0,0.0,2011-12-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0,,,,, +2049,my_land,rural,15.618469394410589,0.1,0.0,20.0,2011-12-22,0.0,0.0,0.003137928721002879,0.0,0.0,0.0,0.0,0.0,4.981762488434981,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2050,my_land,urban,0.011999999999999997,0.02,0.072,0.0,2011-12-23,0.0,0.0,4.615384615384614e-07,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, +2051,my_land,rural,15.710730284918325,0.1,0.72,20.0,2011-12-23,0.0,0.0,0.0030505802865304224,0.0,0.0,0.0,0.0,0.0,5.2480305721586955,0.0,0.0,0.0,0.37601411551323755,0.12533803850441252,0.026386955474613165,0.09226089050773673,0.5 +2052,my_land,urban,0.0,0.014999999999999996,0.0029999999999999996,0.0,2011-12-24,0.0,0.0,1.4615384615384614e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, +2053,my_land,rural,15.639554046100319,0.1,0.03,20.0,2011-12-24,0.0,0.0,0.0030605802865304225,0.0,0.0,0.0,0.0,0.0,5.518503821769837,0.0,0.0,0.0,0.0,0.0,0.0011762388180060843,-0.09352477636012169,0.5 +2054,my_land,urban,0.0,0.007,0.007,0.0,2011-12-25,0.0,0.0,2.461538461538461e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, +2055,my_land,rural,15.606944634595264,0.1,0.06999999999999999,20.0,2011-12-25,0.0,0.0,0.0030705802865304225,0.0,0.0,0.0,0.0,0.0,5.78731297772123,0.0,0.0,0.0,0.0,0.0,0.0026094115050545367,-0.08218823010109073,0.5 +2056,my_land,urban,0.0,0.002,0.002,0.0,2011-12-26,0.0,0.0,3.461538461538461e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, +2057,my_land,rural,15.52621877100678,0.1,0.02,20.0,2011-12-26,0.0,0.0,0.0030805802865304225,0.0,0.0,0.0,0.0,0.0,6.055914121965154,0.0,0.0,0.0,0.0,0.0,0.000725863588483023,-0.09451727176966046,0.5 +2058,my_land,urban,0.0,0.002,0.002,0.0,2011-12-27,0.0,0.0,4.461538461538461e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, +2059,my_land,rural,15.445547658521033,0.1,0.02,20.0,2011-12-27,0.0,0.0,0.0030905802865304225,0.0,0.0,0.0,0.0,0.0,6.324489265495645,0.0,0.0,0.0,0.0,0.0,0.0006711124857470734,-0.09342224971494147,0.5 +2060,my_land,urban,0.0,0.001,0.001,0.0,2011-12-28,0.0,0.0,5.46153846153846e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, +2061,my_land,rural,15.3552442802814,0.1,0.01,20.0,2011-12-28,0.0,0.0,0.0031005802865304226,0.0,0.0,0.0,0.0,0.0,6.5930611581869565,0.0,0.0,0.0,0.0,0.0,0.000303378239631525,-0.0960675647926305,0.5 +2062,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0,,,,, +2063,my_land,rural,15.39402423345362,0.1,0.29,20.0,2011-12-29,0.0,0.0,0.0030818203366867023,0.0,0.0,0.0,0.0,0.0,6.861324824065812,0.0,0.0,0.0,0.10774428336479314,0.035914761121597714,0.007561002341388993,0.03877995317222013,0.5 +2064,my_land,urban,0.0029999999999999957,0.02,0.063,0.0,2011-12-30,0.0,0.0,6.976744186046499e-08,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0,,,,, +2065,my_land,rural,15.571264937379567,0.1,0.63,20.0,2011-12-30,0.0,0.0,0.003026680780172768,0.0,0.0,0.0,0.0,0.0,7.12950262592446,0.0,0.0,0.0,0.25134099845276214,0.08378033281758739,0.01763796480370261,0.17724070392594782,0.5 +2066,my_land,urban,0.0,0.009999999999999995,0.007,0.0,2011-12-31,0.0,0.0,1.069767441860465e-06,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0,,,,, +2067,my_land,rural,15.53880525272907,0.1,0.06999999999999999,20.0,2011-12-31,0.0,0.0,0.003036680780172768,0.0,0.0,0.0,0.0,0.0,7.398687828240557,0.0,0.0,0.0,0.0,0.0,0.002459684650498012,-0.07919369300996024,0.5 +2068,my_land,urban,0.0,0.02,0.036,0.0,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0,,,,, +2069,my_land,rural,15.553915577490086,0.1,0.36,20.0,2012-01-01,0.0,0.0,0.0030017821069376178,0.0,0.0,0.0,0.0,0.0,7.66718815086422,0.0,0.0,0.0,0.17448389360777578,0.05816129786925859,0.012244483761949176,0.015110324761016466,0.5 +2070,my_land,urban,0.025,0.02,0.085,0.0,2012-01-02,0.0,0.0,3.846153846153846e-07,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0,,,,, +2071,my_land,rural,15.716637268541254,0.1,0.8500000000000001,20.0,2012-01-02,0.0,0.0,0.002908534003859641,0.0,0.0,0.0,0.0,0.0,7.935729582944045,0.0,0.0,0.0,0.41843579512604206,0.13947859837534737,0.029363915447441553,0.16272169105116902,0.5 +2072,my_land,urban,0.04299999999999999,0.02,0.078,0.0,2012-01-03,0.0,0.0,7.17330861909175e-07,0.0,0.0,0.0,0.0,0.0,7.8556224900602425,0.0,0.0,0.0,,,,, +2073,my_land,rural,15.782688880524516,0.1,0.7799999999999999,20.0,2012-01-03,0.0,0.0,0.0028145230029406197,0.0,0.0,0.0,0.0,0.0,8.204536968464637,0.0,0.0,0.0,0.4374382264619273,0.14581274215397577,0.030697419400837013,0.06605161198325978,0.5 +2074,my_land,urban,0.03599999999999998,0.02,0.053,0.0,2012-01-04,0.0,0.0,8.134725135359249e-07,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2075,my_land,rural,15.779278896062953,0.1,0.53,20.0,2012-01-04,0.0,0.0,0.002752695053648801,0.0,0.0,0.0,0.0,0.0,8.264163010537619,0.0,0.0,0.0,0.30880461392886105,0.10293487130962034,0.021670499223077972,-0.003409984461559372,0.5 +2076,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2077,my_land,rural,15.708054482458353,0.1,0.03,20.0,2012-01-05,0.0,0.0,0.002762695053648801,0.0,0.0,0.0,0.0,0.0,8.299091804567203,0.0,0.0,0.0,0.0,0.0,0.0012244136045998664,-0.09448827209199734,0.5 +2078,my_land,urban,0.0,0.005,0.005,0.0,2012-01-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2079,my_land,rural,15.656097460127341,0.1,0.05,20.0,2012-01-06,0.0,0.0,0.002772695053648801,0.0,0.0,0.0,0.0,0.0,8.330243618320901,0.0,0.0,0.0,0.0,0.0,0.0019570223310119944,-0.08914044662023989,0.5 +2080,my_land,urban,0.0,0.0,0.0,0.0,2012-01-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2081,my_land,rural,15.556097460127342,0.1,0.0,20.0,2012-01-07,0.0,0.0,0.002782695053648801,0.0,0.0,0.0,0.0,0.0,8.360923309540114,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2082,my_land,urban,0.0,0.0,0.0,0.0,2012-01-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2083,my_land,rural,15.456097460127342,0.1,0.0,20.0,2012-01-08,0.0,0.0,0.002792695053648801,0.0,0.0,0.0,0.0,0.0,8.391543985442516,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2084,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-01-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2085,my_land,rural,15.385173803487065,0.1,0.03,20.0,2012-01-09,0.0,0.0,0.002802695053648801,0.0,0.0,0.0,0.0,0.0,8.422157283680315,0.0,0.0,0.0,0.0,0.0,0.0009236566402764921,-0.08847313280552986,0.5 +2086,my_land,urban,0.0,0.0,0.0,0.0,2012-01-10,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2087,my_land,rural,15.285173803487066,0.1,0.0,20.0,2012-01-10,0.0,0.0,0.002812695053648801,0.0,0.0,0.0,0.0,0.0,8.452769660460039,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2088,my_land,urban,0.0,0.0,0.0,0.0,2012-01-11,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2089,my_land,rural,15.185173803487066,0.1,0.0,20.0,2012-01-11,0.0,0.0,0.002822695053648801,0.0,0.0,0.0,0.0,0.0,7.815971207307506,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2090,my_land,urban,0.0,0.0,0.0,0.0,2012-01-12,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2091,my_land,rural,15.085173803487066,0.1,0.0,20.0,2012-01-12,0.0,0.0,0.002832695053648801,0.0,0.0,0.0,0.0,0.0,7.095746401163438,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2092,my_land,urban,0.0,0.001,0.001,0.0,2012-01-13,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2093,my_land,rural,14.995094870874203,0.1,0.01,20.0,2012-01-13,0.0,0.0,0.0028426950536488012,0.0,0.0,0.0,0.0,0.0,6.365093300145431,0.0,0.0,0.0,0.0,0.0,7.89326128631125e-05,-0.09157865225726225,0.5 +2094,my_land,urban,0.0,0.0,0.0,0.0,2012-01-14,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2095,my_land,rural,14.895094870874203,0.1,0.0,20.0,2012-01-14,0.0,0.0,0.0028526950536488013,0.0,0.0,0.0,0.0,0.0,5.633136662268179,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2096,my_land,urban,0.0,0.0,0.0,0.0,2012-01-15,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2097,my_land,rural,14.795094870874204,0.1,0.0,20.0,2012-01-15,0.0,0.0,0.0028626950536488013,0.0,0.0,0.0,0.0,0.0,4.901017083033523,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2098,my_land,urban,0.0,0.0,0.0,0.0,2012-01-16,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2099,my_land,rural,14.695094870874204,0.1,0.0,20.0,2012-01-16,0.0,0.0,0.0028726950536488013,0.0,0.0,0.0,0.0,0.0,4.168877135379191,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2100,my_land,urban,0.0,0.004,0.004,0.0,2012-01-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, +2101,my_land,rural,14.635094870874203,0.1,0.04,20.0,2012-01-17,0.0,0.0,0.0028826950536488013,0.0,0.0,0.0,0.0,0.0,4.353922141922399,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +2102,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, +2103,my_land,rural,14.955094870874204,0.1,0.42,20.0,2012-01-18,0.0,0.0,0.0028926950536488014,0.0,0.0,0.0,0.0,0.0,4.652167140138043,0.0,0.0,0.0,0.0,0.0,0.0,0.31999999999999995,0.5 +2104,my_land,urban,0.0,0.004,0.004,0.0,2012-01-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, +2105,my_land,rural,14.895094870874203,0.1,0.04,20.0,2012-01-19,0.0,0.0,0.0029026950536488014,0.0,0.0,0.0,0.0,0.0,4.967458392517256,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +2106,my_land,urban,0.0,0.001,0.001,0.0,2012-01-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, +2107,my_land,rural,14.805094870874203,0.1,0.01,20.0,2012-01-20,0.0,0.0,0.0029126950536488014,0.0,0.0,0.0,0.0,0.0,5.283432299064657,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +2108,my_land,urban,0.0,0.002,0.002,0.0,2012-01-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, +2109,my_land,rural,14.725094870874203,0.1,0.02,20.0,2012-01-21,0.0,0.0,0.0029226950536488014,0.0,0.0,0.0,0.0,0.0,5.5994915373830825,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2110,my_land,urban,0.0,0.0,0.0,0.0,2012-01-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, +2111,my_land,rural,14.625094870874204,0.1,0.0,20.0,2012-01-22,0.0,0.0,0.0029326950536488015,0.0,0.0,0.0,0.0,0.0,5.915561442172886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2112,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2012-01-23,0.0,0.0,2.014925373134328e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0,,,,, +2113,my_land,rural,15.395094870874203,0.1,0.8699999999999999,20.0,2012-01-23,0.0,0.0,0.0029426950536488015,0.0,0.0,0.0,0.0,0.0,6.2300114673776035,0.0,0.0,0.0,0.0,0.0,0.0,0.7699999999999999,0.5 +2114,my_land,urban,0.0,0.02,0.016999999999999998,0.0,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0,,,,, +2115,my_land,rural,15.369732141639462,0.1,0.16999999999999998,20.0,2012-01-24,0.0,0.0,0.0029353928186725666,0.0,0.0,0.0,0.0,0.0,6.547393307634391,0.0,0.0,0.0,0.06794594457975285,0.022648648193250954,0.004768136461737043,-0.025362729234740863,0.5 +2116,my_land,urban,0.0,0.02,0.04,0.0,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0,,,,, +2117,my_land,rural,15.455265113993406,0.1,0.4,20.0,2012-01-25,0.0,0.0,0.00290706950147189,0.0,0.0,0.0,0.0,0.0,6.381769651963475,0.0,0.0,0.0,0.1528077571978155,0.0509359190659385,0.010723351382302843,0.08553297235394317,0.5 +2118,my_land,urban,1.734723475976807e-18,0.02,0.035,0.0,2012-01-26,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2119,my_land,rural,15.489991773342439,0.1,0.35000000000000003,20.0,2012-01-26,0.0,0.0,0.002879058167777453,0.0,0.0,0.0,0.0,0.0,6.157614186675556,0.0,0.0,0.0,0.1533822552138135,0.0511274184046045,0.010763667032548316,0.03472665934903369,0.5 +2120,my_land,urban,0.0,0.014000000000000002,0.014,0.0,2012-01-27,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2121,my_land,rural,15.43990335505742,0.1,0.13999999999999999,20.0,2012-01-27,0.0,0.0,0.0028731322814576016,0.0,0.0,0.0,0.0,0.0,5.927466878291346,0.0,0.0,0.0,0.06418799802807645,0.021395999342692148,0.004504420914250979,-0.05008841828501957,0.5 +2122,my_land,urban,0.0,0.0,0.0,0.0,2012-01-28,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2123,my_land,rural,15.33990335505742,0.1,0.0,20.0,2012-01-28,0.0,0.0,0.0028831322814576016,0.0,0.0,0.0,0.0,0.0,5.695397645286419,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2124,my_land,urban,0.0,0.002,0.002,0.0,2012-01-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2125,my_land,rural,15.259397949454305,0.1,0.02,20.0,2012-01-29,0.0,0.0,0.0028931322814576017,0.0,0.0,0.0,0.0,0.0,5.462817562910803,0.0,0.0,0.0,0.0,0.0,0.0005054056031138788,-0.09010811206227759,0.5 +2126,my_land,urban,0.0,0.0,0.0,0.0,2012-01-30,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2127,my_land,rural,15.159397949454306,0.1,0.0,20.0,2012-01-30,0.0,0.0,0.0029031322814576017,0.0,0.0,0.0,0.0,0.0,5.230173623613851,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2128,my_land,urban,0.0,0.0,0.0,0.0,2012-01-31,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2129,my_land,rural,15.059397949454306,0.1,0.0,20.0,2012-01-31,0.0,0.0,0.0029131322814576017,0.0,0.0,0.0,0.0,0.0,4.997521702951732,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2130,my_land,urban,0.0,0.0,0.0,0.0,2012-02-01,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2131,my_land,rural,14.959397949454306,0.1,0.0,20.0,2012-02-01,0.0,0.0,0.0029231322814576017,0.0,0.0,0.0,0.0,0.0,4.813083070118966,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2132,my_land,urban,0.0,0.0,0.0,0.0,2012-02-02,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2133,my_land,rural,14.859397949454307,0.1,0.0,20.0,2012-02-02,0.0,0.0,0.0029331322814576018,0.0,0.0,0.0,0.0,0.0,4.634671098264871,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2134,my_land,urban,0.0,0.0,0.0,0.0,2012-02-03,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, +2135,my_land,rural,14.759397949454307,0.1,0.0,20.0,2012-02-03,0.0,0.0,0.002943132281457602,0.0,0.0,0.0,0.0,0.0,4.457012459033109,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2136,my_land,urban,0.04099999999999999,0.02,0.10099999999999999,0.0,2012-02-04,0.0,0.0,4.555555555555555e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, +2137,my_land,rural,15.669397949454307,0.1,1.01,20.0,2012-02-04,0.0,0.0,0.002953132281457602,0.0,0.0,0.0,0.0,0.0,4.271022874614049,0.0,0.0,0.0,0.0,0.0,0.0,0.91,0.5 +2138,my_land,urban,0.0,0.02,0.013,0.0,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, +2139,my_land,rural,15.600281418751997,0.1,0.13,20.0,2012-02-05,0.0,0.0,0.0029453546108671232,0.0,0.0,0.0,0.0,0.0,4.100606427381303,0.0,0.0,0.0,0.07062052812539509,0.02354017604179836,0.004955826535115444,-0.06911653070230889,0.5 +2140,my_land,urban,0.0,0.008,0.008,0.0,2012-02-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, +2141,my_land,rural,15.577394710357458,0.1,0.08,20.0,2012-02-06,0.0,0.0,0.0029553546108671233,0.0,0.0,0.0,0.0,0.0,3.9241829461726625,0.0,0.0,0.0,0.0,0.0,0.002886708394538389,-0.07773416789076777,0.5 +2142,my_land,urban,0.0,0.0,0.0,0.0,2012-02-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, +2143,my_land,rural,15.477394710357459,0.1,0.0,20.0,2012-02-07,0.0,0.0,0.0029653546108671233,0.0,0.0,0.0,0.0,0.0,3.746772868271583,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2144,my_land,urban,0.0,0.0,0.0,0.0,2012-02-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, +2145,my_land,rural,15.377394710357459,0.1,0.0,20.0,2012-02-08,0.0,0.0,0.0029753546108671233,0.0,0.0,0.0,0.0,0.0,3.845132323033948,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2146,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2147,my_land,rural,15.47812862417082,0.1,0.44,20.0,2012-02-09,0.0,0.0,0.0029421479398501764,0.0,0.0,0.0,0.0,0.0,3.9757471271216187,0.0,0.0,0.0,0.17047708640798204,0.056825695469327336,0.011963304309332071,0.10073391381335861,0.5 +2148,my_land,urban,0.0,0.001,0.001,0.0,2012-02-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2149,my_land,rural,15.38781162455784,0.1,0.01,20.0,2012-02-10,0.0,0.0,0.0029521479398501764,0.0,0.0,0.0,0.0,0.0,4.114825533640203,0.0,0.0,0.0,0.0,0.0,0.000316999612979966,-0.09633999225959931,0.5 +2150,my_land,urban,0.0,0.001,0.001,0.0,2012-02-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2151,my_land,rural,15.297534642769804,0.1,0.01,20.0,2012-02-11,0.0,0.0,0.0029621479398501765,0.0,0.0,0.0,0.0,0.0,4.252746048955025,0.0,0.0,0.0,0.0,0.0,0.0002769817880357109,-0.09553963576071421,0.5 +2152,my_land,urban,0.0,0.002,0.002,0.0,2012-02-12,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2153,my_land,rural,15.217076089835906,0.1,0.02,20.0,2012-02-12,0.0,0.0,0.0029721479398501765,0.0,0.0,0.0,0.0,0.0,4.390521827869378,0.0,0.0,0.0,0.0,0.0,0.00045855293389813296,-0.08917105867796266,0.5 +2154,my_land,urban,0.0,0.007,0.007,0.0,2012-02-13,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2155,my_land,rural,15.185821536376602,0.1,0.06999999999999999,20.0,2012-02-13,0.0,0.0,0.0029821479398501765,0.0,0.0,0.0,0.0,0.0,4.528279513983673,0.0,0.0,0.0,0.0,0.0,0.0012545534593041906,-0.05509106918608381,0.5 +2156,my_land,urban,0.0,0.0,0.0,0.0,2012-02-14,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2157,my_land,rural,15.085821536376603,0.1,0.0,20.0,2012-02-14,0.0,0.0,0.0029921479398501765,0.0,0.0,0.0,0.0,0.0,4.666034939247959,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2158,my_land,urban,0.0,0.0,0.0,0.0,2012-02-15,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2159,my_land,rural,14.985821536376603,0.1,0.0,20.0,2012-02-15,0.0,0.0,0.0030021479398501766,0.0,0.0,0.0,0.0,0.0,4.927004367405996,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2160,my_land,urban,0.0,0.0,0.0,0.0,2012-02-16,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2161,my_land,rural,14.885821536376604,0.1,0.0,20.0,2012-02-16,0.0,0.0,0.0030121479398501766,0.0,0.0,0.0,0.0,0.0,5.203375545925749,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2162,my_land,urban,0.0,0.001,0.001,0.0,2012-02-17,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, +2163,my_land,rural,14.795821536376604,0.1,0.01,20.0,2012-02-17,0.0,0.0,0.0030221479398501766,0.0,0.0,0.0,0.0,0.0,5.48167194324072,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +2164,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2165,my_land,rural,14.965821536376604,0.1,0.27,20.0,2012-02-18,0.0,0.0,0.0030321479398501766,0.0,0.0,0.0,0.0,0.0,5.759667056147782,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.5 +2166,my_land,urban,0.0,0.0,0.0,0.0,2012-02-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2167,my_land,rural,14.865821536376604,0.1,0.0,20.0,2012-02-19,0.0,0.0,0.0030421479398501767,0.0,0.0,0.0,0.0,0.0,6.0387083820184735,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2168,my_land,urban,0.0,0.0,0.0,0.0,2012-02-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2169,my_land,rural,14.765821536376604,0.1,0.0,20.0,2012-02-20,0.0,0.0,0.0030521479398501767,0.0,0.0,0.0,0.0,0.0,6.31733854775231,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2170,my_land,urban,0.0,0.002,0.002,0.0,2012-02-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2171,my_land,rural,14.685821536376604,0.1,0.02,20.0,2012-02-21,0.0,0.0,0.0030621479398501767,0.0,0.0,0.0,0.0,0.0,6.59591731846904,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2172,my_land,urban,0.0,0.009,0.009,0.0,2012-02-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2173,my_land,rural,14.675821536376604,0.1,0.09,20.0,2012-02-22,0.0,0.0,0.0030721479398501767,0.0,0.0,0.0,0.0,0.0,6.949489664808631,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +2174,my_land,urban,0.0,0.0,0.0,0.0,2012-02-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2175,my_land,rural,14.575821536376605,0.1,0.0,20.0,2012-02-23,0.0,0.0,0.0030821479398501768,0.0,0.0,0.0,0.0,0.0,7.312436208101079,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2176,my_land,urban,0.0,0.002,0.002,0.0,2012-02-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2177,my_land,rural,14.495821536376605,0.1,0.02,20.0,2012-02-24,0.0,0.0,0.003092147939850177,0.0,0.0,0.0,0.0,0.0,7.676554526012635,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2178,my_land,urban,0.0,0.0,0.0,0.0,2012-02-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2179,my_land,rural,14.395821536376605,0.1,0.0,20.0,2012-02-25,0.0,0.0,0.003102147939850177,0.0,0.0,0.0,0.0,0.0,8.04081931575158,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2180,my_land,urban,0.0,0.001,0.001,0.0,2012-02-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2181,my_land,rural,14.305821536376605,0.1,0.01,20.0,2012-02-26,0.0,0.0,0.003112147939850177,0.0,0.0,0.0,0.0,0.0,8.405102414468947,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +2182,my_land,urban,0.0,0.009,0.009,0.0,2012-02-27,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2183,my_land,rural,14.295821536376605,0.1,0.09,20.0,2012-02-27,0.0,0.0,0.003122147939850177,0.0,0.0,0.0,0.0,0.0,8.76938780180862,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +2184,my_land,urban,0.0,0.0,0.0,0.0,2012-02-28,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2185,my_land,rural,14.195821536376606,0.1,0.0,20.0,2012-02-28,0.0,0.0,0.003132147939850177,0.0,0.0,0.0,0.0,0.0,8.632110975226079,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2186,my_land,urban,0.0,0.0,0.0,0.0,2012-02-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2187,my_land,rural,14.095821536376606,0.1,0.0,20.0,2012-02-29,0.0,0.0,0.003142147939850177,0.0,0.0,0.0,0.0,0.0,8.432138871903259,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2188,my_land,urban,0.0,0.0,0.0,0.0,2012-03-01,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2189,my_land,rural,13.995821536376607,0.1,0.0,20.0,2012-03-01,0.0,0.0,0.003152147939850177,0.0,0.0,0.0,0.0,0.0,8.22432985898791,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2190,my_land,urban,0.0,0.004,0.004,0.0,2012-03-02,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, +2191,my_land,rural,13.935821536376606,0.1,0.04,20.0,2012-03-02,0.0,0.0,0.003162147939850177,0.0,0.0,0.0,0.0,0.0,8.01554123237349,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 +2192,my_land,urban,0.001999999999999995,0.02,0.062,0.0,2012-03-03,0.0,0.0,6.666666666666648e-07,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0,,,,, +2193,my_land,rural,14.455821536376606,0.1,0.62,20.0,2012-03-03,0.0,0.0,0.003172147939850177,0.0,0.0,0.0,0.0,0.0,7.8038905013742585,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.5 +2194,my_land,urban,0.021000000000000005,0.02,0.07900000000000001,0.0,2012-03-04,0.0,0.0,5.737704918032781e-07,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2195,my_land,rural,15.145821536376605,0.1,0.79,20.0,2012-03-04,0.0,0.0,0.003182147939850177,0.0,0.0,0.0,0.0,0.0,7.593708824715902,0.0,0.0,0.0,0.0,0.0,0.0,0.6900000000000001,0.5 +2196,my_land,urban,0.0,0.02,0.0,0.0,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2197,my_land,rural,15.045821536376605,0.1,0.0,20.0,2012-03-05,0.0,0.0,0.003192147939850177,0.0,0.0,0.0,0.0,0.0,7.388276103089489,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2198,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-03-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2199,my_land,rural,15.05526697679811,0.1,0.12,20.0,2012-03-06,0.0,0.0,0.0032000167236549844,0.0,0.0,0.0,0.0,0.0,7.179669271968202,0.0,0.0,0.0,0.00752012369967785,0.0025067078998926165,0.0005277279789247614,0.009445440421504758,0.5 +2200,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-03-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2201,my_land,rural,15.107383839113368,0.1,0.16999999999999998,20.0,2012-03-07,0.0,0.0,0.0032064109600880037,0.0,0.0,0.0,0.0,0.0,7.421481542572029,0.0,0.0,0.0,0.012741735600379464,0.0042472452001264885,0.0008941568842371555,0.05211686231525688,0.5 +2202,my_land,urban,0.0,0.0,0.0,0.0,2012-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2203,my_land,rural,15.007383839113368,0.1,0.0,20.0,2012-03-08,0.0,0.0,0.0032164109600880037,0.0,0.0,0.0,0.0,0.0,7.719649478321504,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2204,my_land,urban,0.0,0.0,0.0,0.0,2012-03-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2205,my_land,rural,14.907383839113368,0.1,0.0,20.0,2012-03-09,0.0,0.0,0.0032264109600880038,0.0,0.0,0.0,0.0,0.0,8.024777613040188,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2206,my_land,urban,0.0,0.0,0.0,0.0,2012-03-10,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2207,my_land,rural,14.807383839113369,0.1,0.0,20.0,2012-03-10,0.0,0.0,0.003236410960088004,0.0,0.0,0.0,0.0,0.0,8.330775773380024,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2208,my_land,urban,0.0,0.0,0.0,0.0,2012-03-11,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2209,my_land,rural,14.707383839113369,0.1,0.0,20.0,2012-03-11,0.0,0.0,0.003246410960088004,0.0,0.0,0.0,0.0,0.0,8.636882686172504,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2210,my_land,urban,0.0,0.002,0.002,0.0,2012-03-12,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2211,my_land,rural,14.627383839113369,0.1,0.02,20.0,2012-03-12,0.0,0.0,0.003256410960088004,0.0,0.0,0.0,0.0,0.0,8.943003193021562,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2212,my_land,urban,0.0,0.0,0.0,0.0,2012-03-13,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2213,my_land,rural,14.52738383911337,0.1,0.0,20.0,2012-03-13,0.0,0.0,0.003266410960088004,0.0,0.0,0.0,0.0,0.0,9.249125399127696,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2214,my_land,urban,0.0,0.001,0.001,0.0,2012-03-14,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2215,my_land,rural,14.43738383911337,0.1,0.01,20.0,2012-03-14,0.0,0.0,0.003276410960088004,0.0,0.0,0.0,0.0,0.0,9.231140674890963,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +2216,my_land,urban,0.0,0.0,0.0,0.0,2012-03-15,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2217,my_land,rural,14.33738383911337,0.1,0.0,20.0,2012-03-15,0.0,0.0,0.003286410960088004,0.0,0.0,0.0,0.0,0.0,9.172642584361371,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2218,my_land,urban,0.0,0.02,0.02,0.0,2012-03-16,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, +2219,my_land,rural,14.43738383911337,0.1,0.2,20.0,2012-03-16,0.0,0.0,0.003296410960088004,0.0,0.0,0.0,0.0,0.0,9.108887557351917,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 +2220,my_land,urban,0.0,0.02,0.036,0.0,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2221,my_land,rural,14.69738383911337,0.1,0.36,20.0,2012-03-17,0.0,0.0,0.003306410960088004,0.0,0.0,0.0,0.0,0.0,9.044343754283467,0.0,0.0,0.0,0.0,0.0,0.0,0.26,0.5 +2222,my_land,urban,0.0,0.01,0.01,0.0,2012-03-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2223,my_land,rural,14.69738383911337,0.1,0.1,20.0,2012-03-18,0.0,0.0,0.003316410960088004,0.0,0.0,0.0,0.0,0.0,8.980542969285436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +2224,my_land,urban,0.0,0.0,0.0,0.0,2012-03-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2225,my_land,rural,14.59738383911337,0.1,0.0,20.0,2012-03-19,0.0,0.0,0.003326410960088004,0.0,0.0,0.0,0.0,0.0,8.91631787116068,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2226,my_land,urban,0.0,0.0,0.0,0.0,2012-03-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2227,my_land,rural,14.49738383911337,0.1,0.0,20.0,2012-03-20,0.0,0.0,0.003336410960088004,0.0,0.0,0.0,0.0,0.0,8.852039733895086,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2228,my_land,urban,0.0,0.0,0.0,0.0,2012-03-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2229,my_land,rural,14.39738383911337,0.1,0.0,20.0,2012-03-21,0.0,0.0,0.003346410960088004,0.0,0.0,0.0,0.0,0.0,9.039540681236886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2230,my_land,urban,0.0,0.0,0.0,0.0,2012-03-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2231,my_land,rural,14.29738383911337,0.1,0.0,20.0,2012-03-22,0.0,0.0,0.003356410960088004,0.0,0.0,0.0,0.0,0.0,9.25851401340461,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2232,my_land,urban,0.0,0.0,0.0,0.0,2012-03-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2233,my_land,rural,14.197383839113371,0.1,0.0,20.0,2012-03-23,0.0,0.0,0.003366410960088004,0.0,0.0,0.0,0.0,0.0,9.481421394425578,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2234,my_land,urban,0.0,0.0,0.0,0.0,2012-03-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2235,my_land,rural,14.097383839113371,0.1,0.0,20.0,2012-03-24,0.0,0.0,0.003376410960088004,0.0,0.0,0.0,0.0,0.0,9.704820531553198,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2236,my_land,urban,0.0,0.0,0.0,0.0,2012-03-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2237,my_land,rural,13.997383839113372,0.1,0.0,20.0,2012-03-25,0.0,0.0,0.003386410960088004,0.0,0.0,0.0,0.0,0.0,9.92828113819415,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2238,my_land,urban,0.0,0.0,0.0,0.0,2012-03-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2239,my_land,rural,13.897383839113372,0.1,0.0,20.0,2012-03-26,0.0,0.0,0.003396410960088004,0.0,0.0,0.0,0.0,0.0,10.151749424774268,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2240,my_land,urban,0.0,0.0,0.0,0.0,2012-03-27,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2241,my_land,rural,13.797383839113373,0.1,0.0,20.0,2012-03-27,0.0,0.0,0.0034064109600880042,0.0,0.0,0.0,0.0,0.0,10.375218678096783,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2242,my_land,urban,0.0,0.0,0.0,0.0,2012-03-28,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2243,my_land,rural,13.697383839113373,0.1,0.0,20.0,2012-03-28,0.0,0.0,0.0034164109600880043,0.0,0.0,0.0,0.0,0.0,10.381723762262096,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2244,my_land,urban,0.0,0.0,0.0,0.0,2012-03-29,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2245,my_land,rural,13.597383839113373,0.1,0.0,20.0,2012-03-29,0.0,0.0,0.0034264109600880043,0.0,0.0,0.0,0.0,0.0,10.361108325282762,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2246,my_land,urban,0.0,0.0,0.0,0.0,2012-03-30,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2247,my_land,rural,13.497383839113374,0.1,0.0,20.0,2012-03-30,0.0,0.0,0.0034364109600880043,0.0,0.0,0.0,0.0,0.0,10.337102823160345,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2248,my_land,urban,0.0,0.0,0.0,0.0,2012-03-31,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2249,my_land,rural,13.397383839113374,0.1,0.0,20.0,2012-03-31,0.0,0.0,0.0034464109600880043,0.0,0.0,0.0,0.0,0.0,10.312673570395043,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2250,my_land,urban,0.0,0.0,0.0,0.0,2012-04-01,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2251,my_land,rural,13.297383839113374,0.1,0.0,20.0,2012-04-01,0.0,0.0,0.0034564109600880044,0.0,0.0,0.0,0.0,0.0,10.288191341299381,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2252,my_land,urban,0.0,0.0,0.0,0.0,2012-04-02,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, +2253,my_land,rural,13.197383839113375,0.1,0.0,20.0,2012-04-02,0.0,0.0,0.0034664109600880044,0.0,0.0,0.0,0.0,0.0,10.263702490162423,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2254,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0,,,,, +2255,my_land,rural,13.317383839113374,0.1,0.22,20.0,2012-04-03,0.0,0.0,0.0034764109600880044,0.0,0.0,0.0,0.0,0.0,10.239225536190576,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 +2256,my_land,urban,0.0,0.02,0.028,0.0,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, +2257,my_land,rural,13.497383839113374,0.1,0.27999999999999997,20.0,2012-04-04,0.0,0.0,0.0034864109600880044,0.0,0.0,0.0,0.0,0.0,10.174468751384405,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.5 +2258,my_land,urban,0.0,0.0,0.0,0.0,2012-04-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, +2259,my_land,rural,13.397383839113374,0.1,0.0,20.0,2012-04-05,0.0,0.0,0.0034964109600880045,0.0,0.0,0.0,0.0,0.0,10.104844311423053,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2260,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-04-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, +2261,my_land,rural,13.327383839113374,0.1,0.03,20.0,2012-04-06,0.0,0.0,0.0035064109600880045,0.0,0.0,0.0,0.0,0.0,10.034534111427883,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +2262,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2012-04-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, +2263,my_land,rural,13.287383839113375,0.1,0.06,20.0,2012-04-07,0.0,0.0,0.0035164109600880045,0.0,0.0,0.0,0.0,0.0,9.964138192178487,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 +2264,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0,,,,, +2265,my_land,rural,13.397383839113374,0.1,0.21,20.0,2012-04-08,0.0,0.0,0.0035264109600880045,0.0,0.0,0.0,0.0,0.0,9.893629078949129,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 +2266,my_land,urban,0.03599999999999998,0.02,0.09599999999999999,0.0,2012-04-09,0.0,0.0,4.736842105263157e-07,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2267,my_land,rural,14.257383839113373,0.1,0.96,20.0,2012-04-09,0.0,0.0,0.0035364109600880046,0.0,0.0,0.0,0.0,0.0,9.822470176776665,0.0,0.0,0.0,0.0,0.0,0.0,0.86,0.5 +2268,my_land,urban,3.469446951953614e-18,0.02,0.014,0.0,2012-04-10,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2269,my_land,rural,14.297383839113373,0.1,0.13999999999999999,20.0,2012-04-10,0.0,0.0,0.0035464109600880046,0.0,0.0,0.0,0.0,0.0,9.752765942521354,0.0,0.0,0.0,0.0,0.0,0.0,0.039999999999999994,0.5 +2270,my_land,urban,0.0,0.009000000000000003,0.009,0.0,2012-04-11,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2271,my_land,rural,14.287383839113373,0.1,0.09,20.0,2012-04-11,0.0,0.0,0.0035564109600880046,0.0,0.0,0.0,0.0,0.0,9.73070288556517,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 +2272,my_land,urban,0.0,0.013,0.013,0.0,2012-04-12,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2273,my_land,rural,14.317383839113372,0.1,0.13,20.0,2012-04-12,0.0,0.0,0.0035664109600880047,0.0,0.0,0.0,0.0,0.0,9.714534750252634,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 +2274,my_land,urban,0.0,0.02,0.02,0.0,2012-04-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2275,my_land,rural,14.417383839113372,0.1,0.2,20.0,2012-04-13,0.0,0.0,0.0035764109600880047,0.0,0.0,0.0,0.0,0.0,9.699079223368509,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 +2276,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-04-14,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2277,my_land,rural,14.347383839113371,0.1,0.03,20.0,2012-04-14,0.0,0.0,0.0035864109600880047,0.0,0.0,0.0,0.0,0.0,9.683813474671064,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 +2278,my_land,urban,0.0,0.0,0.0,0.0,2012-04-15,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, +2279,my_land,rural,14.247383839113372,0.1,0.0,20.0,2012-04-15,0.0,0.0,0.0035964109600880047,0.0,0.0,0.0,0.0,0.0,9.668512398833883,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2280,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2012-04-16,0.0,0.0,-1.6940658945086007e-21,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0,,,,, +2281,my_land,rural,14.617383839113371,0.1,0.47000000000000003,20.0,2012-04-16,0.0,0.0,0.0036064109600880048,0.0,0.0,0.0,0.0,0.0,9.652967530782124,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.5 +2282,my_land,urban,0.0,0.02,0.038,0.0,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0,,,,, +2283,my_land,rural,14.89738383911337,0.1,0.38,20.0,2012-04-17,0.0,0.0,0.0036164109600880048,0.0,0.0,0.0,0.0,0.0,9.637687763978716,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 +2284,my_land,urban,0.038,0.02,0.098,0.0,2012-04-18,0.0,0.0,4.871794871794872e-07,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0,,,,, +2285,my_land,rural,15.77738383911337,0.1,0.98,20.0,2012-04-18,0.0,0.0,0.003626410960088005,0.0,0.0,0.0,0.0,0.0,9.705814168810612,0.0,0.0,0.0,0.0,0.0,0.0,0.8799999999999999,0.5 +2286,my_land,urban,0.006999999999999999,0.02,0.028999999999999998,0.0,2012-04-19,0.0,0.0,2.21494817239498e-07,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0,,,,, +2287,my_land,rural,15.730903580924119,0.1,0.29,20.0,2012-04-19,0.0,0.0,0.0035852098464018546,0.0,0.0,0.0,0.0,0.0,9.783839119410155,0.0,0.0,0.0,0.16849218395984014,0.056164061319946716,0.011824012909462467,-0.04648025818924936,0.5 +2288,my_land,urban,0.0,0.02,0.018,0.0,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0,,,,, +2289,my_land,rural,15.66796585794536,0.1,0.18,20.0,2012-04-20,0.0,0.0,0.003564318675204368,0.0,0.0,0.0,0.0,0.0,9.863198643703777,0.0,0.0,0.0,0.10184312762236696,0.033947709207455656,0.007146886148938034,-0.06293772297876067,0.5 +2290,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0,,,,, +2291,my_land,rural,15.618019762262866,0.1,0.21,20.0,2012-04-21,0.0,0.0,0.0035398789488883704,0.0,0.0,0.0,0.0,0.0,9.942788551783963,0.0,0.0,0.0,0.11396159317377647,0.03798719772459216,0.007997304784124666,-0.04994609568249333,0.5 +2292,my_land,urban,0.0,0.02,0.028,0.0,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0,,,,, +2293,my_land,rural,15.592864648750295,0.1,0.27999999999999997,20.0,2012-04-22,0.0,0.0,0.0035060562698100654,0.0,0.0,0.0,0.0,0.0,10.022442537715095,0.0,0.0,0.0,0.14617301837770758,0.048724339459235856,0.010257755675628604,-0.025155113512572054,0.5 +2294,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0,,,,, +2295,my_land,rural,15.617406845016781,0.1,0.44,20.0,2012-04-23,0.0,0.0,0.003449856424057657,0.0,0.0,0.0,0.0,0.0,10.102191783171536,0.0,0.0,0.0,0.22476368516012815,0.0749212283867094,0.015772890186675662,0.024542196266486797,0.5 +2296,my_land,urban,0.014000000000000005,0.02,0.07400000000000001,0.0,2012-04-24,0.0,0.0,2.5925925925925933e-07,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0,,,,, +2297,my_land,rural,15.715488035385995,0.1,0.74,20.0,2012-04-24,0.0,0.0,0.003350110330988048,0.0,0.0,0.0,0.0,0.0,10.182103672625233,0.0,0.0,0.0,0.38611715186193507,0.1287057172873117,0.027095940481539304,0.09808119036921392,0.5 +2298,my_land,urban,0.053000000000000026,0.02,0.099,0.0,2012-04-25,0.0,0.0,7.176423735563522e-07,0.0,0.0,0.0,0.0,0.0,10.33421659107527,0.0,0.0,0.0,,,,, +2299,my_land,rural,15.82681200043467,0.1,0.9900000000000001,20.0,2012-04-25,0.0,0.0,0.003210072158595561,0.0,0.0,0.0,0.0,0.0,10.289042623651481,0.0,0.0,0.0,0.5548066749028199,0.18493555830093997,0.03893380174756631,0.11132396504867394,0.5 +2300,my_land,urban,0.05700000000000003,0.02,0.064,0.0,2012-04-26,0.0,0.0,1.0093362401310525e-06,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0,,,,, +2301,my_land,rural,15.831804778990566,0.1,0.64,20.0,2012-04-26,0.0,0.0,0.003119911963265809,0.0,0.0,0.0,0.0,0.0,10.398495645024342,0.0,0.0,0.0,0.3811926452789219,0.12706421509297397,0.026750361072205044,0.004992778555899108,0.5 +2302,my_land,urban,0.08800000000000002,0.02,0.091,0.0,2012-04-27,0.0,0.0,1.3814186650900988e-06,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0,,,,, +2303,my_land,rural,15.879314914576037,0.1,0.91,20.0,2012-04-27,0.0,0.0,0.0029933639328259517,0.0,0.0,0.0,0.0,0.0,10.509080881453844,0.0,0.0,0.0,0.5432740283953531,0.18109134279845102,0.03812449322072654,0.04751013558546933,0.5 +2304,my_land,urban,0.205,0.02,0.177,0.0,2012-04-28,0.0,0.0,1.99261561772845e-06,0.0,0.0,0.0,0.0,0.0,10.659612098855122,0.0,0.0,0.0,,,,, +2305,my_land,rural,16.03515434564476,0.1,1.77,20.0,2012-04-28,0.0,0.0,0.0027561226787833756,0.0,0.0,0.0,0.0,0.0,10.620724878881829,0.0,0.0,0.0,1.0788394053635335,0.3596131351211779,0.07570802844656377,0.1558394310687246,0.5 +2306,my_land,urban,0.255,0.02,0.10999999999999999,0.0,2012-04-29,0.0,0.0,2.5868372288839148e-06,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0,,,,, +2307,my_land,rural,16.043286659711313,0.1,1.0999999999999999,20.0,2012-04-29,0.0,0.0,0.002612671973132652,0.0,0.0,0.0,0.0,0.0,10.730211963380642,0.0,0.0,0.0,0.7067057262275797,0.23556857540919324,0.04959338429667226,0.008132314066554638,0.5 +2308,my_land,urban,0.34500000000000003,0.02,0.15,0.0,2012-04-30,0.0,0.0,3.214178815493378e-06,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0,,,,, +2309,my_land,rural,16.08774315962399,0.1,1.5,20.0,2012-04-30,0.0,0.0,0.0024282955923012467,0.0,0.0,0.0,0.0,0.0,10.841149357745566,0.0,0.0,0.0,0.9658247438122152,0.32194158127073835,0.06777717500436597,0.04445649991268036,0.5 +2310,my_land,urban,0.29900000000000004,0.02,0.014,0.0,2012-05-01,0.0,0.0,3.7169305776770506e-06,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0,,,,, +2311,my_land,rural,15.999785241561993,0.1,0.13999999999999999,20.0,2012-05-01,0.0,0.0,0.002419910075374375,0.0,0.0,0.0,0.0,0.0,10.948967624300407,0.0,0.0,0.0,0.09117001661917247,0.03039000553972416,0.006397895903099823,-0.08795791806199646,0.5 +2312,my_land,urban,0.31200000000000006,0.02,0.073,0.0,2012-05-02,0.0,0.0,4.180915739304658e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0,,,,, +2313,my_land,rural,15.978210488491827,0.1,0.73,20.0,2012-05-02,0.0,0.0,0.002339286110785917,0.0,0.0,0.0,0.0,0.0,10.936216584312037,0.0,0.0,0.0,0.46424701156249293,0.15474900385416432,0.03257873765350827,-0.0215747530701655,0.5 +2314,my_land,urban,0.26000000000000006,0.02,0.008,0.0,2012-05-03,0.0,0.0,4.490126974064037e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0,,,,, +2315,my_land,rural,15.954663963460757,0.1,0.08,20.0,2012-05-03,0.0,0.0,0.0023492861107859172,0.0,0.0,0.0,0.0,0.0,10.907205645539005,0.0,0.0,0.0,0.0,0.0,0.0035465250310708365,-0.09093050062141673,0.5 +2316,my_land,urban,0.20600000000000004,0.02,0.005999999999999999,0.0,2012-05-04,0.0,0.0,4.597423401045494e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0,,,,, +2317,my_land,rural,15.912024514908731,0.1,0.06,20.0,2012-05-04,0.0,0.0,0.0023592861107859173,0.0,0.0,0.0,0.0,0.0,10.876793560692379,0.0,0.0,0.0,0.0,0.0,0.0026394485520255177,-0.09278897104051036,0.5 +2318,my_land,urban,0.14600000000000005,0.02,0.0,0.0,2012-05-05,0.0,0.0,4.393676433078721e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0,,,,, +2319,my_land,rural,15.812024514908732,0.1,0.0,20.0,2012-05-05,0.0,0.0,0.0023692861107859173,0.0,0.0,0.0,0.0,0.0,10.846206340086548,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2320,my_land,urban,0.09900000000000003,0.02,0.013,0.0,2012-05-06,0.0,0.0,3.841539330034485e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0,,,,, +2321,my_land,rural,15.734119037250204,0.1,0.13,20.0,2012-05-06,0.0,0.0,0.002363885036457216,0.0,0.0,0.0,0.0,0.0,10.81561668391062,0.0,0.0,0.0,0.07688265283170147,0.02562755094390049,0.005395273882926419,-0.07790547765852839,0.5 +2322,my_land,urban,0.18300000000000002,0.02,0.144,0.0,2012-05-07,0.0,0.0,3.973101782046236e-06,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0,,,,, +2323,my_land,rural,15.928391601656228,0.1,1.44,20.0,2012-05-07,0.0,0.0,0.002222045149138042,0.0,0.0,0.0,0.0,0.0,10.785883849551517,0.0,0.0,0.0,0.816330797860709,0.27211026595356963,0.05728637177969887,0.19427256440602247,0.5 +2324,my_land,urban,0.158,0.02,0.035,0.0,2012-05-08,0.0,0.0,3.968434755370229e-06,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0,,,,, +2325,my_land,rural,15.87326903555895,0.1,0.35000000000000003,20.0,2012-05-08,0.0,0.0,0.0021920160980025616,0.0,0.0,0.0,0.0,0.0,10.754647265012288,0.0,0.0,0.0,0.21739982834431149,0.07246660944810382,0.015256128304863965,-0.05512256609727928,0.5 +2326,my_land,urban,0.19299999999999998,0.02,0.095,0.0,2012-05-09,0.0,0.0,4.115484582774481e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, +2327,my_land,rural,15.91261202663004,0.1,0.95,20.0,2012-05-09,0.0,0.0,0.002100364559812297,0.0,0.0,0.0,0.0,0.0,10.8269173817894,0.0,0.0,0.0,0.5775931188618492,0.1925310396206164,0.04053285044644556,0.03934299107108876,0.5 +2328,my_land,urban,0.15299999999999997,0.02,0.02,0.0,2012-05-10,0.0,0.0,4.055280524168371e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, +2329,my_land,rural,15.839267633815039,0.1,0.2,20.0,2012-05-10,0.0,0.0,0.00208864935932465,0.0,0.0,0.0,0.0,0.0,10.909791645304134,0.0,0.0,0.0,0.12350787988068737,0.041169293293562455,0.008667219640749992,-0.07334439281499981,0.5 +2330,my_land,urban,0.09299999999999997,0.02,0.0,0.0,2012-05-11,0.0,0.0,3.5348954041177326e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, +2331,my_land,rural,15.73926763381504,0.1,0.0,20.0,2012-05-11,0.0,0.0,0.00209864935932465,0.0,0.0,0.0,0.0,0.0,10.994973955663017,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2332,my_land,urban,0.03299999999999997,0.02,0.0,0.0,2012-05-12,0.0,0.0,2.050021210080618e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, +2333,my_land,rural,15.63926763381504,0.1,0.0,20.0,2012-05-12,0.0,0.0,0.00210864935932465,0.0,0.0,0.0,0.0,0.0,11.080621744457877,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2334,my_land,urban,0.0,0.02,0.011000000000000001,0.0,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, +2335,my_land,rural,15.567275948327165,0.1,0.11,20.0,2012-05-13,0.0,0.0,0.002108101307056382,0.0,0.0,0.0,0.0,0.0,11.166341595777205,0.0,0.0,0.0,0.05841907591011096,0.01947302530337032,0.0040995842743937515,-0.07199168548787503,0.5 +2336,my_land,urban,0.0,0.02,0.026,0.0,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, +2337,my_land,rural,15.545255416094797,0.1,0.26,20.0,2012-05-14,0.0,0.0,0.0020947995539778584,0.0,0.0,0.0,0.0,0.0,11.252413100588669,0.0,0.0,0.0,0.12968962921556304,0.04322987640518768,0.00910102661161846,-0.022020532232369206,0.5 +2338,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-05-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, +2339,my_land,rural,15.498832239796023,0.1,0.16999999999999998,20.0,2012-05-15,0.0,0.0,0.002089885811863185,0.0,0.0,0.0,0.0,0.0,11.438817739816518,0.0,0.0,0.0,0.08295151311287549,0.027650504370958496,0.005821158814938632,-0.04642317629877264,0.5 +2340,my_land,urban,0.0,0.0,0.0,0.0,2012-05-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, +2341,my_land,rural,15.398832239796024,0.1,0.0,20.0,2012-05-16,0.0,0.0,0.002099885811863185,0.0,0.0,0.0,0.0,0.0,11.637664717477067,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2342,my_land,urban,0.0,0.0,0.0,0.0,2012-05-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, +2343,my_land,rural,15.298832239796024,0.1,0.0,20.0,2012-05-17,0.0,0.0,0.002109885811863185,0.0,0.0,0.0,0.0,0.0,11.838301839684634,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2344,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2345,my_land,rural,15.312222758797045,0.1,0.21,20.0,2012-05-18,0.0,0.0,0.002107255261853071,0.0,0.0,0.0,0.0,0.0,12.039652766163835,0.0,0.0,0.0,0.06883425521177333,0.022944751737257775,0.004830474049949006,0.013390519001019879,0.5 +2346,my_land,urban,0.0,0.0,0.0,0.0,2012-05-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2347,my_land,rural,15.212222758797045,0.1,0.0,20.0,2012-05-19,0.0,0.0,0.002117255261853071,0.0,0.0,0.0,0.0,0.0,12.24011284577048,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2348,my_land,urban,0.0,0.0,0.0,0.0,2012-05-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2349,my_land,rural,15.112222758797046,0.1,0.0,20.0,2012-05-20,0.0,0.0,0.002127255261853071,0.0,0.0,0.0,0.0,0.0,12.44095160572131,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2350,my_land,urban,0.0,0.0,0.0,0.0,2012-05-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2351,my_land,rural,15.012222758797046,0.1,0.0,20.0,2012-05-21,0.0,0.0,0.002137255261853071,0.0,0.0,0.0,0.0,0.0,12.641837700715165,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2352,my_land,urban,0.0,0.0,0.0,0.0,2012-05-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2353,my_land,rural,14.912222758797046,0.1,0.0,20.0,2012-05-22,0.0,0.0,0.002147255261853071,0.0,0.0,0.0,0.0,0.0,12.842729712589398,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2354,my_land,urban,0.0,0.0,0.0,0.0,2012-05-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2355,my_land,rural,14.812222758797047,0.1,0.0,20.0,2012-05-23,0.0,0.0,0.002157255261853071,0.0,0.0,0.0,0.0,0.0,13.363376931573676,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2356,my_land,urban,0.0,0.0,0.0,0.0,2012-05-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2357,my_land,rural,14.712222758797047,0.1,0.0,20.0,2012-05-24,0.0,0.0,0.0021672552618530712,0.0,0.0,0.0,0.0,0.0,13.92399354394671,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2358,my_land,urban,0.0,0.0,0.0,0.0,2012-05-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2359,my_land,rural,14.612222758797047,0.1,0.0,20.0,2012-05-25,0.0,0.0,0.0021772552618530712,0.0,0.0,0.0,0.0,0.0,14.489606337993338,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2360,my_land,urban,0.0,0.0,0.0,0.0,2012-05-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2361,my_land,rural,14.512222758797048,0.1,0.0,20.0,2012-05-26,0.0,0.0,0.0021872552618530713,0.0,0.0,0.0,0.0,0.0,15.05584364724917,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2362,my_land,urban,0.0,0.0,0.0,0.0,2012-05-27,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2363,my_land,rural,14.412222758797048,0.1,0.0,20.0,2012-05-27,0.0,0.0,0.0021972552618530713,0.0,0.0,0.0,0.0,0.0,15.622159028406147,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2364,my_land,urban,0.0,0.0,0.0,0.0,2012-05-28,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2365,my_land,rural,14.312222758797049,0.1,0.0,20.0,2012-05-28,0.0,0.0,0.0022072552618530713,0.0,0.0,0.0,0.0,0.0,16.18848416105077,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2366,my_land,urban,0.0,0.0,0.0,0.0,2012-05-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2367,my_land,rural,14.212222758797049,0.1,0.0,20.0,2012-05-29,0.0,0.0,0.0022172552618530714,0.0,0.0,0.0,0.0,0.0,16.754810520131347,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2368,my_land,urban,0.0,0.002,0.002,0.0,2012-05-30,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2369,my_land,rural,14.132222758797049,0.1,0.02,20.0,2012-05-30,0.0,0.0,0.0022272552618530714,0.0,0.0,0.0,0.0,0.0,16.44122631501642,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2370,my_land,urban,0.0,0.002,0.002,0.0,2012-05-31,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2371,my_land,rural,14.052222758797049,0.1,0.02,20.0,2012-05-31,0.0,0.0,0.0022372552618530714,0.0,0.0,0.0,0.0,0.0,16.017653289377055,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2372,my_land,urban,0.0,0.002,0.002,0.0,2012-06-01,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, +2373,my_land,rural,13.972222758797049,0.1,0.02,20.0,2012-06-01,0.0,0.0,0.0022472552618530714,0.0,0.0,0.0,0.0,0.0,15.580331661172131,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2374,my_land,urban,0.051,0.02,0.111,0.0,2012-06-02,0.0,0.0,8.406593406593409e-06,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0,,,,, +2375,my_land,rural,14.982222758797048,0.1,1.11,20.0,2012-06-02,0.0,0.0,0.0022572552618530715,0.0,0.0,0.0,0.0,0.0,15.144195858313733,0.0,0.0,0.0,0.0,0.0,0.0,1.0100000000000002,0.5 +2376,my_land,urban,0.18400000000000002,0.02,0.193,0.0,2012-06-03,0.0,0.0,7.726844583987444e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0,,,,, +2377,my_land,rural,16.81222275879705,0.1,1.9300000000000002,20.0,2012-06-03,0.0,0.0,0.0022672552618530715,0.0,0.0,0.0,0.0,0.0,14.706050074676153,0.0,0.0,0.0,0.0,0.0,0.0,1.83,0.5 +2378,my_land,urban,0.12400000000000003,0.02,0.0,0.0,2012-06-04,0.0,0.0,6.598345904966117e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0,,,,, +2379,my_land,rural,16.712222758797047,0.1,0.0,20.0,2012-06-04,0.0,0.0,0.0022772552618530715,0.0,0.0,0.0,0.0,0.0,14.263256259334518,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2380,my_land,urban,0.11600000000000002,0.02,0.052,0.0,2012-06-05,0.0,0.0,5.650052083179933e-06,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0,,,,, +2381,my_land,rural,16.620081032455314,0.1,0.52,20.0,2012-06-05,0.0,0.0,0.0022222027151204984,0.0,0.0,0.0,0.0,0.0,13.823890087246495,0.0,0.0,0.0,0.36490098001848625,0.12163366000616208,0.025607086317086757,-0.09214172634173512,0.5 +2382,my_land,urban,0.093,0.02,0.037000000000000005,0.0,2012-06-06,0.0,0.0,4.6500364190656675e-06,0.0,0.0,0.0,0.0,0.0,15.113490499944916,0.0,0.0,0.0,,,,, +2383,my_land,rural,16.527452680027388,0.1,0.37,20.0,2012-06-06,0.0,0.0,0.0021866248767093564,0.0,0.0,0.0,0.0,0.0,13.384331633562534,0.0,0.0,0.0,0.2583727011048979,0.08612423370163264,0.018131417621396348,-0.09262835242792689,0.5 +2384,my_land,urban,0.20099999999999998,0.02,0.16799999999999998,0.0,2012-06-07,0.0,0.0,4.71227103830788e-06,0.0,0.0,0.0,0.0,0.0,14.230102143132271,0.0,0.0,0.0,,,,, +2385,my_land,rural,16.47131493585876,0.1,1.68,20.0,2012-06-07,0.0,0.0,0.002007212421462071,0.0,0.0,0.0,0.0,0.0,13.182311299848203,0.0,0.0,0.0,1.1657481427201484,0.3885827142400495,0.08180688720843149,-0.0561377441686297,0.5 +2386,my_land,urban,0.16199999999999998,0.02,0.020999999999999998,0.0,2012-06-08,0.0,0.0,4.5811282584449336e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710825,0.0,0.0,0.0,,,,, +2387,my_land,rural,16.37775141318291,0.1,0.21,20.0,2012-06-08,0.0,0.0,0.0019936715305244324,0.0,0.0,0.0,0.0,0.0,13.004259301102351,0.0,0.0,0.0,0.1450390099065424,0.04834633663551414,0.010178176133792452,-0.09356352267584903,0.5 +2388,my_land,urban,0.10199999999999998,0.02,0.0,0.0,2012-06-09,0.0,0.0,4.008979453249178e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710825,0.0,0.0,0.0,,,,, +2389,my_land,rural,16.27775141318291,0.1,0.0,20.0,2012-06-09,0.0,0.0,0.0020036715305244324,0.0,0.0,0.0,0.0,0.0,12.831782412637795,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2390,my_land,urban,0.11499999999999996,0.02,0.073,0.0,2012-06-10,0.0,0.0,3.7163395943461635e-06,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0,,,,, +2391,my_land,rural,16.215917405085182,0.1,0.73,20.0,2012-06-10,0.0,0.0,0.0019352351175356435,0.0,0.0,0.0,0.0,0.0,12.661295613167683,0.0,0.0,0.0,0.49293173076963054,0.16431057692321016,0.03459170040488635,-0.061834008097727024,0.5 +2392,my_land,urban,0.22899999999999995,0.02,0.174,0.0,2012-06-11,0.0,0.0,4.015025156525172e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0,,,,, +2393,my_land,rural,16.22318172323604,0.1,1.7399999999999998,20.0,2012-06-11,0.0,0.0,0.0017754812967749013,0.0,0.0,0.0,0.0,0.0,12.49125402291328,0.0,0.0,0.0,1.1633241733175155,0.3877747244391718,0.08163678409245723,0.007264318150855195,0.5 +2394,my_land,urban,0.16899999999999996,0.02,0.0,0.0,2012-06-12,0.0,0.0,4.055211729439014e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0,,,,, +2395,my_land,rural,16.123181723236037,0.1,0.0,20.0,2012-06-12,0.0,0.0,0.0017854812967749013,0.0,0.0,0.0,0.0,0.0,12.317656752864162,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2396,my_land,urban,0.10999999999999996,0.02,0.001,0.0,2012-06-13,0.0,0.0,3.7071552682552765e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0,,,,, +2397,my_land,rural,16.032720989935928,0.1,0.01,20.0,2012-06-13,0.0,0.0,0.0017954812967749013,0.0,0.0,0.0,0.0,0.0,12.58524281160802,0.0,0.0,0.0,0.0,0.0,0.00046073330010722906,-0.09921466600214458,0.5 +2398,my_land,urban,0.20999999999999996,0.02,0.16,0.0,2012-06-14,0.0,0.0,3.954010425334432e-06,0.0,0.0,0.0,0.0,0.0,13.375141981393652,0.0,0.0,0.0,,,,, +2399,my_land,rural,16.09097232574013,0.1,1.6,20.0,2012-06-14,0.0,0.0,0.0016638542631721989,0.0,0.0,0.0,0.0,0.0,12.916780139112259,0.0,0.0,0.0,1.0272459232395066,0.34241530774650225,0.07208743320978994,0.058251335804201075,0.5 +2400,my_land,urban,0.16199999999999995,0.02,0.011999999999999999,0.0,2012-06-15,0.0,0.0,3.973018261901871e-06,0.0,0.0,0.0,0.0,0.0,13.375141981393654,0.0,0.0,0.0,,,,, +2401,my_land,rural,16.001209230276714,0.1,0.12,20.0,2012-06-15,0.0,0.0,0.0016630168954679093,0.0,0.0,0.0,0.0,0.0,13.23880776082736,0.0,0.0,0.0,0.07820620551768091,0.026068735172560302,0.005488154773170591,-0.08976309546341182,0.5 +2402,my_land,urban,0.12399999999999994,0.02,0.022000000000000002,0.0,2012-06-16,0.0,0.0,3.7600869785111698e-06,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0,,,,, +2403,my_land,rural,15.924760235412506,0.1,0.22,20.0,2012-06-16,0.0,0.0,0.001653637473486216,0.0,0.0,0.0,0.0,0.0,13.5690807274729,0.0,0.0,0.0,0.13996990884074725,0.04665663628024908,0.009822449743210334,-0.07644899486420666,0.5 +2404,my_land,urban,0.09999999999999995,0.02,0.036,0.0,2012-06-17,0.0,0.0,3.4000621275079777e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0,,,,, +2405,my_land,rural,15.871333224328644,0.1,0.36,20.0,2012-06-17,0.0,0.0,0.0016330013950820903,0.0,0.0,0.0,0.0,0.0,13.90076766744458,0.0,0.0,0.0,0.22331674539725171,0.07443891513241724,0.015671350554193105,-0.053427011083862073,0.5 +2406,my_land,urban,0.039999999999999945,0.02,0.0,0.0,2012-06-18,0.0,0.0,2.2000310637539875e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0,,,,, +2407,my_land,rural,15.771333224328645,0.1,0.0,20.0,2012-06-18,0.0,0.0,0.0016430013950820904,0.0,0.0,0.0,0.0,0.0,14.229560240930576,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2408,my_land,urban,0.0,0.02,0.0,0.0,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0,,,,, +2409,my_land,rural,15.671333224328645,0.1,0.0,20.0,2012-06-19,0.0,0.0,0.0016530013950820904,0.0,0.0,0.0,0.0,0.0,14.559945030116323,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2410,my_land,urban,0.037,0.02,0.097,0.0,2012-06-20,0.0,0.0,4.805194805194805e-07,0.0,0.0,0.0,0.0,0.0,15.345833330000001,0.0,0.0,0.0,,,,, +2411,my_land,rural,15.80074369632518,0.1,0.97,20.0,2012-06-20,0.0,0.0,0.0015921095013548463,0.0,0.0,0.0,0.0,0.0,14.58432608903779,0.0,0.0,0.0,0.5276700387024695,0.17589001290082318,0.0370294764001733,0.1294104719965339,0.5 +2412,my_land,urban,0.059000000000000004,0.02,0.082,0.0,2012-06-21,0.0,0.0,8.823297914207005e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909091,0.0,0.0,0.0,,,,, +2413,my_land,rural,15.843908953341094,0.1,0.8200000000000001,20.0,2012-06-21,0.0,0.0,0.0015396268586786441,0.0,0.0,0.0,0.0,0.0,14.56435061782559,0.0,0.0,0.0,0.48224475437615866,0.16074825145871957,0.033841737149204125,0.04316525701591762,0.5 +2414,my_land,urban,0.012000000000000004,0.02,0.013,0.0,2012-06-22,0.0,0.0,4.3438379802016183e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909091,0.0,0.0,0.0,,,,, +2415,my_land,rural,15.764377821979478,0.1,0.13,20.0,2012-06-22,0.0,0.0,0.0015394654413541933,0.0,0.0,0.0,0.0,0.0,14.536308523706426,0.0,0.0,0.0,0.07804093109515012,0.02601364369838337,0.0054765565680807106,-0.07953113136161422,0.5 +2416,my_land,urban,0.099,0.02,0.147,0.0,2012-06-23,0.0,0.0,1.0216114820431369e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0,,,,, +2417,my_land,rural,15.94414027528128,0.1,1.47,20.0,2012-06-23,0.0,0.0,0.0014468572947362096,0.0,0.0,0.0,0.0,0.0,14.517715447016045,0.0,0.0,0.0,0.848044252022467,0.28268141734082236,0.05951187733490998,0.17976245330180057,0.5 +2418,my_land,urban,0.042,0.02,0.0029999999999999996,0.0,2012-06-24,0.0,0.0,1.0354595395830701e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, +2419,my_land,rural,15.872825296048367,0.1,0.03,20.0,2012-06-24,0.0,0.0,0.0014568572947362096,0.0,0.0,0.0,0.0,0.0,14.486589433377006,0.0,0.0,0.0,0.0,0.0,0.0013149792329128758,-0.09629958465825753,0.5 +2420,my_land,urban,0.0,0.02,0.0,0.0,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, +2421,my_land,rural,15.772825296048367,0.1,0.0,20.0,2012-06-25,0.0,0.0,0.0014668572947362096,0.0,0.0,0.0,0.0,0.0,14.460823679172126,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2422,my_land,urban,0.0,0.018,0.018,0.0,2012-06-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, +2423,my_land,rural,15.706404812064507,0.1,0.18,20.0,2012-06-26,0.0,0.0,0.001463892730885641,0.0,0.0,0.0,0.0,0.0,14.436916884534485,0.0,0.0,0.0,0.10432459483850011,0.0347748649461667,0.00732102419919299,-0.0664204839838598,0.5 +2424,my_land,urban,0.0,0.008,0.008,0.0,2012-06-27,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, +2425,my_land,rural,15.683276921335676,0.1,0.08,20.0,2012-06-27,0.0,0.0,0.001473892730885641,0.0,0.0,0.0,0.0,0.0,14.412427110566812,0.0,0.0,0.0,0.0,0.0,0.003127890728831821,-0.08255781457663643,0.5 +2426,my_land,urban,0.0,0.018,0.018,0.0,2012-06-28,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, +2427,my_land,rural,15.624687791247856,0.1,0.18,20.0,2012-06-28,0.0,0.0,0.0014714933576795539,0.0,0.0,0.0,0.0,0.0,14.38867977653702,0.0,0.0,0.0,0.09874475518757099,0.032914918395857,0.006929456504390948,-0.058589130087818964,0.5 +2428,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0,,,,, +2429,my_land,rural,15.614197337883143,0.1,0.33999999999999997,20.0,2012-06-29,0.0,0.0,0.0014592538096943497,0.0,0.0,0.0,0.0,0.0,14.365463463950286,0.0,0.0,0.0,0.17847444802235835,0.059491482674119446,0.012524522668235673,-0.010490453364713501,0.5 +2430,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2012-06-30,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0,,,,, +2431,my_land,rural,15.649019357733318,0.1,0.5,20.0,2012-06-30,0.0,0.0,0.0014373887094645777,0.0,0.0,0.0,0.0,0.0,14.342284197163128,0.0,0.0,0.0,0.26018931085674996,0.08672977028558332,0.018258899007491225,0.034822019850175516,0.5 +2432,my_land,urban,0.0,0.02,0.023,0.0,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0,,,,, +2433,my_land,rural,15.606285681412501,0.1,0.22999999999999998,20.0,2012-07-01,0.0,0.0,0.0014323280645126117,0.0,0.0,0.0,0.0,0.0,14.316885779445785,0.0,0.0,0.0,0.12307274437858322,0.0410242481261944,0.008636683816040928,-0.042733676320818564,0.5 +2434,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2012-07-02,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0,,,,, +2435,my_land,rural,15.643559626716417,0.1,0.5,20.0,2012-07-02,0.0,0.0,0.0014112418231831416,0.0,0.0,0.0,0.0,0.0,14.294003254310999,0.0,0.0,0.0,0.25844231397095907,0.0861474379903197,0.018136302734804148,0.03727394530391708,0.5 +2436,my_land,urban,0.022000000000000013,0.02,0.082,0.0,2012-07-03,0.0,0.0,3.5483870967741957e-07,0.0,0.0,0.0,0.0,0.0,14.974999999999998,0.0,0.0,0.0,,,,, +2437,my_land,rural,15.750302977655172,0.1,0.8200000000000001,20.0,2012-07-03,0.0,0.0,0.0013705461806084417,0.0,0.0,0.0,0.0,0.0,14.27159312807475,0.0,0.0,0.0,0.4369453624561375,0.14564845415204586,0.03066283245306229,0.1067433509387543,0.5 +2438,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0,,,,, +2439,my_land,rural,15.707355866608108,0.1,0.29,20.0,2012-07-04,0.0,0.0,0.0013613659974551395,0.0,0.0,0.0,0.0,0.0,14.411096425922032,0.0,0.0,0.0,0.1659748166210342,0.055324938873678065,0.011647355552353278,-0.04294711104706555,0.5 +2440,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-07-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0,,,,, +2441,my_land,rural,15.633461249399831,0.1,0.12,20.0,2012-07-05,0.0,0.0,0.0013635857820031765,0.0,0.0,0.0,0.0,0.0,14.57203832176613,0.0,0.0,0.0,0.06689991476089764,0.022299971586965884,0.004694730860413871,-0.07389461720827742,0.5 +2442,my_land,urban,0.07299999999999998,0.02,0.133,0.0,2012-07-06,0.0,0.0,1.2920353982300884e-06,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0,,,,, +2443,my_land,rural,15.876643473062336,0.1,1.3299999999999998,20.0,2012-07-06,0.0,0.0,0.0012970010486933294,0.0,0.0,0.0,0.0,0.0,14.745298562195318,0.0,0.0,0.0,0.7031076656404646,0.23436922188015485,0.049340888816874706,0.24318222366250564,0.5 +2444,my_land,urban,0.07599999999999998,0.02,0.063,0.0,2012-07-07,0.0,0.0,1.5016783643576438e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0,,,,, +2445,my_land,rural,15.868297042680327,0.1,0.63,20.0,2012-07-07,0.0,0.0,0.0012661921624255248,0.0,0.0,0.0,0.0,0.0,14.906827303835536,0.0,0.0,0.0,0.38357183164718023,0.12785727721572673,0.026917321519100368,-0.008346430382007337,0.5 +2446,my_land,urban,0.03299999999999998,0.02,0.016999999999999998,0.0,2012-07-08,0.0,0.0,1.1308956989561946e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0,,,,, +2447,my_land,rural,15.79353416241109,0.1,0.16999999999999998,20.0,2012-07-08,0.0,0.0,0.0012651754439722434,0.0,0.0,0.0,0.0,0.0,15.068326128457846,0.0,0.0,0.0,0.10314355219183179,0.03438118406394393,0.007238144013461879,-0.07476288026923761,0.5 +2448,my_land,urban,0.0,0.02,0.005999999999999999,0.0,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0,,,,, +2449,my_land,rural,15.751067000023012,0.1,0.06,20.0,2012-07-09,0.0,0.0,0.0012751754439722434,0.0,0.0,0.0,0.0,0.0,15.23264791105723,0.0,0.0,0.0,0.0,0.0,0.0024671623880786293,-0.0893432477615726,0.5 +2450,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0,,,,, +2451,my_land,rural,15.698198366055603,0.1,0.24,20.0,2012-07-10,0.0,0.0,0.001270348276265271,0.0,0.0,0.0,0.0,0.0,15.398951757976619,0.0,0.0,0.0,0.13741890170177756,0.04580630056725919,0.009643431698370357,-0.052868633967407166,0.5 +2452,my_land,urban,0.0040000000000000036,0.02,0.064,0.0,2012-07-11,0.0,0.0,9.090909090909091e-08,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0,,,,, +2453,my_land,rural,15.740425917204995,0.1,0.64,20.0,2012-07-11,0.0,0.0,0.001243005130319773,0.0,0.0,0.0,0.0,0.0,15.324908672439957,0.0,0.0,0.0,0.35466286980605866,0.11822095660201953,0.02488862244253043,0.042227551149391376,0.5 +2454,my_land,urban,0.11400000000000002,0.02,0.17,0.0,2012-07-12,0.0,0.0,8.075560802833531e-07,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0,,,,, +2455,my_land,rural,15.98272886351376,0.1,1.7000000000000002,20.0,2012-07-12,0.0,0.0,0.0011594380460689141,0.0,0.0,0.0,0.0,0.0,15.223838047126973,0.0,0.0,0.0,0.9673591507550049,0.3224530502516683,0.06788485268456176,0.242302946308765,0.5 +2456,my_land,urban,0.11200000000000002,0.02,0.057999999999999996,0.0,2012-07-13,0.0,0.0,1.3318834275772077e-06,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0,,,,, +2457,my_land,rural,15.947747730088427,0.1,0.58,20.0,2012-07-13,0.0,0.0,0.0011346307633054867,0.0,0.0,0.0,0.0,0.0,15.108570093342765,0.0,0.0,0.0,0.3669240575655507,0.12230801918851689,0.025749056671266715,-0.03498113342533431,0.5 +2458,my_land,urban,0.086,0.02,0.033999999999999996,0.0,2012-07-14,0.0,0.0,1.5916029743780943e-06,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0,,,,, +2459,my_land,rural,15.889314245243174,0.1,0.33999999999999997,20.0,2012-07-14,0.0,0.0,0.001124565232454166,0.0,0.0,0.0,0.0,0.0,14.996038590767698,0.0,0.0,0.0,0.21263385795224407,0.07087795265074803,0.014921674242262744,-0.05843348484525488,0.5 +2460,my_land,urban,0.04699999999999999,0.02,0.020999999999999998,0.0,2012-07-15,0.0,0.0,1.4000613769628783e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0,,,,, +2461,my_land,rural,15.818939495749705,0.1,0.21,20.0,2012-07-15,0.0,0.0,0.0011224069472296015,0.0,0.0,0.0,0.0,0.0,14.884419084171702,0.0,0.0,0.0,0.12851700901409624,0.04283900300469874,0.009018737474673421,-0.07037474949346842,0.5 +2462,my_land,urban,0.006999999999999992,0.02,0.02,0.0,2012-07-16,0.0,0.0,3.574559497604282e-07,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0,,,,, +2463,my_land,rural,15.752373968209362,0.1,0.2,20.0,2012-07-16,0.0,0.0,0.0011211447172588455,0.0,0.0,0.0,0.0,0.0,14.773531742889665,0.0,0.0,0.0,0.11867793837249485,0.039559312790831615,0.008328276377017184,-0.06656552754034366,0.5 +2464,my_land,urban,0.0,0.02,0.016,0.0,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0,,,,, +2465,my_land,rural,15.683698362116541,0.1,0.16,20.0,2012-07-17,0.0,0.0,0.0011223965381676588,0.0,0.0,0.0,0.0,0.0,14.975267190475078,0.0,0.0,0.0,0.09168136934113523,0.030560456447045074,0.006433780304641069,-0.06867560609282136,0.5 +2466,my_land,urban,0.0,0.02,0.032,0.0,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2467,my_land,rural,15.65724584357956,0.1,0.32,20.0,2012-07-18,0.0,0.0,0.0011157127793619626,0.0,0.0,0.0,0.0,0.0,15.217536567625066,0.0,0.0,0.0,0.1755974194575998,0.058532473152533265,0.01232262592684911,-0.026452518536982175,0.5 +2468,my_land,urban,0.0,0.0,0.0,0.0,2012-07-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2469,my_land,rural,15.55724584357956,0.1,0.0,20.0,2012-07-19,0.0,0.0,0.0011257127793619626,0.0,0.0,0.0,0.0,0.0,15.461567070953134,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2470,my_land,urban,0.0,0.002,0.002,0.0,2012-07-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2471,my_land,rural,15.476552620564744,0.1,0.02,20.0,2012-07-20,0.0,0.0,0.0011357127793619626,0.0,0.0,0.0,0.0,0.0,15.707695883869143,0.0,0.0,0.0,0.0,0.0,0.0006932230148152763,-0.09386446029630553,0.5 +2472,my_land,urban,0.0,0.0,0.0,0.0,2012-07-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2473,my_land,rural,15.376552620564745,0.1,0.0,20.0,2012-07-21,0.0,0.0,0.0011457127793619627,0.0,0.0,0.0,0.0,0.0,15.954086985483645,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2474,my_land,urban,0.0,0.0,0.0,0.0,2012-07-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2475,my_land,rural,15.276552620564745,0.1,0.0,20.0,2012-07-22,0.0,0.0,0.0011557127793619627,0.0,0.0,0.0,0.0,0.0,16.200510873185454,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2476,my_land,urban,0.0,0.0,0.0,0.0,2012-07-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2477,my_land,rural,15.176552620564745,0.1,0.0,20.0,2012-07-23,0.0,0.0,0.0011657127793619627,0.0,0.0,0.0,0.0,0.0,16.446938859148183,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2478,my_land,urban,0.0,0.0,0.0,0.0,2012-07-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2479,my_land,rural,15.076552620564746,0.1,0.0,20.0,2012-07-24,0.0,0.0,0.0011757127793619628,0.0,0.0,0.0,0.0,0.0,16.693367357393527,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2480,my_land,urban,0.0,0.0,0.0,0.0,2012-07-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2481,my_land,rural,14.976552620564746,0.1,0.0,20.0,2012-07-25,0.0,0.0,0.0011857127793619628,0.0,0.0,0.0,0.0,0.0,16.46970663717419,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2482,my_land,urban,0.0,0.0,0.0,0.0,2012-07-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2483,my_land,rural,14.876552620564746,0.1,0.0,20.0,2012-07-26,0.0,0.0,0.0011957127793619628,0.0,0.0,0.0,0.0,0.0,16.187284757146774,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2484,my_land,urban,0.0,0.0,0.0,0.0,2012-07-27,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2485,my_land,rural,14.776552620564747,0.1,0.0,20.0,2012-07-27,0.0,0.0,0.0012057127793619628,0.0,0.0,0.0,0.0,0.0,15.897517739643348,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2486,my_land,urban,0.0,0.001,0.001,0.0,2012-07-28,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, +2487,my_land,rural,14.686552620564747,0.1,0.01,20.0,2012-07-28,0.0,0.0,0.0012157127793619629,0.0,0.0,0.0,0.0,0.0,15.606832572455419,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +2488,my_land,urban,0.0,0.02,0.023,0.0,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0,,,,, +2489,my_land,rural,14.816552620564748,0.1,0.22999999999999998,20.0,2012-07-29,0.0,0.0,0.0012257127793619629,0.0,0.0,0.0,0.0,0.0,15.316632277903114,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 +2490,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0,,,,, +2491,my_land,rural,15.266552620564747,0.1,0.5499999999999999,20.0,2012-07-30,0.0,0.0,0.001235712779361963,0.0,0.0,0.0,0.0,0.0,15.027126933919483,0.0,0.0,0.0,0.0,0.0,0.0,0.44999999999999996,0.5 +2492,my_land,urban,0.0,0.014,0.014,0.0,2012-07-31,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0,,,,, +2493,my_land,rural,15.247500136822254,0.1,0.13999999999999999,20.0,2012-07-31,0.0,0.0,0.0012411462517485205,0.0,0.0,0.0,0.0,0.0,14.734776394669634,0.0,0.0,0.0,0.042074894666526974,0.014024964888842325,0.0029526241871247,-0.019052483742494002,0.5 +2494,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-08-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0,,,,, +2495,my_land,rural,15.21972759525849,0.1,0.12,20.0,2012-08-01,0.0,0.0,0.0012474265334574317,0.0,0.0,0.0,0.0,0.0,14.714278316683941,0.0,0.0,0.0,0.03403793586418121,0.011345978621393736,0.002388627078188155,-0.027772541563763114,0.5 +2496,my_land,urban,0.04800000000000001,0.02,0.10800000000000001,0.0,2012-08-02,0.0,0.0,1.6363636363636365e-06,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0,,,,, +2497,my_land,rural,15.808776693739423,0.1,1.08,20.0,2012-08-02,0.0,0.0,0.0012285632925319112,0.0,0.0,0.0,0.0,0.0,14.733640180626388,0.0,0.0,0.0,0.27855251733233505,0.09285083911077835,0.01954754507595334,0.5890490984809332,0.5 +2498,my_land,urban,0.0,0.02,0.011000000000000001,0.0,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0,,,,, +2499,my_land,rural,15.727617550430187,0.1,0.11,20.0,2012-08-03,0.0,0.0,0.0012317807222365265,0.0,0.0,0.0,0.0,0.0,14.746203960263873,0.0,0.0,0.0,0.06495088960783066,0.021650296535943553,0.004557957165461801,-0.08115914330923601,0.5 +2500,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2012-08-04,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0,,,,, +2501,my_land,rural,15.731363508263547,0.1,0.5,20.0,2012-08-04,0.0,0.0,0.0012127601571415877,0.0,0.0,0.0,0.0,0.0,14.766214290453,0.0,0.0,0.0,0.28233100504373226,0.09411033501457741,0.019812702108332088,0.0037459578333582516,0.5 +2502,my_land,urban,0.017000000000000008,0.02,0.077,0.0,2012-08-05,0.0,0.0,2.9824561403508795e-07,0.0,0.0,0.0,0.0,0.0,15.582142859999996,0.0,0.0,0.0,,,,, +2503,my_land,rural,15.789736969902348,0.1,0.77,20.0,2012-08-05,0.0,0.0,0.001179360952010133,0.0,0.0,0.0,0.0,0.0,14.786367552534141,0.0,0.0,0.0,0.43578390858235344,0.1452613028607845,0.030581326918059898,0.05837346163880212,0.5 +2504,my_land,urban,0.0,0.02,0.03,0.0,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0,,,,, +2505,my_land,rural,15.743503684198638,0.1,0.3,20.0,2012-08-06,0.0,0.0,0.001171947805835181,0.0,0.0,0.0,0.0,0.0,14.802174488032504,0.0,0.0,0.0,0.175441216063894,0.05848040535463133,0.012311664285185542,-0.04623328570371086,0.5 +2506,my_land,urban,0.0,0.02,0.025,0.0,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, +2507,my_land,rural,15.693479809702577,0.1,0.25,20.0,2012-08-07,0.0,0.0,0.0011678075435894194,0.0,0.0,0.0,0.0,0.0,14.819928369471864,0.0,0.0,0.0,0.1425170105784427,0.047505670192814244,0.010001193724803,-0.05002387449605998,0.5 +2508,my_land,urban,0.0,0.0,0.0,0.0,2012-08-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, +2509,my_land,rural,15.593479809702577,0.1,0.0,20.0,2012-08-08,0.0,0.0,0.0011778075435894195,0.0,0.0,0.0,0.0,0.0,14.981955328683986,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2510,my_land,urban,0.0,0.0,0.0,0.0,2012-08-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, +2511,my_land,rural,15.493479809702578,0.1,0.0,20.0,2012-08-09,0.0,0.0,0.0011878075435894195,0.0,0.0,0.0,0.0,0.0,15.1629229885855,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2512,my_land,urban,0.0,0.0,0.0,0.0,2012-08-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, +2513,my_land,rural,15.393479809702578,0.1,0.0,20.0,2012-08-10,0.0,0.0,0.0011978075435894195,0.0,0.0,0.0,0.0,0.0,15.34625822857319,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2514,my_land,urban,0.0,0.001,0.001,0.0,2012-08-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, +2515,my_land,rural,15.303200102222608,0.1,0.01,20.0,2012-08-11,0.0,0.0,0.0012078075435894195,0.0,0.0,0.0,0.0,0.0,15.52988942357165,0.0,0.0,0.0,0.0,0.0,0.00027970747996949625,-0.09559414959938993,0.5 +2516,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0,,,,, +2517,my_land,rural,15.33159027329383,0.1,0.24,20.0,2012-08-12,0.0,0.0,0.0012094433442968262,0.0,0.0,0.0,0.0,0.0,15.714827276732613,0.0,0.0,0.0,0.07952200311175303,0.026507334370584345,0.00558049144643881,0.02839017107122378,0.5 +2518,my_land,urban,0.0,0.02,0.028,0.0,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0,,,,, +2519,my_land,rural,15.372567070719185,0.1,0.27999999999999997,20.0,2012-08-13,0.0,0.0,0.001209055848531665,0.0,0.0,0.0,0.0,0.0,15.899057554027804,0.0,0.0,0.0,0.09905403183443416,0.03301801061147805,0.0069511601287322216,0.04097679742535558,0.5 +2520,my_land,urban,0.0,0.001,0.001,0.0,2012-08-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0,,,,, +2521,my_land,rural,15.282297570909538,0.1,0.01,20.0,2012-08-14,0.0,0.0,0.001219055848531665,0.0,0.0,0.0,0.0,0.0,16.081132194253478,0.0,0.0,0.0,0.0,0.0,0.00026949980964756354,-0.09538999619295126,0.5 +2522,my_land,urban,0.09800000000000002,0.02,0.15800000000000003,0.0,2012-08-15,0.0,0.0,1.4202898550724638e-06,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0,,,,, +2523,my_land,rural,16.065911360482318,0.1,1.58,20.0,2012-08-15,0.0,0.0,0.0011804470472008785,0.0,0.0,0.0,0.0,0.0,16.21298179716408,0.0,0.0,0.0,0.4961751749293957,0.16539172497646526,0.03481931052136111,0.783613789572778,0.5 +2524,my_land,urban,0.067,0.02,0.028999999999999998,0.0,2012-08-16,0.0,0.0,1.515508600839767e-06,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0,,,,, +2525,my_land,rural,15.992283135557424,0.1,0.29,20.0,2012-08-16,0.0,0.0,0.0011720915324101744,0.0,0.0,0.0,0.0,0.0,16.314820807635943,0.0,0.0,0.0,0.18783511025898544,0.06261170341966181,0.013181411246244595,-0.07362822492489188,0.5 +2526,my_land,urban,0.03400000000000001,0.02,0.027000000000000003,0.0,2012-08-17,0.0,0.0,1.1557742220074606e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2527,my_land,rural,15.921838345020719,0.1,0.27,20.0,2012-08-17,0.0,0.0,0.0011653725230332634,0.0,0.0,0.0,0.0,0.0,16.423850559338128,0.0,0.0,0.0,0.171316913257401,0.057105637752467,0.012022239526835158,-0.07044479053670313,0.5 +2528,my_land,urban,0.0,0.02,0.0,0.0,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2529,my_land,rural,15.82183834502072,0.1,0.0,20.0,2012-08-18,0.0,0.0,0.0011753725230332634,0.0,0.0,0.0,0.0,0.0,16.532445602417265,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2530,my_land,urban,0.0,0.004,0.004,0.0,2012-08-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2531,my_land,rural,15.760170378856454,0.1,0.04,20.0,2012-08-19,0.0,0.0,0.0011853725230332635,0.0,0.0,0.0,0.0,0.0,16.642448555302156,0.0,0.0,0.0,0.0,0.0,0.0016679661642647185,-0.09335932328529438,0.5 +2532,my_land,urban,0.0,0.0,0.0,0.0,2012-08-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2533,my_land,rural,15.660170378856455,0.1,0.0,20.0,2012-08-20,0.0,0.0,0.0011953725230332635,0.0,0.0,0.0,0.0,0.0,16.752627496912773,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2534,my_land,urban,0.0,0.019,0.019,0.0,2012-08-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2535,my_land,rural,15.606278811005133,0.1,0.19,20.0,2012-08-21,0.0,0.0,0.0011949062174781157,0.0,0.0,0.0,0.0,0.0,16.863664995453632,0.0,0.0,0.0,0.10252274209406612,0.0341742473646887,0.007194578392566043,-0.053891567851320855,0.5 +2536,my_land,urban,0.0,0.002,0.002,0.0,2012-08-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2537,my_land,rural,15.525553363188848,0.1,0.02,20.0,2012-08-22,0.0,0.0,0.0012049062174781158,0.0,0.0,0.0,0.0,0.0,16.654386696931702,0.0,0.0,0.0,0.0,0.0,0.0007254478162839054,-0.09450895632567811,0.5 +2538,my_land,urban,0.0,0.0,0.0,0.0,2012-08-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, +2539,my_land,rural,15.425553363188849,0.1,0.0,20.0,2012-08-23,0.0,0.0,0.0012149062174781158,0.0,0.0,0.0,0.0,0.0,16.405905482116463,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2540,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2012-08-24,0.0,0.0,-1.6940658945086007e-21,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0,,,,, +2541,my_land,rural,15.518653895763977,0.1,0.47000000000000003,20.0,2012-08-24,0.0,0.0,0.0012044890942273943,0.0,0.0,0.0,0.0,0.0,16.154582655443495,0.0,0.0,0.0,0.1972908705402226,0.06576362351340753,0.01384497337124369,0.09310053257512622,0.5 +2542,my_land,urban,0.026999999999999982,0.02,0.087,0.0,2012-08-25,0.0,0.0,4.029850746268648e-07,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0,,,,, +2543,my_land,rural,15.709661325100651,0.1,0.8699999999999999,20.0,2012-08-25,0.0,0.0,0.0011734046351502307,0.0,0.0,0.0,0.0,0.0,15.902687857677241,0.0,0.0,0.0,0.4125322065976187,0.13751073553253956,0.028949628533166225,0.19100742933667547,0.5 +2544,my_land,urban,0.0,0.02,0.0,0.0,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0,,,,, +2545,my_land,rural,15.609661325100651,0.1,0.0,20.0,2012-08-26,0.0,0.0,0.0011834046351502307,0.0,0.0,0.0,0.0,0.0,15.644978837209656,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2546,my_land,urban,0.049999999999999996,0.02,0.10999999999999999,0.0,2012-08-27,0.0,0.0,5.555555555555555e-07,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0,,,,, +2547,my_land,rural,15.809351755909136,0.1,1.0999999999999999,20.0,2012-08-27,0.0,0.0,0.0011386455594068732,0.0,0.0,0.0,0.0,0.0,15.394799506160844,0.0,0.0,0.0,0.5702205680489553,0.19007352268298508,0.040015478459575815,0.19969043080848362,0.5 +2548,my_land,urban,0.022,0.02,0.032,0.0,2012-08-28,0.0,0.0,5.519713261648747e-07,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0,,,,, +2549,my_land,rural,15.764086364801864,0.1,0.32,20.0,2012-08-28,0.0,0.0,0.0011305724126377142,0.0,0.0,0.0,0.0,0.0,15.137745758861188,0.0,0.0,0.0,0.18900159116393198,0.06300053038797732,0.013263269555363649,-0.04526539110727293,0.5 +2550,my_land,urban,0.10199999999999998,0.02,0.14,0.0,2012-08-29,0.0,0.0,1.1147963047099803e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2551,my_land,rural,15.930710193486467,0.1,1.4000000000000001,20.0,2012-08-29,0.0,0.0,0.001068364935495728,0.0,0.0,0.0,0.0,0.0,15.104007097781501,0.0,0.0,0.0,0.807530522062221,0.269176840687407,0.05666880856576989,0.1666238286846023,0.5 +2552,my_land,urban,0.057999999999999975,0.02,0.016,0.0,2012-08-30,0.0,0.0,1.2516141395222328e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2553,my_land,rural,15.851109065095484,0.1,0.16,20.0,2012-08-30,0.0,0.0,0.001069417467508253,0.0,0.0,0.0,0.0,0.0,15.08477135703012,0.0,0.0,0.0,0.09946580397857442,0.03315526799285814,0.006980056419549084,-0.07960112839098166,0.5 +2554,my_land,urban,0.0,0.02,0.0,0.0,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2555,my_land,rural,15.751109065095484,0.1,0.0,20.0,2012-08-31,0.0,0.0,0.001079417467508253,0.0,0.0,0.0,0.0,0.0,15.073989274628767,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2556,my_land,urban,0.0,0.001,0.001,0.0,2012-09-01,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2557,my_land,rural,15.660707245720827,0.1,0.01,20.0,2012-09-01,0.0,0.0,0.001089417467508253,0.0,0.0,0.0,0.0,0.0,15.064605804328595,0.0,0.0,0.0,0.0,0.0,0.00040181937465686725,-0.09803638749313734,0.5 +2558,my_land,urban,0.0,0.001,0.001,0.0,2012-09-02,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2559,my_land,rural,15.570328433680247,0.1,0.01,20.0,2012-09-02,0.0,0.0,0.0010994174675082531,0.0,0.0,0.0,0.0,0.0,15.055397153041076,0.0,0.0,0.0,0.0,0.0,0.00037881204058066363,-0.09757624081161327,0.5 +2560,my_land,urban,0.0,0.0,0.0,0.0,2012-09-03,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2561,my_land,rural,15.470328433680248,0.1,0.0,20.0,2012-09-03,0.0,0.0,0.0011094174675082532,0.0,0.0,0.0,0.0,0.0,15.046210361630136,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2562,my_land,urban,0.0,0.0,0.0,0.0,2012-09-04,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2563,my_land,rural,15.370328433680248,0.1,0.0,20.0,2012-09-04,0.0,0.0,0.0011194174675082532,0.0,0.0,0.0,0.0,0.0,15.03702629520377,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2564,my_land,urban,0.0,0.0,0.0,0.0,2012-09-05,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2565,my_land,rural,15.270328433680248,0.1,0.0,20.0,2012-09-05,0.0,0.0,0.0011294174675082532,0.0,0.0,0.0,0.0,0.0,14.963556859400471,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2566,my_land,urban,0.0,0.0,0.0,0.0,2012-09-06,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2567,my_land,rural,15.170328433680249,0.1,0.0,20.0,2012-09-06,0.0,0.0,0.0011394174675082532,0.0,0.0,0.0,0.0,0.0,14.88205175242506,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2568,my_land,urban,0.0,0.0,0.0,0.0,2012-09-07,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2569,my_land,rural,15.070328433680249,0.1,0.0,20.0,2012-09-07,0.0,0.0,0.0011494174675082533,0.0,0.0,0.0,0.0,0.0,14.799542186553133,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2570,my_land,urban,0.0,0.0,0.0,0.0,2012-09-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2571,my_land,rural,14.97032843368025,0.1,0.0,20.0,2012-09-08,0.0,0.0,0.0011594174675082533,0.0,0.0,0.0,0.0,0.0,14.716907055819142,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2572,my_land,urban,0.0,0.01,0.01,0.0,2012-09-09,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2573,my_land,rural,14.97032843368025,0.1,0.1,20.0,2012-09-09,0.0,0.0,0.0011694174675082533,0.0,0.0,0.0,0.0,0.0,14.634256236977393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 +2574,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-09-10,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2575,my_land,rural,15.04032843368025,0.1,0.16999999999999998,20.0,2012-09-10,0.0,0.0,0.0011794174675082533,0.0,0.0,0.0,0.0,0.0,14.551988688597636,0.0,0.0,0.0,0.0,0.0,0.0,0.06999999999999999,0.5 +2576,my_land,urban,0.0,0.0,0.0,0.0,2012-09-11,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2577,my_land,rural,14.94032843368025,0.1,0.0,20.0,2012-09-11,0.0,0.0,0.0011894174675082534,0.0,0.0,0.0,0.0,0.0,14.468998586074704,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2578,my_land,urban,0.0,0.02,0.02,0.0,2012-09-12,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2579,my_land,rural,15.04032843368025,0.1,0.2,20.0,2012-09-12,0.0,0.0,0.0011994174675082534,0.0,0.0,0.0,0.0,0.0,14.311747678647079,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 +2580,my_land,urban,0.0,0.0,0.0,0.0,2012-09-13,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2581,my_land,rural,14.94032843368025,0.1,0.0,20.0,2012-09-13,0.0,0.0,0.0012094174675082534,0.0,0.0,0.0,0.0,0.0,14.144325604830886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2582,my_land,urban,0.0,0.0,0.0,0.0,2012-09-14,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2583,my_land,rural,14.84032843368025,0.1,0.0,20.0,2012-09-14,0.0,0.0,0.0012194174675082534,0.0,0.0,0.0,0.0,0.0,13.976076418103863,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2584,my_land,urban,0.0,0.002,0.002,0.0,2012-09-15,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2585,my_land,rural,14.76032843368025,0.1,0.02,20.0,2012-09-15,0.0,0.0,0.0012294174675082535,0.0,0.0,0.0,0.0,0.0,13.807723834762985,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2586,my_land,urban,0.0,0.002,0.002,0.0,2012-09-16,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2587,my_land,rural,14.68032843368025,0.1,0.02,20.0,2012-09-16,0.0,0.0,0.0012394174675082535,0.0,0.0,0.0,0.0,0.0,13.639358334345374,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 +2588,my_land,urban,0.0,0.001,0.001,0.0,2012-09-17,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2589,my_land,rural,14.59032843368025,0.1,0.01,20.0,2012-09-17,0.0,0.0,0.0012494174675082535,0.0,0.0,0.0,0.0,0.0,13.470991219293172,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 +2590,my_land,urban,0.0,0.0,0.0,0.0,2012-09-18,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2591,my_land,rural,14.49032843368025,0.1,0.0,20.0,2012-09-18,0.0,0.0,0.0012594174675082536,0.0,0.0,0.0,0.0,0.0,13.302623902411646,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2592,my_land,urban,0.0,0.0,0.0,0.0,2012-09-19,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2593,my_land,rural,14.390328433680251,0.1,0.0,20.0,2012-09-19,0.0,0.0,0.0012694174675082536,0.0,0.0,0.0,0.0,0.0,13.022202990301455,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2594,my_land,urban,0.0,0.0,0.0,0.0,2012-09-20,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2595,my_land,rural,14.290328433680251,0.1,0.0,20.0,2012-09-20,0.0,0.0,0.0012794174675082536,0.0,0.0,0.0,0.0,0.0,12.727775371287683,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2596,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-09-21,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2597,my_land,rural,14.310328433680251,0.1,0.12,20.0,2012-09-21,0.0,0.0,0.0012894174675082536,0.0,0.0,0.0,0.0,0.0,12.431607355243594,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 +2598,my_land,urban,0.0,0.0,0.0,0.0,2012-09-22,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, +2599,my_land,rural,14.210328433680251,0.1,0.0,20.0,2012-09-22,0.0,0.0,0.0012994174675082537,0.0,0.0,0.0,0.0,0.0,12.13520092190545,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2600,my_land,urban,0.296,0.02,0.356,0.0,2012-09-23,0.0,0.0,2.0261904761904768e-05,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0,,,,, +2601,my_land,rural,17.67032843368025,0.1,3.56,20.0,2012-09-23,0.0,0.0,0.0013094174675082537,0.0,0.0,0.0,0.0,0.0,11.837811549238896,0.0,0.0,0.0,0.0,0.0,0.0,3.46,0.5 +2602,my_land,urban,0.311,0.02,0.075,0.0,2012-09-24,0.0,0.0,1.883889567222901e-05,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0,,,,, +2603,my_land,rural,17.570690100120395,0.1,0.75,20.0,2012-09-24,0.0,0.0,0.001268023303303123,0.0,0.0,0.0,0.0,0.0,11.541858707141682,0.0,0.0,0.0,0.5341173126613961,0.17803910422046534,0.037481916677992715,-0.09963833355985428,0.5 +2604,my_land,urban,0.279,0.02,0.028,0.0,2012-09-25,0.0,0.0,1.7351259851259854e-05,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0,,,,, +2605,my_land,rural,17.470895352021323,0.1,0.27999999999999997,20.0,2012-09-25,0.0,0.0,0.0012588706429517127,0.0,0.0,0.0,0.0,0.0,11.577910101357297,0.0,0.0,0.0,0.19935375802058933,0.06645125267352978,0.013989737404953637,-0.09979474809907277,0.5 +2606,my_land,urban,0.333,0.02,0.114,0.0,2012-09-26,0.0,0.0,1.6383296328336545e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, +2607,my_land,rural,17.37214524493338,0.1,1.1400000000000001,20.0,2012-09-26,0.0,0.0,0.0011944865859965358,0.0,0.0,0.0,0.0,0.0,11.656811758599337,0.0,0.0,0.0,0.8113594513001563,0.27045315043338547,0.05693750535439695,-0.09875010708793891,0.5 +2608,my_land,urban,0.279,0.02,0.005999999999999999,0.0,2012-09-27,0.0,0.0,1.5203572650802183e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, +2609,my_land,rural,17.329150069238715,0.1,0.06,20.0,2012-09-27,0.0,0.0,0.0012044865859965359,0.0,0.0,0.0,0.0,0.0,11.736565752324918,0.0,0.0,0.0,0.0,0.0,0.0029951756946676087,-0.0999035138933522,0.5 +2610,my_land,urban,0.22,0.02,0.001,0.0,2012-09-28,0.0,0.0,1.3710715319909538e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, +2611,my_land,rural,17.238651014963622,0.1,0.01,20.0,2012-09-28,0.0,0.0,0.0012144865859965359,0.0,0.0,0.0,0.0,0.0,11.818856436540615,0.0,0.0,0.0,0.0,0.0,0.000499054275091928,-0.09998108550183855,0.5 +2612,my_land,urban,0.16,0.02,0.0,0.0,2012-09-29,0.0,0.0,1.1768572255927632e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, +2613,my_land,rural,17.13865101496362,0.1,0.0,20.0,2012-09-29,0.0,0.0,0.001224486585996536,0.0,0.0,0.0,0.0,0.0,11.901464199567576,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2614,my_land,urban,0.11599999999999999,0.02,0.016,0.0,2012-09-30,0.0,0.0,9.494579369792341e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, +2615,my_land,rural,17.03925375249888,0.1,0.16,20.0,2012-09-30,0.0,0.0,0.0012236123750453652,0.0,0.0,0.0,0.0,0.0,11.984273185339587,0.0,0.0,0.0,0.11357054950612812,0.037856849835376044,0.00796986312323706,-0.0993972624647412,0.5 +2616,my_land,urban,0.064,0.02,0.008,0.0,2012-10-01,0.0,0.0,6.45820268910298e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, +2617,my_land,rural,17.01527495425444,0.1,0.08,20.0,2012-10-01,0.0,0.0,0.0012336123750453652,0.0,0.0,0.0,0.0,0.0,12.06678414816745,0.0,0.0,0.0,0.0,0.0,0.003978798244437572,-0.09957596488875144,0.5 +2618,my_land,urban,0.054,0.02,0.05,0.0,2012-10-02,0.0,0.0,4.284499417144265e-06,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0,,,,, +2619,my_land,rural,16.91814780629968,0.1,0.5,20.0,2012-10-02,0.0,0.0,0.0012098396515057876,0.0,0.0,0.0,0.0,0.0,11.927524644759421,0.0,0.0,0.0,0.3542030929177668,0.11806769763925559,0.02485635739773802,-0.0971271479547604,0.5 +2620,my_land,urban,0.028000000000000004,0.02,0.033999999999999996,0.0,2012-10-03,0.0,0.0,2.1759703482358737e-06,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0,,,,, +2621,my_land,rural,16.82083870242864,0.1,0.33999999999999997,20.0,2012-10-03,0.0,0.0,0.0011970356476557044,0.0,0.0,0.0,0.0,0.0,11.759849189783086,0.0,0.0,0.0,0.24033273650811512,0.08011091216937172,0.01686545519355194,-0.09730910387103883,0.5 +2622,my_land,urban,0.10599999999999998,0.02,0.138,0.0,2012-10-04,0.0,0.0,2.305841485705497e-06,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0,,,,, +2623,my_land,rural,16.73574276519769,0.1,1.38,20.0,2012-10-04,0.0,0.0,0.0011202298136182933,0.0,0.0,0.0,0.0,0.0,11.589278395460891,0.0,0.0,0.0,0.9726308552770546,0.32421028509235156,0.0682547968615477,-0.0850959372309541,0.5 +2624,my_land,urban,0.19799999999999998,0.02,0.152,0.0,2012-10-05,0.0,0.0,2.7502378746625567e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0,,,,, +2625,my_land,rural,16.657121760803605,0.1,1.52,20.0,2012-10-05,0.0,0.0,0.0010412350905426814,0.0,0.0,0.0,0.0,0.0,11.417741974930728,0.0,0.0,0.0,1.0677674656307847,0.35592248854359493,0.07493105021970421,-0.07862100439408395,0.5 +2626,my_land,urban,0.13799999999999998,0.02,0.0,0.0,2012-10-06,0.0,0.0,2.907487790468724e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0,,,,, +2627,my_land,rural,16.557121760803604,0.1,0.0,20.0,2012-10-06,0.0,0.0,0.0010512350905426814,0.0,0.0,0.0,0.0,0.0,11.245967746866341,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2628,my_land,urban,0.08799999999999997,0.02,0.01,0.0,2012-10-07,0.0,0.0,2.6863978559472473e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, +2629,my_land,rural,16.552241569018726,0.1,0.1,20.0,2012-10-07,0.0,0.0,0.0010612350905426814,0.0,0.0,0.0,0.0,0.0,11.074495968358292,0.0,0.0,0.0,0.0,0.0,0.004880191784877407,-0.09760383569754813,0.5 +2630,my_land,urban,0.04099999999999996,0.02,0.013,0.0,2012-10-08,0.0,0.0,1.8659544702942849e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, +2631,my_land,rural,16.455401019845127,0.1,0.13,20.0,2012-10-08,0.0,0.0,0.0010634477457596187,0.0,0.0,0.0,0.0,0.0,10.903053165647247,0.0,0.0,0.0,0.09037389128618814,0.030124630428729378,0.00634202745867987,-0.09684054917359741,0.5 +2632,my_land,urban,0.0,0.02,0.0,0.0,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, +2633,my_land,rural,16.355401019845125,0.1,0.0,20.0,2012-10-09,0.0,0.0,0.0010734477457596187,0.0,0.0,0.0,0.0,0.0,10.776162895705907,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2634,my_land,urban,0.0,0.002,0.002,0.0,2012-10-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, +2635,my_land,rural,16.274443364388087,0.1,0.02,20.0,2012-10-10,0.0,0.0,0.0010834477457596187,0.0,0.0,0.0,0.0,0.0,10.65483286196324,0.0,0.0,0.0,0.0,0.0,0.0009576554570385828,-0.09915310914077166,0.5 +2636,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2012-10-11,0.0,0.0,8.732394366197184e-07,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, +2637,my_land,rural,16.222444669752804,0.1,0.91,20.0,2012-10-11,0.0,0.0,0.0010409035900292916,0.0,0.0,0.0,0.0,0.0,10.53390698599813,0.0,0.0,0.0,0.6141740699276376,0.20472468997587917,0.043099934731764045,-0.05199869463528087,0.5 +2638,my_land,urban,0.0,0.02,0.004,0.0,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, +2639,my_land,rural,16.160565851802634,0.1,0.04,20.0,2012-10-12,0.0,0.0,0.0010509035900292917,0.0,0.0,0.0,0.0,0.0,10.413613373249767,0.0,0.0,0.0,0.0,0.0,0.0018788179501686465,-0.09757635900337293,0.5 +2640,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-10-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, +2641,my_land,rural,16.06911954038837,0.1,0.12,20.0,2012-10-13,0.0,0.0,0.0010539594078242376,0.0,0.0,0.0,0.0,0.0,10.293097693118137,0.0,0.0,0.0,0.07940549688266141,0.026468498960887137,0.005572315570713082,-0.09144631141426166,0.5 +2642,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-10-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, +2643,my_land,rural,15.997754837829968,0.1,0.03,20.0,2012-10-14,0.0,0.0,0.0010639594078242377,0.0,0.0,0.0,0.0,0.0,10.172574711639767,0.0,0.0,0.0,0.0,0.0,0.0013647025584030159,-0.09729405116806034,0.5 +2644,my_land,urban,0.0,0.02,0.038,0.0,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0,,,,, +2645,my_land,rural,15.938786625295846,0.1,0.38,20.0,2012-10-15,0.0,0.0,0.001052691323900331,0.0,0.0,0.0,0.0,0.0,10.05177376961302,0.0,0.0,0.0,0.24151485143056026,0.08050495047685342,0.016948410626705983,-0.058968212534119685,0.5 +2646,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2012-10-16,0.0,0.0,4.366197183098592e-07,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0,,,,, +2647,my_land,rural,15.952523011898677,0.1,0.91,20.0,2012-10-16,0.0,0.0,0.0010145810486351255,0.0,0.0,0.0,0.0,0.0,9.930597234827111,0.0,0.0,0.0,0.5673378245454832,0.1891126081818277,0.03981318066985847,0.013736386602830608,0.5 +2648,my_land,urban,0.063,0.02,0.092,0.0,2012-10-17,0.0,0.0,8.787091480924382e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, +2649,my_land,rural,15.963678693612682,0.1,0.9199999999999999,20.0,2012-10-17,0.0,0.0,0.0009775283095633436,0.0,0.0,0.0,0.0,0.0,10.121298641584865,0.0,0.0,0.0,0.5763015767787719,0.19210052559292398,0.040442215914299785,0.01115568171400419,0.5 +2650,my_land,urban,0.005999999999999998,0.02,0.0029999999999999996,0.0,2012-10-18,0.0,0.0,2.4504901931640474e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, +2651,my_land,rural,15.892354992073171,0.1,0.03,20.0,2012-10-18,0.0,0.0,0.0009875283095633436,0.0,0.0,0.0,0.0,0.0,10.347305185198108,0.0,0.0,0.0,0.0,0.0,0.0013237015395099862,-0.09647403079019973,0.5 +2652,my_land,urban,0.0,0.016,0.01,0.0,2012-10-19,0.0,0.0,1.2450490193164047e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, +2653,my_land,rural,15.888055154819108,0.1,0.1,20.0,2012-10-19,0.0,0.0,0.0009975283095633436,0.0,0.0,0.0,0.0,0.0,10.579127430649764,0.0,0.0,0.0,0.0,0.0,0.004299837254062968,-0.08599674508125935,0.5 +2654,my_land,urban,0.0,0.001,0.001,0.0,2012-10-20,0.0,0.0,2.2450490193164046e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, +2655,my_land,rural,15.797625907478425,0.1,0.01,20.0,2012-10-20,0.0,0.0,0.0010075283095633436,0.0,0.0,0.0,0.0,0.0,10.811676646331222,0.0,0.0,0.0,0.0,0.0,0.00042924734068268584,-0.09858494681365372,0.5 +2656,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2657,my_land,rural,15.736322234214606,0.1,0.22,20.0,2012-10-21,0.0,0.0,0.0010065117542502845,0.0,0.0,0.0,0.0,0.0,11.044705020759247,0.0,0.0,0.0,0.12917886720047025,0.04305962240015675,0.009065183663190896,-0.06130367326381788,0.5 +2658,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2012-10-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2659,my_land,rural,15.693932143098063,0.1,0.06,20.0,2012-10-22,0.0,0.0,0.0010165117542502845,0.0,0.0,0.0,0.0,0.0,11.277016700094904,0.0,0.0,0.0,0.0,0.0,0.002390091116542013,-0.08780182233084027,0.5 +2660,my_land,urban,0.0,0.001,0.001,0.0,2012-10-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2661,my_land,rural,15.603544365266039,0.1,0.01,20.0,2012-10-23,0.0,0.0,0.0010265117542502845,0.0,0.0,0.0,0.0,0.0,11.509627087511863,0.0,0.0,0.0,0.0,0.0,0.00038777783202349655,-0.09775555664046993,0.5 +2662,my_land,urban,0.0,0.002,0.002,0.0,2012-10-24,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2663,my_land,rural,15.522820630926889,0.1,0.02,20.0,2012-10-24,0.0,0.0,0.0010365117542502846,0.0,0.0,0.0,0.0,0.0,11.132453383438984,0.0,0.0,0.0,0.0,0.0,0.0007237343391509358,-0.09447468678301872,0.5 +2664,my_land,urban,0.0,0.002,0.002,0.0,2012-10-25,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2665,my_land,rural,15.442152025120777,0.1,0.02,20.0,2012-10-25,0.0,0.0,0.0010465117542502846,0.0,0.0,0.0,0.0,0.0,10.679056675429873,0.0,0.0,0.0,0.0,0.0,0.0006686058061115449,-0.0933721161222309,0.5 +2666,my_land,urban,0.0,0.0,0.0,0.0,2012-10-26,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2667,my_land,rural,15.342152025120777,0.1,0.0,20.0,2012-10-26,0.0,0.0,0.0010565117542502846,0.0,0.0,0.0,0.0,0.0,10.216132084428736,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2668,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2012-10-27,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, +2669,my_land,rural,15.300628664032269,0.1,0.06,20.0,2012-10-27,0.0,0.0,0.0010665117542502846,0.0,0.0,0.0,0.0,0.0,9.752016510303593,0.0,0.0,0.0,0.0,0.0,0.0015233610885080182,-0.07046722177016036,0.5 +2670,my_land,urban,0.0,0.02,0.031,0.0,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0,,,,, +2671,my_land,rural,15.367376146624988,0.1,0.31,20.0,2012-10-28,0.0,0.0,0.0010670621016684993,0.0,0.0,0.0,0.0,0.0,9.28667211498097,0.0,0.0,0.0,0.10206741865268784,0.03402247288422928,0.00716262587036406,0.06674748259271879,0.5 +2672,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0,,,,, +2673,my_land,rural,15.365277713288949,0.1,0.21,20.0,2012-10-29,0.0,0.0,0.0010696485920046867,0.0,0.0,0.0,0.0,0.0,8.822712681640002,0.0,0.0,0.0,0.07987013375192743,0.026623377917309145,0.005604921666801926,-0.0020984333360385236,0.5 +2674,my_land,urban,0.0,0.0,0.0,0.0,2012-10-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0,,,,, +2675,my_land,rural,15.265277713288949,0.1,0.0,20.0,2012-10-30,0.0,0.0,0.0010796485920046867,0.0,0.0,0.0,0.0,0.0,8.519245335205001,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2676,my_land,urban,0.07999999999999999,0.02,0.14,0.0,2012-10-31,0.0,0.0,1.3333333333333332e-06,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0,,,,, +2677,my_land,rural,15.976935761640144,0.1,1.4000000000000001,20.0,2012-10-31,0.0,0.0,0.001052817628414479,0.0,0.0,0.0,0.0,0.0,8.229210438478416,0.0,0.0,0.0,0.41919364054977243,0.1397312135165908,0.029417097582440172,0.7116580483511967,0.5 +2678,my_land,urban,0.05099999999999998,0.02,0.031,0.0,2012-11-01,0.0,0.0,1.3076923076923073e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0,,,,, +2679,my_land,rural,15.912191622441014,0.1,0.31,20.0,2012-11-01,0.0,0.0,0.001045665624264879,0.0,0.0,0.0,0.0,0.0,7.951863473372493,0.0,0.0,0.0,0.1957551991793806,0.06525173305979354,0.013737206959956534,-0.06474413919913069,0.5 +2680,my_land,urban,0.001999999999999981,0.02,0.011000000000000001,0.0,2012-11-02,0.0,0.0,1.0989010989010882e-07,0.0,0.0,0.0,0.0,0.0,7.854086538461537,0.0,0.0,0.0,,,,, +2681,my_land,rural,15.826867292370416,0.1,0.11,20.0,2012-11-02,0.0,0.0,0.001049659685172784,0.0,0.0,0.0,0.0,0.0,7.672078573080948,0.0,0.0,0.0,0.06791858517530049,0.022639528391766826,0.004766216503529859,-0.08532433007059717,0.5 +2682,my_land,urban,0.07399999999999998,0.02,0.132,0.0,2012-11-03,0.0,0.0,7.204549836128776e-07,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0,,,,, +2683,my_land,rural,15.943386208750402,0.1,1.32,20.0,2012-11-03,0.0,0.0,0.0009942836993185261,0.0,0.0,0.0,0.0,0.0,7.384505400804381,0.0,0.0,0.0,0.7862302720792599,0.26207675735975333,0.0551740541810007,0.11651891637998596,0.5 +2684,my_land,urban,0.12399999999999997,0.02,0.10999999999999999,0.0,2012-11-04,0.0,0.0,1.3008318168780294e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, +2685,my_land,rural,15.979320575915917,0.1,1.0999999999999999,20.0,2012-11-04,0.0,0.0,0.0009498429966584433,0.0,0.0,0.0,0.0,0.0,7.103344211822023,0.0,0.0,0.0,0.6868967633945717,0.22896558779819057,0.048203281641724334,0.03593436716551324,0.5 +2686,my_land,urban,0.06399999999999997,0.02,0.0,0.0,2012-11-05,0.0,0.0,1.4158965026941718e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, +2687,my_land,rural,15.879320575915918,0.1,0.0,20.0,2012-11-05,0.0,0.0,0.0009598429966584433,0.0,0.0,0.0,0.0,0.0,6.827761776477753,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2688,my_land,urban,0.0069999999999999715,0.02,0.0029999999999999996,0.0,2012-11-06,0.0,0.0,3.598143727416836e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, +2689,my_land,rural,15.808037386014355,0.1,0.03,20.0,2012-11-06,0.0,0.0,0.0009698429966584433,0.0,0.0,0.0,0.0,0.0,6.547220222059719,0.0,0.0,0.0,0.0,0.0,0.0012831899015630724,-0.09566379803126145,0.5 +2690,my_land,urban,0.0,0.007999999999999972,0.001,0.0,2012-11-07,0.0,0.0,1.3598143727416836e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, +2691,my_land,rural,15.717623177456504,0.1,0.01,20.0,2012-11-07,0.0,0.0,0.0009798429966584434,0.0,0.0,0.0,0.0,0.0,6.874652527507465,0.0,0.0,0.0,0.0,0.0,0.00041420855785013095,-0.09828417115700261,0.5 +2692,my_land,urban,0.0,0.0,0.0,0.0,2012-11-08,0.0,0.0,2.3598143727416835e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, +2693,my_land,rural,15.617623177456505,0.1,0.0,20.0,2012-11-08,0.0,0.0,0.0009898429966584434,0.0,0.0,0.0,0.0,0.0,7.278081566188433,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2694,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0,,,,, +2695,my_land,rural,15.57380766598181,0.1,0.21,20.0,2012-11-09,0.0,0.0,0.0009905489494517494,0.0,0.0,0.0,0.0,0.0,7.69108904192841,0.0,0.0,0.0,0.10959355192571874,0.03653118397523958,0.007690775573734649,-0.04381551147469298,0.5 +2696,my_land,urban,0.0,0.001,0.001,0.0,2012-11-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0,,,,, +2697,my_land,rural,15.483455431389922,0.1,0.01,20.0,2012-11-10,0.0,0.0,0.0010005489494517494,0.0,0.0,0.0,0.0,0.0,8.10513612999105,0.0,0.0,0.0,0.0,0.0,0.0003522345918878256,-0.0970446918377565,0.5 +2698,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-11-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0,,,,, +2699,my_land,rural,15.412497999441298,0.1,0.03,20.0,2012-11-11,0.0,0.0,0.0010105489494517494,0.0,0.0,0.0,0.0,0.0,8.519392016498882,0.0,0.0,0.0,0.0,0.0,0.0009574319486246781,-0.08914863897249357,0.5 +2700,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2701,my_land,rural,15.456226051683444,0.1,0.33999999999999997,20.0,2012-11-12,0.0,0.0,0.0010083841656655605,0.0,0.0,0.0,0.0,0.0,8.934236140252038,0.0,0.0,0.0,0.1398437627774708,0.04661458759249026,0.009813597387892687,0.04372805224214624,0.5 +2702,my_land,urban,0.0,0.001,0.001,0.0,2012-11-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2703,my_land,rural,15.365918111775592,0.1,0.01,20.0,2012-11-13,0.0,0.0,0.0010183841656655605,0.0,0.0,0.0,0.0,0.0,8.851600945781504,0.0,0.0,0.0,0.0,0.0,0.0003079399078513986,-0.09615879815702796,0.5 +2704,my_land,urban,0.0,0.001,0.001,0.0,2012-11-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2705,my_land,rural,15.27565194542074,0.1,0.01,20.0,2012-11-14,0.0,0.0,0.0010283841656655605,0.0,0.0,0.0,0.0,0.0,8.70734297547269,0.0,0.0,0.0,0.0,0.0,0.00026616635485061593,-0.09532332709701231,0.5 +2706,my_land,urban,0.0,0.0,0.0,0.0,2012-11-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2707,my_land,rural,15.175651945420741,0.1,0.0,20.0,2012-11-15,0.0,0.0,0.0010383841656655605,0.0,0.0,0.0,0.0,0.0,8.555382157434087,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2708,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-11-16,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2709,my_land,rural,15.194539174274114,0.1,0.16999999999999998,20.0,2012-11-16,0.0,0.0,0.0010450445207593076,0.0,0.0,0.0,0.0,0.0,8.402212550380453,0.0,0.0,0.0,0.03641784944197127,0.012139283147323756,0.002555638557331317,0.01888722885337365,0.5 +2710,my_land,urban,0.0,0.0,0.0,0.0,2012-11-17,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2711,my_land,rural,15.094539174274114,0.1,0.0,20.0,2012-11-17,0.0,0.0,0.0010550445207593076,0.0,0.0,0.0,0.0,0.0,8.249383711547557,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2712,my_land,urban,0.0,0.0,0.0,0.0,2012-11-18,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, +2713,my_land,rural,14.994539174274115,0.1,0.0,20.0,2012-11-18,0.0,0.0,0.0010650445207593077,0.0,0.0,0.0,0.0,0.0,8.096351535693445,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2714,my_land,urban,0.0,0.02,0.047999999999999994,0.0,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0,,,,, +2715,my_land,rural,15.374539174274116,0.1,0.48,20.0,2012-11-19,0.0,0.0,0.0010750445207593077,0.0,0.0,0.0,0.0,0.0,7.9416832141431275,0.0,0.0,0.0,0.0,0.0,0.0,0.37999999999999995,0.5 +2716,my_land,urban,0.144,0.02,0.20400000000000001,0.0,2012-11-20,0.0,0.0,7.826086956521739e-07,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0,,,,, +2717,my_land,rural,16.210979690216668,0.1,2.04,20.0,2012-11-20,0.0,0.0,0.0010191359045743486,0.0,0.0,0.0,0.0,0.0,7.9489554747901865,0.0,0.0,0.0,0.7862861323909294,0.2620953774636431,0.05517797420287224,0.8364405159425553,0.5 +2718,my_land,urban,0.25900000000000006,0.02,0.17500000000000002,0.0,2012-11-21,0.0,0.0,1.5441326159662643e-06,0.0,0.0,0.0,0.0,0.0,7.634651218431438,0.0,0.0,0.0,,,,, +2719,my_land,rural,16.220276462589077,0.1,1.7500000000000002,20.0,2012-11-21,0.0,0.0,0.0009389122544760077,0.0,0.0,0.0,0.0,0.0,7.980541683732893,0.0,0.0,0.0,1.1690010496846601,0.38966701656155334,0.08203516138137966,0.009296772372406961,0.5 +2720,my_land,urban,0.37300000000000005,0.02,0.174,0.0,2012-11-22,0.0,0.0,2.297727519988902e-06,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0,,,,, +2721,my_land,rural,16.226311539637678,0.1,1.7399999999999998,20.0,2012-11-22,0.0,0.0,0.0008660617107541417,0.0,0.0,0.0,0.0,0.0,8.01405860500816,0.0,0.0,0.0,1.164200007602872,0.38806666920095734,0.08169824614756999,0.006035077048600207,0.5 +2722,my_land,urban,0.31500000000000006,0.019999999999999997,0.002,0.0,2012-11-23,0.0,0.0,2.9261525881591664e-06,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0,,,,, +2723,my_land,rural,16.145371513275784,0.1,0.02,20.0,2012-11-23,0.0,0.0,0.0008760617107541418,0.0,0.0,0.0,0.0,0.0,8.050864468376021,0.0,0.0,0.0,0.0,0.0,0.0009400263618926733,-0.09880052723785349,0.5 +2724,my_land,urban,0.534,0.02,0.279,0.0,2012-11-24,0.0,0.0,3.6525531046637538e-06,0.0,0.0,0.0,0.0,0.0,7.70827850780309,0.0,0.0,0.0,,,,, +2725,my_land,rural,16.2522567145521,0.1,2.79,20.0,2012-11-24,0.0,0.0,0.0007698244563518479,0.0,0.0,0.0,0.0,0.0,8.080147708493191,0.0,0.0,0.0,1.8404692940906253,0.6134897646968751,0.12915573993618423,0.10688520127631537,0.5 +2726,my_land,urban,0.518,0.02,0.044000000000000004,0.0,2012-11-25,0.0,0.0,4.319036753074954e-06,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0,,,,, +2727,my_land,rural,16.17688595283935,0.1,0.44,20.0,2012-11-25,0.0,0.0,0.000761255184766919,0.0,0.0,0.0,0.0,0.0,8.117405385807483,0.0,0.0,0.0,0.2959516677203357,0.09865055590677857,0.020768538085637594,-0.07537076171275185,0.5 +2728,my_land,urban,0.48100000000000004,0.02,0.023,0.0,2012-11-26,0.0,0.0,4.910665409268816e-06,0.0,0.0,0.0,0.0,0.0,7.7134750328633945,0.0,0.0,0.0,,,,, +2729,my_land,rural,16.092596826237557,0.1,0.22999999999999998,20.0,2012-11-26,0.0,0.0,0.0007616205279416702,0.0,0.0,0.0,0.0,0.0,8.15193100228564,0.0,0.0,0.0,0.1526810027037775,0.05089366756792583,0.010714456330089647,-0.08428912660179295,0.5 +2730,my_land,urban,0.42400000000000004,0.02,0.0029999999999999996,0.0,2012-11-27,0.0,0.0,5.401125287780125e-06,0.0,0.0,0.0,0.0,0.0,7.7134750328633945,0.0,0.0,0.0,,,,, +2731,my_land,rural,16.021224256760366,0.1,0.03,20.0,2012-11-27,0.0,0.0,0.0007716205279416702,0.0,0.0,0.0,0.0,0.0,7.9057101252857045,0.0,0.0,0.0,0.0,0.0,0.0013725694771897772,-0.09745138954379555,0.5 +2732,my_land,urban,0.36400000000000005,0.02,0.0,0.0,2012-11-28,0.0,0.0,5.767350506811795e-06,0.0,0.0,0.0,0.0,0.0,7.7134750328633945,0.0,0.0,0.0,,,,, +2733,my_land,rural,15.921224256760366,0.1,0.0,20.0,2012-11-28,0.0,0.0,0.0007816205279416702,0.0,0.0,0.0,0.0,0.0,7.624151265660713,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2734,my_land,urban,0.30400000000000005,0.02,0.0,0.0,2012-11-29,0.0,0.0,5.980449285089494e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0,,,,, +2735,my_land,rural,15.821224256760367,0.1,0.0,20.0,2012-11-29,0.0,0.0,0.0007916205279416702,0.0,0.0,0.0,0.0,0.0,7.338175158207589,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2736,my_land,urban,0.24400000000000002,0.02,0.0,0.0,2012-11-30,0.0,0.0,5.997287413950128e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0,,,,, +2737,my_land,rural,15.721224256760367,0.1,0.0,20.0,2012-11-30,0.0,0.0,0.0008016205279416703,0.0,0.0,0.0,0.0,0.0,7.051646894775948,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2738,my_land,urban,0.18400000000000002,0.02,0.0,0.0,2012-12-01,0.0,0.0,5.747771804316176e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863393,0.0,0.0,0.0,,,,, +2739,my_land,rural,15.621224256760367,0.1,0.0,20.0,2012-12-01,0.0,0.0,0.0008116205279416703,0.0,0.0,0.0,0.0,0.0,6.765049611846995,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2740,my_land,urban,0.20800000000000002,0.02,0.08399999999999999,0.0,2012-12-02,0.0,0.0,5.659421513297438e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, +2741,my_land,rural,15.744122311637657,0.1,0.84,20.0,2012-12-02,0.0,0.0,0.0007921250254246348,0.0,0.0,0.0,0.0,0.0,6.473442781743086,0.0,0.0,0.0,0.4396851358999325,0.14656171196664416,0.03085509725613562,0.12289805487728762,0.5 +2742,my_land,urban,0.152,0.02,0.004,0.0,2012-12-03,0.0,0.0,5.272042031360471e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, +2743,my_land,rural,15.682521539950189,0.1,0.04,20.0,2012-12-03,0.0,0.0,0.0008021250254246348,0.0,0.0,0.0,0.0,0.0,6.191211597717887,0.0,0.0,0.0,0.0,0.0,0.0016007716874682095,-0.09201543374936419,0.5 +2744,my_land,urban,0.09899999999999998,0.02,0.007,0.0,2012-12-04,0.0,0.0,4.467137849674004e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, +2745,my_land,rural,15.649828161455313,0.1,0.06999999999999999,20.0,2012-12-04,0.0,0.0,0.0008121250254246349,0.0,0.0,0.0,0.0,0.0,5.905151449714737,0.0,0.0,0.0,0.0,0.0,0.002693378494876126,-0.08386756989752252,0.5 +2746,my_land,urban,0.03899999999999997,0.02,0.0,0.0,2012-12-05,0.0,0.0,2.698966786547925e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, +2747,my_land,rural,15.549828161455313,0.1,0.0,20.0,2012-12-05,0.0,0.0,0.0008221250254246349,0.0,0.0,0.0,0.0,0.0,5.789036788464343,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2748,my_land,urban,0.03699999999999996,0.02,0.057999999999999996,0.0,2012-12-06,0.0,0.0,1.77742559873082e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2749,my_land,rural,15.630751986678039,0.1,0.58,20.0,2012-12-06,0.0,0.0,0.0008124198608787787,0.0,0.0,0.0,0.0,0.0,5.691190066313447,0.0,0.0,0.0,0.28434177452880716,0.0947805915096024,0.019953808738863665,0.08092382522272672,0.5 +2750,my_land,urban,0.0,0.02,0.001,0.0,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2751,my_land,rural,15.540381805282243,0.1,0.01,20.0,2012-12-07,0.0,0.0,0.0008224198608787788,0.0,0.0,0.0,0.0,0.0,5.601577330039181,0.0,0.0,0.0,0.0,0.0,0.0003701813957958731,-0.09740362791591746,0.5 +2752,my_land,urban,0.0,0.0,0.0,0.0,2012-12-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2753,my_land,rural,15.440381805282243,0.1,0.0,20.0,2012-12-08,0.0,0.0,0.0008324198608787788,0.0,0.0,0.0,0.0,0.0,5.510018594504898,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2754,my_land,urban,0.0,0.001,0.001,0.0,2012-12-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2755,my_land,rural,15.350080668627584,0.1,0.01,20.0,2012-12-09,0.0,0.0,0.0008424198608787788,0.0,0.0,0.0,0.0,0.0,5.418216609813112,0.0,0.0,0.0,0.0,0.0,0.000301136654659115,-0.0960227330931823,0.5 +2756,my_land,urban,0.0,0.0,0.0,0.0,2012-12-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2757,my_land,rural,15.250080668627584,0.1,0.0,20.0,2012-12-10,0.0,0.0,0.0008524198608787788,0.0,0.0,0.0,0.0,0.0,5.326384218976639,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2758,my_land,urban,0.0,0.001,0.001,0.0,2012-12-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2759,my_land,rural,15.159879986259734,0.1,0.01,20.0,2012-12-11,0.0,0.0,0.0008624198608787789,0.0,0.0,0.0,0.0,0.0,5.234548027372079,0.0,0.0,0.0,0.0,0.0,0.00020068236785046145,-0.09401364735700923,0.5 +2760,my_land,urban,0.0,0.0,0.0,0.0,2012-12-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2761,my_land,rural,15.059879986259734,0.1,0.0,20.0,2012-12-12,0.0,0.0,0.0008724198608787789,0.0,0.0,0.0,0.0,0.0,5.4074435031715105,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2762,my_land,urban,0.0,0.007,0.007,0.0,2012-12-13,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, +2763,my_land,rural,15.029482709206876,0.1,0.06999999999999999,20.0,2012-12-13,0.0,0.0,0.0008824198608787789,0.0,0.0,0.0,0.0,0.0,5.613430438146439,0.0,0.0,0.0,0.0,0.0,0.0003972770528578975,-0.03794554105715795,0.5 +2764,my_land,urban,0.1,0.02,0.16,0.0,2012-12-14,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0,,,,, +2765,my_land,rural,16.437602462413274,0.1,1.6,20.0,2012-12-14,0.0,0.0,0.0008877060034581982,0.0,0.0,0.0,0.0,0.0,5.818452983141059,0.0,0.0,0.0,0.06546467584044041,0.021821558613480136,0.0045940123396800295,1.4081197532063994,0.5 +2766,my_land,urban,0.059000000000000004,0.02,0.019,0.0,2012-12-15,0.0,0.0,3.5757575757575753e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0,,,,, +2767,my_land,rural,16.34400684660527,0.1,0.19,20.0,2012-12-15,0.0,0.0,0.000888227244789087,0.0,0.0,0.0,0.0,0.0,6.033305796938316,0.0,0.0,0.0,0.13081187626320145,0.043603958754400485,0.009179780790400103,-0.09359561580800203,0.5 +2768,my_land,urban,0.054,0.02,0.05499999999999999,0.0,2012-12-16,0.0,0.0,2.6286266924564796e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0,,,,, +2769,my_land,rural,16.268034778023708,0.1,0.5499999999999999,20.0,2012-12-16,0.0,0.0,0.0008714603000528684,0.0,0.0,0.0,0.0,0.0,6.243590671685604,0.0,0.0,0.0,0.37475509886436587,0.12491836628812196,0.02629860342907831,-0.07597206858156623,0.5 +2770,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0,,,,, +2771,my_land,rural,16.196615272688266,0.1,0.03,20.0,2012-12-17,0.0,0.0,0.0008814603000528684,0.0,0.0,0.0,0.0,0.0,6.455448833960701,0.0,0.0,0.0,0.0,0.0,0.001419505335440522,-0.09839010670881045,0.5 +2772,my_land,urban,0.0,0.001,0.001,0.0,2012-12-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0,,,,, +2773,my_land,rural,16.106147704599543,0.1,0.01,20.0,2012-12-18,0.0,0.0,0.0008914603000528685,0.0,0.0,0.0,0.0,0.0,6.579252532995088,0.0,0.0,0.0,0.0,0.0,0.00046756808872426754,-0.09935136177448535,0.5 +2774,my_land,urban,0.15000000000000002,0.02,0.21000000000000002,0.0,2012-12-19,0.0,0.0,1.5789473684210526e-06,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0,,,,, +2775,my_land,rural,16.17845909484016,0.1,2.1,20.0,2012-12-19,0.0,0.0,0.0008097962404087799,0.0,0.0,0.0,0.0,0.0,6.686503806173279,0.0,0.0,0.0,1.3734781344535596,0.4578260448178532,0.0963844304879691,0.07231139024061785,0.5 +2776,my_land,urban,0.13100000000000003,0.02,0.041,0.0,2012-12-20,0.0,0.0,1.9756848261003385e-06,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0,,,,, +2777,my_land,rural,16.10635040652912,0.1,0.41000000000000003,20.0,2012-12-20,0.0,0.0,0.000801727000477721,0.0,0.0,0.0,0.0,0.0,6.8019002643145585,0.0,0.0,0.0,0.27225244042161795,0.09075081347387266,0.019105434415552142,-0.07210868831104278,0.5 +2778,my_land,urban,0.18100000000000002,0.02,0.10999999999999999,0.0,2012-12-21,0.0,0.0,2.4370993372133997e-06,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0,,,,, +2779,my_land,rural,16.096561779094007,0.1,1.0999999999999999,20.0,2012-12-21,0.0,0.0,0.0007660717820096883,0.0,0.0,0.0,0.0,0.0,6.911859041173583,0.0,0.0,0.0,0.7194743970475209,0.23982479901584033,0.050489431371755863,-0.009788627435117388,0.5 +2780,my_land,urban,0.24500000000000002,0.02,0.124,0.0,2012-12-22,0.0,0.0,2.9546994302360805e-06,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0,,,,, +2781,my_land,rural,16.10084027161472,0.1,1.24,20.0,2012-12-22,0.0,0.0,0.0007273324178929581,0.0,0.0,0.0,0.0,0.0,7.022728162358923,0.0,0.0,0.0,0.8092015740789897,0.26973385802632993,0.0567860753739642,0.004278492520716146,0.5 +2782,my_land,urban,0.2840000000000001,0.02,0.099,0.0,2012-12-23,0.0,0.0,3.4664649326760704e-06,0.0,0.0,0.0,0.0,0.0,6.448791676696903,0.0,0.0,0.0,,,,, +2783,my_land,rural,16.083186822768646,0.1,0.9900000000000001,20.0,2012-12-23,0.0,0.0,0.0006998132070529227,0.0,0.0,0.0,0.0,0.0,7.134625354137086,0.0,0.0,0.0,0.6467030823028267,0.21556769410094223,0.04538267244230363,-0.017653448846072402,0.5 +2784,my_land,urban,0.2840000000000001,0.02,0.06,0.0,2012-12-24,0.0,0.0,3.915049508888901e-06,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0,,,,, +2785,my_land,rural,16.035399958867128,0.1,0.6,20.0,2012-12-24,0.0,0.0,0.000687501685450247,0.0,0.0,0.0,0.0,0.0,7.246913855680599,0.0,0.0,0.0,0.39029814052983314,0.13009938017661105,0.027389343195076014,-0.047786863901520205,0.5 +2786,my_land,urban,0.2320000000000001,0.02,0.008,0.0,2012-12-25,0.0,0.0,4.192248110522887e-06,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0,,,,, +2787,my_land,rural,16.011792923766084,0.1,0.08,20.0,2012-12-25,0.0,0.0,0.000697501685450247,0.0,0.0,0.0,0.0,0.0,7.3594356604600755,0.0,0.0,0.0,0.0,0.0,0.0036070351010422975,-0.09214070202084595,0.5 +2788,my_land,urban,0.23300000000000007,0.02,0.061000000000000006,0.0,2012-12-26,0.0,0.0,4.4314791566001195e-06,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0,,,,, +2789,my_land,rural,15.975385554118597,0.1,0.61,20.0,2012-12-26,0.0,0.0,0.0006852363522006556,0.0,0.0,0.0,0.0,0.0,7.469755752881277,0.0,0.0,0.0,0.38931525087383423,0.12977175029127808,0.02732036848237433,-0.0364073696474866,0.5 +2790,my_land,urban,0.23800000000000007,0.02,0.065,0.0,2012-12-27,0.0,0.0,4.6499713642835555e-06,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0,,,,, +2791,my_land,rural,15.94959447741049,0.1,0.65,20.0,2012-12-27,0.0,0.0,0.0006721833936749275,0.0,0.0,0.0,0.0,0.0,7.580858984189492,0.0,0.0,0.0,0.41025114215452585,0.13675038071817527,0.028789553835405327,-0.025791076708106542,0.5 +2792,my_land,urban,0.19500000000000006,0.02,0.016999999999999998,0.0,2012-12-28,0.0,0.0,4.688274110788483e-06,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0,,,,, +2793,my_land,rural,15.870283212718167,0.1,0.16999999999999998,20.0,2012-12-28,0.0,0.0,0.0006761401759043693,0.0,0.0,0.0,0.0,0.0,7.69301934406249,0.0,0.0,0.0,0.10638427609327887,0.03546142536442629,0.007465563234616063,-0.07931126469232126,0.5 +2794,my_land,urban,0.2750000000000001,0.02,0.14,0.0,2012-12-29,0.0,0.0,4.9659535887835954e-06,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0,,,,, +2795,my_land,rural,15.977121381131193,0.1,1.4000000000000001,20.0,2012-12-29,0.0,0.0,0.0006406864037568952,0.0,0.0,0.0,0.0,0.0,7.802347237529968,0.0,0.0,0.0,0.8501278050057175,0.28337593500190583,0.05965809157934861,0.10683816841302804,0.5 +2796,my_land,urban,0.22700000000000006,0.02,0.011999999999999999,0.0,2012-12-30,0.0,0.0,5.072177770239237e-06,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0,,,,, +2797,my_land,rural,15.89076251566083,0.1,0.12,20.0,2012-12-30,0.0,0.0,0.0006465751754922392,0.0,0.0,0.0,0.0,0.0,7.915447251504478,0.0,0.0,0.0,0.07578069164763297,0.02526023054921099,0.0053179432735181035,-0.08635886547036208,0.5 +2798,my_land,urban,0.22100000000000006,0.02,0.054000000000000006,0.0,2012-12-31,0.0,0.0,5.14157581311445e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913954,0.0,0.0,0.0,,,,, +2799,my_land,rural,15.866673762940684,0.1,0.54,20.0,2012-12-31,0.0,0.0,0.0006388242838404582,0.0,0.0,0.0,0.0,0.0,8.02629584176058,0.0,0.0,0.0,0.3306632363131054,0.11022107877103514,0.023204437636007397,-0.024088752720147905,0.5 +2800,my_land,urban,0.16200000000000006,0.02,0.001,0.0,2013-01-01,0.0,0.0,4.925422186755153e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913954,0.0,0.0,0.0,,,,, +2801,my_land,rural,15.776248281904815,0.1,0.01,20.0,2013-01-01,0.0,0.0,0.0006488242838404582,0.0,0.0,0.0,0.0,0.0,8.138108408470073,0.0,0.0,0.0,0.0,0.0,0.00042548103586871724,-0.09850962071737435,0.5 +2802,my_land,urban,0.10300000000000006,0.02,0.001,0.0,2013-01-02,0.0,0.0,4.267961435215251e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, +2803,my_land,rural,15.685840805771758,0.1,0.01,20.0,2013-01-02,0.0,0.0,0.0006588242838404582,0.0,0.0,0.0,0.0,0.0,8.24940640805876,0.0,0.0,0.0,0.0,0.0,0.0004074761330567377,-0.09814952266113475,0.5 +2804,my_land,urban,0.04300000000000006,0.02,0.0,0.0,2013-01-03,0.0,0.0,2.729184839930794e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, +2805,my_land,rural,15.585840805771758,0.1,0.0,20.0,2013-01-03,0.0,0.0,0.0006688242838404582,0.0,0.0,0.0,0.0,0.0,8.360640086757346,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2806,my_land,urban,3.469446951953614e-18,0.02,0.0,0.0,2013-01-04,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, +2807,my_land,rural,15.485840805771758,0.1,0.0,20.0,2013-01-04,0.0,0.0,0.0006788242838404583,0.0,0.0,0.0,0.0,0.0,8.47186572534467,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2808,my_land,urban,0.0,3.469446951953614e-18,0.0,0.0,2013-01-05,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, +2809,my_land,rural,15.385840805771759,0.1,0.0,20.0,2013-01-05,0.0,0.0,0.0006888242838404583,0.0,0.0,0.0,0.0,0.0,8.583090358168084,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2810,my_land,urban,0.0,0.002,0.002,0.0,2013-01-06,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, +2811,my_land,rural,15.305288751808089,0.1,0.02,20.0,2013-01-06,0.0,0.0,0.0006988242838404583,0.0,0.0,0.0,0.0,0.0,8.694314866021012,0.0,0.0,0.0,0.0,0.0,0.0005520539636696665,-0.09104107927339333,0.5 +2812,my_land,urban,0.0,0.0,0.0,0.0,2013-01-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, +2813,my_land,rural,15.205288751808089,0.1,0.0,20.0,2013-01-07,0.0,0.0,0.0007088242838404583,0.0,0.0,0.0,0.0,0.0,8.805539358252627,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2814,my_land,urban,0.0,0.02,0.028,0.0,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0,,,,, +2815,my_land,rural,15.289400951094114,0.1,0.27999999999999997,20.0,2013-01-08,0.0,0.0,0.0007145669333188687,0.0,0.0,0.0,0.0,0.0,8.395167557748477,0.0,0.0,0.0,0.06832005800870761,0.022773352669569202,0.00479439003569878,0.08411219928602441,0.5 +2816,my_land,urban,0.0,0.002,0.002,0.0,2013-01-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0,,,,, +2817,my_land,rural,15.208951836614235,0.1,0.02,20.0,2013-01-09,0.0,0.0,0.0007245669333188688,0.0,0.0,0.0,0.0,0.0,7.92171737296856,0.0,0.0,0.0,0.0,0.0,0.00044911447987869903,-0.08898228959757398,0.5 +2818,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2013-01-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0,,,,, +2819,my_land,rural,15.167909448435363,0.1,0.06,20.0,2013-01-10,0.0,0.0,0.0007345669333188688,0.0,0.0,0.0,0.0,0.0,7.43932181437107,0.0,0.0,0.0,0.0,0.0,0.0010423881788714459,-0.06084776357742893,0.5 +2820,my_land,urban,0.0,0.02,0.038,0.0,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0,,,,, +2821,my_land,rural,15.33795323888821,0.1,0.38,20.0,2013-01-11,0.0,0.0,0.0007395303968193742,0.0,0.0,0.0,0.0,0.0,6.953427307931365,0.0,0.0,0.0,0.07834379930234699,0.026114599767448995,0.005497810477357684,0.17004379045284632,0.5 +2822,my_land,urban,0.0,0.001,0.001,0.0,2013-01-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0,,,,, +2823,my_land,rural,15.247701572905127,0.1,0.01,20.0,2013-01-12,0.0,0.0,0.0007495303968193742,0.0,0.0,0.0,0.0,0.0,6.471856985241422,0.0,0.0,0.0,0.0,0.0,0.0002516659830816748,-0.09503331966163349,0.5 +2824,my_land,urban,0.0,0.007,0.007,0.0,2013-01-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0,,,,, +2825,my_land,rural,15.216307314376797,0.1,0.06999999999999999,20.0,2013-01-13,0.0,0.0,0.0007595303968193742,0.0,0.0,0.0,0.0,0.0,5.988446408655179,0.0,0.0,0.0,0.0,0.0,0.0013942585283298935,-0.05788517056659788,0.5 +2826,my_land,urban,0.0,0.02,0.053,0.0,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0,,,,, +2827,my_land,rural,15.456879004975445,0.1,0.53,20.0,2013-01-14,0.0,0.0,0.0007606742381378722,0.0,0.0,0.0,0.0,0.0,5.500390411655781,0.0,0.0,0.0,0.13496767044846525,0.04498922348282175,0.009471415470067737,0.24057169059864525,0.5 +2828,my_land,urban,0.0,0.0,0.0,0.0,2013-01-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0,,,,, +2829,my_land,rural,15.356879004975445,0.1,0.0,20.0,2013-01-15,0.0,0.0,0.0007706742381378722,0.0,0.0,0.0,0.0,0.0,5.277727373206973,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2830,my_land,urban,0.0,0.0,0.0,0.0,2013-01-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0,,,,, +2831,my_land,rural,15.256879004975445,0.1,0.0,20.0,2013-01-16,0.0,0.0,0.0007806742381378722,0.0,0.0,0.0,0.0,0.0,5.083823064400872,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2832,my_land,urban,1.734723475976807e-18,0.02,0.033,0.0,2013-01-17,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0,,,,, +2833,my_land,rural,15.351619348220046,0.1,0.33,20.0,2013-01-17,0.0,0.0,0.0007841110438047175,0.0,0.0,0.0,0.0,0.0,4.891579199881204,0.0,0.0,0.0,0.09637250543822144,0.03212416847940715,0.006762982837769927,0.09474034324460147,0.5 +2834,my_land,urban,0.0,0.02,0.06,0.0,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, +2835,my_land,rural,15.540999043719523,0.1,0.6,20.0,2013-01-18,0.0,0.0,0.0007793135977059915,0.0,0.0,0.0,0.0,0.0,4.69919641626273,0.0,0.0,0.0,0.2213169669566236,0.07377232231887453,0.015531015225026219,0.18937969549947564,0.5 +2836,my_land,urban,0.0,0.001,0.001,0.0,2013-01-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, +2837,my_land,rural,15.45065813472105,0.1,0.01,20.0,2013-01-19,0.0,0.0,0.0007893135977059915,0.0,0.0,0.0,0.0,0.0,4.513292409282841,0.0,0.0,0.0,0.0,0.0,0.00034090899847364324,-0.09681817996947287,0.5 +2838,my_land,urban,0.0,0.013,0.013,0.0,2013-01-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, +2839,my_land,rural,15.401209052500993,0.1,0.13,20.0,2013-01-20,0.0,0.0,0.0007954155089031578,0.0,0.0,0.0,0.0,0.0,4.323737686242265,0.0,0.0,0.0,0.05660747108178929,0.018869157027263096,0.003972454111002758,-0.04944908222005515,0.5 +2840,my_land,urban,0.0,0.01,0.01,0.0,2013-01-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, +2841,my_land,rural,15.398375292840656,0.1,0.1,20.0,2013-01-21,0.0,0.0,0.0008054155089031579,0.0,0.0,0.0,0.0,0.0,4.1342172107802835,0.0,0.0,0.0,0.0,0.0,0.0028337596603368598,-0.056675193206737196,0.5 +2842,my_land,urban,0.0,0.02,0.038,0.0,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0,,,,, +2843,my_land,rural,15.464026847154328,0.1,0.38,20.0,2013-01-22,0.0,0.0,0.0008048176329508202,0.0,0.0,0.0,0.0,0.0,4.261474877502777,0.0,0.0,0.0,0.15272326755150933,0.05090775585050311,0.010717422284316446,0.06565155431367109,0.5 +2844,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2013-01-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0,,,,, +2845,my_land,rural,15.40933600154138,0.1,0.12,20.0,2013-01-23,0.0,0.0,0.0008110827908699661,0.0,0.0,0.0,0.0,0.0,4.431695711940895,0.0,0.0,0.0,0.05321722749922549,0.017739075833075164,0.0037345422806474033,-0.05469084561294807,0.5 +2846,my_land,urban,0.0,0.0,0.0,0.0,2013-01-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0,,,,, +2847,my_land,rural,15.30933600154138,0.1,0.0,20.0,2013-01-24,0.0,0.0,0.0008210827908699661,0.0,0.0,0.0,0.0,0.0,4.605747678492612,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2848,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2013-01-25,0.0,0.0,1.208955223880597e-06,0.0,0.0,0.0,0.0,0.0,3.9392857140000004,0.0,0.0,0.0,,,,, +2849,my_land,rural,15.668705818293656,0.1,0.8699999999999999,20.0,2013-01-25,0.0,0.0,0.0008108942211089126,0.0,0.0,0.0,0.0,0.0,4.776294751633669,0.0,0.0,0.0,0.29257400556400215,0.09752466852133404,0.020531509162386115,0.35936981675227764,0.5 +2850,my_land,urban,0.10799999999999998,0.02,0.141,0.0,2013-01-26,0.0,0.0,1.6119402985074626e-06,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0,,,,, +2851,my_land,rural,15.90420841792064,0.1,1.41,20.0,2013-01-26,0.0,0.0,0.0007713847845077432,0.0,0.0,0.0,0.0,0.0,4.948302501722026,0.0,0.0,0.0,0.765579397765774,0.25519313258859133,0.05372487001865081,0.23550259962698394,0.5 +2852,my_land,urban,0.08399999999999999,0.02,0.036,0.0,2013-01-27,0.0,0.0,1.7693789118921516e-06,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0,,,,, +2853,my_land,rural,15.8531841513214,0.1,0.36,20.0,2013-01-27,0.0,0.0,0.0007670877352155564,0.0,0.0,0.0,0.0,0.0,5.127220389680056,0.0,0.0,0.0,0.22160478995196078,0.07386826331732026,0.015551213329962163,-0.05102426659924324,0.5 +2854,my_land,urban,0.05799999999999999,0.02,0.033999999999999996,0.0,2013-01-28,0.0,0.0,1.6390201723443344e-06,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0,,,,, +2855,my_land,rural,15.805535318718732,0.1,0.33999999999999997,20.0,2013-01-28,0.0,0.0,0.0007638807833104662,0.0,0.0,0.0,0.0,0.0,5.302390104986648,0.0,0.0,0.0,0.20494979322939957,0.0683165977431332,0.014382441630133306,-0.047648832602666114,0.5 +2856,my_land,urban,0.09599999999999997,0.02,0.098,0.0,2013-01-29,0.0,0.0,1.8628377687136477e-06,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0,,,,, +2857,my_land,rural,15.874692893819791,0.1,0.98,20.0,2013-01-29,0.0,0.0,0.0007380669745991166,0.0,0.0,0.0,0.0,0.0,5.542044663906372,0.0,0.0,0.0,0.5777252277404938,0.19257507591349796,0.04054212124494694,0.06915757510106112,0.5 +2858,my_land,urban,0.06199999999999998,0.02,0.026,0.0,2013-01-30,0.0,0.0,1.7401562907867269e-06,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0,,,,, +2859,my_land,rural,15.812697492741504,0.1,0.26,20.0,2013-01-30,0.0,0.0,0.0007382212392863184,0.0,0.0,0.0,0.0,0.0,5.794069316217952,0.0,0.0,0.0,0.15817172326827944,0.052723907756093154,0.011099770053914349,-0.061995401078286966,0.5 +2860,my_land,urban,0.04999999999999997,0.02,0.047999999999999994,0.0,2013-01-31,0.0,0.0,1.52230905043707e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, +2861,my_land,rural,15.794146269407982,0.1,0.48,20.0,2013-01-31,0.0,0.0,0.0007307044955913183,0.0,0.0,0.0,0.0,0.0,6.0446700503205735,0.0,0.0,0.0,0.283967746625134,0.09465591554171134,0.019927561166676072,-0.018551223333521452,0.5 +2862,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, +2863,my_land,rural,15.722912300786405,0.1,0.03,20.0,2013-02-01,0.0,0.0,0.0007407044955913183,0.0,0.0,0.0,0.0,0.0,6.296655184540072,0.0,0.0,0.0,0.0,0.0,0.001233968621577905,-0.0946793724315581,0.5 +2864,my_land,urban,0.0,0.0,0.0,0.0,2013-02-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, +2865,my_land,rural,15.622912300786405,0.1,0.0,20.0,2013-02-02,0.0,0.0,0.0007507044955913184,0.0,0.0,0.0,0.0,0.0,6.547796183567509,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2866,my_land,urban,0.0,0.0,0.0,0.0,2013-02-03,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, +2867,my_land,rural,15.522912300786405,0.1,0.0,20.0,2013-02-03,0.0,0.0,0.0007607044955913184,0.0,0.0,0.0,0.0,0.0,6.798831665695938,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2868,my_land,urban,0.0,0.018,0.018,0.0,2013-02-04,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, +2869,my_land,rural,15.48255104333027,0.1,0.18,20.0,2013-02-04,0.0,0.0,0.0007650543441726194,0.0,0.0,0.0,0.0,0.0,7.049736066537807,0.0,0.0,0.0,0.08575739593749779,0.02858579864583259,0.006018062872806862,-0.040361257456137244,0.5 +2870,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0,,,,, +2871,my_land,rural,15.462287177951374,0.1,0.22,20.0,2013-02-05,0.0,0.0,0.0007684321607458175,0.0,0.0,0.0,0.0,0.0,6.804583736991428,0.0,0.0,0.0,0.0999380040824626,0.03331266802748754,0.007013193268944746,-0.020263865378894897,0.5 +2872,my_land,urban,0.0,0.0,0.0,0.0,2013-02-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0,,,,, +2873,my_land,rural,15.362287177951375,0.1,0.0,20.0,2013-02-06,0.0,0.0,0.0007784321607458175,0.0,0.0,0.0,0.0,0.0,6.498787252623929,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2874,my_land,urban,0.0,0.008,0.008,0.0,2013-02-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0,,,,, +2875,my_land,rural,15.340172556120592,0.1,0.08,20.0,2013-02-07,0.0,0.0,0.0007884321607458175,0.0,0.0,0.0,0.0,0.0,6.184669834827992,0.0,0.0,0.0,0.0,0.0,0.0021146218307818397,-0.06229243661563679,0.5 +2876,my_land,urban,0.0,0.02,0.028,0.0,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0,,,,, +2877,my_land,rural,15.378579008210481,0.1,0.27999999999999997,20.0,2013-02-08,0.0,0.0,0.0007915089636035798,0.0,0.0,0.0,0.0,0.0,5.868040795078995,0.0,0.0,0.0,0.10088540288595371,0.03362846762865124,0.007079677395505524,0.03840645208988951,0.5 +2878,my_land,urban,0.010000000000000002,0.02,0.07,0.0,2013-02-09,0.0,0.0,2.000000000000001e-07,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0,,,,, +2879,my_land,rural,15.597111195382572,0.1,0.7000000000000001,20.0,2013-02-09,0.0,0.0,0.000783309002733697,0.0,0.0,0.0,0.0,0.0,5.549002473022487,0.0,0.0,0.0,0.27179581663988606,0.09059860554662869,0.019073390641395516,0.21853218717208972,0.5 +2880,my_land,urban,0.112,0.02,0.16199999999999998,0.0,2013-02-10,0.0,0.0,8.842105263157895e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0,,,,, +2881,my_land,rural,15.951253694655565,0.1,1.6199999999999999,20.0,2013-02-10,0.0,0.0,0.0007418024462905808,0.0,0.0,0.0,0.0,0.0,5.22588493857554,0.0,0.0,0.0,0.8306734692679949,0.276891156422665,0.05829287503635053,0.35414249927298924,0.5 +2882,my_land,urban,0.055,0.02,0.0029999999999999996,0.0,2013-02-11,0.0,0.0,1.0908587257617728e-06,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0,,,,, +2883,my_land,rural,15.879935495904647,0.1,0.03,20.0,2013-02-11,0.0,0.0,0.0007518024462905809,0.0,0.0,0.0,0.0,0.0,4.921985617321942,0.0,0.0,0.0,0.0,0.0,0.0013181987509182744,-0.0963639750183655,0.5 +2884,my_land,urban,0.0,0.02,0.0,0.0,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0,,,,, +2885,my_land,rural,15.779935495904647,0.1,0.0,20.0,2013-02-12,0.0,0.0,0.0007618024462905809,0.0,0.0,0.0,0.0,0.0,5.079533916665242,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2886,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2013-02-13,0.0,0.0,4.366197183098592e-07,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2887,my_land,rural,15.846864668755211,0.1,0.91,20.0,2013-02-13,0.0,0.0,0.0007388878166199245,0.0,0.0,0.0,0.0,0.0,5.291651843558389,0.0,0.0,0.0,0.529437964343972,0.17647932144799067,0.037153541357471724,0.06692917285056549,0.5 +2888,my_land,urban,0.0,0.02,0.001,0.0,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2889,my_land,rural,15.756442837077454,0.1,0.01,20.0,2013-02-14,0.0,0.0,0.0007488878166199245,0.0,0.0,0.0,0.0,0.0,5.516813623194799,0.0,0.0,0.0,0.0,0.0,0.0004218316777566894,-0.09843663355513378,0.5 +2890,my_land,urban,0.0,0.0,0.0,0.0,2013-02-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2891,my_land,rural,15.656442837077455,0.1,0.0,20.0,2013-02-15,0.0,0.0,0.0007588878166199245,0.0,0.0,0.0,0.0,0.0,5.74049456014935,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2892,my_land,urban,0.0,0.001,0.001,0.0,2013-02-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2893,my_land,rural,15.566065221283486,0.1,0.01,20.0,2013-02-16,0.0,0.0,0.0007688878166199246,0.0,0.0,0.0,0.0,0.0,5.963990391768669,0.0,0.0,0.0,0.0,0.0,0.000377615793968375,-0.0975523158793675,0.5 +2894,my_land,urban,0.0,0.0,0.0,0.0,2013-02-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2895,my_land,rural,15.466065221283486,0.1,0.0,20.0,2013-02-17,0.0,0.0,0.0007788878166199246,0.0,0.0,0.0,0.0,0.0,6.187463084471084,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2896,my_land,urban,0.0,0.0,0.0,0.0,2013-02-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2897,my_land,rural,15.366065221283487,0.1,0.0,20.0,2013-02-18,0.0,0.0,0.0007888878166199246,0.0,0.0,0.0,0.0,0.0,6.410932885558886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2898,my_land,urban,0.0,0.0,0.0,0.0,2013-02-19,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2899,my_land,rural,15.266065221283487,0.1,0.0,20.0,2013-02-19,0.0,0.0,0.0007988878166199246,0.0,0.0,0.0,0.0,0.0,6.278152325194862,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2900,my_land,urban,0.0,0.0,0.0,0.0,2013-02-20,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2901,my_land,rural,15.166065221283487,0.1,0.0,20.0,2013-02-20,0.0,0.0,0.0008088878166199247,0.0,0.0,0.0,0.0,0.0,6.100840468899358,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2902,my_land,urban,0.0,0.0,0.0,0.0,2013-02-21,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2903,my_land,rural,15.066065221283488,0.1,0.0,20.0,2013-02-21,0.0,0.0,0.0008188878166199247,0.0,0.0,0.0,0.0,0.0,5.91796220136242,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2904,my_land,urban,0.0,0.0,0.0,0.0,2013-02-22,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2905,my_land,rural,14.966065221283488,0.1,0.0,20.0,2013-02-22,0.0,0.0,0.0008288878166199247,0.0,0.0,0.0,0.0,0.0,5.734388132420303,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2906,my_land,urban,0.0,0.0,0.0,0.0,2013-02-23,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2907,my_land,rural,14.866065221283488,0.1,0.0,20.0,2013-02-23,0.0,0.0,0.0008388878166199248,0.0,0.0,0.0,0.0,0.0,5.550727088302539,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2908,my_land,urban,0.0,0.0,0.0,0.0,2013-02-24,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2909,my_land,rural,14.766065221283489,0.1,0.0,20.0,2013-02-24,0.0,0.0,0.0008488878166199248,0.0,0.0,0.0,0.0,0.0,5.367055171537818,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 +2910,my_land,urban,0.0,0.001,0.001,0.0,2013-02-25,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, +2911,my_land,rural,14.676065221283489,0.1,0.01,20.0,2013-02-25,0.0,0.0,0.0008588878166199248,0.0,0.0,0.0,0.0,0.0,5.183381896442228,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 diff --git a/docs/demo/data/processed/tanks.csv b/docs/demo/data/processed/tanks.csv new file mode 100644 index 00000000..19583a34 --- /dev/null +++ b/docs/demo/data/processed/tanks.csv @@ -0,0 +1,11649 @@ +,node,time,storage,prop,do,org-phosphorus,phosphate,ammonia,solids,bod,cod,ph,temperature,nitrate,nitrite,org-nitrogen +0,my_sewer,2009-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 +1,my_land,2009-03-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,my_land,2009-03-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3,my_land,2009-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4,my_groundwater,2009-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5,my_reservoir,2009-03-03,5.965000000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6,gw1,2009-03-03,225.25,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7,gw2,2009-03-03,299.75,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8,my_sewer,2009-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +9,my_land,2009-03-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10,my_land,2009-03-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11,my_land,2009-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12,my_groundwater,2009-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13,my_reservoir,2009-03-04,5.855500000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +14,gw1,2009-03-04,225.49833333333333,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +15,gw2,2009-03-04,299.50166666666667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +16,my_sewer,2009-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +17,my_land,2009-03-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +18,my_land,2009-03-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +19,my_land,2009-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +20,my_groundwater,2009-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +21,my_reservoir,2009-03-05,5.745500000000002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +22,gw1,2009-03-05,225.74501111111113,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +23,gw2,2009-03-05,299.2549888888889,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +24,my_sewer,2009-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +25,my_land,2009-03-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +26,my_land,2009-03-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +27,my_land,2009-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +28,my_groundwater,2009-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +29,my_reservoir,2009-03-06,5.635500000000002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +30,gw1,2009-03-06,225.99004437037038,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +31,gw2,2009-03-06,299.0099556296296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +32,my_sewer,2009-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 +33,my_land,2009-03-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +34,my_land,2009-03-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +35,my_land,2009-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +36,my_groundwater,2009-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +37,my_reservoir,2009-03-07,5.5340000000000025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +38,gw1,2009-03-07,226.23344407456793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +39,gw2,2009-03-07,298.76655592543204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +40,my_sewer,2009-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +41,my_land,2009-03-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +42,my_land,2009-03-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +43,my_land,2009-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +44,my_groundwater,2009-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +45,my_reservoir,2009-03-08,5.442500000000003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +46,gw1,2009-03-08,226.47522111407082,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +47,gw2,2009-03-08,298.52477888592915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +48,my_sewer,2009-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +49,my_land,2009-03-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +50,my_land,2009-03-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +51,my_land,2009-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +52,my_groundwater,2009-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +53,my_reservoir,2009-03-09,5.339000000000003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +54,gw1,2009-03-09,226.7153863066437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +55,gw2,2009-03-09,298.2846136933563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +56,my_sewer,2009-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +57,my_land,2009-03-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +58,my_land,2009-03-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +59,my_land,2009-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +60,my_groundwater,2009-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +61,my_reservoir,2009-03-10,5.229500000000003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +62,gw1,2009-03-10,226.95395039793274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +63,gw2,2009-03-10,298.0460496020672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +64,my_sewer,2009-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +65,my_land,2009-03-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +66,my_land,2009-03-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +67,my_land,2009-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +68,my_groundwater,2009-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +69,my_reservoir,2009-03-11,5.120000000000004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +70,gw1,2009-03-11,227.19092406194653,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +71,gw2,2009-03-11,297.80907593805347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +72,my_sewer,2009-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +73,my_land,2009-03-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +74,my_land,2009-03-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +75,my_land,2009-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +76,my_groundwater,2009-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +77,my_reservoir,2009-03-12,5.010500000000004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +78,gw1,2009-03-12,227.42631790153357,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +79,gw2,2009-03-12,297.57368209846646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +80,my_sewer,2009-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +81,my_land,2009-03-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +82,my_land,2009-03-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +83,my_land,2009-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +84,my_groundwater,2009-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +85,my_reservoir,2009-03-13,4.9005000000000045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +86,gw1,2009-03-13,227.66014244885667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +87,gw2,2009-03-13,297.3398575511434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +88,my_sewer,2009-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +89,my_land,2009-03-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +90,my_land,2009-03-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +91,my_land,2009-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +92,my_groundwater,2009-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +93,my_reservoir,2009-03-14,4.790500000000005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +94,gw1,2009-03-14,227.8924081658643,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +95,gw2,2009-03-14,297.10759183413575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +96,my_sewer,2009-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +97,my_land,2009-03-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +98,my_land,2009-03-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +99,my_land,2009-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +100,my_groundwater,2009-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +101,my_reservoir,2009-03-15,4.680500000000006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +102,gw1,2009-03-15,228.12312544475856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +103,gw2,2009-03-15,296.8768745552415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +104,my_sewer,2009-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +105,my_land,2009-03-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +106,my_land,2009-03-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +107,my_land,2009-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +108,my_groundwater,2009-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +109,my_reservoir,2009-03-16,4.570500000000006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +110,gw1,2009-03-16,228.35230460846017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +111,gw2,2009-03-16,296.6476953915399,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +112,my_sewer,2009-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +113,my_land,2009-03-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +114,my_land,2009-03-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +115,my_land,2009-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +116,my_groundwater,2009-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +117,my_reservoir,2009-03-17,4.460500000000007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +118,gw1,2009-03-17,228.57995591107044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +119,gw2,2009-03-17,296.42004408892967,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +120,my_sewer,2009-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +121,my_land,2009-03-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +122,my_land,2009-03-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +123,my_land,2009-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +124,my_groundwater,2009-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +125,my_reservoir,2009-03-18,4.350500000000007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +126,gw1,2009-03-18,228.80608953832999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +127,gw2,2009-03-18,296.19391046167016,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +128,my_sewer,2009-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +129,my_land,2009-03-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +130,my_land,2009-03-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +131,my_land,2009-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +132,my_groundwater,2009-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +133,my_reservoir,2009-03-19,4.240500000000008,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +134,gw1,2009-03-19,229.03071560807444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +135,gw2,2009-03-19,295.96928439192567,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +136,my_sewer,2009-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +137,my_land,2009-03-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +138,my_land,2009-03-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +139,my_land,2009-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +140,my_groundwater,2009-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +141,my_reservoir,2009-03-20,4.1305000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +142,gw1,2009-03-20,229.25384417068727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +143,gw2,2009-03-20,295.74615582931284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +144,my_sewer,2009-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +145,my_land,2009-03-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +146,my_land,2009-03-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +147,my_land,2009-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +148,my_groundwater,2009-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +149,my_reservoir,2009-03-21,4.020500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +150,gw1,2009-03-21,229.47548520954936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +151,gw2,2009-03-21,295.5245147904508,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +152,my_sewer,2009-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +153,my_land,2009-03-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +154,my_land,2009-03-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +155,my_land,2009-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +156,my_groundwater,2009-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +157,my_reservoir,2009-03-22,3.910500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +158,gw1,2009-03-22,229.6956486414857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +159,gw2,2009-03-22,295.30435135851445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +160,my_sewer,2009-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +161,my_land,2009-03-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +162,my_land,2009-03-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +163,my_land,2009-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +164,my_groundwater,2009-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +165,my_reservoir,2009-03-23,3.8030000000000093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +166,gw1,2009-03-23,229.91434431720913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +167,gw2,2009-03-23,295.085655682791,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +168,my_sewer,2009-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +169,my_land,2009-03-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +170,my_land,2009-03-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +171,my_land,2009-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +172,my_groundwater,2009-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +173,my_reservoir,2009-03-24,3.6955000000000093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +174,gw1,2009-03-24,230.13158202176106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +175,gw2,2009-03-24,294.86841797823905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +176,my_sewer,2009-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +177,my_land,2009-03-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +178,my_land,2009-03-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +179,my_land,2009-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +180,my_groundwater,2009-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +181,my_reservoir,2009-03-25,3.590000000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +182,gw1,2009-03-25,230.3473714749493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +183,gw2,2009-03-25,294.6526285250508,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +184,my_sewer,2009-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +185,my_land,2009-03-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +186,my_land,2009-03-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +187,my_land,2009-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +188,my_groundwater,2009-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +189,my_reservoir,2009-03-26,3.484500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +190,gw1,2009-03-26,230.561722331783,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +191,gw2,2009-03-26,294.4382776682171,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +192,my_sewer,2009-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +193,my_land,2009-03-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +194,my_land,2009-03-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +195,my_land,2009-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +196,my_groundwater,2009-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +197,my_reservoir,2009-03-27,3.376500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +198,gw1,2009-03-27,230.77464418290444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +199,gw2,2009-03-27,294.22535581709565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +200,my_sewer,2009-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +201,my_land,2009-03-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +202,my_land,2009-03-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +203,my_land,2009-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +204,my_groundwater,2009-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +205,my_reservoir,2009-03-28,3.274500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +206,gw1,2009-03-28,230.98614655501842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +207,gw2,2009-03-28,294.0138534449817,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +208,my_sewer,2009-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +209,my_land,2009-03-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +210,my_land,2009-03-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +211,my_land,2009-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +212,my_groundwater,2009-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +213,my_reservoir,2009-03-29,3.164500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +214,gw1,2009-03-29,231.1962389113183,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +215,gw2,2009-03-29,293.8037610886818,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +216,my_sewer,2009-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +217,my_land,2009-03-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +218,my_land,2009-03-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +219,my_land,2009-03-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +220,my_groundwater,2009-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +221,my_reservoir,2009-03-30,3.0545000000000093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +222,gw1,2009-03-30,231.4049306519095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +223,gw2,2009-03-30,293.5950693480906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +224,my_sewer,2009-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +225,my_land,2009-03-31,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +226,my_land,2009-03-31,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +227,my_land,2009-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +228,my_groundwater,2009-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +229,my_reservoir,2009-03-31,2.9445000000000094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +230,gw1,2009-03-31,231.6122311142301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +231,gw2,2009-03-31,293.38776888576996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +232,my_sewer,2009-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +233,my_land,2009-04-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +234,my_land,2009-04-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +235,my_land,2009-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +236,my_groundwater,2009-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +237,my_reservoir,2009-04-01,2.8345000000000096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +238,gw1,2009-04-01,231.81814957346856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +239,gw2,2009-04-01,293.18185042653147,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +240,my_sewer,2009-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +241,my_land,2009-04-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +242,my_land,2009-04-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +243,my_land,2009-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +244,my_groundwater,2009-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +245,my_reservoir,2009-04-02,2.7245000000000097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +246,gw1,2009-04-02,232.02269524297876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +247,gw2,2009-04-02,292.9773047570213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +248,my_sewer,2009-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +249,my_land,2009-04-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +250,my_land,2009-04-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +251,my_land,2009-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +252,my_groundwater,2009-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +253,my_reservoir,2009-04-03,2.6155000000000097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +254,gw1,2009-04-03,232.22587727469224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +255,gw2,2009-04-03,292.7741227253078,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +256,my_sewer,2009-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +257,my_land,2009-04-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +258,my_land,2009-04-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +259,my_land,2009-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +260,my_groundwater,2009-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +261,my_reservoir,2009-04-04,2.50550000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +262,gw1,2009-04-04,232.42770475952761,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +263,gw2,2009-04-04,292.5722952404724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +264,my_sewer,2009-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +265,my_land,2009-04-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +266,my_land,2009-04-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +267,my_land,2009-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +268,my_groundwater,2009-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +269,my_reservoir,2009-04-05,2.39550000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +270,gw1,2009-04-05,232.62818672779744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +271,gw2,2009-04-05,292.3718132722026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +272,my_sewer,2009-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 +273,my_land,2009-04-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +274,my_land,2009-04-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +275,my_land,2009-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +276,my_groundwater,2009-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +277,my_reservoir,2009-04-06,2.29000000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +278,gw1,2009-04-06,232.82733214961212,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +279,gw2,2009-04-06,292.1726678503879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +280,my_sewer,2009-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +281,my_land,2009-04-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +282,my_land,2009-04-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +283,my_land,2009-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +284,my_groundwater,2009-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +285,my_reservoir,2009-04-07,2.20500000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +286,gw1,2009-04-07,233.02514993528138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +287,gw2,2009-04-07,291.9748500647186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +288,my_sewer,2009-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +289,my_land,2009-04-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +290,my_land,2009-04-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +291,my_land,2009-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +292,my_groundwater,2009-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +293,my_reservoir,2009-04-08,2.1020000000000096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +294,gw1,2009-04-08,233.22164893571284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +295,gw2,2009-04-08,291.77835106428716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +296,my_sewer,2009-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +297,my_land,2009-04-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +298,my_land,2009-04-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +299,my_land,2009-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +300,my_groundwater,2009-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +301,my_reservoir,2009-04-09,2.0005000000000095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +302,gw1,2009-04-09,233.4168379428081,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +303,gw2,2009-04-09,291.58316205719194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +304,my_sewer,2009-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +305,my_land,2009-04-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +306,my_land,2009-04-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +307,my_land,2009-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +308,my_groundwater,2009-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +309,my_reservoir,2009-04-10,1.9000000000000092,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +310,gw1,2009-04-10,233.61072568985603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +311,gw2,2009-04-10,291.389274310144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +312,my_sewer,2009-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +313,my_land,2009-04-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +314,my_land,2009-04-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +315,my_land,2009-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +316,my_groundwater,2009-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +317,my_reservoir,2009-04-11,1.7900000000000091,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +318,gw1,2009-04-11,233.80332085192364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +319,gw2,2009-04-11,291.1966791480764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +320,my_sewer,2009-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +321,my_land,2009-04-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +322,my_land,2009-04-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +323,my_land,2009-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +324,my_groundwater,2009-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +325,my_reservoir,2009-04-12,1.680000000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +326,gw1,2009-04-12,233.99463204624416,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +327,gw2,2009-04-12,291.00536795375587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +328,my_sewer,2009-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 +329,my_land,2009-04-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +330,my_land,2009-04-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +331,my_land,2009-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +332,my_groundwater,2009-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +333,my_reservoir,2009-04-13,1.5705000000000089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +334,gw1,2009-04-13,234.18466783260254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +335,gw2,2009-04-13,290.8153321673975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +336,my_sewer,2009-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 +337,my_land,2009-04-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +338,my_land,2009-04-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +339,my_land,2009-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +340,my_groundwater,2009-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +341,my_reservoir,2009-04-14,1.4860000000000089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +342,gw1,2009-04-14,234.37343671371852,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +343,gw2,2009-04-14,290.6265632862815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +344,my_sewer,2009-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 +345,my_land,2009-04-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +346,my_land,2009-04-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +347,my_land,2009-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +348,my_groundwater,2009-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +349,my_reservoir,2009-04-15,1.3815000000000088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +350,gw1,2009-04-15,234.56094713562706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +351,gw2,2009-04-15,290.43905286437297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +352,my_sewer,2009-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +353,my_land,2009-04-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +354,my_land,2009-04-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +355,my_land,2009-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +356,my_groundwater,2009-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +357,my_reservoir,2009-04-16,1.3125000000000087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +358,gw1,2009-04-16,234.7472074880562,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +359,gw2,2009-04-16,290.2527925119438,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +360,my_sewer,2009-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +361,my_land,2009-04-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +362,my_land,2009-04-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +363,my_land,2009-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +364,my_groundwater,2009-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +365,my_reservoir,2009-04-17,1.2070000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +366,gw1,2009-04-17,234.9322261048025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +367,gw2,2009-04-17,290.06777389519755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +368,my_sewer,2009-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +369,my_land,2009-04-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +370,my_land,2009-04-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +371,my_land,2009-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +372,my_groundwater,2009-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +373,my_reservoir,2009-04-18,1.0970000000000084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +374,gw1,2009-04-18,235.11601126410383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +375,gw2,2009-04-18,289.88398873589625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +376,my_sewer,2009-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +377,my_land,2009-04-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +378,my_land,2009-04-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +379,my_land,2009-04-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +380,my_groundwater,2009-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +381,my_reservoir,2009-04-19,0.9870000000000084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +382,gw1,2009-04-19,235.2985711890098,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +383,gw2,2009-04-19,289.70142881099025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +384,my_sewer,2009-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +385,my_land,2009-04-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +386,my_land,2009-04-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +387,my_land,2009-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +388,my_groundwater,2009-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +389,my_reservoir,2009-04-20,0.8770000000000084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +390,gw1,2009-04-20,235.47991404774973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +391,gw2,2009-04-20,289.5200859522503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +392,my_sewer,2009-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +393,my_land,2009-04-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +394,my_land,2009-04-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +395,my_land,2009-04-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +396,my_groundwater,2009-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +397,my_reservoir,2009-04-21,0.7670000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +398,gw1,2009-04-21,235.66004795409808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +399,gw2,2009-04-21,289.339952045902,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +400,my_sewer,2009-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +401,my_land,2009-04-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +402,my_land,2009-04-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +403,my_land,2009-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +404,my_groundwater,2009-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +405,my_reservoir,2009-04-22,0.6570000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +406,gw1,2009-04-22,235.83898096773743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +407,gw2,2009-04-22,289.1610190322627,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +408,my_sewer,2009-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +409,my_land,2009-04-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +410,my_land,2009-04-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +411,my_land,2009-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +412,my_groundwater,2009-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +413,my_reservoir,2009-04-23,0.5470000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +414,gw1,2009-04-23,236.0167210946192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +415,gw2,2009-04-23,288.9832789053809,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +416,my_sewer,2009-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +417,my_land,2009-04-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +418,my_land,2009-04-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +419,my_land,2009-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +420,my_groundwater,2009-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +421,my_reservoir,2009-04-24,0.44450000000000855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +422,gw1,2009-04-24,236.19327628732174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +423,gw2,2009-04-24,288.8067237126784,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +424,my_sewer,2009-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 +425,my_land,2009-04-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +426,my_land,2009-04-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +427,my_land,2009-04-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +428,my_groundwater,2009-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +429,my_reservoir,2009-04-25,0.33450000000000857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +430,gw1,2009-04-25,236.36865444540626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +431,gw2,2009-04-25,288.63134555459385,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +432,my_sewer,2009-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 +433,my_land,2009-04-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +434,my_land,2009-04-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +435,my_land,2009-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +436,my_groundwater,2009-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +437,my_reservoir,2009-04-26,0.2525000000000086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +438,gw1,2009-04-26,236.54286341577023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +439,gw2,2009-04-26,288.4571365842299,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +440,my_sewer,2009-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +441,my_land,2009-04-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +442,my_land,2009-04-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +443,my_land,2009-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +444,my_groundwater,2009-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +445,my_reservoir,2009-04-27,0.16950000000000862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +446,gw1,2009-04-27,236.71591099299843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +447,gw2,2009-04-27,288.2840890070017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +448,my_sewer,2009-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +449,my_land,2009-04-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +450,my_land,2009-04-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +451,my_land,2009-04-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +452,my_groundwater,2009-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +453,my_reservoir,2009-04-28,0.0630000000000086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +454,gw1,2009-04-28,236.88780491971178,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +455,gw2,2009-04-28,288.11219508028836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +456,my_sewer,2009-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +457,my_land,2009-04-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +458,my_land,2009-04-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +459,my_land,2009-04-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +460,my_groundwater,2009-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +461,my_reservoir,2009-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +462,gw1,2009-04-29,237.0585528869137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +463,gw2,2009-04-29,287.94144711308644,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +464,my_sewer,2009-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +465,my_land,2009-04-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +466,my_land,2009-04-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +467,my_land,2009-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +468,my_groundwater,2009-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +469,my_reservoir,2009-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +470,gw1,2009-04-30,237.22816253433427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +471,gw2,2009-04-30,287.77183746566584,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +472,my_sewer,2009-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +473,my_land,2009-05-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +474,my_land,2009-05-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +475,my_land,2009-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +476,my_groundwater,2009-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +477,my_reservoir,2009-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +478,gw1,2009-05-01,237.39664145077205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +479,gw2,2009-05-01,287.60335854922806,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +480,my_sewer,2009-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +481,my_land,2009-05-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +482,my_land,2009-05-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +483,my_land,2009-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +484,my_groundwater,2009-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +485,my_reservoir,2009-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +486,gw1,2009-05-02,237.56399717443358,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +487,gw2,2009-05-02,287.43600282556656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +488,my_sewer,2009-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +489,my_land,2009-05-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +490,my_land,2009-05-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +491,my_land,2009-05-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +492,my_groundwater,2009-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +493,my_reservoir,2009-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +494,gw1,2009-05-03,237.73023719327068,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +495,gw2,2009-05-03,287.26976280672943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +496,my_sewer,2009-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +497,my_land,2009-05-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +498,my_land,2009-05-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +499,my_land,2009-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +500,my_groundwater,2009-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +501,my_reservoir,2009-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +502,gw1,2009-05-04,237.89536894531554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +503,gw2,2009-05-04,287.10463105468455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +504,my_sewer,2009-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +505,my_land,2009-05-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +506,my_land,2009-05-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +507,my_land,2009-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +508,my_groundwater,2009-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +509,my_reservoir,2009-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +510,gw1,2009-05-05,238.05939981901344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +511,gw2,2009-05-05,286.9406001809866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +512,my_sewer,2009-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +513,my_land,2009-05-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +514,my_land,2009-05-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +515,my_land,2009-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +516,my_groundwater,2009-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +517,my_reservoir,2009-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +518,gw1,2009-05-06,238.22233715355335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +519,gw2,2009-05-06,286.77766284644673,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +520,my_sewer,2009-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +521,my_land,2009-05-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +522,my_land,2009-05-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +523,my_land,2009-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +524,my_groundwater,2009-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +525,my_reservoir,2009-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +526,gw1,2009-05-07,238.38418823919633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +527,gw2,2009-05-07,286.61581176080375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +528,my_sewer,2009-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +529,my_land,2009-05-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +530,my_land,2009-05-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +531,my_land,2009-05-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +532,my_groundwater,2009-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +533,my_reservoir,2009-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +534,gw1,2009-05-08,238.5449603176017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +535,gw2,2009-05-08,286.4550396823984,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +536,my_sewer,2009-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +537,my_land,2009-05-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +538,my_land,2009-05-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +539,my_land,2009-05-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +540,my_groundwater,2009-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +541,my_reservoir,2009-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +542,gw1,2009-05-09,238.704660582151,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +543,gw2,2009-05-09,286.2953394178491,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +544,my_sewer,2009-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +545,my_land,2009-05-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +546,my_land,2009-05-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +547,my_land,2009-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +548,my_groundwater,2009-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +549,my_reservoir,2009-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +550,gw1,2009-05-10,238.86329617827,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +551,gw2,2009-05-10,286.1367038217301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +552,my_sewer,2009-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +553,my_land,2009-05-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +554,my_land,2009-05-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +555,my_land,2009-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +556,my_groundwater,2009-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +557,my_reservoir,2009-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +558,gw1,2009-05-11,239.02087420374818,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +559,gw2,2009-05-11,285.97912579625194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +560,my_sewer,2009-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +561,my_land,2009-05-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +562,my_land,2009-05-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +563,my_land,2009-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +564,my_groundwater,2009-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +565,my_reservoir,2009-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +566,gw1,2009-05-12,239.1774017090565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +567,gw2,2009-05-12,285.8225982909436,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +568,my_sewer,2009-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 +569,my_land,2009-05-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +570,my_land,2009-05-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +571,my_land,2009-05-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +572,my_groundwater,2009-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +573,my_reservoir,2009-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +574,gw1,2009-05-13,239.3328856976628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +575,gw2,2009-05-13,285.66711430233727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +576,my_sewer,2009-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +577,my_land,2009-05-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +578,my_land,2009-05-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +579,my_land,2009-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +580,my_groundwater,2009-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +581,my_reservoir,2009-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +582,gw1,2009-05-14,239.48733312634505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +583,gw2,2009-05-14,285.512666873655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +584,my_sewer,2009-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 +585,my_land,2009-05-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +586,my_land,2009-05-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +587,my_land,2009-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +588,my_groundwater,2009-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +589,my_reservoir,2009-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +590,gw1,2009-05-15,239.64075090550276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +591,gw2,2009-05-15,285.35924909449733,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +592,my_sewer,2009-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 +593,my_land,2009-05-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +594,my_land,2009-05-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +595,my_land,2009-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +596,my_groundwater,2009-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +597,my_reservoir,2009-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +598,gw1,2009-05-16,239.79314589946608,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +599,gw2,2009-05-16,285.20685410053403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +600,my_sewer,2009-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 +601,my_land,2009-05-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +602,my_land,2009-05-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +603,my_land,2009-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +604,my_groundwater,2009-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +605,my_reservoir,2009-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +606,gw1,2009-05-17,239.94452492680298,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +607,gw2,2009-05-17,285.05547507319716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +608,my_sewer,2009-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 +609,my_land,2009-05-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +610,my_land,2009-05-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +611,my_land,2009-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +612,my_groundwater,2009-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +613,my_reservoir,2009-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +614,gw1,2009-05-18,240.0948947606243,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +615,gw2,2009-05-18,284.90510523937587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +616,my_sewer,2009-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +617,my_land,2009-05-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +618,my_land,2009-05-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +619,my_land,2009-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +620,my_groundwater,2009-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +621,my_reservoir,2009-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +622,gw1,2009-05-19,240.24426212888682,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +623,gw2,2009-05-19,284.75573787111335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +624,my_sewer,2009-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +625,my_land,2009-05-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +626,my_land,2009-05-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +627,my_land,2009-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +628,my_groundwater,2009-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +629,my_reservoir,2009-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +630,gw1,2009-05-20,240.39263371469423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +631,gw2,2009-05-20,284.60736628530594,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +632,my_sewer,2009-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +633,my_land,2009-05-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +634,my_land,2009-05-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +635,my_land,2009-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +636,my_groundwater,2009-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +637,my_reservoir,2009-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +638,gw1,2009-05-21,240.54001615659627,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +639,gw2,2009-05-21,284.4599838434039,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +640,my_sewer,2009-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +641,my_land,2009-05-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +642,my_land,2009-05-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +643,my_land,2009-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +644,my_groundwater,2009-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +645,my_reservoir,2009-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +646,gw1,2009-05-22,240.68641604888563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +647,gw2,2009-05-22,284.31358395111454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +648,my_sewer,2009-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +649,my_land,2009-05-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +650,my_land,2009-05-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +651,my_land,2009-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +652,my_groundwater,2009-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +653,my_reservoir,2009-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +654,gw1,2009-05-23,240.83183994189307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +655,gw2,2009-05-23,284.1681600581071,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +656,my_sewer,2009-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 +657,my_land,2009-05-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +658,my_land,2009-05-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +659,my_land,2009-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +660,my_groundwater,2009-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +661,my_reservoir,2009-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +662,gw1,2009-05-24,240.97629434228045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +663,gw2,2009-05-24,284.02370565771974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +664,my_sewer,2009-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +665,my_land,2009-05-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +666,my_land,2009-05-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +667,my_land,2009-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +668,my_groundwater,2009-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +669,my_reservoir,2009-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +670,gw1,2009-05-25,241.1197857133319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +671,gw2,2009-05-25,283.88021428666826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +672,my_sewer,2009-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +673,my_land,2009-05-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +674,my_land,2009-05-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +675,my_land,2009-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +676,my_groundwater,2009-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +677,my_reservoir,2009-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +678,gw1,2009-05-26,241.26232047524303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +679,gw2,2009-05-26,283.73767952475714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +680,my_sewer,2009-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +681,my_land,2009-05-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +682,my_land,2009-05-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +683,my_land,2009-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +684,my_groundwater,2009-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +685,my_reservoir,2009-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +686,gw1,2009-05-27,241.40390500540806,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +687,gw2,2009-05-27,283.5960949945921,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +688,my_sewer,2009-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +689,my_land,2009-05-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +690,my_land,2009-05-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +691,my_land,2009-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +692,my_groundwater,2009-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +693,my_reservoir,2009-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +694,gw1,2009-05-28,241.54454563870533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +695,gw2,2009-05-28,283.4554543612948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +696,my_sewer,2009-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +697,my_land,2009-05-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +698,my_land,2009-05-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +699,my_land,2009-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +700,my_groundwater,2009-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +701,my_reservoir,2009-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +702,gw1,2009-05-29,241.68424866778062,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +703,gw2,2009-05-29,283.3157513322195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +704,my_sewer,2009-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +705,my_land,2009-05-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +706,my_land,2009-05-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +707,my_land,2009-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +708,my_groundwater,2009-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +709,my_reservoir,2009-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +710,gw1,2009-05-30,241.82302034332875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +711,gw2,2009-05-30,283.1769796566714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +712,my_sewer,2009-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +713,my_land,2009-05-31,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +714,my_land,2009-05-31,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +715,my_land,2009-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +716,my_groundwater,2009-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +717,my_reservoir,2009-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +718,gw1,2009-05-31,241.96086687437324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +719,gw2,2009-05-31,283.0391331256269,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +720,my_sewer,2009-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +721,my_land,2009-06-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +722,my_land,2009-06-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +723,my_land,2009-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +724,my_groundwater,2009-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +725,my_reservoir,2009-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +726,gw1,2009-06-01,242.0977944285441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +727,gw2,2009-06-01,282.9022055714561,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +728,my_sewer,2009-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +729,my_land,2009-06-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +730,my_land,2009-06-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +731,my_land,2009-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +732,my_groundwater,2009-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +733,my_reservoir,2009-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +734,gw1,2009-06-02,242.2338091323538,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +735,gw2,2009-06-02,282.7661908676464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +736,my_sewer,2009-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +737,my_land,2009-06-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +738,my_land,2009-06-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +739,my_land,2009-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +740,my_groundwater,2009-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +741,my_reservoir,2009-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +742,gw1,2009-06-03,242.36891707147143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +743,gw2,2009-06-03,282.63108292852877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +744,my_sewer,2009-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 +745,my_land,2009-06-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +746,my_land,2009-06-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +747,my_land,2009-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +748,my_groundwater,2009-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +749,my_reservoir,2009-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +750,gw1,2009-06-04,242.50312429099495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +751,gw2,2009-06-04,282.4968757090052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +752,my_sewer,2009-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 +753,my_land,2009-06-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +754,my_land,2009-06-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +755,my_land,2009-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +756,my_groundwater,2009-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +757,my_reservoir,2009-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +758,gw1,2009-06-05,242.63643679572164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +759,gw2,2009-06-05,282.36356320427853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +760,my_sewer,2009-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 +761,my_land,2009-06-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +762,my_land,2009-06-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +763,my_land,2009-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +764,my_groundwater,2009-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +765,my_reservoir,2009-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +766,gw1,2009-06-06,242.76886055041683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +767,gw2,2009-06-06,282.23113944958334,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +768,my_sewer,2009-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +769,my_land,2009-06-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +770,my_land,2009-06-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +771,my_land,2009-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +772,my_groundwater,2009-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +773,my_reservoir,2009-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +774,gw1,2009-06-07,242.90040148008072,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +775,gw2,2009-06-07,282.0995985199194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +776,my_sewer,2009-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +777,my_land,2009-06-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +778,my_land,2009-06-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +779,my_land,2009-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +780,my_groundwater,2009-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +781,my_reservoir,2009-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +782,gw1,2009-06-08,243.03106547021352,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +783,gw2,2009-06-08,281.9689345297866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +784,my_sewer,2009-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 +785,my_land,2009-06-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +786,my_land,2009-06-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +787,my_land,2009-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +788,my_groundwater,2009-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +789,my_reservoir,2009-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +790,gw1,2009-06-09,243.16085836707876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +791,gw2,2009-06-09,281.8391416329214,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +792,my_sewer,2009-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +793,my_land,2009-06-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +794,my_land,2009-06-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +795,my_land,2009-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +796,my_groundwater,2009-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +797,my_reservoir,2009-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +798,gw1,2009-06-10,243.2897859779649,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +799,gw2,2009-06-10,281.71021402203525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +800,my_sewer,2009-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +801,my_land,2009-06-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +802,my_land,2009-06-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +803,my_land,2009-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +804,my_groundwater,2009-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +805,my_reservoir,2009-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +806,gw1,2009-06-11,243.41785407144513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +807,gw2,2009-06-11,281.582145928555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +808,my_sewer,2009-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +809,my_land,2009-06-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +810,my_land,2009-06-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +811,my_land,2009-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +812,my_groundwater,2009-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +813,my_reservoir,2009-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +814,gw1,2009-06-12,243.5450683776355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +815,gw2,2009-06-12,281.45493162236465,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +816,my_sewer,2009-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +817,my_land,2009-06-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +818,my_land,2009-06-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +819,my_land,2009-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +820,my_groundwater,2009-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +821,my_reservoir,2009-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +822,gw1,2009-06-13,243.67143458845126,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +823,gw2,2009-06-13,281.3285654115489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +824,my_sewer,2009-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +825,my_land,2009-06-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +826,my_land,2009-06-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +827,my_land,2009-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +828,my_groundwater,2009-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +829,my_reservoir,2009-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +830,gw1,2009-06-14,243.7969583578616,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +831,gw2,2009-06-14,281.20304164213854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +832,my_sewer,2009-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +833,my_land,2009-06-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +834,my_land,2009-06-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +835,my_land,2009-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +836,my_groundwater,2009-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +837,my_reservoir,2009-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +838,gw1,2009-06-15,243.9216453021425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +839,gw2,2009-06-15,281.0783546978576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +840,my_sewer,2009-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +841,my_land,2009-06-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +842,my_land,2009-06-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +843,my_land,2009-06-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +844,my_groundwater,2009-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +845,my_reservoir,2009-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +846,gw1,2009-06-16,244.0455010001282,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +847,gw2,2009-06-16,280.9544989998719,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +848,my_sewer,2009-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +849,my_land,2009-06-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +850,my_land,2009-06-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +851,my_land,2009-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +852,my_groundwater,2009-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +853,my_reservoir,2009-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +854,gw1,2009-06-17,244.16853099346068,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +855,gw2,2009-06-17,280.8314690065394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +856,my_sewer,2009-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 +857,my_land,2009-06-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +858,my_land,2009-06-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +859,my_land,2009-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +860,my_groundwater,2009-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +861,my_reservoir,2009-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +862,gw1,2009-06-18,244.2907407868376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +863,gw2,2009-06-18,280.70925921316245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +864,my_sewer,2009-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +865,my_land,2009-06-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +866,my_land,2009-06-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +867,my_land,2009-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +868,my_groundwater,2009-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +869,my_reservoir,2009-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +870,gw1,2009-06-19,244.41213584825869,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +871,gw2,2009-06-19,280.58786415174137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +872,my_sewer,2009-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +873,my_land,2009-06-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +874,my_land,2009-06-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +875,my_land,2009-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +876,my_groundwater,2009-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +877,my_reservoir,2009-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +878,gw1,2009-06-20,244.53272160927028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +879,gw2,2009-06-20,280.46727839072975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +880,my_sewer,2009-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +881,my_land,2009-06-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +882,my_land,2009-06-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +883,my_land,2009-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +884,my_groundwater,2009-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +885,my_reservoir,2009-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +886,gw1,2009-06-21,244.65250346520847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +887,gw2,2009-06-21,280.34749653479156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +888,my_sewer,2009-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +889,my_land,2009-06-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +890,my_land,2009-06-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +891,my_land,2009-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +892,my_groundwater,2009-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +893,my_reservoir,2009-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +894,gw1,2009-06-22,244.77148677544042,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +895,gw2,2009-06-22,280.2285132245596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +896,my_sewer,2009-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +897,my_land,2009-06-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +898,my_land,2009-06-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +899,my_land,2009-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +900,my_groundwater,2009-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +901,my_reservoir,2009-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +902,gw1,2009-06-23,244.88967686360417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +903,gw2,2009-06-23,280.1103231363959,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +904,my_sewer,2009-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 +905,my_land,2009-06-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +906,my_land,2009-06-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +907,my_land,2009-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +908,my_groundwater,2009-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +909,my_reservoir,2009-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +910,gw1,2009-06-24,245.0070790178468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +911,gw2,2009-06-24,279.99292098215324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +912,my_sewer,2009-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 +913,my_land,2009-06-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +914,my_land,2009-06-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +915,my_land,2009-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +916,my_groundwater,2009-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +917,my_reservoir,2009-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +918,gw1,2009-06-25,245.12369849106113,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +919,gw2,2009-06-25,279.87630150893887,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +920,my_sewer,2009-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +921,my_land,2009-06-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +922,my_land,2009-06-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +923,my_land,2009-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +924,my_groundwater,2009-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +925,my_reservoir,2009-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +926,gw1,2009-06-26,245.23954050112073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +927,gw2,2009-06-26,279.7604594988793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +928,my_sewer,2009-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +929,my_land,2009-06-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +930,my_land,2009-06-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +931,my_land,2009-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +932,my_groundwater,2009-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +933,my_reservoir,2009-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +934,gw1,2009-06-27,245.35461023111327,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +935,gw2,2009-06-27,279.6453897688868,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +936,my_sewer,2009-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +937,my_land,2009-06-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +938,my_land,2009-06-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +939,my_land,2009-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +940,my_groundwater,2009-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +941,my_reservoir,2009-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +942,gw1,2009-06-28,245.4689128295725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +943,gw2,2009-06-28,279.53108717042755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +944,my_sewer,2009-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +945,my_land,2009-06-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +946,my_land,2009-06-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +947,my_land,2009-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +948,my_groundwater,2009-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +949,my_reservoir,2009-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +950,gw1,2009-06-29,245.5824534107087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +951,gw2,2009-06-29,279.41754658929136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +952,my_sewer,2009-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +953,my_land,2009-06-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +954,my_land,2009-06-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +955,my_land,2009-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +956,my_groundwater,2009-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +957,my_reservoir,2009-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +958,gw1,2009-06-30,245.69523705463732,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +959,gw2,2009-06-30,279.30476294536277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +960,my_sewer,2009-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +961,my_land,2009-07-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +962,my_land,2009-07-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +963,my_land,2009-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +964,my_groundwater,2009-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +965,my_reservoir,2009-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +966,gw1,2009-07-01,245.8072688076064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +967,gw2,2009-07-01,279.1927311923937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +968,my_sewer,2009-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +969,my_land,2009-07-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +970,my_land,2009-07-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +971,my_land,2009-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +972,my_groundwater,2009-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +973,my_reservoir,2009-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +974,gw1,2009-07-02,245.91855368222235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +975,gw2,2009-07-02,279.08144631777776,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +976,my_sewer,2009-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +977,my_land,2009-07-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +978,my_land,2009-07-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +979,my_land,2009-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +980,my_groundwater,2009-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +981,my_reservoir,2009-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +982,gw1,2009-07-03,246.02909665767422,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +983,gw2,2009-07-03,278.9709033423259,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +984,my_sewer,2009-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +985,my_land,2009-07-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +986,my_land,2009-07-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +987,my_land,2009-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +988,my_groundwater,2009-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +989,my_reservoir,2009-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +990,gw1,2009-07-04,246.1389026799564,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +991,gw2,2009-07-04,278.86109732004377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +992,my_sewer,2009-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 +993,my_land,2009-07-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +994,my_land,2009-07-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +995,my_land,2009-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +996,my_groundwater,2009-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +997,my_reservoir,2009-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +998,gw1,2009-07-05,246.24797666209003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +999,gw2,2009-07-05,278.75202333791015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1000,my_sewer,2009-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 +1001,my_land,2009-07-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1002,my_land,2009-07-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1003,my_land,2009-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1004,my_groundwater,2009-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1005,my_reservoir,2009-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1006,gw1,2009-07-06,246.35632348434277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1007,gw2,2009-07-06,278.64367651565743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1008,my_sewer,2009-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1009,my_land,2009-07-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1010,my_land,2009-07-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1011,my_land,2009-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1012,my_groundwater,2009-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1013,my_reservoir,2009-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1014,gw1,2009-07-07,246.46394799444715,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1015,gw2,2009-07-07,278.5360520055531,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1016,my_sewer,2009-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1017,my_land,2009-07-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1018,my_land,2009-07-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1019,my_land,2009-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1020,my_groundwater,2009-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1021,my_reservoir,2009-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1022,gw1,2009-07-08,246.5708550078175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1023,gw2,2009-07-08,278.4291449921827,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1024,my_sewer,2009-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1025,my_land,2009-07-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1026,my_land,2009-07-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1027,my_land,2009-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1028,my_groundwater,2009-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1029,my_reservoir,2009-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1030,gw1,2009-07-09,246.67704930776537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1031,gw2,2009-07-09,278.3229506922348,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1032,my_sewer,2009-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 +1033,my_land,2009-07-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1034,my_land,2009-07-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1035,my_land,2009-07-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1036,my_groundwater,2009-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1037,my_reservoir,2009-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1038,gw1,2009-07-10,246.7825356457136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1039,gw2,2009-07-10,278.2174643542866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1040,my_sewer,2009-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1041,my_land,2009-07-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1042,my_land,2009-07-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1043,my_land,2009-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1044,my_groundwater,2009-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1045,my_reservoir,2009-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1046,gw1,2009-07-11,246.88731874140885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1047,gw2,2009-07-11,278.11268125859135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1048,my_sewer,2009-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1049,my_land,2009-07-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1050,my_land,2009-07-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1051,my_land,2009-07-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1052,my_groundwater,2009-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1053,my_reservoir,2009-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1054,gw1,2009-07-12,246.9914032831328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1055,gw2,2009-07-12,278.00859671686743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1056,my_sewer,2009-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 +1057,my_land,2009-07-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1058,my_land,2009-07-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1059,my_land,2009-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1060,my_groundwater,2009-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1061,my_reservoir,2009-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1062,gw1,2009-07-13,247.09479392791192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1063,gw2,2009-07-13,277.90520607208833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1064,my_sewer,2009-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 +1065,my_land,2009-07-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1066,my_land,2009-07-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1067,my_land,2009-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1068,my_groundwater,2009-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1069,my_reservoir,2009-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1070,gw1,2009-07-14,247.19749530172584,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1071,gw2,2009-07-14,277.8025046982744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1072,my_sewer,2009-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 +1073,my_land,2009-07-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1074,my_land,2009-07-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1075,my_land,2009-07-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1076,my_groundwater,2009-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1077,my_reservoir,2009-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1078,gw1,2009-07-15,247.29951199971433,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1079,gw2,2009-07-15,277.7004880002859,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1080,my_sewer,2009-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 +1081,my_land,2009-07-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1082,my_land,2009-07-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1083,my_land,2009-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1084,my_groundwater,2009-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1085,my_reservoir,2009-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1086,gw1,2009-07-16,247.4008485863829,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1087,gw2,2009-07-16,277.5991514136173,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1088,my_sewer,2009-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 +1089,my_land,2009-07-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1090,my_land,2009-07-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1091,my_land,2009-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1092,my_groundwater,2009-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1093,my_reservoir,2009-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1094,gw1,2009-07-17,247.501509595807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1095,gw2,2009-07-17,277.49849040419315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1096,my_sewer,2009-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 +1097,my_land,2009-07-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1098,my_land,2009-07-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1099,my_land,2009-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1100,my_groundwater,2009-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1101,my_reservoir,2009-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1102,gw1,2009-07-18,247.60149953183495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1103,gw2,2009-07-18,277.3985004681652,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1104,my_sewer,2009-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 +1105,my_land,2009-07-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1106,my_land,2009-07-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1107,my_land,2009-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1108,my_groundwater,2009-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1109,my_reservoir,2009-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1110,gw1,2009-07-19,247.70082286828938,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1111,gw2,2009-07-19,277.29917713171074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1112,my_sewer,2009-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 +1113,my_land,2009-07-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1114,my_land,2009-07-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1115,my_land,2009-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1116,my_groundwater,2009-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1117,my_reservoir,2009-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1118,gw1,2009-07-20,247.79948404916746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1119,gw2,2009-07-20,277.20051595083265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1120,my_sewer,2009-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1121,my_land,2009-07-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1122,my_land,2009-07-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1123,my_land,2009-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1124,my_groundwater,2009-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1125,my_reservoir,2009-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1126,gw1,2009-07-21,247.8974874888397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1127,gw2,2009-07-21,277.10251251116046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1128,my_sewer,2009-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1129,my_land,2009-07-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1130,my_land,2009-07-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1131,my_land,2009-07-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1132,my_groundwater,2009-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1133,my_reservoir,2009-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1134,gw1,2009-07-22,247.99483757224743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1135,gw2,2009-07-22,277.00516242775274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1136,my_sewer,2009-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 +1137,my_land,2009-07-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1138,my_land,2009-07-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1139,my_land,2009-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1140,my_groundwater,2009-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1141,my_reservoir,2009-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1142,gw1,2009-07-23,248.09153865509913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1143,gw2,2009-07-23,276.90846134490107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1144,my_sewer,2009-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 +1145,my_land,2009-07-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1146,my_land,2009-07-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1147,my_land,2009-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1148,my_groundwater,2009-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1149,my_reservoir,2009-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1150,gw1,2009-07-24,248.18759506406514,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1151,gw2,2009-07-24,276.8124049359351,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1152,my_sewer,2009-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 +1153,my_land,2009-07-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1154,my_land,2009-07-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1155,my_land,2009-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1156,my_groundwater,2009-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1157,my_reservoir,2009-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1158,gw1,2009-07-25,248.28301109697136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1159,gw2,2009-07-25,276.71698890302883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1160,my_sewer,2009-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 +1161,my_land,2009-07-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1162,my_land,2009-07-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1163,my_land,2009-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1164,my_groundwater,2009-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1165,my_reservoir,2009-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1166,gw1,2009-07-26,248.37779102299154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1167,gw2,2009-07-26,276.62220897700865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1168,my_sewer,2009-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 +1169,my_land,2009-07-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1170,my_land,2009-07-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1171,my_land,2009-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1172,my_groundwater,2009-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1173,my_reservoir,2009-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1174,gw1,2009-07-27,248.47193908283828,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1175,gw2,2009-07-27,276.52806091716195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1176,my_sewer,2009-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 +1177,my_land,2009-07-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1178,my_land,2009-07-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1179,my_land,2009-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1180,my_groundwater,2009-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1181,my_reservoir,2009-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1182,gw1,2009-07-28,248.56545948895268,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1183,gw2,2009-07-28,276.43454051104754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1184,my_sewer,2009-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1185,my_land,2009-07-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1186,my_land,2009-07-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1187,my_land,2009-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1188,my_groundwater,2009-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1189,my_reservoir,2009-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1190,gw1,2009-07-29,248.658356425693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1191,gw2,2009-07-29,276.3416435743072,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1192,my_sewer,2009-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 +1193,my_land,2009-07-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1194,my_land,2009-07-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1195,my_land,2009-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1196,my_groundwater,2009-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1197,my_reservoir,2009-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1198,gw1,2009-07-30,248.75063404952172,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1199,gw2,2009-07-30,276.24936595047853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1200,my_sewer,2009-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 +1201,my_land,2009-07-31,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1202,my_land,2009-07-31,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1203,my_land,2009-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1204,my_groundwater,2009-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1205,my_reservoir,2009-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1206,gw1,2009-07-31,248.84229648919157,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1207,gw2,2009-07-31,276.1577035108087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1208,my_sewer,2009-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 +1209,my_land,2009-08-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1210,my_land,2009-08-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1211,my_land,2009-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1212,my_groundwater,2009-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1213,my_reservoir,2009-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1214,gw1,2009-08-01,248.93334784593029,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1215,gw2,2009-08-01,276.06665215406997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1216,my_sewer,2009-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 +1217,my_land,2009-08-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1218,my_land,2009-08-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1219,my_land,2009-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1220,my_groundwater,2009-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1221,my_reservoir,2009-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1222,gw1,2009-08-02,249.02379219362408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1223,gw2,2009-08-02,275.9762078063762,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1224,my_sewer,2009-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 +1225,my_land,2009-08-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1226,my_land,2009-08-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1227,my_land,2009-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1228,my_groundwater,2009-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1229,my_reservoir,2009-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1230,gw1,2009-08-03,249.11363357899992,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1231,gw2,2009-08-03,275.88636642100033,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1232,my_sewer,2009-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1233,my_land,2009-08-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1234,my_land,2009-08-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1235,my_land,2009-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1236,my_groundwater,2009-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1237,my_reservoir,2009-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1238,gw1,2009-08-04,249.2028760218066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1239,gw2,2009-08-04,275.79712397819367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1240,my_sewer,2009-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 +1241,my_land,2009-08-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1242,my_land,2009-08-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1243,my_land,2009-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.95416667,0.0,0.0,0.0 +1244,my_groundwater,2009-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1245,my_reservoir,2009-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1246,gw1,2009-08-05,249.29152351499454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1247,gw2,2009-08-05,275.7084764850057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1248,my_sewer,2009-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.972481341231344,0.0,0.0,0.0 +1249,my_land,2009-08-06,1.281290100754099,percolation,0.0,0.0,0.00010833259799935578,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1250,my_land,2009-08-06,0.34865036755213585,subsurface_runoff,0.0,0.0,2.9478257959008383e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1251,my_land,2009-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 +1252,my_groundwater,2009-08-06,0.02608340562249416,tank,0.0,0.0,2.205342173558314e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1253,my_reservoir,2009-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1254,gw1,2009-08-06,249.37958002489458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1255,gw2,2009-08-06,275.6204199751057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1256,my_sewer,2009-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1257,my_land,2009-08-07,1.2556642987390172,percolation,0.0,0.0,0.00010616594603936867,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1258,my_land,2009-08-07,0.2789202940417087,subsurface_runoff,0.0,0.0,2.3582606367206706e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1259,my_land,2009-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 +1260,my_groundwater,2009-08-07,0.051579934618482204,tank,0.0,0.0,4.3610641482115656e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1261,my_reservoir,2009-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1262,gw1,2009-08-07,249.46704949139527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1263,gw2,2009-08-07,275.532950508605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1264,my_sewer,2009-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1265,my_land,2009-08-08,1.230551012764237,percolation,0.0,0.0,0.0001040426271185813,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1266,my_land,2009-08-08,0.22313623523336695,subsurface_runoff,0.0,0.0,1.8866085093765366e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1267,my_land,2009-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 +1268,my_groundwater,2009-08-08,0.07650148754177939,tank,0.0,0.0,6.468172111326441e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1269,my_reservoir,2009-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1270,gw1,2009-08-08,249.5539358281193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1271,gw2,2009-08-08,275.44606417188095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1272,my_sewer,2009-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1273,my_land,2009-08-09,1.2059399925089522,percolation,0.0,0.0,0.00010196177457620967,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1274,my_land,2009-08-09,0.17850898818669356,subsurface_runoff,0.0,0.0,1.5092868075012294e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1275,my_land,2009-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 +1276,my_groundwater,2009-08-09,0.10085972652757147,tank,0.0,0.0,8.527652092063821e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1277,my_reservoir,2009-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1278,gw1,2009-08-09,249.6402429225985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1279,gw2,2009-08-09,275.35975707740175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1280,my_sewer,2009-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1281,my_land,2009-08-10,1.1818211926587732,percolation,0.0,0.0,9.992253908468548e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1282,my_land,2009-08-10,0.14280719054935484,subsurface_runoff,0.0,0.0,1.2074294460009835e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1283,my_land,2009-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 +1284,my_groundwater,2009-08-10,0.12466608006180614,tank,0.0,0.0,1.0540470364629044e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1285,my_reservoir,2009-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1286,gw1,2009-08-10,249.72597463644786,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1287,gw2,2009-08-10,275.2740253635524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1288,my_sewer,2009-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1289,my_land,2009-08-11,1.1581847688055977,percolation,0.0,0.0,9.792408830299177e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1290,my_land,2009-08-11,0.11424575243948387,subsurface_runoff,0.0,0.0,9.659435568007869e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1291,my_land,2009-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 +1292,my_groundwater,2009-08-11,0.14793174765519415,tank,0.0,0.0,1.2507573843456947e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 +1293,my_reservoir,2009-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1294,gw1,2009-08-11,249.81113480553822,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1295,gw2,2009-08-11,275.1888651944621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1296,my_sewer,2009-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1297,my_land,2009-08-12,1.2688921636286978,percolation,0.0,0.0,0.00010802809237133491,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1298,my_land,2009-08-12,0.12782410948878764,subsurface_runoff,0.0,0.0,1.1009857524992139e-05,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1299,my_land,2009-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1300,my_groundwater,2009-08-12,0.17339293733135466,tank,0.0,0.0,1.4675448217836194e-05,0.0,0.0,0.0,0.0,0.0,16.925814735320973,0.0,0.0,0.0 +1301,my_reservoir,2009-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1302,gw1,2009-08-12,249.89572724016796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1303,gw2,2009-08-12,275.1042727598323,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1304,my_sewer,2009-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1305,my_land,2009-08-13,1.2435143203561239,percolation,0.0,0.0,0.0001058675305239082,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1306,my_land,2009-08-13,0.10225928759103012,subsurface_runoff,0.0,0.0,8.80788601999371e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1307,my_land,2009-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1308,my_groundwater,2009-08-13,0.19827385365241879,tank,0.0,0.0,1.6793920040099736e-05,0.0,0.0,0.0,0.0,0.0,16.929672992197066,0.0,0.0,0.0 +1309,my_reservoir,2009-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1310,gw1,2009-08-13,249.9797557252335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1311,gw2,2009-08-13,275.02024427476675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1312,my_sewer,2009-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1313,my_land,2009-08-14,1.2186440339490014,percolation,0.0,0.0,0.00010375017991343005,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1314,my_land,2009-08-14,0.0818074300728241,subsurface_runoff,0.0,0.0,7.046308815994968e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1315,my_land,2009-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1316,my_groundwater,2009-08-14,0.2225862797093924,tank,0.0,0.0,1.8863992473951454e-05,0.0,0.0,0.0,0.0,0.0,16.932611068915975,0.0,0.0,0.0 +1317,my_reservoir,2009-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1318,gw1,2009-08-14,250.06322402039862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1319,gw2,2009-08-14,274.93677597960163,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1320,my_sewer,2009-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1321,my_land,2009-08-15,1.1942711532700214,percolation,0.0,0.0,0.00010167517631516145,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1322,my_land,2009-08-15,0.06544594405825928,subsurface_runoff,0.0,0.0,5.637047052795974e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1323,my_land,2009-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1324,my_groundwater,2009-08-15,0.2463417624874015,tank,0.0,0.0,2.0886648582039505e-05,0.0,0.0,0.0,0.0,0.0,16.93492275849501,0.0,0.0,0.0 +1325,my_reservoir,2009-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1326,gw1,2009-08-15,250.14613586026263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1327,gw2,2009-08-15,274.85386413973765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1328,my_sewer,2009-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1329,my_land,2009-08-16,1.170385730204621,percolation,0.0,0.0,9.964167278885822e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1330,my_land,2009-08-16,0.05235675524660742,subsurface_runoff,0.0,0.0,4.5096376422367795e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1331,my_land,2009-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1332,my_groundwater,2009-08-16,0.26955161758891993,tank,0.0,0.0,2.2862851728071876e-05,0.0,0.0,0.0,0.0,0.0,16.936788815659256,0.0,0.0,0.0 +1333,my_reservoir,2009-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1334,gw1,2009-08-16,250.22849495452755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1335,gw2,2009-08-16,274.77150504547274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1336,my_sewer,2009-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1337,my_land,2009-08-17,1.1469780156005285,percolation,0.0,0.0,9.764883933308106e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1338,my_land,2009-08-17,0.04188540419728594,subsurface_runoff,0.0,0.0,3.6077101137894236e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1339,my_land,2009-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1340,my_groundwater,2009-08-17,0.2922269338625298,tank,0.0,0.0,2.479354597088942e-05,0.0,0.0,0.0,0.0,0.0,16.93832655146428,0.0,0.0,0.0 +1341,my_reservoir,2009-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1342,gw1,2009-08-17,250.31030498816403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1343,gw2,2009-08-17,274.68969501183625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1344,my_sewer,2009-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1345,my_land,2009-08-18,1.1240384552885179,percolation,0.0,0.0,9.569586254641945e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1346,my_land,2009-08-18,0.03350832335782875,subsurface_runoff,0.0,0.0,2.886168091031539e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1347,my_land,2009-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 +1348,my_groundwater,2009-08-18,0.314378577939104,tank,0.0,0.0,2.6679656450657162e-05,0.0,0.0,0.0,0.0,0.0,16.93961542321208,0.0,0.0,0.0 +1349,my_reservoir,2009-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1350,gw1,2009-08-18,250.39156962157628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1351,gw2,2009-08-18,274.60843037842403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1352,my_sewer,2009-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1353,my_land,2009-08-19,1.1015576861827474,percolation,0.0,0.0,9.378194529549106e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1354,my_land,2009-08-19,0.026806658686263002,subsurface_runoff,0.0,0.0,2.308934472825231e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1355,my_land,2009-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.06785714,0.0,0.0,0.0 +1356,my_groundwater,2009-08-19,0.33601719867726215,tank,0.0,0.0,2.8522089767331588e-05,0.0,0.0,0.0,0.0,0.0,16.940711162966547,0.0,0.0,0.0 +1357,my_reservoir,2009-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1358,gw1,2009-08-19,250.47229249076577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1359,gw2,2009-08-19,274.5277075092345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1360,my_sewer,2009-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 +1361,my_land,2009-08-20,1.0795265324590924,percolation,0.0,0.0,9.190630638958124e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 +1362,my_land,2009-08-20,0.021445326949010402,subsurface_runoff,0.0,0.0,1.8471475782601847e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 +1363,my_land,2009-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.98928571,0.0,0.0,0.0 +1364,my_groundwater,2009-08-20,0.3571532315199148,tank,0.0,0.0,3.0321734351558305e-05,0.0,0.0,0.0,0.0,0.0,16.94165401764364,0.0,0.0,0.0 +1365,my_reservoir,2009-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1366,gw1,2009-08-20,250.552477207494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1367,gw2,2009-08-20,274.4475227925063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1368,my_sewer,2009-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1369,my_land,2009-08-21,1.2743538277174435,percolation,0.0,0.0,0.0001112964486472949,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1370,my_land,2009-08-21,0.07604546588778875,subsurface_runoff,0.0,0.0,7.25411762328986e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 +1371,my_land,2009-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1372,my_groundwater,2009-08-21,0.3822025513625058,tank,0.0,0.0,3.251160772028505e-05,0.0,0.0,0.0,0.0,0.0,16.95168299570742,0.0,0.0,0.0 +1373,my_reservoir,2009-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1374,gw1,2009-08-21,250.63212735944404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1375,gw2,2009-08-21,274.36787264055624,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1376,my_sewer,2009-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1377,my_land,2009-08-22,1.2488667511630946,percolation,0.0,0.0,0.000109070519674349,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1378,my_land,2009-08-22,0.060836372710231,subsurface_runoff,0.0,0.0,5.803294098631889e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 +1379,my_land,2009-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1380,my_groundwater,2009-08-22,0.4066704038470625,tank,0.0,0.0,3.465069285149787e-05,0.0,0.0,0.0,0.0,0.0,16.960293085455767,0.0,0.0,0.0 +1381,my_reservoir,2009-08-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1382,gw1,2009-08-22,250.71124651038107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1383,gw2,2009-08-22,274.2887534896192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1384,my_sewer,2009-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1385,my_land,2009-08-23,1.2238894161398328,percolation,0.0,0.0,0.00010688910928086203,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1386,my_land,2009-08-23,0.0486690981681848,subsurface_runoff,0.0,0.0,4.642635278905511e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 +1387,my_land,2009-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1388,my_groundwater,2009-08-23,0.43056861952314857,tank,0.0,0.0,3.6740022986872385e-05,0.0,0.0,0.0,0.0,0.0,16.967764414536127,0.0,0.0,0.0 +1389,my_reservoir,2009-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1390,gw1,2009-08-23,250.78983820031186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1391,gw2,2009-08-23,274.21016179968836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1392,my_sewer,2009-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 +1393,my_land,2009-08-24,1.1994116278170361,percolation,0.0,0.0,0.00010475132709524478,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 +1394,my_land,2009-08-24,0.03893527853454784,subsurface_runoff,0.0,0.0,3.714108223124409e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 +1395,my_land,2009-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.675,0.0,0.0,0.0 +1396,my_groundwater,2009-08-24,0.45390879182633037,tank,0.0,0.0,3.87806106595584e-05,0.0,0.0,0.0,0.0,0.0,16.9743079252523,0.0,0.0,0.0 +1397,my_reservoir,2009-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1398,gw1,2009-08-24,250.86790594564312,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1399,gw2,2009-08-24,274.1320940543571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1400,my_sewer,2009-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 +1401,my_land,2009-08-25,1.2494945257274752,percolation,0.0,0.0,0.00011018279410845504,0.0,0.0,0.0,0.0,0.0,17.11098423400969,0.0,0.0,0.0 +1402,my_land,2009-08-25,0.051303632478462716,subsurface_runoff,0.0,0.0,5.019312035673719e-06,0.0,0.0,0.0,0.0,0.0,17.528936126118616,0.0,0.0,0.0 +1403,my_land,2009-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 +1404,my_groundwater,2009-08-25,0.4782101584062167,tank,0.0,0.0,4.092666601297448e-05,0.0,0.0,0.0,0.0,0.0,16.98157777819506,0.0,0.0,0.0 +1405,my_reservoir,2009-08-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1406,gw1,2009-08-25,250.94545323933883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1407,gw2,2009-08-25,274.05454676066137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1408,my_sewer,2009-08-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 +1409,my_land,2009-08-26,1.3199176217566646,percolation,0.0,0.0,0.0001176274471703652,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 +1410,my_land,2009-08-26,0.06700562340963791,subsurface_runoff,0.0,0.0,6.640839817404078e-06,0.0,0.0,0.0,0.0,0.0,17.428311098943603,0.0,0.0,0.0 +1411,my_land,2009-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 +1412,my_groundwater,2009-08-26,0.5038843845959619,tank,0.0,0.0,4.321890809391019e-05,0.0,0.0,0.0,0.0,0.0,16.989088436127652,0.0,0.0,0.0 +1413,my_reservoir,2009-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1414,gw1,2009-08-26,251.02248355107656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1415,gw2,2009-08-26,273.9775164489236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1416,my_sewer,2009-08-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 +1417,my_land,2009-08-27,1.2935192693215314,percolation,0.0,0.0,0.0001152748982269579,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 +1418,my_land,2009-08-27,0.05360449872771032,subsurface_runoff,0.0,0.0,5.312671853923262e-06,0.0,0.0,0.0,0.0,0.0,17.428311098943603,0.0,0.0,0.0 +1419,my_land,2009-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.95833333,0.0,0.0,0.0 +1420,my_groundwater,2009-08-27,0.5289570301885175,tank,0.0,0.0,4.5457528394724204e-05,0.0,0.0,0.0,0.0,0.0,16.99572610168884,0.0,0.0,0.0 +1421,my_reservoir,2009-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1422,gw1,2009-08-27,251.0990003274027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1423,gw2,2009-08-27,273.90099967259744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1424,my_sewer,2009-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1425,my_land,2009-08-28,1.3378763066426842,percolation,0.0,0.0,0.00012014168968794171,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1426,my_land,2009-08-28,0.061993101759741966,subsurface_runoff,0.0,0.0,6.201780864233299e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 +1427,my_land,2009-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1428,my_groundwater,2009-08-28,0.554869976712558,tank,0.0,0.0,4.778962611381335e-05,0.0,0.0,0.0,0.0,0.0,17.00126187340013,0.0,0.0,0.0 +1429,my_reservoir,2009-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1430,gw1,2009-08-28,251.17500699188668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1431,gw2,2009-08-28,273.82499300811344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1432,my_sewer,2009-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1433,my_land,2009-08-29,1.3111187805098306,percolation,0.0,0.0,0.00011773885589418288,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1434,my_land,2009-08-29,0.04959448140779357,subsurface_runoff,0.0,0.0,4.961424691386639e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 +1435,my_land,2009-08-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1436,my_groundwater,2009-08-29,0.5801734340882981,tank,0.0,0.0,5.006697875780326e-05,0.0,0.0,0.0,0.0,0.0,17.006195652567865,0.0,0.0,0.0 +1437,my_reservoir,2009-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1438,gw1,2009-08-29,251.2505069452741,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1439,gw2,2009-08-29,273.74949305472603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1440,my_sewer,2009-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1441,my_land,2009-08-30,1.2848964048996339,percolation,0.0,0.0,0.00011538407877629922,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1442,my_land,2009-08-30,0.039675585126234855,subsurface_runoff,0.0,0.0,3.969139753109311e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 +1443,my_land,2009-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.24166667,0.0,0.0,0.0 +1444,my_groundwater,2009-08-30,0.6048798201742485,tank,0.0,0.0,5.2290701485997696e-05,0.0,0.0,0.0,0.0,0.0,17.010619914362486,0.0,0.0,0.0 +1445,my_reservoir,2009-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1446,gw1,2009-08-30,251.32550356563894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1447,gw2,2009-08-30,273.6744964343612,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1448,my_sewer,2009-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 +1449,my_land,2009-08-31,1.259198476801641,percolation,0.0,0.0,0.00011307639720077323,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 +1450,my_land,2009-08-31,0.031740468100987886,subsurface_runoff,0.0,0.0,3.1753118024874486e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 +1451,my_land,2009-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.00277778,0.0,0.0,0.0 +1452,my_groundwater,2009-08-31,0.6290013039015605,tank,0.0,0.0,5.446188710386987e-05,0.0,0.0,0.0,0.0,0.0,17.014609116934906,0.0,0.0,0.0 +1453,my_reservoir,2009-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1454,gw1,2009-08-31,251.4000002085347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1455,gw2,2009-08-31,273.59999979146545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1456,my_sewer,2009-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 +1457,my_land,2009-09-01,1.277122099120253,percolation,0.0,0.0,0.00011523295761573871,0.0,0.0,0.0,0.0,0.0,17.073117204826293,0.0,0.0,0.0 +1458,my_land,2009-09-01,0.0371223314480406,subsurface_runoff,0.0,0.0,3.7424503559983776e-06,0.0,0.0,0.0,0.0,0.0,16.875561746633984,0.0,0.0,0.0 +1459,my_land,2009-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 +1460,my_groundwater,2009-09-01,0.6534273576596118,tank,0.0,0.0,5.667154616614487e-05,0.0,0.0,0.0,0.0,0.0,17.016937035778856,0.0,0.0,0.0 +1461,my_reservoir,2009-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1462,gw1,2009-09-01,251.47400020714446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1463,gw2,2009-09-01,273.52599979285566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1464,my_sewer,2009-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1465,my_land,2009-09-02,1.6873741111987015,percolation,0.0,0.0,0.00015583921329874844,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1466,my_land,2009-09-02,0.14828139007295044,subsurface_runoff,0.0,0.0,1.467039969577135e-05,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1467,my_land,2009-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.525,0.0,0.0,0.0 +1468,my_groundwater,2009-09-02,0.6861439051005791,tank,0.0,0.0,5.9702308428596884e-05,0.0,0.0,0.0,0.0,0.0,17.00408828559599,0.0,0.0,0.0 +1469,my_reservoir,2009-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1470,gw1,2009-09-02,251.54750687243015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1471,gw2,2009-09-02,273.45249312756994,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1472,my_sewer,2009-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1473,my_land,2009-09-03,1.6536266289747275,percolation,0.0,0.0,0.00015272242903277347,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1474,my_land,2009-09-03,0.11862511205836035,subsurface_runoff,0.0,0.0,1.173631975661708e-05,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1475,my_land,2009-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 +1476,my_groundwater,2009-09-03,0.7180916588562418,tank,0.0,0.0,6.266204496283542e-05,0.0,0.0,0.0,0.0,0.0,16.992659047062975,0.0,0.0,0.0 +1477,my_reservoir,2009-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1478,gw1,2009-09-03,251.62052349328061,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1479,gw2,2009-09-03,273.37947650671947,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1480,my_sewer,2009-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1481,my_land,2009-09-04,1.620554096395233,percolation,0.0,0.0,0.000149667980452118,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1482,my_land,2009-09-04,0.09490008964668828,subsurface_runoff,0.0,0.0,9.389055805293664e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1483,my_land,2009-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 +1484,my_groundwater,2009-09-04,0.749286280957147,tank,0.0,0.0,6.555220230963215e-05,0.0,0.0,0.0,0.0,0.0,16.98242791464239,0.0,0.0,0.0 +1485,my_reservoir,2009-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1486,gw1,2009-09-04,251.69305333665875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1487,gw2,2009-09-04,273.30694666334136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1488,my_sewer,2009-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1489,my_land,2009-09-05,1.5881430144673283,percolation,0.0,0.0,0.00014667462084307564,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1490,my_land,2009-09-05,0.07592007171735063,subsurface_runoff,0.0,0.0,7.511244644234931e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1491,my_land,2009-09-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 +1492,my_groundwater,2009-09-05,0.779743119477839,tank,0.0,0.0,6.837419801387783e-05,0.0,0.0,0.0,0.0,0.0,16.97321724901053,0.0,0.0,0.0 +1493,my_reservoir,2009-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1494,gw1,2009-09-05,251.7650996477477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1495,gw2,2009-09-05,273.2349003522524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1496,my_sewer,2009-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1497,my_land,2009-09-06,1.5563801541779818,percolation,0.0,0.0,0.00014374112842621413,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1498,my_land,2009-09-06,0.060736057373880506,subsurface_runoff,0.0,0.0,6.008995715387945e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1499,my_land,2009-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 +1500,my_groundwater,2009-09-06,0.8094772148177677,tank,0.0,0.0,7.112942120466249e-05,0.0,0.0,0.0,0.0,0.0,16.96488287186836,0.0,0.0,0.0 +1501,my_reservoir,2009-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1502,gw1,2009-09-06,251.83666565009605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1503,gw2,2009-09-06,273.16333434990406,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1504,my_sewer,2009-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1505,my_land,2009-09-07,1.5252525510944221,percolation,0.0,0.0,0.00014086630585768983,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1506,my_land,2009-09-07,0.04858884589910441,subsurface_runoff,0.0,0.0,4.807196572310356e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1507,my_land,2009-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.025,0.0,0.0,0.0 +1508,my_groundwater,2009-09-07,0.8385033058565741,tank,0.0,0.0,7.38192331637538e-05,0.0,0.0,0.0,0.0,0.0,16.95730654155062,0.0,0.0,0.0 +1509,my_reservoir,2009-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1510,gw1,2009-09-07,251.9077545457621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1511,gw2,2009-09-07,273.092245454238,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1512,my_sewer,2009-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1513,my_land,2009-09-08,1.4947475000725337,percolation,0.0,0.0,0.00013804897974053603,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1514,my_land,2009-09-08,0.038871076719283526,subsurface_runoff,0.0,0.0,3.845757257848285e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1515,my_land,2009-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1516,my_groundwater,2009-09-08,0.8668358359862665,tank,0.0,0.0,7.644496788270533e-05,0.0,0.0,0.0,0.0,0.0,16.95039037166423,0.0,0.0,0.0 +1517,my_reservoir,2009-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1518,gw1,2009-09-08,251.97836951545702,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1519,gw2,2009-09-08,273.0216304845431,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1520,my_sewer,2009-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1521,my_land,2009-09-09,1.464852550071083,percolation,0.0,0.0,0.00013528800014572532,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1522,my_land,2009-09-09,0.03109686137542682,subsurface_runoff,0.0,0.0,3.0766058062786277e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1523,my_land,2009-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1524,my_groundwater,2009-09-09,0.8944889590227478,tank,0.0,0.0,7.900793260882226e-05,0.0,0.0,0.0,0.0,0.0,16.944052631535158,0.0,0.0,0.0 +1525,my_reservoir,2009-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1526,gw1,2009-09-09,252.0485137186873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1527,gw2,2009-09-09,272.9514862813128,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1528,my_sewer,2009-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1529,my_land,2009-09-10,1.4355554990696613,percolation,0.0,0.0,0.00013258224014281081,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1530,my_land,2009-09-10,0.024877489100341457,subsurface_runoff,0.0,0.0,2.4612846450229022e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1531,my_land,2009-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1532,my_groundwater,2009-09-10,0.921476544999109,tank,0.0,0.0,8.150940838020743e-05,0.0,0.0,0.0,0.0,0.0,16.938224545160864,0.0,0.0,0.0 +1533,my_reservoir,2009-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1534,gw1,2009-09-10,252.11819029389605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1535,gw2,2009-09-10,272.88180970610404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1536,my_sewer,2009-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1537,my_land,2009-09-11,1.406844389088268,percolation,0.0,0.0,0.0001299305953399546,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1538,my_land,2009-09-11,0.019901991280273167,subsurface_runoff,0.0,0.0,1.9690277160183216e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1539,my_land,2009-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1540,my_groundwater,2009-09-11,0.947812185843051,tank,0.0,0.0,8.3950650550106e-05,0.0,0.0,0.0,0.0,0.0,16.93284782224831,0.0,0.0,0.0 +1541,my_reservoir,2009-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1542,gw1,2009-09-11,252.1874023586034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1543,gw2,2009-09-11,272.8125976413967,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1544,my_sewer,2009-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1545,my_land,2009-09-12,1.3787075013065027,percolation,0.0,0.0,0.00012733198343315553,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1546,my_land,2009-09-12,0.015921593024218535,subsurface_runoff,0.0,0.0,1.5752221728146574e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1547,my_land,2009-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1548,my_groundwater,2009-09-12,0.9735092009407543,tank,0.0,0.0,8.633288930076283e-05,0.0,0.0,0.0,0.0,0.0,16.92787273317549,0.0,0.0,0.0 +1549,my_reservoir,2009-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1550,gw1,2009-09-12,252.25615300954604,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1551,gw2,2009-09-12,272.743846990454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1552,my_sewer,2009-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1553,my_land,2009-09-13,1.3511333512803727,percolation,0.0,0.0,0.0001247853437644924,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1554,my_land,2009-09-13,0.012737274419374828,subsurface_runoff,0.0,0.0,1.2601777382517259e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1555,my_land,2009-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1556,my_groundwater,2009-09-13,0.9985806425894672,tank,0.0,0.0,8.865733014700238e-05,0.0,0.0,0.0,0.0,0.0,16.92325659302749,0.0,0.0,0.0 +1557,my_reservoir,2009-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1558,gw1,2009-09-13,252.32444532281573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1559,gw2,2009-09-13,272.6755546771843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1560,my_sewer,2009-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1561,my_land,2009-09-14,1.3241106842547652,percolation,0.0,0.0,0.00012228963688920257,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1562,my_land,2009-09-14,0.010189819535499862,subsurface_runoff,0.0,0.0,1.0081421906013808e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1563,my_land,2009-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1564,my_groundwater,2009-09-14,1.023039301341037,tank,0.0,0.0,9.09251544297365e-05,0.0,0.0,0.0,0.0,0.0,16.9189625567588,0.0,0.0,0.0 +1565,my_reservoir,2009-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1566,gw1,2009-09-14,252.39228235399696,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1567,gw2,2009-09-14,272.6077176460031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1568,my_sewer,2009-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1569,my_land,2009-09-15,1.29762847056967,percolation,0.0,0.0,0.00011984384415141852,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1570,my_land,2009-09-15,0.00815185562839989,subsurface_runoff,0.0,0.0,8.065137524811046e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1571,my_land,2009-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1572,my_groundwater,2009-09-15,1.046897711238567,tank,0.0,0.0,9.313751979960174e-05,0.0,0.0,0.0,0.0,0.0,16.914958653450107,0.0,0.0,0.0 +1573,my_reservoir,2009-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1574,gw1,2009-09-15,252.45966713830364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1575,gw2,2009-09-15,272.5403328616964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1576,my_sewer,2009-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1577,my_land,2009-09-16,1.2716759011582766,percolation,0.0,0.0,0.00011744696726839015,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1578,my_land,2009-09-16,0.006521484502719913,subsurface_runoff,0.0,0.0,6.452110019848837e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1579,my_land,2009-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1580,my_groundwater,2009-09-16,1.0701681549483353,tank,0.0,0.0,9.529556069092354e-05,0.0,0.0,0.0,0.0,0.0,16.91121700607666,0.0,0.0,0.0 +1581,my_reservoir,2009-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1582,gw1,2009-09-16,252.52660269071495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1583,gw2,2009-09-16,272.4733973092851,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1584,my_sewer,2009-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1585,my_land,2009-09-17,1.246242383135111,percolation,0.0,0.0,0.00011509802792302235,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1586,my_land,2009-09-17,0.0052171876021759305,subsurface_runoff,0.0,0.0,5.16168801587907e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1587,my_land,2009-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1588,my_groundwater,2009-09-17,1.0928626687890721,tank,0.0,0.0,9.740038878620062e-05,0.0,0.0,0.0,0.0,0.0,16.907713196503536,0.0,0.0,0.0 +1589,my_reservoir,2009-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1590,gw1,2009-09-17,252.5930920061102,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1591,gw2,2009-09-17,272.40690799388983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1592,my_sewer,2009-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1593,my_land,2009-09-18,1.2213175354724088,percolation,0.0,0.0,0.0001127960673645619,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1594,my_land,2009-09-18,0.004173750081740745,subsurface_runoff,0.0,0.0,4.129350412703256e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1595,my_land,2009-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1596,my_groundwater,2009-09-18,1.1149930476606449,tank,0.0,0.0,9.945309347129942e-05,0.0,0.0,0.0,0.0,0.0,16.904425745119838,0.0,0.0,0.0 +1597,my_reservoir,2009-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1598,gw1,2009-09-18,252.6591380594028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1599,gw2,2009-09-18,272.3408619405972,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1600,my_sewer,2009-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1601,my_land,2009-09-19,1.1968911847629606,percolation,0.0,0.0,0.00011054014601727066,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1602,my_land,2009-09-19,0.003339000065392596,subsurface_runoff,0.0,0.0,3.303480330162605e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1603,my_land,2009-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1604,my_groundwater,2009-09-19,1.1365708498741678,tank,0.0,0.0,0.00010145474228154418,0.0,0.0,0.0,0.0,0.0,16.901335681671835,0.0,0.0,0.0 +1605,my_reservoir,2009-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1606,gw1,2009-09-19,252.72474380567346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1607,gw2,2009-09-19,272.2752561943266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1608,my_sewer,2009-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1609,my_land,2009-09-20,1.1729533610677014,percolation,0.0,0.0,0.00010832934309692525,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1610,my_land,2009-09-20,0.0026712000523140766,subsurface_runoff,0.0,0.0,2.642784264130084e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1611,my_land,2009-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1612,my_groundwater,2009-09-20,1.1576074018855034,tank,0.0,0.0,0.00010340638133888487,0.0,0.0,0.0,0.0,0.0,16.898426189176842,0.0,0.0,0.0 +1613,my_reservoir,2009-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1614,gw1,2009-09-20,252.7899121803023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1615,gw2,2009-09-20,272.2100878196977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1616,my_sewer,2009-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1617,my_land,2009-09-21,1.1494942938463475,percolation,0.0,0.0,0.00010616275623498675,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1618,my_land,2009-09-21,0.0021369600418512614,subsurface_runoff,0.0,0.0,2.1142274113040672e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1619,my_land,2009-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1620,my_groundwater,2009-09-21,1.17811380293409,tank,0.0,0.0,0.00010530903578032131,0.0,0.0,0.0,0.0,0.0,16.8956823067999,0.0,0.0,0.0 +1621,my_reservoir,2009-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1622,gw1,2009-09-21,252.8546460991003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1623,gw2,2009-09-21,272.14535390089975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1624,my_sewer,2009-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1625,my_land,2009-09-22,1.1265044079694206,percolation,0.0,0.0,0.00010403950111028701,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1626,my_land,2009-09-22,0.001709568033481009,subsurface_runoff,0.0,0.0,1.6913819290432538e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1627,my_land,2009-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1628,my_groundwater,2009-09-22,1.1981009295889893,tank,0.0,0.0,0.0001071637101777585,0.0,0.0,0.0,0.0,0.0,16.893090680608534,0.0,0.0,0.0 +1629,my_reservoir,2009-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1630,gw1,2009-09-22,252.91894845843964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1631,gw2,2009-09-22,272.08105154156044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1632,my_sewer,2009-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1633,my_land,2009-09-23,1.1039743198100322,percolation,0.0,0.0,0.00010195871108808127,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1634,my_land,2009-09-23,0.0013676544267848072,subsurface_runoff,0.0,0.0,1.353105543234603e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1635,my_land,2009-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1636,my_groundwater,2009-09-23,1.2175794402040068,tank,0.0,0.0,0.00010897138894946432,0.0,0.0,0.0,0.0,0.0,16.89063935344019,0.0,0.0,0.0 +1637,my_reservoir,2009-09-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1638,gw1,2009-09-23,252.98282213538337,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1639,gw2,2009-09-23,272.0171778646167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1640,my_sewer,2009-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1641,my_land,2009-09-24,1.0818948334138316,percolation,0.0,0.0,9.991953686631965e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1642,my_land,2009-09-24,0.0010941235414278457,subsurface_runoff,0.0,0.0,1.0824844345876823e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1643,my_land,2009-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1644,my_groundwater,2009-09-24,1.2365597792837069,tank,0.0,0.0,0.00011073303676329788,0.0,0.0,0.0,0.0,0.0,16.88831758690411,0.0,0.0,0.0 +1645,my_reservoir,2009-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1646,gw1,2009-09-24,253.04626998781416,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1647,gw2,2009-09-24,271.95373001218593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1648,my_sewer,2009-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1649,my_land,2009-09-25,1.060256936745555,percolation,0.0,0.0,9.792114612899325e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1650,my_land,2009-09-25,0.0008752988331422766,subsurface_runoff,0.0,0.0,8.659875476701459e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1651,my_land,2009-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1652,my_groundwater,2009-09-25,1.2550521817621036,tank,0.0,0.0,0.0001124495989318727,0.0,0.0,0.0,0.0,0.0,16.886115709927022,0.0,0.0,0.0 +1653,my_reservoir,2009-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1654,gw1,2009-09-25,253.10929485456205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1655,gw2,2009-09-25,271.890705145438,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1656,my_sewer,2009-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1657,my_land,2009-09-26,1.039051798010644,percolation,0.0,0.0,9.596272320641339e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1658,my_land,2009-09-26,0.0007002390665138212,subsurface_runoff,0.0,0.0,6.927900381361168e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1659,my_land,2009-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1660,my_groundwater,2009-09-26,1.2730666771957722,tank,0.0,0.0,0.00011412200179981643,0.0,0.0,0.0,0.0,0.0,16.884024989336616,0.0,0.0,0.0 +1661,my_reservoir,2009-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1662,gw1,2009-09-26,253.17189955553164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1663,gw2,2009-09-26,271.8281004444684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1664,my_sewer,2009-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1665,my_land,2009-09-27,1.018270762050431,percolation,0.0,0.0,9.404346874228512e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1666,my_land,2009-09-27,0.000560191253211057,subsurface_runoff,0.0,0.0,5.5423203050889344e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1667,my_land,2009-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1668,my_groundwater,2009-09-27,1.290613093873095,tank,0.0,0.0,0.00011575115312328484,0.0,0.0,0.0,0.0,0.0,16.882037518830213,0.0,0.0,0.0 +1669,my_reservoir,2009-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1670,gw1,2009-09-27,253.2340868918281,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1671,gw2,2009-09-27,271.76591310817196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1672,my_sewer,2009-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1673,my_land,2009-09-28,0.9979053468094223,percolation,0.0,0.0,9.216259936743942e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1674,my_land,2009-09-28,0.0004481530025688456,subsurface_runoff,0.0,0.0,4.433856244071148e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1675,my_land,2009-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1676,my_groundwater,2009-09-28,1.3077010628413184,tank,0.0,0.0,0.00011733794244188521,0.0,0.0,0.0,0.0,0.0,16.880146123352027,0.0,0.0,0.0 +1677,my_reservoir,2009-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1678,gw1,2009-09-28,253.2958596458826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1679,gw2,2009-09-28,271.7041403541175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1680,my_sewer,2009-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1681,my_land,2009-09-29,0.9779472398732338,percolation,0.0,0.0,9.031934738009064e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1682,my_land,2009-09-29,0.00035852240205507647,subsurface_runoff,0.0,0.0,3.5470849952569185e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1683,my_land,2009-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1684,my_groundwater,2009-09-29,1.324340021853063,tank,0.0,0.0,0.00011888324144316091,0.0,0.0,0.0,0.0,0.0,16.878344276440632,0.0,0.0,0.0 +1685,my_reservoir,2009-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1686,gw1,2009-09-29,253.3572205815767,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1687,gw2,2009-09-29,271.6427794184234,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1688,my_sewer,2009-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1689,my_land,2009-09-30,0.9583882950757692,percolation,0.0,0.0,8.851296043248882e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1690,my_land,2009-09-30,0.0002868179216440612,subsurface_runoff,0.0,0.0,2.8376679962055346e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1691,my_land,2009-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1692,my_groundwater,2009-09-30,1.3405392192339014,tank,0.0,0.0,0.00012038790431978581,0.0,0.0,0.0,0.0,0.0,16.876626028539576,0.0,0.0,0.0 +1693,my_reservoir,2009-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1694,gw1,2009-09-30,253.4181724443662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1695,gw2,2009-09-30,271.58182755563394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1696,my_sewer,2009-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1697,my_land,2009-10-01,0.9392205291742538,percolation,0.0,0.0,8.674270122383905e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1698,my_land,2009-10-01,0.00022945433731524895,subsurface_runoff,0.0,0.0,2.2701343969644278e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1699,my_land,2009-10-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1700,my_groundwater,2009-10-01,1.3563077176725784,tank,0.0,0.0,0.0001218527681196145,0.0,0.0,0.0,0.0,0.0,16.87498594461123,0.0,0.0,0.0 +1701,my_reservoir,2009-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1702,gw1,2009-10-01,253.47871796140376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1703,gw2,2009-10-01,271.5212820385964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1704,my_sewer,2009-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1705,my_land,2009-10-02,0.9204361185907687,percolation,0.0,0.0,8.500784719936227e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1706,my_land,2009-10-02,0.00018356346985219917,subsurface_runoff,0.0,0.0,1.8161075175715424e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1707,my_land,2009-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1708,my_groundwater,2009-10-02,1.3716543979354234,tank,0.0,0.0,0.00012327865308873104,0.0,0.0,0.0,0.0,0.0,16.873419049675295,0.0,0.0,0.0 +1709,my_reservoir,2009-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1710,gw1,2009-10-02,253.53885984166106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1711,gw2,2009-10-02,271.46114015833905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1712,my_sewer,2009-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1713,my_land,2009-10-03,0.9020273962189533,percolation,0.0,0.0,8.330769025537503e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1714,my_land,2009-10-03,0.00014685077588175933,subsurface_runoff,0.0,0.0,1.452886014057234e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1715,my_land,2009-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1716,my_groundwater,2009-10-03,1.3865879625064708,tank,0.0,0.0,0.00012466636300763648,0.0,0.0,0.0,0.0,0.0,16.87192078112182,0.0,0.0,0.0 +1717,my_reservoir,2009-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1718,gw1,2009-10-03,253.59860077604998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1719,gw2,2009-10-03,271.40139922395014,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1720,my_sewer,2009-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 +1721,my_land,2009-10-04,0.8839868482945743,percolation,0.0,0.0,8.164153645026752e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1722,my_land,2009-10-04,0.00011748062070540748,subsurface_runoff,0.0,0.0,1.1623088112457872e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1723,my_land,2009-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1724,my_groundwater,2009-10-04,1.4011169391547726,tank,0.0,0.0,0.00012601668552071214,0.0,0.0,0.0,0.0,0.0,16.870486946835605,0.0,0.0,0.0 +1725,my_reservoir,2009-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1726,gw1,2009-10-04,253.65794343754297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1727,gw2,2009-10-04,271.3420565624571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1728,my_sewer,2009-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0 +1729,my_land,2009-10-05,0.8663071113286828,percolation,0.0,0.0,8.000870572126217e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1730,my_land,2009-10-05,9.398449656432598e-05,subsurface_runoff,0.0,0.0,9.298470489966297e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1731,my_land,2009-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1732,my_groundwater,2009-10-05,1.4152496844303624,tank,0.0,0.0,0.0001273303924590932,0.0,0.0,0.0,0.0,0.0,16.86911368832221,0.0,0.0,0.0 +1733,my_reservoir,2009-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1734,gw1,2009-10-05,253.7168904812927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1735,gw2,2009-10-05,271.2831095187074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1736,my_sewer,2009-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0 +1737,my_land,2009-10-06,0.8489809691021091,percolation,0.0,0.0,7.840853160683693e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1738,my_land,2009-10-06,7.518759725146078e-05,subsurface_runoff,0.0,0.0,7.438776391973037e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1739,my_land,2009-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1740,my_groundwater,2009-10-06,1.4289943870902937,tank,0.0,0.0,0.00012860824015708467,0.0,0.0,0.0,0.0,0.0,16.867797448152178,0.0,0.0,0.0 +1741,my_reservoir,2009-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1742,gw1,2009-10-06,253.77544454475074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1743,gw2,2009-10-06,271.22455545524934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1744,my_sewer,2009-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 +1745,my_land,2009-10-07,0.8320013497200669,percolation,0.0,0.0,7.68403609747002e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1746,my_land,2009-10-07,6.015007780116862e-05,subsurface_runoff,0.0,0.0,5.9510211135784294e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1747,my_land,2009-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1748,my_groundwater,2009-10-07,1.442359071456155,tank,0.0,0.0,0.00012985096976224835,0.0,0.0,0.0,0.0,0.0,16.866534941144867,0.0,0.0,0.0 +1749,my_reservoir,2009-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1750,gw1,2009-10-07,253.83360824778575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1751,gw2,2009-10-07,271.16639175221434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1752,my_sewer,2009-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 +1753,my_land,2009-10-08,0.8153613227256655,percolation,0.0,0.0,7.53035537552062e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1754,my_land,2009-10-08,4.81200622409349e-05,subsurface_runoff,0.0,0.0,4.760816890862744e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1755,my_land,2009-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1756,my_groundwater,2009-10-08,1.4553516007044298,tank,0.0,0.0,0.000131059307539288,0.0,0.0,0.0,0.0,0.0,16.865323128800053,0.0,0.0,0.0 +1757,my_reservoir,2009-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1758,gw1,2009-10-08,253.8913841928005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1759,gw2,2009-10-08,271.10861580719956,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1760,my_sewer,2009-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 +1761,my_land,2009-10-09,0.7990540962711522,percolation,0.0,0.0,7.379748268010208e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1762,my_land,2009-10-09,3.849604979274792e-05,subsurface_runoff,0.0,0.0,3.808653512690195e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1763,my_land,2009-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1764,my_groundwater,2009-10-09,1.4679796800910456,tank,0.0,0.0,0.00013223396516785614,0.0,0.0,0.0,0.0,0.0,16.864159196558244,0.0,0.0,0.0 +1765,my_reservoir,2009-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1766,gw1,2009-10-09,253.9487749648485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1767,gw2,2009-10-09,271.05122503515156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1768,my_sewer,2009-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 +1769,my_land,2009-10-10,0.7830730143457292,percolation,0.0,0.0,7.232153302650003e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1770,my_land,2009-10-10,3.0796839834198334e-05,subsurface_runoff,0.0,0.0,3.0469228101521557e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1771,my_land,2009-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1772,my_groundwater,2009-10-10,1.4802508601114275,tank,0.0,0.0,0.00013337564003440452,0.0,0.0,0.0,0.0,0.0,16.863040533531098,0.0,0.0,0.0 +1773,my_reservoir,2009-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1774,gw1,2009-10-10,254.0057831317495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1775,gw2,2009-10-10,270.99421686825053,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1776,my_sewer,2009-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1777,my_land,2009-10-11,0.7674115540588146,percolation,0.0,0.0,7.087510236597003e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1778,my_land,2009-10-11,2.4637471867358668e-05,subsurface_runoff,0.0,0.0,2.4375382481217244e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1779,my_land,2009-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1780,my_groundwater,2009-10-11,1.4921725395973462,tank,0.0,0.0,0.00013448501551819718,0.0,0.0,0.0,0.0,0.0,16.861964714394563,0.0,0.0,0.0 +1781,my_reservoir,2009-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1782,gw1,2009-10-11,254.0624112442045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1783,gw2,2009-10-11,270.9375887557955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1784,my_sewer,2009-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1785,my_land,2009-10-12,0.7520633229776382,percolation,0.0,0.0,6.945760031865063e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1786,my_land,2009-10-12,1.9709977493886934e-05,subsurface_runoff,0.0,0.0,1.9500305984973796e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1787,my_land,2009-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1788,my_groundwater,2009-10-12,1.5037519687518262,tank,0.0,0.0,0.0001355627612716028,0.0,0.0,0.0,0.0,0.0,16.86092948318018,0.0,0.0,0.0 +1789,my_reservoir,2009-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1790,gw1,2009-10-12,254.1186618359098,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1791,gw2,2009-10-12,270.8813381640902,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1792,my_sewer,2009-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1793,my_land,2009-10-13,0.7370220565180855,percolation,0.0,0.0,6.806844831227763e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1794,my_land,2009-10-13,1.5767981995109546e-05,subsurface_runoff,0.0,0.0,1.5600244787979038e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1795,my_land,2009-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1796,my_groundwater,2009-10-13,1.5149962521233504,tank,0.0,0.0,0.00013660953349478087,0.0,0.0,0.0,0.0,0.0,16.85993273873641,0.0,0.0,0.0 +1797,my_reservoir,2009-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1798,gw1,2009-10-13,254.1745374236704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1799,gw2,2009-10-13,270.8254625763296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1800,my_sewer,2009-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1801,my_land,2009-10-14,0.7222816153877238,percolation,0.0,0.0,6.670707934603207e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1802,my_land,2009-10-14,1.2614385596087637e-05,subsurface_runoff,0.0,0.0,1.248019583038323e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1803,my_land,2009-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1804,my_groundwater,2009-10-14,1.525912351520578,tank,0.0,0.0,0.00013762597520487386,0.0,0.0,0.0,0.0,0.0,16.85897252166262,0.0,0.0,0.0 +1805,my_reservoir,2009-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1806,gw1,2009-10-14,254.2300405075126,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1807,gw2,2009-10-14,270.7699594924874,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1808,my_sewer,2009-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1809,my_land,2009-10-15,0.7078359830799693,percolation,0.0,0.0,6.537293775911144e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1810,my_land,2009-10-15,1.009150847687011e-05,subsurface_runoff,0.0,0.0,9.984156664306585e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1811,my_land,2009-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1812,my_groundwater,2009-10-15,1.5365070888687615,tank,0.0,0.0,0.00013861271649981503,0.0,0.0,0.0,0.0,0.0,16.858047002544577,0.0,0.0,0.0 +1813,my_reservoir,2009-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1814,gw1,2009-10-15,254.28517357079585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1815,gw2,2009-10-15,270.71482642920415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1816,my_sewer,2009-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1817,my_land,2009-10-16,0.6936792634183699,percolation,0.0,0.0,6.40654790039292e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1818,my_land,2009-10-16,8.073206781496088e-06,subsurface_runoff,0.0,0.0,7.987325331445268e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1819,my_land,2009-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1820,my_groundwater,2009-10-16,1.546787149009035,tank,0.0,0.0,0.00013957037481685975,0.0,0.0,0.0,0.0,0.0,16.857154471342714,0.0,0.0,0.0 +1821,my_reservoir,2009-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1822,gw1,2009-10-16,254.3399390803239,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1823,gw2,2009-10-16,270.66006091967614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1824,my_sewer,2009-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1825,my_land,2009-10-17,0.6798056781500026,percolation,0.0,0.0,6.278416942385061e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1826,my_land,2009-10-17,6.4585654251968705e-06,subsurface_runoff,0.0,0.0,6.389860265156214e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1827,my_land,2009-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1828,my_groundwater,2009-10-17,1.5567590824417088,tank,0.0,0.0,0.000140499555185946,0.0,0.0,0.0,0.0,0.0,16.856293327803442,0.0,0.0,0.0 +1829,my_reservoir,2009-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1830,gw1,2009-10-17,254.39433948645507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1831,gw2,2009-10-17,270.605660513545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1832,my_sewer,2009-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1833,my_land,2009-10-18,0.6662095645870025,percolation,0.0,0.0,6.152848603537361e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1834,my_land,2009-10-18,5.166852340157496e-06,subsurface_runoff,0.0,0.0,5.111888212124971e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1835,my_land,2009-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1836,my_groundwater,2009-10-18,1.5664293080146972,tank,0.0,0.0,0.00014140085047798697,0.0,0.0,0.0,0.0,0.0,16.855462072780295,0.0,0.0,0.0 +1837,my_reservoir,2009-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1838,gw1,2009-10-18,254.44837722321202,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1839,gw2,2009-10-18,270.551622776788,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1840,my_sewer,2009-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 +1841,my_land,2009-10-19,0.6528853732952625,percolation,0.0,0.0,6.0297916314666134e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1842,my_land,2009-10-19,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1843,my_land,2009-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1844,my_groundwater,2009-10-19,1.5758041155581712,tank,0.0,0.0,0.0001422748416481977,0.0,0.0,0.0,0.0,0.0,16.854659300365785,0.0,0.0,0.0 +1845,my_reservoir,2009-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1846,gw1,2009-10-19,254.5020547083906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1847,gw2,2009-10-19,270.4979452916094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1848,my_sewer,2009-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 +1849,my_land,2009-10-20,0.6398276658293572,percolation,0.0,0.0,5.9091957988372814e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1850,my_land,2009-10-20,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1851,my_land,2009-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1852,my_groundwater,2009-10-20,1.5848896684665164,tank,0.0,0.0,0.0001431220979745548,0.0,0.0,0.0,0.0,0.0,16.853883690746912,0.0,0.0,0.0 +1853,my_reservoir,2009-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1854,gw1,2009-10-20,254.555374343668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1855,gw2,2009-10-20,270.44462565633205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1856,my_sewer,2009-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 +1857,my_land,2009-10-21,0.6270311125127701,percolation,0.0,0.0,5.7910118828605355e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1858,my_land,2009-10-21,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1859,my_land,2009-10-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1860,my_groundwater,2009-10-21,1.593692006228646,tank,0.0,0.0,0.00014394317729148642,0.0,0.0,0.0,0.0,0.0,16.853134003707886,0.0,0.0,0.0 +1861,my_reservoir,2009-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1862,gw1,2009-10-21,254.60833851471023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1863,gw2,2009-10-21,270.39166148528983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1864,my_sewer,2009-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0 +1865,my_land,2009-10-22,0.6144904902625147,percolation,0.0,0.0,5.6751916452033246e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1866,my_land,2009-10-22,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1867,my_land,2009-10-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1868,my_groundwater,2009-10-22,1.602217046907704,tank,0.0,0.0,0.0001447386262188884,0.0,0.0,0.0,0.0,0.0,16.852409072712693,0.0,0.0,0.0 +1869,my_reservoir,2009-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1870,gw1,2009-10-22,254.66094959127884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1871,gw2,2009-10-22,270.3390504087212,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1872,my_sewer,2009-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0 +1873,my_land,2009-10-23,0.6022006804572644,percolation,0.0,0.0,5.561687812299258e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1874,my_land,2009-10-23,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1875,my_land,2009-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1876,my_groundwater,2009-10-23,1.6104705895711717,tank,0.0,0.0,0.00014550898038655924,0.0,0.0,0.0,0.0,0.0,16.851707799507963,0.0,0.0,0.0 +1877,my_reservoir,2009-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1878,gw1,2009-10-23,254.71320992733698,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1879,gw2,2009-10-23,270.28679007266305,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1880,my_sewer,2009-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 +1881,my_land,2009-10-24,0.5901566668481191,percolation,0.0,0.0,5.450454056053273e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1882,my_land,2009-10-24,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1883,my_land,2009-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1884,my_groundwater,2009-10-24,1.6184583166723663,tank,0.0,0.0,0.00014625476465414655,0.0,0.0,0.0,0.0,0.0,16.851029149193607,0.0,0.0,0.0 +1885,my_reservoir,2009-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1886,gw1,2009-10-24,254.76512186115474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1887,gw2,2009-10-24,270.2348781388453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1888,my_sewer,2009-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 +1889,my_land,2009-10-25,0.5783535335111567,percolation,0.0,0.0,5.3414449749322075e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1890,my_land,2009-10-25,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1891,my_land,2009-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1892,my_groundwater,2009-10-25,1.6261857963843054,tank,0.0,0.0,0.0001469764933266938,0.0,0.0,0.0,0.0,0.0,16.850372145714548,0.0,0.0,0.0 +1893,my_reservoir,2009-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1894,gw1,2009-10-25,254.8166877154137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1895,gw2,2009-10-25,270.18331228458635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1896,my_sewer,2009-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 +1897,my_land,2009-10-26,0.5667864628409336,percolation,0.0,0.0,5.2346160754335634e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1898,my_land,2009-10-26,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1899,my_land,2009-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1900,my_groundwater,2009-10-26,1.6336584848868922,tank,0.0,0.0,0.00014767467036587607,0.0,0.0,0.0,0.0,0.0,16.849735867732175,0.0,0.0,0.0 +1901,my_reservoir,2009-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1902,gw1,2009-10-26,254.86790979731094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1903,gw2,2009-10-26,270.1320902026891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1904,my_sewer,2009-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 +1905,my_land,2009-10-27,0.5554507335841149,percolation,0.0,0.0,5.129923753924892e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1906,my_land,2009-10-27,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1907,my_land,2009-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1908,my_groundwater,2009-10-27,1.6408817286083515,tank,0.0,0.0,0.0001483497895970104,0.0,0.0,0.0,0.0,0.0,16.84911944483876,0.0,0.0,0.0 +1909,my_reservoir,2009-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1910,gw1,2009-10-27,254.9187903986622,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1911,gw2,2009-10-27,270.08120960133783,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1912,my_sewer,2009-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 +1913,my_land,2009-10-28,0.5443417189124325,percolation,0.0,0.0,5.027325278846395e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1914,my_land,2009-10-28,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1915,my_land,2009-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1916,my_groundwater,2009-10-28,1.6478607664218337,tank,0.0,0.0,0.00014900233491192588,0.0,0.0,0.0,0.0,0.0,16.84852205408199,0.0,0.0,0.0 +1917,my_reservoir,2009-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1918,gw1,2009-10-28,254.96933179600444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1919,gw2,2009-10-28,270.03066820399556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1920,my_sewer,2009-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 +1921,my_land,2009-10-29,0.5334548845341839,percolation,0.0,0.0,4.926778773269467e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1922,my_land,2009-10-29,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1923,my_land,2009-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1924,my_groundwater,2009-10-29,1.6546007317980822,tank,0.0,0.0,0.00014963278046777593,0.0,0.0,0.0,0.0,0.0,16.847942916770435,0.0,0.0,0.0 +1925,my_reservoir,2009-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1926,gw1,2009-10-29,255.01953625069774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1927,gw2,2009-10-29,269.98046374930226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1928,my_sewer,2009-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.121428570000003,0.0,0.0,0.0 +1929,my_land,2009-10-30,0.5227857868435002,percolation,0.0,0.0,4.828243197804078e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 +1930,my_land,2009-10-30,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 +1931,my_land,2009-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 +1932,my_groundwater,2009-10-30,1.661106654915044,tank,0.0,0.0,0.00015024159088187377,0.0,0.0,0.0,0.0,0.0,16.847381295533783,0.0,0.0,0.0 +1933,my_reservoir,2009-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1934,gw1,2009-10-30,255.0694060090264,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1935,gw2,2009-10-30,269.9305939909736,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1936,my_sewer,2009-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0 +1937,my_land,2009-10-31,0.6462346041984925,percolation,0.0,0.0,6.558374727748086e-05,0.0,0.0,0.0,0.0,0.0,16.098812566960742,0.0,0.0,0.0 +1938,my_land,2009-10-31,0.03643991442954186,subsurface_runoff,0.0,0.0,4.970929593226771e-06,0.0,0.0,0.0,0.0,0.0,13.56819684652802,0.0,0.0,0.0 +1939,my_land,2009-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.953571429999998,0.0,0.0,0.0 +1940,my_groundwater,2009-10-31,1.6701093784346543,tank,0.0,0.0,0.0001512010846171035,0.0,0.0,0.0,0.0,0.0,16.841484802365333,0.0,0.0,0.0 +1941,my_reservoir,2009-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1942,gw1,2009-10-31,255.11894330229956,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1943,gw2,2009-10-31,269.88105669770044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1944,my_sewer,2009-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.84645888773148,0.0,0.0,0.0 +1945,my_land,2009-11-01,0.8798917807072058,percolation,0.0,0.0,9.717299833133554e-05,0.0,0.0,0.0,0.0,0.0,15.348409451228905,0.0,0.0,0.0 +1946,my_land,2009-11-01,0.09624903864368328,subsurface_runoff,0.0,0.0,1.2929376599589388e-05,0.0,0.0,0.0,0.0,0.0,13.465657914159694,0.0,0.0,0.0 +1947,my_land,2009-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.78571429,0.0,0.0,0.0 +1948,my_groundwater,2009-11-01,1.6838461876672501,tank,0.0,0.0,0.00015280124651444865,0.0,0.0,0.0,0.0,0.0,16.82560206359089,0.0,0.0,0.0 +1949,my_reservoir,2009-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1950,gw1,2009-11-01,255.16815034695088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1951,gw2,2009-11-01,269.8318496530491,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1952,my_sewer,2009-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.661400330044094,0.0,0.0,0.0 +1953,my_land,2009-11-02,1.1319968613826126,percolation,0.0,0.0,0.00013043838066237987,0.0,0.0,0.0,0.0,0.0,14.854683881052152,0.0,0.0,0.0 +1954,my_land,2009-11-02,0.15038777956516453,subsurface_runoff,0.0,0.0,1.9924138639581993e-05,0.0,0.0,0.0,0.0,0.0,13.373176424470538,0.0,0.0,0.0 +1955,my_land,2009-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.617857139999998,0.0,0.0,0.0 +1956,my_groundwater,2009-11-02,1.7026807940190851,tank,0.0,0.0,0.00015507459614736097,0.0,0.0,0.0,0.0,0.0,16.79892749490543,0.0,0.0,0.0 +1957,my_reservoir,2009-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1958,gw1,2009-11-02,255.21702934463787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1959,gw2,2009-11-02,269.78297065536213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1960,my_sewer,2009-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0 +1961,my_land,2009-11-03,1.401896739940644,percolation,0.0,0.0,0.00016515907950189528,0.0,0.0,0.0,0.0,0.0,14.495170681422227,0.0,0.0,0.0 +1962,my_land,2009-11-03,0.19991289461422238,subsurface_runoff,0.0,0.0,2.6096988857995663e-05,0.0,0.0,0.0,0.0,0.0,13.277079518492013,0.0,0.0,0.0 +1963,my_land,2009-11-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.45,0.0,0.0,0.0 +1964,my_groundwater,2009-11-03,1.726962704239972,tank,0.0,0.0,0.00015804907663256686,0.0,0.0,0.0,0.0,0.0,16.76085717517278,0.0,0.0,0.0 +1965,my_reservoir,2009-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1966,gw1,2009-11-03,255.26558248234028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1967,gw2,2009-11-03,269.7344175176597,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1968,my_sewer,2009-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 +1969,my_land,2009-11-04,1.4922793944071984,percolation,0.0,0.0,0.00017693521177191475,0.0,0.0,0.0,0.0,0.0,14.374862376716369,0.0,0.0,0.0 +1970,my_land,2009-11-04,0.1921536052873962,subsurface_runoff,0.0,0.0,2.4980805742194456e-05,0.0,0.0,0.0,0.0,0.0,13.227110239628656,0.0,0.0,0.0 +1971,my_land,2009-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 +1972,my_groundwater,2009-11-04,1.75302384229409,tank,0.0,0.0,0.00016125584932348512,0.0,0.0,0.0,0.0,0.0,16.719509734160376,0.0,0.0,0.0 +1973,my_reservoir,2009-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1974,gw1,2009-11-04,255.313811932458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1975,gw2,2009-11-04,269.686188067542,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1976,my_sewer,2009-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 +1977,my_land,2009-11-05,1.5195135710310488,percolation,0.0,0.0,0.0001806986145540236,0.0,0.0,0.0,0.0,0.0,14.308929842219781,0.0,0.0,0.0 +1978,my_land,2009-11-05,0.16925479294066373,subsurface_runoff,0.0,0.0,2.1971612489686763e-05,0.0,0.0,0.0,0.0,0.0,13.171368558301827,0.0,0.0,0.0 +1979,my_land,2009-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.54285714,0.0,0.0,0.0 +1980,my_groundwater,2009-11-05,1.7795742375272012,tank,0.0,0.0,0.00016453121721074046,0.0,0.0,0.0,0.0,0.0,16.6776084988197,0.0,0.0,0.0 +1981,my_reservoir,2009-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1982,gw1,2009-11-05,255.3617198529083,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1983,gw2,2009-11-05,269.63828014709173,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1984,my_sewer,2009-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 +1985,my_land,2009-11-06,1.5914239878221326,percolation,0.0,0.0,0.0001901513059988137,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 +1986,my_land,2009-11-06,0.16324075631489965,subsurface_runoff,0.0,0.0,2.1132844749809424e-05,0.0,0.0,0.0,0.0,0.0,13.011462510699811,0.0,0.0,0.0 +1987,my_land,2009-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 +1988,my_groundwater,2009-11-06,1.8075221473997625,tank,0.0,0.0,0.00016799082646840372,0.0,0.0,0.0,0.0,0.0,16.63276280278416,0.0,0.0,0.0 +1989,my_reservoir,2009-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,gw1,2009-11-06,255.40930838722224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1991,gw2,2009-11-06,269.5906916127778,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1992,my_sewer,2009-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 +1993,my_land,2009-11-07,1.5595955080656898,percolation,0.0,0.0,0.00018634827987883742,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 +1994,my_land,2009-11-07,0.13059260505191972,subsurface_runoff,0.0,0.0,1.690627579984754e-05,0.0,0.0,0.0,0.0,0.0,13.011462510699811,0.0,0.0,0.0 +1995,my_land,2009-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.635714289999997,0.0,0.0,0.0 +1996,my_groundwater,2009-11-07,1.8347522505883147,tank,0.0,0.0,0.00017136436795690905,0.0,0.0,0.0,0.0,0.0,16.590242296216488,0.0,0.0,0.0 +1997,my_reservoir,2009-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,gw1,2009-11-07,255.45657966464077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,gw2,2009-11-07,269.54342033535926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2000,my_sewer,2009-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 +2001,my_land,2009-11-08,1.528403597904376,percolation,0.0,0.0,0.00018262131428126066,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 +2002,my_land,2009-11-08,0.10447408404153577,subsurface_runoff,0.0,0.0,1.3525020639878031e-05,0.0,0.0,0.0,0.0,0.0,13.011462510699811,0.0,0.0,0.0 +2003,my_land,2009-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.18214286,0.0,0.0,0.0 +2004,my_groundwater,2009-11-08,1.8612793003477546,tank,0.0,0.0,0.00017465360522059959,0.0,0.0,0.0,0.0,0.0,16.549876874904697,0.0,0.0,0.0 +2005,my_reservoir,2009-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2006,gw1,2009-11-08,255.50353580020985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2007,gw2,2009-11-08,269.4964641997902,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2008,my_sewer,2009-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 +2009,my_land,2009-11-09,1.613431126520153,percolation,0.0,0.0,0.0001938730223150074,0.0,0.0,0.0,0.0,0.0,13.952689472023808,0.0,0.0,0.0 +2010,my_land,2009-11-09,0.11503385242339585,subsurface_runoff,0.0,0.0,1.4875563265473027e-05,0.0,0.0,0.0,0.0,0.0,12.479302408316718,0.0,0.0,0.0 +2011,my_land,2009-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 +2012,my_groundwater,2009-11-09,1.8894709500296167,tank,0.0,0.0,0.00017816367201896075,0.0,0.0,0.0,0.0,0.0,16.504729726546003,0.0,0.0,0.0 +2013,my_reservoir,2009-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2014,gw1,2009-11-09,255.5501788948751,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2015,gw2,2009-11-09,269.4498211051249,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2016,my_sewer,2009-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 +2017,my_land,2009-11-10,1.6457770349784049,percolation,0.0,0.0,0.00019834382973066606,0.0,0.0,0.0,0.0,0.0,13.824138396464011,0.0,0.0,0.0 +2018,my_land,2009-11-10,0.10960926724175205,subsurface_runoff,0.0,0.0,1.4172088125836594e-05,0.0,0.0,0.0,0.0,0.0,12.19042422286866,0.0,0.0,0.0 +2019,my_land,2009-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 +2020,my_groundwater,2009-11-10,1.9182505908666032,tank,0.0,0.0,0.00018175597651557334,0.0,0.0,0.0,0.0,0.0,16.45791170143717,0.0,0.0,0.0 +2021,my_reservoir,2009-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2022,gw1,2009-11-10,255.59651103557593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2023,gw2,2009-11-10,269.40348896442407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2024,my_sewer,2009-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 +2025,my_land,2009-11-11,1.7706683426785974,percolation,0.0,0.0,0.00021450424389639038,0.0,0.0,0.0,0.0,0.0,13.509076181879701,0.0,0.0,0.0 +2026,my_land,2009-11-11,0.13062805281374465,subsurface_runoff,0.0,0.0,1.6814484313006053e-05,0.0,0.0,0.0,0.0,0.0,11.565376112835184,0.0,0.0,0.0 +2027,my_land,2009-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 +2028,my_groundwater,2009-11-11,1.9495007127939652,tank,0.0,0.0,0.00018566828011074663,0.0,0.0,0.0,0.0,0.0,16.4033885188978,0.0,0.0,0.0 +2029,my_reservoir,2009-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2030,gw1,2009-11-11,255.64253429533875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2031,gw2,2009-11-11,269.35746570466125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2032,my_sewer,2009-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 +2033,my_land,2009-11-12,2.235996679447809,percolation,0.0,0.0,0.0002705303316672826,0.0,0.0,0.0,0.0,0.0,12.75946805264111,0.0,0.0,0.0 +2034,my_land,2009-11-12,0.24075868813474643,subsurface_runoff,0.0,0.0,2.9864151436478318e-05,0.0,0.0,0.0,0.0,0.0,10.771028244357666,0.0,0.0,0.0 +2035,my_land,2009-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 +2036,my_groundwater,2009-11-12,1.9901454648435963,tank,0.0,0.0,0.00019071133401941086,0.0,0.0,0.0,0.0,0.0,16.32004495902468,0.0,0.0,0.0 +2037,my_reservoir,2009-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2038,gw1,2009-11-12,255.6882507333698,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2039,gw2,2009-11-12,269.31174926663016,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2040,my_sewer,2009-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0 +2041,my_land,2009-11-13,3.03463497430541,percolation,0.0,0.0,0.0003594191300973716,0.0,0.0,0.0,0.0,0.0,12.01167531635391,0.0,0.0,0.0 +2042,my_land,2009-11-13,0.42209218273815285,subsurface_runoff,0.0,0.0,4.9551023207260116e-05,0.0,0.0,0.0,0.0,0.0,10.389185023312798,0.0,0.0,0.0 +2043,my_land,2009-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.975,0.0,0.0,0.0 +2044,my_groundwater,2009-11-13,2.0469465988727045,tank,0.0,0.0,0.00019755130226134453,0.0,0.0,0.0,0.0,0.0,16.190019101276395,0.0,0.0,0.0 +2045,my_reservoir,2009-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2046,gw1,2009-11-13,255.73366239514735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2047,gw2,2009-11-13,269.26633760485265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2048,my_sewer,2009-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0 +2049,my_land,2009-11-14,3.256467627019993,percolation,0.0,0.0,0.0003833357365808856,0.0,0.0,0.0,0.0,0.0,11.836056540152816,0.0,0.0,0.0 +2050,my_land,2009-11-14,0.41455139304785327,subsurface_runoff,0.0,0.0,4.8104761174096916e-05,0.0,0.0,0.0,0.0,0.0,10.314682904219874,0.0,0.0,0.0 +2051,my_land,2009-11-14,2.2665994004164814e-18,surface_runoff,0.0,0.0,2.766844971211525e-22,0.0,0.0,0.0,0.0,0.0,10.242871386355551,0.0,0.0,0.0 +2052,my_groundwater,2009-11-14,2.10812160906843,tank,0.0,0.0,0.00020486104435751633,0.0,0.0,0.0,0.0,0.0,16.053103600307562,0.0,0.0,0.0 +2053,my_reservoir,2009-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2054,gw1,2009-11-14,255.77877131251304,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2055,gw2,2009-11-14,269.221228687487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2056,my_sewer,2009-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903043,0.0,0.0,0.0 +2057,my_land,2009-11-15,3.439159160064928,percolation,0.0,0.0,0.00040261397113289883,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 +2058,my_land,2009-11-15,0.39907536901932616,subsurface_runoff,0.0,0.0,4.581576792802065e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 +2059,my_land,2009-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.775,0.0,0.0,0.0 +2060,my_groundwater,2009-11-15,2.172862759375652,tank,0.0,0.0,0.00021254496187325656,0.0,0.0,0.0,0.0,0.0,15.912737143321793,0.0,0.0,0.0 +2061,my_reservoir,2009-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2062,gw1,2009-11-15,255.82357950376294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2063,gw2,2009-11-15,269.1764204962371,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2064,my_sewer,2009-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2065,my_land,2009-11-16,3.3703759768636297,percolation,0.0,0.0,0.0003945616917102409,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 +2066,my_land,2009-11-16,0.31926029521546095,subsurface_runoff,0.0,0.0,3.6652614342416525e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 +2067,my_land,2009-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.675,0.0,0.0,0.0 +2068,my_groundwater,2009-11-16,2.236041827720508,tank,0.0,0.0,0.00022004574819267477,0.0,0.0,0.0,0.0,0.0,15.78337176744825,0.0,0.0,0.0 +2069,my_reservoir,2009-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2070,gw1,2009-11-16,255.86808897373785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2071,gw2,2009-11-16,269.1319110262622,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2072,my_sewer,2009-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2073,my_land,2009-11-17,3.302968457326357,percolation,0.0,0.0,0.00038667045787603606,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 +2074,my_land,2009-11-17,0.25540823617236874,subsurface_runoff,0.0,0.0,2.932209147393322e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 +2075,my_land,2009-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +2076,my_groundwater,2009-11-17,2.297690723889636,tank,0.0,0.0,0.00022736713957181238,0.0,0.0,0.0,0.0,0.0,15.663780970383648,0.0,0.0,0.0 +2077,my_reservoir,2009-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2078,gw1,2009-11-17,255.91230171391294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2079,gw2,2009-11-17,269.0876982860871,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2080,my_sewer,2009-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 +2081,my_land,2009-11-18,3.23690908817983,percolation,0.0,0.0,0.0003789370487185153,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 +2082,my_land,2009-11-18,0.204326588937895,subsurface_runoff,0.0,0.0,2.3457673179146577e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 +2083,my_land,2009-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.610714286,0.0,0.0,0.0 +2084,my_groundwater,2009-11-18,2.357840717803573,tank,0.0,0.0,0.00023451279735750978,0.0,0.0,0.0,0.0,0.0,15.552913994754537,0.0,0.0,0.0 +2085,my_reservoir,2009-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2086,gw1,2009-11-18,255.95621970248686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2087,gw2,2009-11-18,269.0437802975132,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2088,my_sewer,2009-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 +2089,my_land,2009-11-19,3.417139206491937,percolation,0.0,0.0,0.0003983590772048164,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 +2090,my_land,2009-11-19,0.23011931198724217,subsurface_runoff,0.0,0.0,2.6113286695880912e-05,0.0,0.0,0.0,0.0,0.0,10.076607859755114,0.0,0.0,0.0 +2091,my_land,2009-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 +2092,my_groundwater,2009-11-19,2.4215093069983644,tank,0.0,0.0,0.00024203596800721405,0.0,0.0,0.0,0.0,0.0,15.437949316158864,0.0,0.0,0.0 +2093,my_reservoir,2009-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2094,gw1,2009-11-19,255.99984490447028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2095,gw2,2009-11-19,269.00015509552975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2096,my_sewer,2009-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 +2097,my_land,2009-11-20,3.3487964223620983,percolation,0.0,0.0,0.0003903918956607201,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 +2098,my_land,2009-11-20,0.18409544958979374,subsurface_runoff,0.0,0.0,2.089062935670473e-05,0.0,0.0,0.0,0.0,0.0,10.076607859755114,0.0,0.0,0.0 +2099,my_land,2009-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.682142857,0.0,0.0,0.0 +2100,my_groundwater,2009-11-20,2.4836274609003826,tank,0.0,0.0,0.0002493781416774321,0.0,0.0,0.0,0.0,0.0,15.331257423398412,0.0,0.0,0.0 +2101,my_reservoir,2009-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2102,gw1,2009-11-20,256.0431792717738,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2103,gw2,2009-11-20,268.9568207282262,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2104,my_sewer,2009-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 +2105,my_land,2009-11-21,3.872219489725413,percolation,0.0,0.0,0.00044463377930839093,0.0,0.0,0.0,0.0,0.0,11.272241313768573,0.0,0.0,0.0 +2106,my_land,2009-11-21,0.3079291476474967,subsurface_runoff,0.0,0.0,3.359678146111487e-05,0.0,0.0,0.0,0.0,0.0,9.892066236080755,0.0,0.0,0.0 +2107,my_land,2009-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 +2108,my_groundwater,2009-11-21,2.5562457175746847,tank,0.0,0.0,0.0002578061696877308,0.0,0.0,0.0,0.0,0.0,15.206088946369885,0.0,0.0,0.0 +2109,my_reservoir,2009-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2110,gw1,2009-11-21,256.0862247432953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2111,gw2,2009-11-21,268.9137752567047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2112,my_sewer,2009-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.74196428605,0.0,0.0,0.0 +2113,my_land,2009-11-22,4.5431676199200295,percolation,0.0,0.0,0.0005096120979232915,0.0,0.0,0.0,0.0,0.0,11.022100082921758,0.0,0.0,0.0 +2114,my_land,2009-11-22,0.44998754124428986,subsurface_runoff,0.0,0.0,4.697837597190371e-05,0.0,0.0,0.0,0.0,0.0,9.829466869705396,0.0,0.0,0.0 +2115,my_land,2009-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.753571429,0.0,0.0,0.0 +2116,my_groundwater,2009-11-22,2.6423410155434057,tank,0.0,0.0,0.0002675359005426642,0.0,0.0,0.0,0.0,0.0,15.059643039253228,0.0,0.0,0.0 +2117,my_reservoir,2009-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2118,gw1,2009-11-22,256.1289832450067,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2119,gw2,2009-11-22,268.8710167549933,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2120,my_sewer,2009-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0 +2121,my_land,2009-11-23,4.678350610631514,percolation,0.0,0.0,0.0005215218955777257,0.0,0.0,0.0,0.0,0.0,10.962300998049502,0.0,0.0,0.0 +2122,my_land,2009-11-23,0.4214992420049244,subsurface_runoff,0.0,0.0,4.359686121640733e-05,0.0,0.0,0.0,0.0,0.0,9.822900927210629,0.0,0.0,0.0 +2123,my_land,2009-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.789285714,0.0,0.0,0.0 +2124,my_groundwater,2009-11-23,2.7309730147209743,tank,0.0,0.0,0.00027748375652271126,0.0,0.0,0.0,0.0,0.0,14.916755485385723,0.0,0.0,0.0 +2125,my_reservoir,2009-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2126,gw1,2009-11-23,256.17145669004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2127,gw2,2009-11-23,268.82854330996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2128,my_sewer,2009-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0 +2129,my_land,2009-11-24,5.2014155800675,percolation,0.0,0.0,0.0005685666208477613,0.0,0.0,0.0,0.0,0.0,10.826352793976191,0.0,0.0,0.0 +2130,my_land,2009-11-24,0.5049904090185289,subsurface_runoff,0.0,0.0,5.051698915859255e-05,0.0,0.0,0.0,0.0,0.0,9.820458591782971,0.0,0.0,0.0 +2131,my_land,2009-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.825,0.0,0.0,0.0 +2132,my_groundwater,2009-11-24,2.830031542206975,tank,0.0,0.0,0.0002883644390558053,0.0,0.0,0.0,0.0,0.0,14.763712591905465,0.0,0.0,0.0 +2133,my_reservoir,2009-11-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2134,gw1,2009-11-24,256.21364697877306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2135,gw2,2009-11-24,268.78635302122694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2136,my_sewer,2009-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0 +2137,my_land,2009-11-25,5.426492244592537,percolation,0.0,0.0,0.0005872904990590769,0.0,0.0,0.0,0.0,0.0,10.766090102794985,0.0,0.0,0.0 +2138,my_land,2009-11-25,0.49354470167098297,subsurface_runoff,0.0,0.0,4.860276428694773e-05,0.0,0.0,0.0,0.0,0.0,9.82268034316541,0.0,0.0,0.0 +2139,my_land,2009-11-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.335714286,0.0,0.0,0.0 +2140,my_groundwater,2009-11-25,2.9334243411878056,tank,0.0,0.0,0.00029959908454615415,0.0,0.0,0.0,0.0,0.0,14.6131687832371,0.0,0.0,0.0 +2141,my_reservoir,2009-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2142,gw1,2009-11-25,256.2555559989146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2143,gw2,2009-11-25,268.7444440010854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2144,my_sewer,2009-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0 +2145,my_land,2009-11-26,5.661315502631175,percolation,0.0,0.0,0.0006062973049389933,0.0,0.0,0.0,0.0,0.0,10.687094499550522,0.0,0.0,0.0 +2146,my_land,2009-11-26,0.48826517710018474,subsurface_runoff,0.0,0.0,4.7250270167271926e-05,0.0,0.0,0.0,0.0,0.0,9.75396761725,0.0,0.0,0.0 +2147,my_land,2009-11-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.846428571,0.0,0.0,0.0 +2148,my_groundwater,2009-11-26,3.0413389887812565,tank,0.0,0.0,0.00031119256768533256,0.0,0.0,0.0,0.0,0.0,14.464394500234944,0.0,0.0,0.0 +2149,my_reservoir,2009-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2150,gw1,2009-11-26,256.2971856255885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2151,gw2,2009-11-26,268.7028143744115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2152,my_sewer,2009-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0 +2153,my_land,2009-11-27,5.780984730502456,percolation,0.0,0.0,0.0006148219885135815,0.0,0.0,0.0,0.0,0.0,10.621373144302098,0.0,0.0,0.0 +2154,my_land,2009-11-27,0.45398507716964565,subsurface_runoff,0.0,0.0,4.3419435092557156e-05,0.0,0.0,0.0,0.0,0.0,9.65650086117824,0.0,0.0,0.0 +2155,my_land,2009-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.357142857,0.0,0.0,0.0 +2156,my_groundwater,2009-11-27,3.151419973323103,tank,0.0,0.0,0.00032293060531800283,0.0,0.0,0.0,0.0,0.0,14.320883509946073,0.0,0.0,0.0 +2157,my_reservoir,2009-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2158,gw1,2009-11-27,256.3385377214179,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2159,gw2,2009-11-27,268.6614622785821,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2160,my_sewer,2009-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0 +2161,my_land,2009-11-28,5.975927247687543,percolation,0.0,0.0,0.0006295627137828939,0.0,0.0,0.0,0.0,0.0,10.51789384151351,0.0,0.0,0.0 +2162,my_land,2009-11-28,0.4476947860337129,subsurface_runoff,0.0,0.0,4.209259978549712e-05,0.0,0.0,0.0,0.0,0.0,9.462775637143407,0.0,0.0,0.0 +2163,my_land,2009-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.867857143,0.0,0.0,0.0 +2164,my_groundwater,2009-11-28,3.265194228074863,tank,0.0,0.0,0.00033493937690671675,0.0,0.0,0.0,0.0,0.0,14.179193819521153,0.0,0.0,0.0 +2165,my_reservoir,2009-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2166,gw1,2009-11-28,256.37961413660844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2167,gw2,2009-11-28,268.62038586339156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2168,my_sewer,2009-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2169,my_land,2009-11-29,6.612904328147424,percolation,0.0,0.0,0.000678829031031157,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 +2170,my_land,2009-11-29,0.5640049785993874,subsurface_runoff,0.0,0.0,5.0506072079804765e-05,0.0,0.0,0.0,0.0,0.0,8.991739983011426,0.0,0.0,0.0 +2171,my_land,2009-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.378571429,0.0,0.0,0.0 +2172,my_groundwater,2009-11-29,3.3916510806133915,tank,0.0,0.0,0.0003479210480247271,0.0,0.0,0.0,0.0,0.0,14.023220317493983,0.0,0.0,0.0 +2173,my_reservoir,2009-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2174,gw1,2009-11-29,256.42041670903103,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2175,gw2,2009-11-29,268.57958329096897,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2176,my_sewer,2009-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2177,my_land,2009-11-30,6.480646241584476,percolation,0.0,0.0,0.0006652524504105338,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 +2178,my_land,2009-11-30,0.4512039828795099,subsurface_runoff,0.0,0.0,4.040485766384381e-05,0.0,0.0,0.0,0.0,0.0,8.991739983011426,0.0,0.0,0.0 +2179,my_land,2009-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.378571429,0.0,0.0,0.0 +2180,my_groundwater,2009-11-30,3.515099394258399,tank,0.0,0.0,0.0003605938845737369,0.0,0.0,0.0,0.0,0.0,13.88158837430158,0.0,0.0,0.0 +2181,my_reservoir,2009-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2182,gw1,2009-11-30,256.46094726430414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2183,gw2,2009-11-30,268.53905273569586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2184,my_sewer,2009-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 +2185,my_land,2009-12-01,6.456594996203527,percolation,0.0,0.0,0.0006607266855509628,0.0,0.0,0.0,0.0,0.0,10.202769657847302,0.0,0.0,0.0 +2186,my_land,2009-12-01,0.38968745282081607,subsurface_runoff,0.0,0.0,3.4712806987847764e-05,0.0,0.0,0.0,0.0,0.0,8.873535926902688,0.0,0.0,0.0 +2187,my_land,2009-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2188,my_groundwater,2009-12-01,3.637749472481182,tank,0.0,0.0,0.00037314290738959,0.0,0.0,0.0,0.0,0.0,13.748666648766907,0.0,0.0,0.0 +2189,my_reservoir,2009-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2190,gw1,2009-12-01,256.50120761587544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2191,gw2,2009-12-01,268.49879238412456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2192,my_sewer,2009-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0 +2193,my_land,2009-12-02,6.548124654311129,percolation,0.0,0.0,0.0006656878369202981,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 +2194,my_land,2009-12-02,0.3717939236258156,subsurface_runoff,0.0,0.0,3.271601023799374e-05,0.0,0.0,0.0,0.0,0.0,8.565911704710665,0.0,0.0,0.0 +2195,my_land,2009-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692857143,0.0,0.0,0.0 +2196,my_groundwater,2009-12-02,3.7619562078341704,tank,0.0,0.0,0.0003857615525155649,0.0,0.0,0.0,0.0,0.0,13.619159695360839,0.0,0.0,0.0 +2197,my_reservoir,2009-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2198,gw1,2009-12-02,256.54119956510294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2199,gw2,2009-12-02,268.45880043489706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2200,my_sewer,2009-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.860037924551955,0.0,0.0,0.0 +2201,my_land,2009-12-03,6.417162161224907,percolation,0.0,0.0,0.0006523740801818922,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 +2202,my_land,2009-12-03,0.2974351389006525,subsurface_runoff,0.0,0.0,2.617280819039499e-05,0.0,0.0,0.0,0.0,0.0,8.565911704710665,0.0,0.0,0.0 +2203,my_land,2009-12-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.985714285999999,0.0,0.0,0.0 +2204,my_groundwater,2009-12-03,3.883186404168092,tank,0.0,0.0,0.00039807762098083597,0.0,0.0,0.0,0.0,0.0,13.500561900267483,0.0,0.0,0.0 +2205,my_reservoir,2009-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2206,gw1,2009-12-03,256.5809249013356,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2207,gw2,2009-12-03,268.4190750986644,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2208,my_sewer,2009-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0 +2209,my_land,2009-12-04,6.5212817462349,percolation,0.0,0.0,0.0006584746475530175,0.0,0.0,0.0,0.0,0.0,9.997041759433309,0.0,0.0,0.0 +2210,my_land,2009-12-04,0.30120330247684624,subsurface_runoff,0.0,0.0,2.6148600014836598e-05,0.0,0.0,0.0,0.0,0.0,8.31681572364492,0.0,0.0,0.0 +2211,my_land,2009-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278571429,0.0,0.0,0.0 +2212,my_groundwater,2009-12-04,4.006233102277454,tank,0.0,0.0,0.00041048708939642745,0.0,0.0,0.0,0.0,0.0,13.384465650334114,0.0,0.0,0.0 +2213,my_reservoir,2009-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2214,gw1,2009-12-04,256.62038540199336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2215,gw2,2009-12-04,268.37961459800664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2216,my_sewer,2009-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 +2217,my_land,2009-12-05,7.19809003233725,percolation,0.0,0.0,0.0007069522368062617,0.0,0.0,0.0,0.0,0.0,9.73120769774238,0.0,0.0,0.0 +2218,my_land,2009-12-05,0.46061813069632007,subsurface_runoff,0.0,0.0,3.769359625793854e-05,0.0,0.0,0.0,0.0,0.0,7.9876738307539705,0.0,0.0,0.0 +2219,my_land,2009-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571428571,0.0,0.0,0.0 +2220,my_groundwater,2009-12-05,4.142750066608626,tank,0.0,0.0,0.00042385239935077815,0.0,0.0,0.0,0.0,0.0,13.255246850176844,0.0,0.0,0.0 +2221,my_reservoir,2009-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2222,gw1,2009-12-05,256.6595828326467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2223,gw2,2009-12-05,268.3404171673533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2224,my_sewer,2009-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 +2225,my_land,2009-12-06,7.133306152827799,percolation,0.0,0.0,0.0006989002821347866,0.0,0.0,0.0,0.0,0.0,9.710680511264533,0.0,0.0,0.0 +2226,my_land,2009-12-06,0.3900395171114217,subsurface_runoff,0.0,0.0,3.181122804435085e-05,0.0,0.0,0.0,0.0,0.0,7.981829442246385,0.0,0.0,0.0 +2227,my_land,2009-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.864285714,0.0,0.0,0.0 +2228,my_groundwater,2009-12-06,4.277606923838956,tank,0.0,0.0,0.00043702038123871647,0.0,0.0,0.0,0.0,0.0,13.134917956717,0.0,0.0,0.0 +2229,my_reservoir,2009-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2230,gw1,2009-12-06,256.69851894709575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2231,gw2,2009-12-06,268.30148105290425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2232,my_sewer,2009-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8470588232352965,0.0,0.0,0.0 +2233,my_land,2009-12-07,7.344043485635146,percolation,0.0,0.0,0.0007115177804616415,0.0,0.0,0.0,0.0,0.0,9.6348155118132,0.0,0.0,0.0 +2234,my_land,2009-12-07,0.4081958193663901,subsurface_runoff,0.0,0.0,3.268585426392986e-05,0.0,0.0,0.0,0.0,0.0,8.017710638758228,0.0,0.0,0.0 +2235,my_land,2009-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.157142857,0.0,0.0,0.0 +2236,my_groundwater,2009-12-07,4.416416648915503,tank,0.0,0.0,0.00045041229938787454,0.0,0.0,0.0,0.0,0.0,13.01643311802396,0.0,0.0,0.0 +2237,my_reservoir,2009-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2238,gw1,2009-12-07,256.73719548744845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2239,gw2,2009-12-07,268.26280451255155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2240,my_sewer,2009-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2241,my_land,2009-12-08,7.373377631860453,percolation,0.0,0.0,0.0007105034561794769,0.0,0.0,0.0,0.0,0.0,9.604955684505141,0.0,0.0,0.0 +2242,my_land,2009-12-08,0.3745063196939312,subsurface_runoff,0.0,0.0,2.9744882411706664e-05,0.0,0.0,0.0,0.0,0.0,8.064786038988245,0.0,0.0,0.0 +2243,my_land,2009-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.45,0.0,0.0,0.0 +2244,my_groundwater,2009-12-08,4.555476509084659,tank,0.0,0.0,0.00046375008899734424,0.0,0.0,0.0,0.0,0.0,12.904026471169088,0.0,0.0,0.0 +2245,my_reservoir,2009-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2246,gw1,2009-12-08,256.7756141841988,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2247,gw2,2009-12-08,268.2243858158012,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2248,my_sewer,2009-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2249,my_land,2009-12-09,7.2946230458655235,percolation,0.0,0.0,0.0007014853856477588,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2250,my_land,2009-12-09,0.3183024616442006,subsurface_runoff,0.0,0.0,2.520869466184735e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 +2251,my_land,2009-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.19375,0.0,0.0,0.0 +2252,my_groundwater,2009-12-09,4.692585501245639,tank,0.0,0.0,0.00047687095198268025,0.0,0.0,0.0,0.0,0.0,12.799337746683024,0.0,0.0,0.0 +2253,my_reservoir,2009-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2254,gw1,2009-12-09,256.81377675630415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2255,gw2,2009-12-09,268.18622324369585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2256,my_sewer,2009-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2257,my_land,2009-12-10,7.148730584948213,percolation,0.0,0.0,0.0006874556779348036,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2258,my_land,2009-12-10,0.2546419693153605,subsurface_runoff,0.0,0.0,2.0166955729477878e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 +2259,my_land,2009-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9375,0.0,0.0,0.0 +2260,my_groundwater,2009-12-10,4.826381767257542,tank,0.0,0.0,0.0004896734080463963,0.0,0.0,0.0,0.0,0.0,12.702743551501422,0.0,0.0,0.0 +2261,my_reservoir,2009-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2262,gw1,2009-12-10,256.8516849112621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2263,gw2,2009-12-10,268.1483150887379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2264,my_sewer,2009-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2265,my_land,2009-12-11,7.005755973249249,percolation,0.0,0.0,0.0006737065643761075,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2266,my_land,2009-12-11,0.20371357545228838,subsurface_runoff,0.0,0.0,1.61335645835823e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 +2267,my_land,2009-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.681250000000001,0.0,0.0,0.0 +2268,my_groundwater,2009-12-11,4.9569329880091155,tank,0.0,0.0,0.0005021639653010797,0.0,0.0,0.0,0.0,0.0,12.613353506686268,0.0,0.0,0.0 +2269,my_reservoir,2009-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2270,gw1,2009-12-11,256.889340345187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2271,gw2,2009-12-11,268.110659654813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2272,my_sewer,2009-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2273,my_land,2009-12-12,6.865640853784264,percolation,0.0,0.0,0.0006602324330885854,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2274,my_land,2009-12-12,0.1629708603618307,subsurface_runoff,0.0,0.0,1.290685166686584e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 +2275,my_land,2009-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.425,0.0,0.0,0.0 +2276,my_groundwater,2009-12-12,5.084305487205415,tank,0.0,0.0,0.0005143490013471303,0.0,0.0,0.0,0.0,0.0,12.530403166821744,0.0,0.0,0.0 +2277,my_reservoir,2009-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2278,gw1,2009-12-12,256.9267447428858,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2279,gw2,2009-12-12,268.0732552571142,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2280,my_sewer,2009-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 +2281,my_land,2009-12-13,6.728328036708579,percolation,0.0,0.0,0.0006470277844268136,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 +2282,my_land,2009-12-13,0.13037668828946455,subsurface_runoff,0.0,0.0,1.0325481333492673e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 +2283,my_land,2009-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.168750000000001,0.0,0.0,0.0 +2284,my_groundwater,2009-12-13,5.208564258520397,tank,0.0,0.0,0.0005262347658838797,0.0,0.0,0.0,0.0,0.0,12.4532325145376,0.0,0.0,0.0 +2285,my_reservoir,2009-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2286,gw1,2009-12-13,256.9638997779332,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2287,gw2,2009-12-13,268.0361002220668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2288,my_sewer,2009-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 +2289,my_land,2009-12-14,6.699914909901557,percolation,0.0,0.0,0.0006425371771290467,0.0,0.0,0.0,0.0,0.0,9.564143620259403,0.0,0.0,0.0 +2290,my_land,2009-12-14,0.13318663877501385,subsurface_runoff,0.0,0.0,1.0559690751357204e-05,0.0,0.0,0.0,0.0,0.0,7.989459941577913,0.0,0.0,0.0 +2291,my_land,2009-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 +2292,my_groundwater,2009-12-14,5.331933972825664,tank,0.0,0.0,0.0005379994000750114,0.0,0.0,0.0,0.0,0.0,12.379329483032722,0.0,0.0,0.0 +2293,my_reservoir,2009-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2294,gw1,2009-12-14,257.000807112747,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2295,gw2,2009-12-14,267.999192887253,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2296,my_sewer,2009-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 +2297,my_land,2009-12-15,6.624752907069825,percolation,0.0,0.0,0.0006343940926529914,0.0,0.0,0.0,0.0,0.0,9.544761395975481,0.0,0.0,0.0 +2298,my_land,2009-12-15,0.12255918731016016,subsurface_runoff,0.0,0.0,9.728748265446514e-06,0.0,0.0,0.0,0.0,0.0,7.910078292657331,0.0,0.0,0.0 +2299,my_land,2009-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.65625,0.0,0.0,0.0 +2300,my_groundwater,2009-12-15,5.453465179216092,tank,0.0,0.0,0.0005495688527466883,0.0,0.0,0.0,0.0,0.0,12.309232252857504,0.0,0.0,0.0 +2301,my_reservoir,2009-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2302,gw1,2009-12-15,257.03746839866204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2303,gw2,2009-12-15,267.96253160133796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2304,my_sewer,2009-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2305,my_land,2009-12-16,6.595491491836251,percolation,0.0,0.0,0.000629940902680941,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2306,my_land,2009-12-16,0.12613813703393031,subsurface_runoff,0.0,0.0,1.002373109698564e-05,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 +2307,my_land,2009-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2308,my_groundwater,2009-12-16,5.574096878780433,tank,0.0,0.0,0.0005610187275622551,0.0,0.0,0.0,0.0,0.0,12.241742951854071,0.0,0.0,0.0 +2309,my_reservoir,2009-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2310,gw1,2009-12-16,257.0738852760043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2311,gw2,2009-12-16,267.9261147239957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2312,my_sewer,2009-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2313,my_land,2009-12-17,6.463581661999526,percolation,0.0,0.0,0.0006173420846273222,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2314,my_land,2009-12-17,0.10091050962714425,subsurface_runoff,0.0,0.0,8.018984877588512e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 +2315,my_land,2009-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2316,my_groundwater,2009-12-17,5.691741691845615,tank,0.0,0.0,0.0005721835017518342,0.0,0.0,0.0,0.0,0.0,12.178530698460241,0.0,0.0,0.0 +2317,my_reservoir,2009-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2318,gw1,2009-12-17,257.1100593741643,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2319,gw2,2009-12-17,267.8899406258357,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2320,my_sewer,2009-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2321,my_land,2009-12-18,6.3343100287595355,percolation,0.0,0.0,0.0006049952429347757,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2322,my_land,2009-12-18,0.0807284077017154,subsurface_runoff,0.0,0.0,6.41518790207081e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 +2323,my_land,2009-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2324,my_groundwater,2009-12-18,5.806460791772891,tank,0.0,0.0,0.0005830690175857697,0.0,0.0,0.0,0.0,0.0,12.119210408233748,0.0,0.0,0.0 +2325,my_reservoir,2009-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2326,gw1,2009-12-18,257.14599231166983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2327,gw2,2009-12-18,267.85400768833017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2328,my_sewer,2009-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2329,my_land,2009-12-19,6.207623828184345,percolation,0.0,0.0,0.0005928953380760802,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2330,my_land,2009-12-19,0.06458272616137231,subsurface_runoff,0.0,0.0,5.132150321656648e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 +2331,my_land,2009-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.83,0.0,0.0,0.0 +2332,my_groundwater,2009-12-19,5.918314124867211,tank,0.0,0.0,0.000593681000138354,0.0,0.0,0.0,0.0,0.0,12.063441849979558,0.0,0.0,0.0 +2333,my_reservoir,2009-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2334,gw1,2009-12-19,257.1816856962587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2335,gw2,2009-12-19,267.8183143037413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2336,my_sewer,2009-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2337,my_land,2009-12-20,6.083471351620658,percolation,0.0,0.0,0.0005810374313145586,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 +2338,my_land,2009-12-20,0.051666180929097846,subsurface_runoff,0.0,0.0,4.105720257325319e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808716,0.0,0.0,0.0 +2339,my_land,2009-12-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.64,0.0,0.0,0.0 +2340,my_groundwater,2009-12-20,6.027360434927321,tank,0.0,0.0,0.000604025059632626,0.0,0.0,0.0,0.0,0.0,12.010923299375875,0.0,0.0,0.0 +2341,my_reservoir,2009-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2342,gw1,2009-12-20,257.2171411249503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2343,gw2,2009-12-20,267.7828588750497,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2344,my_sewer,2009-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2345,my_land,2009-12-21,5.972244372842278,percolation,0.0,0.0,0.0005703015038331835,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 +2346,my_land,2009-12-21,0.04417442726138264,subsurface_runoff,0.0,0.0,3.525343864340801e-06,0.0,0.0,0.0,0.0,0.0,7.648541220531589,0.0,0.0,0.0 +2347,my_land,2009-12-21,1.1000883128224178e-19,surface_runoff,0.0,0.0,6.714406206191515e-24,0.0,0.0,0.0,0.0,0.0,7.50911902814999,0.0,0.0,0.0 +2348,my_groundwater,2009-12-21,6.13386986571572,tank,0.0,0.0,0.0006141247061687199,0.0,0.0,0.0,0.0,0.0,11.961189538056397,0.0,0.0,0.0 +2349,my_reservoir,2009-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2350,gw1,2009-12-21,257.25236018411726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2351,gw2,2009-12-21,267.74763981588274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2352,my_sewer,2009-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 +2353,my_land,2009-12-22,5.852799485385432,percolation,0.0,0.0,0.0005588954737565198,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 +2354,my_land,2009-12-22,0.03533954180910611,subsurface_runoff,0.0,0.0,2.820275091472641e-06,0.0,0.0,0.0,0.0,0.0,7.64854122053159,0.0,0.0,0.0 +2355,my_land,2009-12-22,4.8563433426110564e-20,surface_runoff,0.0,0.0,2.964076747199131e-24,0.0,0.0,0.0,0.0,0.0,7.581674215988696,0.0,0.0,0.0 +2356,my_groundwater,2009-12-22,6.237681466289635,tank,0.0,0.0,0.0006239669094047701,0.0,0.0,0.0,0.0,0.0,11.914211567052623,0.0,0.0,0.0 +2357,my_reservoir,2009-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2358,gw1,2009-12-22,257.2873444495565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2359,gw2,2009-12-22,267.7126555504435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2360,my_sewer,2009-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2361,my_land,2009-12-23,5.7403164519041985,percolation,0.0,0.0,0.0005481036981647497,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 +2362,my_land,2009-12-23,0.02951597527761811,subsurface_runoff,0.0,0.0,2.361290517629915e-06,0.0,0.0,0.0,0.0,0.0,7.576517431952746,0.0,0.0,0.0 +2363,my_land,2009-12-23,7.371092670390645e-20,surface_runoff,0.0,0.0,8.997915857410455e-24,0.0,0.0,0.0,0.0,0.0,7.470011856126202,0.0,0.0,0.0 +2364,my_groundwater,2009-12-23,6.338943704680531,tank,0.0,0.0,0.0006335648174153263,0.0,0.0,0.0,0.0,0.0,11.869686201935572,0.0,0.0,0.0 +2365,my_reservoir,2009-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2366,gw1,2009-12-23,257.3220954865594,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2367,gw2,2009-12-23,267.6779045134406,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2368,my_sewer,2009-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2369,my_land,2009-12-24,5.625510122866115,percolation,0.0,0.0,0.0005371416242014547,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 +2370,my_land,2009-12-24,0.02361278022209449,subsurface_runoff,0.0,0.0,1.889032414103932e-06,0.0,0.0,0.0,0.0,0.0,7.576517431952746,0.0,0.0,0.0 +2371,my_land,2009-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.88,0.0,0.0,0.0 +2372,my_groundwater,2009-12-24,6.437615658634319,tank,0.0,0.0,0.0006429155741501748,0.0,0.0,0.0,0.0,0.0,11.827512218987213,0.0,0.0,0.0 +2373,my_reservoir,2009-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2374,gw1,2009-12-24,257.35661484998235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2375,gw2,2009-12-24,267.64338515001765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2376,my_sewer,2009-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2377,my_land,2009-12-25,5.5129999204087925,percolation,0.0,0.0,0.0005263987917174256,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 +2378,my_land,2009-12-25,0.01889022417767559,subsurface_runoff,0.0,0.0,1.5112259312831457e-06,0.0,0.0,0.0,0.0,0.0,7.576517431952746,0.0,0.0,0.0 +2379,my_land,2009-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.69,0.0,0.0,0.0 +2380,my_groundwater,2009-12-25,6.533750546438912,tank,0.0,0.0,0.0006520242606176184,0.0,0.0,0.0,0.0,0.0,11.78751424960561,0.0,0.0,0.0 +2381,my_reservoir,2009-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2382,gw1,2009-12-25,257.3909040843158,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2383,gw2,2009-12-25,267.6090959156842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2384,my_sewer,2009-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2385,my_land,2009-12-26,5.46702033031174,percolation,0.0,0.0,0.0005213988893182491,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 +2386,my_land,2009-12-26,0.03260344690979322,subsurface_runoff,0.0,0.0,2.7132184144610445e-06,0.0,0.0,0.0,0.0,0.0,6.444817053548904,0.0,0.0,0.0 +2387,my_land,2009-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0 +2388,my_groundwater,2009-12-26,6.628709083939876,tank,0.0,0.0,0.0006610083916414815,0.0,0.0,0.0,0.0,0.0,11.748293699716982,0.0,0.0,0.0 +2389,my_reservoir,2009-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2390,gw1,2009-12-26,257.4249647237537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2391,gw2,2009-12-26,267.5750352762463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2392,my_sewer,2009-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2393,my_land,2009-12-27,5.357679923705506,percolation,0.0,0.0,0.0005109709115318841,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 +2394,my_land,2009-12-27,0.026082757527834576,subsurface_runoff,0.0,0.0,2.1705747315688355e-06,0.0,0.0,0.0,0.0,0.0,6.444817053548904,0.0,0.0,0.0 +2395,my_land,2009-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0 +2396,my_groundwater,2009-12-27,6.721204366819745,tank,0.0,0.0,0.000669757778504277,0.0,0.0,0.0,0.0,0.0,11.711022951879126,0.0,0.0,0.0 +2397,my_reservoir,2009-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2398,gw1,2009-12-27,257.45879829226203,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2399,gw2,2009-12-27,267.54120170773797,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2400,my_sewer,2009-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 +2401,my_land,2009-12-28,5.285039565992235,percolation,0.0,0.0,0.0005037789349040067,0.0,0.0,0.0,0.0,0.0,9.423373675159528,0.0,0.0,0.0 +2402,my_land,2009-12-28,0.03025756405242786,subsurface_runoff,0.0,0.0,2.5602534186592234e-06,0.0,0.0,0.0,0.0,0.0,6.0411298700710905,0.0,0.0,0.0 +2403,my_land,2009-12-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.12,0.0,0.0,0.0 +2404,my_groundwater,2009-12-28,6.811989661353253,tank,0.0,0.0,0.0006783388838042764,0.0,0.0,0.0,0.0,0.0,11.674891906269382,0.0,0.0,0.0 +2405,my_reservoir,2009-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2406,gw1,2009-12-28,257.49240630364693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2407,gw2,2009-12-28,267.50759369635307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2408,my_sewer,2009-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0 +2409,my_land,2009-12-29,5.597647160827557,percolation,0.0,0.0,0.0005272334395200553,0.0,0.0,0.0,0.0,0.0,9.084230831262616,0.0,0.0,0.0 +2410,my_land,2009-12-29,0.1380314624406272,subsurface_runoff,0.0,0.0,1.1172034929248117e-05,0.0,0.0,0.0,0.0,0.0,5.087820585471736,0.0,0.0,0.0 +2411,my_land,2009-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.93,0.0,0.0,0.0 +2412,my_groundwater,2009-12-29,6.908911790116716,tank,0.0,0.0,0.0006873760030421383,0.0,0.0,0.0,0.0,0.0,11.632162850462919,0.0,0.0,0.0 +2413,my_reservoir,2009-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2414,gw1,2009-12-29,257.5257902616226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2415,gw2,2009-12-29,267.4742097383774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2416,my_sewer,2009-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 +2417,my_land,2009-12-30,5.79959193001041,percolation,0.0,0.0,0.0005414960678622793,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2418,my_land,2009-12-30,0.1958395134625439,subsurface_runoff,0.0,0.0,1.5687912877446142e-05,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2419,my_land,2009-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,0.0,0.0 +2420,my_groundwater,2009-12-30,7.009702632073779,tank,0.0,0.0,0.0006966808758445865,0.0,0.0,0.0,0.0,0.0,11.585329387879021,0.0,0.0,0.0 +2421,my_reservoir,2009-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2422,gw1,2009-12-30,257.55895165987846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2423,gw2,2009-12-30,267.44104834012154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2424,my_sewer,2009-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 +2425,my_land,2009-12-31,5.683600091410202,percolation,0.0,0.0,0.0005306661465050337,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2426,my_land,2009-12-31,0.15667161077003514,subsurface_runoff,0.0,0.0,1.2550330301956913e-05,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2427,my_land,2009-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,0.0,0.0 +2428,my_groundwater,2009-12-31,7.107880234497302,tank,0.0,0.0,0.0007057420202088274,0.0,0.0,0.0,0.0,0.0,11.540828897732194,0.0,0.0,0.0 +2429,my_reservoir,2009-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2430,gw1,2009-12-31,257.5918919821459,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2431,gw2,2009-12-31,267.4081080178541,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2432,my_sewer,2010-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 +2433,my_land,2010-01-01,5.569928089581998,percolation,0.0,0.0,0.0005200528235749331,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2434,my_land,2010-01-01,0.1253372886160281,subsurface_runoff,0.0,0.0,1.004026424156553e-05,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2435,my_land,2010-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,0.0,0.0 +2436,my_groundwater,2010-01-01,7.203498355734692,tank,0.0,0.0,0.0007145644547810807,0.0,0.0,0.0,0.0,0.0,11.498497763254639,0.0,0.0,0.0 +2437,my_reservoir,2010-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2438,gw1,2010-01-01,257.6246127022649,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2439,gw2,2010-01-01,267.3753872977351,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2440,my_sewer,2010-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 +2441,my_land,2010-01-02,5.458529527790358,percolation,0.0,0.0,0.0005096517671034344,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2442,my_land,2010-01-02,0.10026983089282249,subsurface_runoff,0.0,0.0,8.032211393252424e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2443,my_land,2010-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.17,0.0,0.0,0.0 +2444,my_groundwater,2010-01-02,7.296609675232516,tank,0.0,0.0,0.0007231530974744479,0.0,0.0,0.0,0.0,0.0,11.458187292075037,0.0,0.0,0.0 +2445,my_reservoir,2010-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2446,gw1,2010-01-02,257.6571152842498,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2447,gw2,2010-01-02,267.3428847157502,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2448,my_sewer,2010-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 +2449,my_land,2010-01-03,5.34935893723455,percolation,0.0,0.0,0.0004994587317613657,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2450,my_land,2010-01-03,0.08021586471425798,subsurface_runoff,0.0,0.0,6.42576911460194e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2451,my_land,2010-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.17,0.0,0.0,0.0 +2452,my_groundwater,2010-01-03,7.387265815123853,tank,0.0,0.0,0.0007315127674844753,0.0,0.0,0.0,0.0,0.0,11.419762052007016,0.0,0.0,0.0 +2453,my_reservoir,2010-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2454,gw1,2010-01-03,257.6894011823548,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2455,gw2,2010-01-03,267.3105988176452,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2456,my_sewer,2010-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 +2457,my_land,2010-01-04,5.242371758489859,percolation,0.0,0.0,0.0004894695571261384,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 +2458,my_land,2010-01-04,0.06417269177140639,subsurface_runoff,0.0,0.0,5.1406152916815516e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 +2459,my_land,2010-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7899999999999996,0.0,0.0,0.0 +2460,my_groundwater,2010-01-04,7.475517361383873,tank,0.0,0.0,0.0007396481872644034,0.0,0.0,0.0,0.0,0.0,11.383098424676954,0.0,0.0,0.0 +2461,my_reservoir,2010-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2462,gw1,2010-01-04,257.7214718411391,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2463,gw2,2010-01-04,267.2785281588609,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2464,my_sewer,2010-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2465,my_land,2010-01-05,5.595701071922447,percolation,0.0,0.0,0.00051700062067468,0.0,0.0,0.0,0.0,0.0,8.43688645248716,0.0,0.0,0.0 +2466,my_land,2010-01-05,0.1760120986150529,subsurface_runoff,0.0,0.0,1.4267717999621283e-05,0.0,0.0,0.0,0.0,0.0,4.128152403889333,0.0,0.0,0.0 +2467,my_land,2010-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2468,my_groundwater,2010-01-05,7.570741054087406,tank,0.0,0.0,0.0007483237222885484,0.0,0.0,0.0,0.0,0.0,11.338768506647448,0.0,0.0,0.0 +2469,my_reservoir,2010-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2470,gw1,2010-01-05,257.7533286955315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2471,gw2,2010-01-05,267.2466713044685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2472,my_sewer,2010-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2473,my_land,2010-01-06,5.580116949603307,percolation,0.0,0.0,0.0005145366621982396,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2474,my_land,2010-01-06,0.16702189633947348,subsurface_runoff,0.0,0.0,1.3557318328146888e-05,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 +2475,my_land,2010-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.646428571,0.0,0.0,0.0 +2476,my_groundwater,2010-01-06,7.665409439354826,tank,0.0,0.0,0.0007569274093204341,0.0,0.0,0.0,0.0,0.0,11.294545275112634,0.0,0.0,0.0 +2477,my_reservoir,2010-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2478,gw1,2010-01-06,257.7849731708946,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2479,gw2,2010-01-06,267.2150268291054,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2480,my_sewer,2010-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2481,my_land,2010-01-07,5.4685146106112414,percolation,0.0,0.0,0.0005042459289542748,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2482,my_land,2010-01-07,0.1336175170715788,subsurface_runoff,0.0,0.0,1.084585466251751e-05,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 +2483,my_land,2010-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.692857143,0.0,0.0,0.0 +2484,my_groundwater,2010-01-07,7.757569248901024,tank,0.0,0.0,0.000765300097207988,0.0,0.0,0.0,0.0,0.0,11.252355988123506,0.0,0.0,0.0 +2485,my_reservoir,2010-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2486,gw1,2010-01-07,257.81640668308864,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2487,gw2,2010-01-07,267.18359331691136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2488,my_sewer,2010-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2489,my_land,2010-01-08,5.359144318399016,percolation,0.0,0.0,0.0004941610103751893,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2490,my_land,2010-01-08,0.10689401365726303,subsurface_runoff,0.0,0.0,8.676683730014009e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 +2491,my_land,2010-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.692857143,0.0,0.0,0.0 +2492,my_groundwater,2010-01-08,7.847272192260466,tank,0.0,0.0,0.0007734465532476057,0.0,0.0,0.0,0.0,0.0,11.212069648830404,0.0,0.0,0.0 +2493,my_reservoir,2010-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2494,gw1,2010-01-08,257.8476306385347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2495,gw2,2010-01-08,267.1523693614653,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2496,my_sewer,2010-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 +2497,my_land,2010-01-09,5.2519614320310355,percolation,0.0,0.0,0.00048427779016768554,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 +2498,my_land,2010-01-09,0.08551521092581042,subsurface_runoff,0.0,0.0,6.941346984011207e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 +2499,my_land,2010-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.692857143,0.0,0.0,0.0 +2500,my_groundwater,2010-01-09,7.934568940931875,tank,0.0,0.0,0.0007813714490214717,0.0,0.0,0.0,0.0,0.0,11.173566246336268,0.0,0.0,0.0 +2501,my_reservoir,2010-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2502,gw1,2010-01-09,257.8786464342778,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2503,gw2,2010-01-09,267.1213535657222,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2504,my_sewer,2010-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 +2505,my_land,2010-01-10,5.271405021349969,percolation,0.0,0.0,0.0004851472857525874,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 +2506,my_land,2010-01-10,0.10228504437590111,subsurface_runoff,0.0,0.0,8.425200413945183e-06,0.0,0.0,0.0,0.0,0.0,3.9706709156643982,0.0,0.0,0.0 +2507,my_land,2010-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 +2508,my_groundwater,2010-01-10,8.022043263657027,tank,0.0,0.0,0.0007892942330017385,0.0,0.0,0.0,0.0,0.0,11.134417378656101,0.0,0.0,0.0 +2509,my_reservoir,2010-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2510,gw1,2010-01-10,257.9094554580493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2511,gw2,2010-01-10,267.0905445419507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2512,my_sewer,2010-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 +2513,my_land,2010-01-11,5.16597692092297,percolation,0.0,0.0,0.00047544434003753567,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 +2514,my_land,2010-01-11,0.08182803550072089,subsurface_runoff,0.0,0.0,6.740160331156146e-06,0.0,0.0,0.0,0.0,0.0,3.9706709156643987,0.0,0.0,0.0 +2515,my_land,2010-01-11,1.470360143031558e-19,surface_runoff,0.0,0.0,8.97436610737035e-24,0.0,0.0,0.0,0.0,0.0,3.924387471079308,0.0,0.0,0.0 +2516,my_groundwater,2010-01-11,8.107152685673817,tank,0.0,0.0,0.0007969996857699982,0.0,0.0,0.0,0.0,0.0,11.096962088057158,0.0,0.0,0.0 +2517,my_reservoir,2010-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2518,gw1,2010-01-11,257.940059088329,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2519,gw2,2010-01-11,267.059940911671,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2520,my_sewer,2010-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 +2521,my_land,2010-01-12,5.220255377539899,percolation,0.0,0.0,0.00047929673131235994,0.0,0.0,0.0,0.0,0.0,8.114873689909818,0.0,0.0,0.0 +2522,my_land,2010-01-12,0.10834623657347146,subsurface_runoff,0.0,0.0,9.02785019025145e-06,0.0,0.0,0.0,0.0,0.0,3.9312350398500895,0.0,0.0,0.0 +2523,my_land,2010-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 +2524,my_groundwater,2010-01-12,8.193154288430982,tank,0.0,0.0,0.0008047642985858606,0.0,0.0,0.0,0.0,0.0,11.058282846148265,0.0,0.0,0.0 +2525,my_reservoir,2010-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2526,gw1,2010-01-12,257.97045869440683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2527,gw2,2010-01-12,267.02954130559317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2528,my_sewer,2010-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 +2529,my_land,2010-01-13,5.185501125226548,percolation,0.0,0.0,0.000475639795819567,0.0,0.0,0.0,0.0,0.0,8.058602747324542,0.0,0.0,0.0 +2530,my_land,2010-01-13,0.10562960292883065,subsurface_runoff,0.0,0.0,8.835613249739743e-06,0.0,0.0,0.0,0.0,0.0,3.930207122192752,0.0,0.0,0.0 +2531,my_land,2010-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3285714290000006,0.0,0.0,0.0 +2532,my_groundwater,2010-01-13,8.278233389902015,tank,0.0,0.0,0.0008124350551114371,0.0,0.0,0.0,0.0,0.0,11.020031666547709,0.0,0.0,0.0 +2533,my_reservoir,2010-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2534,gw1,2010-01-13,258.0006556364441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2535,gw2,2010-01-13,266.9993443635559,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2536,my_sewer,2010-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 +2537,my_land,2010-01-14,5.209306213210817,percolation,0.0,0.0,0.0004769237402337495,0.0,0.0,0.0,0.0,0.0,7.964900265215151,0.0,0.0,0.0 +2538,my_land,2010-01-14,0.11920167159171746,subsurface_runoff,0.0,0.0,1.0006379125118009e-05,0.0,0.0,0.0,0.0,0.0,4.017654880112094,0.0,0.0,0.0 +2539,my_land,2010-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 +2540,my_groundwater,2010-01-14,8.363584397196195,tank,0.0,0.0,0.0008201127721855599,0.0,0.0,0.0,0.0,0.0,10.98129393711545,0.0,0.0,0.0 +2541,my_reservoir,2010-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2542,gw1,2010-01-14,258.03065126553446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2543,gw2,2010-01-14,266.96934873446554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2544,my_sewer,2010-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 +2545,my_land,2010-01-15,5.439003679181147,percolation,0.0,0.0,0.0004947111582193492,0.0,0.0,0.0,0.0,0.0,7.755879344286624,0.0,0.0,0.0 +2546,my_land,2010-01-15,0.1862140148882167,subsurface_runoff,0.0,0.0,1.5440720385883434e-05,0.0,0.0,0.0,0.0,0.0,4.2822248709157815,0.0,0.0,0.0 +2547,my_land,2010-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 +2548,my_groundwater,2010-01-15,8.45339801110082,tank,0.0,0.0,0.0008281333959759898,0.0,0.0,0.0,0.0,0.0,10.939047469084326,0.0,0.0,0.0 +2549,my_reservoir,2010-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2550,gw1,2010-01-15,258.06044692376423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2551,gw2,2010-01-15,266.93955307623577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2552,my_sewer,2010-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 +2553,my_land,2010-01-16,5.493487049110043,percolation,0.0,0.0,0.0004981146742631363,0.0,0.0,0.0,0.0,0.0,7.671509146608003,0.0,0.0,0.0 +2554,my_land,2010-01-16,0.19339663871670099,subsurface_runoff,0.0,0.0,1.597100874630516e-05,0.0,0.0,0.0,0.0,0.0,4.4280380722832415,0.0,0.0,0.0 +2555,my_land,2010-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.539285714,0.0,0.0,0.0 +2556,my_groundwater,2010-01-16,8.544096216715666,tank,0.0,0.0,0.0008362032540692637,0.0,0.0,0.0,0.0,0.0,10.896279415185015,0.0,0.0,0.0 +2557,my_reservoir,2010-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2558,gw1,2010-01-16,258.09004394427245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2559,gw2,2010-01-16,266.90995605572755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2560,my_sewer,2010-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 +2561,my_land,2010-01-17,5.3836173081278424,percolation,0.0,0.0,0.00048815238077787364,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 +2562,my_land,2010-01-17,0.15471731097336078,subsurface_runoff,0.0,0.0,1.2776806997044128e-05,0.0,0.0,0.0,0.0,0.0,4.4280380722832415,0.0,0.0,0.0 +2563,my_land,2010-01-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.942857143,0.0,0.0,0.0 +2564,my_groundwater,2010-01-17,8.632331042803623,tank,0.0,0.0,0.0008440501336856401,0.0,0.0,0.0,0.0,0.0,10.855338108520813,0.0,0.0,0.0 +2565,my_reservoir,2010-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2566,gw1,2010-01-17,258.11944365131063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2567,gw2,2010-01-17,266.88055634868937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2568,my_sewer,2010-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 +2569,my_land,2010-01-18,5.275944961965285,percolation,0.0,0.0,0.00047838933316231617,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 +2570,my_land,2010-01-18,0.12377384877868863,subsurface_runoff,0.0,0.0,1.0221445597635302e-05,0.0,0.0,0.0,0.0,0.0,4.4280380722832415,0.0,0.0,0.0 +2571,my_land,2010-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.346428571,0.0,0.0,0.0 +2572,my_groundwater,2010-01-18,8.718153380493764,tank,0.0,0.0,0.0008516786483479445,0.0,0.0,0.0,0.0,0.0,10.816114973373951,0.0,0.0,0.0 +2573,my_reservoir,2010-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2574,gw1,2010-01-18,258.1486473603019,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2575,gw2,2010-01-18,266.8513526396981,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2576,my_sewer,2010-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 +2577,my_land,2010-01-19,5.404971714225109,percolation,0.0,0.0,0.0004880645082684431,0.0,0.0,0.0,0.0,0.0,7.597066360888079,0.0,0.0,0.0 +2578,my_land,2010-01-19,0.1628410250091085,subsurface_runoff,0.0,0.0,1.3413336551407082e-05,0.0,0.0,0.0,0.0,0.0,5.026895812128009,0.0,0.0,0.0 +2579,my_land,2010-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 +2580,my_groundwater,2010-01-19,8.806387778367826,tank,0.0,0.0,0.0008594850506453965,0.0,0.0,0.0,0.0,0.0,10.775895166590361,0.0,0.0,0.0 +2581,my_reservoir,2010-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2582,gw1,2010-01-19,258.1776563778999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2583,gw2,2010-01-19,266.8223436221001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2584,my_sewer,2010-01-20,3.469446951953614e-18,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 +2585,my_land,2010-01-20,5.545449938784897,percolation,0.0,0.0,0.0004983519242412896,0.0,0.0,0.0,0.0,0.0,7.538491083432965,0.0,0.0,0.0 +2586,my_land,2010-01-20,0.1979129992846445,subsurface_runoff,0.0,0.0,1.618609948281693e-05,0.0,0.0,0.0,0.0,0.0,5.458695121181545,0.0,0.0,0.0 +2587,my_land,2010-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 +2588,my_groundwater,2010-01-20,8.897261325532886,tank,0.0,0.0,0.000867481359333695,0.0,0.0,0.0,0.0,0.0,10.73481859609858,0.0,0.0,0.0 +2589,my_reservoir,2010-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2590,gw1,2010-01-20,258.20647200204724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2591,gw2,2010-01-20,266.79352799795276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2592,my_sewer,2010-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.507142857000001,0.0,0.0,0.0 +2593,my_land,2010-01-21,5.864379918798938,percolation,0.0,0.0,0.0005218103629598466,0.0,0.0,0.0,0.0,0.0,7.442225220176505,0.0,0.0,0.0 +2594,my_land,2010-01-21,0.275293386853495,subsurface_runoff,0.0,0.0,2.204424753275226e-05,0.0,0.0,0.0,0.0,0.0,5.784322022665175,0.0,0.0,0.0 +2595,my_land,2010-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.507142857,0.0,0.0,0.0 +2596,my_groundwater,2010-01-21,8.994400191994602,tank,0.0,0.0,0.0008759352240384719,0.0,0.0,0.0,0.0,0.0,10.691116243620753,0.0,0.0,0.0 +2597,my_reservoir,2010-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2598,gw1,2010-01-21,258.2350955220336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2599,gw2,2010-01-21,266.7649044779664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2600,my_sewer,2010-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2601,my_land,2010-01-22,6.350159495292647,percolation,0.0,0.0,0.0005559979442267178,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 +2602,my_land,2010-01-22,0.38433462101196253,subsurface_runoff,0.0,0.0,2.977792551628838e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2603,my_land,2010-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.385714286,0.0,0.0,0.0 +2604,my_groundwater,2010-01-22,9.10118529552593,tank,0.0,0.0,0.0008850639155572768,0.0,0.0,0.0,0.0,0.0,10.643179567872199,0.0,0.0,0.0 +2605,my_reservoir,2010-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2606,gw1,2010-01-22,258.26352821855335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2607,gw2,2010-01-22,266.73647178144665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2608,my_sewer,2010-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2609,my_land,2010-01-23,6.2231563053867935,percolation,0.0,0.0,0.0005448779853421834,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 +2610,my_land,2010-01-23,0.30746769680957003,subsurface_runoff,0.0,0.0,2.3822340413030704e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2611,my_land,2010-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.385714286,0.0,0.0,0.0 +2612,my_groundwater,2010-01-23,9.205118014218204,tank,0.0,0.0,0.0008939434147557066,0.0,0.0,0.0,0.0,0.0,10.597391771782826,0.0,0.0,0.0 +2613,my_reservoir,2010-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2614,gw1,2010-01-23,258.291771363763,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2615,gw2,2010-01-23,266.708228636237,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2616,my_sewer,2010-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2617,my_land,2010-01-24,6.098693179279057,percolation,0.0,0.0,0.0005339804256353398,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2618,my_land,2010-01-24,0.24597415744765605,subsurface_runoff,0.0,0.0,1.9057872330424564e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2619,my_land,2010-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142857143,0.0,0.0,0.0 +2620,my_groundwater,2010-01-24,9.306257187475126,tank,0.0,0.0,0.0009025788720263938,0.0,0.0,0.0,0.0,0.0,10.553618236185576,0.0,0.0,0.0 +2621,my_reservoir,2010-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2622,gw1,2010-01-24,258.3198262213379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2623,gw2,2010-01-24,266.6801737786621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2624,my_sewer,2010-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2625,my_land,2010-01-25,5.976719315693476,percolation,0.0,0.0,0.000523300817122633,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2626,my_land,2010-01-25,0.19677932595812483,subsurface_runoff,0.0,0.0,1.5246297864339652e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2627,my_land,2010-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142857143,0.0,0.0,0.0 +2628,my_groundwater,2010-01-25,9.404660473433054,tank,0.0,0.0,0.0009109753343377529,0.0,0.0,0.0,0.0,0.0,10.511735326474067,0.0,0.0,0.0 +2629,my_reservoir,2010-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2630,gw1,2010-01-25,258.347694046529,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2631,gw2,2010-01-25,266.652305953471,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2632,my_sewer,2010-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2633,my_land,2010-01-26,5.857184929379606,percolation,0.0,0.0,0.0005128348007801803,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2634,my_land,2010-01-26,0.15742346076649988,subsurface_runoff,0.0,0.0,1.219703829147172e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2635,my_land,2010-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142857143,0.0,0.0,0.0 +2636,my_groundwater,2010-01-26,9.500384372597557,tank,0.0,0.0,0.000919137747303505,0.0,0.0,0.0,0.0,0.0,10.47162929414594,0.0,0.0,0.0 +2637,my_reservoir,2010-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2638,gw1,2010-01-26,258.3753760862188,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2639,gw2,2010-01-26,266.6246239137812,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2640,my_sewer,2010-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 +2641,my_land,2010-01-27,5.740041230792015,percolation,0.0,0.0,0.0005025781047645767,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 +2642,my_land,2010-01-27,0.12593876861319991,subsurface_runoff,0.0,0.0,9.757630633177377e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 +2643,my_land,2010-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.910714286,0.0,0.0,0.0 +2644,my_groundwater,2010-01-27,9.593484251007185,tank,0.0,0.0,0.0009270709572108108,0.0,0.0,0.0,0.0,0.0,10.433195307584425,0.0,0.0,0.0 +2645,my_reservoir,2010-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2646,gw1,2010-01-27,258.40287357897734,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2647,gw2,2010-01-27,266.59712642102266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2648,my_sewer,2010-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2649,my_land,2010-01-28,5.948977579347393,percolation,0.0,0.0,0.0005173384354337487,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 +2650,my_land,2010-01-28,0.18884276269225234,subsurface_runoff,0.0,0.0,1.4557639952654421e-05,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +2651,my_land,2010-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2652,my_groundwater,2010-01-28,9.690604726816382,tank,0.0,0.0,0.0009352848122533994,0.0,0.0,0.0,0.0,0.0,10.393080062630078,0.0,0.0,0.0 +2653,my_reservoir,2010-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2654,gw1,2010-01-28,258.43018775511746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2655,gw2,2010-01-28,266.56981224488254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2656,my_sewer,2010-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2657,my_land,2010-01-29,5.829998027760445,percolation,0.0,0.0,0.0005069916667250737,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 +2658,my_land,2010-01-29,0.15107421015380187,subsurface_runoff,0.0,0.0,1.1646111962123537e-05,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +2659,my_land,2010-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.932142857,0.0,0.0,0.0 +2660,my_groundwater,2010-01-29,9.785060317707321,tank,0.0,0.0,0.0009432675020096692,0.0,0.0,0.0,0.0,0.0,10.354633166148314,0.0,0.0,0.0 +2661,my_reservoir,2010-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2662,gw1,2010-01-29,258.45731983675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2663,gw2,2010-01-29,266.54268016325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2664,my_sewer,2010-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2665,my_land,2010-01-30,5.713398067205237,percolation,0.0,0.0,0.0004968518333905722,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 +2666,my_land,2010-01-30,0.1208593681230415,subsurface_runoff,0.0,0.0,9.31688956969883e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +2667,my_land,2010-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.932142857,0.0,0.0,0.0 +2668,my_groundwater,2010-01-30,9.876906127566874,tank,0.0,0.0,0.0009510238170058103,0.0,0.0,0.0,0.0,0.0,10.317758319609332,0.0,0.0,0.0 +2669,my_reservoir,2010-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2670,gw1,2010-01-30,258.4842710378383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2671,gw2,2010-01-30,266.5157289621617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2672,my_sewer,2010-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2673,my_land,2010-01-31,5.599130105861132,percolation,0.0,0.0,0.0004869147967227608,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 +2674,my_land,2010-01-31,0.0966874944984332,subsurface_runoff,0.0,0.0,7.453511655759064e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +2675,my_land,2010-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.932142857,0.0,0.0,0.0 +2676,my_groundwater,2010-01-31,9.966196153688701,tank,0.0,0.0,0.0009585584515394378,0.0,0.0,0.0,0.0,0.0,10.282366468512393,0.0,0.0,0.0 +2677,my_reservoir,2010-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2678,gw1,2010-01-31,258.5110425642527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2679,gw2,2010-01-31,266.4889574357473,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2680,my_sewer,2010-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 +2681,my_land,2010-02-01,5.487147503743909,percolation,0.0,0.0,0.00047717650078830557,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 +2682,my_land,2010-02-01,0.07734999559874656,subsurface_runoff,0.0,0.0,5.962809324607251e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 +2683,my_land,2010-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.964285714,0.0,0.0,0.0 +2684,my_groundwater,2010-02-01,10.052983308916408,tank,0.0,0.0,0.0009658760056052083,0.0,0.0,0.0,0.0,0.0,10.248375133426316,0.0,0.0,0.0 +2685,my_reservoir,2010-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2686,gw1,2010-02-01,258.53763561382436,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2687,gw2,2010-02-01,266.46236438617564,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2688,my_sewer,2010-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2689,my_land,2010-02-02,5.4619531515295705,percolation,0.0,0.0,0.000474456910441503,0.0,0.0,0.0,0.0,0.0,7.199284322180771,0.0,0.0,0.0 +2690,my_land,2010-02-02,0.08488641766553862,subsurface_runoff,0.0,0.0,6.627101791376562e-06,0.0,0.0,0.0,0.0,0.0,5.75007588655856,0.0,0.0,0.0 +2691,my_land,2010-02-02,7.700984001047825e-19,surface_runoff,0.0,0.0,4.7003076178270417e-23,0.0,0.0,0.0,0.0,0.0,5.578035584901133,0.0,0.0,0.0 +2692,my_groundwater,2010-02-02,10.139040611228827,tank,0.0,0.0,0.0009731199026966116,0.0,0.0,0.0,0.0,0.0,10.21493728754887,0.0,0.0,0.0 +2693,my_reservoir,2010-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2694,gw1,2010-02-02,258.5640513763989,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2695,gw2,2010-02-02,266.4359486236011,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2696,my_sewer,2010-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2697,my_land,2010-02-03,5.412538085648388,percolation,0.0,0.0,0.00046981752641690126,0.0,0.0,0.0,0.0,0.0,7.1825849507588515,0.0,0.0,0.0 +2698,my_land,2010-02-03,0.08418777281254215,subsurface_runoff,0.0,0.0,6.621342435612355e-06,0.0,0.0,0.0,0.0,0.0,5.738153905466668,0.0,0.0,0.0 +2699,my_land,2010-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.021428571,0.0,0.0,0.0 +2700,my_groundwater,2010-02-03,10.223876820730025,tank,0.0,0.0,0.0009802512454419286,0.0,0.0,0.0,0.0,0.0,10.182257302968697,0.0,0.0,0.0 +2701,my_reservoir,2010-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2702,gw1,2010-02-03,258.59029103388957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2703,gw2,2010-02-03,266.40970896611043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2704,my_sewer,2010-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2705,my_land,2010-02-04,5.361160998090796,percolation,0.0,0.0,0.0004650519439924097,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +2706,my_land,2010-02-04,0.08282604795217677,subsurface_runoff,0.0,0.0,6.5571469019174934e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2707,my_land,2010-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.067857143,0.0,0.0,0.0 +2708,my_groundwater,2010-02-04,10.307455048996477,tank,0.0,0.0,0.0009872677461881692,0.0,0.0,0.0,0.0,0.0,10.150332265750546,0.0,0.0,0.0 +2709,my_reservoir,2010-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2710,gw1,2010-02-04,258.6163557603303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2711,gw2,2010-02-04,266.3836442396697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2712,my_sewer,2010-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2713,my_land,2010-02-05,5.2539377781289796,percolation,0.0,0.0,0.0004557509051125615,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +2714,my_land,2010-02-05,0.06626083836174142,subsurface_runoff,0.0,0.0,5.245717521533995e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2715,my_land,2010-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.114285714,0.0,0.0,0.0 +2716,my_groundwater,2010-02-05,10.388641573285897,tank,0.0,0.0,0.0009940773631053473,0.0,0.0,0.0,0.0,0.0,10.119618912270518,0.0,0.0,0.0 +2717,my_reservoir,2010-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2718,gw1,2010-02-05,258.6422467219281,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2719,gw2,2010-02-05,266.3577532780719,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2720,my_sewer,2010-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2721,my_land,2010-02-06,5.1488590225664,percolation,0.0,0.0,0.0004466358870103103,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 +2722,my_land,2010-02-06,0.053008670689393134,subsurface_runoff,0.0,0.0,4.196574017227196e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2723,my_land,2010-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.160714285999999,0.0,0.0,0.0 +2724,my_groundwater,2010-02-06,10.467486028026356,tank,0.0,0.0,0.0010006844002545796,0.0,0.0,0.0,0.0,0.0,10.090054089646225,0.0,0.0,0.0 +2725,my_reservoir,2010-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2726,gw1,2010-02-06,258.66796507711524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2727,gw2,2010-02-06,266.33203492288476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2728,my_sewer,2010-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2729,my_land,2010-02-07,5.045881842115072,percolation,0.0,0.0,0.00043770316927010407,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2730,my_land,2010-02-07,0.04240693655151451,subsurface_runoff,0.0,0.0,3.357259213781757e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2731,my_land,2010-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.207142857,0.0,0.0,0.0 +2732,my_groundwater,2010-02-07,10.544037050456488,tank,0.0,0.0,0.0010070930751997988,0.0,0.0,0.0,0.0,0.0,10.061578934624475,0.0,0.0,0.0 +2733,my_reservoir,2010-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2734,gw1,2010-02-07,258.69351197660114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2735,gw2,2010-02-07,266.30648802339886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2736,my_sewer,2010-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2737,my_land,2010-02-08,4.944964205272771,percolation,0.0,0.0,0.00042894910588470197,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2738,my_land,2010-02-08,0.033925549241211606,subsurface_runoff,0.0,0.0,2.6858073710254054e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2739,my_land,2010-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.253571429,0.0,0.0,0.0 +2740,my_groundwater,2010-02-08,10.618342300580542,tank,0.0,0.0,0.001013307520738738,0.0,0.0,0.0,0.0,0.0,10.034138515179773,0.0,0.0,0.0 +2741,my_reservoir,2010-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2742,gw1,2010-02-08,258.7188885634238,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2743,gw2,2010-02-08,266.2811114365762,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2744,my_sewer,2010-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2745,my_land,2010-02-09,4.846064921167316,percolation,0.0,0.0,0.0004203701237670079,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2746,my_land,2010-02-09,0.027140439392969284,subsurface_runoff,0.0,0.0,2.1486458968203244e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2747,my_land,2010-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2748,my_groundwater,2010-02-09,10.690448480724282,tank,0.0,0.0,0.0010193317865992908,0.0,0.0,0.0,0.0,0.0,10.007681507462033,0.0,0.0,0.0 +2749,my_reservoir,2010-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2750,gw1,2010-02-09,258.7440959730009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2751,gw2,2010-02-09,266.2559040269991,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2752,my_sewer,2010-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2753,my_land,2010-02-10,4.749143622743969,percolation,0.0,0.0,0.00041196272129166776,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2754,my_land,2010-02-10,0.02171235151437543,subsurface_runoff,0.0,0.0,1.7189167174562595e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2755,my_land,2010-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2756,my_groundwater,2010-02-10,10.76040135469976,tank,0.0,0.0,0.0010251698411019444,0.0,0.0,0.0,0.0,0.0,9.982159904091736,0.0,0.0,0.0 +2757,my_reservoir,2010-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2758,gw1,2010-02-10,258.76913533318094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2759,gw2,2010-02-10,266.23086466681906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2760,my_sewer,2010-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2761,my_land,2010-02-11,4.65416075028909,percolation,0.0,0.0,0.0004037234668658344,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 +2762,my_land,2010-02-11,0.017369881211500342,subsurface_runoff,0.0,0.0,1.3751333739650077e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2763,my_land,2010-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2764,my_groundwater,2010-02-11,10.828245766586752,tank,0.0,0.0,0.0010308255727889584,0.0,0.0,0.0,0.0,0.0,9.957528750310253,0.0,0.0,0.0 +2765,my_reservoir,2010-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2766,gw1,2010-02-11,258.79400776429304,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2767,gw2,2010-02-11,266.20599223570696,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2768,my_sewer,2010-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2769,my_land,2010-02-12,4.5610775352833075,percolation,0.0,0.0,0.0003956489975285177,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 +2770,my_land,2010-02-12,0.013895904969200273,subsurface_runoff,0.0,0.0,1.1001066991720063e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2771,my_land,2010-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2772,my_groundwater,2010-02-12,10.894025659138553,tank,0.0,0.0,0.0010363027920209595,0.0,0.0,0.0,0.0,0.0,9.933745904930765,0.0,0.0,0.0 +2773,my_reservoir,2010-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2774,gw1,2010-02-12,258.81871437919773,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2775,gw2,2010-02-12,266.18128562080227,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2776,my_sewer,2010-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2777,my_land,2010-02-13,4.4698559845776416,percolation,0.0,0.0,0.00038773601757794736,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2778,my_land,2010-02-13,0.011116723975360218,subsurface_runoff,0.0,0.0,8.80085359337605e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2779,my_land,2010-02-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2780,my_groundwater,2010-02-13,10.957784091819608,tank,0.0,0.0,0.0010416052325416011,0.0,0.0,0.0,0.0,0.0,9.91077182341208,0.0,0.0,0.0 +2781,my_reservoir,2010-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2782,gw1,2010-02-13,258.8432562833364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2783,gw2,2010-02-13,266.1567437166636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2784,my_sewer,2010-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2785,my_land,2010-02-14,4.380458864886089,percolation,0.0,0.0,0.0003799812972263884,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2786,my_land,2010-02-14,0.008893379180288175,subsurface_runoff,0.0,0.0,7.04068287470084e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2787,my_land,2010-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2788,my_groundwater,2010-02-14,11.019563258482382,tank,0.0,0.0,0.0010467365530109271,0.0,0.0,0.0,0.0,0.0,9.888569360703048,0.0,0.0,0.0 +2789,my_reservoir,2010-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2790,gw1,2010-02-14,258.8676345747808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2791,gw2,2010-02-14,266.1323654252192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2792,my_sewer,2010-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2793,my_land,2010-02-15,4.292849687588367,percolation,0.0,0.0,0.00037238167128186064,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2794,my_land,2010-02-15,0.00711470334423054,subsurface_runoff,0.0,0.0,5.632546299760672e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2795,my_land,2010-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2796,my_groundwater,2010-02-15,11.079404504690654,tank,0.0,0.0,0.0010517003385080662,0.0,0.0,0.0,0.0,0.0,9.86710359178685,0.0,0.0,0.0 +2797,my_reservoir,2010-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2798,gw1,2010-02-15,258.89185034428226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2799,gw2,2010-02-15,266.10814965571774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2800,my_sewer,2010-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0 +2801,my_land,2010-02-16,4.206992693836599,percolation,0.0,0.0,0.00036493403785622345,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2802,my_land,2010-02-16,0.005691762675384432,subsurface_runoff,0.0,0.0,4.506037039808538e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2803,my_land,2010-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2804,my_groundwater,2010-02-16,11.137348344696315,tank,0.0,0.0,0.0010565001020038693,0.0,0.0,0.0,0.0,0.0,9.84634164809865,0.0,0.0,0.0 +2805,my_reservoir,2010-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2806,gw1,2010-02-16,258.9159046753204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2807,gw2,2010-02-16,266.0840953246796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2808,my_sewer,2010-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0 +2809,my_land,2010-02-17,4.122852839959867,percolation,0.0,0.0,0.00035763535709909896,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2810,my_land,2010-02-17,0.004553410140307546,subsurface_runoff,0.0,0.0,3.6048296318468305e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2811,my_land,2010-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2812,my_groundwater,2010-02-17,11.193434478076615,tank,0.0,0.0,0.0010611392858040913,0.0,0.0,0.0,0.0,0.0,9.826252568202333,0.0,0.0,0.0 +2813,my_reservoir,2010-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2814,gw1,2010-02-17,258.9397986441516,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2815,gw2,2010-02-17,266.0602013558484,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2816,my_sewer,2010-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +2817,my_land,2010-02-18,4.04039578316067,percolation,0.0,0.0,0.000350482649957117,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2818,my_land,2010-02-18,0.0036427281122460367,subsurface_runoff,0.0,0.0,2.883863705477464e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2819,my_land,2010-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 +2820,my_groundwater,2010-02-18,11.247701806038624,tank,0.0,0.0,0.0010656212629637082,0.0,0.0,0.0,0.0,0.0,9.806807161297083,0.0,0.0,0.0 +2821,my_reservoir,2010-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2822,gw1,2010-02-18,258.9635333198573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2823,gw2,2010-02-18,266.0364666801427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2824,my_sewer,2010-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +2825,my_land,2010-02-19,3.9595878674974565,percolation,0.0,0.0,0.00034347299695797466,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2826,my_land,2010-02-19,0.0029141824897968294,subsurface_runoff,0.0,0.0,2.3070909643819713e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2827,my_land,2010-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +2828,my_groundwater,2010-02-19,11.300188447397582,tank,0.0,0.0,0.0010699493386729434,0.0,0.0,0.0,0.0,0.0,9.787977882285835,0.0,0.0,0.0 +2829,my_reservoir,2010-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2830,gw1,2010-02-19,258.98710976439156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2831,gw2,2010-02-19,266.01289023560844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2832,my_sewer,2010-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +2833,my_land,2010-02-20,3.8803961101475073,percolation,0.0,0.0,0.00033660353701881515,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 +2834,my_land,2010-02-20,0.0023313459918374636,subsurface_runoff,0.0,0.0,1.845672771505577e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 +2835,my_land,2010-02-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 +2836,my_groundwater,2010-02-20,11.350931754235663,tank,0.0,0.0,0.0010741267516155726,0.0,0.0,0.0,0.0,0.0,9.769738717278955,0.0,0.0,0.0 +2837,my_reservoir,2010-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2838,gw1,2010-02-20,259.01052903262894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2839,gw2,2010-02-20,265.98947096737106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2840,my_sewer,2010-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 +2841,my_land,2010-02-21,3.9617018093466765,percolation,0.0,0.0,0.00034420693913480557,0.0,0.0,0.0,0.0,0.0,7.108027656057285,0.0,0.0,0.0 +2842,my_land,2010-02-21,0.0451068785355433,subsurface_runoff,0.0,0.0,4.048462762228392e-06,0.0,0.0,0.0,0.0,0.0,5.695692243007906,0.0,0.0,0.0 +2843,my_land,2010-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 +2844,my_groundwater,2010-02-21,11.403203354540345,tank,0.0,0.0,0.0010784485045689208,0.0,0.0,0.0,0.0,0.0,9.750913818558999,0.0,0.0,0.0 +2845,my_reservoir,2010-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2846,gw1,2010-02-21,259.03379217241144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2847,gw2,2010-02-21,265.96620782758856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2848,my_sewer,2010-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 +2849,my_land,2010-02-22,3.9641066333915096,percolation,0.0,0.0,0.0003447047343948637,0.0,0.0,0.0,0.0,0.0,7.076869290474284,0.0,0.0,0.0 +2850,my_land,2010-02-22,0.05830015867381337,subsurface_runoff,0.0,0.0,5.247459745226035e-06,0.0,0.0,0.0,0.0,0.0,5.6573561304673055,0.0,0.0,0.0 +2851,my_land,2010-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.725,0.0,0.0,0.0 +2852,my_groundwater,2010-02-22,11.455393231190893,tank,0.0,0.0,0.0010827695868291082,0.0,0.0,0.0,0.0,0.0,9.73207642611372,0.0,0.0,0.0 +2853,my_reservoir,2010-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2854,gw1,2010-02-22,259.0569002245954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2855,gw2,2010-02-22,265.9430997754046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2856,my_sewer,2010-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 +2857,my_land,2010-02-23,4.001660682026799,percolation,0.0,0.0,0.0003483406635056302,0.0,0.0,0.0,0.0,0.0,7.0303593348325935,0.0,0.0,0.0 +2858,my_land,2010-02-23,0.07843228511677025,subsurface_runoff,0.0,0.0,7.063280394456678e-06,0.0,0.0,0.0,0.0,0.0,5.5870443799653655,0.0,0.0,0.0 +2859,my_land,2010-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 +2860,my_groundwater,2010-02-23,11.508217126282748,tank,0.0,0.0,0.0010871538835119715,0.0,0.0,0.0,0.0,0.0,9.712951978166416,0.0,0.0,0.0 +2861,my_reservoir,2010-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2862,gw1,2010-02-23,259.0798542230981,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2863,gw2,2010-02-23,265.9201457769019,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2864,my_sewer,2010-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 +2865,my_land,2010-02-24,3.999798941748806,percolation,0.0,0.0,0.00034843573744881357,0.0,0.0,0.0,0.0,0.0,6.998170100625107,0.0,0.0,0.0 +2866,my_land,2010-02-24,0.08401697730771374,subsurface_runoff,0.0,0.0,7.572226278366969e-06,0.0,0.0,0.0,0.0,0.0,5.535469418753849,0.0,0.0,0.0 +2867,my_land,2010-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.935714286,0.0,0.0,0.0 +2868,my_groundwater,2010-02-24,11.56087106192407,tank,0.0,0.0,0.0010915291548869708,0.0,0.0,0.0,0.0,0.0,9.693831472685524,0.0,0.0,0.0 +2869,my_reservoir,2010-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2870,gw1,2010-02-24,259.10265519494413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2871,gw2,2010-02-24,265.89734480505587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2872,my_sewer,2010-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0 +2873,my_land,2010-02-25,4.131500345287464,percolation,0.0,0.0,0.00036024807028029154,0.0,0.0,0.0,0.0,0.0,6.927342238119208,0.0,0.0,0.0 +2874,my_land,2010-02-25,0.12481831174375851,subsurface_runoff,0.0,0.0,1.1168270160232146e-05,0.0,0.0,0.0,0.0,0.0,5.572583646738271,0.0,0.0,0.0 +2875,my_land,2010-02-25,2.2687494927818128e-18,surface_runoff,0.0,0.0,1.384734797840462e-22,0.0,0.0,0.0,0.0,0.0,5.474117603764888,0.0,0.0,0.0 +2876,my_groundwater,2010-02-25,11.616074427012611,tank,0.0,0.0,0.0010961339534304594,0.0,0.0,0.0,0.0,0.0,9.673800860792598,0.0,0.0,0.0 +2877,my_reservoir,2010-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2878,gw1,2010-02-25,259.12530416031115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2879,gw2,2010-02-25,265.87469583968885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2880,my_sewer,2010-02-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 +2881,my_land,2010-02-26,4.338467821374922,percolation,0.0,0.0,0.000378131583575043,0.0,0.0,0.0,0.0,0.0,6.858528920498261,0.0,0.0,0.0 +2882,my_land,2010-02-26,0.17865668558363457,subsurface_runoff,0.0,0.0,1.5761411965017625e-05,0.0,0.0,0.0,0.0,0.0,5.715434017994769,0.0,0.0,0.0 +2883,my_land,2010-02-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 +2884,my_groundwater,2010-02-26,11.675353050165926,tank,0.0,0.0,0.001101091297212518,0.0,0.0,0.0,0.0,0.0,9.652504591263847,0.0,0.0,0.0 +2885,my_reservoir,2010-02-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2886,gw1,2010-02-26,259.14780213257575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2887,gw2,2010-02-26,265.85219786742425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2888,my_sewer,2010-02-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2889,my_land,2010-02-27,4.769831090687338,percolation,0.0,0.0,0.00041342207459314594,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2890,my_land,2010-02-27,0.2839138180559999,subsurface_runoff,0.0,0.0,2.4269843229049154e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2891,my_land,2010-02-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.942857143,0.0,0.0,0.0 +2892,my_groundwater,2010-02-27,11.743264800458075,tank,0.0,0.0,0.0011067546612022758,0.0,0.0,0.0,0.0,0.0,9.628792353636069,0.0,0.0,0.0 +2893,my_reservoir,2010-02-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2894,gw1,2010-02-27,259.17015011835855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2895,gw2,2010-02-27,265.82984988164145,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2896,my_sewer,2010-02-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2897,my_land,2010-02-28,4.67443446887359,percolation,0.0,0.0,0.00040515363310128304,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2898,my_land,2010-02-28,0.22713105444479992,subsurface_runoff,0.0,0.0,1.9415874583239322e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2899,my_land,2010-02-28,2.4222247140415e-19,surface_runoff,0.0,0.0,2.9568172778826906e-23,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2900,my_groundwater,2010-02-28,11.80906476871614,tank,0.0,0.0,0.0011122355449374034,0.0,0.0,0.0,0.0,0.0,9.605874917169388,0.0,0.0,0.0 +2901,my_reservoir,2010-02-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2902,gw1,2010-02-28,259.1923491175695,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2903,gw2,2010-02-28,265.8076508824305,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2904,my_sewer,2010-03-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2905,my_land,2010-03-01,4.580945779496118,percolation,0.0,0.0,0.00039705056043925737,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2906,my_land,2010-03-01,0.18170484355583993,subsurface_runoff,0.0,0.0,1.553269966659146e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2907,my_land,2010-03-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2908,my_groundwater,2010-03-01,11.872797074448378,tank,0.0,0.0,0.0011175377710554305,0.0,0.0,0.0,0.0,0.0,9.583716393336248,0.0,0.0,0.0 +2909,my_reservoir,2010-03-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2910,gw1,2010-03-01,259.2144001234524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2911,gw2,2010-03-01,265.7855998765476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2912,my_sewer,2010-03-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2913,my_land,2010-03-02,4.489326863906196,percolation,0.0,0.0,0.0003891095492304722,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2914,my_land,2010-03-02,0.14536387484467195,subsurface_runoff,0.0,0.0,1.2426159733273167e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2915,my_land,2010-03-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2916,my_groundwater,2010-03-02,11.934504950063205,tank,0.0,0.0,0.0011226650853085553,0.0,0.0,0.0,0.0,0.0,9.56228300164578,0.0,0.0,0.0 +2917,my_reservoir,2010-03-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2918,gw1,2010-03-02,259.23630412262935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2919,gw2,2010-03-02,265.76369587737065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2920,my_sewer,2010-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2921,my_land,2010-03-03,4.399540326628072,percolation,0.0,0.0,0.00038132735824586276,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2922,my_land,2010-03-03,0.11629109987573756,subsurface_runoff,0.0,0.0,9.940927786618535e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2923,my_land,2010-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2924,my_groundwater,2010-03-03,11.994230758622976,tank,0.0,0.0,0.0011276211581024318,0.0,0.0,0.0,0.0,0.0,9.541542916941623,0.0,0.0,0.0 +2925,my_reservoir,2010-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2926,gw1,2010-03-03,259.25806209514514,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2927,gw2,2010-03-03,265.74193790485486,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2928,my_sewer,2010-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2929,my_land,2010-03-04,4.311549520095511,percolation,0.0,0.0,0.0003737008110809455,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2930,my_land,2010-03-04,0.09303287990059005,subsurface_runoff,0.0,0.0,7.952742229294828e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2931,my_land,2010-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2932,my_groundwater,2010-03-04,12.052016011242648,tank,0.0,0.0,0.0011324095860041807,0.0,0.0,0.0,0.0,0.0,9.52146612978894,0.0,0.0,0.0 +2933,my_reservoir,2010-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2934,gw1,2010-03-04,259.2796750145108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2935,gw2,2010-03-04,265.7203249854892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2936,my_sewer,2010-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2937,my_land,2010-03-05,4.225318529693601,percolation,0.0,0.0,0.00036622679485932657,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2938,my_land,2010-03-05,0.07442630392047203,subsurface_runoff,0.0,0.0,6.362193783435863e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2939,my_land,2010-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2940,my_groundwater,2010-03-05,12.107901384140447,tank,0.0,0.0,0.0011370338932202352,0.0,0.0,0.0,0.0,0.0,9.502024318660116,0.0,0.0,0.0 +2941,my_reservoir,2010-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2942,gw1,2010-03-05,259.3011438477474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2943,gw2,2010-03-05,265.6988561522526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2944,my_sewer,2010-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2945,my_land,2010-03-06,4.140812159099728,percolation,0.0,0.0,0.00035890225896214,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2946,my_land,2010-03-06,0.059541043136377626,subsurface_runoff,0.0,0.0,5.08975502674869e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2947,my_land,2010-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2948,my_groundwater,2010-03-06,12.161926735347484,tank,0.0,0.0,0.0011414975330446282,0.0,0.0,0.0,0.0,0.0,9.483190732771986,0.0,0.0,0.0 +2949,my_reservoir,2010-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2950,gw1,2010-03-06,259.3224695554291,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2951,gw2,2010-03-06,265.6775304445709,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2952,my_sewer,2010-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2953,my_land,2010-03-07,4.057995915917734,percolation,0.0,0.0,0.0003517242137828972,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2954,my_land,2010-03-07,0.0476328345091021,subsurface_runoff,0.0,0.0,4.071804021398952e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2955,my_land,2010-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2956,my_groundwater,2010-03-07,12.214131121083154,tank,0.0,0.0,0.0011458038892783113,0.0,0.0,0.0,0.0,0.0,9.464940084553216,0.0,0.0,0.0 +2957,my_reservoir,2010-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2958,gw1,2010-03-07,259.34365309172625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2959,gw2,2010-03-07,265.65634690827375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2960,my_sewer,2010-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2961,my_land,2010-03-08,3.976835997599379,percolation,0.0,0.0,0.00034468972950723925,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2962,my_land,2010-03-08,0.03810626760728168,subsurface_runoff,0.0,0.0,3.2574432171191618e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2963,my_land,2010-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2964,my_groundwater,2010-03-08,12.264552811803005,tank,0.0,0.0,0.0011499562776200842,0.0,0.0,0.0,0.0,0.0,9.447248450830843,0.0,0.0,0.0 +2965,my_reservoir,2010-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2966,gw1,2010-03-08,259.36469540444807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2967,gw2,2010-03-08,265.63530459555193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2968,my_sewer,2010-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2969,my_land,2010-03-09,3.8972992776473916,percolation,0.0,0.0,0.0003377959349170945,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2970,my_land,2010-03-09,0.030485014085825345,subsurface_runoff,0.0,0.0,2.6059545736953293e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2971,my_land,2010-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2972,my_groundwater,2010-03-09,12.313229307925605,tank,0.0,0.0,0.0011539579470297033,0.0,0.0,0.0,0.0,0.0,9.430093181922118,0.0,0.0,0.0 +2973,my_reservoir,2010-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2974,gw1,2010-03-09,259.38559743508506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2975,gw2,2010-03-09,265.61440256491494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2976,my_sewer,2010-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2977,my_land,2010-03-10,3.8193532920944437,percolation,0.0,0.0,0.0003310400162187526,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2978,my_land,2010-03-10,0.024388011268660276,subsurface_runoff,0.0,0.0,2.0847636589562634e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2979,my_land,2010-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2980,my_groundwater,2010-03-10,12.360197355244855,tank,0.0,0.0,0.001157812081063725,0.0,0.0,0.0,0.0,0.0,9.413452817903572,0.0,0.0,0.0 +2981,my_reservoir,2010-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2982,gw1,2010-03-10,259.4063601188512,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2983,gw2,2010-03-10,265.5936398811488,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2984,my_sewer,2010-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2985,my_land,2010-03-11,3.742966226252555,percolation,0.0,0.0,0.0003244192158943775,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2986,my_land,2010-03-11,0.01951040901492822,subsurface_runoff,0.0,0.0,1.6678109271650108e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2987,my_land,2010-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2988,my_groundwater,2010-03-11,12.405492960034028,tank,0.0,0.0,0.0011615217991846297,0.0,0.0,0.0,0.0,0.0,9.397307011404749,0.0,0.0,0.0 +2989,my_reservoir,2010-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2990,gw1,2010-03-11,259.42698438472553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2991,gw2,2010-03-11,265.57301561527447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2992,my_sewer,2010-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +2993,my_land,2010-03-12,3.6681069017275036,percolation,0.0,0.0,0.00031793083157649,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +2994,my_land,2010-03-12,0.015608327211942576,subsurface_runoff,0.0,0.0,1.3342487417320086e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +2995,my_land,2010-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +2996,my_groundwater,2010-03-12,12.449151403847681,tank,0.0,0.0,0.0011650901580437612,0.0,0.0,0.0,0.0,0.0,9.381636456341065,0.0,0.0,0.0 +2997,my_reservoir,2010-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2998,gw1,2010-03-12,259.44747115549404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2999,gw2,2010-03-12,265.55252884450596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3000,my_sewer,2010-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3001,my_land,2010-03-13,3.5947447636929537,percolation,0.0,0.0,0.0003115722149449602,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3002,my_land,2010-03-13,0.01248666176955406,subsurface_runoff,0.0,0.0,1.0673989933856069e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 +3003,my_land,2010-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3004,my_groundwater,2010-03-13,12.491207258027526,tank,0.0,0.0,0.0011685201527386027,0.0,0.0,0.0,0.0,0.0,9.366422822059517,0.0,0.0,0.0 +3005,my_reservoir,2010-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3006,gw1,2010-03-13,259.46782134779073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3007,gw2,2010-03-13,265.53217865220927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3008,my_sewer,2010-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3009,my_land,2010-03-14,3.5228498684190948,percolation,0.0,0.0,0.000305340770646061,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3010,my_land,2010-03-14,0.009989329415643249,subsurface_runoff,0.0,0.0,8.539191947084855e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3011,my_land,2010-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3012,my_groundwater,2010-03-14,12.531694397918132,tank,0.0,0.0,0.0011718147180449082,0.0,0.0,0.0,0.0,0.0,9.351648692423591,0.0,0.0,0.0 +3013,my_reservoir,2010-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3014,gw1,2010-03-14,259.48803587213877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3015,gw2,2010-03-14,265.51196412786123,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3016,my_sewer,2010-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3017,my_land,2010-03-15,3.452392871050713,percolation,0.0,0.0,0.00029923395523313975,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3018,my_land,2010-03-15,0.007991463532514599,subsurface_runoff,0.0,0.0,6.831353557667884e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3019,my_land,2010-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3020,my_groundwater,2010-03-15,12.570646016798298,tank,0.0,0.0,0.001174976729624185,0.0,0.0,0.0,0.0,0.0,9.337297509410492,0.0,0.0,0.0 +3021,my_reservoir,2010-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3022,gw1,2010-03-15,259.5081156329912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3023,gw2,2010-03-15,265.4918843670088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3024,my_sewer,2010-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3025,my_land,2010-03-16,3.383345013629699,percolation,0.0,0.0,0.00029324927612847695,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 +3026,my_land,2010-03-16,0.006393170826011679,subsurface_runoff,0.0,0.0,5.465082846134307e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3027,my_land,2010-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3028,my_groundwater,2010-03-16,12.608094639533762,tank,0.0,0.0,0.0011780090052070256,0.0,0.0,0.0,0.0,0.0,9.32335352083551,0.0,0.0,0.0 +3029,my_reservoir,2010-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3030,gw1,2010-03-16,259.5280615287712,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3031,gw2,2010-03-16,265.4719384712288,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3032,my_sewer,2010-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 +3033,my_land,2010-03-17,3.315678113357105,percolation,0.0,0.0,0.0002873842906059074,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3034,my_land,2010-03-17,0.005114536660809343,subsurface_runoff,0.0,0.0,4.372066276907446e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3035,my_land,2010-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3036,my_groundwater,2010-03-17,12.64407213595684,tank,0.0,0.0,0.0011809143057527711,0.0,0.0,0.0,0.0,0.0,9.309801731855403,0.0,0.0,0.0 +3037,my_reservoir,2010-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3038,gw1,2010-03-17,259.5478744519127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3039,gw2,2010-03-17,265.4521255480873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3040,my_sewer,2010-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0 +3041,my_land,2010-03-18,3.249364551089963,percolation,0.0,0.0,0.00028163660479378925,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3042,my_land,2010-03-18,0.004091629328647475,subsurface_runoff,0.0,0.0,3.497653021525957e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3043,my_land,2010-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3044,my_groundwater,2010-03-18,12.678609733978423,tank,0.0,0.0,0.0011836953365859772,0.0,0.0,0.0,0.0,0.0,9.296627859935871,0.0,0.0,0.0 +3045,my_reservoir,2010-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3046,gw1,2010-03-18,259.56755528889994,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3047,gw2,2010-03-18,265.43244471110006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3048,my_sewer,2010-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0 +3049,my_land,2010-03-19,3.1843772600681635,percolation,0.0,0.0,0.0002760038726979135,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 +3050,my_land,2010-03-19,0.00327330346291798,subsurface_runoff,0.0,0.0,2.798122417220765e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 +3051,my_land,2010-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 +3052,my_groundwater,2010-03-19,12.71173803243772,tank,0.0,0.0,0.0011863547485101485,0.0,0.0,0.0,0.0,0.0,9.283818292997825,0.0,0.0,0.0 +3053,my_reservoir,2010-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3054,gw1,2010-03-19,259.5871049203073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3055,gw2,2010-03-19,265.4128950796927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3056,my_sewer,2010-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 +3057,my_land,2010-03-20,3.1844894725267996,percolation,0.0,0.0,0.0002767707843500748,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 +3058,my_land,2010-03-20,0.019979121045164132,subsurface_runoff,0.0,0.0,1.9345951283761967e-06,0.0,0.0,0.0,0.0,0.0,8.310457695012751,0.0,0.0,0.0 +3059,my_land,2010-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.721428571,0.0,0.0,0.0 +3060,my_groundwater,2010-03-20,12.744785794475922,tank,0.0,0.0,0.001189023124034571,0.0,0.0,0.0,0.0,0.0,9.271298476219844,0.0,0.0,0.0 +3061,my_reservoir,2010-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3062,gw1,2010-03-20,259.6065242208386,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3063,gw2,2010-03-20,265.3934757791614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3064,my_sewer,2010-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 +3065,my_land,2010-03-21,3.1207996830762634,percolation,0.0,0.0,0.0002712353686630733,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 +3066,my_land,2010-03-21,0.015983296836131304,subsurface_runoff,0.0,0.0,1.5476761027009574e-06,0.0,0.0,0.0,0.0,0.0,8.310457695012751,0.0,0.0,0.0 +3067,my_land,2010-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.721428571,0.0,0.0,0.0 +3068,my_groundwater,2010-03-21,12.77645439496664,tank,0.0,0.0,0.0011915721433722684,0.0,0.0,0.0,0.0,0.0,9.259121722050157,0.0,0.0,0.0 +3069,my_reservoir,2010-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3070,gw1,2010-03-21,259.62581405936635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3071,gw2,2010-03-21,265.37418594063365,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3072,my_sewer,2010-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 +3073,my_land,2010-03-22,3.118758348124456,percolation,0.0,0.0,0.0002718172028229718,0.0,0.0,0.0,0.0,0.0,6.86624136855303,0.0,0.0,0.0 +3074,my_land,2010-03-22,0.029215116029372535,subsurface_runoff,0.0,0.0,2.8725739524083586e-06,0.0,0.0,0.0,0.0,0.0,8.745321776578425,0.0,0.0,0.0 +3075,my_land,2010-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 +3076,my_groundwater,2010-03-22,12.808002268208899,tank,0.0,0.0,0.001194126634642734,0.0,0.0,0.0,0.0,0.0,9.247260262341818,0.0,0.0,0.0 +3077,my_reservoir,2010-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3078,gw1,2010-03-22,259.64497529897056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3079,gw2,2010-03-22,265.35502470102944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3080,my_sewer,2010-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 +3081,my_land,2010-03-23,3.1609825893005827,percolation,0.0,0.0,0.000276691977652172,0.0,0.0,0.0,0.0,0.0,6.946555263769654,0.0,0.0,0.0 +3082,my_land,2010-03-23,0.05183451680679492,subsurface_runoff,0.0,0.0,5.103805797480334e-06,0.0,0.0,0.0,0.0,0.0,9.046227700666567,0.0,0.0,0.0 +3083,my_land,2010-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 +3084,my_groundwater,2010-03-23,12.84033083667771,tank,0.0,0.0,0.0011967739761726177,0.0,0.0,0.0,0.0,0.0,9.235730412522804,0.0,0.0,0.0 +3085,my_reservoir,2010-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3086,gw1,2010-03-23,259.66400879697744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3087,gw2,2010-03-23,265.33599120302256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3088,my_sewer,2010-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 +3089,my_land,2010-03-24,3.511208401455578,percolation,0.0,0.0,0.0003097473462123012,0.0,0.0,0.0,0.0,0.0,7.246756798766779,0.0,0.0,0.0 +3090,my_land,2010-03-24,0.15396978050421328,subsurface_runoff,0.0,0.0,1.4583509430684298e-05,0.0,0.0,0.0,0.0,0.0,9.374890316061649,0.0,0.0,0.0 +3091,my_land,2010-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 +3092,my_groundwater,2010-03-24,12.879708180615648,tank,0.0,0.0,0.0012000876122086508,0.0,0.0,0.0,0.0,0.0,9.224692259006915,0.0,0.0,0.0 +3093,my_reservoir,2010-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3094,gw1,2010-03-24,259.6829154049976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3095,gw2,2010-03-24,265.3170845950024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3096,my_sewer,2010-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0 +3097,my_land,2010-03-25,3.783046357771467,percolation,0.0,0.0,0.0003347554963219509,0.0,0.0,0.0,0.0,0.0,7.452259090315155,0.0,0.0,0.0 +3098,my_land,2010-03-25,0.21625395347684018,subsurface_runoff,0.0,0.0,2.015744619322654e-05,0.0,0.0,0.0,0.0,0.0,9.437138651503991,0.0,0.0,0.0 +3099,my_land,2010-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.442857143,0.0,0.0,0.0 +3100,my_groundwater,2010-03-25,12.924520925304456,tank,0.0,0.0,0.001203902058638969,0.0,0.0,0.0,0.0,0.0,9.214131043561373,0.0,0.0,0.0 +3101,my_reservoir,2010-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3102,gw1,2010-03-25,259.70169596896426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3103,gw2,2010-03-25,265.29830403103574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3104,my_sewer,2010-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 +3105,my_land,2010-03-26,3.8506709389947082,percolation,0.0,0.0,0.00034110625984334496,0.0,0.0,0.0,0.0,0.0,7.52925128340214,0.0,0.0,0.0 +3106,my_land,2010-03-26,0.21199241676206276,subsurface_runoff,0.0,0.0,1.967585449140656e-05,0.0,0.0,0.0,0.0,0.0,9.452627748039065,0.0,0.0,0.0 +3107,my_land,2010-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.439285714,0.0,0.0,0.0 +3108,my_groundwater,2010-03-26,12.970598281392158,tank,0.0,0.0,0.0012078362523534683,0.0,0.0,0.0,0.0,0.0,9.203948362616323,0.0,0.0,0.0 +3109,my_reservoir,2010-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3110,gw1,2010-03-26,259.72035132917114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3111,gw2,2010-03-26,265.27964867082886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3112,my_sewer,2010-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 +3113,my_land,2010-03-27,3.773657520214814,percolation,0.0,0.0,0.00033428413464647806,0.0,0.0,0.0,0.0,0.0,7.52925128340214,0.0,0.0,0.0 +3114,my_land,2010-03-27,0.1695939334096502,subsurface_runoff,0.0,0.0,1.574068359312525e-05,0.0,0.0,0.0,0.0,0.0,9.452627748039065,0.0,0.0,0.0 +3115,my_land,2010-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.435714286,0.0,0.0,0.0 +3116,my_groundwater,2010-03-27,13.014992670921622,tank,0.0,0.0,0.0012116217316064594,0.0,0.0,0.0,0.0,0.0,9.194063477132701,0.0,0.0,0.0 +3117,my_reservoir,2010-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3118,gw1,2010-03-27,259.73888232031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3119,gw2,2010-03-27,265.26111767969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3120,my_sewer,2010-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 +3121,my_land,2010-03-28,3.846606247028748,percolation,0.0,0.0,0.00034121567205949526,0.0,0.0,0.0,0.0,0.0,7.605903911571309,0.0,0.0,0.0 +3122,my_land,2010-03-28,0.17606205209322512,subsurface_runoff,0.0,0.0,1.629791288972382e-05,0.0,0.0,0.0,0.0,0.0,9.467126861349522,0.0,0.0,0.0 +3123,my_land,2010-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 +3124,my_groundwater,2010-03-28,13.060761102130261,tank,0.0,0.0,0.0012155388534586544,0.0,0.0,0.0,0.0,0.0,9.184541651902352,0.0,0.0,0.0 +3125,my_reservoir,2010-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3126,gw1,2010-03-28,259.75728977150794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3127,gw2,2010-03-28,265.24271022849206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3128,my_sewer,2010-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 +3129,my_land,2010-03-29,3.8885875591803956,percolation,0.0,0.0,0.00034529262633109997,0.0,0.0,0.0,0.0,0.0,7.664221006374286,0.0,0.0,0.0 +3130,my_land,2010-03-29,0.17320703952280397,subsurface_runoff,0.0,0.0,1.6004661662199363e-05,0.0,0.0,0.0,0.0,0.0,9.475683663000375,0.0,0.0,0.0 +3131,my_land,2010-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 +3132,my_groundwater,2010-03-29,13.107269731829678,tank,0.0,0.0,0.001219529177646748,0.0,0.0,0.0,0.0,0.0,9.175359770834499,0.0,0.0,0.0 +3133,my_reservoir,2010-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3134,gw1,2010-03-29,259.77557450636453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3135,gw2,2010-03-29,265.22442549363547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3136,my_sewer,2010-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 +3137,my_land,2010-03-30,4.100575657004933,percolation,0.0,0.0,0.00036437066135862534,0.0,0.0,0.0,0.0,0.0,7.794515217553473,0.0,0.0,0.0 +3138,my_land,2010-03-30,0.21741184903542568,subsurface_runoff,0.0,0.0,1.9874174922724756e-05,0.0,0.0,0.0,0.0,0.0,9.487438681014742,0.0,0.0,0.0 +3139,my_land,2010-03-30,3.834124390341163e-18,surface_runoff,0.0,0.0,2.3401638124640885e-22,0.0,0.0,0.0,0.0,0.0,9.470188260912154,0.0,0.0,0.0 +3140,my_groundwater,2010-03-30,13.157977561946277,tank,0.0,0.0,0.0012238979003088603,0.0,0.0,0.0,0.0,0.0,9.166599504636558,0.0,0.0,0.0 +3141,my_reservoir,2010-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3142,gw1,2010-03-30,259.7937373429888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3143,gw2,2010-03-30,265.2062626570112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3144,my_sewer,2010-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 +3145,my_land,2010-03-31,4.018564143864834,percolation,0.0,0.0,0.00035708324813145284,0.0,0.0,0.0,0.0,0.0,7.794515217553473,0.0,0.0,0.0 +3146,my_land,2010-03-31,0.17392947922834054,subsurface_runoff,0.0,0.0,1.5899339938179803e-05,0.0,0.0,0.0,0.0,0.0,9.487438681014742,0.0,0.0,0.0 +3147,my_land,2010-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.421428571,0.0,0.0,0.0 +3148,my_groundwater,2010-03-31,13.20688910239866,tank,0.0,0.0,0.0012281073502521927,0.0,0.0,0.0,0.0,0.0,9.1581005015104,0.0,0.0,0.0 +3149,my_reservoir,2010-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3150,gw1,2010-03-31,259.8117790940355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3151,gw2,2010-03-31,265.1882209059645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3152,my_sewer,2010-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 +3153,my_land,2010-04-01,4.153947322863827,percolation,0.0,0.0,0.00036922974749697664,0.0,0.0,0.0,0.0,0.0,7.883244075867958,0.0,0.0,0.0 +3154,my_land,2010-04-01,0.19785228049186682,subsurface_runoff,0.0,0.0,1.796795203983713e-05,0.0,0.0,0.0,0.0,0.0,9.492003637757367,0.0,0.0,0.0 +3155,my_land,2010-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 +3156,my_groundwater,2010-04-01,13.258434378715249,tank,0.0,0.0,0.0012325535445934649,0.0,0.0,0.0,0.0,0.0,9.149969447553973,0.0,0.0,0.0 +3157,my_reservoir,2010-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3158,gw1,2010-04-01,259.8297005667419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3159,gw2,2010-04-01,265.1702994332581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3160,my_sewer,2010-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 +3161,my_land,2010-04-02,4.273001380720576,percolation,0.0,0.0,0.0003797296789603476,0.0,0.0,0.0,0.0,0.0,7.959711900583409,0.0,0.0,0.0 +3162,my_land,2010-04-02,0.21328400243812604,subsurface_runoff,0.0,0.0,1.924089943140998e-05,0.0,0.0,0.0,0.0,0.0,9.493998636228733,0.0,0.0,0.0 +3163,my_land,2010-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 +3164,my_groundwater,2010-04-02,13.312274392304559,tank,0.0,0.0,0.0012372023720536739,0.0,0.0,0.0,0.0,0.0,9.142191974043193,0.0,0.0,0.0 +3165,my_reservoir,2010-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3166,gw1,2010-04-02,259.84750256296365,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3167,gw2,2010-04-02,265.15249743703635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3168,my_sewer,2010-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3169,my_land,2010-04-03,4.571232726137948,percolation,0.0,0.0,0.0004050399868129286,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3170,my_land,2010-04-03,0.2750330177414624,subsurface_runoff,0.0,0.0,2.434643422044444e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516737,0.0,0.0,0.0 +3171,my_land,2010-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3172,my_groundwater,2010-04-03,13.372050943963036,tank,0.0,0.0,0.0012423548229979458,0.0,0.0,0.0,0.0,0.0,9.134859717093654,0.0,0.0,0.0 +3173,my_reservoir,2010-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3174,gw1,2010-04-03,259.86518587921057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3175,gw2,2010-04-03,265.13481412078943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3176,my_sewer,2010-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3177,my_land,2010-04-04,4.47980807161519,percolation,0.0,0.0,0.00039693918707667003,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3178,my_land,2010-04-04,0.2200264141931699,subsurface_runoff,0.0,0.0,1.947714737635555e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516737,0.0,0.0,0.0 +3179,my_land,2010-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.407142857,0.0,0.0,0.0 +3180,my_groundwater,2010-04-04,13.429816909489581,tank,0.0,0.0,0.001247329483677369,0.0,0.0,0.0,0.0,0.0,9.127754803106262,0.0,0.0,0.0 +3181,my_reservoir,2010-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3182,gw1,2010-04-04,259.8827513066825,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3183,gw2,2010-04-04,265.1172486933175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3184,my_sewer,2010-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3185,my_land,2010-04-05,4.390211910182885,percolation,0.0,0.0,0.00038900040333513663,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3186,my_land,2010-04-05,0.17602113135453593,subsurface_runoff,0.0,0.0,1.558171790108444e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3187,my_land,2010-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.407142857,0.0,0.0,0.0 +3188,my_groundwater,2010-04-05,13.485614538244581,tank,0.0,0.0,0.001252130096750355,0.0,0.0,0.0,0.0,0.0,9.120867882359953,0.0,0.0,0.0 +3189,my_reservoir,2010-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3190,gw1,2010-04-05,259.90019963130464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3191,gw2,2010-04-05,265.09980036869536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3192,my_sewer,2010-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3193,my_land,2010-04-06,4.3024076719792275,percolation,0.0,0.0,0.0003812203952684339,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3194,my_land,2010-04-06,0.14081690508362874,subsurface_runoff,0.0,0.0,1.2465374320867552e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3195,my_land,2010-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.4,0.0,0.0,0.0 +3196,my_groundwater,2010-04-06,13.539485229507118,tank,0.0,0.0,0.001256760329555015,0.0,0.0,0.0,0.0,0.0,9.114190103939347,0.0,0.0,0.0 +3197,my_reservoir,2010-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3198,gw1,2010-04-06,259.9175316337626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3199,gw2,2010-04-06,265.0824683662374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3200,my_sewer,2010-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3201,my_land,2010-04-07,4.216359518539643,percolation,0.0,0.0,0.0003735959873630652,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3202,my_land,2010-04-07,0.11265352406690299,subsurface_runoff,0.0,0.0,9.972299456694043e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3203,my_land,2010-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3204,my_groundwater,2010-04-07,13.591469549489336,tank,0.0,0.0,0.0012612237756167326,0.0,0.0,0.0,0.0,0.0,9.107713082867459,0.0,0.0,0.0 +3205,my_reservoir,2010-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3206,gw1,2010-04-07,259.93474808953755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3207,gw2,2010-04-07,265.06525191046245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3208,my_sewer,2010-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3209,my_land,2010-04-08,4.13203232816885,percolation,0.0,0.0,0.0003661240676158039,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3210,my_land,2010-04-08,0.09012281925352239,subsurface_runoff,0.0,0.0,7.977839565355234e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3211,my_land,2010-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3212,my_groundwater,2010-04-08,13.641607248010478,tank,0.0,0.0,0.0012655239561255838,0.0,0.0,0.0,0.0,0.0,9.101428869805058,0.0,0.0,0.0 +3213,my_reservoir,2010-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3214,gw1,2010-04-08,259.95184976894063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3215,gw2,2010-04-08,265.04815023105937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3216,my_sewer,2010-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3217,my_land,2010-04-09,4.049391681605473,percolation,0.0,0.0,0.00035880158626348785,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3218,my_land,2010-04-09,0.07209825540281792,subsurface_runoff,0.0,0.0,6.382271652284187e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3219,my_land,2010-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3220,my_groundwater,2010-04-09,13.68993727483742,tank,0.0,0.0,0.001269664321384205,0.0,0.0,0.0,0.0,0.0,9.095329923085828,0.0,0.0,0.0 +3221,my_reservoir,2010-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3222,gw1,2010-04-09,259.96883743714767,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3223,gw2,2010-04-09,265.03116256285233,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3224,my_sewer,2010-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3225,my_land,2010-04-10,3.968403847973364,percolation,0.0,0.0,0.0003516255545382181,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3226,my_land,2010-04-10,0.057678604322254336,subsurface_runoff,0.0,0.0,5.1058173218273495e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3227,my_land,2010-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3228,my_groundwater,2010-04-10,13.736497795698357,tank,0.0,0.0,0.0012736482522267012,0.0,0.0,0.0,0.0,0.0,9.08940908287991,0.0,0.0,0.0 +3229,my_reservoir,2010-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3230,gw1,2010-04-10,259.98571185423333,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3231,gw2,2010-04-10,265.01428814576667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3232,my_sewer,2010-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3233,my_land,2010-04-11,3.8890357710138965,percolation,0.0,0.0,0.0003445930434474537,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3234,my_land,2010-04-11,0.04614288345780347,subsurface_runoff,0.0,0.0,4.084653857461879e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3235,my_land,2010-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3236,my_groundwater,2010-04-11,13.781326207976178,tank,0.0,0.0,0.001277479061409172,0.0,0.0,0.0,0.0,0.0,9.083659547299238,0.0,0.0,0.0 +3237,my_reservoir,2010-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3238,gw1,2010-04-11,260.0024737752051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3239,gw2,2010-04-11,264.9975262247949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3240,my_sewer,2010-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3241,my_land,2010-04-12,3.8112550555936187,percolation,0.0,0.0,0.00033770118257850465,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3242,my_land,2010-04-12,0.03691430676624278,subsurface_runoff,0.0,0.0,3.2677230859695036e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3243,my_land,2010-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3244,my_groundwater,2010-04-12,13.824459156087965,tank,0.0,0.0,0.0012811599949724257,0.0,0.0,0.0,0.0,0.0,9.07807485027645,0.0,0.0,0.0 +3245,my_reservoir,2010-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3246,gw1,2010-04-12,260.01912395003706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3247,gw2,2010-04-12,264.98087604996294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3248,my_sewer,2010-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3249,my_land,2010-04-13,3.7350299544817465,percolation,0.0,0.0,0.00033094715892693455,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3250,my_land,2010-04-13,0.029531445412994226,subsurface_runoff,0.0,0.0,2.614178468775603e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3251,my_land,2010-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3252,my_groundwater,2010-04-13,13.865932546556836,tank,0.0,0.0,0.001284694233577436,0.0,0.0,0.0,0.0,0.0,9.072648841065728,0.0,0.0,0.0 +3253,my_reservoir,2010-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3254,gw1,2010-04-13,260.0356631237035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3255,gw2,2010-04-13,264.9643368762965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3256,my_sewer,2010-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3257,my_land,2010-04-14,3.6603293553921117,percolation,0.0,0.0,0.00032432821574839585,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3258,my_land,2010-04-14,0.02362515633039538,subsurface_runoff,0.0,0.0,2.091342775020482e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3259,my_land,2010-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3260,my_groundwater,2010-04-14,13.905781562782355,tank,0.0,0.0,0.0012880848938140847,0.0,0.0,0.0,0.0,0.0,9.067375665228457,0.0,0.0,0.0 +3261,my_reservoir,2010-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3262,gw1,2010-04-14,260.0520920362121,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3263,gw2,2010-04-14,264.9479079637879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3264,my_sewer,2010-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3265,my_land,2010-04-15,3.5871227682842695,percolation,0.0,0.0,0.00031784165143342795,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3266,my_land,2010-04-15,0.018900125064316303,subsurface_runoff,0.0,0.0,1.6730742200163856e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3267,my_land,2010-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3268,my_groundwater,2010-04-15,13.944040679515473,tank,0.0,0.0,0.0012913350294837301,0.0,0.0,0.0,0.0,0.0,9.062249746979719,0.0,0.0,0.0 +3269,my_reservoir,2010-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3270,gw1,2010-04-15,260.0684114226374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3271,gw2,2010-04-15,264.9315885773626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3272,my_sewer,2010-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3273,my_land,2010-04-16,3.515380312918584,percolation,0.0,0.0,0.0003114848184047594,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3274,my_land,2010-04-16,0.015120100051453042,subsurface_runoff,0.0,0.0,1.3384593760131085e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3275,my_land,2010-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3276,my_groundwater,2010-04-16,13.980743677043955,tank,0.0,0.0,0.0012944476328561176,0.0,0.0,0.0,0.0,0.0,9.057265772783351,0.0,0.0,0.0 +3277,my_reservoir,2010-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3278,gw1,2010-04-16,260.08462201315314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3279,gw2,2010-04-16,264.91537798684686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3280,my_sewer,2010-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3281,my_land,2010-04-17,3.4450727066602123,percolation,0.0,0.0,0.0003052551220366642,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3282,my_land,2010-04-17,0.012096080041162433,subsurface_runoff,0.0,0.0,1.0707675008104867e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3283,my_land,2010-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3284,my_groundwater,2010-04-17,14.01592365509407,tank,0.0,0.0,0.001297425635901152,0.0,0.0,0.0,0.0,0.0,9.05241867609373,0.0,0.0,0.0 +3285,my_reservoir,2010-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3286,gw1,2010-04-17,260.10072453306543,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3287,gw2,2010-04-17,264.89927546693457,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3288,my_sewer,2010-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3289,my_land,2010-04-18,3.376171252527008,percolation,0.0,0.0,0.0002991500195959309,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3290,my_land,2010-04-18,0.009676864032929947,subsurface_runoff,0.0,0.0,8.566140006483894e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3291,my_land,2010-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3292,my_groundwater,2010-04-18,14.049613046454207,tank,0.0,0.0,0.0013002719114960308,0.0,0.0,0.0,0.0,0.0,9.04770362315182,0.0,0.0,0.0 +3293,my_reservoir,2010-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3294,gw1,2010-04-18,260.116719702845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3295,gw2,2010-04-18,264.883280297155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3296,my_sewer,2010-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3297,my_land,2010-04-19,3.308647827476468,percolation,0.0,0.0,0.0002931670192040123,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3298,my_land,2010-04-19,0.007741491226343958,subsurface_runoff,0.0,0.0,6.852912005187115e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3299,my_land,2010-04-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3300,my_groundwater,2010-04-19,14.081843630325984,tank,0.0,0.0,0.0013029892746082297,0.0,0.0,0.0,0.0,0.0,9.043115999751494,0.0,0.0,0.0 +3301,my_reservoir,2010-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3302,gw1,2010-04-19,260.1326082381594,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3303,gw2,2010-04-19,264.8673917618406,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3304,my_sewer,2010-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3305,my_land,2010-04-20,3.2424748709269386,percolation,0.0,0.0,0.00028730367881993205,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3306,my_land,2010-04-20,0.0061931929810751666,subsurface_runoff,0.0,0.0,5.482329604149692e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3307,my_land,2010-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3308,my_groundwater,2010-04-20,14.112646545408325,tank,0.0,0.0,0.0013055804834548293,0.0,0.0,0.0,0.0,0.0,9.038651398899635,0.0,0.0,0.0 +3309,my_reservoir,2010-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3310,gw1,2010-04-20,260.14839084990496,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3311,gw2,2010-04-20,264.85160915009504,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3312,my_sewer,2010-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3313,my_land,2010-04-21,3.1776253735083997,percolation,0.0,0.0,0.0002815576052435334,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3314,my_land,2010-04-21,0.004954554384860133,subsurface_runoff,0.0,0.0,4.385863683319754e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3315,my_land,2010-04-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3316,my_groundwater,2010-04-21,14.142052302719796,tank,0.0,0.0,0.0013080482406386499,0.0,0.0,0.0,0.0,0.0,9.034305609300384,0.0,0.0,0.0 +3317,my_reservoir,2010-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3318,gw1,2010-04-21,260.16406824423893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3319,gw2,2010-04-21,264.83593175576107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3320,my_sewer,2010-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3321,my_land,2010-04-22,3.1140728660382315,percolation,0.0,0.0,0.00027592645313866273,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3322,my_land,2010-04-22,0.003963643507888107,subsurface_runoff,0.0,0.0,3.5086909466558035e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3323,my_land,2010-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3324,my_groundwater,2010-04-22,14.17009079816449,tank,0.0,0.0,0.0013103951942616617,0.0,0.0,0.0,0.0,0.0,9.030074604600019,0.0,0.0,0.0 +3325,my_reservoir,2010-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3326,gw1,2010-04-22,260.1796411226107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3327,gw2,2010-04-22,264.8203588773893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3328,my_sewer,2010-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3329,my_land,2010-04-23,3.0517914087174667,percolation,0.0,0.0,0.0002704079240758895,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3330,my_land,2010-04-23,0.0031709148063104853,subsurface_runoff,0.0,0.0,2.8069527573246425e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3331,my_land,2010-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3332,my_groundwater,2010-04-23,14.196791324846542,tank,0.0,0.0,0.001312623939016124,0.0,0.0,0.0,0.0,0.0,9.025954533334478,0.0,0.0,0.0 +3333,my_reservoir,2010-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3334,gw1,2010-04-23,260.19511018179327,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3335,gw2,2010-04-23,264.80488981820673,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3336,my_sewer,2010-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3337,my_land,2010-04-24,2.990755580543117,percolation,0.0,0.0,0.00026499976559437173,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3338,my_land,2010-04-24,0.0025367318450483884,subsurface_runoff,0.0,0.0,2.245562205859714e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3339,my_land,2010-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3340,my_groundwater,2010-04-24,14.222182585138338,tank,0.0,0.0,0.0013147370172538976,0.0,0.0,0.0,0.0,0.0,9.02194170952654,0.0,0.0,0.0 +3341,my_reservoir,2010-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3342,gw1,2010-04-24,260.21047611391464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3343,gw2,2010-04-24,264.78952388608536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3344,my_sewer,2010-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3345,my_land,2010-04-25,2.930940468932255,percolation,0.0,0.0,0.0002596997702824843,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3346,my_land,2010-04-25,0.002029385476038711,subsurface_runoff,0.0,0.0,1.7964497646877713e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3347,my_land,2010-04-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3348,my_groundwater,2010-04-25,14.246292702507327,tank,0.0,0.0,0.0013167369200343705,0.0,0.0,0.0,0.0,0.0,9.018032603884206,0.0,0.0,0.0 +3349,my_reservoir,2010-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3350,gw1,2010-04-25,260.22573960648856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3351,gw2,2010-04-25,264.77426039351144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3352,my_sewer,2010-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3353,my_land,2010-04-26,2.87232165955361,percolation,0.0,0.0,0.0002545057748768346,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3354,my_land,2010-04-26,0.0016235083808309688,subsurface_runoff,0.0,0.0,1.437159811750217e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3355,my_land,2010-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3356,my_groundwater,2010-04-26,14.269149233106258,tank,0.0,0.0,0.0013186260881514202,0.0,0.0,0.0,0.0,0.0,9.014223835555876,0.0,0.0,0.0 +3357,my_reservoir,2010-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3358,gw1,2010-04-26,260.2409013424453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3359,gw2,2010-04-26,264.7590986575547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3360,my_sewer,2010-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3361,my_land,2010-04-27,2.814875226362538,percolation,0.0,0.0,0.0002494156593792979,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3362,my_land,2010-04-27,0.001298806704664775,subsurface_runoff,0.0,0.0,1.1497278494001736e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3363,my_land,2010-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3364,my_groundwater,2010-04-27,14.290779177131588,tank,0.0,0.0,0.0013204069131398347,0.0,0.0,0.0,0.0,0.0,9.010512164401666,0.0,0.0,0.0 +3365,my_reservoir,2010-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3366,gw1,2010-04-27,260.2559620001623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3367,gw2,2010-04-27,264.7440379998377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3368,my_sewer,2010-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 +3369,my_land,2010-04-28,2.758577721835287,percolation,0.0,0.0,0.000244427346191712,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3370,my_land,2010-04-28,0.00103904536373182,subsurface_runoff,0.0,0.0,9.197822795201389e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3371,my_land,2010-04-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3372,my_groundwater,2010-04-28,14.311208989954691,tank,0.0,0.0,0.0013220817382616021,0.0,0.0,0.0,0.0,0.0,9.006894483743562,0.0,0.0,0.0 +3373,my_reservoir,2010-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3374,gw1,2010-04-28,260.2709222534946,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3375,gw2,2010-04-28,264.7290777465054,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3376,my_sewer,2010-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 +3377,my_land,2010-04-29,2.7034061673985814,percolation,0.0,0.0,0.00023953879926787774,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3378,my_land,2010-04-29,0.000831236290985456,subsurface_runoff,0.0,0.0,7.358258236161111e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3379,my_land,2010-04-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3380,my_groundwater,2010-04-29,14.330464593030419,tank,0.0,0.0,0.0013236528594724728,0.0,0.0,0.0,0.0,0.0,9.003367813560116,0.0,0.0,0.0 +3381,my_reservoir,2010-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3382,gw1,2010-04-29,260.28578277180463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3383,gw2,2010-04-29,264.71421722819537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3384,my_sewer,2010-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 +3385,my_land,2010-04-30,2.6493380440506096,percolation,0.0,0.0,0.00023474802328252018,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3386,my_land,2010-04-30,0.0006649890327883647,subsurface_runoff,0.0,0.0,5.886606588928888e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3387,my_land,2010-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3388,my_groundwater,2010-04-30,14.348571384587444,tank,0.0,0.0,0.0013251225263691858,0.0,0.0,0.0,0.0,0.0,8.999929294094207,0.0,0.0,0.0 +3389,my_reservoir,2010-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3390,gw1,2010-04-30,260.3005442199926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3391,gw2,2010-04-30,264.6994557800074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3392,my_sewer,2010-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3393,my_land,2010-05-01,2.5963512831695974,percolation,0.0,0.0,0.0002300530628168698,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3394,my_land,2010-05-01,0.0005319912262306918,subsurface_runoff,0.0,0.0,4.709285271143111e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3395,my_land,2010-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 +3396,my_groundwater,2010-05-01,14.365554250104786,tank,0.0,0.0,0.0013264929431177491,0.0,0.0,0.0,0.0,0.0,8.99657617984492,0.0,0.0,0.0 +3397,my_reservoir,2010-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3398,gw1,2010-05-01,260.315207258526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3399,gw2,2010-05-01,264.684792741474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3400,my_sewer,2010-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3401,my_land,2010-05-02,2.5444242575062055,percolation,0.0,0.0,0.0002254520015605324,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3402,my_land,2010-05-02,0.0004255929809845535,subsurface_runoff,0.0,0.0,3.7674282169144884e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3403,my_land,2010-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.42857143,0.0,0.0,0.0 +3404,my_groundwater,2010-05-02,14.381437572578758,tank,0.0,0.0,0.0013277662693631513,0.0,0.0,0.0,0.0,0.0,8.993305833916851,0.0,0.0,0.0 +3405,my_reservoir,2010-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3406,gw1,2010-05-02,260.3297725434692,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3407,gw2,2010-05-02,264.6702274565308,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3408,my_sewer,2010-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3409,my_land,2010-05-03,2.4935357723560814,percolation,0.0,0.0,0.00022094296152932175,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3410,my_land,2010-05-03,0.0003404743847876428,subsurface_runoff,0.0,0.0,3.013942573531591e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3411,my_land,2010-05-03,2.0183872216059443e-19,surface_runoff,0.0,0.0,1.5399072430465274e-24,0.0,0.0,0.0,0.0,0.0,10.839319400350558,0.0,0.0,0.0 +3412,my_groundwater,2010-05-03,14.396245242584559,tank,0.0,0.0,0.0013289446211208762,0.0,0.0,0.0,0.0,0.0,8.990115722702264,0.0,0.0,0.0 +3413,my_reservoir,2010-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3414,gw1,2010-05-03,260.34424072651274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3415,gw2,2010-05-03,264.65575927348726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3416,my_sewer,2010-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3417,my_land,2010-05-04,2.4436650569089595,percolation,0.0,0.0,0.00021652410229873532,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3418,my_land,2010-05-04,0.0002723795078301142,subsurface_runoff,0.0,0.0,2.4111540588252725e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3419,my_land,2010-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.839319400350558,0.0,0.0,0.0 +3420,my_groundwater,2010-05-04,14.410000668136602,tank,0.0,0.0,0.001330030071650584,0.0,0.0,0.0,0.0,0.0,8.987003410873454,0.0,0.0,0.0 +3421,my_reservoir,2010-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3422,gw1,2010-05-04,260.3586124550026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3423,gw2,2010-05-04,264.6413875449974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3424,my_sewer,2010-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3425,my_land,2010-05-05,2.3947917557707803,percolation,0.0,0.0,0.00021219362025276062,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3426,my_land,2010-05-05,0.00021790360626409137,subsurface_runoff,0.0,0.0,1.928923247060218e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3427,my_land,2010-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.55,0.0,0.0,0.0 +3428,my_groundwater,2010-05-05,14.422726784351594,tank,0.0,0.0,0.001331024652312317,0.0,0.0,0.0,0.0,0.0,8.983966556664399,0.0,0.0,0.0 +3429,my_reservoir,2010-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3430,gw1,2010-05-05,260.3728883719693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3431,gw2,2010-05-05,264.6271116280307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3432,my_sewer,2010-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3433,my_land,2010-05-06,2.346895920655365,percolation,0.0,0.0,0.00020794974784770542,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3434,my_land,2010-05-06,0.0001743228850112731,subsurface_runoff,0.0,0.0,1.5431385976481745e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3435,my_land,2010-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.55,0.0,0.0,0.0 +3436,my_groundwater,2010-05-06,14.434446062918342,tank,0.0,0.0,0.001331930353405579,0.0,0.0,0.0,0.0,0.0,8.98100290742237,0.0,0.0,0.0 +3437,my_reservoir,2010-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3438,gw1,2010-05-06,260.38706911615617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3439,gw2,2010-05-06,264.61293088384383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3440,my_sewer,2010-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3441,my_land,2010-05-07,2.2999580022422577,percolation,0.0,0.0,0.00020379075289075132,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3442,my_land,2010-05-07,0.00013945830800901848,subsurface_runoff,0.0,0.0,1.2345108781185395e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3443,my_land,2010-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.75,0.0,0.0,0.0 +3444,my_groundwater,2010-05-07,14.44518052137812,tank,0.0,0.0,0.0013327491249916267,0.0,0.0,0.0,0.0,0.0,8.978110295411641,0.0,0.0,0.0 +3445,my_reservoir,2010-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3446,gw1,2010-05-07,260.40115532204845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3447,gw2,2010-05-07,264.59884467795155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3448,my_sewer,2010-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3449,my_land,2010-05-08,2.2539588421974126,percolation,0.0,0.0,0.0001997149378329363,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3450,my_land,2010-05-08,0.00011156664640721479,subsurface_runoff,0.0,0.0,9.876087024948316e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3451,my_land,2010-05-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 +3452,my_groundwater,2010-05-08,14.454951732219408,tank,0.0,0.0,0.001333482877699318,0.0,0.0,0.0,0.0,0.0,8.975286633852791,0.0,0.0,0.0 +3453,my_reservoir,2010-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3454,gw1,2010-05-08,260.41514761990146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3455,gw2,2010-05-08,264.58485238009854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3456,my_sewer,2010-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3457,my_land,2010-05-09,2.2088796653534644,percolation,0.0,0.0,0.00019572063907627755,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3458,my_land,2010-05-09,8.925331712577183e-05,subsurface_runoff,0.0,0.0,7.900869619958653e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3459,my_land,2010-05-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 +3460,my_groundwater,2010-05-09,14.463780831790698,tank,0.0,0.0,0.0013341334835148368,0.0,0.0,0.0,0.0,0.0,8.972529913182292,0.0,0.0,0.0 +3461,my_reservoir,2010-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3462,gw1,2010-05-09,260.42904663576877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3463,gw2,2010-05-09,264.57095336423123,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3464,my_sewer,2010-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3465,my_land,2010-05-10,2.164702072046395,percolation,0.0,0.0,0.000191806226294752,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3466,my_land,2010-05-10,7.140265370061746e-05,subsurface_runoff,0.0,0.0,6.320695695966922e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3467,my_land,2010-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 +3468,my_groundwater,2010-05-10,14.471688529035022,tank,0.0,0.0,0.0013347027765556216,0.0,0.0,0.0,0.0,0.0,8.969838197518213,0.0,0.0,0.0 +3469,my_reservoir,2010-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3470,gw1,2010-05-10,260.4428529915303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3471,gw2,2010-05-10,264.5571470084697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3472,my_sewer,2010-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3473,my_land,2010-05-11,2.1214080306054672,percolation,0.0,0.0,0.00018797010176885696,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3474,my_land,2010-05-11,5.712212296049397e-05,subsurface_runoff,0.0,0.0,5.0565565567735375e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3475,my_land,2010-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 +3476,my_groundwater,2010-05-11,14.478695114049762,tank,0.0,0.0,0.001335192553828813,0.0,0.0,0.0,0.0,0.0,8.9672096213189,0.0,0.0,0.0 +3477,my_reservoir,2010-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3478,gw1,2010-05-11,260.4565673049201,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3479,gw2,2010-05-11,264.5434326950799,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3480,my_sewer,2010-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3481,my_land,2010-05-12,2.0789798699933577,percolation,0.0,0.0,0.00018421069973347982,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3482,my_land,2010-05-12,4.569769836839518e-05,subsurface_runoff,0.0,0.0,4.04524524541883e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3483,my_land,2010-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3484,my_groundwater,2010-05-12,14.484820466475217,tank,0.0,0.0,0.0013356045759745296,0.0,0.0,0.0,0.0,0.0,8.964642386222442,0.0,0.0,0.0 +3485,my_reservoir,2010-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3486,gw1,2010-05-12,260.470190189554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3487,gw2,2010-05-12,264.529809810446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3488,my_sewer,2010-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3489,my_land,2010-05-13,2.0374002725934908,percolation,0.0,0.0,0.00018052648573881023,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3490,my_land,2010-05-13,3.655815869471614e-05,subsurface_runoff,0.0,0.0,3.2361961963350643e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3491,my_land,2010-05-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3492,my_groundwater,2010-05-13,14.490084063715395,tank,0.0,0.0,0.001335940567994276,0.0,0.0,0.0,0.0,0.0,8.962134758055619,0.0,0.0,0.0 +3493,my_reservoir,2010-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3494,gw1,2010-05-13,260.48372225495694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3495,gw2,2010-05-13,264.51627774504306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3496,my_sewer,2010-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3497,my_land,2010-05-14,1.996652267141621,percolation,0.0,0.0,0.00017691595602403404,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3498,my_land,2010-05-14,2.9246526955772912e-05,subsurface_runoff,0.0,0.0,2.5889569570680515e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3499,my_land,2010-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3500,my_groundwater,2010-05-14,14.494504988994345,tank,0.0,0.0,0.0013362022199647796,0.0,0.0,0.0,0.0,0.0,8.959685064001773,0.0,0.0,0.0 +3501,my_reservoir,2010-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3502,gw1,2010-05-14,260.49716410659056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3503,gw2,2010-05-14,264.50283589340944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3504,my_sewer,2010-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 +3505,my_land,2010-05-15,1.9567192217987885,percolation,0.0,0.0,0.00017337763690355337,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3506,my_land,2010-05-15,2.339722156461833e-05,subsurface_runoff,0.0,0.0,2.0711655656544413e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3507,my_land,2010-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3508,my_groundwater,2010-05-15,14.498101939251335,tank,0.0,0.0,0.001336391187737547,0.0,0.0,0.0,0.0,0.0,8.95729168991789,0.0,0.0,0.0 +3509,my_reservoir,2010-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3510,gw1,2010-05-15,260.51051634588,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3511,gw2,2010-05-15,264.48948365412,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3512,my_sewer,2010-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3513,my_land,2010-05-16,1.9175848373628128,percolation,0.0,0.0,0.0001699100841654823,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3514,my_land,2010-05-16,1.8717777251694664e-05,subsurface_runoff,0.0,0.0,1.656932452523553e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3515,my_land,2010-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3516,my_groundwater,2010-05-16,14.500893232878092,tank,0.0,0.0,0.001336509093624429,0.0,0.0,0.0,0.0,0.0,8.954953077791734,0.0,0.0,0.0 +3517,my_reservoir,2010-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3518,gw1,2010-05-16,260.5237795702408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3519,gw2,2010-05-16,264.4762204297592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3520,my_sewer,2010-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3521,my_land,2010-05-17,1.8792331406155565,percolation,0.0,0.0,0.00016651188248217264,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3522,my_land,2010-05-17,1.497422180135573e-05,subsurface_runoff,0.0,0.0,1.3255459620188425e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3523,my_land,2010-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3524,my_groundwater,2010-05-17,14.502896817301284,tank,0.0,0.0,0.0013365575270694694,0.0,0.0,0.0,0.0,0.0,8.952667723330606,0.0,0.0,0.0 +3525,my_reservoir,2010-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3526,gw1,2010-05-17,260.53695437310586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3527,gw2,2010-05-17,264.46304562689414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3528,my_sewer,2010-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3529,my_land,2010-05-18,1.8416484778032454,percolation,0.0,0.0,0.00016318164483252918,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3530,my_land,2010-05-18,1.1979377441084584e-05,subsurface_runoff,0.0,0.0,1.060436769615074e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3531,my_land,2010-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3532,my_groundwater,2010-05-18,14.504130276413312,tank,0.0,0.0,0.001336538045307315,0.0,0.0,0.0,0.0,0.0,8.950434173673829,0.0,0.0,0.0 +3533,my_reservoir,2010-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3534,gw1,2010-05-18,260.5500413439518,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3535,gw2,2010-05-18,264.4499586560482,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3536,my_sewer,2010-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3537,my_land,2010-05-19,1.8048155082471804,percolation,0.0,0.0,0.0001599180119358786,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3538,my_land,2010-05-19,9.583501952867668e-06,subsurface_runoff,0.0,0.0,8.483494156920592e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3539,my_land,2010-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3540,my_groundwater,2010-05-19,14.504610837854452,tank,0.0,0.0,0.0013364521740084556,0.0,0.0,0.0,0.0,0.0,8.948251025221598,0.0,0.0,0.0 +3541,my_reservoir,2010-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3542,gw1,2010-05-19,260.56304106832545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3543,gw2,2010-05-19,264.43695893167455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3544,my_sewer,2010-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3545,my_land,2010-05-20,1.7687191980822368,percolation,0.0,0.0,0.00015671965169716104,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3546,my_land,2010-05-20,7.666801562294133e-06,subsurface_runoff,0.0,0.0,6.786795325536473e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3547,my_land,2010-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3548,my_groundwater,2010-05-20,14.504355380149347,tank,0.0,0.0,0.0013363014079115553,0.0,0.0,0.0,0.0,0.0,8.946116921573354,0.0,0.0,0.0 +3549,my_reservoir,2010-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3550,gw1,2010-05-20,260.5759541278699,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3551,gw2,2010-05-20,264.4240458721301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3552,my_sewer,2010-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3553,my_land,2010-05-21,1.733344814120592,percolation,0.0,0.0,0.00015358525866321783,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3554,my_land,2010-05-21,6.133441249835307e-06,subsurface_runoff,0.0,0.0,5.429436260429179e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3555,my_land,2010-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3556,my_groundwater,2010-05-21,14.503380439700715,tank,0.0,0.0,0.0013360872114431346,0.0,0.0,0.0,0.0,0.0,8.944030551569268,0.0,0.0,0.0 +3557,my_reservoir,2010-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3558,gw1,2010-05-21,260.5887811003508,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3559,gw2,2010-05-21,264.4112188996492,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3560,my_sewer,2010-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3561,my_land,2010-05-22,1.6986779178381801,percolation,0.0,0.0,0.00015051355348995348,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3562,my_land,2010-05-22,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 +3563,my_land,2010-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3564,my_groundwater,2010-05-22,14.50170221764317,tank,0.0,0.0,0.0013358110193248578,0.0,0.0,0.0,0.0,0.0,8.94199064742888,0.0,0.0,0.0 +3565,my_reservoir,2010-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3566,gw1,2010-05-22,260.60152255968177,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3567,gw2,2010-05-22,264.39847744031823,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3568,my_sewer,2010-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3569,my_land,2010-05-23,1.6647043594814166,percolation,0.0,0.0,0.0001475032824201544,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3570,my_land,2010-05-23,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3571,my_land,2010-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3572,my_groundwater,2010-05-23,14.499336586559933,tank,0.0,0.0,0.0013354742371686702,0.0,0.0,0.0,0.0,0.0,8.939995982981266,0.0,0.0,0.0 +3573,my_reservoir,2010-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3574,gw1,2010-05-23,260.6141790759506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3575,gw2,2010-05-23,264.3858209240494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3576,my_sewer,2010-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3577,my_land,2010-05-24,1.6314102722917883,percolation,0.0,0.0,0.0001445532167717513,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3578,my_land,2010-05-24,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3579,my_land,2010-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3580,my_groundwater,2010-05-24,14.496299097065187,tank,0.0,0.0,0.0013350782420600306,0.0,0.0,0.0,0.0,0.0,8.938045371981586,0.0,0.0,0.0 +3581,my_reservoir,2010-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3582,gw1,2010-05-24,260.62675121544424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3583,gw2,2010-05-24,264.37324878455576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3584,my_sewer,2010-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 +3585,my_land,2010-05-25,1.5987820668459525,percolation,0.0,0.0,0.00014166215243631628,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3586,my_land,2010-05-25,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3587,my_land,2010-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3588,my_groundwater,2010-05-25,14.492604984254744,tank,0.0,0.0,0.0013346243831294771,0.0,0.0,0.0,0.0,0.0,8.936137666509042,0.0,0.0,0.0 +3589,my_reservoir,2010-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3590,gw1,2010-05-25,260.6392395406746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3591,gw2,2010-05-25,264.3607604593254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3592,my_sewer,2010-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 +3593,my_land,2010-05-26,1.5668064255090335,percolation,0.0,0.0,0.00013882890938758996,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3594,my_land,2010-05-26,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3595,my_land,2010-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3596,my_groundwater,2010-05-26,14.488269174027684,tank,0.0,0.0,0.001334113982112758,0.0,0.0,0.0,0.0,0.0,8.934271755441777,0.0,0.0,0.0 +3597,my_reservoir,2010-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3598,gw1,2010-05-26,260.6516446104035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3599,gw2,2010-05-26,264.3483553895965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3600,my_sewer,2010-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 +3601,my_land,2010-05-27,1.5354702969988527,percolation,0.0,0.0,0.00013605233119983818,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3602,my_land,2010-05-27,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3603,my_land,2010-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3604,my_groundwater,2010-05-27,14.483306289281519,tank,0.0,0.0,0.0013335483338997583,0.0,0.0,0.0,0.0,0.0,8.932446563004328,0.0,0.0,0.0 +3605,my_reservoir,2010-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3606,gw1,2010-05-27,260.66396697966746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3607,gw2,2010-05-27,264.33603302033254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3608,my_sewer,2010-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 +3609,my_land,2010-05-28,1.5047608910588757,percolation,0.0,0.0,0.00013333128457584142,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3610,my_land,2010-05-28,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3611,my_land,2010-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3612,my_groundwater,2010-05-28,14.477730655983441,tank,0.0,0.0,0.0013329287070724457,0.0,0.0,0.0,0.0,0.0,8.930661047383717,0.0,0.0,0.0 +3613,my_reservoir,2010-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3614,gw1,2010-05-28,260.676207199803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3615,gw2,2010-05-28,264.323792800197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3616,my_sewer,2010-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 +3617,my_land,2010-05-29,1.4746656732376981,percolation,0.0,0.0,0.0001306646588843246,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3618,my_land,2010-05-29,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3619,my_land,2010-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3620,my_groundwater,2010-05-29,14.471556309120107,tank,0.0,0.0,0.0013322563444320525,0.0,0.0,0.0,0.0,0.0,8.928914199410375,0.0,0.0,0.0 +3621,my_reservoir,2010-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3622,gw1,2010-05-29,260.68836581847097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3623,gw2,2010-05-29,264.31163418152903,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3624,my_sewer,2010-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 +3625,my_land,2010-05-30,1.4451723597729442,percolation,0.0,0.0,0.0001280513657066381,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3626,my_land,2010-05-30,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3627,my_land,2010-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3628,my_groundwater,2010-05-30,14.464796998528398,tank,0.0,0.0,0.0013315324635157146,0.0,0.0,0.0,0.0,0.0,8.927205041300377,0.0,0.0,0.0 +3629,my_reservoir,2010-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3630,gw1,2010-05-30,260.7004433796812,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3631,gw2,2010-05-30,264.2995566203188,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3632,my_sewer,2010-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 +3633,my_land,2010-05-31,1.4162689125774854,percolation,0.0,0.0,0.00012549033839250533,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3634,my_land,2010-05-31,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3635,my_land,2010-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3636,my_groundwater,2010-05-31,14.457466194609546,tank,0.0,0.0,0.001330758257102773,0.0,0.0,0.0,0.0,0.0,8.925532625455702,0.0,0.0,0.0 +3637,my_reservoir,2010-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3638,gw1,2010-05-31,260.71244042381664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3639,gw2,2010-05-31,264.28755957618336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3640,my_sewer,2010-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +3641,my_land,2010-06-01,1.3879435343259356,percolation,0.0,0.0,0.00012298053162465523,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3642,my_land,2010-06-01,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3643,my_land,2010-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3644,my_groundwater,2010-06-01,14.449577093928944,tank,0.0,0.0,0.0013299348937109465,0.0,0.0,0.0,0.0,0.0,8.923896033319378,0.0,0.0,0.0 +3645,my_reservoir,2010-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3646,gw1,2010-06-01,260.72435748765787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3647,gw2,2010-06-01,264.27564251234213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3648,my_sewer,2010-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +3649,my_land,2010-06-02,1.360184663639417,percolation,0.0,0.0,0.00012052092099216212,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3650,my_land,2010-06-02,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3651,my_land,2010-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3652,my_groundwater,2010-06-02,14.441142624703925,tank,0.0,0.0,0.001329063518082581,0.0,0.0,0.0,0.0,0.0,8.922294374282647,0.0,0.0,0.0 +3653,my_reservoir,2010-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3654,gw1,2010-06-02,260.7361951044068,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3655,gw2,2010-06-02,264.2638048955932,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3656,my_sewer,2010-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +3657,my_land,2010-06-03,1.3329809703666287,percolation,0.0,0.0,0.00011811050257231888,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3658,my_land,2010-06-03,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3659,my_land,2010-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3660,my_groundwater,2010-06-03,14.432175452181772,tank,0.0,0.0,0.0013281452516611682,0.0,0.0,0.0,0.0,0.0,8.92072678464134,0.0,0.0,0.0 +3661,my_reservoir,2010-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3662,gw1,2010-06-03,260.7479538037108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3663,gw2,2010-06-03,264.2520461962892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3664,my_sewer,2010-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +3665,my_land,2010-06-04,1.3063213509592961,percolation,0.0,0.0,0.0001157482925208725,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3666,my_land,2010-06-04,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3667,my_land,2010-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3668,my_groundwater,2010-06-04,14.422687983910132,tank,0.0,0.0,0.0013271811930583332,0.0,0.0,0.0,0.0,0.0,8.919192426598974,0.0,0.0,0.0 +3669,my_reservoir,2010-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3670,gw1,2010-06-04,260.75963411168607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3671,gw2,2010-06-04,264.24036588831393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3672,my_sewer,2010-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 +3673,my_land,2010-06-05,1.2801949239401103,percolation,0.0,0.0,0.00011343332667045506,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3674,my_land,2010-06-05,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3675,my_land,2010-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3676,my_groundwater,2010-06-05,14.412692374901994,tank,0.0,0.0,0.0013261724185114788,0.0,0.0,0.0,0.0,0.0,8.917690487314044,0.0,0.0,0.0 +3677,my_reservoir,2010-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3678,gw1,2010-06-05,260.77123655094147,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3679,gw2,2010-06-05,264.22876344905853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3680,my_sewer,2010-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0 +3681,my_land,2010-06-06,1.254591025461308,percolation,0.0,0.0,0.00011116466013704596,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3682,my_land,2010-06-06,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3683,my_land,2010-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3684,my_groundwater,2010-06-06,14.402200532697345,tank,0.0,0.0,0.0013251199823322757,0.0,0.0,0.0,0.0,0.0,8.916220177989326,0.0,0.0,0.0 +3685,my_reservoir,2010-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3686,gw1,2010-06-06,260.78276164060185,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3687,gw2,2010-06-06,264.21723835939815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3688,my_sewer,2010-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0 +3689,my_land,2010-06-07,1.2294992049520819,percolation,0.0,0.0,0.00010894136693430504,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 +3690,my_land,2010-06-07,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 +3691,my_land,2010-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 +3692,my_groundwater,2010-06-07,14.391224122323555,tank,0.0,0.0,0.001324024917346179,0.0,0.0,0.0,0.0,0.0,8.91478073300098,0.0,0.0,0.0 +3693,my_reservoir,2010-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3694,gw1,2010-06-07,260.79420989633115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3695,gw2,2010-06-07,264.20579010366885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3696,my_sewer,2010-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +3697,my_land,2010-06-08,1.6778005638744915,percolation,0.0,0.0,0.00016418631837924674,0.0,0.0,0.0,0.0,0.0,10.197614841891316,0.0,0.0,0.0 +3698,my_land,2010-06-08,0.12868184187082202,subsurface_runoff,0.0,0.0,1.5625865520281975e-05,0.0,0.0,0.0,0.0,0.0,15.571200258081012,0.0,0.0,0.0 +3699,my_land,2010-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.65,0.0,0.0,0.0 +3700,my_groundwater,2010-06-08,14.389401287782334,tank,0.0,0.0,0.0013240572193912482,0.0,0.0,0.0,0.0,0.0,8.91782571643923,0.0,0.0,0.0 +3701,my_reservoir,2010-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3702,gw1,2010-06-08,260.8055818303556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3703,gw2,2010-06-08,264.1944181696444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3704,my_sewer,2010-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +3705,my_land,2010-06-09,1.716441444954452,percolation,0.0,0.0,0.00016970675108464542,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +3706,my_land,2010-06-09,0.1225908863830387,subsurface_runoff,0.0,0.0,1.489638195989459e-05,0.0,0.0,0.0,0.0,0.0,15.589387801242,0.0,0.0,0.0 +3707,my_land,2010-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.51071429,0.0,0.0,0.0 +3708,my_groundwater,2010-06-09,14.388369628263737,tank,0.0,0.0,0.001324201820918422,0.0,0.0,0.0,0.0,0.0,8.921494142818286,0.0,0.0,0.0 +3709,my_reservoir,2010-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3710,gw1,2010-06-09,260.81687795148656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3711,gw2,2010-06-09,264.18312204851344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3712,my_sewer,2010-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +3713,my_land,2010-06-10,1.682112616055363,percolation,0.0,0.0,0.00016631261606295253,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +3714,my_land,2010-06-10,0.09807270910643096,subsurface_runoff,0.0,0.0,1.1917105567915672e-05,0.0,0.0,0.0,0.0,0.0,15.589387801242,0.0,0.0,0.0 +3715,my_land,2010-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.51071429,0.0,0.0,0.0 +3716,my_groundwater,2010-06-10,14.386641711019918,tank,0.0,0.0,0.0013242769660502646,0.0,0.0,0.0,0.0,0.0,8.925080900887956,0.0,0.0,0.0 +3717,my_reservoir,2010-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3718,gw1,2010-06-10,260.8280987651433,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3719,gw2,2010-06-10,264.1719012348567,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3720,my_sewer,2010-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +3721,my_land,2010-06-11,1.6484703637342557,percolation,0.0,0.0,0.00016298636374169348,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +3722,my_land,2010-06-11,0.07845816728514476,subsurface_runoff,0.0,0.0,9.533684454332538e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242001,0.0,0.0,0.0 +3723,my_land,2010-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.51071429,0.0,0.0,0.0 +3724,my_groundwater,2010-06-11,14.384233253432672,tank,0.0,0.0,0.0013242842103255948,0.0,0.0,0.0,0.0,0.0,8.928588144502898,0.0,0.0,0.0 +3725,my_reservoir,2010-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3726,gw1,2010-06-11,260.8392447733757,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3727,gw2,2010-06-11,264.1607552266243,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3728,my_sewer,2010-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 +3729,my_land,2010-06-12,1.6155009564595706,percolation,0.0,0.0,0.0001597266364668596,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 +3730,my_land,2010-06-12,0.06276653382811581,subsurface_runoff,0.0,0.0,7.62694756346603e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242003,0.0,0.0,0.0 +3731,my_land,2010-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.09285714,0.0,0.0,0.0 +3732,my_groundwater,2010-06-12,14.381159654055589,tank,0.0,0.0,0.0013242250777564277,0.0,0.0,0.0,0.0,0.0,8.932017957435372,0.0,0.0,0.0 +3733,my_reservoir,2010-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3734,gw1,2010-06-12,260.85031647488654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3735,gw2,2010-06-12,264.14968352511346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3736,my_sewer,2010-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3737,my_land,2010-06-13,1.8239845100515608,percolation,0.0,0.0,0.00018629426989914602,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3738,my_land,2010-06-13,0.11573528766689578,subsurface_runoff,0.0,0.0,1.4200106666180601e-05,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +3739,my_land,2010-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3740,my_groundwater,2010-06-13,14.382337868160786,tank,0.0,0.0,0.0013247069341278405,0.0,0.0,0.0,0.0,0.0,8.937526965165235,0.0,0.0,0.0 +3741,my_reservoir,2010-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3742,gw1,2010-06-13,260.86131436505394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3743,gw2,2010-06-13,264.13868563494606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3744,my_sewer,2010-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3745,my_land,2010-06-14,1.7875048198505297,percolation,0.0,0.0,0.0001825683845011631,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3746,my_land,2010-06-14,0.09258823013351662,subsurface_runoff,0.0,0.0,1.1360085332944481e-05,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +3747,my_land,2010-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 +3748,my_groundwater,2010-06-14,14.382770514465912,tank,0.0,0.0,0.001325111737477009,0.0,0.0,0.0,0.0,0.0,8.942911692518248,0.0,0.0,0.0 +3749,my_reservoir,2010-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3750,gw1,2010-06-14,260.8722389359536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3751,gw2,2010-06-14,264.1277610640464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3752,my_sewer,2010-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3753,my_land,2010-06-15,1.7517547234535191,percolation,0.0,0.0,0.00017891701681113984,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3754,my_land,2010-06-15,0.0740705841068133,subsurface_runoff,0.0,0.0,9.088068266355585e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +3755,my_land,2010-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.674999999999999,0.0,0.0,0.0 +3756,my_groundwater,2010-06-15,14.382474309335766,tank,0.0,0.0,0.0013254411974041149,0.0,0.0,0.0,0.0,0.0,8.948175482806093,0.0,0.0,0.0 +3757,my_reservoir,2010-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3758,gw1,2010-06-15,260.88309067638056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3759,gw2,2010-06-15,264.11690932361944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3760,my_sewer,2010-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3761,my_land,2010-06-16,1.7167196289844489,percolation,0.0,0.0,0.00017533867647491705,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3762,my_land,2010-06-16,0.05925646728545064,subsurface_runoff,0.0,0.0,7.2704546130844675e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 +3763,my_land,2010-06-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.674999999999999,0.0,0.0,0.0 +3764,my_groundwater,2010-06-16,14.381465630295324,tank,0.0,0.0,0.0013256969888959867,0.0,0.0,0.0,0.0,0.0,8.953321567883162,0.0,0.0,0.0 +3765,my_reservoir,2010-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3766,gw1,2010-06-16,260.89387007187133,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3767,gw2,2010-06-16,264.10612992812867,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3768,my_sewer,2010-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3769,my_land,2010-06-17,1.6823852364047598,percolation,0.0,0.0,0.0001718319029454187,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3770,my_land,2010-06-17,0.047405173828360514,subsurface_runoff,0.0,0.0,5.816363690467574e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 +3771,my_land,2010-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.674999999999999,0.0,0.0,0.0 +3772,my_groundwater,2010-06-17,14.379760522817826,tank,0.0,0.0,0.0013258807530194213,0.0,0.0,0.0,0.0,0.0,8.958353072730011,0.0,0.0,0.0 +3773,my_reservoir,2010-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3774,gw1,2010-06-17,260.90457760472555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3775,gw2,2010-06-17,264.09542239527445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3776,my_sewer,2010-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3777,my_land,2010-06-18,1.6487375316766646,percolation,0.0,0.0,0.00016839526488651035,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3778,my_land,2010-06-18,0.03792413906268841,subsurface_runoff,0.0,0.0,4.65309095237406e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 +3779,my_land,2010-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3780,my_groundwater,2010-06-18,14.377374706977056,tank,0.0,0.0,0.0013259940976006338,0.0,0.0,0.0,0.0,0.0,8.963273019811483,0.0,0.0,0.0 +3781,my_reservoir,2010-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3782,gw1,2010-06-18,260.9152137540274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3783,gw2,2010-06-18,264.0847862459726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3784,my_sewer,2010-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3785,my_land,2010-06-19,1.6157627810431312,percolation,0.0,0.0,0.00016502735958878016,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3786,my_land,2010-06-19,0.03033931125015073,subsurface_runoff,0.0,0.0,3.7224727618992476e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +3787,my_land,2010-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3788,my_groundwater,2010-06-19,14.374323583966563,tank,0.0,0.0,0.001326038597891118,0.0,0.0,0.0,0.0,0.0,8.968084333222315,0.0,0.0,0.0 +3789,my_reservoir,2010-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3790,gw1,2010-06-19,260.9257789956672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3791,gw2,2010-06-19,264.0742210043328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3792,my_sewer,2010-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3793,my_land,2010-06-20,1.5834475254222686,percolation,0.0,0.0,0.00016172681239700454,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 +3794,my_land,2010-06-20,0.024271449000120585,subsurface_runoff,0.0,0.0,2.9779782095193982e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +3795,my_land,2010-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3796,my_groundwater,2010-06-20,14.370622242488455,tank,0.0,0.0,0.0013260157972201864,0.0,0.0,0.0,0.0,0.0,8.972789842632265,0.0,0.0,0.0 +3797,my_reservoir,2010-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3798,gw1,2010-06-20,260.93627380236273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3799,gw2,2010-06-20,264.06372619763727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3800,my_sewer,2010-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3801,my_land,2010-06-21,1.5517785749138233,percolation,0.0,0.0,0.00015849227614906446,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +3802,my_land,2010-06-21,0.019417159200096467,subsurface_runoff,0.0,0.0,2.3823825676155187e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3803,my_land,2010-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3804,my_groundwater,2010-06-21,14.366285465014409,tank,0.0,0.0,0.0013259272076344563,0.0,0.0,0.0,0.0,0.0,8.97739228704198,0.0,0.0,0.0 +3805,my_reservoir,2010-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3806,gw1,2010-06-21,260.9466986436803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3807,gw2,2010-06-21,264.0533013563197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3808,my_sewer,2010-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3809,my_land,2010-06-22,1.520743003415547,percolation,0.0,0.0,0.00015532243062608316,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +3810,my_land,2010-06-22,0.015533727360077174,subsurface_runoff,0.0,0.0,1.905906054092415e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3811,my_land,2010-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3812,my_groundwater,2010-06-22,14.361327733921405,tank,0.0,0.0,0.0013257743105245438,0.0,0.0,0.0,0.0,0.0,8.981894318360137,0.0,0.0,0.0 +3813,my_reservoir,2010-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3814,gw1,2010-06-22,260.95705398605577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3815,gw2,2010-06-22,264.04294601394423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3816,my_sewer,2010-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3817,my_land,2010-06-23,1.490328143347236,percolation,0.0,0.0,0.00015221598201356148,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3818,my_land,2010-06-23,0.012426981888061739,subsurface_runoff,0.0,0.0,1.5247248432739322e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3819,my_land,2010-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3820,my_groundwater,2010-06-23,14.35576323750474,tank,0.0,0.0,0.0013255585572392228,0.0,0.0,0.0,0.0,0.0,8.986298504811735,0.0,0.0,0.0 +3821,my_reservoir,2010-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3822,gw1,2010-06-23,260.9673402928154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3823,gw2,2010-06-23,264.0326597071846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3824,my_sewer,2010-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3825,my_land,2010-06-24,1.4605215804802913,percolation,0.0,0.0,0.00014917166237329025,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3826,my_land,2010-06-24,0.00994158551044939,subsurface_runoff,0.0,0.0,1.2197798746191457e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3827,my_land,2010-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3828,my_groundwater,2010-06-24,14.349605875870756,tank,0.0,0.0,0.0013252813696872953,0.0,0.0,0.0,0.0,0.0,8.990607334186741,0.0,0.0,0.0 +3829,my_reservoir,2010-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3830,gw1,2010-06-24,260.9775580241966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3831,gw2,2010-06-24,264.0224419758034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3832,my_sewer,2010-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3833,my_land,2010-06-25,1.4313111488706856,percolation,0.0,0.0,0.00014618822912582444,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3834,my_land,2010-06-25,0.007953268408359512,subsurface_runoff,0.0,0.0,9.758238996953167e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3835,my_land,2010-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3836,my_groundwater,2010-06-25,14.342869266711661,tank,0.0,0.0,0.001324944140927424,0.0,0.0,0.0,0.0,0.0,8.99482321693782,0.0,0.0,0.0 +3837,my_reservoir,2010-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3838,gw1,2010-06-25,260.9877076373686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3839,gw2,2010-06-25,264.0122923626314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3840,my_sewer,2010-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3841,my_land,2010-06-26,1.4026849258932719,percolation,0.0,0.0,0.00014326446454330794,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3842,my_land,2010-06-26,0.00636261472668761,subsurface_runoff,0.0,0.0,7.806591197562533e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3843,my_land,2010-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3844,my_groundwater,2010-06-26,14.335566750964851,tank,0.0,0.0,0.0013245482357461655,0.0,0.0,0.0,0.0,0.0,8.998948489135236,0.0,0.0,0.0 +3845,my_reservoir,2010-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3846,gw1,2010-06-26,260.9977895864528,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3847,gw2,2010-06-26,264.0022104135472,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3848,my_sewer,2010-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3849,my_land,2010-06-27,1.3746312273754064,percolation,0.0,0.0,0.00014039917525244177,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3850,my_land,2010-06-27,0.0050900917813500885,subsurface_runoff,0.0,0.0,6.245272958050027e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 +3851,my_land,2010-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3852,my_groundwater,2010-06-27,14.32771139835901,tank,0.0,0.0,0.001324094991224439,0.0,0.0,0.0,0.0,0.0,9.002985415286602,0.0,0.0,0.0 +3853,my_reservoir,2010-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3854,gw1,2010-06-27,261.00780432254317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3855,gw2,2010-06-27,263.99219567745683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3856,my_sewer,2010-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3857,my_land,2010-06-28,1.3471386028278982,percolation,0.0,0.0,0.00013759119174739292,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3858,my_land,2010-06-28,0.004072073425080071,subsurface_runoff,0.0,0.0,4.996218366440022e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +3859,my_land,2010-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3860,my_groundwater,2010-06-28,14.319316012849251,tank,0.0,0.0,0.001323585717292664,0.0,0.0,0.0,0.0,0.0,9.006936191028618,0.0,0.0,0.0 +3861,my_reservoir,2010-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3862,gw1,2010-06-28,261.01775229372623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3863,gw2,2010-06-28,263.98224770627377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3864,my_sewer,2010-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3865,my_land,2010-06-29,1.3201958307713402,percolation,0.0,0.0,0.00013483936791244507,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3866,my_land,2010-06-29,0.0032576587400640566,subsurface_runoff,0.0,0.0,3.9969746931520175e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +3867,my_land,2010-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3868,my_groundwater,2010-06-29,14.310393137943544,tank,0.0,0.0,0.0013230216972747928,0.0,0.0,0.0,0.0,0.0,9.010802945697575,0.0,0.0,0.0 +3869,my_reservoir,2010-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3870,gw1,2010-06-29,261.0276339451014,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3871,gw2,2010-06-29,263.9723660548986,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3872,my_sewer,2010-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3873,my_land,2010-06-30,1.2937919141559133,percolation,0.0,0.0,0.00013214258055419616,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3874,my_land,2010-06-30,0.0026061269920512452,subsurface_runoff,0.0,0.0,3.197579754521614e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +3875,my_land,2010-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3876,my_groundwater,2010-06-30,14.300955061922574,tank,0.0,0.0,0.001322404188421459,0.0,0.0,0.0,0.0,0.0,9.01458774478495,0.0,0.0,0.0 +3877,my_reservoir,2010-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3878,gw1,2010-06-30,261.0374497188007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3879,gw2,2010-06-30,263.9625502811993,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3880,my_sewer,2010-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3881,my_land,2010-07-01,1.267916075872795,percolation,0.0,0.0,0.00012949972894311224,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3882,my_land,2010-07-01,0.0020849015936409963,subsurface_runoff,0.0,0.0,2.5580638036172914e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +3883,my_land,2010-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3884,my_groundwater,2010-07-01,14.291013822955177,tank,0.0,0.0,0.0013217344224324616,0.0,0.0,0.0,0.0,0.0,9.018292592284055,0.0,0.0,0.0 +3885,my_reservoir,2010-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3886,gw1,2010-07-01,261.04720005400867,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3887,gw2,2010-07-01,263.95279994599133,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3888,my_sewer,2010-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3889,my_land,2010-07-02,1.242557754355339,percolation,0.0,0.0,0.00012690973436425,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3890,my_land,2010-07-02,0.0016679212749127971,subsurface_runoff,0.0,0.0,2.046451042893833e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +3891,my_land,2010-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3892,my_groundwater,2010-07-02,14.28058121411145,tank,0.0,0.0,0.0013210136059687955,0.0,0.0,0.0,0.0,0.0,9.021919432933355,0.0,0.0,0.0 +3893,my_reservoir,2010-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3894,gw1,2010-07-02,261.05688538698195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3895,gw2,2010-07-02,263.94311461301805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3896,my_sewer,2010-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3897,my_land,2010-07-03,1.217706599268232,percolation,0.0,0.0,0.000124371539676965,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3898,my_land,2010-07-03,0.0013343370199302377,subsurface_runoff,0.0,0.0,1.6371608343150663e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +3899,my_land,2010-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3900,my_groundwater,2010-07-03,14.269668788275562,tank,0.0,0.0,0.0013202429211544404,0.0,0.0,0.0,0.0,0.0,9.025470154361743,0.0,0.0,0.0 +3901,my_reservoir,2010-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3902,gw1,2010-07-03,261.0665061510687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3903,gw2,2010-07-03,263.9334938489313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3904,my_sewer,2010-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3905,my_land,2010-07-04,1.1933524672828675,percolation,0.0,0.0,0.0001218841088834257,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3906,my_land,2010-07-04,0.0010674696159441901,subsurface_runoff,0.0,0.0,1.309728667452053e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +3907,my_land,2010-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3908,my_groundwater,2010-07-04,14.258287862960275,tank,0.0,0.0,0.0013194235260681098,0.0,0.0,0.0,0.0,0.0,9.028946589140777,0.0,0.0,0.0 +3909,my_reservoir,2010-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3910,gw1,2010-07-04,261.07606277672824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3911,gw2,2010-07-04,263.92393722327176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3912,my_sewer,2010-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3913,my_land,2010-07-05,1.16948541793721,percolation,0.0,0.0,0.00011944642670575719,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3914,my_land,2010-07-05,0.0008539756927553521,subsurface_runoff,0.0,0.0,1.0477829339616424e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3915,my_land,2010-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3916,my_groundwater,2010-07-05,14.246449525025168,tank,0.0,0.0,0.001318556555225164,0.0,0.0,0.0,0.0,0.0,9.032350516748489,0.0,0.0,0.0 +3917,my_reservoir,2010-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3918,gw1,2010-07-05,261.08555569155004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3919,gw2,2010-07-05,263.91444430844996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3920,my_sewer,2010-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3921,my_land,2010-07-06,1.1460957095784658,percolation,0.0,0.0,0.00011705749817164204,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3922,my_land,2010-07-06,0.0006831805542042817,subsurface_runoff,0.0,0.0,8.382263471693139e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3923,my_land,2010-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3924,my_groundwater,2010-07-06,14.234164635300452,tank,0.0,0.0,0.001317643120049881,0.0,0.0,0.0,0.0,0.0,9.0356836654493,0.0,0.0,0.0 +3925,my_reservoir,2010-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3926,gw1,2010-07-06,261.09498532027305,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3927,gw2,2010-07-06,263.90501467972695,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3928,my_sewer,2010-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3929,my_land,2010-07-07,1.1231737953868965,percolation,0.0,0.0,0.0001147163482082092,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3930,my_land,2010-07-07,0.0005465444433634253,subsurface_runoff,0.0,0.0,6.705810777354512e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3931,my_land,2010-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3932,my_groundwater,2010-07-07,14.221443833118292,tank,0.0,0.0,0.0013166843093382805,0.0,0.0,0.0,0.0,0.0,9.038947714094123,0.0,0.0,0.0 +3933,my_reservoir,2010-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3934,gw1,2010-07-07,261.1043520848046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3935,gw2,2010-07-07,263.8956479151954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3936,my_sewer,2010-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3937,my_land,2010-07-08,1.1007103194791585,percolation,0.0,0.0,0.00011242202124404502,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3938,my_land,2010-07-08,0.0004372355546907403,subsurface_runoff,0.0,0.0,5.3646486218836096e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3939,my_land,2010-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3940,my_groundwater,2010-07-08,14.208297540753465,tank,0.0,0.0,0.0013156811897116886,0.0,0.0,0.0,0.0,0.0,9.042144293844638,0.0,0.0,0.0 +3941,my_reservoir,2010-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3942,gw1,2010-07-08,261.11365640423924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3943,gw2,2010-07-08,263.88634359576076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3944,my_sewer,2010-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3945,my_land,2010-07-09,1.0786961130895754,percolation,0.0,0.0,0.00011017358081916412,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3946,my_land,2010-07-09,0.00034978844375259225,subsurface_runoff,0.0,0.0,4.291718897506888e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3947,my_land,2010-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3948,my_groundwater,2010-07-09,14.194735967775191,tank,0.0,0.0,0.001314634806061228,0.0,0.0,0.0,0.0,0.0,9.04527498982545,0.0,0.0,0.0 +3949,my_reservoir,2010-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3950,gw1,2010-07-09,261.1228986948776,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3951,gw2,2010-07-09,263.8771013051224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3952,my_sewer,2010-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3953,my_land,2010-07-10,1.057122190827784,percolation,0.0,0.0,0.00010797010920278084,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3954,my_land,2010-07-10,0.0002798307550020738,subsurface_runoff,0.0,0.0,3.43337511800551e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3955,my_land,2010-07-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3956,my_groundwater,2010-07-10,14.180769115311891,tank,0.0,0.0,0.0013135461819834171,0.0,0.0,0.0,0.0,0.0,9.048341342707602,0.0,0.0,0.0 +3957,my_reservoir,2010-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3958,gw1,2010-07-10,261.1320793702451,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3959,gw2,2010-07-10,263.8679206297549,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3960,my_sewer,2010-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3961,my_land,2010-07-11,1.0359797470112282,percolation,0.0,0.0,0.00010581070701872521,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3962,my_land,2010-07-11,0.00022386460400165901,subsurface_runoff,0.0,0.0,2.746700094404408e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3963,my_land,2010-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3964,my_groundwater,2010-07-11,14.166406780230627,tank,0.0,0.0,0.001312416320207054,0.0,0.0,0.0,0.0,0.0,9.05134485022683,0.0,0.0,0.0 +3965,my_reservoir,2010-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3966,gw1,2010-07-11,261.1411988411101,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3967,gw2,2010-07-11,263.8588011588899,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3968,my_sewer,2010-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 +3969,my_land,2010-07-12,1.0152601520710036,percolation,0.0,0.0,0.00010369449287835071,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3970,my_land,2010-07-12,0.0001790916832013272,subsurface_runoff,0.0,0.0,2.1973600755235266e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3971,my_land,2010-07-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3972,my_groundwater,2010-07-12,14.151658559232924,tank,0.0,0.0,0.0013112462030115599,0.0,0.0,0.0,0.0,0.0,9.05428696863962,0.0,0.0,0.0 +3973,my_reservoir,2010-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3974,gw1,2010-07-12,261.1502575155027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3975,gw2,2010-07-12,263.8497424844973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3976,my_sewer,2010-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 +3977,my_land,2010-07-13,0.9949549490295836,percolation,0.0,0.0,0.00010162060302078369,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3978,my_land,2010-07-13,0.00014327334656106177,subsurface_runoff,0.0,0.0,1.7578880604188214e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3979,my_land,2010-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3980,my_groundwater,2010-07-13,14.13653385286866,tank,0.0,0.0,0.001310036792636954,0.0,0.0,0.0,0.0,0.0,9.057169114120072,0.0,0.0,0.0 +3981,my_reservoir,2010-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3982,gw1,2010-07-13,261.15925579873266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3983,gw2,2010-07-13,263.84074420126734,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3984,my_sewer,2010-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0 +3985,my_land,2010-07-14,0.9750558500489919,percolation,0.0,0.0,9.958819096036801e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +3986,my_land,2010-07-14,0.00011461867724884943,subsurface_runoff,0.0,0.0,1.4063104483350572e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3987,my_land,2010-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3988,my_groundwater,2010-07-14,14.121041869469627,tank,0.0,0.0,0.0013087890316856262,0.0,0.0,0.0,0.0,0.0,9.059992664100365,0.0,0.0,0.0 +3989,my_reservoir,2010-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3990,gw1,2010-07-14,261.16819409340775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3991,gw2,2010-07-14,263.83180590659225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3992,my_sewer,2010-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0 +3993,my_land,2010-07-15,0.9555547330480121,percolation,0.0,0.0,9.759642714116065e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +3994,my_land,2010-07-15,9.169494179907954e-05,subsurface_runoff,0.0,0.0,1.1250483586680457e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +3995,my_land,2010-07-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +3996,my_groundwater,2010-07-15,14.10519162900443,tank,0.0,0.0,0.0013075038435160715,0.0,0.0,0.0,0.0,0.0,9.06275895855748,0.0,0.0,0.0 +3997,my_reservoir,2010-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3998,gw1,2010-07-15,261.1770727994517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3999,gw2,2010-07-15,263.8229272005483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4000,my_sewer,2010-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4001,my_land,2010-07-16,0.9364436383870518,percolation,0.0,0.0,9.564449859833744e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4002,my_land,2010-07-16,7.335595343926363e-05,subsurface_runoff,0.0,0.0,9.000386869344366e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 +4003,my_land,2010-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4004,my_groundwater,2010-07-16,14.088991966856227,tank,0.0,0.0,0.0013061821326287473,0.0,0.0,0.0,0.0,0.0,9.065469301248664,0.0,0.0,0.0 +4005,my_reservoir,2010-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4006,gw1,2010-07-16,261.18589231412204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4007,gw2,2010-07-16,263.81410768587796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4008,my_sewer,2010-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4009,my_land,2010-07-17,0.9177147656193108,percolation,0.0,0.0,9.37316086263707e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4010,my_land,2010-07-17,5.868476275141091e-05,subsurface_runoff,0.0,0.0,7.200309495475493e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4011,my_land,2010-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4012,my_groundwater,2010-07-17,14.072451537524907,tank,0.0,0.0,0.0013048247850442124,0.0,0.0,0.0,0.0,0.0,9.068124960898054,0.0,0.0,0.0 +4013,my_reservoir,2010-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4014,gw1,2010-07-17,261.1946530320279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4015,gw2,2010-07-17,263.8053469679721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4016,my_sewer,2010-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4017,my_land,2010-07-18,0.8993604703069246,percolation,0.0,0.0,9.185697645384329e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4018,my_land,2010-07-18,4.694781020112873e-05,subsurface_runoff,0.0,0.0,5.7602475963803944e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4019,my_land,2010-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4020,my_groundwater,2010-07-18,14.055578818255201,tank,0.0,0.0,0.001303432668673698,0.0,0.0,0.0,0.0,0.0,9.070727172336674,0.0,0.0,0.0 +4021,my_reservoir,2010-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4022,gw1,2010-07-18,261.2033553451477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4023,gw2,2010-07-18,263.7966446548523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4024,my_sewer,2010-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4025,my_land,2010-07-19,0.881373260900786,percolation,0.0,0.0,9.001983692476642e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4026,my_land,2010-07-19,3.755824816090298e-05,subsurface_runoff,0.0,0.0,4.608198077104316e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4027,my_land,2010-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4028,my_groundwater,2010-07-19,14.038382112592187,tank,0.0,0.0,0.001302006633682268,0.0,0.0,0.0,0.0,0.0,9.073277137597977,0.0,0.0,0.0 +4029,my_reservoir,2010-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4030,gw1,2010-07-19,261.2119996428467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4031,gw2,2010-07-19,263.7880003571533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4032,my_sewer,2010-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4033,my_land,2010-07-20,0.8637457956827703,percolation,0.0,0.0,8.821944018627109e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4034,my_land,2010-07-20,3.0046598528722386e-05,subsurface_runoff,0.0,0.0,3.6865584616834527e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4035,my_land,2010-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4036,my_groundwater,2010-07-20,14.020869553865678,tank,0.0,0.0,0.0013005475128447113,0.0,0.0,0.0,0.0,0.0,9.075776026970905,0.0,0.0,0.0 +4037,my_reservoir,2010-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4038,gw1,2010-07-20,261.2205863118944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4039,gw2,2010-07-20,263.7794136881056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4040,my_sewer,2010-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 +4041,my_land,2010-07-21,0.846470879769115,percolation,0.0,0.0,8.645505138254566e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4042,my_land,2010-07-21,2.403727882297791e-05,subsurface_runoff,0.0,0.0,2.949246769346762e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4043,my_land,2010-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4044,my_groundwater,2010-07-21,14.003049108604884,tank,0.0,0.0,0.0012990561218943156,0.0,0.0,0.0,0.0,0.0,9.078224980012441,0.0,0.0,0.0 +4045,my_reservoir,2010-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4046,gw1,2010-07-21,261.2291157364818,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4047,gw2,2010-07-21,263.7708842635182,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4048,my_sewer,2010-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4049,my_land,2010-07-22,0.8295414621737327,percolation,0.0,0.0,8.472595035489475e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 +4050,my_land,2010-07-22,1.922982305838233e-05,subsurface_runoff,0.0,0.0,2.3593974154774095e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4051,my_land,2010-07-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4052,my_groundwater,2010-07-22,13.984928579884764,tank,0.0,0.0,0.0012975332598646617,0.0,0.0,0.0,0.0,0.0,9.080625106521428,0.0,0.0,0.0 +4053,my_reservoir,2010-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4054,gw1,2010-07-22,261.23758829823856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4055,gw2,2010-07-22,263.76241170176144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4056,my_sewer,2010-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4057,my_land,2010-07-23,0.812950632930258,percolation,0.0,0.0,8.303143134779686e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4058,my_land,2010-07-23,1.5383858446705863e-05,subsurface_runoff,0.0,0.0,1.8875179323819276e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4059,my_land,2010-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4060,my_groundwater,2010-07-23,13.966515610605418,tank,0.0,0.0,0.0012959797094245803,0.0,0.0,0.0,0.0,0.0,9.082977487475402,0.0,0.0,0.0 +4061,my_reservoir,2010-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4062,gw1,2010-07-23,261.2460043762503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4063,gw2,2010-07-23,263.7539956237497,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4064,my_sewer,2010-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4065,my_land,2010-07-24,0.7966916202716529,percolation,0.0,0.0,8.137080272084093e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4066,my_land,2010-07-24,1.230708675736469e-05,subsurface_runoff,0.0,0.0,1.510014345905542e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4067,my_land,2010-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4068,my_groundwater,2010-07-24,13.947817686705863,tank,0.0,0.0,0.0012943962372064075,0.0,0.0,0.0,0.0,0.0,9.085283175932092,0.0,0.0,0.0 +4069,my_reservoir,2010-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4070,gw1,2010-07-24,261.2543643470753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4071,gw2,2010-07-24,263.7456356529247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4072,my_sewer,2010-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4073,my_land,2010-07-25,0.7807577878662197,percolation,0.0,0.0,7.974338666642411e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4074,my_land,2010-07-25,9.845669405891752e-06,subsurface_runoff,0.0,0.0,1.2080114767244337e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4075,my_land,2010-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4076,my_groundwater,2010-07-25,13.928842140313519,tank,0.0,0.0,0.0012927835941276722,0.0,0.0,0.0,0.0,0.0,9.087543197897096,0.0,0.0,0.0 +4077,my_reservoir,2010-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4078,gw1,2010-07-25,261.26266858476146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4079,gw2,2010-07-25,263.73733141523854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4080,my_sewer,2010-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4081,my_land,2010-07-26,0.7651426321088953,percolation,0.0,0.0,7.814851893309563e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4082,my_land,2010-07-26,7.876535524713401e-06,subsurface_runoff,0.0,0.0,9.664091813795468e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4083,my_land,2010-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4084,my_groundwater,2010-07-26,13.909596152830666,tank,0.0,0.0,0.0012911425157063482,0.0,0.0,0.0,0.0,0.0,9.089758553159278,0.0,0.0,0.0 +4085,my_reservoir,2010-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4086,gw1,2010-07-26,261.2709174608631,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4087,gw2,2010-07-26,263.7290825391369,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4088,my_sewer,2010-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4089,my_land,2010-07-27,0.7498397794667174,percolation,0.0,0.0,7.658554855443372e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4090,my_land,2010-07-27,6.301228419770721e-06,subsurface_runoff,0.0,0.0,7.731273451036375e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 +4091,my_land,2010-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4092,my_groundwater,2010-07-27,13.89008675795916,tank,0.0,0.0,0.0012894737223697974,0.0,0.0,0.0,0.0,0.0,9.091930216095227,0.0,0.0,0.0 +4093,my_reservoir,2010-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4094,gw1,2010-07-27,261.2791113444573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4095,gw2,2010-07-27,263.7208886555427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4096,my_sewer,2010-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4097,my_land,2010-07-28,0.7348429838773831,percolation,0.0,0.0,7.505383758334504e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4098,my_land,2010-07-28,5.0409827358165764e-06,subsurface_runoff,0.0,0.0,6.1850187608291e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +4099,my_land,2010-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4100,my_groundwater,2010-07-28,13.870320844664624,tank,0.0,0.0,0.0012877779197575337,0.0,0.0,0.0,0.0,0.0,9.094059136444157,0.0,0.0,0.0 +4101,my_reservoir,2010-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4102,gw1,2010-07-28,261.2872506021609,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4103,gw2,2010-07-28,263.7127493978391,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4104,my_sewer,2010-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4105,my_land,2010-07-29,0.7201461241998355,percolation,0.0,0.0,7.355276083167814e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4106,my_land,2010-07-29,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 +4107,my_land,2010-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4108,my_groundwater,2010-07-29,13.850305160081316,tank,0.0,0.0,0.0012860557990179277,0.0,0.0,0.0,0.0,0.0,9.096146240054505,0.0,0.0,0.0 +4109,my_reservoir,2010-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4110,gw1,2010-07-29,261.2953355981465,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4111,gw2,2010-07-29,263.7046644018535,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4112,my_sewer,2010-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4113,my_land,2010-07-30,0.7057432017158388,percolation,0.0,0.0,7.208170561504457e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4114,my_land,2010-07-30,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4115,my_land,2010-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4116,my_groundwater,2010-07-30,13.830046312358899,tank,0.0,0.0,0.001284308037098975,0.0,0.0,0.0,0.0,0.0,9.098192429603424,0.0,0.0,0.0 +4117,my_reservoir,2010-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4118,gw1,2010-07-30,261.30336669415885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4119,gw2,2010-07-30,263.69663330584115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4120,my_sewer,2010-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4121,my_land,2010-07-31,0.691628337681522,percolation,0.0,0.0,7.064007150274368e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4122,my_land,2010-07-31,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4123,my_land,2010-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4124,my_groundwater,2010-07-31,13.809550773452234,tank,0.0,0.0,0.0012825352970332476,0.0,0.0,0.0,0.0,0.0,9.100198585290336,0.0,0.0,0.0 +4125,my_reservoir,2010-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4126,gw1,2010-07-31,261.31134424953115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4127,gw2,2010-07-31,263.68865575046885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4128,my_sewer,2010-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4129,my_land,2010-08-01,0.6777957709278916,percolation,0.0,0.0,6.922727007268882e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4130,my_land,2010-08-01,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4131,my_land,2010-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4132,my_groundwater,2010-08-01,13.788824881855348,tank,0.0,0.0,0.0012807382282171442,0.0,0.0,0.0,0.0,0.0,9.10216556550563,0.0,0.0,0.0 +4133,my_reservoir,2010-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4134,gw1,2010-08-01,261.31926862120093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4135,gw2,2010-08-01,263.68073137879907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4136,my_sewer,2010-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4137,my_land,2010-08-02,0.6642398555093337,percolation,0.0,0.0,6.784272467123504e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4138,my_land,2010-08-02,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4139,my_land,2010-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4140,my_groundwater,2010-08-02,13.767874845280721,tank,0.0,0.0,0.0012789174666845513,0.0,0.0,0.0,0.0,0.0,9.104094207475546,0.0,0.0,0.0 +4141,my_reservoir,2010-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4142,gw1,2010-08-02,261.32714016372626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4143,gw2,2010-08-02,263.67285983627374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4144,my_sewer,2010-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 +4145,my_land,2010-08-03,0.650955058399147,percolation,0.0,0.0,6.648587017781034e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4146,my_land,2010-08-03,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4147,my_land,2010-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4148,my_groundwater,2010-08-03,13.74670674328493,tank,0.0,0.0,0.0012770736353750311,0.0,0.0,0.0,0.0,0.0,9.105985327884248,0.0,0.0,0.0 +4149,my_reservoir,2010-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4150,gw1,2010-08-03,261.33495922930143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4151,gw2,2010-08-03,263.66504077069857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4152,my_sewer,2010-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4153,my_land,2010-08-04,0.637935957231164,percolation,0.0,0.0,6.515615277425413e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4154,my_land,2010-08-04,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4155,my_land,2010-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4156,my_groundwater,2010-08-04,13.72532652984178,tank,0.0,0.0,0.001275207344396641,0.0,0.0,0.0,0.0,0.0,9.10783972347401,0.0,0.0,0.0 +4157,my_reservoir,2010-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4158,gw1,2010-08-04,261.34272616777275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4159,gw2,2010-08-04,263.65727383222725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4160,my_sewer,2010-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4161,my_land,2010-08-05,0.6251772380865408,percolation,0.0,0.0,6.385302971876904e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4162,my_land,2010-08-05,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4163,my_land,2010-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4164,my_groundwater,2010-08-05,13.703740035863937,tank,0.0,0.0,0.0012733191912834957,0.0,0.0,0.0,0.0,0.0,9.10965817162443,0.0,0.0,0.0 +4165,my_reservoir,2010-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4166,gw1,2010-08-05,261.3504413266543,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4167,gw2,2010-08-05,263.6495586733457,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4168,my_sewer,2010-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4169,my_land,2010-08-06,0.61267369332481,percolation,0.0,0.0,6.257596912439367e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4170,my_land,2010-08-06,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4171,my_land,2010-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4172,my_groundwater,2010-08-06,13.681952971674106,tank,0.0,0.0,0.0012714097612481765,0.0,0.0,0.0,0.0,0.0,9.111441430911528,0.0,0.0,0.0 +4173,my_reservoir,2010-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4174,gw1,2010-08-06,261.35810505114324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4175,gw2,2010-08-06,263.64189494885676,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4176,my_sewer,2010-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4177,my_land,2010-08-07,0.6004202194583138,percolation,0.0,0.0,6.13244497419058e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4178,my_land,2010-08-07,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4179,my_land,2010-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4180,my_groundwater,2010-08-07,13.65997092942675,tank,0.0,0.0,0.0012694796274290876,0.0,0.0,0.0,0.0,0.0,9.113190241647546,0.0,0.0,0.0 +4181,my_reservoir,2010-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4182,gw1,2010-08-07,261.36571768413563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4183,gw2,2010-08-07,263.63428231586437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4184,my_sewer,2010-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 +4185,my_land,2010-08-08,0.5884118150691475,percolation,0.0,0.0,6.009796074706768e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4186,my_land,2010-08-08,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4187,my_land,2010-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4188,my_groundwater,2010-08-08,13.637799385481376,tank,0.0,0.0,0.001267529351132866,0.0,0.0,0.0,0.0,0.0,9.114905326402218,0.0,0.0,0.0 +4189,my_reservoir,2010-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4190,gw1,2010-08-08,261.3732795662414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4191,gw2,2010-08-08,263.6267204337586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4192,my_sewer,2010-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0 +4193,my_land,2010-08-09,0.5766435787677646,percolation,0.0,0.0,5.889600153212633e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4194,my_land,2010-08-09,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4195,my_land,2010-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4196,my_groundwater,2010-08-09,13.615443702728303,tank,0.0,0.0,0.0012655594820719378,0.0,0.0,0.0,0.0,0.0,9.116587390506275,0.0,0.0,0.0 +4197,my_reservoir,2010-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4198,gw1,2010-08-09,261.3807910357998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4199,gw2,2010-08-09,263.6192089642002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4200,my_sewer,2010-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4201,my_land,2010-08-10,0.5651107071924093,percolation,0.0,0.0,5.7718081501483803e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4202,my_land,2010-08-10,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4203,my_land,2010-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4204,my_groundwater,2010-08-10,13.592909132867899,tank,0.0,0.0,0.0012635705585973239,0.0,0.0,0.0,0.0,0.0,9.11823712253788,0.0,0.0,0.0 +4205,my_reservoir,2010-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4206,gw1,2010-08-10,261.3882524288945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4207,gw2,2010-08-10,263.6117475711055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4208,my_sewer,2010-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4209,my_land,2010-08-11,0.5538084930485612,percolation,0.0,0.0,5.656371987145413e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4210,my_land,2010-08-11,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4211,my_land,2010-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4212,my_groundwater,2010-08-11,13.570200818644217,tank,0.0,0.0,0.0012615631079267852,0.0,0.0,0.0,0.0,0.0,9.11985519479267,0.0,0.0,0.0 +4213,my_reservoir,2010-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4214,gw1,2010-08-11,261.3956640793685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4215,gw2,2010-08-11,263.6043359206315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4216,my_sewer,2010-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 +4217,my_land,2010-08-12,0.5427323231875899,percolation,0.0,0.0,5.5432445474025046e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4218,my_land,2010-08-12,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4219,my_land,2010-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4220,my_groundwater,2010-08-12,13.547323796033925,tank,0.0,0.0,0.001259537646368404,0.0,0.0,0.0,0.0,0.0,9.121442263738059,0.0,0.0,0.0 +4221,my_reservoir,2010-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4222,gw1,2010-08-12,261.40302631883935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4223,gw2,2010-08-12,263.59697368116065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4224,my_sewer,2010-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0 +4225,my_land,2010-08-13,0.5318776767238381,percolation,0.0,0.0,5.4323796564544544e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 +4226,my_land,2010-08-13,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 +4227,my_land,2010-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 +4228,my_groundwater,2010-08-13,13.524282996391433,tank,0.0,0.0,0.0012574946795396898,0.0,0.0,0.0,0.0,0.0,9.122998970452418,0.0,0.0,0.0 +4229,my_reservoir,2010-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4230,gw1,2010-08-13,261.4103394767138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4231,gw2,2010-08-13,263.5896605232862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4232,my_sewer,2010-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4233,my_land,2010-08-14,0.58518486911909,percolation,0.0,0.0,6.380925434712288e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4234,my_land,2010-08-14,0.017403157094183178,subsurface_runoff,0.0,0.0,2.8771124980358568e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 +4235,my_land,2010-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4236,my_groundwater,2010-08-14,13.502384980878949,tank,0.0,0.0,0.0012556499169471926,0.0,0.0,0.0,0.0,0.0,9.125197702570146,0.0,0.0,0.0 +4237,my_reservoir,2010-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4238,gw1,2010-08-14,261.41760388020236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4239,gw2,2010-08-14,263.58239611979764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4240,my_sewer,2010-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4241,my_land,2010-08-15,0.5734811717367082,percolation,0.0,0.0,6.253306926018043e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4242,my_land,2010-08-15,0.013922525675346542,subsurface_runoff,0.0,0.0,2.3016899984286853e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 +4243,my_land,2010-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4244,my_groundwater,2010-08-15,13.480303456565677,tank,0.0,0.0,0.0012537837867790497,0.0,0.0,0.0,0.0,0.0,9.127354085481295,0.0,0.0,0.0 +4245,my_reservoir,2010-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4246,gw1,2010-08-15,261.4248198543344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4247,gw2,2010-08-15,263.5751801456656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4248,my_sewer,2010-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4249,my_land,2010-08-16,0.5620115483019741,percolation,0.0,0.0,6.128240787497682e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4250,my_land,2010-08-16,0.011138020540277235,subsurface_runoff,0.0,0.0,1.8413519987429483e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 +4251,my_land,2010-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.79285714,0.0,0.0,0.0 +4252,my_groundwater,2010-08-16,13.45804364730041,tank,0.0,0.0,0.0012518968620438427,0.0,0.0,0.0,0.0,0.0,9.1294690029068,0.0,0.0,0.0 +4253,my_reservoir,2010-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4254,gw1,2010-08-16,261.4319877219721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4255,gw2,2010-08-16,263.5680122780279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4256,my_sewer,2010-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4257,my_land,2010-08-17,0.5507713173359347,percolation,0.0,0.0,6.0056759717477285e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4258,my_land,2010-08-17,0.008910416432221787,subsurface_runoff,0.0,0.0,1.4730815989943585e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 +4259,my_land,2010-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +4260,my_groundwater,2010-08-17,13.435610668570785,tank,0.0,0.0,0.001249989703925839,0.0,0.0,0.0,0.0,0.0,9.13154331764842,0.0,0.0,0.0 +4261,my_reservoir,2010-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4262,gw1,2010-08-17,261.43910780382566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4263,gw2,2010-08-17,263.56089219617434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4264,my_sewer,2010-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 +4265,my_land,2010-08-18,0.539755890989216,percolation,0.0,0.0,5.8855624523127736e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 +4266,my_land,2010-08-18,0.00712833314577743,subsurface_runoff,0.0,0.0,1.178465279195487e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 +4267,my_land,2010-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.77142857,0.0,0.0,0.0 +4268,my_groundwater,2010-08-18,13.41300952968021,tank,0.0,0.0,0.001248062862022388,0.0,0.0,0.0,0.0,0.0,9.133577872173195,0.0,0.0,0.0 +4269,my_reservoir,2010-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4270,gw1,2010-08-18,261.44618041846684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4271,gw2,2010-08-18,263.55381958153316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4272,my_sewer,2010-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 +4273,my_land,2010-08-19,0.5774735931472577,percolation,0.0,0.0,6.581802812769845e-05,0.0,0.0,0.0,0.0,0.0,11.968273197789067,0.0,0.0,0.0 +4274,my_land,2010-08-19,0.018903433857526984,subsurface_runoff,0.0,0.0,3.1576065349300704e-06,0.0,0.0,0.0,0.0,0.0,15.901213852664279,0.0,0.0,0.0 +4275,my_land,2010-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 +4276,my_groundwater,2010-08-19,13.391232718287936,tank,0.0,0.0,0.001246282571868503,0.0,0.0,0.0,0.0,0.0,9.136066355778931,0.0,0.0,0.0 +4277,my_reservoir,2010-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4278,gw1,2010-08-19,261.45320588234375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4279,gw2,2010-08-19,263.54679411765625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4280,my_sewer,2010-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 +4281,my_land,2010-08-20,0.6492945048194116,percolation,0.0,0.0,7.842229780223757e-05,0.0,0.0,0.0,0.0,0.0,12.46908293542639,0.0,0.0,0.0 +4282,my_land,2010-08-20,0.037808565735028166,subsurface_runoff,0.0,0.0,6.314011823071428e-06,0.0,0.0,0.0,0.0,0.0,15.881654089596996,0.0,0.0,0.0 +4283,my_land,2010-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 +4284,my_groundwater,2010-08-20,13.370972417483182,tank,0.0,0.0,0.0012447633193583775,0.0,0.0,0.0,0.0,0.0,9.139361185938885,0.0,0.0,0.0 +4285,my_reservoir,2010-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4286,gw1,2010-08-20,261.4601845097948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4287,gw2,2010-08-20,263.5398154902052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4288,my_sewer,2010-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 +4289,my_land,2010-08-21,0.7958346284894762,percolation,0.0,0.0,0.00010303405476360818,0.0,0.0,0.0,0.0,0.0,13.165160365544303,0.0,0.0,0.0 +4290,my_land,2010-08-21,0.07365529170814573,subsurface_runoff,0.0,0.0,1.2175074197889892e-05,0.0,0.0,0.0,0.0,0.0,15.917004086137817,0.0,0.0,0.0 +4291,my_land,2010-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 +4292,my_groundwater,2010-08-21,13.353745905662295,tank,0.0,0.0,0.0012437488900319549,0.0,0.0,0.0,0.0,0.0,9.144245332138524,0.0,0.0,0.0 +4293,my_reservoir,2010-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4294,gw1,2010-08-21,261.4671166130628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4295,gw2,2010-08-21,263.5328833869372,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4296,my_sewer,2010-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 +4297,my_land,2010-08-22,2.0804579683848736,percolation,0.0,0.0,0.0002824313898784008,0.0,0.0,0.0,0.0,0.0,15.028959457364785,0.0,0.0,0.0 +4298,my_land,2010-08-22,0.41281267757473084,subsurface_runoff,0.0,0.0,5.911639029982616e-05,0.0,0.0,0.0,0.0,0.0,16.11387666564526,0.0,0.0,0.0 +4299,my_land,2010-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 +4300,my_groundwater,2010-08-22,13.362713720968832,tank,0.0,0.0,0.001246389013957971,0.0,0.0,0.0,0.0,0.0,9.162896519127962,0.0,0.0,0.0 +4301,my_reservoir,2010-08-22,0.03950000000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4302,gw1,2010-08-22,261.474002502309,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4303,gw2,2010-08-22,263.525997497691,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4304,my_sewer,2010-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 +4305,my_land,2010-08-23,2.4795973137478216,percolation,0.0,0.0,0.00033666312427321776,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 +4306,my_land,2010-08-23,0.45018170797288554,subsurface_runoff,0.0,0.0,6.358708834663235e-05,0.0,0.0,0.0,0.0,0.0,16.108506918122643,0.0,0.0,0.0 +4307,my_land,2010-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.12857143,0.0,0.0,0.0 +4308,my_groundwater,2010-08-23,13.379784453410563,tank,0.0,0.0,0.001250126540738638,0.0,0.0,0.0,0.0,0.0,9.185741261665326,0.0,0.0,0.0 +4309,my_reservoir,2010-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4310,gw1,2010-08-23,261.48084248562697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4311,gw2,2010-08-23,263.51915751437303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4312,my_sewer,2010-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 +4313,my_land,2010-08-24,2.430005367472865,percolation,0.0,0.0,0.00032992986178775343,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 +4314,my_land,2010-08-24,0.3601453663783084,subsurface_runoff,0.0,0.0,5.086967067730588e-05,0.0,0.0,0.0,0.0,0.0,16.108506918122643,0.0,0.0,0.0 +4315,my_land,2010-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.2,0.0,0.0,0.0 +4316,my_groundwater,2010-08-24,13.395802958686305,tank,0.0,0.0,0.0012537176537160421,0.0,0.0,0.0,0.0,0.0,9.208017977319221,0.0,0.0,0.0 +4317,my_reservoir,2010-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4318,gw1,2010-08-24,261.48763686905613,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4319,gw2,2010-08-24,263.51236313094387,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4320,my_sewer,2010-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0 +4321,my_land,2010-08-25,4.704749611353256,percolation,0.0,0.0,0.0005907569788138361,0.0,0.0,0.0,0.0,0.0,15.740952706241456,0.0,0.0,0.0 +4322,my_land,2010-08-25,0.9203188376549862,subsurface_runoff,0.0,0.0,0.00011346463838180054,0.0,0.0,0.0,0.0,0.0,16.22407810210591,0.0,0.0,0.0 +4323,my_land,2010-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.85,0.0,0.0,0.0 +4324,my_groundwater,2010-08-25,13.458088711234995,tank,0.0,0.0,0.0012626094837933195,0.0,0.0,0.0,0.0,0.0,9.25450998188942,0.0,0.0,0.0 +4325,my_reservoir,2010-08-25,0.06449999999999997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4326,gw1,2010-08-25,261.49438595659575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4327,gw2,2010-08-25,263.50561404340425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4328,my_sewer,2010-08-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4329,my_land,2010-08-26,4.993036894056678,percolation,0.0,0.0,0.0006220249123151865,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 +4330,my_land,2010-08-26,0.8403046687445297,subsurface_runoff,0.0,0.0,0.0001024949958966315,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 +4331,my_land,2010-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.5,0.0,0.0,0.0 +4332,my_groundwater,2010-08-26,13.526087454800205,tank,0.0,0.0,0.001272115610084538,0.0,0.0,0.0,0.0,0.0,9.303366396538431,0.0,0.0,0.0 +4333,my_reservoir,2010-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4334,gw1,2010-08-26,261.50109005021847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4335,gw2,2010-08-26,263.49890994978153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4336,my_sewer,2010-08-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4337,my_land,2010-08-27,4.893176156175544,percolation,0.0,0.0,0.0006095844140688827,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 +4338,my_land,2010-08-27,0.6722437349956237,subsurface_runoff,0.0,0.0,8.19959967173052e-05,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 +4339,my_land,2010-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15,0.0,0.0,0.0 +4340,my_groundwater,2010-08-27,13.591883322199635,tank,0.0,0.0,0.0012813447180600147,0.0,0.0,0.0,0.0,0.0,9.350655852956312,0.0,0.0,0.0 +4341,my_reservoir,2010-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4342,gw1,2010-08-27,261.5077494498837,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4343,gw2,2010-08-27,263.4922505501163,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4344,my_sewer,2010-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4345,my_land,2010-08-28,4.795312633052033,percolation,0.0,0.0,0.000597392725787505,0.0,0.0,0.0,0.0,0.0,15.755989288000574,0.0,0.0,0.0 +4346,my_land,2010-08-28,0.5377949879964989,subsurface_runoff,0.0,0.0,6.559679737384416e-05,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 +4347,my_land,2010-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15,0.0,0.0,0.0 +4348,my_groundwater,2010-08-28,13.655522478209837,tank,0.0,0.0,0.0012903025653255387,0.0,0.0,0.0,0.0,0.0,9.396445486893072,0.0,0.0,0.0 +4349,my_reservoir,2010-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4350,gw1,2010-08-28,261.51436445355114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4351,gw2,2010-08-28,263.48563554644886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4352,my_sewer,2010-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4353,my_land,2010-08-29,4.770051525222388,percolation,0.0,0.0,0.0005936275589457638,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 +4354,my_land,2010-08-29,0.4494591590588034,subsurface_runoff,0.0,0.0,5.470401957907773e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4355,my_land,2010-08-29,5.978696857454992e-19,surface_runoff,0.0,0.0,7.298213937322988e-23,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4356,my_groundwater,2010-08-29,13.718488292349198,tank,0.0,0.0,0.0012991613699336207,0.0,0.0,0.0,0.0,0.0,9.441382994674656,0.0,0.0,0.0 +4357,my_reservoir,2010-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4358,gw1,2010-08-29,261.5209353571941,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4359,gw2,2010-08-29,263.4790646428059,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4360,my_sewer,2010-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4361,my_land,2010-08-30,4.67465049471794,percolation,0.0,0.0,0.0005817550077668486,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 +4362,my_land,2010-08-30,0.3595673272470427,subsurface_runoff,0.0,0.0,4.3763215663262186e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4363,my_land,2010-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4364,my_groundwater,2010-08-30,13.779354599546512,tank,0.0,0.0,0.0013077563363097545,0.0,0.0,0.0,0.0,0.0,9.484916877900343,0.0,0.0,0.0 +4365,my_reservoir,2010-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4366,gw1,2010-08-30,261.5274624548128,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4367,gw2,2010-08-30,263.4725375451872,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4368,my_sewer,2010-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4369,my_land,2010-08-31,4.581157484823581,percolation,0.0,0.0,0.0005701199076115116,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 +4370,my_land,2010-08-31,0.2876538617976342,subsurface_runoff,0.0,0.0,3.5010572530609746e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4371,my_land,2010-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4372,my_groundwater,2010-08-31,13.83816549041727,tank,0.0,0.0,0.0013160929578739289,0.0,0.0,0.0,0.0,0.0,9.527105381838547,0.0,0.0,0.0 +4373,my_reservoir,2010-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4374,gw1,2010-08-31,261.53394603844737,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4375,gw2,2010-08-31,263.46605396155263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4376,my_sewer,2010-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4377,my_land,2010-09-01,4.48953433512711,percolation,0.0,0.0,0.0005587175094592813,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 +4378,my_land,2010-09-01,0.2301230894381074,subsurface_runoff,0.0,0.0,2.8008458024487797e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4379,my_land,2010-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4380,my_groundwater,2010-09-01,13.894964168513457,tank,0.0,0.0,0.0013241766176360936,0.0,0.0,0.0,0.0,0.0,9.568003615357508,0.0,0.0,0.0 +4381,my_reservoir,2010-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4382,gw1,2010-09-01,261.54038639819106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4383,gw2,2010-09-01,263.45961360180894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4384,my_sewer,2010-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4385,my_land,2010-09-02,4.399743648424568,percolation,0.0,0.0,0.0005475431592700956,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 +4386,my_land,2010-09-02,0.18409847155048592,subsurface_runoff,0.0,0.0,2.2406766419590236e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4387,my_land,2010-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4388,my_groundwater,2010-09-02,13.94979296807796,tank,0.0,0.0,0.0013320125904057161,0.0,0.0,0.0,0.0,0.0,9.607663759490833,0.0,0.0,0.0 +4389,my_reservoir,2010-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4390,gw1,2010-09-02,261.5467838222031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4391,gw2,2010-09-02,263.4532161777969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4392,my_sewer,2010-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4393,my_land,2010-09-03,4.311748775456077,percolation,0.0,0.0,0.0005365922960846938,0.0,0.0,0.0,0.0,0.0,15.745007195522492,0.0,0.0,0.0 +4394,my_land,2010-09-03,0.14727877724038874,subsurface_runoff,0.0,0.0,1.792541313567219e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4395,my_land,2010-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 +4396,my_groundwater,2010-09-03,14.002693371443835,tank,0.0,0.0,0.0013396060449571401,0.0,0.0,0.0,0.0,0.0,9.646135259568538,0.0,0.0,0.0 +4397,my_reservoir,2010-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4398,gw1,2010-09-03,261.55313859672174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4399,gw2,2010-09-03,263.44686140327826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4400,my_sewer,2010-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4401,my_land,2010-09-04,4.225513799946955,percolation,0.0,0.0,0.0005258604501629999,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 +4402,my_land,2010-09-04,0.117823021792311,subsurface_runoff,0.0,0.0,1.4340330508537752e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 +4403,my_land,2010-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.11666667,0.0,0.0,0.0 +4404,my_groundwater,2010-09-04,14.053706026085575,tank,0.0,0.0,0.001346962046151637,0.0,0.0,0.0,0.0,0.0,9.6834650024048,0.0,0.0,0.0 +4405,my_reservoir,2010-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4406,gw1,2010-09-04,261.5594510060769,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4407,gw2,2010-09-04,263.4405489939231,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4408,my_sewer,2010-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 +4409,my_land,2010-09-05,4.221212113483175,percolation,0.0,0.0,0.0005252922566639037,0.0,0.0,0.0,0.0,0.0,15.71905178520973,0.0,0.0,0.0 +4410,my_land,2010-09-05,0.11608388397402818,subsurface_runoff,0.0,0.0,1.4179479510004007e-05,0.0,0.0,0.0,0.0,0.0,15.807573160688316,0.0,0.0,0.0 +4411,my_land,2010-09-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.20833333,0.0,0.0,0.0 +4412,my_groundwater,2010-09-05,14.104503579044838,tank,0.0,0.0,0.0013542880905469158,0.0,0.0,0.0,0.0,0.0,9.720236870495325,0.0,0.0,0.0 +4413,my_reservoir,2010-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4414,gw1,2010-09-05,261.5657213327031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4415,gw2,2010-09-05,263.4342786672969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4416,my_sewer,2010-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4417,my_land,2010-09-06,4.567896285000967,percolation,0.0,0.0,0.0005654851892793158,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4418,my_land,2010-09-06,0.21017551909417637,subsurface_runoff,0.0,0.0,2.5139169389959698e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4419,my_land,2010-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.3,0.0,0.0,0.0 +4420,my_groundwater,2010-09-06,14.162231637327602,tank,0.0,0.0,0.001362414033102306,0.0,0.0,0.0,0.0,0.0,9.758870778447983,0.0,0.0,0.0 +4421,my_reservoir,2010-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4422,gw1,2010-09-06,261.57194985715176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4423,gw2,2010-09-06,263.42805014284824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4424,my_sewer,2010-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4425,my_land,2010-09-07,4.476538359300948,percolation,0.0,0.0,0.0005541754854937295,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4426,my_land,2010-09-07,0.1681404152753411,subsurface_runoff,0.0,0.0,2.0111335511967758e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4427,my_land,2010-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.325,0.0,0.0,0.0 +4428,my_groundwater,2010-09-07,14.217955589120054,tank,0.0,0.0,0.0013702894275456727,0.0,0.0,0.0,0.0,0.0,9.796335997210567,0.0,0.0,0.0 +4429,my_reservoir,2010-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4430,gw1,2010-09-07,261.5781368581041,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4431,gw2,2010-09-07,263.4218631418959,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4432,my_sewer,2010-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4433,my_land,2010-09-08,4.387007592114929,percolation,0.0,0.0,0.0005430919757838549,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4434,my_land,2010-09-08,0.13451233222027287,subsurface_runoff,0.0,0.0,1.6089068409574207e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4435,my_land,2010-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.325,0.0,0.0,0.0 +4436,my_groundwater,2010-09-08,14.271717640415309,tank,0.0,0.0,0.0013779195049124086,0.0,0.0,0.0,0.0,0.0,9.832679158502524,0.0,0.0,0.0 +4437,my_reservoir,2010-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4438,gw1,2010-09-08,261.5842826123834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4439,gw2,2010-09-08,263.4157173876166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4440,my_sewer,2010-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4441,my_land,2010-09-09,4.29926744027263,percolation,0.0,0.0,0.0005322301362681778,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 +4442,my_land,2010-09-09,0.1076098657762183,subsurface_runoff,0.0,0.0,1.2871254727659365e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4443,my_land,2010-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 +4444,my_groundwater,2010-09-09,14.323559147776963,tank,0.0,0.0,0.0013853093910670155,0.0,0.0,0.0,0.0,0.0,9.8679444833831,0.0,0.0,0.0 +4445,my_reservoir,2010-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4446,gw1,2010-09-09,261.5903873949675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4447,gw2,2010-09-09,263.4096126050325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4448,my_sewer,2010-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4449,my_land,2010-09-10,4.213282091467177,percolation,0.0,0.0,0.0005215855335428143,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +4450,my_land,2010-09-10,0.08608789262097463,subsurface_runoff,0.0,0.0,1.0297003782127492e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4451,my_land,2010-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 +4452,my_groundwater,2010-09-10,14.373520635340961,tank,0.0,0.0,0.0013924641088078982,0.0,0.0,0.0,0.0,0.0,9.9021739362382,0.0,0.0,0.0 +4453,my_reservoir,2010-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4454,gw1,2010-09-10,261.596451479001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4455,gw2,2010-09-10,263.403548520999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4456,my_sewer,2010-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4457,my_land,2010-09-11,4.129016449637834,percolation,0.0,0.0,0.000511153822871958,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +4458,my_land,2010-09-11,0.06887031409677971,subsurface_runoff,0.0,0.0,8.237603025701994e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4459,my_land,2010-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.425,0.0,0.0,0.0 +4460,my_groundwater,2010-09-11,14.421641811477379,tank,0.0,0.0,0.0013993885799300576,0.0,0.0,0.0,0.0,0.0,9.935407367103991,0.0,0.0,0.0 +4461,my_reservoir,2010-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4462,gw1,2010-09-11,261.60247513580765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4463,gw2,2010-09-11,263.39752486419235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4464,my_sewer,2010-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4465,my_land,2010-09-12,4.046436120645077,percolation,0.0,0.0,0.0005009307464145189,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +4466,my_land,2010-09-12,0.05509625127742377,subsurface_runoff,0.0,0.0,6.590082420561595e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4467,my_land,2010-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.425,0.0,0.0,0.0 +4468,my_groundwater,2010-09-12,14.46796158511896,tank,0.0,0.0,0.001406087627246528,0.0,0.0,0.0,0.0,0.0,9.967682643345096,0.0,0.0,0.0 +4469,my_reservoir,2010-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4470,gw1,2010-09-12,261.60845863490226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4471,gw2,2010-09-12,263.39154136509774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4472,my_sewer,2010-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4473,my_land,2010-09-13,3.9655073982321754,percolation,0.0,0.0,0.0004909121314862285,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 +4474,my_land,2010-09-13,0.04407700102193902,subsurface_runoff,0.0,0.0,5.272065936449276e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 +4475,my_land,2010-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.474999999999998,0.0,0.0,0.0 +4476,my_groundwater,2010-09-13,14.512518081763032,tank,0.0,0.0,0.0014125659765693815,0.0,0.0,0.0,0.0,0.0,9.999035771604866,0.0,0.0,0.0 +4477,my_reservoir,2010-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4478,gw1,2010-09-13,261.6144022440029,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4479,gw2,2010-09-13,263.3855977559971,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4480,my_sewer,2010-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4481,my_land,2010-09-14,3.9525199529380983,percolation,0.0,0.0,0.0004894168582376508,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4482,my_land,2010-09-14,0.05330859474151499,subsurface_runoff,0.0,0.0,6.482406322260593e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 +4483,my_land,2010-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.5,0.0,0.0,0.0 +4484,my_groundwater,2010-09-14,14.556698799886293,tank,0.0,0.0,0.0014189976905277962,0.0,0.0,0.0,0.0,0.0,10.029933719998455,0.0,0.0,0.0 +4485,my_reservoir,2010-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4486,gw1,2010-09-14,261.6203062290429,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4487,gw2,2010-09-14,263.3796937709571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4488,my_sewer,2010-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4489,my_land,2010-09-15,3.8734695538793362,percolation,0.0,0.0,0.00047962852107289773,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4490,my_land,2010-09-15,0.04264687579321199,subsurface_runoff,0.0,0.0,5.185925057808475e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 +4491,my_land,2010-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28214286,0.0,0.0,0.0 +4492,my_groundwater,2010-09-15,14.599159825947693,tank,0.0,0.0,0.001425214062623318,0.0,0.0,0.0,0.0,0.0,10.05995875582566,0.0,0.0,0.0 +4493,my_reservoir,2010-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4494,gw1,2010-09-15,261.62617085418265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4495,gw2,2010-09-15,263.37382914581735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4496,my_sewer,2010-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4497,my_land,2010-09-16,3.7960001628017497,percolation,0.0,0.0,0.0004700359506514398,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4498,my_land,2010-09-16,0.03411750063456959,subsurface_runoff,0.0,0.0,4.14874004624678e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 +4499,my_land,2010-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.06428571,0.0,0.0,0.0 +4500,my_groundwater,2010-09-16,14.639937643982716,tank,0.0,0.0,0.001431219616462164,0.0,0.0,0.0,0.0,0.0,10.089142847663021,0.0,0.0,0.0 +4501,my_reservoir,2010-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4502,gw1,2010-09-16,261.6319963818214,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4503,gw2,2010-09-16,263.3680036181786,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4504,my_sewer,2010-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4505,my_land,2010-09-17,3.7200801595457147,percolation,0.0,0.0,0.00046063523163841096,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4506,my_land,2010-09-17,0.027294000507655673,subsurface_runoff,0.0,0.0,3.318992036997424e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +4507,my_land,2010-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.06428571,0.0,0.0,0.0 +4508,my_groundwater,2010-09-17,14.679068003120655,tank,0.0,0.0,0.0014370187846365046,0.0,0.0,0.0,0.0,0.0,10.117516454332485,0.0,0.0,0.0 +4509,my_reservoir,2010-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4510,gw1,2010-09-17,261.63778307260924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4511,gw2,2010-09-17,263.36221692739076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4512,my_sewer,2010-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4513,my_land,2010-09-18,3.6456785563548,percolation,0.0,0.0,0.00045142252700564273,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4514,my_land,2010-09-18,0.02183520040612454,subsurface_runoff,0.0,0.0,2.6551936295979393e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +4515,my_land,2010-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 +4516,my_groundwater,2010-09-18,14.71658593229579,tank,0.0,0.0,0.0014426159105460996,0.0,0.0,0.0,0.0,0.0,10.145108613098595,0.0,0.0,0.0 +4517,my_reservoir,2010-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4518,gw1,2010-09-18,261.6435311854585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4519,gw2,2010-09-18,263.3564688145415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4520,my_sewer,2010-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4521,my_land,2010-09-19,3.572764985227704,percolation,0.0,0.0,0.00044239407646552985,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4522,my_land,2010-09-19,0.01746816032489963,subsurface_runoff,0.0,0.0,2.1241549036783513e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +4523,my_land,2010-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 +4524,my_groundwater,2010-09-19,14.752525754664328,tank,0.0,0.0,0.001448015250183497,0.0,0.0,0.0,0.0,0.0,10.171947021747322,0.0,0.0,0.0 +4525,my_reservoir,2010-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4526,gw1,2010-09-19,261.64924097755545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4527,gw2,2010-09-19,263.35075902244455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4528,my_sewer,2010-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4529,my_land,2010-09-20,3.5013096855231503,percolation,0.0,0.0,0.0004335461949362193,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4530,my_land,2010-09-20,0.013974528259919706,subsurface_runoff,0.0,0.0,1.6993239229426811e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +4531,my_land,2010-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 +4532,my_groundwater,2010-09-20,14.786921101732961,tank,0.0,0.0,0.0014532209738835255,0.0,0.0,0.0,0.0,0.0,10.198058115036105,0.0,0.0,0.0 +4533,my_reservoir,2010-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4534,gw1,2010-09-20,261.6549127043717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4535,gw2,2010-09-20,263.3450872956283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4536,my_sewer,2010-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 +4537,my_land,2010-09-21,3.431283491812687,percolation,0.0,0.0,0.00042487527103749487,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 +4538,my_land,2010-09-21,0.011179622607935764,subsurface_runoff,0.0,0.0,1.359459138354145e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 +4539,my_land,2010-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 +4540,my_groundwater,2010-09-21,14.819804927204816,tank,0.0,0.0,0.0014582371680377942,0.0,0.0,0.0,0.0,0.0,10.223467135960377,0.0,0.0,0.0 +4541,my_reservoir,2010-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4542,gw1,2010-09-21,261.6605466196759,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4543,gw2,2010-09-21,263.3394533803241,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4544,my_sewer,2010-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0 +4545,my_land,2010-09-22,3.362657821976433,percolation,0.0,0.0,0.00041637776561674497,0.0,0.0,0.0,0.0,0.0,15.588904949601504,0.0,0.0,0.0 +4546,my_land,2010-09-22,0.008943698086348612,subsurface_runoff,0.0,0.0,1.087567310683316e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 +4547,my_land,2010-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 +4548,my_groundwater,2010-09-22,14.851209520548466,tank,0.0,0.0,0.0014630678367748976,0.0,0.0,0.0,0.0,0.0,10.248198202242074,0.0,0.0,0.0 +4549,my_reservoir,2010-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4550,gw1,2010-09-22,261.66614297554474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4551,gw2,2010-09-22,263.33385702445526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4552,my_sewer,2010-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +4553,my_land,2010-09-23,3.338517854307825,percolation,0.0,0.0,0.0004137116813819961,0.0,0.0,0.0,0.0,0.0,15.55865990938685,0.0,0.0,0.0 +4554,my_land,2010-09-23,0.01888643840674426,subsurface_runoff,0.0,0.0,2.410590196189118e-06,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 +4555,my_land,2010-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +4556,my_groundwater,2010-09-23,14.88204418163836,tank,0.0,0.0,0.0014678321549825223,0.0,0.0,0.0,0.0,0.0,10.272449792361337,0.0,0.0,0.0 +4557,my_reservoir,2010-09-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4558,gw1,2010-09-23,261.67170202237446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4559,gw2,2010-09-23,263.32829797762554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4560,my_sewer,2010-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +4561,my_land,2010-09-24,3.2717474972216682,percolation,0.0,0.0,0.0004054374477543562,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +4562,my_land,2010-09-24,0.015109150725395409,subsurface_runoff,0.0,0.0,1.9284721569512947e-06,0.0,0.0,0.0,0.0,0.0,13.89159881271472,0.0,0.0,0.0 +4563,my_land,2010-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.3,0.0,0.0,0.0 +4564,my_groundwater,2010-09-24,14.911442502377705,tank,0.0,0.0,0.001472416122638637,0.0,0.0,0.0,0.0,0.0,10.296061172128738,0.0,0.0,0.0 +4565,my_reservoir,2010-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4566,gw1,2010-09-24,261.677224008892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4567,gw2,2010-09-24,263.322775991108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4568,my_sewer,2010-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +4569,my_land,2010-09-25,3.2063125472772347,percolation,0.0,0.0,0.00039732869879926906,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +4570,my_land,2010-09-25,0.012087320580316327,subsurface_runoff,0.0,0.0,1.5427777255610357e-06,0.0,0.0,0.0,0.0,0.0,13.89159881271472,0.0,0.0,0.0 +4571,my_land,2010-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.3,0.0,0.0,0.0 +4572,my_groundwater,2010-09-25,14.939435258691333,tank,0.0,0.0,0.0014768235594147397,0.0,0.0,0.0,0.0,0.0,10.31905380767953,0.0,0.0,0.0 +4573,my_reservoir,2010-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4574,gw1,2010-09-25,261.68270918216604,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4575,gw2,2010-09-25,263.31729081783396,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4576,my_sewer,2010-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +4577,my_land,2010-09-26,3.14218629633169,percolation,0.0,0.0,0.0003893821248232837,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +4578,my_land,2010-09-26,0.00966985646425306,subsurface_runoff,0.0,0.0,1.2342221804488285e-06,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 +4579,my_land,2010-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.85,0.0,0.0,0.0 +4580,my_groundwater,2010-09-26,14.966052605862785,tank,0.0,0.0,0.0014810582080572485,0.0,0.0,0.0,0.0,0.0,10.341448243528516,0.0,0.0,0.0 +4581,my_reservoir,2010-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4582,gw1,2010-09-26,261.68815778761825,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4583,gw2,2010-09-26,263.31184221238175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4584,my_sewer,2010-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 +4585,my_land,2010-09-27,3.079342570405056,percolation,0.0,0.0,0.000381594482326818,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +4586,my_land,2010-09-27,0.007735885171402449,subsurface_runoff,0.0,0.0,9.873777443590628e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 +4587,my_land,2010-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.625,0.0,0.0,0.0 +4588,my_groundwater,2010-09-27,14.991324090959946,tank,0.0,0.0,0.00148512373592733,0.0,0.0,0.0,0.0,0.0,10.36326415154945,0.0,0.0,0.0 +4589,my_reservoir,2010-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4590,gw1,2010-09-27,261.69357006903414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4591,gw2,2010-09-27,263.30642993096586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4592,my_sewer,2010-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0 +4593,my_land,2010-09-28,3.017755718996955,percolation,0.0,0.0,0.0003739625926802816,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 +4594,my_land,2010-09-28,0.006188708137121959,subsurface_runoff,0.0,0.0,7.899021954872503e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 +4595,my_land,2010-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.625,0.0,0.0,0.0 +4596,my_groundwater,2010-09-28,15.015278665012127,tank,0.0,0.0,0.0014890237365099315,0.0,0.0,0.0,0.0,0.0,10.384520376858246,0.0,0.0,0.0 +4597,my_reservoir,2010-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4598,gw1,2010-09-28,261.69894626857393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4599,gw2,2010-09-28,263.30105373142607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4600,my_sewer,2010-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0 +4601,my_land,2010-09-29,3.06774027820743,percolation,0.0,0.0,0.00038113609097685936,0.0,0.0,0.0,0.0,0.0,15.4340898401978,0.0,0.0,0.0 +4602,my_land,2010-09-29,0.03497536748668099,subsurface_runoff,0.0,0.0,4.6190646543988825e-06,0.0,0.0,0.0,0.0,0.0,12.34955617663326,0.0,0.0,0.0 +4603,my_land,2010-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.58214286,0.0,0.0,0.0 +4604,my_groundwater,2010-09-29,15.040190895441677,tank,0.0,0.0,0.0014930600190206857,0.0,0.0,0.0,0.0,0.0,10.405487382650191,0.0,0.0,0.0 +4605,my_reservoir,2010-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4606,gw1,2010-09-29,261.7042866267834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4607,gw2,2010-09-29,263.2957133732166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4608,my_sewer,2010-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.764285710000001,0.0,0.0,0.0 +4609,my_land,2010-09-30,3.3162132643660778,percolation,0.0,0.0,0.00041313988482881225,0.0,0.0,0.0,0.0,0.0,15.133993603424951,0.0,0.0,0.0 +4610,my_land,2010-09-30,0.1122871760907859,subsurface_runoff,0.0,0.0,1.447797707630551e-05,0.0,0.0,0.0,0.0,0.0,12.253813166451762,0.0,0.0,0.0 +4611,my_land,2010-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.76428571,0.0,0.0,0.0 +4612,my_groundwater,2010-09-30,15.070099045370526,tank,0.0,0.0,0.0014977377166285777,0.0,0.0,0.0,0.0,0.0,10.426669390980477,0.0,0.0,0.0 +4613,my_reservoir,2010-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4614,gw1,2010-09-30,261.70959138260486,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4615,gw2,2010-09-30,263.29040861739514,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4616,my_sewer,2010-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.918062059016394,0.0,0.0,0.0 +4617,my_land,2010-10-01,3.8914840810341293,percolation,0.0,0.0,0.00048200132488414375,0.0,0.0,0.0,0.0,0.0,14.681514840832817,0.0,0.0,0.0 +4618,my_land,2010-10-01,0.26441343664279826,subsurface_runoff,0.0,0.0,3.2568568804420676e-05,0.0,0.0,0.0,0.0,0.0,12.34344367469894,0.0,0.0,0.0 +4619,my_land,2010-10-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.946428569999998,0.0,0.0,0.0 +4620,my_groundwater,2010-10-01,15.11164329512101,tank,0.0,0.0,0.001503805542165005,0.0,0.0,0.0,0.0,0.0,10.44897449118141,0.0,0.0,0.0 +4621,my_reservoir,2010-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4622,gw1,2010-10-01,261.7148607733875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4623,gw2,2010-10-01,263.2851392266125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4624,my_sewer,2010-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 +4625,my_land,2010-10-02,4.504841208595412,percolation,0.0,0.0,0.0005508315177303078,0.0,0.0,0.0,0.0,0.0,14.353861106841407,0.0,0.0,0.0 +4626,my_land,2010-10-02,0.39960879262905913,subsurface_runoff,0.0,0.0,4.7407295681318035e-05,0.0,0.0,0.0,0.0,0.0,12.438785836686023,0.0,0.0,0.0 +4627,my_land,2010-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.12857143,0.0,0.0,0.0 +4628,my_groundwater,2010-10-02,15.165569882915328,tank,0.0,0.0,0.001511259384206245,0.0,0.0,0.0,0.0,0.0,10.472587210504212,0.0,0.0,0.0 +4629,my_reservoir,2010-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4630,gw1,2010-10-02,261.72009503489824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4631,gw2,2010-10-02,263.27990496510176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4632,my_sewer,2010-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 +4633,my_land,2010-10-03,4.487921581121961,percolation,0.0,0.0,0.0005481608669658369,0.0,0.0,0.0,0.0,0.0,14.326328153467053,0.0,0.0,0.0 +4634,my_land,2010-10-03,0.3395991964701745,subsurface_runoff,0.0,0.0,4.0196851399513004e-05,0.0,0.0,0.0,0.0,0.0,12.452066081000607,0.0,0.0,0.0 +4635,my_land,2010-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.31071429,0.0,0.0,0.0 +4636,my_groundwater,2010-10-03,15.219017218966593,tank,0.0,0.0,0.0015186402248232483,0.0,0.0,0.0,0.0,0.0,10.495721597312526,0.0,0.0,0.0 +4637,my_reservoir,2010-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4638,gw1,2010-10-03,261.72529440133223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4639,gw2,2010-10-03,263.27470559866777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4640,my_sewer,2010-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0 +4641,my_land,2010-10-04,4.47480299037798,percolation,0.0,0.0,0.0005459733342269537,0.0,0.0,0.0,0.0,0.0,14.300482045860853,0.0,0.0,0.0 +4642,my_land,2010-10-04,0.29253373564646845,subsurface_runoff,0.0,0.0,3.454542250748347e-05,0.0,0.0,0.0,0.0,0.0,12.478098924658571,0.0,0.0,0.0 +4643,my_land,2010-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.49285714,0.0,0.0,0.0 +4644,my_groundwater,2010-10-04,15.272063879651872,tank,0.0,0.0,0.001525958081422239,0.0,0.0,0.0,0.0,0.0,10.518416082235152,0.0,0.0,0.0 +4645,my_reservoir,2010-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4646,gw1,2010-10-04,261.73045910532335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4647,gw2,2010-10-04,263.26954089467665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4648,my_sewer,2010-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4649,my_land,2010-10-05,4.657346510957241,percolation,0.0,0.0,0.0005656763020296977,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4650,my_land,2010-10-05,0.30805136413263623,subsurface_runoff,0.0,0.0,3.5968973240621616e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4651,my_land,2010-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.675000000000002,0.0,0.0,0.0 +4652,my_groundwater,2010-10-05,15.328693988211516,tank,0.0,0.0,0.001533658739510002,0.0,0.0,0.0,0.0,0.0,10.541334378406901,0.0,0.0,0.0 +4653,my_reservoir,2010-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4654,gw1,2010-10-05,261.7355893779545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4655,gw2,2010-10-05,263.2644106220455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4656,my_sewer,2010-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4657,my_land,2010-10-06,4.564199580738096,percolation,0.0,0.0,0.0005543627759891037,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4658,my_land,2010-10-06,0.24644109130610897,subsurface_runoff,0.0,0.0,2.8775178592497292e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4659,my_land,2010-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.51428571,0.0,0.0,0.0 +4660,my_groundwater,2010-10-06,15.383286316134583,tank,0.0,0.0,0.0015411098348867196,0.0,0.0,0.0,0.0,0.0,10.563576177638202,0.0,0.0,0.0 +4661,my_reservoir,2010-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4662,gw1,2010-10-06,261.74068544876815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4663,gw2,2010-10-06,263.25931455123185,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4664,my_sewer,2010-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4665,my_land,2010-10-07,4.4729155891233345,percolation,0.0,0.0,0.0005432755204693216,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4666,my_land,2010-10-07,0.19715287304488718,subsurface_runoff,0.0,0.0,2.3020142873997833e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4667,my_land,2010-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4668,my_groundwater,2010-10-07,15.435883881979972,tank,0.0,0.0,0.0015483165976804855,0.0,0.0,0.0,0.0,0.0,10.585167664370033,0.0,0.0,0.0 +4669,my_reservoir,2010-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4670,gw1,2010-10-07,261.74574754577634,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4671,gw2,2010-10-07,263.25425245422366,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4672,my_sewer,2010-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4673,my_land,2010-10-08,4.3834572773408675,percolation,0.0,0.0,0.0005324100100599352,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4674,my_land,2010-10-08,0.15772229843590974,subsurface_runoff,0.0,0.0,1.8416114299198268e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4675,my_land,2010-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4676,my_groundwater,2010-10-08,15.486528838278034,tank,0.0,0.0,0.0015552841528196472,0.0,0.0,0.0,0.0,0.0,10.60613371187331,0.0,0.0,0.0 +4677,my_reservoir,2010-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4678,gw1,2010-10-08,261.7507758954712,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4679,gw2,2010-10-08,263.2492241045288,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4680,my_sewer,2010-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4681,my_land,2010-10-09,4.29578813179405,percolation,0.0,0.0,0.0005217618098587364,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4682,my_land,2010-10-09,0.1261778387487278,subsurface_runoff,0.0,0.0,1.4732891439358613e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4683,my_land,2010-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4684,my_groundwater,2010-10-09,15.535262488865289,tank,0.0,0.0,0.001562017522138294,0.0,0.0,0.0,0.0,0.0,10.626497963410344,0.0,0.0,0.0 +4685,my_reservoir,2010-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4686,gw1,2010-10-09,261.7557707228347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4687,gw2,2010-10-09,263.2442292771653,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4688,my_sewer,2010-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4689,my_land,2010-10-10,4.20987236915817,percolation,0.0,0.0,0.0005113265736615617,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4690,my_land,2010-10-10,0.10094227099898223,subsurface_runoff,0.0,0.0,1.178631315148689e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4691,my_land,2010-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4692,my_groundwater,2010-10-10,15.582125305872419,tank,0.0,0.0,0.00156852162643963,0.0,0.0,0.0,0.0,0.0,10.646282907436225,0.0,0.0,0.0 +4693,my_reservoir,2010-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4694,gw1,2010-10-10,261.76073225134917,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4695,gw2,2010-10-10,263.23926774865083,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4696,my_sewer,2010-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4697,my_land,2010-10-11,4.125674921775007,percolation,0.0,0.0,0.0005011000421883305,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4698,my_land,2010-10-11,0.08075381679918578,subsurface_runoff,0.0,0.0,9.429050521189512e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 +4699,my_land,2010-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4700,my_groundwater,2010-10-11,15.627156946372443,tank,0.0,0.0,0.001574801287518079,0.0,0.0,0.0,0.0,0.0,10.66550994734459,0.0,0.0,0.0 +4701,my_reservoir,2010-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4702,gw1,2010-10-11,261.76566070300686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4703,gw2,2010-10-11,263.23433929699314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4704,my_sewer,2010-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4705,my_land,2010-10-12,4.043161423339506,percolation,0.0,0.0,0.0004910780413445639,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4706,my_land,2010-10-12,0.06460305343934862,subsurface_runoff,0.0,0.0,7.5432404169516094e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 +4707,my_land,2010-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4708,my_groundwater,2010-10-12,15.670396268695923,tank,0.0,0.0,0.001580861230140941,0.0,0.0,0.0,0.0,0.0,10.684199466214029,0.0,0.0,0.0 +4709,my_reservoir,2010-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4710,gw1,2010-10-12,261.7705562983202,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4711,gw2,2010-10-12,263.2294437016798,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4712,my_sewer,2010-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4713,my_land,2010-10-13,3.962298194872716,percolation,0.0,0.0,0.0004812564805176726,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4714,my_land,2010-10-13,0.051682442751478895,subsurface_runoff,0.0,0.0,6.034592333561288e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 +4715,my_land,2010-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4716,my_groundwater,2010-10-13,15.711881348419805,tank,0.0,0.0,0.0015867060839904127,0.0,0.0,0.0,0.0,0.0,10.702370886968284,0.0,0.0,0.0 +4717,my_reservoir,2010-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4718,gw1,2010-10-13,261.77541925633136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4719,gw2,2010-10-13,263.22458074366864,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4720,my_sewer,2010-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4721,my_land,2010-10-14,3.8830522309752613,percolation,0.0,0.0,0.0004716313509073191,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4722,my_land,2010-10-14,0.041345954201183116,subsurface_runoff,0.0,0.0,4.8276738668490305e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 +4723,my_land,2010-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4724,my_groundwater,2010-10-14,15.751649494036466,tank,0.0,0.0,0.001592340385566764,0.0,0.0,0.0,0.0,0.0,10.720042728324856,0.0,0.0,0.0 +4725,my_reservoir,2010-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4726,gw1,2010-10-14,261.7802497946225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4727,gw2,2010-10-14,263.2197502053775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4728,my_sewer,2010-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4729,my_land,2010-10-15,3.805391186355756,percolation,0.0,0.0,0.00046219872388917276,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4730,my_land,2010-10-15,0.03307676336094649,subsurface_runoff,0.0,0.0,3.862139093479224e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4731,my_land,2010-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4732,my_groundwater,2010-10-15,15.78973726230933,tank,0.0,0.0,0.0015977685800534483,0.0,0.0,0.0,0.0,0.0,10.737232656872028,0.0,0.0,0.0 +4733,my_reservoir,2010-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4734,gw1,2010-10-15,261.785048129325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4735,gw2,2010-10-15,263.214951870675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4736,my_sewer,2010-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4737,my_land,2010-10-16,3.7292833626286406,percolation,0.0,0.0,0.0004529547494113893,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 +4738,my_land,2010-10-16,0.02646141068875719,subsurface_runoff,0.0,0.0,3.0897112747833795e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4739,my_land,2010-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4740,my_groundwater,2010-10-16,15.826180473321354,tank,0.0,0.0,0.0016029950231449038,0.0,0.0,0.0,0.0,0.0,10.753957535583345,0.0,0.0,0.0 +4741,my_reservoir,2010-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4742,gw1,2010-10-16,261.7898144751295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4743,gw2,2010-10-16,263.2101855248705,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4744,my_sewer,2010-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4745,my_land,2010-10-17,3.654697695376068,percolation,0.0,0.0,0.0004438956544231615,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +4746,my_land,2010-10-17,0.021169128551005754,subsurface_runoff,0.0,0.0,2.4717690198267035e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4747,my_land,2010-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4748,my_groundwater,2010-10-17,15.861014225222492,tank,0.0,0.0,0.0016080239828377989,0.0,0.0,0.0,0.0,0.0,10.770233469050691,0.0,0.0,0.0 +4749,my_reservoir,2010-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4750,gw1,2010-10-17,261.7945490452953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4751,gw2,2010-10-17,263.2054509547047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4752,my_sewer,2010-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 +4753,my_land,2010-10-18,3.5816037414685464,percolation,0.0,0.0,0.00043501774133469827,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +4754,my_land,2010-10-18,0.016935302840804602,subsurface_runoff,0.0,0.0,1.9774152158613628e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4755,my_land,2010-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4756,my_groundwater,2010-10-18,15.89427290868219,tank,0.0,0.0,0.0016128596411864463,0.0,0.0,0.0,0.0,0.0,10.786075845692022,0.0,0.0,0.0 +4757,my_reservoir,2010-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4758,gw1,2010-10-18,261.79925205166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4759,gw2,2010-10-18,263.20074794834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4760,my_sewer,2010-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 +4761,my_land,2010-10-19,3.5099716666391756,percolation,0.0,0.0,0.0004263173865080043,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +4762,my_land,2010-10-19,0.013548242272643682,subsurface_runoff,0.0,0.0,1.5819321726890902e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4763,my_land,2010-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4764,my_groundwater,2010-10-19,15.925990221052782,tank,0.0,0.0,0.0016175060960231075,0.0,0.0,0.0,0.0,0.0,10.801499377167273,0.0,0.0,0.0 +4765,my_reservoir,2010-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4766,gw1,2010-10-19,261.8039237046489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4767,gw2,2010-10-19,263.1960762953511,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4768,my_sewer,2010-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 +4769,my_land,2010-10-20,3.439772233306392,percolation,0.0,0.0,0.00041779103877784426,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +4770,my_land,2010-10-20,0.010838593818114946,subsurface_runoff,0.0,0.0,1.2655457381512721e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4771,my_land,2010-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4772,my_groundwater,2010-10-20,15.956199180249602,tank,0.0,0.0,0.0016219673626438843,0.0,0.0,0.0,0.0,0.0,10.816518135215555,0.0,0.0,0.0 +4773,my_reservoir,2010-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4774,gw1,2010-10-20,261.80856421328457,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4775,gw2,2010-10-20,263.19143578671543,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4776,my_sewer,2010-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 +4777,my_land,2010-10-21,3.3709767886402644,percolation,0.0,0.0,0.0004094352180022874,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +4778,my_land,2010-10-21,0.008670875054491958,subsurface_runoff,0.0,0.0,1.0124365905210178e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4779,my_land,2010-10-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4780,my_groundwater,2010-10-21,15.984932138353441,tank,0.0,0.0,0.0016262473754608926,0.0,0.0,0.0,0.0,0.0,10.83114558610834,0.0,0.0,0.0 +4781,my_reservoir,2010-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4782,gw1,2010-10-21,261.813173785196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4783,gw2,2010-10-21,263.186826214804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4784,my_sewer,2010-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 +4785,my_land,2010-10-22,3.303557252867459,percolation,0.0,0.0,0.00040124651364224165,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 +4786,my_land,2010-10-22,0.006936700043593566,subsurface_runoff,0.0,0.0,8.099492724168142e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 +4787,my_land,2010-10-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 +4788,my_groundwater,2010-10-22,16.01222079494093,tank,0.0,0.0,0.0016303499896213858,0.0,0.0,0.0,0.0,0.0,10.845394622896785,0.0,0.0,0.0 +4789,my_reservoir,2010-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4790,gw1,2010-10-22,261.817752626628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4791,gw2,2010-10-22,263.182247373372,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4792,my_sewer,2010-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 +4793,my_land,2010-10-23,3.265979015481037,percolation,0.0,0.0,0.0003968831620786054,0.0,0.0,0.0,0.0,0.0,14.177874882313494,0.0,0.0,0.0 +4794,my_land,2010-10-23,0.013302532190229125,subsurface_runoff,0.0,0.0,1.6443073660174276e-06,0.0,0.0,0.0,0.0,0.0,10.479126768470415,0.0,0.0,0.0 +4795,my_land,2010-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.360714286,0.0,0.0,0.0 +4796,my_groundwater,2010-10-23,16.038676244340156,tank,0.0,0.0,0.0016343535218753611,0.0,0.0,0.0,0.0,0.0,10.85920893548549,0.0,0.0,0.0 +4797,my_reservoir,2010-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4798,gw1,2010-10-23,261.8223009424505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4799,gw2,2010-10-23,263.1776990575495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4800,my_sewer,2010-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 +4801,my_land,2010-10-24,3.200659435171416,percolation,0.0,0.0,0.00038894549883703334,0.0,0.0,0.0,0.0,0.0,14.177874882313493,0.0,0.0,0.0 +4802,my_land,2010-10-24,0.0106420257521833,subsurface_runoff,0.0,0.0,1.315445892813942e-06,0.0,0.0,0.0,0.0,0.0,10.479126768470415,0.0,0.0,0.0 +4803,my_land,2010-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.982142857,0.0,0.0,0.0 +4804,my_groundwater,2010-10-24,16.063735835088153,tank,0.0,0.0,0.0016381854571541408,0.0,0.0,0.0,0.0,0.0,10.87266980999111,0.0,0.0,0.0 +4805,my_reservoir,2010-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4806,gw1,2010-10-24,261.8268189361675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4807,gw2,2010-10-24,263.1731810638325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4808,my_sewer,2010-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 +4809,my_land,2010-10-25,3.1366462464679876,percolation,0.0,0.0,0.00038116658886029267,0.0,0.0,0.0,0.0,0.0,14.17787488231349,0.0,0.0,0.0 +4810,my_land,2010-10-25,0.00851362060174664,subsurface_runoff,0.0,0.0,1.0523567142511537e-06,0.0,0.0,0.0,0.0,0.0,10.479126768470415,0.0,0.0,0.0 +4811,my_land,2010-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.603571429,0.0,0.0,0.0 +4812,my_groundwater,2010-10-25,16.0874296512321,tank,0.0,0.0,0.0016418494562130542,0.0,0.0,0.0,0.0,0.0,10.885788610121619,0.0,0.0,0.0 +4813,my_reservoir,2010-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4814,gw1,2010-10-25,261.8313068099264,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4815,gw2,2010-10-25,263.1686931900736,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4816,my_sewer,2010-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4817,my_land,2010-10-26,3.1068261003315394,percolation,0.0,0.0,0.0003777500013908123,0.0,0.0,0.0,0.0,0.0,14.112116639342851,0.0,0.0,0.0 +4818,my_land,2010-10-26,0.015766754656339192,subsurface_runoff,0.0,0.0,1.9865777000337163e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4819,my_land,2010-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4820,my_groundwater,2010-10-26,16.11045717986077,tank,0.0,0.0,0.0016454347433151203,0.0,0.0,0.0,0.0,0.0,10.898454462603954,0.0,0.0,0.0 +4821,my_reservoir,2010-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4822,gw1,2010-10-26,261.83576476452686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4823,gw2,2010-10-26,263.16423523547314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4824,my_sewer,2010-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4825,my_land,2010-10-27,3.0446895783249084,percolation,0.0,0.0,0.00037019500136299606,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 +4826,my_land,2010-10-27,0.012613403725071354,subsurface_runoff,0.0,0.0,1.589262160026973e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4827,my_land,2010-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.721428570999999,0.0,0.0,0.0 +4828,my_groundwater,2010-10-27,16.132162217612734,tank,0.0,0.0,0.0016488572689845793,0.0,0.0,0.0,0.0,0.0,10.910801634260393,0.0,0.0,0.0 +4829,my_reservoir,2010-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4830,gw1,2010-10-27,261.84019299943003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4831,gw2,2010-10-27,263.15980700056997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4832,my_sewer,2010-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4833,my_land,2010-10-28,2.98379578675841,percolation,0.0,0.0,0.00036279110133573614,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 +4834,my_land,2010-10-28,0.010090722980057084,subsurface_runoff,0.0,0.0,1.2714097280215785e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4835,my_land,2010-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.217857143,0.0,0.0,0.0 +4836,my_groundwater,2010-10-28,16.152573369156286,tank,0.0,0.0,0.0016521205160893097,0.0,0.0,0.0,0.0,0.0,10.92284014067621,0.0,0.0,0.0 +4837,my_reservoir,2010-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4838,gw1,2010-10-28,261.84459171276717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4839,gw2,2010-10-28,263.15540828723283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4840,my_sewer,2010-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4841,my_land,2010-10-29,2.924119871023242,percolation,0.0,0.0,0.0003555352793090214,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 +4842,my_land,2010-10-29,0.008072578384045667,subsurface_runoff,0.0,0.0,1.0171277824172628e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4843,my_land,2010-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.714285714,0.0,0.0,0.0 +4844,my_groundwater,2010-10-29,16.17171866167923,tank,0.0,0.0,0.0016552278972707345,0.0,0.0,0.0,0.0,0.0,10.934579597197391,0.0,0.0,0.0 +4845,my_reservoir,2010-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4846,gw1,2010-10-29,261.8489611013487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4847,gw2,2010-10-29,263.1510388986513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4848,my_sewer,2010-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4849,my_land,2010-10-30,2.8656374736027774,percolation,0.0,0.0,0.000348424573722841,0.0,0.0,0.0,0.0,0.0,14.112116639342855,0.0,0.0,0.0 +4850,my_land,2010-10-30,0.006458062707236534,subsurface_runoff,0.0,0.0,8.137022259338103e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4851,my_land,2010-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.210714286,0.0,0.0,0.0 +4852,my_groundwater,2010-10-30,16.189625556451947,tank,0.0,0.0,0.0016581827563497728,0.0,0.0,0.0,0.0,0.0,10.946029238729267,0.0,0.0,0.0 +4853,my_reservoir,2010-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4854,gw1,2010-10-30,261.8533013606731,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4855,gw2,2010-10-30,263.1466986393269,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4856,my_sewer,2010-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4857,my_land,2010-10-31,2.808324724130722,percolation,0.0,0.0,0.0003414560822483842,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +4858,my_land,2010-10-31,0.005166450165789227,subsurface_runoff,0.0,0.0,6.509617807470482e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4859,my_land,2010-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.707142857,0.0,0.0,0.0 +4860,my_groundwater,2010-10-31,16.20632096015919,tank,0.0,0.0,0.001660988369704669,0.0,0.0,0.0,0.0,0.0,10.957197938368624,0.0,0.0,0.0 +4861,my_reservoir,2010-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4862,gw1,2010-10-31,261.85761268493525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4863,gw2,2010-10-31,263.14238731506475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4864,my_sewer,2010-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4865,my_land,2010-11-01,2.7521582296481073,percolation,0.0,0.0,0.0003346269606034165,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +4866,my_land,2010-11-01,0.004133160132631382,subsurface_runoff,0.0,0.0,5.207694245976385e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4867,my_land,2010-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.20357143,0.0,0.0,0.0 +4868,my_groundwater,2010-11-01,16.221831236005197,tank,0.0,0.0,0.0016636479476212626,0.0,0.0,0.0,0.0,0.0,10.968094224948745,0.0,0.0,0.0 +4869,my_reservoir,2010-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4870,gw1,2010-11-01,261.86189526703566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4871,gw2,2010-11-01,263.13810473296434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4872,my_sewer,2010-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4873,my_land,2010-11-02,2.697115065055145,percolation,0.0,0.0,0.0003279344213913482,0.0,0.0,0.0,0.0,0.0,14.112116639342858,0.0,0.0,0.0 +4874,my_land,2010-11-02,0.0033065281061051056,subsurface_runoff,0.0,0.0,4.166155396781108e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4875,my_land,2010-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 +4876,my_groundwater,2010-11-02,16.236182214596663,tank,0.0,0.0,0.0016661646356162477,0.0,0.0,0.0,0.0,0.0,10.978726299570706,0.0,0.0,0.0 +4877,my_reservoir,2010-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4878,gw1,2010-11-02,261.86614929858877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4879,gw2,2010-11-02,263.13385070141123,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4880,my_sewer,2010-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4881,my_land,2010-11-03,2.643172763754042,percolation,0.0,0.0,0.00032137573296352125,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +4882,my_land,2010-11-03,0.0026452224848840843,subsurface_runoff,0.0,0.0,3.3329243174248867e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4883,my_land,2010-11-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 +4884,my_groundwater,2010-11-03,16.24939920460802,tank,0.0,0.0,0.0016685415157339644,0.0,0.0,0.0,0.0,0.0,10.989102051188627,0.0,0.0,0.0 +4885,my_reservoir,2010-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4886,gw1,2010-11-03,261.8703749699315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4887,gw2,2010-11-03,263.1296250300685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4888,my_sewer,2010-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 +4889,my_land,2010-11-04,2.5903093084789615,percolation,0.0,0.0,0.0003149482183042508,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +4890,my_land,2010-11-04,0.0021161779879072676,subsurface_runoff,0.0,0.0,2.6663394539399093e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4891,my_land,2010-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 +4892,my_groundwater,2010-11-04,16.261507003233394,tank,0.0,0.0,0.001670781607817252,0.0,0.0,0.0,0.0,0.0,10.99922907131146,0.0,0.0,0.0 +4893,my_reservoir,2010-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4894,gw1,2010-11-04,261.87457247013197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4895,gw2,2010-11-04,263.12542752986803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4896,my_sewer,2010-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +4897,my_land,2010-11-05,2.538503122309382,percolation,0.0,0.0,0.00030864925393816583,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 +4898,my_land,2010-11-05,0.001692942390325814,subsurface_runoff,0.0,0.0,2.1330715631519274e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 +4899,my_land,2010-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 +4900,my_groundwater,2010-11-05,16.272529906429465,tank,0.0,0.0,0.0016728878707528787,0.0,0.0,0.0,0.0,0.0,11.009114667879247,0.0,0.0,0.0 +4901,my_reservoir,2010-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4902,gw1,2010-11-05,261.87874198699774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4903,gw2,2010-11-05,263.12125801300226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4904,my_sewer,2010-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0 +4905,my_land,2010-11-06,2.7903828025514876,percolation,0.0,0.0,0.0003411772693051844,0.0,0.0,0.0,0.0,0.0,13.629970905946246,0.0,0.0,0.0 +4906,my_land,2010-11-06,0.08370802539206827,subsurface_runoff,0.0,0.0,1.070153020009484e-05,0.0,0.0,0.0,0.0,0.0,9.656897717727844,0.0,0.0,0.0 +4907,my_land,2010-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.2,0.0,0.0,0.0 +4908,my_groundwater,2010-11-06,16.288652803001046,tank,0.0,0.0,0.0016756510454868521,0.0,0.0,0.0,0.0,0.0,11.018254508947866,0.0,0.0,0.0 +4909,my_reservoir,2010-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4910,gw1,2010-11-06,261.88288370708443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4911,gw2,2010-11-06,263.11711629291557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4912,my_sewer,2010-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0 +4913,my_land,2010-11-07,3.463412575397431,percolation,0.0,0.0,0.0004221108492532323,0.0,0.0,0.0,0.0,0.0,12.72398330435917,0.0,0.0,0.0 +4914,my_land,2010-11-07,0.26528953021759294,subsurface_runoff,0.0,0.0,3.2440714046919826e-05,0.0,0.0,0.0,0.0,0.0,9.408590490996032,0.0,0.0,0.0 +4915,my_land,2010-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +4916,my_groundwater,2010-11-07,16.318436355564135,tank,0.0,0.0,0.0016800548887329328,0.0,0.0,0.0,0.0,0.0,11.02562425448766,0.0,0.0,0.0 +4917,my_reservoir,2010-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4918,gw1,2010-11-07,261.88699781570386,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4919,gw2,2010-11-07,263.11300218429614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4920,my_sewer,2010-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 +4921,my_land,2010-11-08,3.67685020065256,percolation,0.0,0.0,0.00044717216976176825,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 +4922,my_land,2010-11-08,0.2891583933613064,subsurface_runoff,0.0,0.0,3.5069180079331945e-05,0.0,0.0,0.0,0.0,0.0,9.30578576299988,0.0,0.0,0.0 +4923,my_land,2010-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.45,0.0,0.0,0.0 +4924,my_groundwater,2010-11-08,16.352490429474223,tank,0.0,0.0,0.0016849578992526794,0.0,0.0,0.0,0.0,0.0,11.03209532697629,0.0,0.0,0.0 +4925,my_reservoir,2010-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4926,gw1,2010-11-08,261.8910844969325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4927,gw2,2010-11-08,263.1089155030675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4928,my_sewer,2010-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 +4929,my_land,2010-11-09,3.6033131966395087,percolation,0.0,0.0,0.0004382287263665329,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 +4930,my_land,2010-11-09,0.23132671468904512,subsurface_runoff,0.0,0.0,2.8055344063465556e-05,0.0,0.0,0.0,0.0,0.0,9.30578576299988,0.0,0.0,0.0 +4931,my_land,2010-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.075,0.0,0.0,0.0 +4932,my_groundwater,2010-11-09,16.384962364903554,tank,0.0,0.0,0.001689666589291295,0.0,0.0,0.0,0.0,0.0,11.03839543996988,0.0,0.0,0.0 +4933,my_reservoir,2010-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4934,gw1,2010-11-09,261.8951439336196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4935,gw2,2010-11-09,263.1048560663804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4936,my_sewer,2010-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0 +4937,my_land,2010-11-10,3.7826262425991604,percolation,0.0,0.0,0.0004591400615630426,0.0,0.0,0.0,0.0,0.0,12.169789571889762,0.0,0.0,0.0 +4938,my_land,2010-11-10,0.2534639050553019,subsurface_runoff,0.0,0.0,3.051935272664738e-05,0.0,0.0,0.0,0.0,0.0,9.056763856409152,0.0,0.0,0.0 +4939,my_land,2010-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.742857143,0.0,0.0,0.0 +4940,my_groundwater,2010-11-10,16.421003421787063,tank,0.0,0.0,0.001694789202642743,0.0,0.0,0.0,0.0,0.0,11.043700917577238,0.0,0.0,0.0 +4941,my_reservoir,2010-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4942,gw1,2010-11-10,261.89917630739546,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4943,gw2,2010-11-10,263.10082369260454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4944,my_sewer,2010-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0 +4945,my_land,2010-11-11,3.885581168725699,percolation,0.0,0.0,0.00047089400171154857,0.0,0.0,0.0,0.0,0.0,11.9825521142086,0.0,0.0,0.0 +4946,my_land,2010-11-11,0.2513717909771727,subsurface_runoff,0.0,0.0,3.01125546656082e-05,0.0,0.0,0.0,0.0,0.0,8.87109773694948,0.0,0.0,0.0 +4947,my_land,2010-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.410714286,0.0,0.0,0.0 +4948,my_groundwater,2010-11-11,16.459050244167365,tank,0.0,0.0,0.0017001382860995498,0.0,0.0,0.0,0.0,0.0,11.048212873030268,0.0,0.0,0.0 +4949,my_reservoir,2010-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4950,gw1,2010-11-11,261.9031817986795,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4951,gw2,2010-11-11,263.0968182013205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4952,my_sewer,2010-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +4953,my_land,2010-11-12,3.970898230480193,percolation,0.0,0.0,0.00048047511615352084,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +4954,my_land,2010-11-12,0.24545897975561798,subsurface_runoff,0.0,0.0,2.925983814777997e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 +4955,my_land,2010-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571428999999,0.0,0.0,0.0 +4956,my_groundwater,2010-11-12,16.498738761106008,tank,0.0,0.0,0.0017056690409631404,0.0,0.0,0.0,0.0,0.0,11.0519517331324,0.0,0.0,0.0 +4957,my_reservoir,2010-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4958,gw1,2010-11-12,261.9071605866883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4959,gw2,2010-11-12,263.0928394133117,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4960,my_sewer,2010-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +4961,my_land,2010-11-13,3.891480265870589,percolation,0.0,0.0,0.00047086561383045044,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +4962,my_land,2010-11-13,0.1963671838044944,subsurface_runoff,0.0,0.0,2.3407870518223974e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 +4963,my_land,2010-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.746428571,0.0,0.0,0.0 +4964,my_groundwater,2010-11-13,16.536711333901323,tank,0.0,0.0,0.0017109903469279951,0.0,0.0,0.0,0.0,0.0,11.055589491270965,0.0,0.0,0.0 +4965,my_reservoir,2010-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4966,gw1,2010-11-13,261.9111128494437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4967,gw2,2010-11-13,263.0888871505563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4968,my_sewer,2010-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +4969,my_land,2010-11-14,3.8136506605531775,percolation,0.0,0.0,0.00046144830155384146,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +4970,my_land,2010-11-14,0.15709374704359552,subsurface_runoff,0.0,0.0,1.8726296414579178e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 +4971,my_land,2010-11-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.414285713999999,0.0,0.0,0.0 +4972,my_groundwater,2010-11-14,16.573004586870688,tank,0.0,0.0,0.0017161066400565926,0.0,0.0,0.0,0.0,0.0,11.059129646427545,0.0,0.0,0.0 +4973,my_reservoir,2010-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4974,gw1,2010-11-14,261.9150387637808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4975,gw2,2010-11-14,263.0849612362192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4976,my_sewer,2010-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +4977,my_land,2010-11-15,3.737377647342114,percolation,0.0,0.0,0.00045221933552276464,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 +4978,my_land,2010-11-15,0.1256749976348764,subsurface_runoff,0.0,0.0,1.4981037131663342e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 +4979,my_land,2010-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.082142857000001,0.0,0.0,0.0 +4980,my_groundwater,2010-11-15,16.607654406081547,tank,0.0,0.0,0.00172102226707245,0.0,0.0,0.0,0.0,0.0,11.062575542087503,0.0,0.0,0.0 +4981,my_reservoir,2010-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4982,gw1,2010-11-15,261.9189385053556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4983,gw2,2010-11-15,263.0810614946444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4984,my_sewer,2010-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 +4985,my_land,2010-11-16,3.721136828021347,percolation,0.0,0.0,0.0004502004730027757,0.0,0.0,0.0,0.0,0.0,11.730663775861334,0.0,0.0,0.0 +4986,my_land,2010-11-16,0.11646019773404397,subsurface_runoff,0.0,0.0,1.3896536968042608e-05,0.0,0.0,0.0,0.0,0.0,8.406510147119173,0.0,0.0,0.0 +4987,my_land,2010-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 +4988,my_groundwater,2010-11-16,16.64188698406535,tank,0.0,0.0,0.0017258845067480398,0.0,0.0,0.0,0.0,0.0,11.06561659319303,0.0,0.0,0.0 +4989,my_reservoir,2010-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4990,gw1,2010-11-16,261.9228122486532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4991,gw2,2010-11-16,263.0771877513468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4992,my_sewer,2010-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +4993,my_land,2010-11-17,3.8470089749815277,percolation,0.0,0.0,0.0004648796491664363,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +4994,my_land,2010-11-17,0.14767016730848898,subsurface_runoff,0.0,0.0,1.75616338257854e-05,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +4995,my_land,2010-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +4996,my_groundwater,2010-11-17,16.678596377881597,tank,0.0,0.0,0.0017310334169106294,0.0,0.0,0.0,0.0,0.0,11.067432945593382,0.0,0.0,0.0 +4997,my_reservoir,2010-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4998,gw1,2010-11-17,261.92666016699553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4999,gw2,2010-11-17,263.07333983300447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5000,my_sewer,2010-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5001,my_land,2010-11-18,3.770068795481897,percolation,0.0,0.0,0.00045558205618310754,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5002,my_land,2010-11-18,0.11813613384679118,subsurface_runoff,0.0,0.0,1.4049307060628318e-05,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5003,my_land,2010-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.007142857,0.0,0.0,0.0 +5004,my_groundwater,2010-11-18,16.713647715987772,tank,0.0,0.0,0.0017359801823692233,0.0,0.0,0.0,0.0,0.0,11.069200897377023,0.0,0.0,0.0 +5005,my_reservoir,2010-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5006,gw1,2010-11-18,261.9304824325489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5007,gw2,2010-11-18,263.0695175674511,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5008,my_sewer,2010-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5009,my_land,2010-11-19,3.694667419572259,percolation,0.0,0.0,0.0004464704150594454,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5010,my_land,2010-11-19,0.09450890707743295,subsurface_runoff,0.0,0.0,1.1239445648502654e-05,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5011,my_land,2010-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.135714286,0.0,0.0,0.0 +5012,my_groundwater,2010-11-19,16.747076469167666,tank,0.0,0.0,0.0017407290939341533,0.0,0.0,0.0,0.0,0.0,11.0709220916491,0.0,0.0,0.0 +5013,my_reservoir,2010-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5014,gw1,2010-11-19,261.9342792163319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5015,gw2,2010-11-19,263.0657207836681,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5016,my_sewer,2010-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5017,my_land,2010-11-20,3.620774071180814,percolation,0.0,0.0,0.0004375410067582565,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5018,my_land,2010-11-20,0.07560712566194636,subsurface_runoff,0.0,0.0,8.991556518802124e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5019,my_land,2010-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.264285714,0.0,0.0,0.0 +5020,my_groundwater,2010-11-20,16.778917393015213,tank,0.0,0.0,0.0017452843559797539,0.0,0.0,0.0,0.0,0.0,11.07259810000806,0.0,0.0,0.0 +5021,my_reservoir,2010-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5022,gw1,2010-11-20,261.93805068822303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5023,gw2,2010-11-20,263.06194931177697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5024,my_sewer,2010-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5025,my_land,2010-11-21,3.5483585897571976,percolation,0.0,0.0,0.00042879018662309135,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5026,my_land,2010-11-21,0.06048570052955708,subsurface_runoff,0.0,0.0,7.1932452150417e-06,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 +5027,my_land,2010-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5028,my_groundwater,2010-11-21,16.809204542252733,tank,0.0,0.0,0.0017496500881746318,0.0,0.0,0.0,0.0,0.0,11.074230426397456,0.0,0.0,0.0 +5029,my_reservoir,2010-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5030,gw1,2010-11-21,261.9417970169682,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5031,gw2,2010-11-21,263.0582029830318,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5032,my_sewer,2010-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5033,my_land,2010-11-22,3.4773914179620538,percolation,0.0,0.0,0.00042021438289062955,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 +5034,my_land,2010-11-22,0.048388560423645664,subsurface_runoff,0.0,0.0,5.7545961720333596e-06,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 +5035,my_land,2010-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5036,my_groundwater,2010-11-22,16.837971284762755,tank,0.0,0.0,0.001753830327177326,0.0,0.0,0.0,0.0,0.0,11.075820510711043,0.0,0.0,0.0 +5037,my_reservoir,2010-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5038,gw1,2010-11-22,261.94551837018844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5039,gw2,2010-11-22,263.05448162981156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5040,my_sewer,2010-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5041,my_land,2010-11-23,3.4078435896028125,percolation,0.0,0.0,0.00041181009523281694,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 +5042,my_land,2010-11-23,0.03871084833891653,subsurface_runoff,0.0,0.0,4.603676937626688e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5043,my_land,2010-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5044,my_groundwater,2010-11-23,16.865250315339193,tank,0.0,0.0,0.0017578290282980508,0.0,0.0,0.0,0.0,0.0,11.077369732169373,0.0,0.0,0.0 +5045,my_reservoir,2010-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5046,gw1,2010-11-23,261.9492149143872,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5047,gw2,2010-11-23,263.0507850856128,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5048,my_sewer,2010-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5049,my_land,2010-11-24,3.339686717810756,percolation,0.0,0.0,0.0004035738933281606,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 +5050,my_land,2010-11-24,0.030968678671133225,subsurface_runoff,0.0,0.0,3.68294155010135e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5051,my_land,2010-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5052,my_groundwater,2010-11-24,16.89107366916342,tank,0.0,0.0,0.0017616500671272005,0.0,0.0,0.0,0.0,0.0,11.078879412484625,0.0,0.0,0.0 +5053,my_reservoir,2010-11-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5054,gw1,2010-11-24,261.95288681495794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5055,gw2,2010-11-24,263.04711318504206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5056,my_sewer,2010-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5057,my_land,2010-11-25,3.272892983454541,percolation,0.0,0.0,0.00039550241546159736,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5058,my_land,2010-11-25,0.02477494293690658,subsurface_runoff,0.0,0.0,2.94635324008108e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5059,my_land,2010-11-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5060,my_groundwater,2010-11-25,16.915472735010834,tank,0.0,0.0,0.0017652972411312793,0.0,0.0,0.0,0.0,0.0,11.080350818828999,0.0,0.0,0.0 +5061,my_reservoir,2010-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5062,gw1,2010-11-25,261.95653423619154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5063,gw2,2010-11-25,263.04346576380846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5064,my_sewer,2010-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5065,my_land,2010-11-26,3.20743512378545,percolation,0.0,0.0,0.0003875923671523654,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5066,my_land,2010-11-26,0.019819954349525264,subsurface_runoff,0.0,0.0,2.3570825920648643e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5067,my_land,2010-11-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5068,my_groundwater,2010-11-26,16.938478268193226,tank,0.0,0.0,0.00176877427121691,0.0,0.0,0.0,0.0,0.0,11.08178516662078,0.0,0.0,0.0 +5069,my_reservoir,2010-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5070,gw1,2010-11-26,261.9601573412836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5071,gw2,2010-11-26,263.0398426587164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5072,my_sewer,2010-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5073,my_land,2010-11-27,3.143286421309741,percolation,0.0,0.0,0.0003798405198093181,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5074,my_land,2010-11-27,0.015855963479620212,subsurface_runoff,0.0,0.0,1.8856660736518915e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5075,my_land,2010-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5076,my_groundwater,2010-11-27,16.96012040324226,tank,0.0,0.0,0.0017720848032635574,0.0,0.0,0.0,0.0,0.0,11.083183622140984,0.0,0.0,0.0 +5077,my_reservoir,2010-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5078,gw1,2010-11-27,261.9637562923417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5079,gw2,2010-11-27,263.0362437076583,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5080,my_sewer,2010-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5081,my_land,2010-11-28,3.0804206928835463,percolation,0.0,0.0,0.0003722437094131317,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5082,my_land,2010-11-28,0.01268477078369617,subsurface_runoff,0.0,0.0,1.5085328589215132e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5083,my_land,2010-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5084,my_groundwater,2010-11-28,16.980428666339286,tank,0.0,0.0,0.0017752324096255944,0.0,0.0,0.0,0.0,0.0,11.084547304992494,0.0,0.0,0.0 +5085,my_reservoir,2010-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5086,gw1,2010-11-28,261.96733125039276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5087,gw2,2010-11-28,263.03266874960724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5088,my_sewer,2010-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5089,my_land,2010-11-29,3.0188122790258753,percolation,0.0,0.0,0.0003647988352248691,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5090,my_land,2010-11-29,0.010147816626956936,subsurface_runoff,0.0,0.0,1.2068262871372106e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5091,my_land,2010-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5092,my_groundwater,2010-11-29,16.999431987496465,tank,0.0,0.0,0.0017782205906043225,0.0,0.0,0.0,0.0,0.0,11.085877290412649,0.0,0.0,0.0 +5093,my_reservoir,2010-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5094,gw1,2010-11-29,261.97088237539015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5095,gw2,2010-11-29,263.02911762460985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5096,my_sewer,2010-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5097,my_land,2010-11-30,2.958436033445358,percolation,0.0,0.0,0.0003575028585203717,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5098,my_land,2010-11-30,0.00811825330156555,subsurface_runoff,0.0,0.0,9.654610297097686e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5099,my_land,2010-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5100,my_groundwater,2010-11-30,17.01715871249429,tank,0.0,0.0,0.001781052775890548,0.0,0.0,0.0,0.0,0.0,11.087174611449365,0.0,0.0,0.0 +5101,my_reservoir,2010-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5102,gw1,2010-11-30,261.9744098262209,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5103,gw2,2010-11-30,263.0255901737791,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5104,my_sewer,2010-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5105,my_land,2010-12-01,2.8992673127764506,percolation,0.0,0.0,0.00035035280134996426,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5106,my_land,2010-12-01,0.0064946026412524395,subsurface_runoff,0.0,0.0,7.723688237678149e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 +5107,my_land,2010-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5108,my_groundwater,2010-12-01,17.03363661458029,tank,0.0,0.0,0.0017837323259783028,0.0,0.0,0.0,0.0,0.0,11.088440261010115,0.0,0.0,0.0 +5109,my_reservoir,2010-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5110,gw1,2010-12-01,261.97791376071274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5111,gw2,2010-12-01,263.02208623928726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5112,my_sewer,2010-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 +5113,my_land,2010-12-02,2.8412819665209215,percolation,0.0,0.0,0.00034334574532296497,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 +5114,my_land,2010-12-02,0.005195682113001952,subsurface_runoff,0.0,0.0,6.17895059014252e-07,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 +5115,my_land,2010-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5116,my_groundwater,2010-12-02,17.048892905933727,tank,0.0,0.0,0.0017862625335502889,0.0,0.0,0.0,0.0,0.0,11.089675193792333,0.0,0.0,0.0 +5117,my_reservoir,2010-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5118,gw1,2010-12-02,261.9813943356413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5119,gw2,2010-12-02,263.0186056643587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5120,my_sewer,2010-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0 +5121,my_land,2010-12-03,2.784456327190503,percolation,0.0,0.0,0.00033647883041650566,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5122,my_land,2010-12-03,0.004156545690401562,subsurface_runoff,0.0,0.0,4.943160472114016e-07,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 +5123,my_land,2010-12-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5124,my_groundwater,2010-12-03,17.062954248900986,tank,0.0,0.0,0.0017886466248356063,0.0,0.0,0.0,0.0,0.0,11.09088032810318,0.0,0.0,0.0 +5125,my_reservoir,2010-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5126,gw1,2010-12-03,261.98485170673706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5127,gw2,2010-12-03,263.01514829326294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5128,my_sewer,2010-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5129,my_land,2010-12-04,2.728767200646693,percolation,0.0,0.0,0.00032974925380817554,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5130,my_land,2010-12-04,0.003325236552321249,subsurface_runoff,0.0,0.0,3.9545283776912125e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5131,my_land,2010-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5132,my_groundwater,2010-12-04,17.075846767006187,tank,0.0,0.0,0.0017908877609403265,0.0,0.0,0.0,0.0,0.0,11.092056547576025,0.0,0.0,0.0 +5133,my_reservoir,2010-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5134,gw1,2010-12-04,261.98828602869213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5135,gw2,2010-12-04,263.01171397130787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5136,my_sewer,2010-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5137,my_land,2010-12-05,2.674191856633759,percolation,0.0,0.0,0.00032315426873201204,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5138,my_land,2010-12-05,0.002660189241856999,subsurface_runoff,0.0,0.0,3.16362270215297e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5139,my_land,2010-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5140,my_groundwater,2010-12-05,17.087596055741574,tank,0.0,0.0,0.0017929890391514488,0.0,0.0,0.0,0.0,0.0,11.093204702790372,0.0,0.0,0.0 +5141,my_reservoir,2010-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5142,gw1,2010-12-05,261.9916974551675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5143,gw2,2010-12-05,263.0083025448325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5144,my_sewer,2010-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5145,my_land,2010-12-06,2.620708019501084,percolation,0.0,0.0,0.0003166911833573718,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5146,my_land,2010-12-06,0.002128151393485599,subsurface_runoff,0.0,0.0,2.530898161722376e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5147,my_land,2010-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5148,my_groundwater,2010-12-06,17.098227193142062,tank,0.0,0.0,0.0017949534942147739,0.0,0.0,0.0,0.0,0.0,11.094325612801581,0.0,0.0,0.0 +5149,my_reservoir,2010-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5150,gw1,2010-12-06,261.99508613879976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5151,gw2,2010-12-06,263.00491386120024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5152,my_sewer,2010-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5153,my_land,2010-12-07,2.568293859111062,percolation,0.0,0.0,0.00031035735969022437,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5154,my_land,2010-12-07,0.0017025211147884793,subsurface_runoff,0.0,0.0,2.0247185293779007e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5155,my_land,2010-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5156,my_groundwater,2010-12-07,17.107764750148252,tank,0.0,0.0,0.0017967840995872163,0.0,0.0,0.0,0.0,0.0,11.09542006658612,0.0,0.0,0.0 +5157,my_reservoir,2010-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5158,gw1,2010-12-07,261.99845223120775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5159,gw2,2010-12-07,263.00154776879225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5160,my_sewer,2010-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5161,my_land,2010-12-08,2.516927981928841,percolation,0.0,0.0,0.00030415021249641987,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5162,my_land,2010-12-08,0.0013620168918307834,subsurface_runoff,0.0,0.0,1.6197748235023205e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5163,my_land,2010-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5164,my_groundwater,2010-12-08,17.11623280076215,tank,0.0,0.0,0.0017984837686640684,0.0,0.0,0.0,0.0,0.0,11.096488824407801,0.0,0.0,0.0 +5165,my_reservoir,2010-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5166,gw1,2010-12-08,262.0017958829997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5167,gw2,2010-12-08,262.9982041170003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5168,my_sewer,2010-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5169,my_land,2010-12-09,2.466589422290264,percolation,0.0,0.0,0.00029806720824649145,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5170,my_land,2010-12-09,0.0010896135134646268,subsurface_runoff,0.0,0.0,1.2958198588018563e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5171,my_land,2010-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5172,my_groundwater,2010-12-09,17.12365493199972,tank,0.0,0.0,0.0018000553559817118,0.0,0.0,0.0,0.0,0.0,11.097532619109975,0.0,0.0,0.0 +5173,my_reservoir,2010-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5174,gw1,2010-12-09,262.0051172437797,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5175,gw2,2010-12-09,262.9948827562203,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5176,my_sewer,2010-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5177,my_land,2010-12-10,2.417257633844459,percolation,0.0,0.0,0.00029210586408156164,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5178,my_land,2010-12-10,0.0008716908107717015,subsurface_runoff,0.0,0.0,1.036655887041485e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5179,my_land,2010-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5180,my_groundwater,2010-12-10,17.13005425364441,tank,0.0,0.0,0.001801501658396275,0.0,0.0,0.0,0.0,0.0,11.098552157338313,0.0,0.0,0.0 +5181,my_reservoir,2010-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5182,gw1,2010-12-10,262.0084164621545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5183,gw2,2010-12-10,262.9915835378455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5184,my_sewer,2010-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5185,my_land,2010-12-11,2.3689124811675697,percolation,0.0,0.0,0.0002862637467999304,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5186,my_land,2010-12-11,0.0006973526486173611,subsurface_runoff,0.0,0.0,8.293247096331881e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5187,my_land,2010-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5188,my_groundwater,2010-12-11,17.135453407805493,tank,0.0,0.0,0.0018028254162387116,0.0,0.0,0.0,0.0,0.0,11.099548120698527,0.0,0.0,0.0 +5189,my_reservoir,2010-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5190,gw1,2010-12-11,262.01169368574017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5191,gw2,2010-12-11,262.98830631425983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5192,my_sewer,2010-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5193,my_land,2010-12-12,2.3215342315442182,percolation,0.0,0.0,0.0002805384718639318,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5194,my_land,2010-12-12,0.0005578821188938889,subsurface_runoff,0.0,0.0,6.634597677065504e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5195,my_land,2010-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5196,my_groundwater,2010-12-12,17.13987457828527,tank,0.0,0.0,0.0018040293144467735,0.0,0.0,0.0,0.0,0.0,11.100521166853,0.0,0.0,0.0 +5197,my_reservoir,2010-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5198,gw1,2010-12-12,262.0149490611686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5199,gw2,2010-12-12,262.9850509388314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5200,my_sewer,2010-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5201,my_land,2010-12-13,2.275103546913334,percolation,0.0,0.0,0.0002749277024266532,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5202,my_land,2010-12-13,0.0004463056951151111,subsurface_runoff,0.0,0.0,5.307678141652404e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5203,my_land,2010-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5204,my_groundwater,2010-12-13,17.143339499758863,tank,0.0,0.0,0.001805115983674342,0.0,0.0,0.0,0.0,0.0,11.101471930560075,0.0,0.0,0.0 +5205,my_reservoir,2010-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5206,gw1,2010-12-13,262.0181827340941,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5207,gw2,2010-12-13,262.9818172659059,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5208,my_sewer,2010-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5209,my_land,2010-12-14,2.229601475975067,percolation,0.0,0.0,0.00026942914837812013,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5210,my_land,2010-12-14,0.00035704455609208887,subsurface_runoff,0.0,0.0,4.246142513321923e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5211,my_land,2010-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5212,my_groundwater,2010-12-14,17.145869466770385,tank,0.0,0.0,0.0018060880013785678,0.0,0.0,0.0,0.0,0.0,11.102401024659484,0.0,0.0,0.0 +5213,my_reservoir,2010-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5214,gw1,2010-12-14,262.0213948492002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5215,gw2,2010-12-14,262.9786051507998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5216,my_sewer,2010-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 +5217,my_land,2010-12-15,2.185009446455566,percolation,0.0,0.0,0.00026404056541055773,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5218,my_land,2010-12-15,0.0002856356448736711,subsurface_runoff,0.0,0.0,3.396914010657538e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5219,my_land,2010-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5220,my_groundwater,2010-12-15,17.147485342549164,tank,0.0,0.0,0.0018069478928852648,0.0,0.0,0.0,0.0,0.0,11.103309041007114,0.0,0.0,0.0 +5221,my_reservoir,2010-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5222,gw1,2010-12-15,262.02458555020553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5223,gw2,2010-12-15,262.97541444979447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5224,my_sewer,2010-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0 +5225,my_land,2010-12-16,2.1413092575264545,percolation,0.0,0.0,0.00025875975410234655,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5226,my_land,2010-12-16,0.00022850851589893687,subsurface_runoff,0.0,0.0,2.7175312085260305e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5227,my_land,2010-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5228,my_groundwater,2010-12-16,17.148207567649578,tank,0.0,0.0,0.0018076981324329923,0.0,0.0,0.0,0.0,0.0,11.104196551362161,0.0,0.0,0.0 +5229,my_reservoir,2010-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5230,gw1,2010-12-16,262.02775497987085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5231,gw2,2010-12-16,262.97224502012915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5232,my_sewer,2010-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0 +5233,my_land,2010-12-17,2.0984830723759256,percolation,0.0,0.0,0.0002535845590202996,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5234,my_land,2010-12-17,0.0001828068127191495,subsurface_runoff,0.0,0.0,2.1740249668208243e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5235,my_land,2010-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5236,my_groundwater,2010-12-17,17.148056168418105,tank,0.0,0.0,0.0018083411441962515,0.0,0.0,0.0,0.0,0.0,11.105064108229477,0.0,0.0,0.0 +5237,my_reservoir,2010-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5238,gw1,2010-12-17,262.030903280005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5239,gw2,2010-12-17,262.969096719995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5240,my_sewer,2010-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5241,my_land,2010-12-18,2.056513410928407,percolation,0.0,0.0,0.00024851286783989364,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5242,my_land,2010-12-18,0.0001462454501753196,subsurface_runoff,0.0,0.0,1.7392199734566594e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5243,my_land,2010-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5244,my_groundwater,2010-12-18,17.147050765290956,tank,0.0,0.0,0.001808879303288216,0.0,0.0,0.0,0.0,0.0,11.105912245659695,0.0,0.0,0.0 +5245,my_reservoir,2010-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5246,gw1,2010-12-18,262.03403059147166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5247,gw2,2010-12-18,262.96596940852834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5248,my_sewer,2010-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5249,my_land,2010-12-19,2.015383142709839,percolation,0.0,0.0,0.00024354261048309576,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5250,my_land,2010-12-19,0.00011699636014025569,subsurface_runoff,0.0,0.0,1.3913759787653275e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5251,my_land,2010-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5252,my_groundwater,2010-12-19,17.145210580925752,tank,0.0,0.0,0.0018093149367434014,0.0,0.0,0.0,0.0,0.0,11.106741480009639,0.0,0.0,0.0 +5253,my_reservoir,2010-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5254,gw1,2010-12-19,262.03713705419517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5255,gw2,2010-12-19,262.96286294580483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5256,my_sewer,2010-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5257,my_land,2010-12-20,1.9750754798556422,percolation,0.0,0.0,0.00023867175827343385,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5258,my_land,2010-12-20,9.359708811220455e-05,subsurface_runoff,0.0,0.0,1.113100783012262e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5259,my_land,2010-12-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5260,my_groundwater,2010-12-20,17.1425544481705,tank,0.0,0.0,0.0018096503244806807,0.0,0.0,0.0,0.0,0.0,11.107552310665268,0.0,0.0,0.0 +5261,my_reservoir,2010-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5262,gw1,2010-12-20,262.0402228071672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5263,gw2,2010-12-20,262.9597771928328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5264,my_sewer,2010-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5265,my_land,2010-12-21,1.9355739702585295,percolation,0.0,0.0,0.00023389832310796518,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5266,my_land,2010-12-21,7.487767048976364e-05,subsurface_runoff,0.0,0.0,8.904806264098097e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5267,my_land,2010-12-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5268,my_groundwater,2010-12-21,17.139100817873192,tank,0.0,0.0,0.001809887700247034,0.0,0.0,0.0,0.0,0.0,11.108345220729289,0.0,0.0,0.0 +5269,my_reservoir,2010-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5270,gw1,2010-12-21,262.04328798845273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5271,gw2,2010-12-21,262.95671201154727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5272,my_sewer,2010-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5273,my_land,2010-12-22,1.896862490853359,percolation,0.0,0.0,0.00022922035664580588,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5274,my_land,2010-12-22,5.9902136391810914e-05,subsurface_runoff,0.0,0.0,7.123845011278478e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5275,my_land,2010-12-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5276,my_groundwater,2010-12-22,17.134867766535166,tank,0.0,0.0,0.0018100292525424202,0.0,0.0,0.0,0.0,0.0,11.109120677675469,0.0,0.0,0.0 +5277,my_reservoir,2010-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5278,gw1,2010-12-22,262.04633273519636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5279,gw2,2010-12-22,262.95366726480364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5280,my_sewer,2010-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5281,my_land,2010-12-23,1.8589252410362918,percolation,0.0,0.0,0.00022463594951288978,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5282,my_land,2010-12-23,4.792170911344873e-05,subsurface_runoff,0.0,0.0,5.699076009022782e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5283,my_land,2010-12-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5284,my_groundwater,2010-12-23,17.12987300381135,tank,0.0,0.0,0.001810077125526148,0.0,0.0,0.0,0.0,0.0,11.109879133971482,0.0,0.0,0.0 +5285,my_reservoir,2010-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5286,gw1,2010-12-23,262.0493571836284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5287,gw2,2010-12-23,262.9506428163716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5288,my_sewer,2010-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5289,my_land,2010-12-24,1.821746736215566,percolation,0.0,0.0,0.00022014323052263197,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5290,my_land,2010-12-24,3.833736729075899e-05,subsurface_runoff,0.0,0.0,4.559260807218226e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5291,my_land,2010-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5292,my_groundwater,2010-12-24,17.124133879860498,tank,0.0,0.0,0.0018100334199051148,0.0,0.0,0.0,0.0,0.0,11.110621027672082,0.0,0.0,0.0 +5293,my_reservoir,2010-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5294,gw1,2010-12-24,262.0523614690709,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5295,gw2,2010-12-24,262.9476385309291,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5296,my_sewer,2010-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5297,my_land,2010-12-25,1.7853118014912546,percolation,0.0,0.0,0.00021574036591217935,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5298,my_land,2010-12-25,3.066989383260719e-05,subsurface_runoff,0.0,0.0,3.647408645774581e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5299,my_land,2010-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5300,my_groundwater,2010-12-25,17.11766739254835,tank,0.0,0.0,0.0018099001938042785,0.0,0.0,0.0,0.0,0.0,11.111346782984198,0.0,0.0,0.0 +5301,my_reservoir,2010-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5302,gw1,2010-12-25,262.05534572594377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5303,gw2,2010-12-25,262.94465427405623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5304,my_sewer,2010-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 +5305,my_land,2010-12-26,1.7496055654614295,percolation,0.0,0.0,0.00021142555859393576,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5306,my_land,2010-12-26,2.453591506608575e-05,subsurface_runoff,0.0,0.0,2.917926916619665e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5307,my_land,2010-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5308,my_groundwater,2010-12-26,17.110490194506728,tank,0.0,0.0,0.0018096794636197158,0.0,0.0,0.0,0.0,0.0,11.112056810805537,0.0,0.0,0.0 +5309,my_reservoir,2010-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5310,gw1,2010-12-26,262.0583100877708,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5311,gw2,2010-12-26,262.9416899122292,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5312,my_sewer,2010-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5313,my_land,2010-12-27,1.714613454152201,percolation,0.0,0.0,0.00020719704742205703,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5314,my_land,2010-12-27,1.96287320528686e-05,subsurface_runoff,0.0,0.0,2.334341533295732e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5315,my_land,2010-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5316,my_groundwater,2010-12-27,17.102618600051418,tank,0.0,0.0,0.0018093732048546154,0.0,0.0,0.0,0.0,0.0,11.112751509238104,0.0,0.0,0.0 +5317,my_reservoir,2010-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5318,gw1,2010-12-27,262.0612546871857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5319,gw2,2010-12-27,262.9387453128143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5320,my_sewer,2010-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5321,my_land,2010-12-28,1.6803211850691568,percolation,0.0,0.0,0.0002030531064736159,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5322,my_land,2010-12-28,1.570298564229488e-05,subsurface_runoff,0.0,0.0,1.8674732266365857e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5323,my_land,2010-12-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5324,my_groundwater,2010-12-28,17.094068591961623,tank,0.0,0.0,0.001808983352938549,0.0,0.0,0.0,0.0,0.0,11.113431264078002,0.0,0.0,0.0 +5325,my_reservoir,2010-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5326,gw1,2010-12-28,262.0641796559378,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5327,gw2,2010-12-28,262.9358203440622,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5328,my_sewer,2010-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5329,my_land,2010-12-29,1.6467147613677737,percolation,0.0,0.0,0.00019899204434414356,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5330,my_land,2010-12-29,1.2562388513835904e-05,subsurface_runoff,0.0,0.0,1.4939785813092686e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5331,my_land,2010-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5332,my_groundwater,2010-12-29,17.084855828123846,tank,0.0,0.0,0.001808511804030351,0.0,0.0,0.0,0.0,0.0,11.114096449282796,0.0,0.0,0.0 +5333,my_reservoir,2010-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5334,gw1,2010-12-29,262.0670851248982,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5335,gw2,2010-12-29,262.9329148751018,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5336,my_sewer,2010-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5337,my_land,2010-12-30,1.6137804661404183,percolation,0.0,0.0,0.0001950122034572607,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5338,my_land,2010-12-30,1.0049910811068724e-05,subsurface_runoff,0.0,0.0,1.1951828650474149e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5339,my_land,2010-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5340,my_groundwater,2010-12-30,17.074995648042826,tank,0.0,0.0,0.0018079604158049408,0.0,0.0,0.0,0.0,0.0,11.114747427417617,0.0,0.0,0.0 +5341,my_reservoir,2010-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5342,gw1,2010-12-30,262.06997122406557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5343,gw2,2010-12-30,262.93002877593443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5344,my_sewer,2010-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5345,my_land,2010-12-31,1.58150485681761,percolation,0.0,0.0,0.00019111195938811547,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +5346,my_land,2010-12-31,8.039928648854979e-06,subsurface_runoff,0.0,0.0,9.56146292037932e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5347,my_land,2010-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5348,my_groundwater,2010-12-31,17.06450307922222,tank,0.0,0.0,0.0018073310082244007,0.0,0.0,0.0,0.0,0.0,11.115384550081139,0.0,0.0,0.0 +5349,my_reservoir,2010-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5350,gw1,2010-12-31,262.0728380825718,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5351,gw2,2010-12-31,262.9271619174282,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5352,my_sewer,2011-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5353,my_land,2011-01-01,1.5498747596812579,percolation,0.0,0.0,0.00018728972020035315,0.0,0.0,0.0,0.0,0.0,11.452446093926794,0.0,0.0,0.0 +5354,my_land,2011-01-01,6.431942919083983e-06,subsurface_runoff,0.0,0.0,7.649170336303456e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5355,my_land,2011-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5356,my_groundwater,2011-01-01,17.053392843417676,tank,0.0,0.0,0.0018066253642936327,0.0,0.0,0.0,0.0,0.0,11.116008158312473,0.0,0.0,0.0 +5357,my_reservoir,2011-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5358,gw1,2011-01-01,262.075685828688,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5359,gw2,2011-01-01,262.924314171312,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5360,my_sewer,2011-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5361,my_land,2011-01-02,1.5188772644876327,percolation,0.0,0.0,0.0001835439257963461,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +5362,my_land,2011-01-02,5.145554335267187e-06,subsurface_runoff,0.0,0.0,6.119336269042765e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5363,my_land,2011-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5364,my_groundwater,2011-01-02,17.04167936276477,tank,0.0,0.0,0.0018058452308008957,0.0,0.0,0.0,0.0,0.0,11.11661858297999,0.0,0.0,0.0 +5365,my_reservoir,2011-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5366,gw1,2011-01-02,262.0785145898301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5367,gw2,2011-01-02,262.9214854101699,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5368,my_sewer,2011-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5369,my_land,2011-01-03,1.4884997191978802,percolation,0.0,0.0,0.00017987304728041918,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +5370,my_land,2011-01-03,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 +5371,my_land,2011-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5372,my_groundwater,2011-01-03,17.029376765784388,tank,0.0,0.0,0.0018049923190435306,0.0,0.0,0.0,0.0,0.0,11.117216145152977,0.0,0.0,0.0 +5373,my_reservoir,2011-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5374,gw1,2011-01-03,262.08132449256453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5375,gw2,2011-01-03,262.91867550743547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5376,my_sewer,2011-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5377,my_land,2011-01-04,1.4587297248139226,percolation,0.0,0.0,0.0001762755863348108,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 +5378,my_land,2011-01-04,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5379,my_land,2011-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5380,my_groundwater,2011-01-04,17.016498893267926,tank,0.0,0.0,0.0018040683055391663,0.0,0.0,0.0,0.0,0.0,11.117801156457038,0.0,0.0,0.0 +5381,my_reservoir,2011-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5382,gw1,2011-01-04,262.0841156626141,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5383,gw2,2011-01-04,262.9158843373859,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5384,my_sewer,2011-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 +5385,my_land,2011-01-05,1.4295551303176441,percolation,0.0,0.0,0.00017275007460811458,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5386,my_land,2011-01-05,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5387,my_land,2011-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5388,my_groundwater,2011-01-05,17.003059304044793,tank,0.0,0.0,0.0018030748327226979,0.0,0.0,0.0,0.0,0.0,11.118373919414037,0.0,0.0,0.0 +5389,my_reservoir,2011-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5390,gw1,2011-01-05,262.08688822486334,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5391,gw2,2011-01-05,262.91311177513666,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5392,my_sewer,2011-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0 +5393,my_land,2011-01-06,1.4009640277112914,percolation,0.0,0.0,0.00016929507311595228,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 +5394,my_land,2011-01-06,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 +5395,my_land,2011-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 +5396,my_groundwater,2011-01-06,16.98907128063452,tank,0.0,0.0,0.001802013509629323,0.0,0.0,0.0,0.0,0.0,11.11893472776739,0.0,0.0,0.0 +5397,my_reservoir,2011-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5398,gw1,2011-01-06,262.08964230336426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5399,gw2,2011-01-06,262.91035769663574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5400,my_sewer,2011-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +5401,my_land,2011-01-07,1.4890016592108484,percolation,0.0,0.0,0.00018339711350623506,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 +5402,my_land,2011-01-07,0.03158340527825288,subsurface_runoff,0.0,0.0,4.759015270882254e-06,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 +5403,my_land,2011-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4,0.0,0.0,0.0 +5404,my_groundwater,2011-01-07,16.97691042192401,tank,0.0,0.0,0.0018012419170944838,0.0,0.0,0.0,0.0,0.0,11.118620131524594,0.0,0.0,0.0 +5405,my_reservoir,2011-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5406,gw1,2011-01-07,262.0923780213418,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5407,gw2,2011-01-07,262.9076219786582,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5408,my_sewer,2011-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +5409,my_land,2011-01-08,1.4592216260266313,percolation,0.0,0.0,0.00017972917123611036,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 +5410,my_land,2011-01-08,0.025266724222602305,subsurface_runoff,0.0,0.0,3.807212216705803e-06,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 +5411,my_land,2011-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4,0.0,0.0,0.0 +5412,my_groundwater,2011-01-08,16.964173728970458,tank,0.0,0.0,0.001800397584716197,0.0,0.0,0.0,0.0,0.0,11.118312146614338,0.0,0.0,0.0 +5413,my_reservoir,2011-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5414,gw1,2011-01-08,262.0950955011995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5415,gw2,2011-01-08,262.9049044988005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5416,my_sewer,2011-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 +5417,my_land,2011-01-09,1.4300371935060987,percolation,0.0,0.0,0.00017613458781138815,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 +5418,my_land,2011-01-09,0.020213379378081844,subsurface_runoff,0.0,0.0,3.0457697733646422e-06,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 +5419,my_land,2011-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.95,0.0,0.0,0.0 +5420,my_groundwater,2011-01-09,16.950874766087264,tank,0.0,0.0,0.0017994821877205668,0.0,0.0,0.0,0.0,0.0,11.118010613536566,0.0,0.0,0.0 +5421,my_reservoir,2011-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5422,gw1,2011-01-09,262.0977948645249,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5423,gw2,2011-01-09,262.9022051354751,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5424,my_sewer,2011-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +5425,my_land,2011-01-10,1.6086852906207683,percolation,0.0,0.0,0.0002033381466242339,0.0,0.0,0.0,0.0,0.0,10.25712617259147,0.0,0.0,0.0 +5426,my_land,2011-01-10,0.0725649459473067,subsurface_runoff,0.0,0.0,1.0797500327283144e-05,0.0,0.0,0.0,0.0,0.0,5.46324018463097,0.0,0.0,0.0 +5427,my_land,2011-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 +5428,my_groundwater,2011-01-10,16.941245815445395,tank,0.0,0.0,0.0017991228659504017,0.0,0.0,0.0,0.0,0.0,11.116346482847286,0.0,0.0,0.0 +5429,my_reservoir,2011-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5430,gw1,2011-01-10,262.1004762320947,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5431,gw2,2011-01-10,262.8995237679053,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5432,my_sewer,2011-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0 +5433,my_land,2011-01-11,1.9255660480294825,percolation,0.0,0.0,0.00024942903362562275,0.0,0.0,0.0,0.0,0.0,9.459751678356323,0.0,0.0,0.0 +5434,my_land,2011-01-11,0.15303276307652008,subsurface_runoff,0.0,0.0,2.228634037988734e-05,0.0,0.0,0.0,0.0,0.0,5.708494760950144,0.0,0.0,0.0 +5435,my_land,2011-01-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.499999999999999,0.0,0.0,0.0 +5436,my_groundwater,2011-01-11,16.93809172402738,tank,0.0,0.0,0.0017997027212557617,0.0,0.0,0.0,0.0,0.0,11.112512703983603,0.0,0.0,0.0 +5437,my_reservoir,2011-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5438,gw1,2011-01-11,262.10313972388076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5439,gw2,2011-01-11,262.89686027611924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5440,my_sewer,2011-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0 +5441,my_land,2011-01-12,2.418083408464171,percolation,0.0,0.0,0.00031718298945727675,0.0,0.0,0.0,0.0,0.0,8.71905448134368,0.0,0.0,0.0 +5442,my_land,2011-01-12,0.2669238108408837,subsurface_runoff,0.0,0.0,3.762295978803681e-05,0.0,0.0,0.0,0.0,0.0,5.913355798665158,0.0,0.0,0.0 +5443,my_land,2011-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.707142857,0.0,0.0,0.0 +5444,my_groundwater,2011-01-12,16.944971764103904,tank,0.0,0.0,0.0018016604038808596,0.0,0.0,0.0,0.0,0.0,11.105559689991297,0.0,0.0,0.0 +5445,my_reservoir,2011-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5446,gw1,2011-01-12,262.1057854590549,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5447,gw2,2011-01-12,262.8942145409451,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5448,my_sewer,2011-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +5449,my_land,2011-01-13,2.7004532915477713,percolation,0.0,0.0,0.0003551042021405161,0.0,0.0,0.0,0.0,0.0,8.420444500933675,0.0,0.0,0.0 +5450,my_land,2011-01-13,0.30353402860546436,subsurface_runoff,0.0,0.0,4.214323108822126e-05,0.0,0.0,0.0,0.0,0.0,6.022322297327348,0.0,0.0,0.0 +5451,my_land,2011-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.914285714,0.0,0.0,0.0 +5452,my_groundwater,2011-01-13,16.957582848128723,tank,0.0,0.0,0.0018043851598433037,0.0,0.0,0.0,0.0,0.0,11.096855016852302,0.0,0.0,0.0 +5453,my_reservoir,2011-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5454,gw1,2011-01-13,262.10841355599456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5455,gw2,2011-01-13,262.89158644400544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5456,my_sewer,2011-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +5457,my_land,2011-01-14,2.715947670572316,percolation,0.0,0.0,0.00035733949666546903,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 +5458,my_land,2011-01-14,0.2617397248858681,subsurface_runoff,0.0,0.0,3.6255368154322116e-05,0.0,0.0,0.0,0.0,0.0,6.054705667010085,0.0,0.0,0.0 +5459,my_land,2011-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.121428571,0.0,0.0,0.0 +5460,my_groundwater,2011-01-14,16.970477825730764,tank,0.0,0.0,0.0018071486081258138,0.0,0.0,0.0,0.0,0.0,11.087972835755744,0.0,0.0,0.0 +5461,my_reservoir,2011-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5462,gw1,2011-01-14,262.1110241322879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5463,gw2,2011-01-14,262.8889758677121,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5464,my_sewer,2011-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 +5465,my_land,2011-01-15,2.6616287171608697,percolation,0.0,0.0,0.00035019270673215965,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 +5466,my_land,2011-01-15,0.20939177990869448,subsurface_runoff,0.0,0.0,2.9004294523457694e-05,0.0,0.0,0.0,0.0,0.0,6.054705667010085,0.0,0.0,0.0 +5467,my_land,2011-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.328571429,0.0,0.0,0.0 +5468,my_groundwater,2011-01-15,16.982234787194354,tank,0.0,0.0,0.0018097596595639752,0.0,0.0,0.0,0.0,0.0,11.079302663812108,0.0,0.0,0.0 +5469,my_reservoir,2011-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5470,gw1,2011-01-15,262.11361730473936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5471,gw2,2011-01-15,262.88638269526064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5472,my_sewer,2011-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 +5473,my_land,2011-01-16,2.938502221472754,percolation,0.0,0.0,0.0003867523480083621,0.0,0.0,0.0,0.0,0.0,8.196212197381252,0.0,0.0,0.0 +5474,my_land,2011-01-16,0.2573382072344662,subsurface_runoff,0.0,0.0,3.5057447975458845e-05,0.0,0.0,0.0,0.0,0.0,6.321380456137064,0.0,0.0,0.0 +5475,my_land,2011-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 +5476,my_groundwater,2011-01-16,16.99959870973492,tank,0.0,0.0,0.001813108433213807,0.0,0.0,0.0,0.0,0.0,11.069157420944,0.0,0.0,0.0 +5477,my_reservoir,2011-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5478,gw1,2011-01-16,262.1161931893744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5479,gw2,2011-01-16,262.8838068106256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5480,my_sewer,2011-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5481,my_land,2011-01-17,3.242504402068453,percolation,0.0,0.0,0.0004255417069683385,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5482,my_land,2011-01-17,0.30458409640666256,subsurface_runoff,0.0,0.0,4.070566067156262e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +5483,my_land,2011-01-17,3.530113127748304e-18,surface_runoff,0.0,0.0,4.309220126645879e-22,0.0,0.0,0.0,0.0,0.0,6.591504128355541,0.0,0.0,0.0 +5484,my_groundwater,2011-01-17,17.023107838288404,tank,0.0,0.0,0.0018172384754511993,0.0,0.0,0.0,0.0,0.0,11.057496523358662,0.0,0.0,0.0 +5485,my_reservoir,2011-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5486,gw1,2011-01-17,262.11875190144525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5487,gw2,2011-01-17,262.88124809855475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5488,my_sewer,2011-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5489,my_land,2011-01-18,3.177654314027084,percolation,0.0,0.0,0.00041703087282897173,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5490,my_land,2011-01-18,0.24366727712533004,subsurface_runoff,0.0,0.0,3.2564528537250094e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +5491,my_land,2011-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.591504128355541,0.0,0.0,0.0 +5492,my_groundwater,2011-01-18,17.045238031513946,tank,0.0,0.0,0.0018211849363165896,0.0,0.0,0.0,0.0,0.0,11.046127934508393,0.0,0.0,0.0 +5493,my_reservoir,2011-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5494,gw1,2011-01-18,262.1212935554356,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5495,gw2,2011-01-18,262.8787064445644,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5496,my_sewer,2011-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5497,my_land,2011-01-19,3.1141012277465423,percolation,0.0,0.0,0.0004086902553723923,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5498,my_land,2011-01-19,0.19493382170026402,subsurface_runoff,0.0,0.0,2.6051622829800075e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +5499,my_land,2011-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8,0.0,0.0,0.0 +5500,my_groundwater,2011-01-19,17.06601914,tank,0.0,0.0,0.0018249517398887362,0.0,0.0,0.0,0.0,0.0,11.035042514248005,0.0,0.0,0.0 +5501,my_reservoir,2011-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5502,gw1,2011-01-19,262.12381826506606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5503,gw2,2011-01-19,262.87618173493394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5504,my_sewer,2011-01-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5505,my_land,2011-01-20,3.0518192031916116,percolation,0.0,0.0,0.0004005164502649445,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5506,my_land,2011-01-20,0.15594705736021122,subsurface_runoff,0.0,0.0,2.084129826384006e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +5507,my_land,2011-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8,0.0,0.0,0.0 +5508,my_groundwater,2011-01-20,17.085480411643545,tank,0.0,0.0,0.0018285427311336938,0.0,0.0,0.0,0.0,0.0,11.02423148560609,0.0,0.0,0.0 +5509,my_reservoir,2011-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5510,gw1,2011-01-20,262.12632614329897,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5511,gw2,2011-01-20,262.87367385670103,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5512,my_sewer,2011-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5513,my_land,2011-01-21,2.990782819127779,percolation,0.0,0.0,0.0003925061212596456,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5514,my_land,2011-01-21,0.12475764588816898,subsurface_runoff,0.0,0.0,1.667303861107205e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 +5515,my_land,2011-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8,0.0,0.0,0.0 +5516,my_groundwater,2011-01-21,17.103650503718107,tank,0.0,0.0,0.001831961677488645,0.0,0.0,0.0,0.0,0.0,11.01368641692271,0.0,0.0,0.0 +5517,my_reservoir,2011-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5518,gw1,2011-01-21,262.12881730234363,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5519,gw2,2011-01-21,262.87118269765637,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5520,my_sewer,2011-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5521,my_land,2011-01-22,2.930967162745224,percolation,0.0,0.0,0.00038465599883445267,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5522,my_land,2011-01-22,0.09980611671053519,subsurface_runoff,0.0,0.0,1.333843088885764e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 +5523,my_land,2011-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0 +5524,my_groundwater,2011-01-22,17.12055749470041,tank,0.0,0.0,0.0018352122704140533,0.0,0.0,0.0,0.0,0.0,11.003399205033588,0.0,0.0,0.0 +5525,my_reservoir,2011-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5526,gw1,2011-01-22,262.13129185366137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5527,gw2,2011-01-22,262.86870814633863,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5528,my_sewer,2011-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5529,my_land,2011-01-23,2.8723478194903196,percolation,0.0,0.0,0.00037696287885776364,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5530,my_land,2011-01-23,0.07984489336842815,subsurface_runoff,0.0,0.0,1.0670744711086112e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +5531,my_land,2011-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0 +5532,my_groundwater,2011-01-23,17.136228895860427,tank,0.0,0.0,0.0018382981269147653,0.0,0.0,0.0,0.0,0.0,10.993362059429959,0.0,0.0,0.0 +5533,my_reservoir,2011-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5534,gw1,2011-01-23,262.1337499079703,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5535,gw2,2011-01-23,262.8662500920297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5536,my_sewer,2011-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5537,my_land,2011-01-24,2.814900863100513,percolation,0.0,0.0,0.00036942362128060836,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 +5538,my_land,2011-01-24,0.06387591469474252,subsurface_runoff,0.0,0.0,8.53659576886889e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 +5539,my_land,2011-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0 +5540,my_groundwater,2011-01-24,17.150691662619607,tank,0.0,0.0,0.0018412227910306908,0.0,0.0,0.0,0.0,0.0,10.983567487328624,0.0,0.0,0.0 +5541,my_reservoir,2011-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5542,gw1,2011-01-24,262.1361915752505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5543,gw2,2011-01-24,262.8638084247495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5544,my_sewer,2011-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5545,my_land,2011-01-25,2.775584386205893,percolation,0.0,0.0,0.0003643906596853383,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5546,my_land,2011-01-25,0.05572155906664851,subsurface_runoff,0.0,0.0,7.470231943079348e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5547,my_land,2011-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9,0.0,0.0,0.0 +5548,my_groundwater,2011-01-25,17.164317901325106,tank,0.0,0.0,0.0018440376867681371,0.0,0.0,0.0,0.0,0.0,10.97392077609062,0.0,0.0,0.0 +5549,my_reservoir,2011-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5550,gw1,2011-01-25,262.13861696474885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5551,gw2,2011-01-25,262.86138303525115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5552,my_sewer,2011-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5553,my_land,2011-01-26,2.720072698481775,percolation,0.0,0.0,0.0003571028464916315,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5554,my_land,2011-01-26,0.04457724725331881,subsurface_runoff,0.0,0.0,5.976185554463478e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5555,my_land,2011-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5556,my_groundwater,2011-01-26,17.1767800150766,tank,0.0,0.0,0.0018466971862119393,0.0,0.0,0.0,0.0,0.0,10.96450495616262,0.0,0.0,0.0 +5557,my_reservoir,2011-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5558,gw1,2011-01-26,262.14102618498384,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5559,gw2,2011-01-26,262.85897381501616,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5560,my_sewer,2011-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5561,my_land,2011-01-27,2.6656712445121395,percolation,0.0,0.0,0.0003499607895617989,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5562,my_land,2011-01-27,0.03566179780265505,subsurface_runoff,0.0,0.0,4.780948443570782e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5563,my_land,2011-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5564,my_groundwater,2011-01-27,17.18810351537362,tank,0.0,0.0,0.0018492046450339177,0.0,0.0,0.0,0.0,0.0,10.955313258872483,0.0,0.0,0.0 +5565,my_reservoir,2011-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5566,gw1,2011-01-27,262.1434193437506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5567,gw2,2011-01-27,262.8565806562494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5568,my_sewer,2011-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5569,my_land,2011-01-28,2.612357819621897,percolation,0.0,0.0,0.0003429615737705629,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5570,my_land,2011-01-28,0.02852943824212404,subsurface_runoff,0.0,0.0,3.824758754856626e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5571,my_land,2011-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5572,my_groundwater,2011-01-28,17.1983133979132,tank,0.0,0.0,0.0018515633511730907,0.0,0.0,0.0,0.0,0.0,10.94633916540861,0.0,0.0,0.0 +5573,my_reservoir,2011-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5574,gw1,2011-01-28,262.14579654812565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5575,gw2,2011-01-28,262.85420345187435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5576,my_sewer,2011-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5577,my_land,2011-01-29,2.560110663229459,percolation,0.0,0.0,0.0003361023422951516,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5578,my_land,2011-01-29,0.022823550593699234,subsurface_runoff,0.0,0.0,3.0598070038853006e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5579,my_land,2011-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5580,my_groundwater,2011-01-29,17.207434152919873,tank,0.0,0.0,0.0018537765261918806,0.0,0.0,0.0,0.0,0.0,10.937576395411106,0.0,0.0,0.0 +5581,my_reservoir,2011-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5582,gw1,2011-01-29,262.1481579044715,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5583,gw2,2011-01-29,262.8518420955285,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5584,my_sewer,2011-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5585,my_land,2011-01-30,2.5089084499648697,percolation,0.0,0.0,0.00032938029544924856,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5586,my_land,2011-01-30,0.018258840474959386,subsurface_runoff,0.0,0.0,2.4478456031082407e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5587,my_land,2011-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5588,my_groundwater,2011-01-30,17.215489775269,tank,0.0,0.0,0.0018558473266051892,0.0,0.0,0.0,0.0,0.0,10.929018896184386,0.0,0.0,0.0 +5589,my_reservoir,2011-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5590,gw1,2011-01-30,262.15050351844167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5591,gw2,2011-01-30,262.84949648155833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5592,my_sewer,2011-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5593,my_land,2011-01-31,2.4587302809655722,percolation,0.0,0.0,0.00032279268954026356,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5594,my_land,2011-01-31,0.01460707237996751,subsurface_runoff,0.0,0.0,1.9582764824865925e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5595,my_land,2011-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5596,my_groundwater,2011-01-31,17.222503774407627,tank,0.0,0.0,0.0018577788451828888,0.0,0.0,0.0,0.0,0.0,10.920660832492084,0.0,0.0,0.0 +5597,my_reservoir,2011-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5598,gw1,2011-01-31,262.1528334949854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5599,gw2,2011-01-31,262.8471665050146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5600,my_sewer,2011-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5601,my_land,2011-02-01,2.409555675346261,percolation,0.0,0.0,0.0003163368357494583,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5602,my_land,2011-02-01,0.011685657903974007,subsurface_runoff,0.0,0.0,1.566621185989274e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5603,my_land,2011-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5604,my_groundwater,2011-02-01,17.22849918407687,tank,0.0,0.0,0.0018595741122262599,0.0,0.0,0.0,0.0,0.0,10.912496576897897,0.0,0.0,0.0 +5605,my_reservoir,2011-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5606,gw1,2011-02-01,262.1551479383521,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5607,gw2,2011-02-01,262.8448520616479,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5608,my_sewer,2011-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5609,my_land,2011-02-02,2.3613645618393355,percolation,0.0,0.0,0.00031001009903446915,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5610,my_land,2011-02-02,0.009348526323179205,subsurface_runoff,0.0,0.0,1.2532969487914192e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5611,my_land,2011-02-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5612,my_groundwater,2011-02-02,17.233498571839835,tank,0.0,0.0,0.001861236096818896,0.0,0.0,0.0,0.0,0.0,10.904520700618534,0.0,0.0,0.0 +5613,my_reservoir,2011-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5614,gw1,2011-02-02,262.15744695209645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5615,gw2,2011-02-02,262.84255304790355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5616,my_sewer,2011-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5617,my_land,2011-02-03,2.314137270602549,percolation,0.0,0.0,0.0003038098970537798,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5618,my_land,2011-02-03,0.007478821058543365,subsurface_runoff,0.0,0.0,1.0026375590331354e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5619,my_land,2011-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5620,my_groundwater,2011-02-03,17.23752404841893,tank,0.0,0.0,0.0018627677080525864,0.0,0.0,0.0,0.0,0.0,10.89672796485738,0.0,0.0,0.0 +5621,my_reservoir,2011-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5622,gw1,2011-02-03,262.15973063908245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5623,gw2,2011-02-03,262.84026936091755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5624,my_sewer,2011-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5625,my_land,2011-02-04,2.267854525190498,percolation,0.0,0.0,0.0002977336991127042,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5626,my_land,2011-02-04,0.005983056846834691,subsurface_runoff,0.0,0.0,8.021100472265083e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5627,my_land,2011-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5628,my_groundwater,2011-02-04,17.2405972768464,tank,0.0,0.0,0.001864171796228678,0.0,0.0,0.0,0.0,0.0,10.88911331258961,0.0,0.0,0.0 +5629,my_reservoir,2011-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5630,gw1,2011-02-04,262.16199910148856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5631,gw2,2011-02-04,262.83800089851144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5632,my_sewer,2011-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5633,my_land,2011-02-05,2.222497434686688,percolation,0.0,0.0,0.0002917790251304501,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5634,my_land,2011-02-05,0.004786445477467753,subsurface_runoff,0.0,0.0,6.416880377812067e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508526,0.0,0.0,0.0 +5635,my_land,2011-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5636,my_groundwater,2011-02-05,17.242739481431837,tank,0.0,0.0,0.0018654511540354046,0.0,0.0,0.0,0.0,0.0,10.88167186077152,0.0,0.0,0.0 +5637,my_reservoir,2011-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5638,gw1,2011-02-05,262.164252440812,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5639,gw2,2011-02-05,262.835747559188,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5640,my_sewer,2011-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5641,my_land,2011-02-06,2.178047485992954,percolation,0.0,0.0,0.0002859434446278411,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5642,my_land,2011-02-06,0.0038291563819742025,subsurface_runoff,0.0,0.0,5.133504302249654e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5643,my_land,2011-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5644,my_groundwater,2011-02-06,17.24397145655026,tank,0.0,0.0,0.0018666085177016685,0.0,0.0,0.0,0.0,0.0,10.874398892948735,0.0,0.0,0.0 +5645,my_reservoir,2011-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5646,gw1,2011-02-06,262.16649075787325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5647,gw2,2011-02-06,262.83350924212675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5648,my_sewer,2011-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5649,my_land,2011-02-07,2.134486536273095,percolation,0.0,0.0,0.0002802245757352843,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5650,my_land,2011-02-07,0.003063325105579362,subsurface_runoff,0.0,0.0,4.106803441799723e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5651,my_land,2011-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5652,my_groundwater,2011-02-07,17.24431357525444,tank,0.0,0.0,0.0018676465681277399,0.0,0.0,0.0,0.0,0.0,10.867289852239603,0.0,0.0,0.0 +5653,my_reservoir,2011-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5654,gw1,2011-02-07,262.16871415282077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5655,gw2,2011-02-07,262.83128584717923,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5656,my_sewer,2011-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5657,my_land,2011-02-08,2.091796805547633,percolation,0.0,0.0,0.0002746200842205786,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5658,my_land,2011-02-08,0.0024506600844634895,subsurface_runoff,0.0,0.0,3.2854427534397786e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5659,my_land,2011-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5660,my_groundwater,2011-02-08,17.243785797714956,tank,0.0,0.0,0.0018685679319933395,0.0,0.0,0.0,0.0,0.0,10.860340334671756,0.0,0.0,0.0 +5661,my_reservoir,2011-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5662,gw1,2011-02-08,262.1709227251353,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5663,gw2,2011-02-08,262.8290772748647,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5664,my_sewer,2011-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 +5665,my_land,2011-02-09,2.0499608694366804,percolation,0.0,0.0,0.000269127682536167,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5666,my_land,2011-02-09,0.0019605280675707914,subsurface_runoff,0.0,0.0,2.6283542027518226e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5667,my_land,2011-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5668,my_groundwater,2011-02-09,17.242407679491343,tank,0.0,0.0,0.0018693751828435566,0.0,0.0,0.0,0.0,0.0,10.853546082851231,0.0,0.0,0.0 +5669,my_reservoir,2011-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5670,gw1,2011-02-09,262.1731165736344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5671,gw2,2011-02-09,262.8268834263656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5672,my_sewer,2011-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 +5673,my_land,2011-02-10,2.008961652047947,percolation,0.0,0.0,0.0002637451288854437,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5674,my_land,2011-02-10,0.001568422454056633,subsurface_runoff,0.0,0.0,2.102683362201458e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5675,my_land,2011-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5676,my_groundwater,2011-02-10,17.240198379637878,tank,0.0,0.0,0.0018700708421530443,0.0,0.0,0.0,0.0,0.0,10.846902979944906,0.0,0.0,0.0 +5677,my_reservoir,2011-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5678,gw1,2011-02-10,262.1752957964768,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5679,gw2,2011-02-10,262.8247042035232,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5680,my_sewer,2011-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 +5681,my_land,2011-02-11,1.968782419006988,percolation,0.0,0.0,0.0002584702263077348,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5682,my_land,2011-02-11,0.0012547379632453066,subsurface_runoff,0.0,0.0,1.6821466897611665e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5683,my_land,2011-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5684,my_groundwater,2011-02-11,17.23717666864714,tank,0.0,0.0,0.0018706573803689264,0.0,0.0,0.0,0.0,0.0,10.840407043958301,0.0,0.0,0.0 +5685,my_reservoir,2011-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5686,gw1,2011-02-11,262.177460491167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5687,gw2,2011-02-11,262.822539508833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5688,my_sewer,2011-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 +5689,my_land,2011-02-12,1.9294067706268483,percolation,0.0,0.0,0.00025330082178158015,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5690,my_land,2011-02-12,0.0010037903705962452,subsurface_runoff,0.0,0.0,1.3457173518089332e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5691,my_land,2011-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5692,my_groundwater,2011-02-12,17.233360936234714,tank,0.0,0.0,0.0018711372179328434,0.0,0.0,0.0,0.0,0.0,10.834054422291944,0.0,0.0,0.0 +5693,my_reservoir,2011-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5694,gw1,2011-02-12,262.1796107545592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5695,gw2,2011-02-12,262.8203892454408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5696,my_sewer,2011-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.249999999999999,0.0,0.0,0.0 +5697,my_land,2011-02-13,1.8908186352143113,percolation,0.0,0.0,0.0002482348053459486,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 +5698,my_land,2011-02-13,0.0008030322964769961,subsurface_runoff,0.0,0.0,1.0765738814471465e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 +5699,my_land,2011-02-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 +5700,my_groundwater,2011-02-13,17.22876919896813,tank,0.0,0.0,0.001871512726282554,0.0,0.0,0.0,0.0,0.0,10.82784138656057,0.0,0.0,0.0 +5701,my_reservoir,2011-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5702,gw1,2011-02-13,262.1817466828621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5703,gw2,2011-02-13,262.8182533171379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5704,my_sewer,2011-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.250000000000001,0.0,0.0,0.0 +5705,my_land,2011-02-14,1.8911679796325882,percolation,0.0,0.0,0.00024898683058058725,0.0,0.0,0.0,0.0,0.0,8.044710711081628,0.0,0.0,0.0 +5706,my_land,2011-02-14,0.011027654986178394,subsurface_runoff,0.0,0.0,1.6416963435926809e-06,0.0,0.0,0.0,0.0,0.0,7.573171233723868,0.0,0.0,0.0 +5707,my_land,2011-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.275,0.0,0.0,0.0 +5708,my_groundwater,2011-02-14,17.224196052698943,tank,0.0,0.0,0.0018719026049465238,0.0,0.0,0.0,0.0,0.0,10.82162065346203,0.0,0.0,0.0 +5709,my_reservoir,2011-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5710,gw1,2011-02-14,262.18386837164303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5711,gw2,2011-02-14,262.81613162835697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5712,my_sewer,2011-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 +5713,my_land,2011-02-15,1.9968043349620173,percolation,0.0,0.0,0.00026510661717835587,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 +5714,my_land,2011-02-15,0.0478587811105973,subsurface_runoff,0.0,0.0,7.054723934569486e-06,0.0,0.0,0.0,0.0,0.0,7.6350665762223295,0.0,0.0,0.0 +5715,my_land,2011-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0 +5716,my_groundwater,2011-02-15,17.22178479367178,tank,0.0,0.0,0.0018726196617124312,0.0,0.0,0.0,0.0,0.0,10.814999113295896,0.0,0.0,0.0 +5717,my_reservoir,2011-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5718,gw1,2011-02-15,262.1859759158321,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5719,gw2,2011-02-15,262.8140240841679,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5720,my_sewer,2011-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 +5721,my_land,2011-02-16,1.9568682482627768,percolation,0.0,0.0,0.0002598044848347888,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 +5722,my_land,2011-02-16,0.038287024888477836,subsurface_runoff,0.0,0.0,5.643779147655589e-06,0.0,0.0,0.0,0.0,0.0,7.63506657622233,0.0,0.0,0.0 +5723,my_land,2011-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.99375,0.0,0.0,0.0 +5724,my_groundwater,2011-02-16,17.21856657817009,tank,0.0,0.0,0.0018732269895708584,0.0,0.0,0.0,0.0,0.0,10.808524110447275,0.0,0.0,0.0 +5725,my_reservoir,2011-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5726,gw1,2011-02-16,262.18806940972655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5727,gw2,2011-02-16,262.81193059027345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5728,my_sewer,2011-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 +5729,my_land,2011-02-17,1.9177308832975213,percolation,0.0,0.0,0.000254608395138093,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 +5730,my_land,2011-02-17,0.03062961991078227,subsurface_runoff,0.0,0.0,4.5150233181244716e-06,0.0,0.0,0.0,0.0,0.0,7.63506657622233,0.0,0.0,0.0 +5731,my_land,2011-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.99375,0.0,0.0,0.0 +5732,my_groundwater,2011-02-17,17.214559683277507,tank,0.0,0.0,0.0018737270215693853,0.0,0.0,0.0,0.0,0.0,10.802191814804383,0.0,0.0,0.0 +5733,my_reservoir,2011-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5734,gw1,2011-02-17,262.19014894699507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5735,gw2,2011-02-17,262.80985105300493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5736,my_sewer,2011-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +5737,my_land,2011-02-18,2.101785447153748,percolation,0.0,0.0,0.0002816526452847823,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 +5738,my_land,2011-02-18,0.08502320110472834,subsurface_runoff,0.0,0.0,1.2356622205370632e-05,0.0,0.0,0.0,0.0,0.0,7.392386739958317,0.0,0.0,0.0 +5739,my_land,2011-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +5740,my_groundwater,2011-02-18,17.214309630672084,tank,0.0,0.0,0.0018747763471516164,0.0,0.0,0.0,0.0,0.0,10.795077476360593,0.0,0.0,0.0 +5741,my_reservoir,2011-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5742,gw1,2011-02-18,262.19221462068174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5743,gw2,2011-02-18,262.80778537931826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5744,my_sewer,2011-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 +5745,my_land,2011-02-19,2.059749738210673,percolation,0.0,0.0,0.0002760195923790866,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 +5746,my_land,2011-02-19,0.06801856088378268,subsurface_runoff,0.0,0.0,9.885297764296506e-06,0.0,0.0,0.0,0.0,0.0,7.392386739958317,0.0,0.0,0.0 +5747,my_land,2011-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.571875,0.0,0.0,0.0 +5748,my_groundwater,2011-02-19,17.21320447626612,tank,0.0,0.0,0.0018757083765571687,0.0,0.0,0.0,0.0,0.0,10.788122307272895,0.0,0.0,0.0 +5749,my_reservoir,2011-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5750,gw1,2011-02-19,262.1942665232105,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5751,gw2,2011-02-19,262.8057334767895,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5752,my_sewer,2011-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 +5753,my_land,2011-02-20,2.1215940397205144,percolation,0.0,0.0,0.00028547082934016335,0.0,0.0,0.0,0.0,0.0,7.897823496019973,0.0,0.0,0.0 +5754,my_land,2011-02-20,0.08245275245506825,subsurface_runoff,0.0,0.0,1.1982150812432714e-05,0.0,0.0,0.0,0.0,0.0,7.284183384259057,0.0,0.0,0.0 +5755,my_land,2011-02-20,9.145231902982681e-19,surface_runoff,0.0,0.0,1.1163613162820656e-22,0.0,0.0,0.0,0.0,0.0,7.059355804968571,0.0,0.0,0.0 +5756,my_groundwater,2011-02-20,17.21336105802691,tank,0.0,0.0,0.0018768304760702005,0.0,0.0,0.0,0.0,0.0,10.780870334299966,0.0,0.0,0.0 +5757,my_reservoir,2011-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5758,gw1,2011-02-20,262.1963047463891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5759,gw2,2011-02-20,262.8036952536109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5760,my_sewer,2011-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 +5761,my_land,2011-02-21,2.1736355614416225,percolation,0.0,0.0,0.00029346697155137455,0.0,0.0,0.0,0.0,0.0,7.856790098377519,0.0,0.0,0.0 +5762,my_land,2011-02-21,0.09166925026759694,subsurface_runoff,0.0,0.0,1.3315124404507936e-05,0.0,0.0,0.0,0.0,0.0,7.191513690246988,0.0,0.0,0.0 +5763,my_land,2011-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.290625000000001,0.0,0.0,0.0 +5764,my_groundwater,2011-02-21,17.214576665025472,tank,0.0,0.0,0.0018781125489437495,0.0,0.0,0.0,0.0,0.0,10.773354166050478,0.0,0.0,0.0 +5765,my_reservoir,2011-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5766,gw1,2011-02-21,262.1983293814132,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5767,gw2,2011-02-21,262.8016706185868,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5768,my_sewer,2011-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 +5769,my_land,2011-02-22,2.2481679554330385,percolation,0.0,0.0,0.00030462663314262324,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 +5770,my_land,2011-02-22,0.10544563292707035,subsurface_runoff,0.0,0.0,1.5285841298375383e-05,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 +5771,my_land,2011-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15,0.0,0.0,0.0 +5772,my_groundwater,2011-02-22,17.217306499598507,tank,0.0,0.0,0.001879618595460365,0.0,0.0,0.0,0.0,0.0,10.765458296536108,0.0,0.0,0.0 +5773,my_reservoir,2011-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5774,gw1,2011-02-22,262.20034051887046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5775,gw2,2011-02-22,262.79965948112954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5776,my_sewer,2011-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 +5777,my_land,2011-02-23,2.203204596324378,percolation,0.0,0.0,0.00029853410047977076,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 +5778,my_land,2011-02-23,0.08435650634165628,subsurface_runoff,0.0,0.0,1.2228673038700307e-05,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 +5779,my_land,2011-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.035714286,0.0,0.0,0.0 +5780,my_groundwater,2011-02-23,17.2191141840604,tank,0.0,0.0,0.0018809968503029095,0.0,0.0,0.0,0.0,0.0,10.757741723271955,0.0,0.0,0.0 +5781,my_reservoir,2011-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5782,gw1,2011-02-23,262.20233824874464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5783,gw2,2011-02-23,262.79766175125536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5784,my_sewer,2011-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 +5785,my_land,2011-02-24,2.1591405043978904,percolation,0.0,0.0,0.00029256341847017537,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 +5786,my_land,2011-02-24,0.06748520507332503,subsurface_runoff,0.0,0.0,9.782938430960245e-06,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 +5787,my_land,2011-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.035714286,0.0,0.0,0.0 +5788,my_groundwater,2011-02-24,17.22002033029692,tank,0.0,0.0,0.0018822501134817236,0.0,0.0,0.0,0.0,0.0,10.750199575887871,0.0,0.0,0.0 +5789,my_reservoir,2011-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5790,gw1,2011-02-24,262.2043226604197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5791,gw2,2011-02-24,262.7956773395803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5792,my_sewer,2011-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.807142857,0.0,0.0,0.0 +5793,my_land,2011-02-25,2.517360701952956,percolation,0.0,0.0,0.0003423634520732273,0.0,0.0,0.0,0.0,0.0,7.591176375240516,0.0,0.0,0.0 +5794,my_land,2011-02-25,0.1632134722608432,subsurface_runoff,0.0,0.0,2.2969562165844515e-05,0.0,0.0,0.0,0.0,0.0,6.675633727610125,0.0,0.0,0.0 +5795,my_land,2011-02-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8071428570000005,0.0,0.0,0.0 +5796,my_groundwater,2011-02-25,17.228216550903788,tank,0.0,0.0,0.0018845140299009386,0.0,0.0,0.0,0.0,0.0,10.740802888777285,0.0,0.0,0.0 +5797,my_reservoir,2011-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5798,gw1,2011-02-25,262.2062938426835,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5799,gw2,2011-02-25,262.7937061573165,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5800,my_sewer,2011-02-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0 +5801,my_land,2011-02-26,2.5588419322389298,percolation,0.0,0.0,0.0003482624864966066,0.0,0.0,0.0,0.0,0.0,7.548870210768758,0.0,0.0,0.0 +5802,my_land,2011-02-26,0.15555810959779917,subsurface_runoff,0.0,0.0,2.1844031627871223e-05,0.0,0.0,0.0,0.0,0.0,6.633333668896533,0.0,0.0,0.0 +5803,my_land,2011-02-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.692857143,0.0,0.0,0.0 +5804,my_groundwater,2011-02-26,17.237236720289964,tank,0.0,0.0,0.0018868923740155816,0.0,0.0,0.0,0.0,0.0,10.731156908704921,0.0,0.0,0.0 +5805,my_reservoir,2011-02-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5806,gw1,2011-02-26,262.2082518837323,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5807,gw2,2011-02-26,262.7917481162677,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5808,my_sewer,2011-02-27,3.469446951953614e-18,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5809,my_land,2011-02-27,2.728107447517119,percolation,0.0,0.0,0.00037149024488413124,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +5810,my_land,2011-02-27,0.1844308016708836,subsurface_runoff,0.0,0.0,2.5691009824053912e-05,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5811,my_land,2011-02-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.578571429,0.0,0.0,0.0 +5812,my_groundwater,2011-02-27,17.24968010152798,tank,0.0,0.0,0.0018897376230656837,0.0,0.0,0.0,0.0,0.0,10.720588509148394,0.0,0.0,0.0 +5813,my_reservoir,2011-02-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5814,gw1,2011-02-27,262.2101968711741,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5815,gw2,2011-02-27,262.7898031288259,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5816,my_sewer,2011-02-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5817,my_land,2011-02-28,2.6735452985667765,percolation,0.0,0.0,0.0003640604399864486,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +5818,my_land,2011-02-28,0.1475446413367069,subsurface_runoff,0.0,0.0,2.055280785924313e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5819,my_land,2011-02-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 +5820,my_groundwater,2011-02-28,17.260981644852126,tank,0.0,0.0,0.001892424509393458,0.0,0.0,0.0,0.0,0.0,10.710271582106568,0.0,0.0,0.0 +5821,my_reservoir,2011-02-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5822,gw1,2011-02-28,262.2121288920329,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5823,gw2,2011-02-28,262.7878711079671,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5824,my_sewer,2011-03-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5825,my_land,2011-03-01,2.620074392595441,percolation,0.0,0.0,0.00035677923118671966,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +5826,my_land,2011-03-01,0.11803571306936551,subsurface_runoff,0.0,0.0,1.6442246287394504e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5827,my_land,2011-03-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 +5828,my_groundwater,2011-03-01,17.271166419446402,tank,0.0,0.0,0.001894956453897704,0.0,0.0,0.0,0.0,0.0,10.70019881678128,0.0,0.0,0.0 +5829,my_reservoir,2011-03-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5830,gw1,2011-03-01,262.2140480327527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5831,gw2,2011-03-01,262.7859519672473,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5832,my_sewer,2011-03-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5833,my_land,2011-03-02,2.567672904743532,percolation,0.0,0.0,0.0003496436465629853,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5834,my_land,2011-03-02,0.09442857045549241,subsurface_runoff,0.0,0.0,1.3153797029915602e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5835,my_land,2011-03-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 +5836,my_groundwater,2011-03-02,17.280258987530065,tank,0.0,0.0,0.001897336808425135,0.0,0.0,0.0,0.0,0.0,10.690363169646886,0.0,0.0,0.0 +5837,my_reservoir,2011-03-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5838,gw1,2011-03-02,262.21595437920104,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5839,gw2,2011-03-02,262.78404562079896,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5840,my_sewer,2011-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5841,my_land,2011-03-03,2.5163194466486614,percolation,0.0,0.0,0.0003426507736317256,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5842,my_land,2011-03-03,0.07554285636439392,subsurface_runoff,0.0,0.0,1.0523037623932482e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5843,my_land,2011-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 +5844,my_groundwater,2011-03-03,17.28828341451087,tank,0.0,0.0,0.0018995688571530037,0.0,0.0,0.0,0.0,0.0,10.68075785236592,0.0,0.0,0.0 +5845,my_reservoir,2011-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5846,gw1,2011-03-03,262.21784801667303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5847,gw2,2011-03-03,262.78215198332697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5848,my_sewer,2011-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5849,my_land,2011-03-04,2.4659930577156883,percolation,0.0,0.0,0.00033579775815909105,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5850,my_land,2011-03-04,0.06043428509151514,subsurface_runoff,0.0,0.0,8.418430099145985e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5851,my_land,2011-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 +5852,my_groundwater,2011-03-04,17.295263278935234,tank,0.0,0.0,0.001901655817944074,0.0,0.0,0.0,0.0,0.0,10.671376320356659,0.0,0.0,0.0 +5853,my_reservoir,2011-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5854,gw1,2011-03-04,262.21972902989523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5855,gw2,2011-03-04,262.78027097010477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5856,my_sewer,2011-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5857,my_land,2011-03-05,2.4166731965613746,percolation,0.0,0.0,0.00032908180299590924,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5858,my_land,2011-03-05,0.048347428073212115,subsurface_runoff,0.0,0.0,6.734744079316788e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5859,my_land,2011-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5860,my_groundwater,2011-03-05,17.301221682239323,tank,0.0,0.0,0.0019036008436744876,0.0,0.0,0.0,0.0,0.0,10.662212261971984,0.0,0.0,0.0 +5861,my_reservoir,2011-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5862,gw1,2011-03-05,262.2215975030293,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5863,gw2,2011-03-05,262.7784024969707,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5864,my_sewer,2011-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5865,my_land,2011-03-06,2.368339732630147,percolation,0.0,0.0,0.00032250016693599105,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5866,my_land,2011-03-06,0.03867794245856969,subsurface_runoff,0.0,0.0,5.387795263453431e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5867,my_land,2011-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5868,my_groundwater,2011-03-06,17.306181258305127,tank,0.0,0.0,0.0019054070235350697,0.0,0.0,0.0,0.0,0.0,10.653259588251618,0.0,0.0,0.0 +5869,my_reservoir,2011-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5870,gw1,2011-03-06,262.22345351967573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5871,gw2,2011-03-06,262.77654648032427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5872,my_sewer,2011-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5873,my_land,2011-03-07,2.320972937977544,percolation,0.0,0.0,0.0003160501635972712,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5874,my_land,2011-03-07,0.030942353966855754,subsurface_runoff,0.0,0.0,4.310236210762744e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5875,my_land,2011-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5876,my_groundwater,2011-03-07,17.310164182825336,tank,0.0,0.0,0.001907077384306605,0.0,0.0,0.0,0.0,0.0,10.644512423212639,0.0,0.0,0.0 +5877,my_reservoir,2011-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5878,gw1,2011-03-07,262.2252971628779,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5879,gw2,2011-03-07,262.7747028371221,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5880,my_sewer,2011-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5881,my_land,2011-03-08,2.274553479217993,percolation,0.0,0.0,0.0003097291603253258,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5882,my_land,2011-03-08,0.024753883173484603,subsurface_runoff,0.0,0.0,3.4481889686101954e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5883,my_land,2011-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5884,my_groundwater,2011-03-08,17.313192182480925,tank,0.0,0.0,0.001908614891609604,0.0,0.0,0.0,0.0,0.0,10.635965094645497,0.0,0.0,0.0 +5885,my_reservoir,2011-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5886,gw1,2011-03-08,262.2271285151254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5887,gw2,2011-03-08,262.7728714848746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5888,my_sewer,2011-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5889,my_land,2011-03-09,2.229062409633633,percolation,0.0,0.0,0.00030353457711881926,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +5890,my_land,2011-03-09,0.019803106538787682,subsurface_runoff,0.0,0.0,2.7585511748881563e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5891,my_land,2011-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5892,my_groundwater,2011-03-09,17.315286543935123,tank,0.0,0.0,0.0019100224511290702,0.0,0.0,0.0,0.0,0.0,10.627612125385108,0.0,0.0,0.0 +5893,my_reservoir,2011-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5894,gw1,2011-03-09,262.2289476583579,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5895,gw2,2011-03-09,262.7710523416421,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5896,my_sewer,2011-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5897,my_land,2011-03-10,2.1844811614409605,percolation,0.0,0.0,0.0002974638855764429,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5898,my_land,2011-03-10,0.015842485231030146,subsurface_runoff,0.0,0.0,2.206840939910525e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5899,my_land,2011-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5900,my_groundwater,2011-03-10,17.31646812264748,tank,0.0,0.0,0.0019113029098147682,0.0,0.0,0.0,0.0,0.0,10.619448225028576,0.0,0.0,0.0 +5901,my_reservoir,2011-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5902,gw1,2011-03-10,262.2307546739689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5903,gw2,2011-03-10,262.7692453260311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5904,my_sewer,2011-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5905,my_land,2011-03-11,2.140791538212141,percolation,0.0,0.0,0.00029151460786491404,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5906,my_land,2011-03-11,0.012673988184824117,subsurface_runoff,0.0,0.0,1.76547275192842e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5907,my_land,2011-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5908,my_groundwater,2011-03-11,17.316757351511605,tank,0.0,0.0,0.0019124590570574812,0.0,0.0,0.0,0.0,0.0,10.611468282073128,0.0,0.0,0.0 +5909,my_reservoir,2011-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5910,gw1,2011-03-11,262.2325496428091,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5911,gw2,2011-03-11,262.7674503571909,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5912,my_sewer,2011-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5913,my_land,2011-03-12,2.0979757074478984,percolation,0.0,0.0,0.0002856843157076158,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5914,my_land,2011-03-12,0.010139190547859294,subsurface_runoff,0.0,0.0,1.412378201542736e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5915,my_land,2011-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5916,my_groundwater,2011-03-12,17.31617424932016,tank,0.0,0.0,0.0019134936258417424,0.0,0.0,0.0,0.0,0.0,10.603667356449526,0.0,0.0,0.0 +5917,my_reservoir,2011-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5918,gw1,2011-03-12,262.23433264519036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5919,gw2,2011-03-12,262.76566735480964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5920,my_sewer,2011-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5921,my_land,2011-03-13,2.0560161932989405,percolation,0.0,0.0,0.00027997062939346344,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5922,my_land,2011-03-13,0.008111352438287435,subsurface_runoff,0.0,0.0,1.1299025612341888e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5923,my_land,2011-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5924,my_groundwater,2011-03-13,17.314738429060444,tank,0.0,0.0,0.001914409293875505,0.0,0.0,0.0,0.0,0.0,10.596040672427948,0.0,0.0,0.0 +5925,my_reservoir,2011-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5926,gw1,2011-03-13,262.2361037608891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5927,gw2,2011-03-13,262.7638962391109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5928,my_sewer,2011-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5929,my_land,2011-03-14,2.0148958694329617,percolation,0.0,0.0,0.0002743712168055942,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5930,my_land,2011-03-14,0.006489081950629948,subsurface_runoff,0.0,0.0,9.03922048987351e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5931,my_land,2011-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5932,my_groundwater,2011-03-14,17.312469106044105,tank,0.0,0.0,0.0019152086846972159,0.0,0.0,0.0,0.0,0.0,10.588583611874776,0.0,0.0,0.0 +5933,my_reservoir,2011-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5934,gw1,2011-03-14,262.2378630691498,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5935,gw2,2011-03-14,262.7621369308502,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5936,my_sewer,2011-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5937,my_land,2011-03-15,1.9745979520443024,percolation,0.0,0.0,0.0002688837924694823,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5938,my_land,2011-03-15,0.005191265560503958,subsurface_runoff,0.0,0.0,7.231376391898808e-07,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +5939,my_land,2011-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5940,my_groundwater,2011-03-15,17.309385105874185,tank,0.0,0.0,0.0019158943687607444,0.0,0.0,0.0,0.0,0.0,10.581291707840194,0.0,0.0,0.0 +5941,my_reservoir,2011-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5942,gw1,2011-03-15,262.2396106486888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5943,gw2,2011-03-15,262.7603893513112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5944,my_sewer,2011-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5945,my_land,2011-03-16,1.9351059930034165,percolation,0.0,0.0,0.0002635061166200927,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5946,my_land,2011-03-16,0.004153012448403166,subsurface_runoff,0.0,0.0,5.785101113519047e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5947,my_land,2011-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5948,my_groundwater,2011-03-16,17.305504872252783,tank,0.0,0.0,0.0019164688644986087,0.0,0.0,0.0,0.0,0.0,10.574160638457801,0.0,0.0,0.0 +5949,my_reservoir,2011-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5950,gw1,2011-03-16,262.2413465776976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5951,gw2,2011-03-16,262.7586534223024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5952,my_sewer,2011-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5953,my_land,2011-03-17,1.8964038731433481,percolation,0.0,0.0,0.00025823599428769086,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5954,my_land,2011-03-17,0.003322409958722533,subsurface_runoff,0.0,0.0,4.628080890815238e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5955,my_land,2011-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5956,my_groundwater,2011-03-17,17.30084647463257,tank,0.0,0.0,0.0019169346393639332,0.0,0.0,0.0,0.0,0.0,10.567186221138613,0.0,0.0,0.0 +5957,my_reservoir,2011-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5958,gw1,2011-03-17,262.24307093384624,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5959,gw2,2011-03-17,262.75692906615376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5960,my_sewer,2011-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5961,my_land,2011-03-18,1.8584757956804812,percolation,0.0,0.0,0.00025307127440193705,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5962,my_land,2011-03-18,0.0026579279669780263,subsurface_runoff,0.0,0.0,3.70246471265219e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5963,my_land,2011-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5964,my_groundwater,2011-03-18,17.295427615715198,tank,0.0,0.0,0.001917294110851563,0.0,0.0,0.0,0.0,0.0,10.560364407042986,0.0,0.0,0.0 +5965,my_reservoir,2011-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5966,gw1,2011-03-18,262.2447837942873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5967,gw2,2011-03-18,262.7552162057127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5968,my_sewer,2011-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5969,my_land,2011-03-19,1.8213062797668715,percolation,0.0,0.0,0.0002480098489138983,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5970,my_land,2011-03-19,0.002126342373582421,subsurface_runoff,0.0,0.0,2.961971770121752e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5971,my_land,2011-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5972,my_groundwater,2011-03-19,17.289265638799737,tank,0.0,0.0,0.0019175496474987525,0.0,0.0,0.0,0.0,0.0,10.55369127581507,0.0,0.0,0.0 +5973,my_reservoir,2011-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5974,gw1,2011-03-19,262.2464852356587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5975,gw2,2011-03-19,262.7535147643413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5976,my_sewer,2011-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5977,my_land,2011-03-20,1.784880154171534,percolation,0.0,0.0,0.00024304965193562035,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5978,my_land,2011-03-20,0.0017010738988659368,subsurface_runoff,0.0,0.0,2.3695774160974014e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5979,my_land,2011-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5980,my_groundwater,2011-03-20,17.282377534984086,tank,0.0,0.0,0.0019177035698658379,0.0,0.0,0.0,0.0,0.0,10.547163030565285,0.0,0.0,0.0 +5981,my_reservoir,2011-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5982,gw1,2011-03-20,262.24817533408765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5983,gw2,2011-03-20,262.75182466591235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5984,my_sewer,2011-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5985,my_land,2011-03-21,1.7491825510881034,percolation,0.0,0.0,0.00023818865889690794,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +5986,my_land,2011-03-21,0.0013608591190927494,subsurface_runoff,0.0,0.0,1.8956619328779213e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5987,my_land,2011-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5988,my_groundwater,2011-03-21,17.27477995022235,tank,0.0,0.0,0.001917758151497289,0.0,0.0,0.0,0.0,0.0,10.540775993087312,0.0,0.0,0.0 +5989,my_reservoir,2011-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5990,gw1,2011-03-21,262.2498541651937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5991,gw2,2011-03-21,262.7501458348063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5992,my_sewer,2011-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +5993,my_land,2011-03-22,1.7141989000663413,percolation,0.0,0.0,0.00023342488571896977,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +5994,my_land,2011-03-22,0.0010886872952741995,subsurface_runoff,0.0,0.0,1.516529546302337e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 +5995,my_land,2011-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +5996,my_groundwater,2011-03-22,17.266489192241,tank,0.0,0.0,0.0019177156198635391,0.0,0.0,0.0,0.0,0.0,10.534526599296854,0.0,0.0,0.0 +5997,my_reservoir,2011-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5998,gw1,2011-03-22,262.2515218040924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5999,gw2,2011-03-22,262.7484781959076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6000,my_sewer,2011-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6001,my_land,2011-03-23,1.6799149220650145,percolation,0.0,0.0,0.0002287563880045904,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6002,my_land,2011-03-23,0.0008709498362193596,subsurface_runoff,0.0,0.0,1.2132236370418695e-07,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6003,my_land,2011-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6004,my_groundwater,2011-03-23,17.25752123731672,tank,0.0,0.0,0.001917578157283974,0.0,0.0,0.0,0.0,0.0,10.528411394880244,0.0,0.0,0.0 +6005,my_reservoir,2011-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6006,gw1,2011-03-23,262.2531783253985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6007,gw2,2011-03-23,262.7468216746015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6008,my_sewer,2011-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6009,my_land,2011-03-24,1.6463166236237141,percolation,0.0,0.0,0.00022418126024449859,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6010,my_land,2011-03-24,0.0006967598689754876,subsurface_runoff,0.0,0.0,9.705789096334957e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6011,my_land,2011-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6012,my_groundwater,2011-03-24,17.247891736918625,tank,0.0,0.0,0.0019173479018314555,0.0,0.0,0.0,0.0,0.0,10.522427031141714,0.0,0.0,0.0 +6013,my_reservoir,2011-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6014,gw1,2011-03-24,262.25482380322916,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6015,gw2,2011-03-24,262.74517619677084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6016,my_sewer,2011-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6017,my_land,2011-03-25,1.6133902911512399,percolation,0.0,0.0,0.0002196976350396086,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6018,my_land,2011-03-25,0.0005574078951803901,subsurface_runoff,0.0,0.0,7.764631277067965e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6019,my_land,2011-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6020,my_groundwater,2011-03-25,17.237616024217623,tank,0.0,0.0,0.0019170269482187547,0.0,0.0,0.0,0.0,0.0,10.516570261038764,0.0,0.0,0.0 +6021,my_reservoir,2011-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6022,gw1,2011-03-25,262.2564583112076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6023,gw2,2011-03-25,262.7435416887924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6024,my_sewer,2011-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6025,my_land,2011-03-26,1.581122485328215,percolation,0.0,0.0,0.00021530368233881644,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6026,my_land,2011-03-26,0.0004459263161443121,subsurface_runoff,0.0,0.0,6.211705021654372e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 +6027,my_land,2011-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6028,my_groundwater,2011-03-26,17.226709120465546,tank,0.0,0.0,0.001916617348667248,0.0,0.0,0.0,0.0,0.0,10.510837935395772,0.0,0.0,0.0 +6029,my_reservoir,2011-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6030,gw1,2011-03-26,262.2580819224662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6031,gw2,2011-03-26,262.7419180775338,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6032,my_sewer,2011-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6033,my_land,2011-03-27,1.5495000356216508,percolation,0.0,0.0,0.00021099760869204012,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6034,my_land,2011-03-27,0.0003567410529154497,subsurface_runoff,0.0,0.0,4.969364017323497e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6035,my_land,2011-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6036,my_groundwater,2011-03-27,17.21518574124668,tank,0.0,0.0,0.0019161211137582394,0.0,0.0,0.0,0.0,0.0,10.505226999286524,0.0,0.0,0.0 +6037,my_reservoir,2011-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6038,gw1,2011-03-27,262.25969470964975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6039,gw2,2011-03-27,262.74030529035025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6040,my_sewer,2011-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6041,my_land,2011-03-28,1.5185100349092178,percolation,0.0,0.0,0.00020677765651819932,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6042,my_land,2011-03-28,0.00028539284233235977,subsurface_runoff,0.0,0.0,3.9754912138587977e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6043,my_land,2011-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6044,my_groundwater,2011-03-28,17.203060302604214,tank,0.0,0.0,0.00191554021326725,0.0,0.0,0.0,0.0,0.0,10.49973448857691,0.0,0.0,0.0 +6045,my_reservoir,2011-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6046,gw1,2011-03-28,262.26129674491875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6047,gw2,2011-03-28,262.73870325508125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6048,my_sewer,2011-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 +6049,my_land,2011-03-29,1.4881398342110335,percolation,0.0,0.0,0.00020264210338783532,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6050,my_land,2011-03-29,0.00022831427386588784,subsurface_runoff,0.0,0.0,3.180392971087038e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6051,my_land,2011-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6052,my_groundwater,2011-03-29,17.190346927044143,tank,0.0,0.0,0.00191487657698162,0.0,0.0,0.0,0.0,0.0,10.49435752661957,0.0,0.0,0.0 +6053,my_reservoir,2011-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6054,gw1,2011-03-29,262.26288809995265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6055,gw2,2011-03-29,262.73711190004735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6056,my_sewer,2011-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6057,my_land,2011-03-30,1.4583770375268128,percolation,0.0,0.0,0.0001985892613200786,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6058,my_land,2011-03-30,0.00018265141909271028,subsurface_runoff,0.0,0.0,2.5443143768696304e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6059,my_land,2011-03-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6060,my_groundwater,2011-03-30,17.177059449419044,tank,0.0,0.0,0.0019141320955017532,0.0,0.0,0.0,0.0,0.0,10.489093321092698,0.0,0.0,0.0 +6061,my_reservoir,2011-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6062,gw1,2011-03-30,262.264468845953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6063,gw2,2011-03-30,262.735531154047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6064,my_sewer,2011-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6065,my_land,2011-03-31,1.4292094967762765,percolation,0.0,0.0,0.00019461747609367703,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6066,my_land,2011-03-31,0.00014612113527416823,subsurface_runoff,0.0,0.0,2.0354515014957044e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6067,my_land,2011-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6068,my_groundwater,2011-03-31,17.163211422694154,tank,0.0,0.0,0.0019133086210263346,0.0,0.0,0.0,0.0,0.0,10.483939160975735,0.0,0.0,0.0 +6069,my_reservoir,2011-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6070,gw1,2011-03-31,262.26603905364664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6071,gw2,2011-03-31,262.73396094635336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6072,my_sewer,2011-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6073,my_land,2011-04-01,1.400625306840751,percolation,0.0,0.0,0.00019072512657180348,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6074,my_land,2011-04-01,0.00011689690821933458,subsurface_runoff,0.0,0.0,1.6283612011965635e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6075,my_land,2011-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6076,my_groundwater,2011-04-01,17.148816123598106,tank,0.0,0.0,0.0019124079681218378,0.0,0.0,0.0,0.0,0.0,10.478892413655034,0.0,0.0,0.0 +6077,my_reservoir,2011-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6078,gw1,2011-04-01,262.267598793289,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6079,gw2,2011-04-01,262.732401206711,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6080,my_sewer,2011-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6081,my_land,2011-04-02,1.372612800703936,percolation,0.0,0.0,0.0001869106240403674,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6082,my_land,2011-04-02,9.351752657546766e-05,subsurface_runoff,0.0,0.0,1.3026889609572507e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6083,my_land,2011-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6084,my_groundwater,2011-04-02,17.133886558160583,tank,0.0,0.0,0.0019114319144766408,0.0,0.0,0.0,0.0,0.0,10.473950522153018,0.0,0.0,0.0 +6085,my_reservoir,2011-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6086,gw1,2011-04-02,262.26914813466703,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6087,gw2,2011-04-02,262.73085186533297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6088,my_sewer,2011-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6089,my_land,2011-04-03,1.3451605446898574,percolation,0.0,0.0,0.00018317241155956006,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6090,my_land,2011-04-03,7.481402126037412e-05,subsurface_runoff,0.0,0.0,1.0421511687658006e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6091,my_land,2011-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6092,my_groundwater,2011-04-03,17.118435467139225,tank,0.0,0.0,0.0019103822016400544,0.0,0.0,0.0,0.0,0.0,10.469111002474701,0.0,0.0,0.0 +6093,my_reservoir,2011-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6094,gw1,2011-04-03,262.2706871471026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6095,gw2,2011-04-03,262.7293128528974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6096,my_sewer,2011-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6097,my_land,2011-04-04,1.3182573337960601,percolation,0.0,0.0,0.00017950896332836886,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6098,my_land,2011-04-04,5.9851217008299304e-05,subsurface_runoff,0.0,0.0,8.337209350126405e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6099,my_land,2011-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6100,my_groundwater,2011-04-04,17.10247533133794,tank,0.0,0.0,0.0019092605357465676,0.0,0.0,0.0,0.0,0.0,10.4643714410658,0.0,0.0,0.0 +6101,my_reservoir,2011-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6102,gw1,2011-04-04,262.27221589945526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6103,gw2,2011-04-04,262.72778410054474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6104,my_sewer,2011-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6105,my_land,2011-04-05,1.291892187120139,percolation,0.0,0.0,0.0001759187840618015,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6106,my_land,2011-04-05,4.7880973606639444e-05,subsurface_runoff,0.0,0.0,6.669767480101124e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6107,my_land,2011-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6108,my_groundwater,2011-04-05,17.086018376818824,tank,0.0,0.0,0.0019080685882256023,0.0,0.0,0.0,0.0,0.0,10.459729492376951,0.0,0.0,0.0 +6109,my_reservoir,2011-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6110,gw1,2011-04-05,262.2737344601256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6111,gw2,2011-04-05,262.7262655398744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6112,my_sewer,2011-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6113,my_land,2011-04-06,1.2660543433777363,percolation,0.0,0.0,0.00017240040838056546,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6114,my_land,2011-04-06,3.830477888531156e-05,subsurface_runoff,0.0,0.0,5.335813984080899e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6115,my_land,2011-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6116,my_groundwater,2011-04-06,17.069076580009824,tank,0.0,0.0,0.0019068079964970712,0.0,0.0,0.0,0.0,0.0,10.455182876528925,0.0,0.0,0.0 +6117,my_reservoir,2011-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6118,gw1,2011-04-06,262.2752428970581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6119,gw2,2011-04-06,262.7247571029419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6120,my_sewer,2011-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6121,my_land,2011-04-07,1.2407332565101816,percolation,0.0,0.0,0.00016895240021295416,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6122,my_land,2011-04-07,3.064382310824925e-05,subsurface_runoff,0.0,0.0,4.2686511872647195e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6123,my_land,2011-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6124,my_groundwater,2011-04-07,17.051661672710182,tank,0.0,0.0,0.0019054803646530209,0.0,0.0,0.0,0.0,0.0,10.450729377073921,0.0,0.0,0.0 +6125,my_reservoir,2011-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6126,gw1,2011-04-07,262.27674127774435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6127,gw2,2011-04-07,262.72325872225565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6128,my_sewer,2011-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6129,my_land,2011-04-08,1.215918591379978,percolation,0.0,0.0,0.00016557335220869507,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6130,my_land,2011-04-08,2.45150584865994e-05,subsurface_runoff,0.0,0.0,3.414920949811776e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6131,my_land,2011-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6132,my_groundwater,2011-04-08,17.033785146995786,tank,0.0,0.0,0.0019040872641256368,0.0,0.0,0.0,0.0,0.0,10.446366838848366,0.0,0.0,0.0 +6133,my_reservoir,2011-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6134,gw1,2011-04-08,262.27822966922605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6135,gw2,2011-04-08,262.72177033077395,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6136,my_sewer,2011-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6137,my_land,2011-04-09,1.1916002195523783,percolation,0.0,0.0,0.00016226188516452116,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6138,my_land,2011-04-09,1.9612046789279517e-05,subsurface_runoff,0.0,0.0,2.7319367598494205e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6139,my_land,2011-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6140,my_groundwater,2011-04-09,17.015458260026328,tank,0.0,0.0,0.0019026302343418862,0.0,0.0,0.0,0.0,0.0,10.442093165912869,0.0,0.0,0.0 +6141,my_reservoir,2011-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6142,gw1,2011-04-09,262.2797081380979,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6143,gw2,2011-04-09,262.7202918619021,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6144,my_sewer,2011-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6145,my_land,2011-04-10,1.1677682151613307,percolation,0.0,0.0,0.00015901664746123073,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6146,my_land,2011-04-10,1.5689637431423615e-05,subsurface_runoff,0.0,0.0,2.1855494078795364e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6147,my_land,2011-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6148,my_groundwater,2011-04-10,16.996692038756333,tank,0.0,0.0,0.0019011107833650637,0.0,0.0,0.0,0.0,0.0,10.437906319575186,0.0,0.0,0.0 +6149,my_reservoir,2011-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6150,gw1,2011-04-10,262.28117675051055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6151,gw2,2011-04-10,262.71882324948945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6152,my_sewer,2011-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6153,my_land,2011-04-11,1.144412850858104,percolation,0.0,0.0,0.0001558363145120061,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6154,my_land,2011-04-11,1.2551709945138892e-05,subsurface_runoff,0.0,0.0,1.7484395263036293e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6155,my_land,2011-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6156,my_groundwater,2011-04-11,16.977497284551912,tank,0.0,0.0,0.0018995303885235026,0.0,0.0,0.0,0.0,0.0,10.43380431649231,0.0,0.0,0.0 +6157,my_reservoir,2011-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6158,gw1,2011-04-11,262.28263557217383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6159,gw2,2011-04-11,262.71736442782617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6160,my_sewer,2011-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6161,my_land,2011-04-12,1.121524593840942,percolation,0.0,0.0,0.000152719588221766,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6162,my_land,2011-04-12,1.0041367956111114e-05,subsurface_runoff,0.0,0.0,1.3987516210429035e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6163,my_land,2011-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6164,my_groundwater,2011-04-12,16.957884577715152,tank,0.0,0.0,0.0018978904970267084,0.0,0.0,0.0,0.0,0.0,10.429785226848034,0.0,0.0,0.0 +6165,my_reservoir,2011-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6166,gw1,2011-04-12,262.28408466835936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6167,gw2,2011-04-12,262.71591533164064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6168,my_sewer,2011-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6169,my_land,2011-04-13,1.0990941019641232,percolation,0.0,0.0,0.00014966519645733068,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6170,my_land,2011-04-13,8.033094364888891e-06,subsurface_runoff,0.0,0.0,1.1190012968343227e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6171,my_land,2011-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6172,my_groundwater,2011-04-13,16.93786428191799,tank,0.0,0.0,0.0018961925265691658,0.0,0.0,0.0,0.0,0.0,10.425847172602422,0.0,0.0,0.0 +6173,my_reservoir,2011-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6174,gw1,2011-04-13,262.28552410390364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6175,gw2,2011-04-13,262.71447589609636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6176,my_sewer,2011-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6177,my_land,2011-04-14,1.0771122199248406,percolation,0.0,0.0,0.00014667189252818406,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6178,my_land,2011-04-14,6.426475491911113e-06,subsurface_runoff,0.0,0.0,8.952010374674582e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6179,my_land,2011-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6180,my_groundwater,2011-04-14,16.917446548547378,tank,0.0,0.0,0.0018944378659220666,0.0,0.0,0.0,0.0,0.0,10.421988325809945,0.0,0.0,0.0 +6181,my_reservoir,2011-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6182,gw1,2011-04-14,262.28695394321096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6183,gw2,2011-04-14,262.71304605678904,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6184,my_sewer,2011-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6185,my_land,2011-04-15,1.055569975526344,percolation,0.0,0.0,0.00014373845467762037,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6186,my_land,2011-04-15,5.14118039352889e-06,subsurface_runoff,0.0,0.0,7.161608299739666e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6187,my_land,2011-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6188,my_groundwater,2011-04-15,16.89664132096351,tank,0.0,0.0,0.0018926278755131986,0.0,0.0,0.0,0.0,0.0,10.4182069070031,0.0,0.0,0.0 +6189,my_reservoir,2011-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6190,gw1,2011-04-15,262.2883742502562,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6191,gw2,2011-04-15,262.7116257497438,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6192,my_sewer,2011-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6193,my_land,2011-04-16,1.034458576015817,percolation,0.0,0.0,0.00014086368558406795,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6194,my_land,2011-04-16,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6195,my_land,2011-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6196,my_groundwater,2011-04-16,16.875458338672853,tank,0.0,0.0,0.0018907638879952342,0.0,0.0,0.0,0.0,0.0,10.414501183638567,0.0,0.0,0.0 +6197,my_reservoir,2011-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6198,gw1,2011-04-16,262.28978508858785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6199,gw2,2011-04-16,262.71021491141215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6200,my_sewer,2011-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6201,my_land,2011-04-17,1.0137694044955006,percolation,0.0,0.0,0.00013804641187238658,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6202,my_land,2011-04-17,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6203,my_land,2011-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6204,my_groundwater,2011-04-17,16.853907141417686,tank,0.0,0.0,0.0018888472088026483,0.0,0.0,0.0,0.0,0.0,10.410869468603071,0.0,0.0,0.0 +6205,my_reservoir,2011-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6206,gw1,2011-04-17,262.2911865213306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6207,gw2,2011-04-17,262.7088134786694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6208,my_sewer,2011-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6209,my_land,2011-04-18,0.9934940164055905,percolation,0.0,0.0,0.00013528548363493884,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6210,my_land,2011-04-18,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6211,my_land,2011-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6212,my_groundwater,2011-04-18,16.831997073183828,tank,0.0,0.0,0.0018868791166974958,0.0,0.0,0.0,0.0,0.0,10.40731011877627,0.0,0.0,0.0 +6213,my_reservoir,2011-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6214,gw1,2011-04-18,262.2925786111884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6215,gw2,2011-04-18,262.7074213888116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6216,my_sewer,2011-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6217,my_land,2011-04-19,0.9736241360774788,percolation,0.0,0.0,0.00013257977396224005,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6218,my_land,2011-04-19,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6219,my_land,2011-04-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6220,my_groundwater,2011-04-19,16.80973728612816,tank,0.0,0.0,0.0018848608643042691,0.0,0.0,0.0,0.0,0.0,10.403821533648127,0.0,0.0,0.0 +6221,my_reservoir,2011-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6222,gw1,2011-04-19,262.29396142044715,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6223,gw2,2011-04-19,262.70603857955285,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6224,my_sewer,2011-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6225,my_land,2011-04-20,0.9541516533559292,percolation,0.0,0.0,0.00012992817848299525,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6226,my_land,2011-04-20,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6227,my_land,2011-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6228,my_groundwater,2011-04-20,16.78713674442759,tank,0.0,0.0,0.0018827936786340552,0.0,0.0,0.0,0.0,0.0,10.400402153988384,0.0,0.0,0.0 +6229,my_reservoir,2011-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6230,gw1,2011-04-20,262.2953350109775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6231,gw2,2011-04-20,262.7046649890225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6232,my_sewer,2011-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6233,my_land,2011-04-21,0.9350686202888107,percolation,0.0,0.0,0.00012732961491333534,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6234,my_land,2011-04-21,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6235,my_land,2011-04-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6236,my_groundwater,2011-04-21,16.76420422805097,tank,0.0,0.0,0.0018806787615982057,0.0,0.0,0.0,0.0,0.0,10.397050460565811,0.0,0.0,0.0 +6237,my_reservoir,2011-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6238,gw1,2011-04-21,262.2966994442377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6239,gw2,2011-04-21,262.7033005557623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6240,my_sewer,2011-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6241,my_land,2011-04-22,0.9163672478830345,percolation,0.0,0.0,0.00012478302261506862,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6242,my_land,2011-04-22,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6243,my_land,2011-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6244,my_groundwater,2011-04-22,16.740948336455606,tank,0.0,0.0,0.0018785172905117311,0.0,0.0,0.0,0.0,0.0,10.393764972915067,0.0,0.0,0.0 +6245,my_reservoir,2011-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6246,gw1,2011-04-22,262.2980547812761,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6247,gw2,2011-04-22,262.7019452187239,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6248,my_sewer,2011-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6249,my_land,2011-04-23,0.8980399029253738,percolation,0.0,0.0,0.00012228736216276725,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6250,my_land,2011-04-23,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6251,my_land,2011-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6252,my_groundwater,2011-04-23,16.717377492209735,tank,0.0,0.0,0.0018763104185866224,0.0,0.0,0.0,0.0,0.0,10.390544248149116,0.0,0.0,0.0 +6253,my_reservoir,2011-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6254,gw1,2011-04-23,262.2994010827343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6255,gw2,2011-04-23,262.7005989172657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6256,my_sewer,2011-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6257,my_land,2011-04-24,0.8800791048668664,percolation,0.0,0.0,0.00011984161491951191,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6258,my_land,2011-04-24,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6259,my_land,2011-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6260,my_groundwater,2011-04-24,16.69349994454257,tank,0.0,0.0,0.001874059275415303,0.0,0.0,0.0,0.0,0.0,10.387386879815237,0.0,0.0,0.0 +6261,my_reservoir,2011-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6262,gw1,2011-04-24,262.3007384088494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6263,gw2,2011-04-24,262.6992615911506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6264,my_sewer,2011-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6265,my_land,2011-04-25,0.862477522769529,percolation,0.0,0.0,0.00011744478262112167,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6266,my_land,2011-04-25,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6267,my_land,2011-04-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6268,my_groundwater,2011-04-25,16.669323772823308,tank,0.0,0.0,0.0018717649674444088,0.0,0.0,0.0,0.0,0.0,10.384291496792725,0.0,0.0,0.0 +6269,my_reservoir,2011-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6270,gw1,2011-04-25,262.3020668194571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6271,gw2,2011-04-25,262.6979331805429,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6272,my_sewer,2011-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6273,my_land,2011-04-26,0.8452279723141385,percolation,0.0,0.0,0.00011509588696869923,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6274,my_land,2011-04-26,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6275,my_land,2011-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6276,my_groundwater,2011-04-26,16.6448568899705,tank,0.0,0.0,0.0018694285784390892,0.0,0.0,0.0,0.0,0.0,10.381256762230555,0.0,0.0,0.0 +6277,my_reservoir,2011-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6278,gw1,2011-04-26,262.30338637399404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6279,gw2,2011-04-26,262.69661362600596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6280,my_sewer,2011-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6281,my_land,2011-04-27,0.8283234128678557,percolation,0.0,0.0,0.00011279396922932525,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6282,my_land,2011-04-27,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6283,my_land,2011-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6284,my_groundwater,2011-04-27,16.62010704579324,tank,0.0,0.0,0.001867051169938017,0.0,0.0,0.0,0.0,0.0,10.378281372523274,0.0,0.0,0.0 +6285,my_reservoir,2011-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6286,gw1,2011-04-27,262.30469713150075,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6287,gw2,2011-04-27,262.69530286849925,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6288,my_sewer,2011-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6289,my_land,2011-04-28,0.8117569446104986,percolation,0.0,0.0,0.00011053808984473874,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6290,my_land,2011-04-28,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6291,my_land,2011-04-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6292,my_groundwater,2011-04-28,16.59508183026547,tank,0.0,0.0,0.001864633781699297,0.0,0.0,0.0,0.0,0.0,10.375364056323544,0.0,0.0,0.0 +6293,my_reservoir,2011-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6294,gw1,2011-04-28,262.3059991506241,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6295,gw2,2011-04-28,262.6940008493759,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6296,my_sewer,2011-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6297,my_land,2011-04-29,0.7955218057182887,percolation,0.0,0.0,0.00010832732804784396,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6298,my_land,2011-04-29,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6299,my_land,2011-04-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6300,my_groundwater,2011-04-29,16.569788676734788,tank,0.0,0.0,0.0018621774321374513,0.0,0.0,0.0,0.0,0.0,10.372503573589773,0.0,0.0,0.0 +6301,my_reservoir,2011-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6302,gw1,2011-04-29,262.3072924896199,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6303,gw2,2011-04-29,262.6927075103801,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6304,my_sewer,2011-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6305,my_land,2011-04-30,0.7796113696039229,percolation,0.0,0.0,0.00010616078148688708,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6306,my_land,2011-04-30,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6307,my_land,2011-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6308,my_groundwater,2011-04-30,16.54423486506703,tank,0.0,0.0,0.0018596831187516621,0.0,0.0,0.0,0.0,0.0,10.36969871466742,0.0,0.0,0.0 +6309,my_reservoir,2011-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6310,gw1,2011-04-30,262.3085772063558,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6311,gw2,2011-04-30,262.6914227936442,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6312,my_sewer,2011-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6313,my_land,2011-05-01,0.7640191422118444,percolation,0.0,0.0,0.00010403756585714934,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6314,my_land,2011-05-01,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6315,my_land,2011-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6316,my_groundwater,2011-05-01,16.51842752472796,tank,0.0,0.0,0.0018571518185454463,0.0,0.0,0.0,0.0,0.0,10.366948299402518,0.0,0.0,0.0 +6317,my_reservoir,2011-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6318,gw1,2011-05-01,262.30985335831343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6319,gw2,2011-05-01,262.69014664168657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6320,my_sewer,2011-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6321,my_land,2011-05-02,0.7487387593676075,percolation,0.0,0.0,0.00010195681454000635,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6322,my_land,2011-05-02,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6323,my_land,2011-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6324,my_groundwater,2011-05-02,16.492373637803265,tank,0.0,0.0,0.001854584488437933,0.0,0.0,0.0,0.0,0.0,10.364251176286162,0.0,0.0,0.0 +6325,my_reservoir,2011-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6326,gw1,2011-05-02,262.31112100259134,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6327,gw2,2011-05-02,262.68887899740866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6328,my_sewer,2011-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6329,my_land,2011-05-03,0.7337639841802553,percolation,0.0,0.0,9.991767824920623e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6330,my_land,2011-05-03,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6331,my_land,2011-05-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6332,my_groundwater,2011-05-03,16.46608004195814,tank,0.0,0.0,0.0018519820656669112,0.0,0.0,0.0,0.0,0.0,10.361606221628637,0.0,0.0,0.0 +6333,my_reservoir,2011-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6334,gw1,2011-05-03,262.3123801959074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6335,gw2,2011-05-03,262.6876198040926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6336,my_sewer,2011-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6337,my_land,2011-05-04,0.7190887044966502,percolation,0.0,0.0,9.79193246842221e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +6338,my_land,2011-05-04,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6339,my_land,2011-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6340,my_groundwater,2011-05-04,16.43955343333764,tank,0.0,0.0,0.0018493454681838156,0.0,0.0,0.0,0.0,0.0,10.359012338762025,0.0,0.0,0.0 +6341,my_reservoir,2011-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6342,gw1,2011-05-04,262.31363099460134,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6343,gw2,2011-05-04,262.68636900539866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6344,my_sewer,2011-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 +6345,my_land,2011-05-05,0.7047069304067172,percolation,0.0,0.0,9.596093819053766e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +6346,my_land,2011-05-05,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6347,my_land,2011-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6348,my_groundwater,2011-05-05,16.412800369409005,tank,0.0,0.0,0.0018466755950408064,0.0,0.0,0.0,0.0,0.0,10.356468457270125,0.0,0.0,0.0 +6349,my_reservoir,2011-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6350,gw1,2011-05-05,262.31487345463734,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6351,gw2,2011-05-05,262.68512654536266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6352,my_sewer,2011-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0 +6353,my_land,2011-05-06,0.6906127917985828,percolation,0.0,0.0,9.404171942672691e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +6354,my_land,2011-05-06,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6355,my_land,2011-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6356,my_groundwater,2011-05-06,16.385827271747097,tank,0.0,0.0,0.0018439733267701058,0.0,0.0,0.0,0.0,0.0,10.353973532244591,0.0,0.0,0.0 +6357,my_reservoir,2011-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6358,gw1,2011-05-06,262.3161076316064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6359,gw2,2011-05-06,262.6838923683936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6360,my_sewer,2011-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.613449076833332,0.0,0.0,0.0 +6361,my_land,2011-05-07,0.6768005359626111,percolation,0.0,0.0,9.216088503819238e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +6362,my_land,2011-05-07,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6363,my_land,2011-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6364,my_groundwater,2011-05-07,16.35864042876411,tank,0.0,0.0,0.0018412395257557438,0.0,0.0,0.0,0.0,0.0,10.351526543566235,0.0,0.0,0.0 +6365,my_reservoir,2011-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6366,gw1,2011-05-07,262.31733358072904,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6367,gw2,2011-05-07,262.68266641927096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6368,my_sewer,2011-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 +6369,my_land,2011-05-08,0.6632645252433589,percolation,0.0,0.0,9.031766733742853e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +6370,my_land,2011-05-08,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6371,my_land,2011-05-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6372,my_groundwater,2011-05-08,16.331245998384656,tank,0.0,0.0,0.0018384750365978665,0.0,0.0,0.0,0.0,0.0,10.349126495210518,0.0,0.0,0.0 +6373,my_reservoir,2011-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6374,gw1,2011-05-08,262.31855135685754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6375,gw2,2011-05-08,262.68144864314246,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6376,my_sewer,2011-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 +6377,my_land,2011-05-09,0.6499992347384917,percolation,0.0,0.0,8.851131399067997e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 +6378,my_land,2011-05-09,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6379,my_land,2011-05-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6380,my_groundwater,2011-05-09,16.3036500106673,tank,0.0,0.0,0.0018356806864697536,0.0,0.0,0.0,0.0,0.0,10.346772414576261,0.0,0.0,0.0 +6381,my_reservoir,2011-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6382,gw1,2011-05-09,262.3197610144785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6383,gw2,2011-05-09,262.6802389855215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6384,my_sewer,2011-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6385,my_land,2011-05-10,0.6369992500437219,percolation,0.0,0.0,8.674108771086636e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6386,my_land,2011-05-10,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6387,my_land,2011-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6388,my_groundwater,2011-05-10,16.275858370373665,tank,0.0,0.0,0.0018328572854676931,0.0,0.0,0.0,0.0,0.0,10.344463351836666,0.0,0.0,0.0 +6389,my_reservoir,2011-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6390,gw1,2011-05-10,262.32096260771533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6391,gw2,2011-05-10,262.67903739228467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6392,my_sewer,2011-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6393,my_land,2011-05-11,0.6242592650428475,percolation,0.0,0.0,8.500626595664903e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 +6394,my_land,2011-05-11,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6395,my_land,2011-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6396,my_groundwater,2011-05-11,16.2478768594861,tank,0.0,0.0,0.0018300056269538558,0.0,0.0,0.0,0.0,0.0,10.342198379311778,0.0,0.0,0.0 +6397,my_reservoir,2011-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6398,gw1,2011-05-11,262.3221561903306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6399,gw2,2011-05-11,262.6778438096694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6400,my_sewer,2011-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6401,my_land,2011-05-12,0.6117740797419905,percolation,0.0,0.0,8.330614063751606e-05,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 +6402,my_land,2011-05-12,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6403,my_land,2011-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6404,my_groundwater,2011-05-12,16.219711139674992,tank,0.0,0.0,0.0018271264878923063,0.0,0.0,0.0,0.0,0.0,10.33997659086157,0.0,0.0,0.0 +6405,my_reservoir,2011-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6406,gw1,2011-05-12,262.3233418157284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6407,gw2,2011-05-12,262.6766581842716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6408,my_sewer,2011-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6409,my_land,2011-05-13,0.5995385981471507,percolation,0.0,0.0,8.164001782476574e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6410,my_land,2011-05-13,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6411,my_land,2011-05-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6412,my_groundwater,2011-05-13,16.191366754716658,tank,0.0,0.0,0.001824220629178294,0.0,0.0,0.0,0.0,0.0,10.337797101298838,0.0,0.0,0.0 +6413,my_reservoir,2011-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6414,gw1,2011-05-13,262.32451953695687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6415,gw2,2011-05-13,262.67548046304313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6416,my_sewer,2011-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6417,my_land,2011-05-14,0.5875478261842078,percolation,0.0,0.0,8.000721746827042e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6418,my_land,2011-05-14,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6419,my_land,2011-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6420,my_groundwater,2011-05-14,16.162849132862902,tank,0.0,0.0,0.0018212887959609524,0.0,0.0,0.0,0.0,0.0,10.335659045821163,0.0,0.0,0.0 +6421,my_reservoir,2011-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6422,gw1,2011-05-14,262.32568940671047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6423,gw2,2011-05-14,262.67431059328953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6424,my_sewer,2011-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6425,my_land,2011-05-15,0.5757968696605236,percolation,0.0,0.0,7.840707311890501e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6426,my_land,2011-05-15,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6427,my_land,2011-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6428,my_groundwater,2011-05-15,16.13416358916312,tank,0.0,0.0,0.001818331717959542,0.0,0.0,0.0,0.0,0.0,10.333561579461199,0.0,0.0,0.0 +6429,my_reservoir,2011-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6430,gw1,2011-05-15,262.3268514773324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6431,gw2,2011-05-15,262.6731485226676,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6432,my_sewer,2011-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6433,my_land,2011-05-16,0.5642809322673131,percolation,0.0,0.0,7.683893165652691e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6434,my_land,2011-05-16,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6435,my_land,2011-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6436,my_groundwater,2011-05-16,16.105315327739937,tank,0.0,0.0,0.0018153501097733652,0.0,0.0,0.0,0.0,0.0,10.331503876554612,0.0,0.0,0.0 +6437,my_reservoir,2011-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6438,gw1,2011-05-16,262.32800580081687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6439,gw2,2011-05-16,262.67199419918313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6440,my_sewer,2011-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6441,my_land,2011-05-17,0.5529953136219669,percolation,0.0,0.0,7.530215302339637e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6442,my_land,2011-05-17,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6443,my_land,2011-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6444,my_groundwater,2011-05-17,16.07630944401932,tank,0.0,0.0,0.0018123446711854794,0.0,0.0,0.0,0.0,0.0,10.32948513022499,0.0,0.0,0.0 +6445,my_reservoir,2011-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6446,gw1,2011-05-17,262.3291524288114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6447,gw2,2011-05-17,262.6708475711886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6448,my_sewer,2011-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6449,my_land,2011-05-18,0.5419354073495275,percolation,0.0,0.0,7.379610996292843e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6450,my_land,2011-05-18,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6451,my_land,2011-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6452,my_groundwater,2011-05-18,16.04715092691603,tank,0.0,0.0,0.0018093160874603326,0.0,0.0,0.0,0.0,0.0,10.327504551885086,0.0,0.0,0.0 +6453,my_reservoir,2011-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6454,gw1,2011-05-18,262.3302914126194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6455,gw2,2011-05-18,262.6697085873806,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6456,my_sewer,2011-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6457,my_land,2011-05-19,0.531096699202537,percolation,0.0,0.0,7.232018776366987e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6458,my_land,2011-05-19,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6459,my_land,2011-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6460,my_groundwater,2011-05-19,16.017844660975364,tank,0.0,0.0,0.0018062650296354421,0.0,0.0,0.0,0.0,0.0,10.325561370753816,0.0,0.0,0.0 +6461,my_reservoir,2011-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6462,gw1,2011-05-19,262.3314228032019,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6463,gw2,2011-05-19,262.6685771967981,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6464,my_sewer,2011-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6465,my_land,2011-05-20,0.5204747652184862,percolation,0.0,0.0,7.087378400839648e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6466,my_land,2011-05-20,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6467,my_land,2011-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6468,my_groundwater,2011-05-20,15.988395428472016,tank,0.0,0.0,0.0018031921548072388,0.0,0.0,0.0,0.0,0.0,10.323654833388376,0.0,0.0,0.0 +6469,my_reservoir,2011-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6470,gw1,2011-05-20,262.33254665118056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6471,gw2,2011-05-20,262.66745334881944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6472,my_sewer,2011-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6473,my_land,2011-05-21,0.5100652699141165,percolation,0.0,0.0,6.945630832822854e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6474,my_land,2011-05-21,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6475,my_land,2011-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6476,my_groundwater,2011-05-21,15.958807911466945,tank,0.0,0.0,0.0018000981064111882,0.0,0.0,0.0,0.0,0.0,10.32178420323098,0.0,0.0,0.0 +6477,my_reservoir,2011-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6478,gw1,2011-05-21,262.33366300683934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6479,gw2,2011-05-21,262.66633699316066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6480,my_sewer,2011-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6481,my_land,2011-05-22,0.49986396451583415,percolation,0.0,0.0,6.806718216166398e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6482,my_land,2011-05-22,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6483,my_land,2011-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6484,my_groundwater,2011-05-22,15.929086693823065,tank,0.0,0.0,0.0017969835144963082,0.0,0.0,0.0,0.0,0.0,10.319948760169625,0.0,0.0,0.0 +6485,my_reservoir,2011-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6486,gw1,2011-05-22,262.3347719201271,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6487,gw2,2011-05-22,262.6652280798729,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6488,my_sewer,2011-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6489,my_land,2011-05-23,0.48986668522551746,percolation,0.0,0.0,6.67058385184307e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6490,my_land,2011-05-23,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6491,my_land,2011-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6492,my_groundwater,2011-05-23,15.8992362631806,tank,0.0,0.0,0.0017938489959941927,0.0,0.0,0.0,0.0,0.0,10.318147800112447,0.0,0.0,0.0 +6493,my_reservoir,2011-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6494,gw1,2011-05-23,262.33587344065955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6495,gw2,2011-05-23,262.66412655934045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6496,my_sewer,2011-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6497,my_land,2011-05-24,0.4800693515210071,percolation,0.0,0.0,6.537172174806208e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6498,my_land,2011-05-24,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6499,my_land,2011-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6500,my_groundwater,2011-05-24,15.869261012892897,tank,0.0,0.0,0.00179069515498265,0.0,0.0,0.0,0.0,0.0,10.31638063457508,0.0,0.0,0.0 +6501,my_reservoir,2011-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6502,gw1,2011-05-24,262.3369676177218,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6503,gw2,2011-05-24,262.6630323822782,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6504,my_sewer,2011-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 +6505,my_land,2011-05-25,0.470467964490587,percolation,0.0,0.0,6.406428731310084e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6506,my_land,2011-05-25,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6507,my_land,2011-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6508,my_groundwater,2011-05-25,15.839165243923508,tank,0.0,0.0,0.001787522582944067,0.0,0.0,0.0,0.0,0.0,10.314646590280635,0.0,0.0,0.0 +6509,my_reservoir,2011-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6510,gw1,2011-05-25,262.33805450027035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6511,gw2,2011-05-25,262.66194549972965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6512,my_sewer,2011-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 +6513,my_land,2011-05-26,0.46105860520077524,percolation,0.0,0.0,6.278300156683882e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6514,my_land,2011-05-26,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6515,my_land,2011-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6516,my_groundwater,2011-05-26,15.808953166705287,tank,0.0,0.0,0.0017843318590186033,0.0,0.0,0.0,0.0,0.0,10.312945008771804,0.0,0.0,0.0 +6517,my_reservoir,2011-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6518,gw1,2011-05-26,262.33913413693523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6519,gw2,2011-05-26,262.66086586306477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6520,my_sewer,2011-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 +6521,my_land,2011-05-27,0.4518374330967597,percolation,0.0,0.0,6.152734153550204e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6522,my_land,2011-05-27,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6523,my_land,2011-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6524,my_groundwater,2011-05-27,15.778628902962279,tank,0.0,0.0,0.0017811235502523152,0.0,0.0,0.0,0.0,0.0,10.311275246034668,0.0,0.0,0.0 +6525,my_reservoir,2011-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6526,gw1,2011-05-27,262.34020657602235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6527,gw2,2011-05-27,262.65979342397765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6528,my_sewer,2011-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 +6529,my_land,2011-05-28,0.4428006844348245,percolation,0.0,0.0,6.0296794704792e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6530,my_land,2011-05-28,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6531,my_land,2011-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6532,my_groundwater,2011-05-28,15.748196487495154,tank,0.0,0.0,0.0017778982118403178,0.0,0.0,0.0,0.0,0.0,10.30963667213378,0.0,0.0,0.0 +6533,my_reservoir,2011-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6534,gw1,2011-05-28,262.3412718655155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6535,gw2,2011-05-28,262.6587281344845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6536,my_sewer,2011-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 +6537,my_land,2011-05-29,0.433944670746128,percolation,0.0,0.0,5.9090858810696154e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6538,my_land,2011-05-29,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6539,my_land,2011-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6540,my_groundwater,2011-05-29,15.71765986993089,tank,0.0,0.0,0.0017746563873650778,0.0,0.0,0.0,0.0,0.0,10.30802867085816,0.0,0.0,0.0 +6541,my_reservoir,2011-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6542,gw1,2011-05-29,262.34233005307874,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6543,gw2,2011-05-29,262.65766994692126,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6544,my_sewer,2011-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6545,my_land,2011-05-30,0.42526577733120546,percolation,0.0,0.0,5.790904163448223e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6546,my_land,2011-05-30,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6547,my_land,2011-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6548,my_groundwater,2011-05-30,15.687022916437448,tank,0.0,0.0,0.0017713986090299384,0.0,0.0,0.0,0.0,0.0,10.306450639377772,0.0,0.0,0.0 +6549,my_reservoir,2011-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6550,gw1,2011-05-30,262.3433811860582,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6551,gw2,2011-05-30,262.6566188139418,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6552,my_sewer,2011-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6553,my_land,2011-05-31,0.41676046178458137,percolation,0.0,0.0,5.675086080179258e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6554,my_land,2011-05-31,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6555,my_land,2011-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6556,my_groundwater,2011-05-31,15.656289411404112,tank,0.0,0.0,0.0017681253978879714,0.0,0.0,0.0,0.0,0.0,10.304901987910164,0.0,0.0,0.0 +6557,my_reservoir,2011-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6558,gw1,2011-05-31,262.3444253114845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6559,gw2,2011-05-31,262.6555746885155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6560,my_sewer,2011-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6561,my_land,2011-06-01,0.40842525254888973,percolation,0.0,0.0,5.561584358575673e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6562,my_land,2011-06-01,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6563,my_land,2011-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6564,my_groundwater,2011-06-01,15.625463059088203,tank,0.0,0.0,0.0017648372640662474,0.0,0.0,0.0,0.0,0.0,10.30338213939689,0.0,0.0,0.0 +6565,my_reservoir,2011-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6566,gw1,2011-06-01,262.3454624760746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6567,gw2,2011-06-01,262.6545375239254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6568,my_sewer,2011-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6569,my_land,2011-06-02,0.40025674749791196,percolation,0.0,0.0,5.45035267140416e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6570,my_land,2011-06-02,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6571,my_land,2011-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6572,my_groundwater,2011-06-02,15.594547485228833,tank,0.0,0.0,0.0017615347069856178,0.0,0.0,0.0,0.0,0.0,10.301890529189372,0.0,0.0,0.0 +6573,my_reservoir,2011-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6574,gw1,2011-06-02,262.3464927262341,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6575,gw2,2011-06-02,262.6535072737659,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6576,my_sewer,2011-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6577,my_land,2011-06-03,0.3922516125479537,percolation,0.0,0.0,5.341345617976077e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6578,my_land,2011-06-03,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6579,my_land,2011-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6580,my_groundwater,2011-06-03,15.563546238628344,tank,0.0,0.0,0.0017582182155760988,0.0,0.0,0.0,0.0,0.0,10.300426604743917,0.0,0.0,0.0 +6581,my_reservoir,2011-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6582,gw1,2011-06-03,262.3475161080592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6583,gw2,2011-06-03,262.6524838919408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6584,my_sewer,2011-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6585,my_land,2011-06-04,0.38440658029699465,percolation,0.0,0.0,5.2345187056165555e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6586,my_land,2011-06-04,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6587,my_land,2011-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6588,my_groundwater,2011-06-04,15.532462792702106,tank,0.0,0.0,0.0017548882684879448,0.0,0.0,0.0,0.0,0.0,10.298989825325517,0.0,0.0,0.0 +6589,my_reservoir,2011-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6590,gw1,2011-06-04,262.3485326673388,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6591,gw2,2011-06-04,262.6514673326612,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6592,my_sewer,2011-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6593,my_land,2011-06-05,0.37671844869105475,percolation,0.0,0.0,5.1298283315042246e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6594,my_land,2011-06-05,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6595,my_land,2011-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6596,my_groundwater,2011-06-05,15.501300546997276,tank,0.0,0.0,0.0017515453342984955,0.0,0.0,0.0,0.0,0.0,10.297579661720192,0.0,0.0,0.0 +6597,my_reservoir,2011-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6598,gw1,2011-06-05,262.34954244955657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6599,gw2,2011-06-05,262.65045755044343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6600,my_sewer,2011-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 +6601,my_land,2011-06-06,0.36918407971723366,percolation,0.0,0.0,5.02723176487414e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +6602,my_land,2011-06-06,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6603,my_land,2011-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6604,my_groundwater,2011-06-06,15.47006282868117,tank,0.0,0.0,0.0017481898717148843,0.0,0.0,0.0,0.0,0.0,10.296195595955549,0.0,0.0,0.0 +6605,my_reservoir,2011-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6606,gw1,2011-06-06,262.35054549989286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6607,gw2,2011-06-06,262.64945450010714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6608,my_sewer,2011-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 +6609,my_land,2011-06-07,0.361800398122889,percolation,0.0,0.0,4.926687129576657e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769714,0.0,0.0,0.0 +6610,my_land,2011-06-07,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6611,my_land,2011-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6612,my_groundwater,2011-06-07,15.438752893999826,tank,0.0,0.0,0.0017448223297726897,0.0,0.0,0.0,0.0,0.0,10.294837121029294,0.0,0.0,0.0 +6613,my_reservoir,2011-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6614,gw1,2011-06-07,262.3515418632269,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6615,gw2,2011-06-07,262.6484581367731,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6616,my_sewer,2011-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 +6617,my_land,2011-06-08,0.35456439016043123,percolation,0.0,0.0,4.828153386985124e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +6618,my_land,2011-06-08,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6619,my_land,2011-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6620,my_groundwater,2011-06-08,15.40737392970738,tank,0.0,0.0,0.0017414431480306085,0.0,0.0,0.0,0.0,0.0,10.293503740645438,0.0,0.0,0.0 +6621,my_reservoir,2011-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6622,gw1,2011-06-08,262.3525315841387,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6623,gw2,2011-06-08,262.6474684158613,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6624,my_sewer,2011-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 +6625,my_land,2011-06-09,0.3474731023572226,percolation,0.0,0.0,4.7315903192454214e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +6626,my_land,2011-06-09,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6627,my_land,2011-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6628,my_groundwater,2011-06-09,15.37592905446681,tank,0.0,0.0,0.0017380527567612354,0.0,0.0,0.0,0.0,0.0,10.292194968957922,0.0,0.0,0.0 +6629,my_reservoir,2011-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6630,gw1,2011-06-09,262.35351470691114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6631,gw2,2011-06-09,262.64648529308886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6632,my_sewer,2011-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0 +6633,my_land,2011-06-10,0.34052364031007815,percolation,0.0,0.0,4.636958512860513e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +6634,my_land,2011-06-10,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6635,my_land,2011-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6636,my_groundwater,2011-06-10,15.34442132022267,tank,0.0,0.0,0.0017346515771380216,0.0,0.0,0.0,0.0,0.0,10.290910330321443,0.0,0.0,0.0 +6637,my_reservoir,2011-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6638,gw1,2011-06-10,262.35449127553176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6639,gw2,2011-06-10,262.64550872446824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6640,my_sewer,2011-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0 +6641,my_land,2011-06-11,0.3337131675038766,percolation,0.0,0.0,4.5442193426033026e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +6642,my_land,2011-06-11,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6643,my_land,2011-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6644,my_groundwater,2011-06-11,15.3128537135463,tank,0.0,0.0,0.0017312400214184922,0.0,0.0,0.0,0.0,0.0,10.289649359049209,0.0,0.0,0.0 +6645,my_reservoir,2011-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6646,gw1,2011-06-11,262.3554613336949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6647,gw2,2011-06-11,262.6445386663051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6648,my_sewer,2011-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 +6649,my_land,2011-06-12,0.32703890415379905,percolation,0.0,0.0,4.4533349557512366e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 +6650,my_land,2011-06-12,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6651,my_land,2011-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6652,my_groundwater,2011-06-12,15.281229156954137,tank,0.0,0.0,0.0017278184931237954,0.0,0.0,0.0,0.0,0.0,10.288411599177428,0.0,0.0,0.0 +6653,my_reservoir,2011-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6654,gw1,2011-06-12,262.3564249248036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6655,gw2,2011-06-12,262.6435750751964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6656,my_sewer,2011-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 +6657,my_land,2011-06-13,0.3204981260707231,percolation,0.0,0.0,4.364268256636212e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6658,my_land,2011-06-13,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6659,my_land,2011-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6660,my_groundwater,2011-06-13,15.24955051019962,tank,0.0,0.0,0.001724387387214658,0.0,0.0,0.0,0.0,0.0,10.287196604236305,0.0,0.0,0.0 +6661,my_reservoir,2011-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6662,gw1,2011-06-13,262.3573820919716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6663,gw2,2011-06-13,262.6426179080284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6664,my_sewer,2011-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +6665,my_land,2011-06-14,0.31408816354930863,percolation,0.0,0.0,4.276982891503488e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6666,my_land,2011-06-14,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6667,my_land,2011-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6668,my_groundwater,2011-06-14,15.217820571539233,tank,0.0,0.0,0.0017209470902638203,0.0,0.0,0.0,0.0,0.0,10.286003937027319,0.0,0.0,0.0 +6669,my_reservoir,2011-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6670,gw1,2011-06-14,262.3583328780251,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6671,gw2,2011-06-14,262.6416671219749,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6672,my_sewer,2011-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +6673,my_land,2011-06-15,0.30780640027832246,percolation,0.0,0.0,4.191443233673418e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 +6674,my_land,2011-06-15,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6675,my_land,2011-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6676,my_groundwater,2011-06-15,15.186042078973193,tank,0.0,0.0,0.0017174979806250158,0.0,0.0,0.0,0.0,0.0,10.28483316940658,0.0,0.0,0.0 +6677,my_reservoir,2011-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6678,gw1,2011-06-15,262.35927732550493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6679,gw2,2011-06-15,262.64072267449507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6680,my_sewer,2011-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +6681,my_land,2011-06-16,0.301650272272756,percolation,0.0,0.0,4.10761436899995e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6682,my_land,2011-06-16,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6683,my_land,2011-06-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6684,my_groundwater,2011-06-16,15.154217711461312,tank,0.0,0.0,0.0017140404285985711,0.0,0.0,0.0,0.0,0.0,10.283683882074108,0.0,0.0,0.0 +6685,my_reservoir,2011-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6686,gw1,2011-06-16,262.36021547666826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6687,gw2,2011-06-16,262.63978452333174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6688,my_sewer,2011-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +6689,my_land,2011-06-17,0.2956172668273009,percolation,0.0,0.0,4.025462081619951e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6690,my_land,2011-06-17,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6691,my_land,2011-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6692,my_groundwater,2011-06-17,15.1223500901145,tank,0.0,0.0,0.0017105747965936902,0.0,0.0,0.0,0.0,0.0,10.282555664368788,0.0,0.0,0.0 +6693,my_reservoir,2011-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6694,gw1,2011-06-17,262.3611473734905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6695,gw2,2011-06-17,262.6388526265095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6696,my_sewer,2011-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 +6697,my_land,2011-06-18,0.2897049214907549,percolation,0.0,0.0,3.944952839987552e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6698,my_land,2011-06-18,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6699,my_land,2011-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6700,my_groundwater,2011-06-18,15.090441779362418,tank,0.0,0.0,0.0017071014392874891,0.0,0.0,0.0,0.0,0.0,10.281448114068862,0.0,0.0,0.0 +6701,my_reservoir,2011-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6702,gw1,2011-06-18,262.3620730576672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6703,gw2,2011-06-18,262.6379269423328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6704,my_sewer,2011-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 +6705,my_land,2011-06-19,0.2839108230609398,percolation,0.0,0.0,3.866053783187801e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6706,my_land,2011-06-19,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6707,my_land,2011-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6708,my_groundwater,2011-06-19,15.058495288097753,tank,0.0,0.0,0.001703620703780848,0.0,0.0,0.0,0.0,0.0,10.280360837197781,0.0,0.0,0.0 +6709,my_reservoir,2011-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6710,gw1,2011-06-19,262.3629925706161,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6711,gw2,2011-06-19,262.6370074293839,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6712,my_sewer,2011-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 +6713,my_land,2011-06-20,0.278232606599721,percolation,0.0,0.0,3.788732707524045e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6714,my_land,2011-06-20,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6715,my_land,2011-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6716,my_groundwater,2011-06-20,15.026513070797574,tank,0.0,0.0,0.0017001329297511418,0.0,0.0,0.0,0.0,0.0,10.279293447835212,0.0,0.0,0.0 +6717,my_reservoir,2011-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6718,gw1,2011-06-20,262.36390595347865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6719,gw2,2011-06-20,262.63609404652135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6720,my_sewer,2011-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 +6721,my_land,2011-06-21,0.27266795446772657,percolation,0.0,0.0,3.712958053373564e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6722,my_land,2011-06-21,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6723,my_land,2011-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6724,my_groundwater,2011-06-21,14.994497528622244,tank,0.0,0.0,0.0016966384496019148,0.0,0.0,0.0,0.0,0.0,10.278245567933084,0.0,0.0,0.0 +6725,my_reservoir,2011-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6726,gw1,2011-06-21,262.36481324712213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6727,gw2,2011-06-21,262.63518675287787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6728,my_sewer,2011-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 +6729,my_land,2011-06-22,0.26721459537837206,percolation,0.0,0.0,3.638698892306093e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6730,my_land,2011-06-22,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6731,my_land,2011-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6732,my_groundwater,2011-06-22,14.96245101049232,tank,0.0,0.0,0.001693137588609558,0.0,0.0,0.0,0.0,0.0,10.277216827136492,0.0,0.0,0.0 +6733,my_reservoir,2011-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6734,gw1,2011-06-22,262.3657144921413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6735,gw2,2011-06-22,262.6342855078587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6736,my_sewer,2011-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 +6737,my_land,2011-06-23,0.2618703034708046,percolation,0.0,0.0,3.565924914459971e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6738,my_land,2011-06-23,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6739,my_land,2011-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6740,my_groundwater,2011-06-23,14.930375814143888,tank,0.0,0.0,0.001689630665067049,0.0,0.0,0.0,0.0,0.0,10.27620686260932,0.0,0.0,0.0 +6741,my_reservoir,2011-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6742,gw1,2011-06-23,262.36660972886034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6743,gw2,2011-06-23,262.63339027113966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6744,my_sewer,2011-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6745,my_land,2011-06-24,0.2566328974013885,percolation,0.0,0.0,3.494606416170772e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6746,my_land,2011-06-24,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6747,my_land,2011-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6748,my_groundwater,2011-06-24,14.89827418716277,tank,0.0,0.0,0.0016861179904248162,0.0,0.0,0.0,0.0,0.0,10.275215318864404,0.0,0.0,0.0 +6749,my_reservoir,2011-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6750,gw1,2011-06-24,262.3674989973346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6751,gw2,2011-06-24,262.6325010026654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6752,my_sewer,2011-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6753,my_land,2011-06-25,0.25150023945336075,percolation,0.0,0.0,3.4247142878473564e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6754,my_land,2011-06-25,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6755,my_land,2011-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6756,my_groundwater,2011-06-25,14.86614832799802,tank,0.0,0.0,0.0016825998694287802,0.0,0.0,0.0,0.0,0.0,10.274241847598166,0.0,0.0,0.0 +6757,my_reservoir,2011-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6758,gw1,2011-06-25,262.3683823373524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6759,gw2,2011-06-25,262.6316176626476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6760,my_sewer,2011-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6761,my_land,2011-06-26,0.24647023466429355,percolation,0.0,0.0,3.356220002090409e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6762,my_land,2011-06-26,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6763,my_land,2011-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6764,my_groundwater,2011-06-26,14.83400038695512,tank,0.0,0.0,0.0016790766002556339,0.0,0.0,0.0,0.0,0.0,10.273286107529495,0.0,0.0,0.0 +6765,my_reservoir,2011-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6766,gw1,2011-06-26,262.3692597884367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6767,gw2,2011-06-26,262.6307402115633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6768,my_sewer,2011-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6769,my_land,2011-06-27,0.24154082997100768,percolation,0.0,0.0,3.289095602048601e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6770,my_land,2011-06-27,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6771,my_land,2011-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6772,my_groundwater,2011-06-27,14.801832467169286,tank,0.0,0.0,0.0016755484746454117,0.0,0.0,0.0,0.0,0.0,10.272347764242824,0.0,0.0,0.0 +6773,my_reservoir,2011-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6774,gw1,2011-06-27,262.37013138984713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6775,gw2,2011-06-27,262.62986861015287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6776,my_sewer,2011-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6777,my_land,2011-06-28,0.23671001337158754,percolation,0.0,0.0,3.2233136900076285e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6778,my_land,2011-06-28,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6779,my_land,2011-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6780,my_groundwater,2011-06-28,14.769646625559282,tank,0.0,0.0,0.0016720157780314069,0.0,0.0,0.0,0.0,0.0,10.27142649003522,0.0,0.0,0.0 +6781,my_reservoir,2011-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6782,gw1,2011-06-28,262.37099718058147,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6783,gw2,2011-06-28,262.62900281941853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6784,my_sewer,2011-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6785,my_land,2011-06-29,0.2319758131041558,percolation,0.0,0.0,3.158847416207476e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6786,my_land,2011-06-29,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6787,my_land,2011-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6788,my_groundwater,2011-06-29,14.737444873762147,tank,0.0,0.0,0.001668478789667485,0.0,0.0,0.0,0.0,0.0,10.270521963767399,0.0,0.0,0.0 +6789,my_reservoir,2011-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6790,gw1,2011-06-29,262.3718571993776,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6791,gw2,2011-06-29,262.6281428006224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6792,my_sewer,2011-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6793,my_land,2011-06-30,0.22733629684207268,percolation,0.0,0.0,3.0956704678833263e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6794,my_land,2011-06-30,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6795,my_land,2011-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6796,my_groundwater,2011-06-30,14.70522917904917,tank,0.0,0.0,0.0016649377827528497,0.0,0.0,0.0,0.0,0.0,10.26963387071854,0.0,0.0,0.0 +6797,my_reservoir,2011-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6798,gw1,2011-06-30,262.37271148471507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6799,gw2,2011-06-30,262.62728851528493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6800,my_sewer,2011-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6801,my_land,2011-07-01,0.22278957090523122,percolation,0.0,0.0,3.03375705852566e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 +6802,my_land,2011-07-01,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6803,my_land,2011-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6804,my_groundwater,2011-07-01,14.673001465223544,tank,0.0,0.0,0.0016613930245543103,0.0,0.0,0.0,0.0,0.0,10.268761902444774,0.0,0.0,0.0 +6805,my_reservoir,2011-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6806,gw1,2011-07-01,262.37356007481696,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6807,gw2,2011-07-01,262.62643992518304,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6808,my_sewer,2011-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6809,my_land,2011-07-02,0.2183337794871266,percolation,0.0,0.0,2.9730819173551466e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6810,my_land,2011-07-02,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6811,my_land,2011-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6812,my_groundwater,2011-07-02,14.640763613500045,tank,0.0,0.0,0.0016578447765261005,0.0,0.0,0.0,0.0,0.0,10.267905756641264,0.0,0.0,0.0 +6813,my_reservoir,2011-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6814,gw1,2011-07-02,262.3744030076515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6815,gw2,2011-07-02,262.6255969923485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6816,my_sewer,2011-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6817,my_land,2011-07-03,0.21396710389738408,percolation,0.0,0.0,2.9136202790080437e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6818,my_land,2011-07-03,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6819,my_land,2011-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6820,my_groundwater,2011-07-03,14.608517463367065,tank,0.0,0.0,0.0016542932944272975,0.0,0.0,0.0,0.0,0.0,10.267065137007718,0.0,0.0,0.0 +6821,my_reservoir,2011-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6822,gw1,2011-07-03,262.3752403209338,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6823,gw2,2011-07-03,262.6247596790662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6824,my_sewer,2011-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 +6825,my_land,2011-07-04,0.20968776181943638,percolation,0.0,0.0,2.855347873427883e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6826,my_land,2011-07-04,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6827,my_land,2011-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6828,my_groundwater,2011-07-04,14.5762648134314,tank,0.0,0.0,0.0016507388284368915,0.0,0.0,0.0,0.0,0.0,10.26623975311733,0.0,0.0,0.0 +6829,my_reservoir,2011-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6830,gw1,2011-07-04,262.3760720521276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6831,gw2,2011-07-04,262.6239279478724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6832,my_sewer,2011-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0 +6833,my_land,2011-07-05,0.20549400658304764,percolation,0.0,0.0,2.798240915959325e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6834,my_land,2011-07-05,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6835,my_land,2011-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6836,my_groundwater,2011-07-05,14.54400742224612,tank,0.0,0.0,0.0016471816232665481,0.0,0.0,0.0,0.0,0.0,10.265429320288932,0.0,0.0,0.0 +6837,my_reservoir,2011-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6838,gw1,2011-07-05,262.37689823844676,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6839,gw2,2011-07-05,262.62310176155324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6840,my_sewer,2011-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0 +6841,my_land,2011-07-06,0.2013841264513867,percolation,0.0,0.0,2.7422760976401385e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6842,my_land,2011-07-06,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6843,my_land,2011-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6844,my_groundwater,2011-07-06,14.511747009121837,tank,0.0,0.0,0.0016436219182711157,0.0,0.0,0.0,0.0,0.0,10.264633559462345,0.0,0.0,0.0 +6845,my_reservoir,2011-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6846,gw1,2011-07-06,262.37771891685713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6847,gw2,2011-07-06,262.62228108314287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6848,my_sewer,2011-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0 +6849,my_land,2011-07-07,0.19735644392235896,percolation,0.0,0.0,2.687430575687336e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6850,my_land,2011-07-07,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6851,my_land,2011-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6852,my_groundwater,2011-07-07,14.479485254921737,tank,0.0,0.0,0.0016400599475569172,0.0,0.0,0.0,0.0,0.0,10.263852197076819,0.0,0.0,0.0 +6853,my_reservoir,2011-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6854,gw1,2011-07-07,262.3785341240781,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6855,gw2,2011-07-07,262.6214658759219,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6856,my_sewer,2011-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6857,my_land,2011-07-08,0.1934093150439118,percolation,0.0,0.0,2.633681964173589e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6858,my_land,2011-07-08,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6859,my_land,2011-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 +6860,my_groundwater,2011-07-08,14.447223802840684,tank,0.0,0.0,0.0016364959400878745,0.0,0.0,0.0,0.0,0.0,10.263084964952448,0.0,0.0,0.0 +6861,my_reservoir,2011-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6862,gw1,2011-07-08,262.37934389658426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6863,gw2,2011-07-08,262.62065610341574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6864,my_sewer,2011-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6865,my_land,2011-07-09,0.18954112874303355,percolation,0.0,0.0,2.5810083248901173e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6866,my_land,2011-07-09,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.583429311833386e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6867,my_land,2011-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 +6868,my_groundwater,2011-07-09,14.414964259168707,tank,0.0,0.0,0.0016329301197895074,0.0,0.0,0.0,0.0,0.0,10.262331600174514,0.0,0.0,0.0 +6869,my_reservoir,2011-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6870,gw1,2011-07-09,262.38014827060704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6871,gw2,2011-07-09,262.61985172939296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6872,my_sewer,2011-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6873,my_land,2011-07-10,0.1857503061681729,percolation,0.0,0.0,2.5293881583923148e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6874,my_land,2011-07-10,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6875,my_land,2011-07-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 +6876,my_groundwater,2011-07-10,14.382708194039209,tank,0.0,0.0,0.0016293627056508493,0.0,0.0,0.0,0.0,0.0,10.261591844980638,0.0,0.0,0.0 +6877,my_reservoir,2011-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6878,gw1,2011-07-10,262.38094728213633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6879,gw2,2011-07-10,262.61905271786367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6880,my_sewer,2011-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6881,my_land,2011-07-11,0.18203530004480944,percolation,0.0,0.0,2.4788003952244684e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6882,my_land,2011-07-11,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6883,my_land,2011-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 +6884,my_groundwater,2011-07-11,14.350457142162165,tank,0.0,0.0,0.0016257939118243215,0.0,0.0,0.0,0.0,0.0,10.260865446650682,0.0,0.0,0.0 +6885,my_reservoir,2011-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6886,gw1,2011-07-11,262.3817409669221,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6887,gw2,2011-07-11,262.6182590330779,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6888,my_sewer,2011-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6889,my_land,2011-07-12,0.17839459404391325,percolation,0.0,0.0,2.429224387319979e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6890,my_land,2011-07-12,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6891,my_land,2011-07-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 +6892,my_groundwater,2011-07-12,14.318212603542653,tank,0.0,0.0,0.001622223947723608,0.0,0.0,0.0,0.0,0.0,10.260152157399316,0.0,0.0,0.0 +6893,my_reservoir,2011-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6894,gw1,2011-07-12,262.382529360476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6895,gw2,2011-07-12,262.617470639524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6896,my_sewer,2011-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6897,my_land,2011-07-13,0.17482670216303497,percolation,0.0,0.0,2.3806398995735792e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6898,my_land,2011-07-13,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6899,my_land,2011-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 +6900,my_groundwater,2011-07-13,14.285976044184974,tank,0.0,0.0,0.0016186530181195693,0.0,0.0,0.0,0.0,0.0,10.259451734271183,0.0,0.0,0.0 +6901,my_reservoir,2011-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6902,gw1,2011-07-13,262.3833124980728,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6903,gw2,2011-07-13,262.6166875019272,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6904,my_sewer,2011-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 +6905,my_land,2011-07-14,0.17133016811977428,percolation,0.0,0.0,2.3330271015821078e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 +6906,my_land,2011-07-14,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 +6907,my_land,2011-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 +6908,my_groundwater,2011-07-14,14.253748896782664,tank,0.0,0.0,0.0016150813232342354,0.0,0.0,0.0,0.0,0.0,10.25876393903857,0.0,0.0,0.0 +6909,my_reservoir,2011-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6910,gw1,2011-07-14,262.38409041475234,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6911,gw2,2011-07-14,262.61590958524766,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6912,my_sewer,2011-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0 +6913,my_land,2011-07-15,0.31230748761423277,percolation,0.0,0.0,5.5422478629589825e-05,0.0,0.0,0.0,0.0,0.0,11.36059014416983,0.0,0.0,0.0 +6914,my_land,2011-07-15,0.039296216735206106,subsurface_runoff,0.0,0.0,8.859907636000779e-06,0.0,0.0,0.0,0.0,0.0,15.908568901003205,0.0,0.0,0.0 +6915,my_land,2011-07-15,1.77914550048067e-18,surface_runoff,0.0,0.0,2.1718084722664428e-22,0.0,0.0,0.0,0.0,0.0,16.327237852092,0.0,0.0,0.0 +6916,my_groundwater,2011-07-15,14.224472212681427,tank,0.0,0.0,0.0016121718632411092,0.0,0.0,0.0,0.0,0.0,10.259256404930643,0.0,0.0,0.0 +6917,my_reservoir,2011-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6918,gw1,2011-07-15,262.38486314532065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6919,gw2,2011-07-15,262.61513685467935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6920,my_sewer,2011-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 +6921,my_land,2011-07-16,0.6844040886886951,percolation,0.0,0.0,0.000135942387415083,0.0,0.0,0.0,0.0,0.0,13.825710805336893,0.0,0.0,0.0 +6922,my_land,2011-07-16,0.13438738177639536,subsurface_runoff,0.0,0.0,2.929972430147682e-05,0.0,0.0,0.0,0.0,0.0,15.840624123141303,0.0,0.0,0.0 +6923,my_land,2011-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 +6924,my_groundwater,2011-07-16,14.202843543955172,tank,0.0,0.0,0.0016109088321839564,0.0,0.0,0.0,0.0,0.0,10.262754976740114,0.0,0.0,0.0 +6925,my_reservoir,2011-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6926,gw1,2011-07-16,262.38563072435187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6927,gw2,2011-07-16,262.61436927564813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6928,my_sewer,2011-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6929,my_land,2011-07-17,0.8384455729427657,percolation,0.0,0.0,0.00016906626445645806,0.0,0.0,0.0,0.0,0.0,14.198142703816604,0.0,0.0,0.0 +6930,my_land,2011-07-17,0.15315060365998553,subsurface_runoff,0.0,0.0,3.3192901832930216e-05,0.0,0.0,0.0,0.0,0.0,15.794967832963192,0.0,0.0,0.0 +6931,my_land,2011-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.475,0.0,0.0,0.0 +6932,my_groundwater,2011-07-17,14.18440479140162,tank,0.0,0.0,0.00161032326620136,0.0,0.0,0.0,0.0,0.0,10.267490501488396,0.0,0.0,0.0 +6933,my_reservoir,2011-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6934,gw1,2011-07-17,262.38639318618954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6935,gw2,2011-07-17,262.61360681381046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6936,my_sewer,2011-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6937,my_land,2011-07-18,0.8799417378911885,percolation,0.0,0.0,0.00017816836524097546,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +6938,my_land,2011-07-18,0.13837492548779198,subsurface_runoff,0.0,0.0,2.995117209862896e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6939,my_land,2011-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.35,0.0,0.0,0.0 +6940,my_groundwater,2011-07-18,14.16685687908733,tank,0.0,0.0,0.0016099244568996908,0.0,0.0,0.0,0.0,0.0,10.272575209925977,0.0,0.0,0.0 +6941,my_reservoir,2011-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6942,gw1,2011-07-18,262.3871505649483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6943,gw2,2011-07-18,262.6128494350517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6944,my_sewer,2011-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6945,my_land,2011-07-19,0.8623429031333647,percolation,0.0,0.0,0.00017460499793615596,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +6946,my_land,2011-07-19,0.11069994039023359,subsurface_runoff,0.0,0.0,2.3960937678903166e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6947,my_land,2011-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.225,0.0,0.0,0.0 +6948,my_groundwater,2011-07-19,14.148994574560541,tank,0.0,0.0,0.001609454104643999,0.0,0.0,0.0,0.0,0.0,10.2775582063057,0.0,0.0,0.0 +6949,my_reservoir,2011-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6950,gw1,2011-07-19,262.3879028945153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6951,gw2,2011-07-19,262.6120971054847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6952,my_sewer,2011-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6953,my_land,2011-07-20,0.8450960450706974,percolation,0.0,0.0,0.00017111289797743285,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +6954,my_land,2011-07-20,0.08855995231218687,subsurface_runoff,0.0,0.0,1.9168750143122532e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6955,my_land,2011-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.28928571,0.0,0.0,0.0 +6956,my_groundwater,2011-07-20,14.130825829041651,tank,0.0,0.0,0.0016089138390912151,0.0,0.0,0.0,0.0,0.0,10.282441754912346,0.0,0.0,0.0 +6957,my_reservoir,2011-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6958,gw1,2011-07-20,262.3886502085519,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6959,gw2,2011-07-20,262.6113497914481,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6960,my_sewer,2011-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6961,my_land,2011-07-21,0.8281941241692834,percolation,0.0,0.0,0.0001676906400178842,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +6962,my_land,2011-07-21,0.0708479618497495,subsurface_runoff,0.0,0.0,1.5335000114498026e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6963,my_land,2011-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.35357143,0.0,0.0,0.0 +6964,my_groundwater,2011-07-21,14.112358430568207,tank,0.0,0.0,0.0016083052568081368,0.0,0.0,0.0,0.0,0.0,10.287228061086887,0.0,0.0,0.0 +6965,my_reservoir,2011-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6966,gw1,2011-07-21,262.3893925404949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6967,gw2,2011-07-21,262.6106074595051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6968,my_sewer,2011-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6969,my_land,2011-07-22,0.8116302416858977,percolation,0.0,0.0,0.0001643368272175265,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +6970,my_land,2011-07-22,0.056678369479799595,subsurface_runoff,0.0,0.0,1.2268000091598421e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6971,my_land,2011-07-22,3.6274225629160084e-20,surface_runoff,0.0,0.0,8.856012116494161e-24,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +6972,my_groundwater,2011-07-22,14.093600007268964,tank,0.0,0.0,0.0016076299219344732,0.0,0.0,0.0,0.0,0.0,10.291919273075317,0.0,0.0,0.0 +6973,my_reservoir,2011-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6974,gw1,2011-07-22,262.3901299235583,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6975,gw2,2011-07-22,262.6098700764417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6976,my_sewer,2011-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6977,my_land,2011-07-23,0.7953976368521798,percolation,0.0,0.0,0.00016105009067317598,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +6978,my_land,2011-07-23,0.04534269558383967,subsurface_runoff,0.0,0.0,9.814400073278737e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6979,my_land,2011-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +6980,my_groundwater,2011-07-23,14.074558030572426,tank,0.0,0.0,0.0016068893668326268,0.0,0.0,0.0,0.0,0.0,10.296517483808003,0.0,0.0,0.0 +6981,my_reservoir,2011-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6982,gw1,2011-07-23,262.3908623907346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6983,gw2,2011-07-23,262.6091376092654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6984,my_sewer,2011-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6985,my_land,2011-07-24,0.7794896841151362,percolation,0.0,0.0,0.00015782908885971246,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +6986,my_land,2011-07-24,0.03627415646707174,subsurface_runoff,0.0,0.0,7.85152005862299e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +6987,my_land,2011-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +6988,my_groundwater,2011-07-24,14.055239818351195,tank,0.0,0.0,0.0016060850927244752,0.0,0.0,0.0,0.0,0.0,10.301024732612587,0.0,0.0,0.0 +6989,my_reservoir,2011-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6990,gw1,2011-07-24,262.3915899747964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6991,gw2,2011-07-24,262.6084100252036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6992,my_sewer,2011-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +6993,my_land,2011-07-25,0.7638998904328335,percolation,0.0,0.0,0.0001546725070825182,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +6994,my_land,2011-07-25,0.02901932517365739,subsurface_runoff,0.0,0.0,6.281216046898392e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +6995,my_land,2011-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +6996,my_groundwater,2011-07-25,14.035652538003413,tank,0.0,0.0,0.0016052185703154152,0.0,0.0,0.0,0.0,0.0,10.305443006863314,0.0,0.0,0.0 +6997,my_reservoir,2011-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6998,gw1,2011-07-25,262.3923127082977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6999,gw2,2011-07-25,262.6076872917023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7000,my_sewer,2011-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7001,my_land,2011-07-26,0.7486218926241768,percolation,0.0,0.0,0.00015157905694086784,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7002,my_land,2011-07-26,0.023215460138925913,subsurface_runoff,0.0,0.0,5.0249728375187134e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7003,my_land,2011-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7004,my_groundwater,2011-07-26,14.015803209472539,tank,0.0,0.0,0.001604291240405923,0.0,0.0,0.0,0.0,0.0,10.309774243569562,0.0,0.0,0.0 +7005,my_reservoir,2011-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7006,gw1,2011-07-26,262.3930306235757,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7007,gw2,2011-07-26,262.6069693764243,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7008,my_sewer,2011-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7009,my_land,2011-07-27,0.7336494547716932,percolation,0.0,0.0,0.0001485474758020505,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7010,my_land,2011-07-27,0.01857236811114073,subsurface_runoff,0.0,0.0,4.019978270014971e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7011,my_land,2011-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7012,my_groundwater,2011-07-27,13.99569870820671,tank,0.0,0.0,0.0016033045144908783,0.0,0.0,0.0,0.0,0.0,10.314020330906205,0.0,0.0,0.0 +7013,my_reservoir,2011-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7014,gw1,2011-07-27,262.3937437527519,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7015,gw2,2011-07-27,262.6062562472481,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7016,my_sewer,2011-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7017,my_land,2011-07-28,0.7189764656762593,percolation,0.0,0.0,0.00014557652628600947,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7018,my_land,2011-07-28,0.014857894488912584,subsurface_runoff,0.0,0.0,3.215982616011977e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7019,my_land,2011-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7020,my_groundwater,2011-07-28,13.975345768058888,tank,0.0,0.0,0.001602259775346902,0.0,0.0,0.0,0.0,0.0,10.318183109688254,0.0,0.0,0.0 +7021,my_reservoir,2011-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7022,gw1,2011-07-28,262.39445212773353,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7023,gw2,2011-07-28,262.60554787226647,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7024,my_sewer,2011-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7025,my_land,2011-07-29,0.7045969363627341,percolation,0.0,0.0,0.00014266499576028928,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7026,my_land,2011-07-29,0.011886315591130066,subsurface_runoff,0.0,0.0,2.5727860928095815e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7027,my_land,2011-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7028,my_groundwater,2011-07-29,13.954750984128982,tank,0.0,0.0,0.0016011583776079407,0.0,0.0,0.0,0.0,0.0,10.322264374792208,0.0,0.0,0.0 +7029,my_reservoir,2011-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7030,gw1,2011-07-29,262.3951557802153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7031,gw2,2011-07-29,262.6048442197847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7032,my_sewer,2011-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7033,my_land,2011-07-30,0.6905049976354795,percolation,0.0,0.0,0.00013981169584508348,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7034,my_land,2011-07-30,0.009509052472904053,subsurface_runoff,0.0,0.0,2.058228874247665e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7035,my_land,2011-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7036,my_groundwater,2011-07-30,13.933920815549095,tank,0.0,0.0,0.0016000016483293388,0.0,0.0,0.0,0.0,0.0,10.326265876526287,0.0,0.0,0.0 +7037,my_reservoir,2011-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7038,gw1,2011-07-30,262.3958547416805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7039,gw2,2011-07-30,262.6041452583195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7040,my_sewer,2011-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7041,my_land,2011-07-31,0.6766948976827699,percolation,0.0,0.0,0.0001370154619281818,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7042,my_land,2011-07-31,0.0076072419783232426,subsurface_runoff,0.0,0.0,1.6465830993981322e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7043,my_land,2011-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7044,my_groundwater,2011-07-31,13.912861588213051,tank,0.0,0.0,0.0015987908875406249,0.0,0.0,0.0,0.0,0.0,10.330189321951778,0.0,0.0,0.0 +7045,my_reservoir,2011-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7046,gw1,2011-07-31,262.3965490434027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7047,gw2,2011-07-31,262.6034509565973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7048,my_sewer,2011-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7049,my_land,2011-08-01,0.6631609997291145,percolation,0.0,0.0,0.00013427515268961816,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 +7050,my_land,2011-08-01,0.006085793582658594,subsurface_runoff,0.0,0.0,1.3172664795185058e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7051,my_land,2011-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7052,my_groundwater,2011-08-01,13.89157949745129,tank,0.0,0.0,0.0015975273687872404,0.0,0.0,0.0,0.0,0.0,10.334036376157474,0.0,0.0,0.0 +7053,my_reservoir,2011-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7054,gw1,2011-08-01,262.3972387164467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7055,gw2,2011-08-01,262.6027612835533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7056,my_sewer,2011-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 +7057,my_land,2011-08-02,0.6498977797345322,percolation,0.0,0.0,0.0001315896496358258,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7058,my_land,2011-08-02,0.004868634866126875,subsurface_runoff,0.0,0.0,1.0538131836148047e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7059,my_land,2011-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7060,my_groundwater,2011-08-02,13.870080610652257,tank,0.0,0.0,0.0015962123396614301,0.0,0.0,0.0,0.0,0.0,10.337808663489188,0.0,0.0,0.0 +7061,my_reservoir,2011-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7062,gw1,2011-08-02,262.3979237916704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7063,gw2,2011-08-02,262.6020762083296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7064,my_sewer,2011-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0 +7065,my_land,2011-08-03,0.6368998241398416,percolation,0.0,0.0,0.0001289578566431093,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7066,my_land,2011-08-03,0.0038949078929015005,subsurface_runoff,0.0,0.0,8.430505468918437e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7067,my_land,2011-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7068,my_groundwater,2011-08-03,13.84837086983133,tank,0.0,0.0,0.0015948470223225114,0.0,0.0,0.0,0.0,0.0,10.341507768736166,0.0,0.0,0.0 +7069,my_reservoir,2011-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7070,gw1,2011-08-03,262.39860429972595,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7071,gw2,2011-08-03,262.60139570027405,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7072,my_sewer,2011-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 +7073,my_land,2011-08-04,0.6241618276570448,percolation,0.0,0.0,0.0001263786995102471,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7074,my_land,2011-08-04,0.0031159263143212003,subsurface_runoff,0.0,0.0,6.74440437513475e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7075,my_land,2011-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7076,my_groundwater,2011-08-04,13.826456094148341,tank,0.0,0.0,0.001593432614006735,0.0,0.0,0.0,0.0,0.0,10.345135238276198,0.0,0.0,0.0 +7077,my_reservoir,2011-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7078,gw1,2011-08-04,262.3992802710611,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7079,gw2,2011-08-04,262.6007197289389,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7080,my_sewer,2011-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 +7081,my_land,2011-08-05,0.6116785911039039,percolation,0.0,0.0,0.00012385112552004216,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7082,my_land,2011-08-05,0.0024927410514569604,subsurface_runoff,0.0,0.0,5.3955235001078e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7083,my_land,2011-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 +7084,my_groundwater,2011-08-05,13.804341982374728,tank,0.0,0.0,0.0015919702875269476,0.0,0.0,0.0,0.0,0.0,10.34869258118108,0.0,0.0,0.0 +7085,my_reservoir,2011-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7086,gw1,2011-08-05,262.3999517359207,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7087,gw2,2011-08-05,262.6000482640793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7088,my_sewer,2011-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 +7089,my_land,2011-08-06,0.5994450192818258,percolation,0.0,0.0,0.00012137410300964131,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7090,my_land,2011-08-06,0.0019941928411655683,subsurface_runoff,0.0,0.0,4.31641880008624e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7091,my_land,2011-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 +7092,my_groundwater,2011-08-06,13.782034115311314,tank,0.0,0.0,0.001590461191762255,0.0,0.0,0.0,0.0,0.0,10.352181270284063,0.0,0.0,0.0 +7093,my_reservoir,2011-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7094,gw1,2011-08-06,262.4006187243479,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7095,gw2,2011-08-06,262.5993812756521,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7096,my_sewer,2011-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7097,my_land,2011-08-07,0.5874561188961893,percolation,0.0,0.0,0.00011894662094944849,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 +7098,my_land,2011-08-07,0.0015953542729324546,subsurface_runoff,0.0,0.0,3.453135040068992e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7099,my_land,2011-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 +7100,my_groundwater,2011-08-07,13.759537958157708,tank,0.0,0.0,0.0015889064521378918,0.0,0.0,0.0,0.0,0.0,10.355602743210785,0.0,0.0,0.0 +7101,my_reservoir,2011-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7102,gw1,2011-08-07,262.4012812661856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7103,gw2,2011-08-07,262.5987187338144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7104,my_sewer,2011-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7105,my_land,2011-08-08,0.5757069965182655,percolation,0.0,0.0,0.00011656768853045952,0.0,0.0,0.0,0.0,0.0,14.288812218970243,0.0,0.0,0.0 +7106,my_land,2011-08-08,0.0012762834183459638,subsurface_runoff,0.0,0.0,2.7625080320551937e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7107,my_land,2011-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 +7108,my_groundwater,2011-08-08,13.736858862834291,tank,0.0,0.0,0.0015873071710954885,0.0,0.0,0.0,0.0,0.0,10.358958403375189,0.0,0.0,0.0 +7109,my_reservoir,2011-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7110,gw1,2011-08-08,262.4019393910777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7111,gw2,2011-08-08,262.5980606089223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7112,my_sewer,2011-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7113,my_land,2011-08-09,0.5641928565879002,percolation,0.0,0.0,0.00011423633475985033,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7114,my_land,2011-08-09,0.001021026734676771,subsurface_runoff,0.0,0.0,2.210006425644155e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7115,my_land,2011-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 +7116,my_groundwater,2011-08-09,13.714002070257745,tank,0.0,0.0,0.0015856644285539324,0.0,0.0,0.0,0.0,0.0,10.362249620941773,0.0,0.0,0.0 +7117,my_reservoir,2011-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7118,gw1,2011-08-09,262.4025931284705,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7119,gw2,2011-08-09,262.5974068715295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7120,my_sewer,2011-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7121,my_land,2011-08-10,0.5529089994561421,percolation,0.0,0.0,0.00011195160806465332,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7122,my_land,2011-08-10,0.0008168213877414168,subsurface_runoff,0.0,0.0,1.7680051405153238e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7123,my_land,2011-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7124,my_groundwater,2011-08-10,13.69097271257103,tank,0.0,0.0,0.0015839792823610067,0.0,0.0,0.0,0.0,0.0,10.365477733755558,0.0,0.0,0.0 +7125,my_reservoir,2011-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7126,gw1,2011-08-10,262.40324250761404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7127,gw2,2011-08-10,262.59675749238596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7128,my_sewer,2011-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7129,my_land,2011-08-11,0.5418508194670193,percolation,0.0,0.0,0.00010971257590336025,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7130,my_land,2011-08-11,0.0006534571101931335,subsurface_runoff,0.0,0.0,1.4144041124122591e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7131,my_land,2011-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7132,my_groundwater,2011-08-11,13.667775815328753,tank,0.0,0.0,0.0015822527687359938,0.0,0.0,0.0,0.0,0.0,10.368644048240997,0.0,0.0,0.0 +7133,my_reservoir,2011-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7134,gw1,2011-08-11,262.4038875575633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7135,gw2,2011-08-11,262.5961124424367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7136,my_sewer,2011-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7137,my_land,2011-08-12,0.5310138030776789,percolation,0.0,0.0,0.00010751832438529304,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7138,my_land,2011-08-12,0.0005227656881545068,subsurface_runoff,0.0,0.0,1.1315232899298073e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7139,my_land,2011-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7140,my_groundwater,2011-08-12,13.644416299638797,tank,0.0,0.0,0.001580485902703426,0.0,0.0,0.0,0.0,0.0,10.371749840271066,0.0,0.0,0.0 +7141,my_reservoir,2011-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7142,gw1,2011-08-12,262.40452830717953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7143,gw2,2011-08-12,262.59547169282047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7144,my_sewer,2011-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7145,my_land,2011-08-13,0.5203935270161253,percolation,0.0,0.0,0.00010536795789758717,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7146,my_land,2011-08-13,0.00041821255052360544,subsurface_runoff,0.0,0.0,9.052186319438459e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 +7147,my_land,2011-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7148,my_groundwater,2011-08-13,13.6208989842611,tank,0.0,0.0,0.0015786796785181541,0.0,0.0,0.0,0.0,0.0,10.374796356007694,0.0,0.0,0.0 +7149,my_reservoir,2011-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7150,gw1,2011-08-13,262.40516478513166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7151,gw2,2011-08-13,262.59483521486834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7152,my_sewer,2011-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7153,my_land,2011-08-14,0.5099856564758027,percolation,0.0,0.0,0.00010326059873963544,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7154,my_land,2011-08-14,0.00033457004041888435,subsurface_runoff,0.0,0.0,7.241749055550767e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 +7155,my_land,2011-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7156,my_groundwater,2011-08-14,13.59722858766442,tank,0.0,0.0,0.0015768350700819157,0.0,0.0,0.0,0.0,0.0,10.377784812714626,0.0,0.0,0.0 +7157,my_reservoir,2011-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7158,gw1,2011-08-14,262.4057970198975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7159,gw2,2011-08-14,262.5942029801025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7160,my_sewer,2011-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7161,my_land,2011-08-15,0.4997859433462867,percolation,0.0,0.0,0.00010119538676484272,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7162,my_land,2011-08-15,0.0002676560323351075,subsurface_runoff,0.0,0.0,5.793399244440614e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 +7163,my_land,2011-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7164,my_groundwater,2011-08-15,13.573409730041952,tank,0.0,0.0,0.0015749530313515666,0.0,0.0,0.0,0.0,0.0,10.380716399543795,0.0,0.0,0.0 +7165,my_reservoir,2011-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7166,gw1,2011-08-15,262.4064250397648,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7167,gw2,2011-08-15,262.5935749602352,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7168,my_sewer,2011-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7169,my_land,2011-08-16,0.48979022447936094,percolation,0.0,0.0,9.917147902954586e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7170,my_land,2011-08-16,0.000214124825868086,subsurface_runoff,0.0,0.0,4.634719395552491e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7171,my_land,2011-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7172,my_groundwater,2011-08-16,13.549446935286605,tank,0.0,0.0,0.0015730344967391464,0.0,0.0,0.0,0.0,0.0,10.383592278296215,0.0,0.0,0.0 +7173,my_reservoir,2011-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7174,gw1,2011-08-16,262.40704887283306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7175,gw2,2011-08-16,262.59295112716694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7176,my_sewer,2011-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 +7177,my_land,2011-08-17,0.4799944199897737,percolation,0.0,0.0,9.718804944895495e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7178,my_land,2011-08-17,0.0001712998606944688,subsurface_runoff,0.0,0.0,3.707775516441993e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7179,my_land,2011-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7180,my_groundwater,2011-08-17,13.525344632926751,tank,0.0,0.0,0.001571080381503938,0.0,0.0,0.0,0.0,0.0,10.386413584158339,0.0,0.0,0.0 +7181,my_reservoir,2011-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7182,gw1,2011-08-17,262.40766854701417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7183,gw2,2011-08-17,262.59233145298583,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7184,my_sewer,2011-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +7185,my_land,2011-08-18,0.47039453158997824,percolation,0.0,0.0,9.524428845997585e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7186,my_land,2011-08-18,0.00013703988855557503,subsurface_runoff,0.0,0.0,2.966220413153594e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 +7187,my_land,2011-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7188,my_groundwater,2011-08-18,13.501107160023231,tank,0.0,0.0,0.0015690915821366849,0.0,0.0,0.0,0.0,0.0,10.38918142641485,0.0,0.0,0.0 +7189,my_reservoir,2011-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7190,gw1,2011-08-18,262.4082840900341,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7191,gw2,2011-08-18,262.5917159099659,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7192,my_sewer,2011-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +7193,my_land,2011-08-19,0.46098664095817865,percolation,0.0,0.0,9.333940269077634e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7194,my_land,2011-08-19,0.00010963191084446002,subsurface_runoff,0.0,0.0,2.3729763305228755e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7195,my_land,2011-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 +7196,my_groundwater,2011-08-19,13.476738763028393,tank,0.0,0.0,0.0015670689767361197,0.0,0.0,0.0,0.0,0.0,10.391896889138753,0.0,0.0,0.0 +7197,my_reservoir,2011-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7198,gw1,2011-08-19,262.4088955294339,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7199,gw2,2011-08-19,262.5911044705661,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7200,my_sewer,2011-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +7201,my_land,2011-08-20,0.4517669081390151,percolation,0.0,0.0,9.147261463696081e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7202,my_land,2011-08-20,8.770552867556802e-05,subsurface_runoff,0.0,0.0,1.8983810644183004e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 +7203,my_land,2011-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.06428571,0.0,0.0,0.0 +7204,my_groundwater,2011-08-20,13.452243599607938,tank,0.0,0.0,0.0015650134253779604,0.0,0.0,0.0,0.0,0.0,10.39456103185957,0.0,0.0,0.0 +7205,my_reservoir,2011-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7206,gw1,2011-08-20,262.409502892571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7207,gw2,2011-08-20,262.590497107429,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7208,my_sewer,2011-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 +7209,my_land,2011-08-21,0.4427315699762348,percolation,0.0,0.0,8.96431623442216e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 +7210,my_land,2011-08-21,7.016442294045442e-05,subsurface_runoff,0.0,0.0,1.5187048515346403e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732373,0.0,0.0,0.0 +7211,my_land,2011-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.06428571,0.0,0.0,0.0 +7212,my_groundwater,2011-08-21,13.427625740426292,tank,0.0,0.0,0.0015629257704765228,0.0,0.0,0.0,0.0,0.0,10.39717489021055,0.0,0.0,0.0 +7213,my_reservoir,2011-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7214,gw1,2011-08-21,262.4101062066205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7215,gw2,2011-08-21,262.5898937933795,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7216,my_sewer,2011-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 +7217,my_land,2011-08-22,0.5342955506812669,percolation,0.0,0.0,0.00011174851190645375,0.0,0.0,0.0,0.0,0.0,14.438160431827763,0.0,0.0,0.0 +7218,my_land,2011-08-22,0.02738092394775558,subsurface_runoff,0.0,0.0,6.515064688912029e-06,0.0,0.0,0.0,0.0,0.0,15.084851838853602,0.0,0.0,0.0 +7219,my_land,2011-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.72142857,0.0,0.0,0.0 +7220,my_groundwater,2011-08-22,13.40493340692838,tank,0.0,0.0,0.0015612933364712843,0.0,0.0,0.0,0.0,0.0,10.400453736198322,0.0,0.0,0.0 +7221,my_reservoir,2011-08-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7222,gw1,2011-08-22,262.41070549857636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7223,gw2,2011-08-22,262.58929450142364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7224,my_sewer,2011-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 +7225,my_land,2011-08-23,0.5236096396676415,percolation,0.0,0.0,0.00010951354166832468,0.0,0.0,0.0,0.0,0.0,14.438160431827763,0.0,0.0,0.0 +7226,my_land,2011-08-23,0.021904739158204463,subsurface_runoff,0.0,0.0,5.212051751129623e-06,0.0,0.0,0.0,0.0,0.0,15.084851838853602,0.0,0.0,0.0 +7227,my_land,2011-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.549999999999999,0.0,0.0,0.0 +7228,my_groundwater,2011-08-23,13.382080269647151,tank,0.0,0.0,0.0015596194859426398,0.0,0.0,0.0,0.0,0.0,10.40366988100879,0.0,0.0,0.0 +7229,my_reservoir,2011-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7230,gw1,2011-08-23,262.41130079525254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7231,gw2,2011-08-23,262.58869920474746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7232,my_sewer,2011-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 +7233,my_land,2011-08-24,0.8022137313719752,percolation,0.0,0.0,0.00017332181810523174,0.0,0.0,0.0,0.0,0.0,14.57465306743835,0.0,0.0,0.0 +7234,my_land,2011-08-24,0.09618400479532178,subsurface_runoff,0.0,0.0,2.2128429773767256e-05,0.0,0.0,0.0,0.0,0.0,14.865751150375912,0.0,0.0,0.0 +7235,my_land,2011-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 +7236,my_groundwater,2011-08-24,13.364955848504534,tank,0.0,0.0,0.0015592487742392112,0.0,0.0,0.0,0.0,0.0,10.408766449049814,0.0,0.0,0.0 +7237,my_reservoir,2011-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7238,gw1,2011-08-24,262.4118921232842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7239,gw2,2011-08-24,262.5881078767158,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7240,my_sewer,2011-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0 +7241,my_land,2011-08-25,0.9123771389328332,percolation,0.0,0.0,0.00019852924925542595,0.0,0.0,0.0,0.0,0.0,14.599509006487983,0.0,0.0,0.0 +7242,my_land,2011-08-25,0.11128943028205267,subsurface_runoff,0.0,0.0,2.5505156747530493e-05,0.0,0.0,0.0,0.0,0.0,14.831371654599478,0.0,0.0,0.0 +7243,my_land,2011-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.507142859999998,0.0,0.0,0.0 +7244,my_groundwater,2011-08-25,13.35011685064012,tank,0.0,0.0,0.0015593921405920271,0.0,0.0,0.0,0.0,0.0,10.414596832719278,0.0,0.0,0.0 +7245,my_reservoir,2011-08-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7246,gw1,2011-08-25,262.41247950912896,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7247,gw2,2011-08-25,262.58752049087104,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7248,my_sewer,2011-08-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.485714290000002,0.0,0.0,0.0 +7249,my_land,2011-08-26,1.4347812528059192,percolation,0.0,0.0,0.0003111762911619652,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +7250,my_land,2011-08-26,0.23614764127373544,subsurface_runoff,0.0,0.0,5.2136812987588414e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935223,0.0,0.0,0.0 +7251,my_land,2011-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.485714289999999,0.0,0.0,0.0 +7252,my_groundwater,2011-08-26,13.34594960544564,tank,0.0,0.0,0.001561828320453487,0.0,0.0,0.0,0.0,0.0,10.423892282932346,0.0,0.0,0.0 +7253,my_reservoir,2011-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7254,gw1,2011-08-26,262.4130629790681,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7255,gw2,2011-08-26,262.5869370209319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7256,my_sewer,2011-08-27,3.469446951953614e-18,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7257,my_land,2011-08-27,1.4060856277498008,percolation,0.0,0.0,0.00030495276533872587,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 +7258,my_land,2011-08-27,0.18891811301898837,subsurface_runoff,0.0,0.0,4.170945039007073e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935223,0.0,0.0,0.0 +7259,my_land,2011-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.464285710000002,0.0,0.0,0.0 +7260,my_groundwater,2011-08-27,13.341208617425503,tank,0.0,0.0,0.0015641317166610344,0.0,0.0,0.0,0.0,0.0,10.432985117732626,0.0,0.0,0.0 +7261,my_reservoir,2011-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7262,gw1,2011-08-27,262.4136425592077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7263,gw2,2011-08-27,262.5863574407923,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7264,my_sewer,2011-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7265,my_land,2011-08-28,1.3779639151948049,percolation,0.0,0.0,0.00029885371003195133,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 +7266,my_land,2011-08-28,0.1511344904151907,subsurface_runoff,0.0,0.0,3.336756031205658e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +7267,my_land,2011-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 +7268,my_groundwater,2011-08-28,13.335907004155548,tank,0.0,0.0,0.0015663051950378893,0.0,0.0,0.0,0.0,0.0,10.44188051202535,0.0,0.0,0.0 +7269,my_reservoir,2011-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7270,gw1,2011-08-28,262.41421827547964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7271,gw2,2011-08-28,262.58578172452036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7272,my_sewer,2011-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7273,my_land,2011-08-29,1.3504046368909088,percolation,0.0,0.0,0.0002928766358313123,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +7274,my_land,2011-08-29,0.12090759233215256,subsurface_runoff,0.0,0.0,2.6694048249645265e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +7275,my_land,2011-08-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 +7276,my_groundwater,2011-08-29,13.330057616753294,tank,0.0,0.0,0.001568351563565432,0.0,0.0,0.0,0.0,0.0,10.450583478928952,0.0,0.0,0.0 +7277,my_reservoir,2011-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7278,gw1,2011-08-29,262.4147901536431,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7279,gw2,2011-08-29,262.5852098463569,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7280,my_sewer,2011-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7281,my_land,2011-08-30,1.3233965441530906,percolation,0.0,0.0,0.00028701910311468607,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +7282,my_land,2011-08-30,0.09672607386572205,subsurface_runoff,0.0,0.0,2.1355238599716212e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +7283,my_land,2011-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 +7284,my_groundwater,2011-08-30,13.323673045217383,tank,0.0,0.0,0.001570273573541353,0.0,0.0,0.0,0.0,0.0,10.459098875994052,0.0,0.0,0.0 +7285,my_reservoir,2011-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7286,gw1,2011-08-30,262.41535821928545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7287,gw2,2011-08-30,262.58464178071455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7288,my_sewer,2011-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7289,my_land,2011-08-31,1.2969286132700288,percolation,0.0,0.0,0.00028127872105239237,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +7290,my_land,2011-08-31,0.07738085909257764,subsurface_runoff,0.0,0.0,1.708419087977297e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +7291,my_land,2011-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 +7292,my_groundwater,2011-08-31,13.316765623660194,tank,0.0,0.0,0.0015720739207146376,0.0,0.0,0.0,0.0,0.0,10.467431411136289,0.0,0.0,0.0 +7293,my_reservoir,2011-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7294,gw1,2011-08-31,262.41592249782354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7295,gw2,2011-08-31,262.58407750217646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7296,my_sewer,2011-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7297,my_land,2011-09-01,1.2709900410046282,percolation,0.0,0.0,0.00027565314663134454,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 +7298,my_land,2011-09-01,0.061904687274062106,subsurface_runoff,0.0,0.0,1.3667352703818376e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +7299,my_land,2011-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 +7300,my_groundwater,2011-09-01,13.30934743543578,tank,0.0,0.0,0.0015737552463978462,0.0,0.0,0.0,0.0,0.0,10.475585648298248,0.0,0.0,0.0 +7301,my_reservoir,2011-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7302,gw1,2011-09-01,262.4164830145047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7303,gw2,2011-09-01,262.5835169854953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7304,my_sewer,2011-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7305,my_land,2011-09-02,1.2455702401845357,percolation,0.0,0.0,0.00027014008369871765,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 +7306,my_land,2011-09-02,0.04952374981924969,subsurface_runoff,0.0,0.0,1.09338821630547e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 +7307,my_land,2011-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 +7308,my_groundwater,2011-09-02,13.301430318165233,tank,0.0,0.0,0.001575320138557147,0.0,0.0,0.0,0.0,0.0,10.483566012854874,0.0,0.0,0.0 +7309,my_reservoir,2011-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7310,gw1,2011-09-02,262.417039794408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7311,gw2,2011-09-02,262.582960205592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7312,my_sewer,2011-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 +7313,my_land,2011-09-03,1.2652836815826582,percolation,0.0,0.0,0.00027492214340264087,0.0,0.0,0.0,0.0,0.0,14.660590867944983,0.0,0.0,0.0 +7314,my_land,2011-09-03,0.05176181514841014,subsurface_runoff,0.0,0.0,1.1518496581572356e-05,0.0,0.0,0.0,0.0,0.0,14.751090140744864,0.0,0.0,0.0 +7315,my_land,2011-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.38571429,0.0,0.0,0.0 +7316,my_groundwater,2011-09-03,13.293934303030609,tank,0.0,0.0,0.0015769784675585936,0.0,0.0,0.0,0.0,0.0,10.491659175393076,0.0,0.0,0.0 +7317,my_reservoir,2011-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7318,gw1,2011-09-03,262.4175928624453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7319,gw2,2011-09-03,262.5824071375547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7320,my_sewer,2011-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0 +7321,my_land,2011-09-04,1.3161988978725725,percolation,0.0,0.0,0.0002866610096334804,0.0,0.0,0.0,0.0,0.0,14.658611005197633,0.0,0.0,0.0 +7322,my_land,2011-09-04,0.06214983032867842,subsurface_runoff,0.0,0.0,1.3905221509854424e-05,0.0,0.0,0.0,0.0,0.0,14.709479798323954,0.0,0.0,0.0 +7323,my_land,2011-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.38214286,0.0,0.0,0.0 +7324,my_groundwater,2011-09-04,13.287493516265437,tank,0.0,0.0,0.0015788716205143785,0.0,0.0,0.0,0.0,0.0,10.500061776782127,0.0,0.0,0.0 +7325,my_reservoir,2011-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7326,gw1,2011-09-04,262.41814224336235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7327,gw2,2011-09-04,262.58185775663765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7328,my_sewer,2011-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0 +7329,my_land,2011-09-05,1.4058129652923284,percolation,0.0,0.0,0.0003068142019271547,0.0,0.0,0.0,0.0,0.0,14.655985460958293,0.0,0.0,0.0 +7330,my_land,2011-09-05,0.08126763171252296,subsurface_runoff,0.0,0.0,1.8168098972875088e-05,0.0,0.0,0.0,0.0,0.0,14.67737406189234,0.0,0.0,0.0 +7331,my_land,2011-09-05,1.006448506041898e-18,surface_runoff,0.0,0.0,2.4571496729538523e-22,0.0,0.0,0.0,0.0,0.0,14.880783727278658,0.0,0.0,0.0 +7332,my_groundwater,2011-09-05,13.282893117839654,tank,0.0,0.0,0.001581170302002324,0.0,0.0,0.0,0.0,0.0,10.509015821408507,0.0,0.0,0.0 +7333,my_reservoir,2011-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7334,gw1,2011-09-05,262.4186879617399,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7335,gw2,2011-09-05,262.5813120382601,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7336,my_sewer,2011-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 +7337,my_land,2011-09-06,1.4639192494770839,percolation,0.0,0.0,0.0003198438158312562,0.0,0.0,0.0,0.0,0.0,14.653740710031727,0.0,0.0,0.0 +7338,my_land,2011-09-06,0.08847602196610052,subsurface_runoff,0.0,0.0,1.974968950282921e-05,0.0,0.0,0.0,0.0,0.0,14.661595733622194,0.0,0.0,0.0 +7339,my_land,2011-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 +7340,my_groundwater,2011-09-06,13.279487098337981,tank,0.0,0.0,0.0015837284824981688,0.0,0.0,0.0,0.0,0.0,10.518317222097531,0.0,0.0,0.0 +7341,my_reservoir,2011-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7342,gw1,2011-09-06,262.419230041995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7343,gw2,2011-09-06,262.580769958005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7344,my_sewer,2011-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 +7345,my_land,2011-09-07,1.4346408644875421,percolation,0.0,0.0,0.0003134469395146311,0.0,0.0,0.0,0.0,0.0,14.653740710031729,0.0,0.0,0.0 +7346,my_land,2011-09-07,0.07078081757288042,subsurface_runoff,0.0,0.0,1.579975160226337e-05,0.0,0.0,0.0,0.0,0.0,14.661595733622194,0.0,0.0,0.0 +7347,my_land,2011-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.307142859999999,0.0,0.0,0.0 +7348,my_groundwater,2011-09-07,13.275493569619204,tank,0.0,0.0,0.0015861500454177567,0.0,0.0,0.0,0.0,0.0,10.527414874402412,0.0,0.0,0.0 +7349,my_reservoir,2011-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7350,gw1,2011-09-07,262.41976850838165,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7351,gw2,2011-09-07,262.58023149161835,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7352,my_sewer,2011-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +7353,my_land,2011-09-08,1.5067555918262936,percolation,0.0,0.0,0.00032949938190211076,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 +7354,my_land,2011-09-08,0.08405527844701247,subsurface_runoff,0.0,0.0,1.8713646500252135e-05,0.0,0.0,0.0,0.0,0.0,14.629462538678176,0.0,0.0,0.0 +7355,my_land,2011-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +7356,my_groundwater,2011-09-08,13.272978074528764,tank,0.0,0.0,0.0015888923362929338,0.0,0.0,0.0,0.0,0.0,10.536936613302979,0.0,0.0,0.0 +7357,my_reservoir,2011-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7358,gw1,2011-09-08,262.42030338499245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7359,gw2,2011-09-08,262.57969661500755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7360,my_sewer,2011-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +7361,my_land,2011-09-09,1.4766204799897678,percolation,0.0,0.0,0.00032290939426406857,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 +7362,my_land,2011-09-09,0.06724422275760997,subsurface_runoff,0.0,0.0,1.4970917200201708e-05,0.0,0.0,0.0,0.0,0.0,14.629462538678176,0.0,0.0,0.0 +7363,my_land,2011-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.17142857,0.0,0.0,0.0 +7364,my_groundwater,2011-09-09,13.269855403399376,tank,0.0,0.0,0.0015914936181211487,0.0,0.0,0.0,0.0,0.0,10.546248543987154,0.0,0.0,0.0 +7365,my_reservoir,2011-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7366,gw1,2011-09-09,262.42083469575914,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7367,gw2,2011-09-09,262.57916530424086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7368,my_sewer,2011-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 +7369,my_land,2011-09-10,1.4470880703899724,percolation,0.0,0.0,0.0003164512063787872,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 +7370,my_land,2011-09-10,0.05379537820608797,subsurface_runoff,0.0,0.0,1.1976733760161367e-05,0.0,0.0,0.0,0.0,0.0,14.629462538678176,0.0,0.0,0.0 +7371,my_land,2011-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.10357143,0.0,0.0,0.0 +7372,my_groundwater,2011-09-10,13.266139343466673,tank,0.0,0.0,0.0015939569264914139,0.0,0.0,0.0,0.0,0.0,10.555356114385855,0.0,0.0,0.0 +7373,my_reservoir,2011-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7374,gw1,2011-09-10,262.4213624644541,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7375,gw2,2011-09-10,262.5786375355459,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7376,my_sewer,2011-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7377,my_land,2011-09-11,1.4868188301757146,percolation,0.0,0.0,0.0003254776475594958,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 +7378,my_land,2011-09-11,0.061722702889643585,subsurface_runoff,0.0,0.0,1.3759744915145232e-05,0.0,0.0,0.0,0.0,0.0,14.556652685648745,0.0,0.0,0.0 +7379,my_land,2011-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7380,my_groundwater,2011-09-11,13.263241378436584,tank,0.0,0.0,0.001596597829143361,0.0,0.0,0.0,0.0,0.0,10.564667730885366,0.0,0.0,0.0 +7381,my_reservoir,2011-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7382,gw1,2011-09-11,262.4218867146911,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7383,gw2,2011-09-11,262.5781132853089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7384,my_sewer,2011-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7385,my_land,2011-09-12,1.4570824535722002,percolation,0.0,0.0,0.0003189680946083059,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 +7386,my_land,2011-09-12,0.049378162311714865,subsurface_runoff,0.0,0.0,1.1007795932116185e-05,0.0,0.0,0.0,0.0,0.0,14.556652685648745,0.0,0.0,0.0 +7387,my_land,2011-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.96785714,0.0,0.0,0.0 +7388,my_groundwater,2011-09-12,13.259745310652498,tank,0.0,0.0,0.0015990996136393144,0.0,0.0,0.0,0.0,0.0,10.573774690980114,0.0,0.0,0.0 +7389,my_reservoir,2011-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7390,gw1,2011-09-12,262.4224074699265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7391,gw2,2011-09-12,262.5775925300735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7392,my_sewer,2011-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7393,my_land,2011-09-13,1.4757515457655377,percolation,0.0,0.0,0.00032333747114638946,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 +7394,my_land,2011-09-13,0.05251225536359818,subsurface_runoff,0.0,0.0,1.1731063529434366e-05,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 +7395,my_land,2011-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0 +7396,my_groundwater,2011-09-13,13.256638032414665,tank,0.0,0.0,0.0016016840916964106,0.0,0.0,0.0,0.0,0.0,10.582953049337966,0.0,0.0,0.0 +7397,my_reservoir,2011-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7398,gw1,2011-09-13,262.42292475346034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7399,gw2,2011-09-13,262.57707524653966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7400,my_sewer,2011-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7401,my_land,2011-09-14,1.446236514850227,percolation,0.0,0.0,0.00031687072172346167,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 +7402,my_land,2011-09-14,0.04200980429087854,subsurface_runoff,0.0,0.0,9.384850823547494e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 +7403,my_land,2011-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0 +7404,my_groundwater,2011-09-14,13.252937680671652,tank,0.0,0.0,0.0016041304640165399,0.0,0.0,0.0,0.0,0.0,10.591929962349777,0.0,0.0,0.0 +7405,my_reservoir,2011-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7406,gw1,2011-09-14,262.42343858843725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7407,gw2,2011-09-14,262.57656141156275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7408,my_sewer,2011-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7409,my_land,2011-09-15,1.4173117845532224,percolation,0.0,0.0,0.0003105333072889924,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 +7410,my_land,2011-09-15,0.03360784343270283,subsurface_runoff,0.0,0.0,7.507880658837995e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 +7411,my_land,2011-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0 +7412,my_groundwater,2011-09-15,13.248657754941235,tank,0.0,0.0,0.0016064417087548817,0.0,0.0,0.0,0.0,0.0,10.600710629481283,0.0,0.0,0.0 +7413,my_reservoir,2011-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7414,gw1,2011-09-15,262.4239489978477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7415,gw2,2011-09-15,262.5760510021523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7416,my_sewer,2011-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7417,my_land,2011-09-16,1.388965548862158,percolation,0.0,0.0,0.00030432264114321257,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 +7418,my_land,2011-09-16,0.026886274746162266,subsurface_runoff,0.0,0.0,6.006304527070396e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 +7419,my_land,2011-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.69642857,0.0,0.0,0.0 +7420,my_groundwater,2011-09-16,13.243811480655717,tank,0.0,0.0,0.0016086207439634098,0.0,0.0,0.0,0.0,0.0,10.60930008548229,0.0,0.0,0.0 +7421,my_reservoir,2011-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7422,gw1,2011-09-16,262.4244560045287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7423,gw2,2011-09-16,262.5755439954713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7424,my_sewer,2011-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7425,my_land,2011-09-17,1.3657167198058429,percolation,0.0,0.0,0.00029927483957739343,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +7426,my_land,2011-09-17,0.022741803993100693,subsurface_runoff,0.0,0.0,5.087669814049548e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 +7427,my_land,2011-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 +7428,my_groundwater,2011-09-17,13.238504042321553,tank,0.0,0.0,0.0016106915727663268,0.0,0.0,0.0,0.0,0.0,10.617727032928851,0.0,0.0,0.0 +7429,my_reservoir,2011-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7430,gw1,2011-09-17,262.42495963116517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7431,gw2,2011-09-17,262.57504036883483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7432,my_sewer,2011-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7433,my_land,2011-09-18,1.338402385409726,percolation,0.0,0.0,0.00029328934278584557,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +7434,my_land,2011-09-18,0.018193443194480553,subsurface_runoff,0.0,0.0,4.070135851239638e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 +7435,my_land,2011-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.56071429,0.0,0.0,0.0 +7436,my_groundwater,2011-09-18,13.232653830775876,tank,0.0,0.0,0.0016126353768839798,0.0,0.0,0.0,0.0,0.0,10.625971741409467,0.0,0.0,0.0 +7437,my_reservoir,2011-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7438,gw1,2011-09-18,262.4254599002907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7439,gw2,2011-09-18,262.5745400997093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7440,my_sewer,2011-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 +7441,my_land,2011-09-19,1.3116343377015314,percolation,0.0,0.0,0.0002874235559301287,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +7442,my_land,2011-09-19,0.014554754555584443,subsurface_runoff,0.0,0.0,3.2561086809917106e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 +7443,my_land,2011-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.49285714,0.0,0.0,0.0 +7444,my_groundwater,2011-09-19,13.226273323787861,tank,0.0,0.0,0.0016144549108303475,0.0,0.0,0.0,0.0,0.0,10.634038809144222,0.0,0.0,0.0 +7445,my_reservoir,2011-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7446,gw1,2011-09-19,262.4259568342888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7447,gw2,2011-09-19,262.5740431657112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7448,my_sewer,2011-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.424999999999999,0.0,0.0,0.0 +7449,my_land,2011-09-20,1.2854016509475008,percolation,0.0,0.0,0.0002816750848115261,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +7450,my_land,2011-09-20,0.011643803644467553,subsurface_runoff,0.0,0.0,2.6048869447933687e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 +7451,my_land,2011-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.49285714,0.0,0.0,0.0 +7452,my_groundwater,2011-09-20,13.219374745515536,tank,0.0,0.0,0.0016161528734940777,0.0,0.0,0.0,0.0,0.0,10.641932692790455,0.0,0.0,0.0 +7453,my_reservoir,2011-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7454,gw1,2011-09-20,262.42645045539354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7455,gw2,2011-09-20,262.57354954460646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7456,my_sewer,2011-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 +7457,my_land,2011-09-21,1.2596936179285507,percolation,0.0,0.0,0.00027604158311529556,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 +7458,my_land,2011-09-21,0.009315042915574043,subsurface_runoff,0.0,0.0,2.0839095558346948e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 +7459,my_land,2011-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48333333,0.0,0.0,0.0 +7460,my_groundwater,2011-09-21,13.211970071588148,tank,0.0,0.0,0.0016177319092523324,0.0,0.0,0.0,0.0,0.0,10.64965771279586,0.0,0.0,0.0 +7461,my_reservoir,2011-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7462,gw1,2011-09-21,262.42694078569093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7463,gw2,2011-09-21,262.57305921430907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7464,my_sewer,2011-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 +7465,my_land,2011-09-22,1.2344997455699798,percolation,0.0,0.0,0.00027052075145298963,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 +7466,my_land,2011-09-22,0.007452034332459234,subsurface_runoff,0.0,0.0,1.6671276446677559e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 +7467,my_land,2011-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48333333,0.0,0.0,0.0 +7468,my_groundwater,2011-09-22,13.204071034086851,tank,0.0,0.0,0.0016191946090623516,0.0,0.0,0.0,0.0,0.0,10.657218058509219,0.0,0.0,0.0 +7469,my_reservoir,2011-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7470,gw1,2011-09-22,262.42742784711965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7471,gw2,2011-09-22,262.57257215288035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7472,my_sewer,2011-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 +7473,my_land,2011-09-23,1.20980975065858,percolation,0.0,0.0,0.0002651103364239298,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 +7474,my_land,2011-09-23,0.005961627465967388,subsurface_runoff,0.0,0.0,1.3337021157342048e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 +7475,my_land,2011-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48333333,0.0,0.0,0.0 +7476,my_groundwater,2011-09-23,13.195689126425755,tank,0.0,0.0,0.0016205435115311828,0.0,0.0,0.0,0.0,0.0,10.66461779306148,0.0,0.0,0.0 +7477,my_reservoir,2011-09-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7478,gw1,2011-09-23,262.4279116614722,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7479,gw2,2011-09-23,262.5720883385278,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7480,my_sewer,2011-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 +7481,my_land,2011-09-24,1.1856135556454086,percolation,0.0,0.0,0.00025980812969545125,0.0,0.0,0.0,0.0,0.0,14.621954398923533,0.0,0.0,0.0 +7482,my_land,2011-09-24,0.00476930197277391,subsurface_runoff,0.0,0.0,1.0669616925873638e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 +7483,my_land,2011-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.658333329999998,0.0,0.0,0.0 +7484,my_groundwater,2011-09-24,13.186835608135329,tank,0.0,0.0,0.0016217811039640122,0.0,0.0,0.0,0.0,0.0,10.67186085802914,0.0,0.0,0.0 +7485,my_reservoir,2011-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7486,gw1,2011-09-24,262.4283922503957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7487,gw2,2011-09-24,262.5716077496043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7488,my_sewer,2011-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7489,my_land,2011-09-25,1.424831242803507,percolation,0.0,0.0,0.0003129393597707997,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +7490,my_land,2011-09-25,0.07536100845468355,subsurface_runoff,0.0,0.0,1.672496871985424e-05,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7491,my_land,2011-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.71666667,0.0,0.0,0.0 +7492,my_groundwater,2011-09-25,13.182874012272062,tank,0.0,0.0,0.0016240972024565792,0.0,0.0,0.0,0.0,0.0,10.680301699459047,0.0,0.0,0.0 +7493,my_reservoir,2011-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7494,gw1,2011-09-25,262.428869635393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7495,gw2,2011-09-25,262.571130364607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7496,my_sewer,2011-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7497,my_land,2011-09-26,1.396334617947437,percolation,0.0,0.0,0.00030668057257538374,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +7498,my_land,2011-09-26,0.060288806763746844,subsurface_runoff,0.0,0.0,1.3379974975883392e-05,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7499,my_land,2011-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.71666667,0.0,0.0,0.0 +7500,my_groundwater,2011-09-26,13.178342210535313,tank,0.0,0.0,0.001626280099677865,0.0,0.0,0.0,0.0,0.0,10.688558361962889,0.0,0.0,0.0 +7501,my_reservoir,2011-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7502,gw1,2011-09-26,262.42934383782375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7503,gw2,2011-09-26,262.57065616217625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7504,my_sewer,2011-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7505,my_land,2011-09-27,1.3684079255884882,percolation,0.0,0.0,0.0003005469611238761,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +7506,my_land,2011-09-27,0.04823104541099747,subsurface_runoff,0.0,0.0,1.0703979980706714e-05,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7507,my_land,2011-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7508,my_groundwater,2011-09-27,13.173253230637027,tank,0.0,0.0,0.0016283326768515493,0.0,0.0,0.0,0.0,0.0,10.69663555708161,0.0,0.0,0.0 +7509,my_reservoir,2011-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7510,gw1,2011-09-27,262.42981487890495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7511,gw2,2011-09-27,262.57018512109505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7512,my_sewer,2011-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7513,my_land,2011-09-28,1.3410397670767185,percolation,0.0,0.0,0.00029453602190139853,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 +7514,my_land,2011-09-28,0.03858483632879798,subsurface_runoff,0.0,0.0,8.563183984565372e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7515,my_land,2011-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7516,my_groundwater,2011-09-28,13.167619835675925,tank,0.0,0.0,0.0016302577570338416,0.0,0.0,0.0,0.0,0.0,10.704537848759637,0.0,0.0,0.0 +7517,my_reservoir,2011-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7518,gw1,2011-09-28,262.43028277971223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7519,gw2,2011-09-28,262.56971722028777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7520,my_sewer,2011-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7521,my_land,2011-09-29,1.314218971735184,percolation,0.0,0.0,0.00028864530146337057,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +7522,my_land,2011-09-29,0.030867869063038386,subsurface_runoff,0.0,0.0,6.850547187652298e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7523,my_land,2011-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7524,my_groundwater,2011-09-29,13.161454529439915,tank,0.0,0.0,0.0016320581062781898,0.0,0.0,0.0,0.0,0.0,10.712269659030524,0.0,0.0,0.0 +7525,my_reservoir,2011-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7526,gw1,2011-09-29,262.4307475611808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7527,gw2,2011-09-29,262.5692524388192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7528,my_sewer,2011-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7529,my_land,2011-09-30,1.2879345923004804,percolation,0.0,0.0,0.00028287239543410314,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +7530,my_land,2011-09-30,0.02469429525043071,subsurface_runoff,0.0,0.0,5.480437750121838e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7531,my_land,2011-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7532,my_groundwater,2011-09-30,13.154769561602434,tank,0.0,0.0,0.0016337364347766886,0.0,0.0,0.0,0.0,0.0,10.71983527344041,0.0,0.0,0.0 +7533,my_reservoir,2011-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7534,gw1,2011-09-30,262.43120924410624,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7535,gw2,2011-09-30,262.56879075589376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7536,my_sewer,2011-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7537,my_land,2011-10-01,1.2621759004544708,percolation,0.0,0.0,0.0002772149475254211,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +7538,my_land,2011-10-01,0.01975543620034457,subsurface_runoff,0.0,0.0,4.38435020009747e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7539,my_land,2011-10-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7540,my_groundwater,2011-10-01,13.147576932814822,tank,0.0,0.0,0.0016352953979786571,0.0,0.0,0.0,0.0,0.0,10.727238846223361,0.0,0.0,0.0 +7541,my_reservoir,2011-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7542,gw1,2011-10-01,262.4316678491455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7543,gw2,2011-10-01,262.5683321508545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7544,my_sewer,2011-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7545,my_land,2011-10-02,1.2369323824453815,percolation,0.0,0.0,0.0002716706485749127,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +7546,my_land,2011-10-02,0.015804348960275653,subsurface_runoff,0.0,0.0,3.507480160077976e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7547,my_land,2011-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7548,my_groundwater,2011-10-02,13.13988839969685,tank,0.0,0.0,0.0016367375976868426,0.0,0.0,0.0,0.0,0.0,10.7344844052417,0.0,0.0,0.0 +7549,my_reservoir,2011-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7550,gw1,2011-10-02,262.4321233968179,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7551,gw2,2011-10-02,262.5678766031821,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7552,my_sewer,2011-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7553,my_land,2011-10-03,1.212193734796474,percolation,0.0,0.0,0.00026623723560341444,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 +7554,my_land,2011-10-03,0.012643479168220523,subsurface_runoff,0.0,0.0,2.805984128062381e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7555,my_land,2011-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7556,my_groundwater,2011-10-03,13.131715479727394,tank,0.0,0.0,0.001638065583131695,0.0,0.0,0.0,0.0,0.0,10.741575856703774,0.0,0.0,0.0 +7557,my_reservoir,2011-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7558,gw1,2011-10-03,262.43257590750574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7559,gw2,2011-10-03,262.56742409249426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7560,my_sewer,2011-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 +7561,my_land,2011-10-04,1.1879498601005445,percolation,0.0,0.0,0.00026091249089134615,0.0,0.0,0.0,0.0,0.0,14.508187602258838,0.0,0.0,0.0 +7562,my_land,2011-10-04,0.010114783334576419,subsurface_runoff,0.0,0.0,2.244787302449905e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7563,my_land,2011-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7564,my_groundwater,2011-10-04,13.123069456037266,tank,0.0,0.0,0.0016392818520241537,0.0,0.0,0.0,0.0,0.0,10.748516989670769,0.0,0.0,0.0 +7565,my_reservoir,2011-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7566,gw1,2011-10-04,262.4330254014557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7567,gw2,2011-10-04,262.5669745985443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7568,my_sewer,2011-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7569,my_land,2011-10-05,1.1641908628985336,percolation,0.0,0.0,0.0002556942410735192,0.0,0.0,0.0,0.0,0.0,14.508187602258838,0.0,0.0,0.0 +7570,my_land,2011-10-05,0.008091826667661135,subsurface_runoff,0.0,0.0,1.795829841959924e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7571,my_land,2011-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 +7572,my_groundwater,2011-10-05,13.113961382106178,tank,0.0,0.0,0.0016403888515873757,0.0,0.0,0.0,0.0,0.0,10.755311480363536,0.0,0.0,0.0 +7573,my_reservoir,2011-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7574,gw1,2011-10-05,262.4334718987794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7575,gw2,2011-10-05,262.5665281012206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7576,my_sewer,2011-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7577,my_land,2011-10-06,1.140907045640563,percolation,0.0,0.0,0.00025058035625204883,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 +7578,my_land,2011-10-06,0.0064734613341289075,subsurface_runoff,0.0,0.0,1.4366638735679393e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 +7579,my_land,2011-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.507142860000002,0.0,0.0,0.0 +7580,my_groundwater,2011-10-06,13.104402086365738,tank,0.0,0.0,0.001641388979567824,0.0,0.0,0.0,0.0,0.0,10.761962896279732,0.0,0.0,0.0 +7581,my_reservoir,2011-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7582,gw1,2011-10-06,262.4339154194542,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7583,gw2,2011-10-06,262.5660845805458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7584,my_sewer,2011-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7585,my_land,2011-10-07,1.1257589264050858,percolation,0.0,0.0,0.00024739356947017376,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7586,my_land,2011-10-07,0.007265849795829449,subsurface_runoff,0.0,0.0,1.6458808520967792e-06,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7587,my_land,2011-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.33571429,0.0,0.0,0.0 +7588,my_groundwater,2011-10-07,13.094558316437356,tank,0.0,0.0,0.0016423217333545472,0.0,0.0,0.0,0.0,0.0,10.76852207821207,0.0,0.0,0.0 +7589,my_reservoir,2011-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7590,gw1,2011-10-07,262.4343559833245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7591,gw2,2011-10-07,262.5656440166755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7592,my_sewer,2011-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7593,my_land,2011-10-08,1.103243747876984,percolation,0.0,0.0,0.0002424456980807703,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7594,my_land,2011-10-08,0.005812679836663559,subsurface_runoff,0.0,0.0,1.3167046816774235e-06,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7595,my_land,2011-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7596,my_groundwater,2011-10-08,13.084280811228043,tank,0.0,0.0,0.0016431514307320909,0.0,0.0,0.0,0.0,0.0,10.77494386690475,0.0,0.0,0.0 +7597,my_reservoir,2011-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7598,gw1,2011-10-08,262.43479361010236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7599,gw2,2011-10-08,262.56520638989764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7600,my_sewer,2011-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7601,my_land,2011-10-09,1.0811788729194445,percolation,0.0,0.0,0.00023759678411915488,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7602,my_land,2011-10-09,0.004650143869330848,subsurface_runoff,0.0,0.0,1.0533637453419388e-06,0.0,0.0,0.0,0.0,0.0,14.233419085825034,0.0,0.0,0.0 +7603,my_land,2011-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7604,my_groundwater,2011-10-09,13.07357982197012,tank,0.0,0.0,0.001643880343831972,0.0,0.0,0.0,0.0,0.0,10.781231559811271,0.0,0.0,0.0 +7605,my_reservoir,2011-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7606,gw1,2011-10-09,262.4352283193683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7607,gw2,2011-10-09,262.5647716806317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7608,my_sewer,2011-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7609,my_land,2011-10-10,1.0595552954610556,percolation,0.0,0.0,0.00023284484843677178,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7610,my_land,2011-10-10,0.0037201150954646782,subsurface_runoff,0.0,0.0,8.42690996273551e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7611,my_land,2011-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7612,my_groundwater,2011-10-10,13.062465390929937,tank,0.0,0.0,0.001644510698815569,0.0,0.0,0.0,0.0,0.0,10.78738835924322,0.0,0.0,0.0 +7613,my_reservoir,2011-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7614,gw1,2011-10-10,262.43566013057256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7615,gw2,2011-10-10,262.56433986942744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7616,my_sewer,2011-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7617,my_land,2011-10-11,1.0383641895518345,percolation,0.0,0.0,0.00022818795146803633,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7618,my_land,2011-10-11,0.0029760920763717428,subsurface_runoff,0.0,0.0,6.741527970188408e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7619,my_land,2011-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7620,my_groundwater,2011-10-11,13.05094735559706,tank,0.0,0.0,0.0016450446767948437,0.0,0.0,0.0,0.0,0.0,10.793417375723749,0.0,0.0,0.0 +7621,my_reservoir,2011-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7622,gw1,2011-10-11,262.4360890630354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7623,gw2,2011-10-11,262.5639109369646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7624,my_sewer,2011-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7625,my_land,2011-10-12,1.0175969057607979,percolation,0.0,0.0,0.0002236241924386756,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7626,my_land,2011-10-12,0.002380873661097394,subsurface_runoff,0.0,0.0,5.393222376150726e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7627,my_land,2011-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7628,my_groundwater,2011-10-12,13.039035352789625,tank,0.0,0.0,0.001645484414734644,0.0,0.0,0.0,0.0,0.0,10.799321631199412,0.0,0.0,0.0 +7629,my_reservoir,2011-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7630,gw1,2011-10-12,262.4365151359485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7631,gw2,2011-10-12,262.5634848640515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7632,my_sewer,2011-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7633,my_land,2011-10-13,0.9972449676455819,percolation,0.0,0.0,0.0002191517085899021,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7634,my_land,2011-10-13,0.0019046989288779154,subsurface_runoff,0.0,0.0,4.314577900920581e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7635,my_land,2011-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7636,my_groundwater,2011-10-13,13.02673882267758,tank,0.0,0.0,0.001645832006336959,0.0,0.0,0.0,0.0,0.0,10.80510406211726,0.0,0.0,0.0 +7637,my_reservoir,2011-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7638,gw1,2011-10-13,262.43693836837554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7639,gw2,2011-10-13,262.56306163162446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7640,my_sewer,2011-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7641,my_land,2011-10-14,0.9773000682926702,percolation,0.0,0.0,0.00021476867441810405,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7642,my_land,2011-10-14,0.0015237591431023322,subsurface_runoff,0.0,0.0,3.4516623207364645e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 +7643,my_land,2011-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7644,my_groundwater,2011-10-14,13.014067012725414,tank,0.0,0.0,0.001646089502907485,0.0,0.0,0.0,0.0,0.0,10.81076752237382,0.0,0.0,0.0 +7645,my_reservoir,2011-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7646,gw1,2011-10-14,262.43735877925303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7647,gw2,2011-10-14,262.56264122074697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7648,my_sewer,2011-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7649,my_land,2011-10-15,0.9577540669268169,percolation,0.0,0.0,0.00021047330092974196,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7650,my_land,2011-10-15,0.0012190073144818657,subsurface_runoff,0.0,0.0,2.7613298565891715e-07,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 +7651,my_land,2011-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7652,my_groundwater,2011-10-15,13.00102898155604,tank,0.0,0.0,0.0016462589142048575,0.0,0.0,0.0,0.0,0.0,10.81631478614211,0.0,0.0,0.0 +7653,my_reservoir,2011-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7654,gw1,2011-10-15,262.43777638739135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7655,gw2,2011-10-15,262.56222361260865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7656,my_sewer,2011-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 +7657,my_land,2011-10-16,0.9385989855882805,percolation,0.0,0.0,0.00020626383491114712,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7658,my_land,2011-10-16,0.0009752058515854926,subsurface_runoff,0.0,0.0,2.209063885271337e-07,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 +7659,my_land,2011-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7660,my_groundwater,2011-10-16,12.987633602737338,tank,0.0,0.0,0.0016463422092728938,0.0,0.0,0.0,0.0,0.0,10.821748550582585,0.0,0.0,0.0 +7661,my_reservoir,2011-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7662,gw1,2011-10-16,262.4381912114754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7663,gw2,2011-10-16,262.5618087885246,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7664,my_sewer,2011-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7665,my_land,2011-10-17,0.9198270058765149,percolation,0.0,0.0,0.0002021385582129242,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7666,my_land,2011-10-17,0.0007801646812683941,subsurface_runoff,0.0,0.0,1.7672511082170697e-07,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 +7667,my_land,2011-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7668,my_groundwater,2011-10-17,12.97388956849298,tank,0.0,0.0,0.001646341317256189,0.0,0.0,0.0,0.0,0.0,10.827071438443593,0.0,0.0,0.0 +7669,my_reservoir,2011-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7670,gw1,2011-10-17,262.4386032700655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7671,gw2,2011-10-17,262.5613967299345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7672,my_sewer,2011-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7673,my_land,2011-10-18,0.9014304657589846,percolation,0.0,0.0,0.0001980957870486657,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +7674,my_land,2011-10-18,0.0006241317450147153,subsurface_runoff,0.0,0.0,1.4138008865736558e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7675,my_land,2011-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7676,my_groundwater,2011-10-18,12.959805393338984,tank,0.0,0.0,0.0016462581281993962,0.0,0.0,0.0,0.0,0.0,10.83228600055652,0.0,0.0,0.0 +7677,my_reservoir,2011-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7678,gw1,2011-10-18,262.43901258159843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7679,gw2,2011-10-18,262.56098741840157,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7680,my_sewer,2011-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7681,my_land,2011-10-19,0.8834018564438049,percolation,0.0,0.0,0.0001941338713076924,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +7682,my_land,2011-10-19,0.0004993053960117722,subsurface_runoff,0.0,0.0,1.1310407092589246e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7683,my_land,2011-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7684,my_groundwater,2011-10-19,12.945389417647528,tank,0.0,0.0,0.0016460944938305187,0.0,0.0,0.0,0.0,0.0,10.837394718230643,0.0,0.0,0.0 +7685,my_reservoir,2011-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7686,gw1,2011-10-19,262.4394191643878,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7687,gw2,2011-10-19,262.5605808356122,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7688,my_sewer,2011-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7689,my_land,2011-10-20,0.8657338193149288,percolation,0.0,0.0,0.00019025119388153854,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +7690,my_land,2011-10-20,0.0003994443168094178,subsurface_runoff,0.0,0.0,9.048325674071397e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7691,my_land,2011-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7692,my_groundwater,2011-10-20,12.930649811139464,tank,0.0,0.0,0.0016458522283285307,0.0,0.0,0.0,0.0,0.0,10.842400005552335,0.0,0.0,0.0 +7693,my_reservoir,2011-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7694,gw1,2011-10-20,262.4398230366252,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7695,gw2,2011-10-20,262.5601769633748,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7696,my_sewer,2011-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7697,my_land,2011-10-21,0.8484191429286302,percolation,0.0,0.0,0.00018644617000390776,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +7698,my_land,2011-10-21,0.0003195554534475342,subsurface_runoff,0.0,0.0,7.238660539257118e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7699,my_land,2011-10-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7700,my_groundwater,2011-10-21,12.915594576306948,tank,0.0,0.0,0.001645533109075646,0.0,0.0,0.0,0.0,0.0,10.847304211593153,0.0,0.0,0.0 +7701,my_reservoir,2011-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7702,gw1,2011-10-21,262.44022421638107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7703,gw2,2011-10-21,262.55977578361893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7704,my_sewer,2011-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7705,my_land,2011-10-22,0.8314507600700576,percolation,0.0,0.0,0.0001827172466038296,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7706,my_land,2011-10-22,0.00025564436275802736,subsurface_runoff,0.0,0.0,5.7909284314056944e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7707,my_land,2011-10-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7708,my_groundwater,2011-10-22,12.900231551767606,tank,0.0,0.0,0.0016451388773945348,0.0,0.0,0.0,0.0,0.0,10.852109622530907,0.0,0.0,0.0 +7709,my_reservoir,2011-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7710,gw1,2011-10-22,262.4406227216052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7711,gw2,2011-10-22,262.5593772783948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7712,my_sewer,2011-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 +7713,my_land,2011-10-23,0.8148217448686564,percolation,0.0,0.0,0.000179062901671753,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +7714,my_land,2011-10-23,0.0002045154902064219,subsurface_runoff,0.0,0.0,4.6327427451245555e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7715,my_land,2011-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7716,my_groundwater,2011-10-23,12.884568415551584,tank,0.0,0.0,0.001644671239270795,0.0,0.0,0.0,0.0,0.0,10.85681846368781,0.0,0.0,0.0 +7717,my_reservoir,2011-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7718,gw1,2011-10-23,262.4410185701279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7719,gw2,2011-10-23,262.5589814298721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7720,my_sewer,2011-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0 +7721,my_land,2011-10-24,0.7985253099712833,percolation,0.0,0.0,0.00017548164363831795,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 +7722,my_land,2011-10-24,0.0001636123921651375,subsurface_runoff,0.0,0.0,3.706194196099644e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825027,0.0,0.0,0.0 +7723,my_land,2011-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7724,my_groundwater,2011-10-24,12.868612688322836,tank,0.0,0.0,0.0016441318660609693,0.0,0.0,0.0,0.0,0.0,10.86143290148941,0.0,0.0,0.0 +7725,my_reservoir,2011-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7726,gw1,2011-10-24,262.44141177966037,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7727,gw2,2011-10-24,262.55858822033963,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7728,my_sewer,2011-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 +7729,my_land,2011-10-25,0.7825548037718577,percolation,0.0,0.0,0.0001719720107655516,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7730,my_land,2011-10-25,0.00013088991373211002,subsurface_runoff,0.0,0.0,2.9649553568797153e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7731,my_land,2011-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7732,my_groundwater,2011-10-25,12.852371736535956,tank,0.0,0.0,0.0016435223951864013,0.0,0.0,0.0,0.0,0.0,10.865955045347949,0.0,0.0,0.0 +7733,my_reservoir,2011-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7734,gw1,2011-10-25,262.44180236779596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7735,gw2,2011-10-25,262.55819763220404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7736,my_sewer,2011-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0 +7737,my_land,2011-10-26,0.7669037076964206,percolation,0.0,0.0,0.00016853257055024056,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 +7738,my_land,2011-10-26,0.00010471193098568802,subsurface_runoff,0.0,0.0,2.371964285503772e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 +7739,my_land,2011-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 +7740,my_groundwater,2011-10-26,12.835852775529865,tank,0.0,0.0,0.001642844430813208,0.0,0.0,0.0,0.0,0.0,10.870386949473511,0.0,0.0,0.0 +7741,my_reservoir,2011-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7742,gw1,2011-10-26,262.44219035201064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7743,gw2,2011-10-26,262.55780964798936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7744,my_sewer,2011-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +7745,my_land,2011-10-27,0.9478696555136309,percolation,0.0,0.0,0.00021220532155975442,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +7746,my_land,2011-10-27,0.05349982994509842,subsurface_runoff,0.0,0.0,1.2819901542996593e-05,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 +7747,my_land,2011-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.48214286,0.0,0.0,0.0 +7748,my_groundwater,2011-10-27,12.823059061578281,tank,0.0,0.0,0.001643057213782213,0.0,0.0,0.0,0.0,0.0,10.874804166517322,0.0,0.0,0.0 +7749,my_reservoir,2011-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7750,gw1,2011-10-27,262.4425757496639,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7751,gw2,2011-10-27,262.5574242503361,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7752,my_sewer,2011-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +7753,my_land,2011-10-28,0.9289122624033582,percolation,0.0,0.0,0.00020796121512855933,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +7754,my_land,2011-10-28,0.04279986395607874,subsurface_runoff,0.0,0.0,1.0255921234397275e-05,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 +7755,my_land,2011-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.48214286,0.0,0.0,0.0 +7756,my_groundwater,2011-10-28,12.80991141355183,tank,0.0,0.0,0.0016431830669128744,0.0,0.0,0.0,0.0,0.0,10.879130961526103,0.0,0.0,0.0 +7757,my_reservoir,2011-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7758,gw1,2011-10-28,262.44295857799943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7759,gw2,2011-10-28,262.55704142200057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7760,my_sewer,2011-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +7761,my_land,2011-10-29,0.910334017155291,percolation,0.0,0.0,0.00020380199082598813,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +7762,my_land,2011-10-29,0.03423989116486299,subsurface_runoff,0.0,0.0,8.20473698751782e-06,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 +7763,my_land,2011-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.83928571,0.0,0.0,0.0 +7764,my_groundwater,2011-10-29,12.796418434652898,tank,0.0,0.0,0.001643223935487407,0.0,0.0,0.0,0.0,0.0,10.88336942563468,0.0,0.0,0.0 +7765,my_reservoir,2011-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7766,gw1,2011-10-29,262.4433388541461,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7767,gw2,2011-10-29,262.5566611458539,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7768,my_sewer,2011-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +7769,my_land,2011-10-30,0.8921273368121853,percolation,0.0,0.0,0.00019972595100946838,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 +7770,my_land,2011-10-30,0.027391912931890396,subsurface_runoff,0.0,0.0,6.563789590014256e-06,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 +7771,my_land,2011-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.01785714,0.0,0.0,0.0 +7772,my_groundwater,2011-10-30,12.782588552208514,tank,0.0,0.0,0.0016431817253656671,0.0,0.0,0.0,0.0,0.0,10.887521592575787,0.0,0.0,0.0 +7773,my_reservoir,2011-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7774,gw1,2011-10-30,262.4437165951184,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7775,gw2,2011-10-30,262.5562834048816,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7776,my_sewer,2011-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +7777,my_land,2011-10-31,0.9267881797568972,percolation,0.0,0.0,0.00020858631492874465,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 +7778,my_land,2011-10-31,0.03620016699339142,subsurface_runoff,0.0,0.0,8.748959002478247e-06,0.0,0.0,0.0,0.0,0.0,11.350141412615745,0.0,0.0,0.0 +7779,my_land,2011-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.19642857,0.0,0.0,0.0 +7780,my_groundwater,2011-10-31,12.769498840201615,tank,0.0,0.0,0.0016433199924633024,0.0,0.0,0.0,0.0,0.0,10.891657928813547,0.0,0.0,0.0 +7781,my_reservoir,2011-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7782,gw1,2011-10-31,262.44409181781765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7783,gw2,2011-10-31,262.55590818218235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7784,my_sewer,2011-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 +7785,my_land,2011-11-01,0.9082524161617592,percolation,0.0,0.0,0.00020441458863016976,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 +7786,my_land,2011-11-01,0.028960133594713132,subsurface_runoff,0.0,0.0,6.999167201982598e-06,0.0,0.0,0.0,0.0,0.0,11.350141412615745,0.0,0.0,0.0 +7787,my_land,2011-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.375,0.0,0.0,0.0 +7788,my_groundwater,2011-11-01,12.75606451728726,tank,0.0,0.0,0.0016433729894649726,0.0,0.0,0.0,0.0,0.0,10.89570981201229,0.0,0.0,0.0 +7789,my_reservoir,2011-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7790,gw1,2011-11-01,262.4444645390322,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7791,gw2,2011-11-01,262.5555354609678,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7792,my_sewer,2011-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 +7793,my_land,2011-11-02,1.034709579678618,percolation,0.0,0.0,0.00023490755266737833,0.0,0.0,0.0,0.0,0.0,13.452102943441124,0.0,0.0,0.0 +7794,my_land,2011-11-02,0.06252108968940155,subsurface_runoff,0.0,0.0,1.500919928806552e-05,0.0,0.0,0.0,0.0,0.0,11.762840876467141,0.0,0.0,0.0 +7795,my_land,2011-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 +7796,my_groundwater,2011-11-02,12.745238086723214,tank,0.0,0.0,0.0016440466035991818,0.0,0.0,0.0,0.0,0.0,10.89993469790237,0.0,0.0,0.0 +7797,my_reservoir,2011-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7798,gw1,2011-11-02,262.44483477543866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7799,gw2,2011-11-02,262.55516522456134,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7800,my_sewer,2011-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0 +7801,my_land,2011-11-03,1.2024510501265502,percolation,0.0,0.0,0.00027457007831709464,0.0,0.0,0.0,0.0,0.0,13.158313255682367,0.0,0.0,0.0 +7802,my_land,2011-11-03,0.10129188183084219,subsurface_runoff,0.0,0.0,2.4078291866660274e-05,0.0,0.0,0.0,0.0,0.0,11.668950421730127,0.0,0.0,0.0 +7803,my_land,2011-11-03,2.412110591657955e-18,surface_runoff,0.0,0.0,5.888941874164929e-22,0.0,0.0,0.0,0.0,0.0,11.499725514704641,0.0,0.0,0.0 +7804,my_groundwater,2011-11-03,12.737853459312554,tank,0.0,0.0,0.001645525949398782,0.0,0.0,0.0,0.0,0.0,10.904274647878816,0.0,0.0,0.0 +7805,my_reservoir,2011-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7806,gw1,2011-11-03,262.4452025436024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7807,gw2,2011-11-03,262.5547974563976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7808,my_sewer,2011-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7809,my_land,2011-11-04,1.3776410975255988,percolation,0.0,0.0,0.0003152335290214453,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7810,my_land,2011-11-04,0.13524821795489947,subsurface_runoff,0.0,0.0,3.18217769683466e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254407,0.0,0.0,0.0 +7811,my_land,2011-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585714290000002,0.0,0.0,0.0 +7812,my_groundwater,2011-11-04,12.734053662292471,tank,0.0,0.0,0.001647829388508936,0.0,0.0,0.0,0.0,0.0,10.90857510729382,0.0,0.0,0.0 +7813,my_reservoir,2011-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7814,gw1,2011-11-04,262.4455678599784,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7815,gw2,2011-11-04,262.5544321400216,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7816,my_sewer,2011-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7817,my_land,2011-11-05,1.350088275575087,percolation,0.0,0.0,0.0003089288584410164,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7818,my_land,2011-11-05,0.10819857436391958,subsurface_runoff,0.0,0.0,2.545742157467728e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254407,0.0,0.0,0.0 +7819,my_land,2011-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585714290000002,0.0,0.0,0.0 +7820,my_groundwater,2011-11-05,12.729702468032375,tank,0.0,0.0,0.0016499987239416414,0.0,0.0,0.0,0.0,0.0,10.912781713214919,0.0,0.0,0.0 +7821,my_reservoir,2011-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7822,gw1,2011-11-05,262.4459307409119,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7823,gw2,2011-11-05,262.5540692590881,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7824,my_sewer,2011-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7825,my_land,2011-11-06,1.3230865100635851,percolation,0.0,0.0,0.00030275028127219603,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7826,my_land,2011-11-06,0.08655885949113566,subsurface_runoff,0.0,0.0,2.0365937259741825e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +7827,my_land,2011-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585714290000002,0.0,0.0,0.0 +7828,my_groundwater,2011-11-06,12.724812472960018,tank,0.0,0.0,0.0016520368578576855,0.0,0.0,0.0,0.0,0.0,10.916896867228335,0.0,0.0,0.0 +7829,my_reservoir,2011-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7830,gw1,2011-11-06,262.44629120263915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7831,gw2,2011-11-06,262.55370879736085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7832,my_sewer,2011-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7833,my_land,2011-11-07,1.2966247798623134,percolation,0.0,0.0,0.0002966952756467521,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7834,my_land,2011-11-07,0.06924708759290853,subsurface_runoff,0.0,0.0,1.629274980779346e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +7835,my_land,2011-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.796428571,0.0,0.0,0.0 +7836,my_groundwater,2011-11-07,12.719396017653386,tank,0.0,0.0,0.0016539466338244217,0.0,0.0,0.0,0.0,0.0,10.920922895659611,0.0,0.0,0.0 +7837,my_reservoir,2011-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7838,gw1,2011-11-07,262.4466492612882,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7839,gw2,2011-11-07,262.5533507387118,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7840,my_sewer,2011-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7841,my_land,2011-11-08,1.2706922842650672,percolation,0.0,0.0,0.00029076137013381705,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7842,my_land,2011-11-08,0.05539767007432682,subsurface_runoff,0.0,0.0,1.3034199846234768e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +7843,my_land,2011-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.2,0.0,0.0,0.0 +7844,my_groundwater,2011-11-08,12.713465191967506,tank,0.0,0.0,0.0016557308379890135,0.0,0.0,0.0,0.0,0.0,10.924862052473857,0.0,0.0,0.0 +7845,my_reservoir,2011-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7846,gw1,2011-11-08,262.4470049328796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7847,gw2,2011-11-08,262.5529950671204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7848,my_sewer,2011-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7849,my_land,2011-11-09,1.245278438579766,percolation,0.0,0.0,0.0002849461427311407,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7850,my_land,2011-11-09,0.04431813605946146,subsurface_runoff,0.0,0.0,1.0427359876987814e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +7851,my_land,2011-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.510714286,0.0,0.0,0.0 +7852,my_groundwater,2011-11-09,12.707031840058676,tank,0.0,0.0,0.0016573922002282105,0.0,0.0,0.0,0.0,0.0,10.928716522042258,0.0,0.0,0.0 +7853,my_reservoir,2011-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7854,gw1,2011-11-09,262.44735823332707,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7855,gw2,2011-11-09,262.55264176667293,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7856,my_sewer,2011-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 +7857,my_land,2011-11-10,1.2203728698081706,percolation,0.0,0.0,0.0002792472198765179,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 +7858,my_land,2011-11-10,0.03545450884756916,subsurface_runoff,0.0,0.0,8.341887901590251e-06,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 +7859,my_land,2011-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.821428571,0.0,0.0,0.0 +7860,my_groundwater,2011-11-10,12.700107565308196,tank,0.0,0.0,0.001658933395275126,0.0,0.0,0.0,0.0,0.0,10.9324884217819,0.0,0.0,0.0 +7861,my_reservoir,2011-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7862,gw1,2011-11-10,262.44770917843823,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7863,gw2,2011-11-10,262.55229082156177,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7864,my_sewer,2011-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7865,my_land,2011-11-11,1.3501384692908984,percolation,0.0,0.0,0.0003098096011093198,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7866,my_land,2011-11-11,0.07031545928999855,subsurface_runoff,0.0,0.0,1.6509517295512263e-05,0.0,0.0,0.0,0.0,0.0,9.955834963664435,0.0,0.0,0.0 +7867,my_land,2011-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7868,my_groundwater,2011-11-11,12.695842258091204,tank,0.0,0.0,0.001661092900095235,0.0,0.0,0.0,0.0,0.0,10.935690956459299,0.0,0.0,0.0 +7869,my_reservoir,2011-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7870,gw1,2011-11-11,262.4480577839153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7871,gw2,2011-11-11,262.5519422160847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7872,my_sewer,2011-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7873,my_land,2011-11-12,1.3231356999050805,percolation,0.0,0.0,0.0003036134090871334,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7874,my_land,2011-11-12,0.05625236743199884,subsurface_runoff,0.0,0.0,1.320761383640981e-05,0.0,0.0,0.0,0.0,0.0,9.955834963664435,0.0,0.0,0.0 +7875,my_land,2011-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7876,my_groundwater,2011-11-12,12.69103791490833,tank,0.0,0.0,0.0016631208693871277,0.0,0.0,0.0,0.0,0.0,10.938823831543514,0.0,0.0,0.0 +7877,my_reservoir,2011-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7878,gw1,2011-11-12,262.4484040653559,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7879,gw2,2011-11-12,262.5515959346441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7880,my_sewer,2011-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7881,my_land,2011-11-13,1.296672985906979,percolation,0.0,0.0,0.0002975411409053907,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7882,my_land,2011-11-13,0.04500189394559907,subsurface_runoff,0.0,0.0,1.0566091069127849e-05,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7883,my_land,2011-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7884,my_groundwater,2011-11-13,12.685706877334166,tank,0.0,0.0,0.0016650201547249483,0.0,0.0,0.0,0.0,0.0,10.941888820432704,0.0,0.0,0.0 +7885,my_reservoir,2011-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7886,gw1,2011-11-13,262.4487480382535,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7887,gw2,2011-11-13,262.5512519617465,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7888,my_sewer,2011-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7889,my_land,2011-11-14,1.2707395261888395,percolation,0.0,0.0,0.0002915903180872829,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7890,my_land,2011-11-14,0.03600151515647926,subsurface_runoff,0.0,0.0,8.45287285530228e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7891,my_land,2011-11-14,4.210804853146315e-20,surface_runoff,0.0,0.0,1.0280285286001746e-23,0.0,0.0,0.0,0.0,0.0,9.95846745774964,0.0,0.0,0.0 +7892,my_groundwater,2011-11-14,12.679861236209675,tank,0.0,0.0,0.0016667935500991984,0.0,0.0,0.0,0.0,0.0,10.944887641307641,0.0,0.0,0.0 +7893,my_reservoir,2011-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7894,gw1,2011-11-14,262.44908971799845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7895,gw2,2011-11-14,262.55091028200155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7896,my_sewer,2011-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7897,my_land,2011-11-15,1.2453247356650627,percolation,0.0,0.0,0.00028575851172553727,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7898,my_land,2011-11-15,0.028801212125183405,subsurface_runoff,0.0,0.0,6.762298284241823e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7899,my_land,2011-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.95846745774964,0.0,0.0,0.0 +7900,my_groundwater,2011-11-15,12.67351283666662,tank,0.0,0.0,0.0016684437930697916,0.0,0.0,0.0,0.0,0.0,10.947821959245061,0.0,0.0,0.0 +7901,my_reservoir,2011-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7902,gw1,2011-11-15,262.44942911987846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7903,gw2,2011-11-15,262.55057088012154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7904,my_sewer,2011-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7905,my_land,2011-11-16,1.2204182409517614,percolation,0.0,0.0,0.00028004334149102654,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7906,my_land,2011-11-16,0.023040969700146723,subsurface_runoff,0.0,0.0,5.4098386273934586e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7907,my_land,2011-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7908,my_groundwater,2011-11-16,12.66667328305147,tank,0.0,0.0,0.0016699735658960418,0.0,0.0,0.0,0.0,0.0,10.950693388234175,0.0,0.0,0.0 +7909,my_reservoir,2011-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7910,gw1,2011-11-16,262.4497662590793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7911,gw2,2011-11-16,262.5502337409207,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7912,my_sewer,2011-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7913,my_land,2011-11-17,1.1960098761327262,percolation,0.0,0.0,0.000274442474661206,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7914,my_land,2011-11-17,0.018432775760117377,subsurface_runoff,0.0,0.0,4.327870901914767e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7915,my_land,2011-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7916,my_groundwater,2011-11-17,12.659353943750828,tank,0.0,0.0,0.0016713854966440476,0.0,0.0,0.0,0.0,0.0,10.95350349310148,0.0,0.0,0.0 +7917,my_reservoir,2011-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7918,gw1,2011-11-17,262.45010115068544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7919,gw2,2011-11-17,262.54989884931456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7920,my_sewer,2011-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7921,my_land,2011-11-18,1.1720896786100716,percolation,0.0,0.0,0.0002689536251679819,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7922,my_land,2011-11-18,0.014746220608093902,subsurface_runoff,0.0,0.0,3.462296721531813e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7923,my_land,2011-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7924,my_groundwater,2011-11-18,12.651565955920299,tank,0.0,0.0,0.0016726821602719285,0.0,0.0,0.0,0.0,0.0,10.956253791348749,0.0,0.0,0.0 +7925,my_reservoir,2011-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7926,gw1,2011-11-18,262.4504338096809,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7927,gw2,2011-11-18,262.5495661903191,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7928,my_sewer,2011-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7929,my_land,2011-11-19,1.1486478850378703,percolation,0.0,0.0,0.00026357455266462227,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7930,my_land,2011-11-19,0.011796976486475121,subsurface_runoff,0.0,0.0,2.7698373772254506e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7931,my_land,2011-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7932,my_groundwater,2011-11-19,12.64332023011877,tank,0.0,0.0,0.00167386607969335,0.0,0.0,0.0,0.0,0.0,10.9589457549087,0.0,0.0,0.0 +7933,my_reservoir,2011-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7934,gw1,2011-11-19,262.45076425094965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7935,gw2,2011-11-19,262.54923574905035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7936,my_sewer,2011-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 +7937,my_land,2011-11-20,1.125674927337113,percolation,0.0,0.0,0.00025830306161132984,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7938,my_land,2011-11-20,0.009437581189180097,subsurface_runoff,0.0,0.0,2.2158699017803607e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7939,my_land,2011-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7940,my_groundwater,2011-11-20,12.634627454849978,tank,0.0,0.0,0.0016749397268197759,0.0,0.0,0.0,0.0,0.0,10.961580811822685,0.0,0.0,0.0 +7941,my_reservoir,2011-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7942,gw1,2011-11-20,262.4510924892767,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7943,gw2,2011-11-20,262.5489075107233,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7944,my_sewer,2011-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7945,my_land,2011-11-21,1.1031614287903706,percolation,0.0,0.0,0.00025313700037910323,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7946,my_land,2011-11-21,0.007550064951344079,subsurface_runoff,0.0,0.0,1.7726959214242884e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7947,my_land,2011-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7948,my_groundwater,2011-11-21,12.625498101013228,tank,0.0,0.0,0.0016759055235818724,0.0,0.0,0.0,0.0,0.0,10.964160347844329,0.0,0.0,0.0 +7949,my_reservoir,2011-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7950,gw1,2011-11-21,262.45141853934814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7951,gw2,2011-11-21,262.54858146065186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7952,my_sewer,2011-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7953,my_land,2011-11-22,1.0810982002145633,percolation,0.0,0.0,0.00024807426037152115,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7954,my_land,2011-11-22,0.006040051961075263,subsurface_runoff,0.0,0.0,1.4181567371394308e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7955,my_land,2011-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7956,my_groundwater,2011-11-22,12.615942426265065,tank,0.0,0.0,0.0016767658429304808,0.0,0.0,0.0,0.0,0.0,10.96668570797303,0.0,0.0,0.0 +7957,my_reservoir,2011-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7958,gw1,2011-11-22,262.4517424157525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7959,gw2,2011-11-22,262.5482575842475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7960,my_sewer,2011-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7961,my_land,2011-11-23,1.059476236210272,percolation,0.0,0.0,0.0002431127751640907,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7962,my_land,2011-11-23,0.00483204156886021,subsurface_runoff,0.0,0.0,1.1345253897115447e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7963,my_land,2011-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7964,my_groundwater,2011-11-23,12.605970479293683,tank,0.0,0.0,0.0016775230098175665,0.0,0.0,0.0,0.0,0.0,10.96915819792079,0.0,0.0,0.0 +7965,my_reservoir,2011-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7966,gw1,2011-11-23,262.4520641329808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7967,gw2,2011-11-23,262.5479358670192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7968,my_sewer,2011-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7969,my_land,2011-11-24,1.0382867114860665,percolation,0.0,0.0,0.0002382505196608089,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7970,my_land,2011-11-24,0.0038656332550881683,subsurface_runoff,0.0,0.0,9.076203117692358e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7971,my_land,2011-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7972,my_groundwater,2011-11-24,12.595592104007844,tank,0.0,0.0,0.001678179302157546,0.0,0.0,0.0,0.0,0.0,10.971579085515792,0.0,0.0,0.0 +7973,my_reservoir,2011-11-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7974,gw1,2011-11-24,262.4523837054276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7975,gw2,2011-11-24,262.5476162945724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7976,my_sewer,2011-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7977,my_land,2011-11-25,1.0175209772563452,percolation,0.0,0.0,0.00023348550926759271,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7978,my_land,2011-11-25,0.0030925066040705346,subsurface_runoff,0.0,0.0,7.260962494153886e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7979,my_land,2011-11-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7980,my_groundwater,2011-11-25,12.584816943641972,tank,0.0,0.0,0.0016787369517693852,0.0,0.0,0.0,0.0,0.0,10.97394960204589,0.0,0.0,0.0 +7981,my_reservoir,2011-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7982,gw1,2011-11-25,262.45270114739145,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7983,gw2,2011-11-25,262.54729885260855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7984,my_sewer,2011-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7985,my_land,2011-11-26,0.9971705577112182,percolation,0.0,0.0,0.00022881579908224086,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7986,my_land,2011-11-26,0.0024740052832564275,subsurface_runoff,0.0,0.0,5.808769995323109e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7987,my_land,2011-11-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7988,my_groundwater,2011-11-26,12.57365444477913,tank,0.0,0.0,0.0016791981452998503,0.0,0.0,0.0,0.0,0.0,10.97627094354498,0.0,0.0,0.0 +7989,my_reservoir,2011-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7990,gw1,2011-11-26,262.45301647307554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7991,gw2,2011-11-26,262.54698352692446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7992,my_sewer,2011-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +7993,my_land,2011-11-27,0.9772271465569938,percolation,0.0,0.0,0.00022423948310059603,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +7994,my_land,2011-11-27,0.001979204226605142,subsurface_runoff,0.0,0.0,4.647015996258487e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +7995,my_land,2011-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +7996,my_groundwater,2011-11-27,12.562113861293522,tank,0.0,0.0,0.0016795650251282914,0.0,0.0,0.0,0.0,0.0,10.978544272025106,0.0,0.0,0.0 +7997,my_reservoir,2011-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7998,gw1,2011-11-27,262.45332969658836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7999,gw2,2011-11-27,262.54667030341164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8000,my_sewer,2011-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 +8001,my_land,2011-11-28,0.957682603625854,percolation,0.0,0.0,0.00021975469343858413,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8002,my_land,2011-11-28,0.0015833633812841134,subsurface_runoff,0.0,0.0,3.7176127970067896e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8003,my_land,2011-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8004,my_groundwater,2011-11-28,12.5502042582141,tank,0.0,0.0,0.0016798396902533276,0.0,0.0,0.0,0.0,0.0,10.980770716656934,0.0,0.0,0.0 +8005,my_reservoir,2011-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8006,gw1,2011-11-28,262.4536408319444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8007,gw2,2011-11-28,262.5463591680556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8008,my_sewer,2011-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0 +8009,my_land,2011-11-29,0.9385289515533369,percolation,0.0,0.0,0.00021535959956981245,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8010,my_land,2011-11-29,0.0012666907050272907,subsurface_runoff,0.0,0.0,2.9740902376054317e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8011,my_land,2011-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8012,my_groundwater,2011-11-29,12.537934515510901,tank,0.0,0.0,0.001680024197161794,0.0,0.0,0.0,0.0,0.0,10.982951374901143,0.0,0.0,0.0 +8013,my_reservoir,2011-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8014,gw1,2011-11-29,262.4539498930648,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8015,gw2,2011-11-29,262.5460501069352,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8016,my_sewer,2011-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8017,my_land,2011-11-30,0.9197583725222702,percolation,0.0,0.0,0.0002110524075784162,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8018,my_land,2011-11-30,0.0010133525640218326,subsurface_runoff,0.0,0.0,2.3792721900843453e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8019,my_land,2011-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8020,my_groundwater,2011-11-30,12.525313331805613,tank,0.0,0.0,0.0016801205606803075,0.0,0.0,0.0,0.0,0.0,10.985087313593068,0.0,0.0,0.0 +8021,my_reservoir,2011-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8022,gw1,2011-11-30,262.4542568937777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8023,gw2,2011-11-30,262.5457431062223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8024,my_sewer,2011-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8025,my_land,2011-12-01,0.9013632050718248,percolation,0.0,0.0,0.0002068313594268479,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8026,my_land,2011-12-01,0.0008106820512174661,subsurface_runoff,0.0,0.0,1.9034177520674762e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8027,my_land,2011-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8028,my_groundwater,2011-12-01,12.512349228007917,tank,0.0,0.0,0.001680130754809796,0.0,0.0,0.0,0.0,0.0,10.987179569982883,0.0,0.0,0.0 +8029,my_reservoir,2011-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8030,gw1,2011-12-01,262.4545618478192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8031,gw2,2011-12-01,262.5454381521808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8032,my_sewer,2011-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8033,my_land,2011-12-02,0.8833359409703883,percolation,0.0,0.0,0.00020269473223831093,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8034,my_land,2011-12-02,0.0006485456409739728,subsurface_runoff,0.0,0.0,1.522734201653981e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8035,my_land,2011-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8036,my_groundwater,2011-12-02,12.49905055087908,tank,0.0,0.0,0.001680056713543337,0.0,0.0,0.0,0.0,0.0,10.989229152733412,0.0,0.0,0.0 +8037,my_reservoir,2011-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8038,gw1,2011-12-02,262.4548647688338,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8039,gw2,2011-12-02,262.5451352311662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8040,my_sewer,2011-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8041,my_land,2011-12-03,0.8656692221509805,percolation,0.0,0.0,0.00019864083759354472,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8042,my_land,2011-12-03,0.0005188365127791782,subsurface_runoff,0.0,0.0,1.218187361323185e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8043,my_land,2011-12-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8044,my_groundwater,2011-12-03,12.485425476524242,tank,0.0,0.0,0.0016799003316676328,0.0,0.0,0.0,0.0,0.0,10.991237042877598,0.0,0.0,0.0 +8045,my_reservoir,2011-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8046,gw1,2011-12-03,262.45516567037487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8047,gw2,2011-12-03,262.54483432962513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8048,my_sewer,2011-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8049,my_land,2011-12-04,0.8483558377079609,percolation,0.0,0.0,0.00019466802084167382,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8050,my_land,2011-12-04,0.0004150692102233426,subsurface_runoff,0.0,0.0,9.74549889058548e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8051,my_land,2011-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8052,my_groundwater,2011-12-04,12.471482013814843,tank,0.0,0.0,0.001679663465548455,0.0,0.0,0.0,0.0,0.0,10.993204194737526,0.0,0.0,0.0 +8053,my_reservoir,2011-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8054,gw1,2011-12-04,262.4554645659057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8055,gw2,2011-12-04,262.5445354340943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8056,my_sewer,2011-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8057,my_land,2011-12-05,0.8313887209538017,percolation,0.0,0.0,0.00019077466042484033,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8058,my_land,2011-12-05,0.00033205536817867406,subsurface_runoff,0.0,0.0,7.796399112468384e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8059,my_land,2011-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8060,my_groundwater,2011-12-05,12.457228007742579,tank,0.0,0.0,0.0016793479339003753,0.0,0.0,0.0,0.0,0.0,10.995131536806786,0.0,0.0,0.0 +8061,my_reservoir,2011-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8062,gw1,2011-12-05,262.45576146879966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8063,gw2,2011-12-05,262.54423853120034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8064,my_sewer,2011-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8065,my_land,2011-12-06,0.8147609465347256,percolation,0.0,0.0,0.00018695916721634352,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8066,my_land,2011-12-06,0.00026564429454293924,subsurface_runoff,0.0,0.0,6.237119289974707e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8067,my_land,2011-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8068,my_groundwater,2011-12-06,12.442671142706251,tank,0.0,0.0,0.0016789555185410998,0.0,0.0,0.0,0.0,0.0,10.997019972597899,0.0,0.0,0.0 +8069,my_reservoir,2011-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8070,gw1,2011-12-06,262.456056392341,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8071,gw2,2011-12-06,262.543943607659,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8072,my_sewer,2011-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 +8073,my_land,2011-12-07,0.7984657276040311,percolation,0.0,0.0,0.00018321998387201666,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8074,my_land,2011-12-07,0.00021251543563435138,subsurface_runoff,0.0,0.0,4.989695431979765e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8075,my_land,2011-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8076,my_groundwater,2011-12-07,12.427818945732854,tank,0.0,0.0,0.0016784879651307132,0.0,0.0,0.0,0.0,0.0,10.998870381456397,0.0,0.0,0.0 +8077,my_reservoir,2011-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8078,gw1,2011-12-07,262.4563493497254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8079,gw2,2011-12-07,262.5436506502746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8080,my_sewer,2011-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 +8081,my_land,2011-12-08,0.7824964130519505,percolation,0.0,0.0,0.00017955558419457634,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8082,my_land,2011-12-08,0.0001700123485074811,subsurface_runoff,0.0,0.0,3.991756345583812e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8083,my_land,2011-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8084,my_groundwater,2011-12-08,12.412678789634223,tank,0.0,0.0,0.001677946983896133,0.0,0.0,0.0,0.0,0.0,11.000683619343107,0.0,0.0,0.0 +8085,my_reservoir,2011-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8086,gw1,2011-12-08,262.45664035406054,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8087,gw2,2011-12-08,262.54335964593946,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8088,my_sewer,2011-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 +8089,my_land,2011-12-09,0.7668464847909114,percolation,0.0,0.0,0.00017596447251068482,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8090,my_land,2011-12-09,0.00013600987880598488,subsurface_runoff,0.0,0.0,3.19340507646705e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8091,my_land,2011-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8092,my_groundwater,2011-12-09,12.397257896100523,tank,0.0,0.0,0.0016773342503410744,0.0,0.0,0.0,0.0,0.0,11.00246051958606,0.0,0.0,0.0 +8093,my_reservoir,2011-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8094,gw1,2011-12-09,262.4569294183668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8095,gw2,2011-12-09,262.5430705816332,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8096,my_sewer,2011-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 +8097,my_land,2011-12-10,0.7515095550950932,percolation,0.0,0.0,0.00017244518306047113,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 +8098,my_land,2011-12-10,0.0001088079030447879,subsurface_runoff,0.0,0.0,2.5547240611736397e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8099,my_land,2011-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8100,my_groundwater,2011-12-10,12.381563338731851,tank,0.0,0.0,0.00167665140594181,0.0,0.0,0.0,0.0,0.0,11.004201893603438,0.0,0.0,0.0 +8101,my_reservoir,2011-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8102,gw1,2011-12-10,262.4572165555777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8103,gw2,2011-12-10,262.5427834444223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8104,my_sewer,2011-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0 +8105,my_land,2011-12-11,0.7364793639931914,percolation,0.0,0.0,0.0001689962793992617,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 +8106,my_land,2011-12-11,8.704632243583032e-05,subsurface_runoff,0.0,0.0,2.0437792489389118e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 +8107,my_land,2011-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 +8108,my_groundwater,2011-12-11,12.365602046009169,tank,0.0,0.0,0.001675900058829012,0.0,0.0,0.0,0.0,0.0,11.005908531598815,0.0,0.0,0.0 +8109,my_reservoir,2011-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8110,gw1,2011-12-11,262.4575017785405,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8111,gw2,2011-12-11,262.5424982214595,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8112,my_sewer,2011-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0 +8113,my_land,2011-12-12,1.4225577241102614,percolation,0.0,0.0,0.0003271713777392585,0.0,0.0,0.0,0.0,0.0,9.242459664443473,0.0,0.0,0.0 +8114,my_land,2011-12-12,0.19076567716595788,subsurface_runoff,0.0,0.0,4.397690096269411e-05,0.0,0.0,0.0,0.0,0.0,5.979861737929063,0.0,0.0,0.0 +8115,my_land,2011-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.432142857,0.0,0.0,0.0 +8116,my_groundwater,2011-12-12,12.363647251706391,tank,0.0,0.0,0.001678370583157346,0.0,0.0,0.0,0.0,0.0,11.001778028159102,0.0,0.0,0.0 +8117,my_reservoir,2011-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8118,gw1,2011-12-12,262.4577851000169,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8119,gw2,2011-12-12,262.5422148999831,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8120,my_sewer,2011-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0 +8121,my_land,2011-12-13,2.0856027117736704,percolation,0.0,0.0,0.0004718427437041252,0.0,0.0,0.0,0.0,0.0,8.180408753151177,0.0,0.0,0.0 +8122,my_land,2011-12-13,0.3407747572825933,subsurface_runoff,0.0,0.0,7.632840336053675e-05,0.0,0.0,0.0,0.0,0.0,6.012646270718175,0.0,0.0,0.0 +8123,my_land,2011-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4750000000000005,0.0,0.0,0.0 +8124,my_groundwater,2011-12-13,12.375195045923947,tank,0.0,0.0,0.0016837800268391437,0.0,0.0,0.0,0.0,0.0,10.99209845320594,0.0,0.0,0.0 +8125,my_reservoir,2011-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8126,gw1,2011-12-13,262.45806653268346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8127,gw2,2011-12-13,262.54193346731654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8128,my_sewer,2011-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0 +8129,my_land,2011-12-14,2.629431500646569,percolation,0.0,0.0,0.0005849749713598066,0.0,0.0,0.0,0.0,0.0,7.7094157315362155,0.0,0.0,0.0 +8130,my_land,2011-12-14,0.4319506474882166,subsurface_runoff,0.0,0.0,9.441485398904544e-05,0.0,0.0,0.0,0.0,0.0,6.032092674728677,0.0,0.0,0.0 +8131,my_land,2011-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.104166667,0.0,0.0,0.0 +8132,my_groundwater,2011-12-14,12.39778477100087,tank,0.0,0.0,0.0016914789958318705,0.0,0.0,0.0,0.0,0.0,10.97792539722624,0.0,0.0,0.0 +8133,my_reservoir,2011-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8134,gw1,2011-12-14,262.45834608913225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8135,gw2,2011-12-14,262.54165391086775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8136,my_sewer,2011-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0 +8137,my_land,2011-12-15,3.037120313518099,percolation,0.0,0.0,0.0006665090304092516,0.0,0.0,0.0,0.0,0.0,7.419661036505669,0.0,0.0,0.0 +8138,my_land,2011-12-15,0.4708060806802228,subsurface_runoff,0.0,0.0,0.00010090155896719313,0.0,0.0,0.0,0.0,0.0,5.96968073843979,0.0,0.0,0.0 +8139,my_land,2011-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.733333333,0.0,0.0,0.0 +8140,my_groundwater,2011-12-15,12.428617401169987,tank,0.0,0.0,0.0017008185178899078,0.0,0.0,0.0,0.0,0.0,10.96022454352439,0.0,0.0,0.0 +8141,my_reservoir,2011-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8142,gw1,2011-12-15,262.4586237818714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8143,gw2,2011-12-15,262.5413762181286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8144,my_sewer,2011-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +8145,my_land,2011-12-16,3.140979128865327,percolation,0.0,0.0,0.0006863170011134285,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 +8146,my_land,2011-12-16,0.4214343126033865,subsurface_runoff,0.0,0.0,8.973843120432917e-05,0.0,0.0,0.0,0.0,0.0,5.9212574768712125,0.0,0.0,0.0 +8147,my_land,2011-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3625,0.0,0.0,0.0 +8148,my_groundwater,2011-12-16,12.461487218504677,tank,0.0,0.0,0.001710537924832135,0.0,0.0,0.0,0.0,0.0,10.941545089823638,0.0,0.0,0.0 +8149,my_reservoir,2011-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8150,gw1,2011-12-16,262.4588996233256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8151,gw2,2011-12-16,262.5411003766744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8152,my_sewer,2011-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +8153,my_land,2011-12-17,3.0781595462880205,percolation,0.0,0.0,0.0006725906610911599,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 +8154,my_land,2011-12-17,0.3371474500827092,subsurface_runoff,0.0,0.0,7.179074496346334e-05,0.0,0.0,0.0,0.0,0.0,5.9212574768712125,0.0,0.0,0.0 +8155,my_land,2011-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9916666669999996,0.0,0.0,0.0 +8156,my_groundwater,2011-12-17,12.49299603407928,tank,0.0,0.0,0.0017199536041922674,0.0,0.0,0.0,0.0,0.0,10.92337908740475,0.0,0.0,0.0 +8157,my_reservoir,2011-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8158,gw1,2011-12-17,262.45917362583674,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8159,gw2,2011-12-17,262.54082637416326,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8160,my_sewer,2011-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 +8161,my_land,2011-12-18,3.01659635536226,percolation,0.0,0.0,0.0006591388478693368,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 +8162,my_land,2011-12-18,0.26971796006616733,subsurface_runoff,0.0,0.0,5.7432595970770674e-05,0.0,0.0,0.0,0.0,0.0,5.9212574768712125,0.0,0.0,0.0 +8163,my_land,2011-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6208333329999998,0.0,0.0,0.0 +8164,my_groundwater,2011-12-18,12.523172826942528,tank,0.0,0.0,0.0017290719038705554,0.0,0.0,0.0,0.0,0.0,10.905708383492394,0.0,0.0,0.0 +8165,my_reservoir,2011-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8166,gw1,2011-12-18,262.4594458016645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8167,gw2,2011-12-18,262.5405541983355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8168,my_sewer,2011-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0 +8169,my_land,2011-12-19,3.2067509130497314,percolation,0.0,0.0,0.000696233312862361,0.0,0.0,0.0,0.0,0.0,7.103656958524625,0.0,0.0,0.0 +8170,my_land,2011-12-19,0.2839339557521765,subsurface_runoff,0.0,0.0,5.9626958939993656e-05,0.0,0.0,0.0,0.0,0.0,5.592736636888659,0.0,0.0,0.0 +8171,my_land,2011-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.25,0.0,0.0,0.0 +8172,my_groundwater,2011-12-19,12.557145181319399,tank,0.0,0.0,0.00173892254512272,0.0,0.0,0.0,0.0,0.0,10.885942823525243,0.0,0.0,0.0 +8173,my_reservoir,2011-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8174,gw1,2011-12-19,262.45971616298675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8175,gw2,2011-12-19,262.54028383701325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8176,my_sewer,2011-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +8177,my_land,2011-12-20,3.40650322939667,percolation,0.0,0.0,0.0007343541870328613,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 +8178,my_land,2011-12-20,0.29895324204607676,subsurface_runoff,0.0,0.0,6.18636189690691e-05,0.0,0.0,0.0,0.0,0.0,5.268395603987981,0.0,0.0,0.0 +8179,my_land,2011-12-20,2.80066570443199e-18,surface_runoff,0.0,0.0,6.837562754960913e-22,0.0,0.0,0.0,0.0,0.0,4.924298295943825,0.0,0.0,0.0 +8180,my_groundwater,2011-12-20,12.595098991250246,tank,0.0,0.0,0.001749524591853082,0.0,0.0,0.0,0.0,0.0,10.863897770708597,0.0,0.0,0.0 +8181,my_reservoir,2011-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8182,gw1,2011-12-20,262.4599847219002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8183,gw2,2011-12-20,262.5400152780998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8184,my_sewer,2011-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +8185,my_land,2011-12-21,3.3383731648087367,percolation,0.0,0.0,0.0007196671032922041,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 +8186,my_land,2011-12-21,0.23916259363686143,subsurface_runoff,0.0,0.0,4.949089517525528e-05,0.0,0.0,0.0,0.0,0.0,5.268395603987981,0.0,0.0,0.0 +8187,my_land,2011-12-21,4.7759300123851887e-20,surface_runoff,0.0,0.0,1.1659985381799777e-23,0.0,0.0,0.0,0.0,0.0,5.258816555668014,0.0,0.0,0.0 +8188,my_groundwater,2011-12-21,12.631570983198584,tank,0.0,0.0,0.001759801146404755,0.0,0.0,0.0,0.0,0.0,10.842474603759847,0.0,0.0,0.0 +8189,my_reservoir,2011-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8190,gw1,2011-12-21,262.46025149042083,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8191,gw2,2011-12-21,262.53974850957917,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8192,my_sewer,2011-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 +8193,my_land,2011-12-22,3.271605701512562,percolation,0.0,0.0,0.00070527376122636,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 +8194,my_land,2011-12-22,0.19133007490948914,subsurface_runoff,0.0,0.0,3.959271614020422e-05,0.0,0.0,0.0,0.0,0.0,5.268395603987982,0.0,0.0,0.0 +8195,my_land,2011-12-22,6.928272340687527e-36,surface_runoff,0.0,0.0,1.691472739425666e-39,0.0,0.0,0.0,0.0,0.0,5.268395603987982,0.0,0.0,0.0 +8196,my_groundwater,2011-12-22,12.666592600378522,tank,0.0,0.0,0.0017697590022494225,0.0,0.0,0.0,0.0,0.0,10.821650590337043,0.0,0.0,0.0 +8197,my_reservoir,2011-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8198,gw1,2011-12-22,262.46051648048467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8199,gw2,2011-12-22,262.53948351951533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8200,my_sewer,2011-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8201,my_land,2011-12-23,3.5746674206852838,percolation,0.0,0.0,0.0007627193853390882,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +8202,my_land,2011-12-23,0.25333449073112135,subsurface_runoff,0.0,0.0,5.114385980665465e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 +8203,my_land,2011-12-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8204,my_groundwater,2011-12-23,12.707696134227241,tank,0.0,0.0,0.001780861392231059,0.0,0.0,0.0,0.0,0.0,10.797958335196226,0.0,0.0,0.0 +8205,my_reservoir,2011-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8206,gw1,2011-12-23,262.4607797039481,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8207,gw2,2011-12-23,262.5392202960519,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8208,my_sewer,2011-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8209,my_land,2011-12-24,3.503174072271578,percolation,0.0,0.0,0.0007474649976323065,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +8210,my_land,2011-12-24,0.20266759258489708,subsurface_runoff,0.0,0.0,4.091508784532372e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 +8211,my_land,2011-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.816666667,0.0,0.0,0.0 +8212,my_groundwater,2011-12-24,12.747241508934344,tank,0.0,0.0,0.0017916254904879962,0.0,0.0,0.0,0.0,0.0,10.774944501558391,0.0,0.0,0.0 +8213,my_reservoir,2011-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8214,gw1,2011-12-24,262.46104117258847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8215,gw2,2011-12-24,262.53895882741153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8216,my_sewer,2011-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8217,my_land,2011-12-25,3.4331105908261463,percolation,0.0,0.0,0.0007325156976796603,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +8218,my_land,2011-12-25,0.16213407406791766,subsurface_runoff,0.0,0.0,3.273207027625897e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 +8219,my_land,2011-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.13,0.0,0.0,0.0 +8220,my_groundwater,2011-12-25,12.785261727903826,tank,0.0,0.0,0.0018020583534645407,0.0,0.0,0.0,0.0,0.0,10.752583814278706,0.0,0.0,0.0 +8221,my_reservoir,2011-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8222,gw1,2011-12-25,262.4613008981045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8223,gw2,2011-12-25,262.5386991018955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8224,my_sewer,2011-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8225,my_land,2011-12-26,3.3644483790096236,percolation,0.0,0.0,0.0007178653837260671,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +8226,my_land,2011-12-26,0.12970725925433413,subsurface_runoff,0.0,0.0,2.6185656221007178e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 +8227,my_land,2011-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.443333333,0.0,0.0,0.0 +8228,my_groundwater,2011-12-26,12.821789129871048,tank,0.0,0.0,0.0018121668957495885,0.0,0.0,0.0,0.0,0.0,10.730852213815792,0.0,0.0,0.0 +8229,my_reservoir,2011-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8230,gw1,2011-12-26,262.4615588921172,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8231,gw2,2011-12-26,262.5384411078828,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8232,my_sewer,2011-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8233,my_land,2011-12-27,3.297159411429431,percolation,0.0,0.0,0.0007035080760515457,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +8234,my_land,2011-12-27,0.1037658074034673,subsurface_runoff,0.0,0.0,2.0948524976805744e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 +8235,my_land,2011-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.756666667,0.0,0.0,0.0 +8236,my_groundwater,2011-12-27,12.856855402207612,tank,0.0,0.0,0.0018219578929155496,0.0,0.0,0.0,0.0,0.0,10.709726783926067,0.0,0.0,0.0 +8237,my_reservoir,2011-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8238,gw1,2011-12-27,262.46181516616974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8239,gw2,2011-12-27,262.53818483383026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8240,my_sewer,2011-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 +8241,my_land,2011-12-28,3.2312162232008426,percolation,0.0,0.0,0.0006894379145305148,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 +8242,my_land,2011-12-28,0.08301264592277384,subsurface_runoff,0.0,0.0,1.6758819981444596e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780196,0.0,0.0,0.0 +8243,my_land,2011-12-28,4.9987069231639284e-20,surface_runoff,0.0,0.0,1.2203874324130685e-23,0.0,0.0,0.0,0.0,0.0,5.161295673902048,0.0,0.0,0.0 +8244,my_groundwater,2011-12-28,12.89049159396011,tank,0.0,0.0,0.001831437984300489,0.0,0.0,0.0,0.0,0.0,10.689185684463764,0.0,0.0,0.0 +8245,my_reservoir,2011-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8246,gw1,2011-12-28,262.4620697317286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8247,gw2,2011-12-28,262.5379302682714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8248,my_sewer,2011-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 +8249,my_land,2011-12-29,3.272181296434323,percolation,0.0,0.0,0.0006967877193750388,0.0,0.0,0.0,0.0,0.0,6.681290821266299,0.0,0.0,0.0 +8250,my_land,2011-12-29,0.09514192563549724,subsurface_runoff,0.0,0.0,1.9159045953899713e-05,0.0,0.0,0.0,0.0,0.0,5.583657093677215,0.0,0.0,0.0 +8251,my_land,2011-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 +8252,my_groundwater,2011-12-29,12.924877627081194,tank,0.0,0.0,0.0018410439964841583,0.0,0.0,0.0,0.0,0.0,10.668529787299896,0.0,0.0,0.0 +8253,my_reservoir,2011-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8254,gw1,2011-12-29,262.46232260018377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8255,gw2,2011-12-29,262.53767739981623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8256,my_sewer,2011-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 +8257,my_land,2011-12-30,3.4530518489893436,percolation,0.0,0.0,0.0007307295390252797,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 +8258,my_land,2011-12-30,0.1431378067624677,subsurface_runoff,0.0,0.0,2.835514806590661e-05,0.0,0.0,0.0,0.0,0.0,6.17944139078194,0.0,0.0,0.0 +8259,my_land,2011-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 +8260,my_groundwater,2011-12-30,12.96285970279649,tank,0.0,0.0,0.0018513169521088197,0.0,0.0,0.0,0.0,0.0,10.64697559967172,0.0,0.0,0.0 +8261,my_reservoir,2011-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8262,gw1,2011-12-30,262.46257378284923,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8263,gw2,2011-12-30,262.53742621715077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8264,my_sewer,2011-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 +8265,my_land,2011-12-31,3.3839908120095568,percolation,0.0,0.0,0.000716114948244774,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 +8266,my_land,2011-12-31,0.11451024540997416,subsurface_runoff,0.0,0.0,2.2684118452725288e-05,0.0,0.0,0.0,0.0,0.0,6.17944139078194,0.0,0.0,0.0 +8267,my_land,2011-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.010000000000001,0.0,0.0,0.0 +8268,my_groundwater,2011-12-31,12.999340937926837,tank,0.0,0.0,0.001861266714032102,0.0,0.0,0.0,0.0,0.0,10.626025999213889,0.0,0.0,0.0 +8269,my_reservoir,2011-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8270,gw1,2011-12-31,262.46282329096357,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8271,gw2,2011-12-31,262.53717670903643,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8272,my_sewer,2012-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 +8273,my_land,2012-01-01,3.4873052115049856,percolation,0.0,0.0,0.0007347931741077138,0.0,0.0,0.0,0.0,0.0,6.728261964850857,0.0,0.0,0.0 +8274,my_land,2012-01-01,0.1381372346233862,subsurface_runoff,0.0,0.0,2.7127029409210245e-05,0.0,0.0,0.0,0.0,0.0,6.589724238810732,0.0,0.0,0.0 +8275,my_land,2012-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 +8276,my_groundwater,2012-01-01,13.037834155959086,tank,0.0,0.0,0.001871571836862786,0.0,0.0,0.0,0.0,0.0,10.604802505614513,0.0,0.0,0.0 +8277,my_reservoir,2012-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8278,gw1,2012-01-01,262.4630711356905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8279,gw2,2012-01-01,262.5369288643095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8280,my_sewer,2012-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 +8281,my_land,2012-01-02,3.827626186498407,percolation,0.0,0.0,0.0007959846663878724,0.0,0.0,0.0,0.0,0.0,6.828707645462626,0.0,0.0,0.0 +8282,my_land,2012-01-02,0.2220926663989869,subsurface_runoff,0.0,0.0,4.235124414296356e-05,0.0,0.0,0.0,0.0,0.0,7.130380190587752,0.0,0.0,0.0 +8283,my_land,2012-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 +8284,my_groundwater,2012-01-02,13.083159103651477,tank,0.0,0.0,0.001883096880836382,0.0,0.0,0.0,0.0,0.0,10.5823131705811,0.0,0.0,0.0 +8285,my_reservoir,2012-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8286,gw1,2012-01-02,262.4633173281192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8287,gw2,2012-01-02,262.5366826718808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8288,my_sewer,2012-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.855622490060242,0.0,0.0,0.0 +8289,my_land,2012-01-03,4.179763124701127,percolation,0.0,0.0,0.0008565130587355953,0.0,0.0,0.0,0.0,0.0,6.9423053143813584,0.0,0.0,0.0 +8290,my_land,2012-01-03,0.29432432684237014,subsurface_runoff,0.0,0.0,5.468319549817504e-05,0.0,0.0,0.0,0.0,0.0,7.449790437345958,0.0,0.0,0.0 +8291,my_land,2012-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.95,0.0,0.0,0.0 +8292,my_groundwater,2012-01-03,13.135539240930907,tank,0.0,0.0,0.00189582529732998,0.0,0.0,0.0,0.0,0.0,10.558734304854461,0.0,0.0,0.0 +8293,my_reservoir,2012-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8294,gw1,2012-01-03,262.4635618792651,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8295,gw2,2012-01-03,262.5364381207349,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8296,my_sewer,2012-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244611,0.0,0.0,0.0 +8297,my_land,2012-01-04,4.3987963838573885,percolation,0.0,0.0,0.0008921763402903699,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8298,my_land,2012-01-04,0.3178073585215924,subsurface_runoff,0.0,0.0,5.811214625690373e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866664,0.0,0.0,0.0 +8299,my_land,2012-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.985714286,0.0,0.0,0.0 +8300,my_groundwater,2012-01-04,13.192247319214248,tank,0.0,0.0,0.001909247895299709,0.0,0.0,0.0,0.0,0.0,10.534773419260747,0.0,0.0,0.0 +8301,my_reservoir,2012-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8302,gw1,2012-01-04,262.46380480007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8303,gw2,2012-01-04,262.53619519993,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8304,my_sewer,2012-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8305,my_land,2012-01-05,4.310820456180241,percolation,0.0,0.0,0.0008743328134845625,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8306,my_land,2012-01-05,0.25424588681727395,subsurface_runoff,0.0,0.0,4.648971700552298e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8307,my_land,2012-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.021428571,0.0,0.0,0.0 +8308,my_groundwater,2012-01-05,13.247022688774168,tank,0.0,0.0,0.0019222736935502526,0.0,0.0,0.0,0.0,0.0,10.511547577031282,0.0,0.0,0.0 +8309,my_reservoir,2012-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8310,gw1,2012-01-05,262.4640461014029,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8311,gw2,2012-01-05,262.5359538985971,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8312,my_sewer,2012-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8313,my_land,2012-01-06,4.224604047056636,percolation,0.0,0.0,0.0008568461572148712,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8314,my_land,2012-01-06,0.20339670945381916,subsurface_runoff,0.0,0.0,3.719177360441839e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8315,my_land,2012-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057142857,0.0,0.0,0.0 +8316,my_groundwater,2012-01-06,13.299906000153028,tank,0.0,0.0,0.001934910948945394,0.0,0.0,0.0,0.0,0.0,10.489026940328849,0.0,0.0,0.0 +8317,my_reservoir,2012-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8318,gw1,2012-01-06,262.46428579406023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8319,gw2,2012-01-06,262.53571420593977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8320,my_sewer,2012-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8321,my_land,2012-01-07,4.140111966115503,percolation,0.0,0.0,0.0008397092340705738,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8322,my_land,2012-01-07,0.16271736756305533,subsurface_runoff,0.0,0.0,2.9753418883534712e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8323,my_land,2012-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057142857,0.0,0.0,0.0 +8324,my_groundwater,2012-01-07,13.350937085891424,tank,0.0,0.0,0.0019471677524094673,0.0,0.0,0.0,0.0,0.0,10.467183241726634,0.0,0.0,0.0 +8325,my_reservoir,2012-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8326,gw1,2012-01-07,262.4645238887665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8327,gw2,2012-01-07,262.5354761112335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8328,my_sewer,2012-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8329,my_land,2012-01-08,4.057309726793193,percolation,0.0,0.0,0.0008229150493891624,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8330,my_land,2012-01-08,0.13017389405044427,subsurface_runoff,0.0,0.0,2.380273510682777e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8331,my_land,2012-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057142857,0.0,0.0,0.0 +8332,my_groundwater,2012-01-08,13.4001549769007,tank,0.0,0.0,0.0019590520322481514,0.0,0.0,0.0,0.0,0.0,10.44598968210406,0.0,0.0,0.0 +8333,my_reservoir,2012-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8334,gw1,2012-01-08,262.4647603961747,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8335,gw2,2012-01-08,262.5352396038253,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8336,my_sewer,2012-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8337,my_land,2012-01-09,3.976163532257329,percolation,0.0,0.0,0.0008064567484013792,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8338,my_land,2012-01-09,0.10413911524035542,subsurface_runoff,0.0,0.0,1.9042188085462215e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8339,my_land,2012-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 +8340,my_groundwater,2012-01-09,13.447597918507972,tank,0.0,0.0,0.0019705715574028448,0.0,0.0,0.0,0.0,0.0,10.42542083641195,0.0,0.0,0.0 +8341,my_reservoir,2012-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8342,gw1,2012-01-09,262.46499532686687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8343,gw2,2012-01-09,262.53500467313313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8344,my_sewer,2012-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8345,my_land,2012-01-10,3.8966402616121822,percolation,0.0,0.0,0.0007903276134333516,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8346,my_land,2012-01-10,0.08331129219228434,subsurface_runoff,0.0,0.0,1.5233750468369771e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8347,my_land,2012-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 +8348,my_groundwater,2012-01-10,13.493303386180237,tank,0.0,0.0,0.0019817339406399456,0.0,0.0,0.0,0.0,0.0,10.405452566608364,0.0,0.0,0.0 +8349,my_reservoir,2012-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8350,gw1,2012-01-10,262.4652286913544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8351,gw2,2012-01-10,262.5347713086456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8352,my_sewer,2012-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8353,my_land,2012-01-11,3.8187074563799386,percolation,0.0,0.0,0.0007745210611646846,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8354,my_land,2012-01-11,0.06664903375382747,subsurface_runoff,0.0,0.0,1.2187000374695817e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8355,my_land,2012-01-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 +8356,my_groundwater,2012-01-11,13.53730810093395,tank,0.0,0.0,0.001992546641676341,0.0,0.0,0.0,0.0,0.0,10.386061941136491,0.0,0.0,0.0 +8357,my_reservoir,2012-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8358,gw1,2012-01-11,262.46546050007873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8359,gw2,2012-01-11,262.53453949992127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8360,my_sewer,2012-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8361,my_land,2012-01-12,3.74233330725234,percolation,0.0,0.0,0.0007590306399413908,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8362,my_land,2012-01-12,0.05331922700306198,subsurface_runoff,0.0,0.0,9.749600299756655e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +8363,my_land,2012-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 +8364,my_groundwater,2012-01-12,13.579648044436395,tank,0.0,0.0,0.0020030169702423854,0.0,0.0,0.0,0.0,0.0,10.3672271603782,0.0,0.0,0.0 +8365,my_reservoir,2012-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8366,gw1,2012-01-12,262.46569076341154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8367,gw2,2012-01-12,262.53430923658846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8368,my_sewer,2012-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8369,my_land,2012-01-13,3.6674866411072933,percolation,0.0,0.0,0.000743850027142563,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 +8370,my_land,2012-01-13,0.04265538160244958,subsurface_runoff,0.0,0.0,7.799680239805323e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +8371,my_land,2012-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8372,my_groundwater,2012-01-13,13.62035847380499,tank,0.0,0.0,0.00201315208908361,0.0,0.0,0.0,0.0,0.0,10.348927487572135,0.0,0.0,0.0 +8373,my_reservoir,2012-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8374,gw1,2012-01-13,262.4659194916555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8375,gw2,2012-01-13,262.5340805083445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8376,my_sewer,2012-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8377,my_land,2012-01-14,3.5941369082851473,percolation,0.0,0.0,0.0007289730265997117,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +8378,my_land,2012-01-14,0.034124305281959665,subsurface_runoff,0.0,0.0,6.2397441918442585e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8379,my_land,2012-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8380,my_groundwater,2012-01-14,13.659473936110569,tank,0.0,0.0,0.0020229590169023952,0.0,0.0,0.0,0.0,0.0,10.33114318473471,0.0,0.0,0.0 +8381,my_reservoir,2012-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8382,gw1,2012-01-14,262.4661466950445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8383,gw2,2012-01-14,262.5338533049555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8384,my_sewer,2012-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8385,my_land,2012-01-15,3.5222541701194445,percolation,0.0,0.0,0.0007143935660677176,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +8386,my_land,2012-01-15,0.02729944422556773,subsurface_runoff,0.0,0.0,4.991795353475407e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 +8387,my_land,2012-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8388,my_groundwater,2012-01-15,13.697028282590582,tank,0.0,0.0,0.0020324446312408036,0.0,0.0,0.0,0.0,0.0,10.313855453166271,0.0,0.0,0.0 +8389,my_reservoir,2012-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8390,gw1,2012-01-15,262.46637238374416,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8391,gw2,2012-01-15,262.53362761625584,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8392,my_sewer,2012-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8393,my_land,2012-01-16,3.4518090867170557,percolation,0.0,0.0,0.0007001056947463632,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +8394,my_land,2012-01-16,0.021839555380454186,subsurface_runoff,0.0,0.0,3.9934362827803256e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +8395,my_land,2012-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8396,my_groundwater,2012-01-16,13.733054682577988,tank,0.0,0.0,0.0020416156713057524,0.0,0.0,0.0,0.0,0.0,10.297046378164193,0.0,0.0,0.0 +8397,my_reservoir,2012-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8398,gw1,2012-01-16,262.46659656785255,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8399,gw2,2012-01-16,262.53340343214745,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8400,my_sewer,2012-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 +8401,my_land,2012-01-17,3.3827729049827147,percolation,0.0,0.0,0.0006861035808514359,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +8402,my_land,2012-01-17,0.01747164430436335,subsurface_runoff,0.0,0.0,3.1947490262242603e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 +8403,my_land,2012-01-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8404,my_groundwater,2012-01-17,13.76758563715155,tank,0.0,0.0,0.002050478740737678,0.0,0.0,0.0,0.0,0.0,10.280698877599843,0.0,0.0,0.0 +8405,my_reservoir,2012-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8406,gw1,2012-01-17,262.4668192574002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8407,gw2,2012-01-17,262.5331807425998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8408,my_sewer,2012-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +8409,my_land,2012-01-18,3.31511744688306,percolation,0.0,0.0,0.0006723815092344072,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +8410,my_land,2012-01-18,0.013977315443490679,subsurface_runoff,0.0,0.0,2.5557992209794084e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +8411,my_land,2012-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8412,my_groundwater,2012-01-18,13.800652992513076,tank,0.0,0.0,0.00205904031032382,0.0,0.0,0.0,0.0,0.0,10.264796654048011,0.0,0.0,0.0 +8413,my_reservoir,2012-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8414,gw1,2012-01-18,262.46704046235084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8415,gw2,2012-01-18,262.53295953764916,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8416,my_sewer,2012-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +8417,my_land,2012-01-19,3.248815097945399,percolation,0.0,0.0,0.0006589338790497191,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 +8418,my_land,2012-01-19,0.011181852354792543,subsurface_runoff,0.0,0.0,2.0446393767835266e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +8419,my_land,2012-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8420,my_groundwater,2012-01-19,13.83228795309711,tank,0.0,0.0,0.0020673067206572367,0.0,0.0,0.0,0.0,0.0,10.249324150185664,0.0,0.0,0.0 +8421,my_reservoir,2012-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8422,gw1,2012-01-19,262.4672601926018,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8423,gw2,2012-01-19,262.5327398073982,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8424,my_sewer,2012-01-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +8425,my_land,2012-01-20,3.183838795986491,percolation,0.0,0.0,0.0006457552014687247,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 +8426,my_land,2012-01-20,0.008945481883834035,subsurface_runoff,0.0,0.0,1.6357115014268214e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +8427,my_land,2012-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8428,my_groundwater,2012-01-20,13.862521094418376,tank,0.0,0.0,0.0020752841847426354,0.0,0.0,0.0,0.0,0.0,10.234266507202527,0.0,0.0,0.0 +8429,my_reservoir,2012-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8430,gw1,2012-01-20,262.4674784579845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8431,gw2,2012-01-20,262.5325215420155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8432,my_sewer,2012-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +8433,my_land,2012-01-21,3.1201620200667612,percolation,0.0,0.0,0.0006328400974393502,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 +8434,my_land,2012-01-21,0.007156385507067228,subsurface_runoff,0.0,0.0,1.308569201141457e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +8435,my_land,2012-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8436,my_groundwater,2012-01-21,13.89138237566226,tank,0.0,0.0,0.00208297879055008,0.0,0.0,0.0,0.0,0.0,10.219609525988746,0.0,0.0,0.0 +8437,my_reservoir,2012-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8438,gw1,2012-01-21,262.4676952682646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8439,gw2,2012-01-21,262.5323047317354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8440,my_sewer,2012-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 +8441,my_land,2012-01-22,3.057758779665426,percolation,0.0,0.0,0.0006201832954905632,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 +8442,my_land,2012-01-22,0.005725108405653783,subsurface_runoff,0.0,0.0,1.0468553609131656e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +8443,my_land,2012-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8444,my_groundwater,2012-01-22,13.918901152023437,tank,0.0,0.0,0.00209039650351762,0.0,0.0,0.0,0.0,0.0,10.205339630885716,0.0,0.0,0.0 +8445,my_reservoir,2012-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8446,gw1,2012-01-22,262.4679106331428,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8447,gw2,2012-01-22,262.5320893668572,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8448,my_sewer,2012-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 +8449,my_land,2012-01-23,2.9966036040721176,percolation,0.0,0.0,0.0006077796295807519,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 +8450,my_land,2012-01-23,0.004580086724523026,subsurface_runoff,0.0,0.0,8.374842887305325e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 +8451,my_land,2012-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 +8452,my_groundwater,2012-01-23,13.945106186797704,tank,0.0,0.0,0.002097543169003863,0.0,0.0,0.0,0.0,0.0,10.19144383580467,0.0,0.0,0.0 +8453,my_reservoir,2012-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8454,gw1,2012-01-23,262.4681245622552,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8455,gw2,2012-01-23,262.5318754377448,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8456,my_sewer,2012-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 +8457,my_land,2012-01-24,3.003258557678833,percolation,0.0,0.0,0.0006083411796966697,0.0,0.0,0.0,0.0,0.0,7.011035885784654,0.0,0.0,0.0 +8458,my_land,2012-01-24,0.021782987934219185,subsurface_runoff,0.0,0.0,4.130434426231471e-06,0.0,0.0,0.0,0.0,0.0,6.467123279742384,0.0,0.0,0.0 +8459,my_land,2012-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.025,0.0,0.0,0.0 +8460,my_groundwater,2012-01-24,13.971381184826313,tank,0.0,0.0,0.002104683399382321,0.0,0.0,0.0,0.0,0.0,10.177526598382288,0.0,0.0,0.0 +8461,my_reservoir,2012-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8462,gw1,2012-01-24,262.4683370651735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8463,gw2,2012-01-24,262.5316629348265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8464,my_sewer,2012-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 +8465,my_land,2012-01-25,3.0929449885791156,percolation,0.0,0.0,0.0006243419942452337,0.0,0.0,0.0,0.0,0.0,6.987877609016408,0.0,0.0,0.0 +8466,my_land,2012-01-25,0.058175125600126144,subsurface_runoff,0.0,0.0,1.096901098112051e-05,0.0,0.0,0.0,0.0,0.0,6.513076520037298,0.0,0.0,0.0 +8467,my_land,2012-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 +8468,my_groundwater,2012-01-25,13.999416254846038,tank,0.0,0.0,0.002112131510052429,0.0,0.0,0.0,0.0,0.0,10.163180890404908,0.0,0.0,0.0 +8469,my_reservoir,2012-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8470,gw1,2012-01-25,262.4685481514057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8471,gw2,2012-01-25,262.5314518485943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8472,my_sewer,2012-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8473,my_land,2012-01-26,3.1814006989170704,percolation,0.0,0.0,0.0006397934846257404,0.0,0.0,0.0,0.0,0.0,6.958592335172325,0.0,0.0,0.0 +8474,my_land,2012-01-26,0.0874420352037845,subsurface_runoff,0.0,0.0,1.637747552378386e-05,0.0,0.0,0.0,0.0,0.0,6.445241805792428,0.0,0.0,0.0 +8475,my_land,2012-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857,0.0,0.0,0.0 +8476,my_groundwater,2012-01-26,14.029181942722591,tank,0.0,0.0,0.002119875548642893,0.0,0.0,0.0,0.0,0.0,10.148387247672872,0.0,0.0,0.0 +8477,my_reservoir,2012-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8478,gw1,2012-01-26,262.4687578303963,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8479,gw2,2012-01-26,262.5312421696037,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8480,my_sewer,2012-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8481,my_land,2012-01-27,3.180676923006244,percolation,0.0,0.0,0.0006387031413783165,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +8482,my_land,2012-01-27,0.08707042763718133,subsurface_runoff,0.0,0.0,1.6287157682997378e-05,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 +8483,my_land,2012-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.210714286,0.0,0.0,0.0 +8484,my_groundwater,2012-01-27,14.05885848236984,tank,0.0,0.0,0.00212757803086363,0.0,0.0,0.0,0.0,0.0,10.133623170371216,0.0,0.0,0.0 +8485,my_reservoir,2012-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8486,gw1,2012-01-27,262.46896611152704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8487,gw2,2012-01-27,262.53103388847296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8488,my_sewer,2012-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8489,my_land,2012-01-28,3.117063384546119,percolation,0.0,0.0,0.0006259290785507502,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +8490,my_land,2012-01-28,0.06965634210974506,subsurface_runoff,0.0,0.0,1.3029726146397903e-05,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +8491,my_land,2012-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.210714286,0.0,0.0,0.0 +8492,my_groundwater,2012-01-28,14.08716584077789,tank,0.0,0.0,0.0021350012134569683,0.0,0.0,0.0,0.0,0.0,10.119249952435409,0.0,0.0,0.0 +8493,my_reservoir,2012-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8494,gw1,2012-01-28,262.46917300411684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8495,gw2,2012-01-28,262.53082699588316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8496,my_sewer,2012-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8497,my_land,2012-01-29,3.0547221168551966,percolation,0.0,0.0,0.0006134104969797352,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 +8498,my_land,2012-01-29,0.05572507368779604,subsurface_runoff,0.0,0.0,1.0423780917118322e-05,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +8499,my_land,2012-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8500,my_groundwater,2012-01-29,14.11413334069764,tank,0.0,0.0,0.0021421509955404133,0.0,0.0,0.0,0.0,0.0,10.105254439048279,0.0,0.0,0.0 +8501,my_reservoir,2012-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8502,gw1,2012-01-29,262.46937851742274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8503,gw2,2012-01-29,262.53062148257726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8504,my_sewer,2012-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8505,my_land,2012-01-30,2.9936276745180925,percolation,0.0,0.0,0.0006011422870401405,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 +8506,my_land,2012-01-30,0.04458005895023683,subsurface_runoff,0.0,0.0,8.339024733694658e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +8507,my_land,2012-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8508,my_groundwater,2012-01-30,14.139789713577157,tank,0.0,0.0,0.002149033157466308,0.0,0.0,0.0,0.0,0.0,10.091624042506758,0.0,0.0,0.0 +8509,my_reservoir,2012-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8510,gw1,2012-01-30,262.4695826606399,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8511,gw2,2012-01-30,262.5304173393601,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8512,my_sewer,2012-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8513,my_land,2012-01-31,2.9337551210277306,percolation,0.0,0.0,0.0005891194412993377,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 +8514,my_land,2012-01-31,0.03566404716018946,subsurface_runoff,0.0,0.0,6.671219786955727e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +8515,my_land,2012-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8516,my_groundwater,2012-01-31,14.16416311139985,tank,0.0,0.0,0.002155653363199093,0.0,0.0,0.0,0.0,0.0,10.07834671195888,0.0,0.0,0.0 +8517,my_reservoir,2012-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8518,gw1,2012-01-31,262.4697854429023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8519,gw2,2012-01-31,262.5302145570977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8520,my_sewer,2012-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8521,my_land,2012-02-01,2.875080018607176,percolation,0.0,0.0,0.000577337052473351,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +8522,my_land,2012-02-01,0.02853123772815157,subsurface_runoff,0.0,0.0,5.3369758295645815e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +8523,my_land,2012-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8524,my_groundwater,2012-02-01,14.187281118285853,tank,0.0,0.0,0.0021620171626450173,0.0,0.0,0.0,0.0,0.0,10.065410905061507,0.0,0.0,0.0 +8525,my_reservoir,2012-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8526,gw1,2012-02-01,262.46998687328295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8527,gw2,2012-02-01,262.53001312671705,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8528,my_sewer,2012-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8529,my_land,2012-02-02,2.8175784182350325,percolation,0.0,0.0,0.000565790311423884,0.0,0.0,0.0,0.0,0.0,6.9427085779533915,0.0,0.0,0.0 +8530,my_land,2012-02-02,0.02282499018252126,subsurface_runoff,0.0,0.0,4.269580663651665e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 +8531,my_land,2012-02-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8532,my_groundwater,2012-02-02,14.209170761861351,tank,0.0,0.0,0.002168129993935248,0.0,0.0,0.0,0.0,0.0,10.052805561418086,0.0,0.0,0.0 +8533,my_reservoir,2012-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8534,gw1,2012-02-02,262.4701869607944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8535,gw2,2012-02-02,262.5298130392056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8536,my_sewer,2012-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 +8537,my_land,2012-02-03,2.761226849870332,percolation,0.0,0.0,0.0005544745051954063,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +8538,my_land,2012-02-03,0.018259992146017007,subsurface_runoff,0.0,0.0,3.415664530921332e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 +8539,my_land,2012-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8540,my_groundwater,2012-02-03,14.229858524400486,tank,0.0,0.0,0.0021739971856633163,0.0,0.0,0.0,0.0,0.0,10.040520077667294,0.0,0.0,0.0 +8541,my_reservoir,2012-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8542,gw1,2012-02-03,262.4703857143891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8543,gw2,2012-02-03,262.5296142856109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8544,my_sewer,2012-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.296428570999999,0.0,0.0,0.0 +8545,my_land,2012-02-04,2.7060023128729256,percolation,0.0,0.0,0.0005433850150914982,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 +8546,my_land,2012-02-04,0.014607993716813605,subsurface_runoff,0.0,0.0,2.7325316247370657e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 +8547,my_land,2012-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 +8548,my_groundwater,2012-02-04,14.249370353744398,tank,0.0,0.0,0.002179623959077806,0.0,0.0,0.0,0.0,0.0,10.02854428410406,0.0,0.0,0.0 +8549,my_reservoir,2012-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8550,gw1,2012-02-04,262.47058314295987,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8551,gw2,2012-02-04,262.52941685704013,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8552,my_sewer,2012-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 +8553,my_land,2012-02-05,2.7210903841783542,percolation,0.0,0.0,0.0005455839026736701,0.0,0.0,0.0,0.0,0.0,6.8747090554792125,0.0,0.0,0.0 +8554,my_land,2012-02-05,0.03051853580688957,subsurface_runoff,0.0,0.0,5.741559417885387e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 +8555,my_land,2012-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.089285714,0.0,0.0,0.0 +8556,my_groundwater,2012-02-05,14.269140553537953,tank,0.0,0.0,0.0021852814286273973,0.0,0.0,0.0,0.0,0.0,10.01630091405323,0.0,0.0,0.0 +8557,my_reservoir,2012-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8558,gw1,2012-02-05,262.4707792553401,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8559,gw2,2012-02-05,262.5292207446599,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8560,my_sewer,2012-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 +8561,my_land,2012-02-06,2.666668576494787,percolation,0.0,0.0,0.0005346722246201966,0.0,0.0,0.0,0.0,0.0,6.8747090554792125,0.0,0.0,0.0 +8562,my_land,2012-02-06,0.024414828645511654,subsurface_runoff,0.0,0.0,4.59324753430831e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 +8563,my_land,2012-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882142857,0.0,0.0,0.0 +8564,my_groundwater,2012-02-06,14.287753455318468,tank,0.0,0.0,0.0021907026239141687,0.0,0.0,0.0,0.0,0.0,10.004364560258281,0.0,0.0,0.0 +8565,my_reservoir,2012-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8566,gw1,2012-02-06,262.4709740603045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8567,gw2,2012-02-06,262.5290259396955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8568,my_sewer,2012-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 +8569,my_land,2012-02-07,2.6133352049648915,percolation,0.0,0.0,0.0005239787801277927,0.0,0.0,0.0,0.0,0.0,6.874709055479212,0.0,0.0,0.0 +8570,my_land,2012-02-07,0.019531862916409324,subsurface_runoff,0.0,0.0,3.674598027446648e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 +8571,my_land,2012-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882142857,0.0,0.0,0.0 +8572,my_groundwater,2012-02-07,14.305234109781242,tank,0.0,0.0,0.002195892578235556,0.0,0.0,0.0,0.0,0.0,9.99272561811866,0.0,0.0,0.0 +8573,my_reservoir,2012-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8574,gw1,2012-02-07,262.47116756656914,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8575,gw2,2012-02-07,262.52883243343086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8576,my_sewer,2012-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 +8577,my_land,2012-02-08,2.5610685008655936,percolation,0.0,0.0,0.0005134992045252369,0.0,0.0,0.0,0.0,0.0,6.874709055479211,0.0,0.0,0.0 +8578,my_land,2012-02-08,0.01562549033312746,subsurface_runoff,0.0,0.0,2.9396784219573187e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 +8579,my_land,2012-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882142857,0.0,0.0,0.0 +8580,my_groundwater,2012-02-08,14.321607061845839,tank,0.0,0.0,0.0022008562234535167,0.0,0.0,0.0,0.0,0.0,9.98137486486649,0.0,0.0,0.0 +8581,my_reservoir,2012-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8582,gw1,2012-02-08,262.47135978279204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8583,gw2,2012-02-08,262.52864021720796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8584,my_sewer,2012-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8585,my_land,2012-02-09,2.676914675528104,percolation,0.0,0.0,0.0005349861236321882,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 +8586,my_land,2012-02-09,0.05796094864196384,subsurface_runoff,0.0,0.0,1.0993076940955265e-05,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8587,my_land,2012-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9964285709999996,0.0,0.0,0.0 +8588,my_groundwater,2012-02-09,14.340297378657333,tank,0.0,0.0,0.0022062448718402528,0.0,0.0,0.0,0.0,0.0,9.96884655987413,0.0,0.0,0.0 +8589,my_reservoir,2012-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8590,gw1,2012-02-09,262.47155071757345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8591,gw2,2012-02-09,262.52844928242655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8592,my_sewer,2012-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8593,my_land,2012-02-10,2.623376382017542,percolation,0.0,0.0,0.0005242864011595445,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 +8594,my_land,2012-02-10,0.046368758913571076,subsurface_runoff,0.0,0.0,8.794461552764211e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8595,my_land,2012-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.157142857,0.0,0.0,0.0 +8596,my_groundwater,2012-02-10,14.357851082987475,tank,0.0,0.0,0.0022114022328271143,0.0,0.0,0.0,0.0,0.0,9.956630430967884,0.0,0.0,0.0 +8597,my_reservoir,2012-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8598,gw1,2012-02-10,262.4717403794563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8599,gw2,2012-02-10,262.5282596205437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8600,my_sewer,2012-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8601,my_land,2012-02-11,2.570908854377191,percolation,0.0,0.0,0.0005138006731363536,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 +8602,my_land,2012-02-11,0.03709500713085686,subsurface_runoff,0.0,0.0,7.0355692422113695e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8603,my_land,2012-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.317857143,0.0,0.0,0.0 +8604,my_groundwater,2012-02-11,14.374292814101256,tank,0.0,0.0,0.0022163332409481794,0.0,0.0,0.0,0.0,0.0,9.944716796887766,0.0,0.0,0.0 +8605,my_reservoir,2012-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8606,gw1,2012-02-11,262.47192877692663,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8607,gw2,2012-02-11,262.52807122307337,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8608,my_sewer,2012-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8609,my_land,2012-02-12,2.5194906772896473,percolation,0.0,0.0,0.0005035246596736266,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 +8610,my_land,2012-02-12,0.02967600570468549,subsurface_runoff,0.0,0.0,5.628455393769096e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8611,my_land,2012-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.478571429,0.0,0.0,0.0 +8612,my_groundwater,2012-02-12,14.389646713710828,tank,0.0,0.0,0.002221042731274879,0.0,0.0,0.0,0.0,0.0,9.933096357492971,0.0,0.0,0.0 +8613,my_reservoir,2012-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8614,gw1,2012-02-12,262.4721159184138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8615,gw2,2012-02-12,262.5278840815862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8616,my_sewer,2012-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8617,my_land,2012-02-13,2.4691008637438543,percolation,0.0,0.0,0.000493454166480154,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 +8618,my_land,2012-02-13,0.023740804563748392,subsurface_runoff,0.0,0.0,4.502764315015277e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8619,my_land,2012-02-13,3.0269507914078967e-19,surface_runoff,0.0,0.0,7.390016580585685e-23,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8620,my_groundwater,2012-02-13,14.40393643593848,tank,0.0,0.0,0.002225535441407181,0.0,0.0,0.0,0.0,0.0,9.92176017519104,0.0,0.0,0.0 +8621,my_reservoir,2012-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8622,gw1,2012-02-13,262.47230181229105,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8623,gw2,2012-02-13,262.52769818770895,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8624,my_sewer,2012-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8625,my_land,2012-02-14,2.419718846468977,percolation,0.0,0.0,0.000483585083150551,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8626,my_land,2012-02-14,0.018992643650998713,subsurface_runoff,0.0,0.0,3.6022114520122215e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8627,my_land,2012-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8628,my_groundwater,2012-02-14,14.417185157080322,tank,0.0,0.0,0.0022298160134249425,0.0,0.0,0.0,0.0,0.0,9.910699657445143,0.0,0.0,0.0 +8629,my_reservoir,2012-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8630,gw1,2012-02-14,262.47248646687575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8631,gw2,2012-02-14,262.52751353312425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8632,my_sewer,2012-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8633,my_land,2012-02-15,2.3713244695395974,percolation,0.0,0.0,0.00047391338148754,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8634,my_land,2012-02-15,0.01519411492079897,subsurface_runoff,0.0,0.0,2.8817691616097772e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8635,my_land,2012-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8636,my_groundwater,2012-02-15,14.429415585174677,tank,0.0,0.0,0.0022338889958002334,0.0,0.0,0.0,0.0,0.0,9.89990654028712,0.0,0.0,0.0 +8637,my_reservoir,2012-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8638,gw1,2012-02-15,262.4726698904299,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8639,gw2,2012-02-15,262.5273301095701,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8640,my_sewer,2012-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8641,my_land,2012-02-16,2.3238979801488053,percolation,0.0,0.0,0.00046443511385778916,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8642,my_land,2012-02-16,0.012155291936639176,subsurface_runoff,0.0,0.0,2.305415329287822e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8643,my_land,2012-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8644,my_groundwater,2012-02-16,14.440649969379056,tank,0.0,0.0,0.002237758845271409,0.0,0.0,0.0,0.0,0.0,9.889372872769435,0.0,0.0,0.0 +8645,my_reservoir,2012-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8646,gw1,2012-02-16,262.4728520911604,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8647,gw2,2012-02-16,262.5271479088396,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8648,my_sewer,2012-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 +8649,my_land,2012-02-17,2.2774200205458293,percolation,0.0,0.0,0.00045514641158063337,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8650,my_land,2012-02-17,0.009724233549311342,subsurface_runoff,0.0,0.0,1.8443322634302575e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8651,my_land,2012-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8652,my_groundwater,2012-02-17,14.450910109159576,tank,0.0,0.0,0.0022414299286796936,0.0,0.0,0.0,0.0,0.0,9.879091002294214,0.0,0.0,0.0 +8653,my_reservoir,2012-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8654,gw1,2012-02-17,262.4730330772193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8655,gw2,2012-02-17,262.5269669227807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8656,my_sewer,2012-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8657,my_land,2012-02-18,2.2318716201349127,percolation,0.0,0.0,0.0004460434833490207,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8658,my_land,2012-02-18,0.007779386839449074,subsurface_runoff,0.0,0.0,1.475465810744206e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8659,my_land,2012-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8660,my_groundwater,2012-02-18,14.460217363296566,tank,0.0,0.0,0.0022449065247690278,0.0,0.0,0.0,0.0,0.0,9.869053560762142,0.0,0.0,0.0 +8661,my_reservoir,2012-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8662,gw1,2012-02-18,262.47321285670455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8663,gw2,2012-02-18,262.52678714329545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8664,my_sewer,2012-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8665,my_land,2012-02-19,2.1872341877322143,percolation,0.0,0.0,0.0004371226136820403,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8666,my_land,2012-02-19,0.006223509471559259,subsurface_runoff,0.0,0.0,1.180372648595365e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8667,my_land,2012-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8668,my_groundwater,2012-02-19,14.468592658710017,tank,0.0,0.0,0.0022481928259499183,0.0,0.0,0.0,0.0,0.0,9.85925345148825,0.0,0.0,0.0 +8669,my_reservoir,2012-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8670,gw1,2012-02-19,262.47339143765987,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8671,gw2,2012-02-19,262.52660856234013,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8672,my_sewer,2012-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8673,my_land,2012-02-20,2.14348950397757,percolation,0.0,0.0,0.0004283801614083995,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8674,my_land,2012-02-20,0.004978807577247407,subsurface_runoff,0.0,0.0,9.44298118876292e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8675,my_land,2012-02-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8676,my_groundwater,2012-02-20,14.4760564991085,tank,0.0,0.0,0.002251292940028,0.0,0.0,0.0,0.0,0.0,9.84968383683545,0.0,0.0,0.0 +8677,my_reservoir,2012-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8678,gw1,2012-02-20,262.4735688280755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8679,gw2,2012-02-20,262.5264311719245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8680,my_sewer,2012-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8681,my_land,2012-02-21,2.1006197138980185,percolation,0.0,0.0,0.0004198125581802315,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8682,my_land,2012-02-21,0.003983046061797926,subsurface_runoff,0.0,0.0,7.554384951010335e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8683,my_land,2012-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8684,my_groundwater,2012-02-21,14.482628973465081,tank,0.0,0.0,0.0022542108918980276,0.0,0.0,0.0,0.0,0.0,9.840338126520287,0.0,0.0,0.0 +8685,my_reservoir,2012-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8686,gw1,2012-02-21,262.4737450358883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8687,gw2,2012-02-21,262.5262549641117,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8688,my_sewer,2012-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8689,my_land,2012-02-22,2.0586073196200583,percolation,0.0,0.0,0.00041141630701662686,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8690,my_land,2012-02-22,0.003186436849438341,subsurface_runoff,0.0,0.0,6.043507960808269e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8691,my_land,2012-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8692,my_groundwater,2012-02-22,14.488329764323684,tank,0.0,0.0,0.002256950625203978,0.0,0.0,0.0,0.0,0.0,9.831209966548634,0.0,0.0,0.0 +8693,my_reservoir,2012-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8694,gw1,2012-02-22,262.4739200689824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8695,gw2,2012-02-22,262.5260799310176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8696,my_sewer,2012-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8697,my_land,2012-02-23,2.017435173227657,percolation,0.0,0.0,0.0004031879808762943,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8698,my_land,2012-02-23,0.0025491494795506727,subsurface_runoff,0.0,0.0,4.834806368646615e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8699,my_land,2012-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8700,my_groundwater,2012-02-23,14.493178155939296,tank,0.0,0.0,0.00225951600396595,0.0,0.0,0.0,0.0,0.0,9.822293228742039,0.0,0.0,0.0 +8701,my_reservoir,2012-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8702,gw1,2012-02-23,262.4740939351892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8703,gw2,2012-02-23,262.5259060648108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8704,my_sewer,2012-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8705,my_land,2012-02-24,1.9770864697631039,percolation,0.0,0.0,0.0003951242212587684,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8706,my_land,2012-02-24,0.002039319583640538,subsurface_runoff,0.0,0.0,3.8678450949172917e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8707,my_land,2012-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8708,my_groundwater,2012-02-24,14.49719304225534,tank,0.0,0.0,0.0022619108141745175,0.0,0.0,0.0,0.0,0.0,9.813582000818254,0.0,0.0,0.0 +8709,my_reservoir,2012-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8710,gw1,2012-02-24,262.47426664228794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8711,gw2,2012-02-24,262.52573335771206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8712,my_sewer,2012-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8713,my_land,2012-02-25,1.9375447403678419,percolation,0.0,0.0,0.00038722173683359304,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8714,my_land,2012-02-25,0.0016314556669124306,subsurface_runoff,0.0,0.0,3.0942760759338336e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8715,my_land,2012-02-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8716,my_groundwater,2012-02-25,14.500392934721475,tank,0.0,0.0,0.0022641387653531938,0.0,0.0,0.0,0.0,0.0,9.805070576992007,0.0,0.0,0.0 +8717,my_reservoir,2012-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8718,gw1,2012-02-25,262.474438198006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8719,gw2,2012-02-25,262.525561801994,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8720,my_sewer,2012-02-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8721,my_land,2012-02-26,1.898793845560485,percolation,0.0,0.0,0.0003794773020969212,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8722,my_land,2012-02-26,0.0013051645335299446,subsurface_runoff,0.0,0.0,2.4754208607470667e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8723,my_land,2012-02-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8724,my_groundwater,2012-02-26,14.50279596995501,tank,0.0,0.0,0.0022662034920896412,0.0,0.0,0.0,0.0,0.0,9.796753449064399,0.0,0.0,0.0 +8725,my_reservoir,2012-02-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8726,gw1,2012-02-26,262.4746086100193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8727,gw2,2012-02-26,262.5253913899807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8728,my_sewer,2012-02-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8729,my_land,2012-02-27,1.8608179686492752,percolation,0.0,0.0,0.0003718877560549828,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8730,my_land,2012-02-27,0.0010441316268239556,subsurface_runoff,0.0,0.0,1.9803366885976533e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8731,my_land,2012-02-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8732,my_groundwater,2012-02-27,14.504419917249054,tank,0.0,0.0,0.0022681085555362507,0.0,0.0,0.0,0.0,0.0,9.788625297971555,0.0,0.0,0.0 +8733,my_reservoir,2012-02-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8734,gw1,2012-02-27,262.4747778859525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8735,gw2,2012-02-27,262.5252221140475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8736,my_sewer,2012-02-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8737,my_land,2012-02-28,1.8236016092762897,percolation,0.0,0.0,0.0003644500009338831,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8738,my_land,2012-02-28,0.0008353053014591644,subsurface_runoff,0.0,0.0,1.5842693508781227e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8739,my_land,2012-02-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8740,my_groundwater,2012-02-28,14.505282185930485,tank,0.0,0.0,0.002269857444880707,0.0,0.0,0.0,0.0,0.0,9.780680985765098,0.0,0.0,0.0 +8741,my_reservoir,2012-02-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8742,gw1,2012-02-28,262.47494603337947,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8743,gw2,2012-02-28,262.52505396662053,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8744,my_sewer,2012-02-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8745,my_land,2012-02-29,1.7871295770907638,percolation,0.0,0.0,0.00035716100091520546,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8746,my_land,2012-02-29,0.0006682442411673316,subsurface_runoff,0.0,0.0,1.2674154807024983e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8747,my_land,2012-02-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8748,my_groundwater,2012-02-29,14.50539983257072,tank,0.0,0.0,0.002271453578787136,0.0,0.0,0.0,0.0,0.0,9.772915547998892,0.0,0.0,0.0 +8749,my_reservoir,2012-02-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8750,gw1,2012-02-29,262.4751130598236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8751,gw2,2012-02-29,262.5248869401764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8752,my_sewer,2012-03-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8753,my_land,2012-03-01,1.7513869855489486,percolation,0.0,0.0,0.00035001778089690133,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8754,my_land,2012-03-01,0.0005345953929338653,subsurface_runoff,0.0,0.0,1.0139323845619987e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8755,my_land,2012-03-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8756,my_groundwater,2012-03-01,14.504789568052255,tank,0.0,0.0,0.0022729003068084263,0.0,0.0,0.0,0.0,0.0,9.76532418649822,0.0,0.0,0.0 +8757,my_reservoir,2012-03-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8758,gw1,2012-03-01,262.47527897275813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8759,gw2,2012-03-01,262.52472102724187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8760,my_sewer,2012-03-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 +8761,my_land,2012-03-02,1.7163592458379695,percolation,0.0,0.0,0.0003430174252789633,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8762,my_land,2012-03-02,0.0004276763143470922,subsurface_runoff,0.0,0.0,8.111459076495989e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8763,my_land,2012-03-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8764,my_groundwater,2012-03-02,14.503467764493825,tank,0.0,0.0,0.0022742009107702982,0.0,0.0,0.0,0.0,0.0,9.757902262489146,0.0,0.0,0.0 +8765,my_reservoir,2012-03-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8766,gw1,2012-03-02,262.4754437796064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8767,gw2,2012-03-02,262.5245562203936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8768,my_sewer,2012-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0 +8769,my_land,2012-03-03,1.68203206092121,percolation,0.0,0.0,0.00033615707677338405,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8770,my_land,2012-03-03,0.00034214105147767376,subsurface_runoff,0.0,0.0,6.489167261196791e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8771,my_land,2012-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8772,my_groundwater,2012-03-03,14.501450462037058,tank,0.0,0.0,0.002275358606127688,0.0,0.0,0.0,0.0,0.0,9.750645290067267,0.0,0.0,0.0 +8773,my_reservoir,2012-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8774,gw1,2012-03-03,262.47560748774237,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8775,gw2,2012-03-03,262.52439251225763,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8776,my_sewer,2012-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8777,my_land,2012-03-04,1.6483914197027858,percolation,0.0,0.0,0.00032943393523791637,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8778,my_land,2012-03-04,0.000273712841182139,subsurface_runoff,0.0,0.0,5.191333808957433e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8779,my_land,2012-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8780,my_groundwater,2012-03-04,14.498753375497344,tank,0.0,0.0,0.0022763765432939976,0.0,0.0,0.0,0.0,0.0,9.743548929986407,0.0,0.0,0.0 +8781,my_reservoir,2012-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8782,gw1,2012-03-04,262.4757701044908,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8783,gw2,2012-03-04,262.5242298955092,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8784,my_sewer,2012-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8785,my_land,2012-03-05,1.61542359130873,percolation,0.0,0.0,0.00032284525653315804,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 +8786,my_land,2012-03-05,0.0002189702729457112,subsurface_runoff,0.0,0.0,4.153067047165946e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 +8787,my_land,2012-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 +8788,my_groundwater,2012-03-05,14.495391900881671,tank,0.0,0.0,0.0022772578089437587,0.0,0.0,0.0,0.0,0.0,9.736608983749143,0.0,0.0,0.0 +8789,my_reservoir,2012-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8790,gw1,2012-03-05,262.47593163712753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8791,gw2,2012-03-05,262.52406836287247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8792,my_sewer,2012-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8793,my_land,2012-03-06,1.5904848407082397,percolation,0.0,0.0,0.00031795479530596134,0.0,0.0,0.0,0.0,0.0,6.68778201659618,0.0,0.0,0.0 +8794,my_land,2012-03-06,0.002180542538270662,subsurface_runoff,0.0,0.0,4.5946777541581154e-07,0.0,0.0,0.0,0.0,0.0,7.123074989828441,0.0,0.0,0.0 +8795,my_land,2012-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.675,0.0,0.0,0.0 +8796,my_groundwater,2012-03-06,14.491531148243885,tank,0.0,0.0,0.0022780373156115565,0.0,0.0,0.0,0.0,0.0,9.729797137122882,0.0,0.0,0.0 +8797,my_reservoir,2012-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8798,gw1,2012-03-06,262.47609209288004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8799,gw2,2012-03-06,262.52390790711996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8800,my_sewer,2012-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8801,my_land,2012-03-07,1.5711620447824468,percolation,0.0,0.0,0.0003142459356215729,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 +8802,my_land,2012-03-07,0.0051422301907177205,subsurface_runoff,0.0,0.0,1.0887269337287755e-06,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8803,my_land,2012-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8804,my_groundwater,2012-03-07,14.487286690570633,tank,0.0,0.0,0.0022787393717262523,0.0,0.0,0.0,0.0,0.0,9.723089733962304,0.0,0.0,0.0 +8805,my_reservoir,2012-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8806,gw1,2012-03-07,262.4762514789275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8807,gw2,2012-03-07,262.5237485210725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8808,my_sewer,2012-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8809,my_land,2012-03-08,1.5397388038867978,percolation,0.0,0.0,0.00030796101690914145,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 +8810,my_land,2012-03-08,0.004113784152574176,subsurface_runoff,0.0,0.0,8.709815469830205e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8811,my_land,2012-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8812,my_groundwater,2012-03-08,14.482413156637616,tank,0.0,0.0,0.002279311729712587,0.0,0.0,0.0,0.0,0.0,9.71652878388902,0.0,0.0,0.0 +8813,my_reservoir,2012-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8814,gw1,2012-03-08,262.47640980240135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8815,gw2,2012-03-08,262.52359019759865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8816,my_sewer,2012-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8817,my_land,2012-03-09,1.5089440278090618,percolation,0.0,0.0,0.00030180179657095864,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 +8818,my_land,2012-03-09,0.0032910273220593408,subsurface_runoff,0.0,0.0,6.967852375864163e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8819,my_land,2012-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8820,my_groundwater,2012-03-09,14.476924912883563,tank,0.0,0.0,0.002279757272675643,0.0,0.0,0.0,0.0,0.0,9.710110536606093,0.0,0.0,0.0 +8821,my_reservoir,2012-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8822,gw1,2012-03-09,262.47656707038533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8823,gw2,2012-03-09,262.52343292961467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8824,my_sewer,2012-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8825,my_land,2012-03-10,1.4787651472528804,percolation,0.0,0.0,0.00029576576063953944,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 +8826,my_land,2012-03-10,0.0026328218576474726,subsurface_runoff,0.0,0.0,5.574281900691331e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8827,my_land,2012-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8828,my_groundwater,2012-03-10,14.470836033956145,tank,0.0,0.0,0.0022800788253355443,0.0,0.0,0.0,0.0,0.0,9.703831359451785,0.0,0.0,0.0 +8829,my_reservoir,2012-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8830,gw1,2012-03-10,262.4767232899161,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8831,gw2,2012-03-10,262.5232767100839,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8832,my_sewer,2012-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8833,my_land,2012-03-11,1.4491898443078228,percolation,0.0,0.0,0.0002898504454267487,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 +8834,my_land,2012-03-11,0.002106257486117978,subsurface_runoff,0.0,0.0,4.4594255205530646e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8835,my_land,2012-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8836,my_groundwater,2012-03-11,14.464160308558949,tank,0.0,0.0,0.0022802791551969643,0.0,0.0,0.0,0.0,0.0,9.697687732861871,0.0,0.0,0.0 +8837,my_reservoir,2012-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8838,gw1,2012-03-11,262.47687846798334,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8839,gw2,2012-03-11,262.52312153201666,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8840,my_sewer,2012-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8841,my_land,2012-03-12,1.4202060474216665,percolation,0.0,0.0,0.0002840534365182137,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +8842,my_land,2012-03-12,0.0016850059888943824,subsurface_runoff,0.0,0.0,3.5675404164424517e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8843,my_land,2012-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8844,my_groundwater,2012-03-12,14.456911245181493,tank,0.0,0.0,0.0022803609736952355,0.0,0.0,0.0,0.0,0.0,9.691676246041489,0.0,0.0,0.0 +8845,my_reservoir,2012-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8846,gw1,2012-03-12,262.4770326115301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8847,gw2,2012-03-12,262.5229673884699,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8848,my_sewer,2012-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8849,my_land,2012-03-13,1.391801926473233,percolation,0.0,0.0,0.0002783723677878494,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +8850,my_land,2012-03-13,0.0013480047911155059,subsurface_runoff,0.0,0.0,2.8540323331539614e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8851,my_land,2012-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8852,my_groundwater,2012-03-13,14.4491020777146,tank,0.0,0.0,0.002280326937319536,0.0,0.0,0.0,0.0,0.0,9.685793592835278,0.0,0.0,0.0 +8853,my_reservoir,2012-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8854,gw1,2012-03-13,262.4771857274532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8855,gw2,2012-03-13,262.5228142725468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8856,my_sewer,2012-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8857,my_land,2012-03-14,1.3639658879437684,percolation,0.0,0.0,0.00027280492043209244,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +8858,my_land,2012-03-14,0.0010784038328924047,subsurface_runoff,0.0,0.0,2.2832258665231691e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8859,my_land,2012-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8860,my_groundwater,2012-03-14,14.440745770953455,tank,0.0,0.0,0.0022801796487136048,0.0,0.0,0.0,0.0,0.0,9.680036567785272,0.0,0.0,0.0 +8861,my_reservoir,2012-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8862,gw1,2012-03-14,262.47733782260354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8863,gw2,2012-03-14,262.52266217739646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8864,my_sewer,2012-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8865,my_land,2012-03-15,1.3366865701848931,percolation,0.0,0.0,0.0002673488220234506,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 +8866,my_land,2012-03-15,0.0008627230663139238,subsurface_runoff,0.0,0.0,1.8265806932185352e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8867,my_land,2012-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8868,my_groundwater,2012-03-15,14.43185502599055,tank,0.0,0.0,0.002279921657754441,0.0,0.0,0.0,0.0,0.0,9.67440206236664,0.0,0.0,0.0 +8869,my_reservoir,2012-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8870,gw1,2012-03-15,262.4774889037862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8871,gw2,2012-03-15,262.5225110962138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8872,my_sewer,2012-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 +8873,my_land,2012-03-16,1.3099528387811952,percolation,0.0,0.0,0.0002620018455829816,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 +8874,my_land,2012-03-16,0.000690178453051139,subsurface_runoff,0.0,0.0,1.4612645545748282e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +8875,my_land,2012-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8876,my_groundwater,2012-03-16,14.422442285500765,tank,0.0,0.0,0.002279555462609423,0.0,0.0,0.0,0.0,0.0,9.668887061391954,0.0,0.0,0.0 +8877,my_reservoir,2012-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8878,gw1,2012-03-16,262.47763897776093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8879,gw2,2012-03-16,262.52236102223907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8880,my_sewer,2012-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8881,my_land,2012-03-17,1.2837537820055713,percolation,0.0,0.0,0.00025676180867132195,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8882,my_land,2012-03-17,0.0005521427624409112,subsurface_runoff,0.0,0.0,1.1690116436598626e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8883,my_land,2012-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8884,my_groundwater,2012-03-17,14.412519738920698,tank,0.0,0.0,0.00227908351077228,0.0,0.0,0.0,0.0,0.0,9.66348863957523,0.0,0.0,0.0 +8885,my_reservoir,2012-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8886,gw1,2012-03-17,262.4777880512425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8887,gw2,2012-03-17,262.5222119487575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8888,my_sewer,2012-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8889,my_land,2012-03-18,1.25807870636546,percolation,0.0,0.0,0.0002516265724978955,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8890,my_land,2012-03-18,0.000441714209952729,subsurface_runoff,0.0,0.0,9.352093149278901e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8891,my_land,2012-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8892,my_groundwater,2012-03-18,14.402099327524407,tank,0.0,0.0,0.002278508200078342,0.0,0.0,0.0,0.0,0.0,9.658203958247487,0.0,0.0,0.0 +8893,my_reservoir,2012-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8894,gw1,2012-03-18,262.4779361309009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8895,gw2,2012-03-18,262.5220638690991,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8896,my_sewer,2012-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8897,my_land,2012-03-19,1.2329171322381507,percolation,0.0,0.0,0.0002465940410479376,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8898,my_land,2012-03-19,0.0003533713679621832,subsurface_runoff,0.0,0.0,7.481674519423121e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8899,my_land,2012-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8900,my_groundwater,2012-03-19,14.391192749397588,tank,0.0,0.0,0.0022778318796994796,0.0,0.0,0.0,0.0,0.0,9.653030262216076,0.0,0.0,0.0 +8901,my_reservoir,2012-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8902,gw1,2012-03-19,262.4780832233616,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8903,gw2,2012-03-19,262.5219167766384,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8904,my_sewer,2012-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8905,my_land,2012-03-20,1.2082587895933876,percolation,0.0,0.0,0.00024166216022697887,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8906,my_land,2012-03-20,0.00028269709436974655,subsurface_runoff,0.0,0.0,5.985339615538497e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8907,my_land,2012-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8908,my_groundwater,2012-03-20,14.379811464312244,tank,0.0,0.0,0.0022770568511191374,0.0,0.0,0.0,0.0,0.0,9.647964876760453,0.0,0.0,0.0 +8909,my_reservoir,2012-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8910,gw1,2012-03-20,262.4782293352058,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8911,gw2,2012-03-20,262.5217706647942,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8912,my_sewer,2012-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8913,my_land,2012-03-21,1.18409361380152,percolation,0.0,0.0,0.00023682891702243928,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8914,my_land,2012-03-21,0.00022615767549579723,subsurface_runoff,0.0,0.0,4.7882716924307976e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8915,my_land,2012-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8916,my_groundwater,2012-03-21,14.367966698503851,tank,0.0,0.0,0.0022761853690878675,0.0,0.0,0.0,0.0,0.0,9.643005204757504,0.0,0.0,0.0 +8917,my_reservoir,2012-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8918,gw1,2012-03-21,262.4783744729711,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8919,gw2,2012-03-21,262.5216255270289,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8920,my_sewer,2012-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8921,my_land,2012-03-22,1.1604117415254895,percolation,0.0,0.0,0.0002320923386819905,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8922,my_land,2012-03-22,0.0001809261403966378,subsurface_runoff,0.0,0.0,3.8306173539446384e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8923,my_land,2012-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8924,my_groundwater,2012-03-22,14.355669449352932,tank,0.0,0.0,0.0022752196425597456,0.0,0.0,0.0,0.0,0.0,9.638148723929964,0.0,0.0,0.0 +8925,my_reservoir,2012-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8926,gw1,2012-03-22,262.4785186431513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8927,gw2,2012-03-22,262.5214813568487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8928,my_sewer,2012-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8929,my_land,2012-03-23,1.1372035066949797,percolation,0.0,0.0,0.0002274504919083507,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8930,my_land,2012-03-23,0.00014474091231731024,subsurface_runoff,0.0,0.0,3.064493883155711e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8931,my_land,2012-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8932,my_groundwater,2012-03-23,14.342930489972982,tank,0.0,0.0,0.002274161835610052,0.0,0.0,0.0,0.0,0.0,9.633392984211754,0.0,0.0,0.0 +8933,my_reservoir,2012-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8934,gw1,2012-03-23,262.4786618521969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8935,gw2,2012-03-23,262.5213381478031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8936,my_sewer,2012-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8937,my_land,2012-03-24,1.11445943656108,percolation,0.0,0.0,0.00022290148207018367,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8938,my_land,2012-03-24,0.0001157927298538482,subsurface_runoff,0.0,0.0,2.4515951065245684e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8939,my_land,2012-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8940,my_groundwater,2012-03-24,14.329760373706614,tank,0.0,0.0,0.0022730140683345982,0.0,0.0,0.0,0.0,0.0,9.628735605224488,0.0,0.0,0.0 +8941,my_reservoir,2012-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8942,gw1,2012-03-24,262.4788041065156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8943,gw2,2012-03-24,262.5211958934844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8944,my_sewer,2012-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8945,my_land,2012-03-25,1.0921702478298585,percolation,0.0,0.0,0.00021844345242878,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8946,my_land,2012-03-25,9.263418388307856e-05,subsurface_runoff,0.0,0.0,1.9612760852196547e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8947,my_land,2012-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8948,my_groundwater,2012-03-25,14.316169438531741,tank,0.0,0.0,0.002271778417731062,0.0,0.0,0.0,0.0,0.0,9.624174273859692,0.0,0.0,0.0 +8949,my_reservoir,2012-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8950,gw1,2012-03-25,262.47894541247217,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8951,gw2,2012-03-25,262.52105458752783,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8952,my_sewer,2012-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8953,my_land,2012-03-26,1.0703268428732613,percolation,0.0,0.0,0.0002140745833802044,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8954,my_land,2012-03-26,7.410734710646285e-05,subsurface_runoff,0.0,0.0,1.569020868175724e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8955,my_land,2012-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8956,my_groundwater,2012-03-26,14.302167811379617,tank,0.0,0.0,0.0022704569185626883,0.0,0.0,0.0,0.0,0.0,9.619706741961588,0.0,0.0,0.0 +8957,my_reservoir,2012-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8958,gw1,2012-03-26,262.479085776389,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8959,gw2,2012-03-26,262.520914223611,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8960,my_sewer,2012-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8961,my_land,2012-03-27,1.0489203060157961,percolation,0.0,0.0,0.00020979309171260033,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8962,my_land,2012-03-27,5.928587768517028e-05,subsurface_runoff,0.0,0.0,1.2552166945405791e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8963,my_land,2012-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8964,my_groundwater,2012-03-27,14.28776541236649,tank,0.0,0.0,0.002269051564204717,0.0,0.0,0.0,0.0,0.0,9.615330824105543,0.0,0.0,0.0 +8965,my_reservoir,2012-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8966,gw1,2012-03-27,262.4792252045464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8967,gw2,2012-03-27,262.5207747954536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8968,my_sewer,2012-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8969,my_land,2012-03-28,1.0279418998954801,percolation,0.0,0.0,0.0002055972298783483,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8970,my_land,2012-03-28,4.7428702148136224e-05,subsurface_runoff,0.0,0.0,1.0041733556324633e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8971,my_land,2012-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8972,my_groundwater,2012-03-28,14.272971958940587,tank,0.0,0.0,0.002267564307473872,0.0,0.0,0.0,0.0,0.0,9.611044395467651,0.0,0.0,0.0 +8973,my_reservoir,2012-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8974,gw1,2012-03-28,262.4793637031828,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8975,gw2,2012-03-28,262.5206362968172,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8976,my_sewer,2012-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8977,my_land,2012-03-29,1.0073830618975705,percolation,0.0,0.0,0.00020148528528078134,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8978,my_land,2012-03-29,3.794296171850898e-05,subsurface_runoff,0.0,0.0,8.033386845059707e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8979,my_land,2012-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8980,my_groundwater,2012-03-29,14.25779696994615,tank,0.0,0.0,0.0022659970614412606,0.0,0.0,0.0,0.0,0.0,9.60684538978102,0.0,0.0,0.0 +8981,my_reservoir,2012-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8982,gw1,2012-03-29,262.4795012784949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8983,gw2,2012-03-29,262.5204987215051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8984,my_sewer,2012-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8985,my_land,2012-03-30,0.9872354006596191,percolation,0.0,0.0,0.00019745557957516572,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8986,my_land,2012-03-30,3.0354369374807184e-05,subsurface_runoff,0.0,0.0,6.4267094760477656e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8987,my_land,2012-03-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8988,my_groundwater,2012-03-30,14.242249769606142,tank,0.0,0.0,0.002264351700229009,0.0,0.0,0.0,0.0,0.0,9.60273179737473,0.0,0.0,0.0 +8989,my_reservoir,2012-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8990,gw1,2012-03-30,262.4796379366383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8991,gw2,2012-03-30,262.5203620633617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8992,my_sewer,2012-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +8993,my_land,2012-03-31,0.9674906926464267,percolation,0.0,0.0,0.0001935064679836624,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +8994,my_land,2012-03-31,2.428349549984575e-05,subsurface_runoff,0.0,0.0,5.141367580838212e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 +8995,my_land,2012-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +8996,my_groundwater,2012-03-31,14.226339491425286,tank,0.0,0.0,0.002262630059790961,0.0,0.0,0.0,0.0,0.0,9.5987016632915,0.0,0.0,0.0 +8997,my_reservoir,2012-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8998,gw1,2012-03-31,262.4797736837274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8999,gw2,2012-03-31,262.5202263162726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9000,my_sewer,2012-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +9001,my_land,2012-04-01,0.9481408787934982,percolation,0.0,0.0,0.00018963633862398914,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9002,my_land,2012-04-01,1.9426796399876598e-05,subsurface_runoff,0.0,0.0,4.11309406467057e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9003,my_land,2012-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9004,my_groundwater,2012-04-01,14.210075082015019,tank,0.0,0.0,0.0022608339386777578,0.0,0.0,0.0,0.0,0.0,9.594753085480445,0.0,0.0,0.0 +9005,my_reservoir,2012-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9006,gw1,2012-04-01,262.47990852583587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9007,gw2,2012-04-01,262.52009147416413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9008,my_sewer,2012-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 +9009,my_land,2012-04-02,0.9291780612176282,percolation,0.0,0.0,0.00018584361185150936,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9010,my_land,2012-04-02,1.554143711990128e-05,subsurface_runoff,0.0,0.0,3.2904752517364557e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9011,my_land,2012-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9012,my_groundwater,2012-04-02,14.193465304841911,tank,0.0,0.0,0.002258965098786612,0.0,0.0,0.0,0.0,0.0,9.59088421306139,0.0,0.0,0.0 +9013,my_reservoir,2012-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9014,gw1,2012-04-02,262.48004246899694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9015,gw2,2012-04-02,262.51995753100306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9016,my_sewer,2012-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 +9017,my_land,2012-04-03,0.9105944999932757,percolation,0.0,0.0,0.00018212673961447918,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9018,my_land,2012-04-03,1.2433149695921023e-05,subsurface_runoff,0.0,0.0,2.6323802013891647e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9019,my_land,2012-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9020,my_groundwater,2012-04-03,14.176518743901097,tank,0.0,0.0,0.0022570252660960833,0.0,0.0,0.0,0.0,0.0,9.587093244657462,0.0,0.0,0.0 +9021,my_reservoir,2012-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9022,gw1,2012-04-03,262.4801755192036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9023,gw2,2012-04-03,262.5198244807964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9024,my_sewer,2012-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 +9025,my_land,2012-04-04,0.8923826099934101,percolation,0.0,0.0,0.0001784842048221896,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9026,my_land,2012-04-04,9.946519756736818e-06,subsurface_runoff,0.0,0.0,2.105904161111332e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 +9027,my_land,2012-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9028,my_groundwater,2012-04-04,14.159243807316209,tank,0.0,0.0,0.0022550161313861523,0.0,0.0,0.0,0.0,0.0,9.583378426792816,0.0,0.0,0.0 +9029,my_reservoir,2012-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9030,gw1,2012-04-04,262.4803076824089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9031,gw2,2012-04-04,262.5196923175911,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9032,my_sewer,2012-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 +9033,my_land,2012-04-05,0.874534957793542,percolation,0.0,0.0,0.0001749145207257458,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9034,my_land,2012-04-05,7.957215805389455e-06,subsurface_runoff,0.0,0.0,1.6847233288890655e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9035,my_land,2012-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9036,my_groundwater,2012-04-05,14.141648730867287,tank,0.0,0.0,0.0022529393509438896,0.0,0.0,0.0,0.0,0.0,9.579738052352548,0.0,0.0,0.0 +9037,my_reservoir,2012-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9038,gw1,2012-04-05,262.4804389645262,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9039,gw2,2012-04-05,262.5195610354738,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9040,my_sewer,2012-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 +9041,my_land,2012-04-06,0.8570442586376711,percolation,0.0,0.0,0.0001714162303112309,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9042,my_land,2012-04-06,6.365772644311564e-06,subsurface_runoff,0.0,0.0,1.3477786631112524e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9043,my_land,2012-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9044,my_groundwater,2012-04-06,14.123741581448101,tank,0.0,0.0,0.0022507965472550085,0.0,0.0,0.0,0.0,0.0,9.576170459101958,0.0,0.0,0.0 +9045,my_reservoir,2012-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9046,gw1,2012-04-06,262.48056937142934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9047,gw2,2012-04-06,262.51943062857066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9048,my_sewer,2012-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 +9049,my_land,2012-04-07,0.8399033734649176,percolation,0.0,0.0,0.00016798790570500628,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9050,my_land,2012-04-07,5.092618115449251e-06,subsurface_runoff,0.0,0.0,1.078222930489002e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9051,my_land,2012-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9052,my_groundwater,2012-04-07,14.105530260454303,tank,0.0,0.0,0.00224858930968158,0.0,0.0,0.0,0.0,0.0,9.57267402826252,0.0,0.0,0.0 +9053,my_reservoir,2012-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9054,gw1,2012-04-07,262.4806989089532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9055,gw2,2012-04-07,262.5193010910468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9056,my_sewer,2012-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0 +9057,my_land,2012-04-08,0.8231053059956193,percolation,0.0,0.0,0.00016462814759090615,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9058,my_land,2012-04-08,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9059,my_land,2012-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9060,my_groundwater,2012-04-08,14.087022507103793,tank,0.0,0.0,0.002246319195126191,0.0,0.0,0.0,0.0,0.0,9.569247183142,0.0,0.0,0.0 +9061,my_reservoir,2012-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9062,gw1,2012-04-08,262.4808275828935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9063,gw2,2012-04-08,262.5191724171065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9064,my_sewer,2012-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9065,my_land,2012-04-09,0.8066431998757069,percolation,0.0,0.0,0.00016133558463908804,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9066,my_land,2012-04-09,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9067,my_land,2012-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9068,my_groundwater,2012-04-09,14.068225901690646,tank,0.0,0.0,0.002243987728682814,0.0,0.0,0.0,0.0,0.0,9.565888387816337,0.0,0.0,0.0 +9069,my_reservoir,2012-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9070,gw1,2012-04-09,262.48095539900754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9071,gw2,2012-04-09,262.51904460099246,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9072,my_sewer,2012-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9073,my_land,2012-04-10,0.7905103358781927,percolation,0.0,0.0,0.00015810887294630626,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +9074,my_land,2012-04-10,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9075,my_land,2012-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9076,my_groundwater,2012-04-10,14.04914786877394,tank,0.0,0.0,0.002241596404274657,0.0,0.0,0.0,0.0,0.0,9.562596145860999,0.0,0.0,0.0 +9077,my_reservoir,2012-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9078,gw1,2012-04-10,262.48108236301414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9079,gw2,2012-04-10,262.51891763698586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9080,my_sewer,2012-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9081,my_land,2012-04-11,0.7747001291606289,percolation,0.0,0.0,0.00015494669548738013,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +9082,my_land,2012-04-11,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9083,my_land,2012-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9084,my_groundwater,2012-04-11,14.029795680302774,tank,0.0,0.0,0.002239146685279249,0.0,0.0,0.0,0.0,0.0,9.559368999129664,0.0,0.0,0.0 +9085,my_reservoir,2012-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9086,gw1,2012-04-11,262.48120848059403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9087,gw2,2012-04-11,262.51879151940597,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9088,my_sewer,2012-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9089,my_land,2012-04-12,0.7592061265774164,percolation,0.0,0.0,0.00015184776157763254,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +9090,my_land,2012-04-12,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9091,my_land,2012-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9092,my_groundwater,2012-04-12,14.010176458678771,tank,0.0,0.0,0.0022366400051410246,0.0,0.0,0.0,0.0,0.0,9.556205526578118,0.0,0.0,0.0 +9093,my_reservoir,2012-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9094,gw1,2012-04-12,262.4813337573901,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9095,gw2,2012-04-12,262.5186662426099,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9096,my_sewer,2012-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9097,my_land,2012-04-13,0.744022004045868,percolation,0.0,0.0,0.0001488108063460799,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9098,my_land,2012-04-13,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9099,my_land,2012-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9100,my_groundwater,2012-04-13,13.990297179757293,tank,0.0,0.0,0.002234077767971646,0.0,0.0,0.0,0.0,0.0,9.553104343131475,0.0,0.0,0.0 +9101,my_reservoir,2012-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9102,gw1,2012-04-13,262.4814581990075,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9103,gw2,2012-04-13,262.5185418009925,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9104,my_sewer,2012-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9105,my_land,2012-04-14,0.7291415639649507,percolation,0.0,0.0,0.00014583459021915828,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9106,my_land,2012-04-14,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9107,my_land,2012-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9108,my_groundwater,2012-04-14,13.970164675788615,tank,0.0,0.0,0.0022314613491383212,0.0,0.0,0.0,0.0,0.0,9.550064098592804,0.0,0.0,0.0 +9109,my_reservoir,2012-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9110,gw1,2012-04-14,262.4815818110141,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9111,gw2,2012-04-14,262.5184181889859,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9112,my_sewer,2012-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 +9113,my_land,2012-04-15,0.7145587326856516,percolation,0.0,0.0,0.0001429178984147751,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9114,my_land,2012-04-15,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9115,my_land,2012-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9116,my_groundwater,2012-04-15,13.949785638300243,tank,0.0,0.0,0.0022287920958403476,0.0,0.0,0.0,0.0,0.0,9.547083476591428,0.0,0.0,0.0 +9117,my_reservoir,2012-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9118,gw1,2012-04-15,262.48170459894067,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9119,gw2,2012-04-15,262.51829540105933,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9120,my_sewer,2012-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0 +9121,my_land,2012-04-16,0.7002675580319386,percolation,0.0,0.0,0.0001400595404464796,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +9122,my_land,2012-04-16,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9123,my_land,2012-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9124,my_groundwater,2012-04-16,13.929166620921572,tank,0.0,0.0,0.0022260713276741214,0.0,0.0,0.0,0.0,0.0,9.5441611935692,0.0,0.0,0.0 +9125,my_reservoir,2012-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9126,gw1,2012-04-16,262.48182656828106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9127,gw2,2012-04-16,262.51817343171894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9128,my_sewer,2012-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 +9129,my_land,2012-04-17,0.6862622068712999,percolation,0.0,0.0,0.00013725834963755002,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 +9130,my_land,2012-04-17,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9131,my_land,2012-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9132,my_groundwater,2012-04-17,13.908314042152005,tank,0.0,0.0,0.0022233003371868432,0.0,0.0,0.0,0.0,0.0,9.541295997803143,0.0,0.0,0.0 +9133,my_reservoir,2012-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9134,gw1,2012-04-17,262.4819477244925,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9135,gw2,2012-04-17,262.5180522755075,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9136,my_sewer,2012-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0 +9137,my_land,2012-04-18,0.6725369627338739,percolation,0.0,0.0,0.00013451318264479903,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 +9138,my_land,2012-04-18,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 +9139,my_land,2012-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 +9140,my_groundwater,2012-04-18,13.887234188073707,tank,0.0,0.0,0.0022204803904191453,0.0,0.0,0.0,0.0,0.0,9.538486668462939,0.0,0.0,0.0 +9141,my_reservoir,2012-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9142,gw1,2012-04-18,262.4820680729959,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9143,gw2,2012-04-18,262.5179319270041,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9144,my_sewer,2012-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685638298042553,0.0,0.0,0.0 +9145,my_land,2012-04-19,0.8242085637598398,percolation,0.0,0.0,0.00016945573755122338,0.0,0.0,0.0,0.0,0.0,7.2956606799455095,0.0,0.0,0.0 +9146,my_land,2012-04-19,0.04493450833155126,subsurface_runoff,0.0,0.0,1.024091279990554e-05,0.0,0.0,0.0,0.0,0.0,9.706242538769956,0.0,0.0,0.0 +9147,my_land,2012-04-19,1.77914069099026e-18,surface_runoff,0.0,0.0,2.17180260130647e-22,0.0,0.0,0.0,0.0,0.0,9.734175780969188,0.0,0.0,0.0 +9148,my_groundwater,2012-04-19,13.869294634080063,tank,0.0,0.0,0.00221837882410039,0.0,0.0,0.0,0.0,0.0,9.53577338509579,0.0,0.0,0.0 +9149,my_reservoir,2012-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9150,gw1,2012-04-19,262.48218761917593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9151,gw2,2012-04-19,262.51781238082407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9152,my_sewer,2012-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0 +9153,my_land,2012-04-20,0.9075306575545625,percolation,0.0,0.0,0.0001887716336303516,0.0,0.0,0.0,0.0,0.0,7.569335049122665,0.0,0.0,0.0 +9154,my_land,2012-04-20,0.06310577403120553,subsurface_runoff,0.0,0.0,1.4370964479421765e-05,0.0,0.0,0.0,0.0,0.0,9.739775303693044,0.0,0.0,0.0 +9155,my_land,2012-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.853571428999999,0.0,0.0,0.0 +9156,my_groundwater,2012-04-20,13.853096128737938,tank,0.0,0.0,0.0022166757281533284,0.0,0.0,0.0,0.0,0.0,9.5331509085443,0.0,0.0,0.0 +9157,my_reservoir,2012-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9158,gw1,2012-04-20,262.48230636838144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9159,gw2,2012-04-20,262.51769363161856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9160,my_sewer,2012-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0 +9161,my_land,2012-04-21,1.0010624057137723,percolation,0.0,0.0,0.00021030939980000283,0.0,0.0,0.0,0.0,0.0,7.825307329068979,0.0,0.0,0.0 +9162,my_land,2012-04-21,0.08087437740463814,subsurface_runoff,0.0,0.0,1.8384716846736944e-05,0.0,0.0,0.0,0.0,0.0,9.786355762656482,0.0,0.0,0.0 +9163,my_land,2012-04-21,9.833542632858547e-19,surface_runoff,0.0,0.0,2.400767244350231e-22,0.0,0.0,0.0,0.0,0.0,9.831725609983907,0.0,0.0,0.0 +9164,my_groundwater,2012-04-21,13.838842158818125,tank,0.0,0.0,0.002215415337328874,0.0,0.0,0.0,0.0,0.0,9.530635976168504,0.0,0.0,0.0 +9165,my_reservoir,2012-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9166,gw1,2012-04-21,262.4824243259256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9167,gw2,2012-04-21,262.5175756740744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9168,my_sewer,2012-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 +9169,my_land,2012-04-22,1.1242907156096504,percolation,0.0,0.0,0.00023831288092655695,0.0,0.0,0.0,0.0,0.0,8.095234728637555,0.0,0.0,0.0 +9170,my_land,2012-04-22,0.1036789734910992,subsurface_runoff,0.0,0.0,2.3472309293050557e-05,0.0,0.0,0.0,0.0,0.0,9.845558781926556,0.0,0.0,0.0 +9171,my_land,2012-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 +9172,my_groundwater,2012-04-22,13.827132400131704,tank,0.0,0.0,0.002214728168347271,0.0,0.0,0.0,0.0,0.0,9.528260029727086,0.0,0.0,0.0 +9173,my_reservoir,2012-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9174,gw1,2012-04-22,262.48254149708606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9175,gw2,2012-04-22,262.51745850291394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9176,my_sewer,2012-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 +9177,my_land,2012-04-23,1.3220733127543831,percolation,0.0,0.0,0.00028220350993604616,0.0,0.0,0.0,0.0,0.0,8.41669587850042,0.0,0.0,0.0 +9178,my_land,2012-04-23,0.14288016150224686,subsurface_runoff,0.0,0.0,3.201781658492216e-05,0.0,0.0,0.0,0.0,0.0,9.920697357796154,0.0,0.0,0.0 +9179,my_land,2012-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 +9180,my_groundwater,2012-04-23,13.819478204426732,tank,0.0,0.0,0.002214936205092958,0.0,0.0,0.0,0.0,0.0,9.526095242335627,0.0,0.0,0.0 +9181,my_reservoir,2012-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9182,gw1,2012-04-23,262.48265788710546,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9183,gw2,2012-04-23,262.51734211289454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9184,my_sewer,2012-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 +9185,my_land,2012-04-24,1.6740266553239918,percolation,0.0,0.0,0.00035722281814348794,0.0,0.0,0.0,0.0,0.0,8.798731458121146,0.0,0.0,0.0 +9186,my_land,2012-04-24,0.21726870303164683,subsurface_runoff,0.0,0.0,4.7563471881859554e-05,0.0,0.0,0.0,0.0,0.0,10.00890612499569,0.0,0.0,0.0 +9187,my_land,2012-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 +9188,my_groundwater,2012-04-24,13.81900790868476,tank,0.0,0.0,0.0022166709005210037,0.0,0.0,0.0,0.0,0.0,9.524301525016714,0.0,0.0,0.0 +9189,my_reservoir,2012-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9190,gw1,2012-04-24,262.48277350119145,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9191,gw2,2012-04-24,262.51722649880855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9192,my_sewer,2012-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.334216591075268,0.0,0.0,0.0 +9193,my_land,2012-04-25,2.1842566636222753,percolation,0.0,0.0,0.0004603564184890959,0.0,0.0,0.0,0.0,0.0,9.145276564864984,0.0,0.0,0.0 +9194,my_land,2012-04-25,0.32176340906606943,subsurface_runoff,0.0,0.0,6.8058411983985e-05,0.0,0.0,0.0,0.0,0.0,10.09259353714362,0.0,0.0,0.0 +9195,my_land,2012-04-25,4.5262123996648e-18,surface_runoff,0.0,0.0,1.105032324136914e-21,0.0,0.0,0.0,0.0,0.0,10.17771094858147,0.0,0.0,0.0 +9196,my_groundwater,2012-04-25,13.828925613851073,tank,0.0,0.0,0.0022205007646460863,0.0,0.0,0.0,0.0,0.0,9.523082816450273,0.0,0.0,0.0 +9197,my_reservoir,2012-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9198,gw1,2012-04-25,262.4828883445168,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9199,gw2,2012-04-25,262.5171116554832,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9200,my_sewer,2012-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0 +9201,my_land,2012-04-26,2.5141403227231733,percolation,0.0,0.0,0.0005247670336866818,0.0,0.0,0.0,0.0,0.0,9.316126670901943,0.0,0.0,0.0 +9202,my_land,2012-04-26,0.35906209932723476,subsurface_runoff,0.0,0.0,7.447876865313843e-05,0.0,0.0,0.0,0.0,0.0,10.14992588459166,0.0,0.0,0.0 +9203,my_land,2012-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.48214286,0.0,0.0,0.0 +9204,my_groundwater,2012-04-26,13.845534013529024,tank,0.0,0.0,0.00222563227020595,0.0,0.0,0.0,0.0,0.0,9.522317792636384,0.0,0.0,0.0 +9205,my_reservoir,2012-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9206,gw1,2012-04-26,262.48300242222007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9207,gw2,2012-04-26,262.51699757777993,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9208,my_sewer,2012-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0 +9209,my_land,2012-04-27,2.996266064096156,percolation,0.0,0.0,0.0006146344953862436,0.0,0.0,0.0,0.0,0.0,9.510206584540276,0.0,0.0,0.0 +9210,my_land,2012-04-27,0.4321227537005486,subsurface_runoff,0.0,0.0,8.689262101048229e-05,0.0,0.0,0.0,0.0,0.0,10.23656870653689,0.0,0.0,0.0 +9211,my_land,2012-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.61071429,0.0,0.0,0.0 +9212,my_groundwater,2012-04-27,13.871915594800017,tank,0.0,0.0,0.002232580391757941,0.0,0.0,0.0,0.0,0.0,9.52226453912754,0.0,0.0,0.0 +9213,my_reservoir,2012-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9214,gw1,2012-04-27,262.48311573940526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9215,gw2,2012-04-27,262.51688426059474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9216,my_sewer,2012-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.659612098855124,0.0,0.0,0.0 +9217,my_land,2012-04-28,3.993603360070496,percolation,0.0,0.0,0.0007840641271998121,0.0,0.0,0.0,0.0,0.0,9.780208130396774,0.0,0.0,0.0 +9218,my_land,2012-04-28,0.6333887110573813,subsurface_runoff,0.0,0.0,0.00011896234761690103,0.0,0.0,0.0,0.0,0.0,10.369886184827209,0.0,0.0,0.0 +9219,my_land,2012-04-28,8.977881510421387e-18,surface_runoff,0.0,0.0,1.0959328015651107e-21,0.0,0.0,0.0,0.0,0.0,10.489372993997897,0.0,0.0,0.0 +9220,my_groundwater,2012-04-28,13.918534159928736,tank,0.0,0.0,0.0022429602462251137,0.0,0.0,0.0,0.0,0.0,9.523771191278115,0.0,0.0,0.0 +9221,my_reservoir,2012-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9222,gw1,2012-04-28,262.48322830114256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9223,gw2,2012-04-28,262.51677169885744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9224,my_sewer,2012-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0 +9225,my_land,2012-04-29,4.6063029045721136,percolation,0.0,0.0,0.0008811691133090976,0.0,0.0,0.0,0.0,0.0,9.908661452609529,0.0,0.0,0.0 +9226,my_land,2012-04-29,0.6951658291732595,subsurface_runoff,0.0,0.0,0.00012586001922366554,0.0,0.0,0.0,0.0,0.0,10.441635572581207,0.0,0.0,0.0 +9227,my_land,2012-04-29,6.161980007612699e-18,surface_runoff,0.0,0.0,1.5043896502960692e-21,0.0,0.0,0.0,0.0,0.0,10.53626048015362,0.0,0.0,0.0 +9228,my_groundwater,2012-04-29,13.97750899080056,tank,0.0,0.0,0.002255290931130486,0.0,0.0,0.0,0.0,0.0,9.52635331150536,0.0,0.0,0.0 +9229,my_reservoir,2012-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9230,gw1,2012-04-29,262.4833401124683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9231,gw2,2012-04-29,262.5166598875317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9232,my_sewer,2012-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 +9233,my_land,2012-04-30,5.4606850954166415,percolation,0.0,0.0,0.0010064123709539986,0.0,0.0,0.0,0.0,0.0,10.054599911665507,0.0,0.0,0.0 +9234,my_land,2012-04-30,0.8136859283551983,subsurface_runoff,0.0,0.0,0.0001395632915452135,0.0,0.0,0.0,0.0,0.0,10.539438461677571,0.0,0.0,0.0 +9235,my_land,2012-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.996428570000003,0.0,0.0,0.0 +9236,my_groundwater,2012-04-30,14.053729164908825,tank,0.0,0.0,0.0022701403842113666,0.0,0.0,0.0,0.0,0.0,9.530531702603907,0.0,0.0,0.0 +9237,my_reservoir,2012-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9238,gw1,2012-04-30,262.48345117838517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9239,gw2,2012-04-30,262.51654882161483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9240,my_sewer,2012-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 +9241,my_land,2012-05-01,5.440818009795098,percolation,0.0,0.0,0.0009997974784761692,0.0,0.0,0.0,0.0,0.0,10.067525981266865,0.0,0.0,0.0 +9242,my_land,2012-05-01,0.675260747115938,subsurface_runoff,0.0,0.0,0.00011532773662154508,0.0,0.0,0.0,0.0,0.0,10.550322524681018,0.0,0.0,0.0 +9243,my_land,2012-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 +9244,my_groundwater,2012-05-01,14.129354351481668,tank,0.0,0.0,0.0022848180533483887,0.0,0.0,0.0,0.0,0.0,9.534741181779069,0.0,0.0,0.0 +9245,my_reservoir,2012-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9246,gw1,2012-05-01,262.4835615038626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9247,gw2,2012-05-01,262.5164384961374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9248,my_sewer,2012-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +9249,my_land,2012-05-02,5.786963720930439,percolation,0.0,0.0,0.0010464101428791625,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +9250,my_land,2012-05-02,0.6640078007760819,subsurface_runoff,0.0,0.0,0.00011038698221492767,0.0,0.0,0.0,0.0,0.0,10.625588552261917,0.0,0.0,0.0 +9251,my_land,2012-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.08928571,0.0,0.0,0.0 +9252,my_groundwater,2012-05-02,14.211837012779046,tank,0.0,0.0,0.002300407928980772,0.0,0.0,0.0,0.0,0.0,9.539735309057914,0.0,0.0,0.0 +9253,my_reservoir,2012-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9254,gw1,2012-05-02,262.48367109383685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9255,gw2,2012-05-02,262.51632890616315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9256,my_sewer,2012-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +9257,my_land,2012-05-03,5.67122444651183,percolation,0.0,0.0,0.0010254819400215792,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +9258,my_land,2012-05-03,0.5312062406208655,subsurface_runoff,0.0,0.0,8.830958577194214e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261917,0.0,0.0,0.0 +9259,my_land,2012-05-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.05357143,0.0,0.0,0.0 +9260,my_groundwater,2012-05-03,14.29175734647966,tank,0.0,0.0,0.002315532791508759,0.0,0.0,0.0,0.0,0.0,9.544561841943382,0.0,0.0,0.0 +9261,my_reservoir,2012-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9262,gw1,2012-05-03,262.48377995321124,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9263,gw2,2012-05-03,262.51622004678876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9264,my_sewer,2012-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 +9265,my_land,2012-05-04,5.557799957581593,percolation,0.0,0.0,0.0010049723012211477,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +9266,my_land,2012-05-04,0.4249649924966924,subsurface_runoff,0.0,0.0,7.064766861755371e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261917,0.0,0.0,0.0 +9267,my_land,2012-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.01785714,0.0,0.0,0.0 +9268,my_groundwater,2012-05-04,14.369168880821372,tank,0.0,0.0,0.0023302023242334174,0.0,0.0,0.0,0.0,0.0,9.549228358582953,0.0,0.0,0.0 +9269,my_reservoir,2012-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9270,gw1,2012-05-04,262.4838880868565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9271,gw2,2012-05-04,262.5161119131435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9272,my_sewer,2012-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 +9273,my_land,2012-05-05,5.446643958429961,percolation,0.0,0.0,0.0009848728551967248,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 +9274,my_land,2012-05-05,0.3399719939973539,subsurface_runoff,0.0,0.0,5.6518134894042974e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261918,0.0,0.0,0.0 +9275,my_land,2012-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.01785714,0.0,0.0,0.0 +9276,my_groundwater,2012-05-05,14.444124067773071,tank,0.0,0.0,0.002344426015832196,0.0,0.0,0.0,0.0,0.0,9.553741991359738,0.0,0.0,0.0 +9277,my_reservoir,2012-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9278,gw1,2012-05-05,262.4839954996108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9279,gw2,2012-05-05,262.5160045003892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9280,my_sewer,2012-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 +9281,my_land,2012-05-06,5.413056079036429,percolation,0.0,0.0,0.0009764951877243858,0.0,0.0,0.0,0.0,0.0,10.147091262597801,0.0,0.0,0.0 +9282,my_land,2012-05-06,0.2924796359530035,subsurface_runoff,0.0,0.0,4.829472278097465e-05,0.0,0.0,0.0,0.0,0.0,10.641064184470883,0.0,0.0,0.0 +9283,my_land,2012-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.94642857,0.0,0.0,0.0 +9284,my_groundwater,2012-05-06,14.518208113498309,tank,0.0,0.0,0.002358443602828433,0.0,0.0,0.0,0.0,0.0,9.558245559586169,0.0,0.0,0.0 +9285,my_reservoir,2012-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9286,gw1,2012-05-06,262.48410219628005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9287,gw2,2012-05-06,262.51589780371995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9288,my_sewer,2012-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0 +9289,my_land,2012-05-07,6.104799139359195,percolation,0.0,0.0,0.0010685676011494914,0.0,0.0,0.0,0.0,0.0,10.23563764199505,0.0,0.0,0.0 +9290,my_land,2012-05-07,0.4516719215252586,subsurface_runoff,0.0,0.0,6.900375568861462e-05,0.0,0.0,0.0,0.0,0.0,10.728646542260607,0.0,0.0,0.0 +9291,my_land,2012-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.91071429,0.0,0.0,0.0 +9292,my_groundwater,2012-05-07,14.606188861408661,tank,0.0,0.0,0.0023743004771304764,0.0,0.0,0.0,0.0,0.0,9.564009127406955,0.0,0.0,0.0 +9293,my_reservoir,2012-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9294,gw1,2012-05-07,262.48420818163817,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9295,gw2,2012-05-07,262.51579181836183,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9296,my_sewer,2012-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0 +9297,my_land,2012-05-08,6.195754988349437,percolation,0.0,0.0,0.00107661760171108,0.0,0.0,0.0,0.0,0.0,10.254603322429517,0.0,0.0,0.0 +9298,my_land,2012-05-08,0.4193108247786899,subsurface_runoff,0.0,0.0,6.320881477798784e-05,0.0,0.0,0.0,0.0,0.0,10.73673903067902,0.0,0.0,0.0 +9299,my_land,2012-05-08,1.7631125144035227e-18,surface_runoff,0.0,0.0,4.304473912117975e-22,0.0,0.0,0.0,0.0,0.0,10.75430448481618,0.0,0.0,0.0 +9300,my_groundwater,2012-05-08,14.695801258660824,tank,0.0,0.0,0.002390281584258197,0.0,0.0,0.0,0.0,0.0,9.569936206367062,0.0,0.0,0.0 +9301,my_reservoir,2012-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9302,gw1,2012-05-08,262.48431346042724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9303,gw2,2012-05-08,262.51568653957276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9304,my_sewer,2012-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +9305,my_land,2012-05-09,6.637881145067061,percolation,0.0,0.0,0.0011297991302467027,0.0,0.0,0.0,0.0,0.0,10.298155999720672,0.0,0.0,0.0 +9306,my_land,2012-05-09,0.4894734915194451,subsurface_runoff,0.0,0.0,7.089735946044311e-05,0.0,0.0,0.0,0.0,0.0,10.745738729137459,0.0,0.0,0.0 +9307,my_land,2012-05-09,6.9061028058076e-18,surface_runoff,0.0,0.0,8.430301276620605e-22,0.0,0.0,0.0,0.0,0.0,10.802783192127276,0.0,0.0,0.0 +9308,my_groundwater,2012-05-09,14.794190050253038,tank,0.0,0.0,0.0024073053625918595,0.0,0.0,0.0,0.0,0.0,9.576587675527367,0.0,0.0,0.0 +9309,my_reservoir,2012-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9310,gw1,2012-05-09,262.4844180373577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9311,gw2,2012-05-09,262.5155819626423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9312,my_sewer,2012-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +9313,my_land,2012-05-10,6.626161244448793,percolation,0.0,0.0,0.0011231638200001892,0.0,0.0,0.0,0.0,0.0,10.307840556708321,0.0,0.0,0.0 +9314,my_land,2012-05-10,0.42451422785040605,subsurface_runoff,0.0,0.0,6.106092766588389e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626424,0.0,0.0,0.0 +9315,my_land,2012-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.075,0.0,0.0,0.0 +9316,my_groundwater,2012-05-10,14.892094286175112,tank,0.0,0.0,0.002424151505521098,0.0,0.0,0.0,0.0,0.0,9.583211222756509,0.0,0.0,0.0 +9317,my_reservoir,2012-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9318,gw1,2012-05-10,262.4845219171087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9319,gw2,2012-05-10,262.5154780828913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9320,my_sewer,2012-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +9321,my_land,2012-05-11,6.493638019559818,percolation,0.0,0.0,0.0011007005436001855,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 +9322,my_land,2012-05-11,0.33961138228032484,subsurface_runoff,0.0,0.0,4.884874213270711e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 +9323,my_land,2012-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.075,0.0,0.0,0.0 +9324,my_groundwater,2012-05-11,14.987055967286429,tank,0.0,0.0,0.002440498244966299,0.0,0.0,0.0,0.0,0.0,9.589602747606557,0.0,0.0,0.0 +9325,my_reservoir,2012-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9326,gw1,2012-05-11,262.48462510432796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9327,gw2,2012-05-11,262.51537489567204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9328,my_sewer,2012-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +9329,my_land,2012-05-12,6.363765259168622,percolation,0.0,0.0,0.0010786865327281818,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 +9330,my_land,2012-05-12,0.27168910582425987,subsurface_runoff,0.0,0.0,3.907899370616569e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 +9331,my_land,2012-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.075,0.0,0.0,0.0 +9332,my_groundwater,2012-05-12,15.07913640585843,tank,0.0,0.0,0.0024563559751987073,0.0,0.0,0.0,0.0,0.0,9.595773281884103,0.0,0.0,0.0 +9333,my_reservoir,2012-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9334,gw1,2012-05-12,262.48472760363245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9335,gw2,2012-05-12,262.51527239636755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9336,my_sewer,2012-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 +9337,my_land,2012-05-13,6.293740648377158,percolation,0.0,0.0,0.0010648656204907952,0.0,0.0,0.0,0.0,0.0,10.314871131712378,0.0,0.0,0.0 +9338,my_land,2012-05-13,0.23292970490210413,subsurface_runoff,0.0,0.0,3.337280541858617e-05,0.0,0.0,0.0,0.0,0.0,10.774122670436071,0.0,0.0,0.0 +9339,my_land,2012-05-13,4.563719363773987e-19,surface_runoff,0.0,0.0,1.1141892977963835e-22,0.0,0.0,0.0,0.0,0.0,10.813642448979444,0.0,0.0,0.0 +9340,my_groundwater,2012-05-13,15.169561142328604,tank,0.0,0.0,0.0024718927068207016,0.0,0.0,0.0,0.0,0.0,9.601846804322845,0.0,0.0,0.0 +9341,my_reservoir,2012-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9342,gw1,2012-05-13,262.4848294196082,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9343,gw2,2012-05-13,262.5151705803918,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9344,my_sewer,2012-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +9345,my_land,2012-05-14,6.294961672040866,percolation,0.0,0.0,0.001060695096593694,0.0,0.0,0.0,0.0,0.0,10.332122223644802,0.0,0.0,0.0 +9346,my_land,2012-05-14,0.22092766504583344,subsurface_runoff,0.0,0.0,3.135859495057363e-05,0.0,0.0,0.0,0.0,0.0,10.835984275024625,0.0,0.0,0.0 +9347,my_land,2012-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +9348,my_groundwater,2012-05-14,15.259784673510756,tank,0.0,0.0,0.0024873056966628784,0.0,0.0,0.0,0.0,0.0,9.607979454496444,0.0,0.0,0.0 +9349,my_reservoir,2012-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9350,gw1,2012-05-14,262.4849305568108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9351,gw2,2012-05-14,262.5150694431892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9352,my_sewer,2012-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +9353,my_land,2012-05-15,6.250354921450667,percolation,0.0,0.0,0.001050442795116105,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 +9354,my_land,2012-05-15,0.19886253553343355,subsurface_runoff,0.0,0.0,2.8069624383393643e-05,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 +9355,my_land,2012-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.709375000000001,0.0,0.0,0.0 +9356,my_groundwater,2012-05-15,15.348874579870795,tank,0.0,0.0,0.002502471446464656,0.0,0.0,0.0,0.0,0.0,9.614081892202526,0.0,0.0,0.0 +9357,my_reservoir,2012-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9358,gw1,2012-05-15,262.4850310197654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9359,gw2,2012-05-15,262.5149689802346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9360,my_sewer,2012-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +9361,my_land,2012-05-16,6.125347823021653,percolation,0.0,0.0,0.0010294339392137829,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 +9362,my_land,2012-05-16,0.15909002842674685,subsurface_runoff,0.0,0.0,2.2455699506714916e-05,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 +9363,my_land,2012-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.709375000000001,0.0,0.0,0.0 +9364,my_groundwater,2012-05-16,15.435196974104059,tank,0.0,0.0,0.002517171601611061,0.0,0.0,0.0,0.0,0.0,9.6199795363469,0.0,0.0,0.0 +9365,my_reservoir,2012-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9366,gw1,2012-05-16,262.485130812967,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9367,gw2,2012-05-16,262.514869187033,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9368,my_sewer,2012-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 +9369,my_land,2012-05-17,6.00284086656122,percolation,0.0,0.0,0.0010088452604295071,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 +9370,my_land,2012-05-17,0.12727202274139748,subsurface_runoff,0.0,0.0,1.7964559605371932e-05,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 +9371,my_land,2012-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.709375000000001,0.0,0.0,0.0 +9372,my_groundwater,2012-05-17,15.51880967073808,tank,0.0,0.0,0.002531415879694348,0.0,0.0,0.0,0.0,0.0,9.62568164744754,0.0,0.0,0.0 +9373,my_reservoir,2012-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9374,gw1,2012-05-17,262.4852299408805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9375,gw2,2012-05-17,262.5147700591195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9376,my_sewer,2012-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9377,my_land,2012-05-18,5.950241619337533,percolation,0.0,0.0,0.000997951809478351,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9378,my_land,2012-05-18,0.12017341958292421,subsurface_runoff,0.0,0.0,1.689775768632039e-05,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9379,my_land,2012-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9380,my_groundwater,2012-05-18,15.601142565240606,tank,0.0,0.0,0.0025454027875452074,0.0,0.0,0.0,0.0,0.0,9.631391560082655,0.0,0.0,0.0 +9381,my_reservoir,2012-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9382,gw1,2012-05-18,262.4853284079413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9383,gw2,2012-05-18,262.5146715920587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9384,my_sewer,2012-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9385,my_land,2012-05-19,5.831236786950782,percolation,0.0,0.0,0.0009779927732887841,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9386,my_land,2012-05-19,0.09613873566633938,subsurface_runoff,0.0,0.0,1.3518206149056313e-05,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9387,my_land,2012-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9388,my_groundwater,2012-05-19,15.680847029133288,tank,0.0,0.0,0.0025589484191754375,0.0,0.0,0.0,0.0,0.0,9.636915606662876,0.0,0.0,0.0 +9389,my_reservoir,2012-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9390,gw1,2012-05-19,262.48542621855506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9391,gw2,2012-05-19,262.51457378144494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9392,my_sewer,2012-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9393,my_land,2012-05-20,5.714612051211767,percolation,0.0,0.0,0.0009584329178230085,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9394,my_land,2012-05-20,0.0769109885330715,subsurface_runoff,0.0,0.0,1.081456491924505e-05,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9395,my_land,2012-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9396,my_groundwater,2012-05-20,15.757978085460124,tank,0.0,0.0,0.00257206200395461,0.0,0.0,0.0,0.0,0.0,9.64226189312741,0.0,0.0,0.0 +9397,my_reservoir,2012-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9398,gw1,2012-05-20,262.48552337709805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9399,gw2,2012-05-20,262.51447662290195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9400,my_sewer,2012-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9401,my_land,2012-05-21,5.600319810187532,percolation,0.0,0.0,0.0009392642594665484,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9402,my_land,2012-05-21,0.06152879082645721,subsurface_runoff,0.0,0.0,8.65165193539604e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9403,my_land,2012-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9404,my_groundwater,2012-05-21,15.83258965066815,tank,0.0,0.0,0.0025847525856552925,0.0,0.0,0.0,0.0,0.0,9.64743806594515,0.0,0.0,0.0 +9405,my_reservoir,2012-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9406,gw1,2012-05-21,262.4856198879174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9407,gw2,2012-05-21,262.5143801120826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9408,my_sewer,2012-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9409,my_land,2012-05-22,5.488313413983781,percolation,0.0,0.0,0.0009204789742772175,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9410,my_land,2012-05-22,0.04922303266116577,subsurface_runoff,0.0,0.0,6.921321548316833e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9411,my_land,2012-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9412,my_groundwater,2012-05-22,15.90473455675472,tank,0.0,0.0,0.002597029026167512,0.0,0.0,0.0,0.0,0.0,9.652451344251919,0.0,0.0,0.0 +9413,my_reservoir,2012-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9414,gw1,2012-05-22,262.4857157553313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9415,gw2,2012-05-22,262.5142842446687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9416,my_sewer,2012-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9417,my_land,2012-05-23,5.378547145704106,percolation,0.0,0.0,0.0009020693947916731,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9418,my_land,2012-05-23,0.039378426128932616,subsurface_runoff,0.0,0.0,5.5370572386534664e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9419,my_land,2012-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9420,my_groundwater,2012-05-23,15.97446457297181,tank,0.0,0.0,0.0026089000091389235,0.0,0.0,0.0,0.0,0.0,9.657308549326293,0.0,0.0,0.0 +9421,my_reservoir,2012-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9422,gw1,2012-05-23,262.48581098362905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9423,gw2,2012-05-23,262.51418901637095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9424,my_sewer,2012-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9425,my_land,2012-05-24,5.270976202790024,percolation,0.0,0.0,0.0008840280068958396,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9426,my_land,2012-05-24,0.031502740903146094,subsurface_runoff,0.0,0.0,4.429645790922773e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9427,my_land,2012-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9428,my_groundwater,2012-05-24,16.041830427096176,tank,0.0,0.0,0.00262037404354217,0.0,0.0,0.0,0.0,0.0,9.662016131657705,0.0,0.0,0.0 +9429,my_reservoir,2012-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9430,gw1,2012-05-24,262.48590557707155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9431,gw2,2012-05-24,262.51409442292845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9432,my_sewer,2012-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9433,my_land,2012-05-25,5.165556678734223,percolation,0.0,0.0,0.0008663474467579228,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9434,my_land,2012-05-25,0.025202192722516874,subsurface_runoff,0.0,0.0,3.5437166327382187e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9435,my_land,2012-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9436,my_groundwater,2012-05-25,16.106881826274098,tank,0.0,0.0,0.0026314594671708867,0.0,0.0,0.0,0.0,0.0,9.666580195833147,0.0,0.0,0.0 +9437,my_reservoir,2012-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9438,gw1,2012-05-25,262.48599953989105,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9439,gw2,2012-05-25,262.51400046010895,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9440,my_sewer,2012-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9441,my_land,2012-05-26,5.062245545159539,percolation,0.0,0.0,0.0008490204978227644,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9442,my_land,2012-05-26,0.0201617541780135,subsurface_runoff,0.0,0.0,2.834973306190575e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9443,my_land,2012-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9444,my_groundwater,2012-05-26,16.16966747744916,tank,0.0,0.0,0.00264216445006578,0.0,0.0,0.0,0.0,0.0,9.671006523444873,0.0,0.0,0.0 +9445,my_reservoir,2012-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9446,gw1,2012-05-26,262.48609287629176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9447,gw2,2012-05-26,262.51390712370824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9448,my_sewer,2012-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9449,my_land,2012-05-27,4.961000634256348,percolation,0.0,0.0,0.0008320400878663091,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9450,my_land,2012-05-27,0.0161294033424108,subsurface_runoff,0.0,0.0,2.26797864495246e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9451,my_land,2012-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9452,my_groundwater,2012-05-27,16.230235107381468,tank,0.0,0.0,0.0026524969978721797,0.0,0.0,0.0,0.0,0.0,9.675300594200312,0.0,0.0,0.0 +9453,my_reservoir,2012-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9454,gw1,2012-05-27,262.4861855904498,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9455,gw2,2012-05-27,262.5138144095502,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9456,my_sewer,2012-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9457,my_land,2012-05-28,4.861780621571222,percolation,0.0,0.0,0.0008153992861089829,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9458,my_land,2012-05-28,0.012903522673928641,subsurface_runoff,0.0,0.0,1.814382915961968e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 +9459,my_land,2012-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9460,my_groundwater,2012-05-28,16.288631482266428,tank,0.0,0.0,0.0026624649551304324,0.0,0.0,0.0,0.0,0.0,9.67946760539664,0.0,0.0,0.0 +9461,my_reservoir,2012-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9462,gw1,2012-05-28,262.48627768651346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9463,gw2,2012-05-28,262.51372231348654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9464,my_sewer,2012-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9465,my_land,2012-05-29,4.764545009139797,percolation,0.0,0.0,0.0007990913003868033,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9466,my_land,2012-05-29,0.010322818139142913,subsurface_runoff,0.0,0.0,1.4515063327695744e-06,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9467,my_land,2012-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9468,my_groundwater,2012-05-29,16.34490242696111,tank,0.0,0.0,0.0026720760085004805,0.0,0.0,0.0,0.0,0.0,9.683512489905969,0.0,0.0,0.0 +9469,my_reservoir,2012-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9470,gw1,2012-05-29,262.48636916860335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9471,gw2,2012-05-29,262.51363083139665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9472,my_sewer,2012-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9473,my_land,2012-05-30,4.669254108957001,percolation,0.0,0.0,0.0007831094743790672,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9474,my_land,2012-05-30,0.00825825451131433,subsurface_runoff,0.0,0.0,1.1612050662156596e-06,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9475,my_land,2012-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9476,my_groundwater,2012-05-30,16.399092843826047,tank,0.0,0.0,0.002681337689921946,0.0,0.0,0.0,0.0,0.0,9.687439932802334,0.0,0.0,0.0 +9477,my_reservoir,2012-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9478,gw1,2012-05-30,262.48646004081263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9479,gw2,2012-05-30,262.51353995918737,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9480,my_sewer,2012-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9481,my_land,2012-05-31,4.575869026777861,percolation,0.0,0.0,0.0007674472848914858,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9482,my_land,2012-05-31,0.006606603609051465,subsurface_runoff,0.0,0.0,9.289640529725277e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9483,my_land,2012-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9484,my_groundwater,2012-05-31,16.451246731190174,tank,0.0,0.0,0.0026902573797110037,0.0,0.0,0.0,0.0,0.0,9.691254386748689,0.0,0.0,0.0 +9485,my_reservoir,2012-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9486,gw1,2012-05-31,262.4865503072072,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9487,gw2,2012-05-31,262.5134496927928,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9488,my_sewer,2012-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9489,my_land,2012-06-01,4.484351646242303,percolation,0.0,0.0,0.0007520983391936561,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9490,my_land,2012-06-01,0.005285282887241172,subsurface_runoff,0.0,0.0,7.431712423780221e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9491,my_land,2012-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9492,my_groundwater,2012-06-01,16.501407201446415,tank,0.0,0.0,0.002698842309595311,0.0,0.0,0.0,0.0,0.0,9.694960086250445,0.0,0.0,0.0 +9493,my_reservoir,2012-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9494,gw1,2012-06-01,262.4866399718258,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9495,gw2,2012-06-01,262.5133600281742,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9496,my_sewer,2012-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0 +9497,my_land,2012-06-02,4.394664613317457,percolation,0.0,0.0,0.000737056372409783,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9498,my_land,2012-06-02,0.004228226309792938,subsurface_runoff,0.0,0.0,5.945369939024177e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9499,my_land,2012-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9500,my_groundwater,2012-06-02,16.549616498785333,tank,0.0,0.0,0.002707099565688236,0.0,0.0,0.0,0.0,0.0,9.698561060871814,0.0,0.0,0.0 +9501,my_reservoir,2012-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9502,gw1,2012-06-02,262.4867290386803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9503,gw2,2012-06-02,262.5132709613197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9504,my_sewer,2012-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 +9505,my_land,2012-06-03,4.306771321051108,percolation,0.0,0.0,0.0007223152449615873,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9506,my_land,2012-06-03,0.00338258104783435,subsurface_runoff,0.0,0.0,4.7562959512193414e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9507,my_land,2012-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9508,my_groundwater,2012-06-03,16.595916016574055,tank,0.0,0.0,0.0027150360914035905,0.0,0.0,0.0,0.0,0.0,9.702061147501942,0.0,0.0,0.0 +9509,my_reservoir,2012-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9510,gw1,2012-06-03,262.48681751175576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9511,gw2,2012-06-03,262.51318248824424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9512,my_sewer,2012-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 +9513,my_land,2012-06-04,4.220635894630085,percolation,0.0,0.0,0.0007078689400623556,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 +9514,my_land,2012-06-04,0.00270606483826748,subsurface_runoff,0.0,0.0,3.805036760975473e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 +9515,my_land,2012-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 +9516,my_groundwater,2012-06-04,16.64034631438759,tank,0.0,0.0,0.002722658690312065,0.0,0.0,0.0,0.0,0.0,9.705464001749593,0.0,0.0,0.0 +9517,my_reservoir,2012-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9518,gw1,2012-06-04,262.4869053950107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9519,gw2,2012-06-04,262.5130946049893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9520,my_sewer,2012-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0 +9521,my_land,2012-06-05,4.4938261371556,percolation,0.0,0.0,0.0007415251831095496,0.0,0.0,0.0,0.0,0.0,10.67184785195944,0.0,0.0,0.0 +9522,my_land,2012-06-05,0.09947177987554365,subsurface_runoff,0.0,0.0,1.331491228739262e-05,0.0,0.0,0.0,0.0,0.0,14.195671965880791,0.0,0.0,0.0 +9523,my_land,2012-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.3875,0.0,0.0,0.0 +9524,my_groundwater,2012-06-05,16.690226909250857,tank,0.0,0.0,0.002730947377671015,0.0,0.0,0.0,0.0,0.0,9.710760886366305,0.0,0.0,0.0 +9525,my_reservoir,2012-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9526,gw1,2012-06-05,262.48699269237727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9527,gw2,2012-06-05,262.51300730762273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9528,my_sewer,2012-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.113490499944918,0.0,0.0,0.0 +9529,my_land,2012-06-06,4.657154861495289,percolation,0.0,0.0,0.0007601943906795478,0.0,0.0,0.0,0.0,0.0,10.843262985791139,0.0,0.0,0.0 +9530,my_land,2012-06-06,0.14847681086174103,subsurface_runoff,0.0,0.0,1.976749751214246e-05,0.0,0.0,0.0,0.0,0.0,14.0235038378599,0.0,0.0,0.0 +9531,my_land,2012-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.875,0.0,0.0,0.0 +9532,my_groundwater,2012-06-06,16.743307708801026,tank,0.0,0.0,0.0027395953950371,0.0,0.0,0.0,0.0,0.0,9.717173502758092,0.0,0.0,0.0 +9533,my_reservoir,2012-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9534,gw1,2012-06-06,262.4870794077614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9535,gw2,2012-06-06,262.5129205922386,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9536,my_sewer,2012-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.23010214313227,0.0,0.0,0.0 +9537,my_land,2012-06-07,5.706444944131128,percolation,0.0,0.0,0.0008842086574727118,0.0,0.0,0.0,0.0,0.0,11.356822818436166,0.0,0.0,0.0 +9538,my_land,2012-06-07,0.42964762008143237,subsurface_runoff,0.0,0.0,5.36964890591711e-05,0.0,0.0,0.0,0.0,0.0,13.578518542413738,0.0,0.0,0.0 +9539,my_land,2012-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.675,0.0,0.0,0.0 +9540,my_groundwater,2012-06-07,16.817616354463123,tank,0.0,0.0,0.0027507463685052013,0.0,0.0,0.0,0.0,0.0,9.728499305330915,0.0,0.0,0.0 +9541,my_reservoir,2012-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9542,gw1,2012-06-07,262.487165545043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9543,gw2,2012-06-07,262.512834454957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9544,my_sewer,2012-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 +9545,my_land,2012-06-08,5.734454274956917,percolation,0.0,0.0,0.0008838270391624222,0.0,0.0,0.0,0.0,0.0,11.402114365606245,0.0,0.0,0.0 +9546,my_land,2012-06-08,0.3823951653735572,subsurface_runoff,0.0,0.0,4.766536943486465e-05,0.0,0.0,0.0,0.0,0.0,13.53862278934258,0.0,0.0,0.0 +9547,my_land,2012-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.475,0.0,0.0,0.0 +9548,my_groundwater,2012-06-08,16.89230941846002,tank,0.0,0.0,0.0027618616958811734,0.0,0.0,0.0,0.0,0.0,9.740065099680603,0.0,0.0,0.0 +9549,my_reservoir,2012-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9550,gw1,2012-06-08,262.48725110807607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9551,gw2,2012-06-08,262.51274889192393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9552,my_sewer,2012-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 +9553,my_land,2012-06-09,5.6197651894577785,percolation,0.0,0.0,0.0008661504983791738,0.0,0.0,0.0,0.0,0.0,11.402114365606243,0.0,0.0,0.0 +9554,my_land,2012-06-09,0.3059161322988458,subsurface_runoff,0.0,0.0,3.813229554789172e-05,0.0,0.0,0.0,0.0,0.0,13.53862278934258,0.0,0.0,0.0 +9555,my_land,2012-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.475,0.0,0.0,0.0 +9556,my_groundwater,2012-06-09,16.96448100769926,tank,0.0,0.0,0.0027725893910727608,0.0,0.0,0.0,0.0,0.0,9.751273362580088,0.0,0.0,0.0 +9557,my_reservoir,2012-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9558,gw1,2012-06-09,262.4873361006889,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9559,gw2,2012-06-09,262.5126638993111,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9560,my_sewer,2012-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0 +9561,my_land,2012-06-10,5.99044298182286,percolation,0.0,0.0,0.0009064782519583502,0.0,0.0,0.0,0.0,0.0,11.518095795257373,0.0,0.0,0.0 +9562,my_land,2012-06-10,0.37618136737764474,subsurface_runoff,0.0,0.0,4.6193119036071164e-05,0.0,0.0,0.0,0.0,0.0,13.294631638879832,0.0,0.0,0.0 +9563,my_land,2012-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.075,0.0,0.0,0.0 +9564,my_groundwater,2012-06-10,17.04401810873855,tank,0.0,0.0,0.0027841112248670878,0.0,0.0,0.0,0.0,0.0,9.763914806456736,0.0,0.0,0.0 +9565,my_reservoir,2012-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9566,gw1,2012-06-10,262.4874205266843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9567,gw2,2012-06-10,262.5125794733157,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9568,my_sewer,2012-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +9569,my_land,2012-06-11,7.010691812037568,percolation,0.0,0.0,0.0010131177451783288,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 +9570,my_land,2012-06-11,0.6111648734534533,subsurface_runoff,0.0,0.0,7.090525938100543e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 +9571,my_land,2012-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.875000000000002,0.0,0.0,0.0 +9572,my_groundwater,2012-06-11,17.144125718211754,tank,0.0,0.0,0.0027977751294746217,0.0,0.0,0.0,0.0,0.0,9.780090561908207,0.0,0.0,0.0 +9573,my_reservoir,2012-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9574,gw1,2012-06-11,262.4875043898397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9575,gw2,2012-06-11,262.5124956101603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9576,my_sewer,2012-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +9577,my_land,2012-06-12,6.870477975796817,percolation,0.0,0.0,0.0009928553902747621,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 +9578,my_land,2012-06-12,0.48893189876276266,subsurface_runoff,0.0,0.0,5.672420750480434e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 +9579,my_land,2012-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.875000000000002,0.0,0.0,0.0 +9580,my_groundwater,2012-06-12,17.241128705566375,tank,0.0,0.0,0.002810992390667243,0.0,0.0,0.0,0.0,0.0,9.79572239271143,0.0,0.0,0.0 +9581,my_reservoir,2012-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9582,gw1,2012-06-12,262.48758769390747,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9583,gw2,2012-06-12,262.51241230609253,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9584,my_sewer,2012-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 +9585,my_land,2012-06-13,6.73306841628088,percolation,0.0,0.0,0.0009729982824692668,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 +9586,my_land,2012-06-13,0.3911455190102101,subsurface_runoff,0.0,0.0,4.537936600384347e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 +9587,my_land,2012-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.06071429,0.0,0.0,0.0 +9588,my_groundwater,2012-06-13,17.335091919419607,tank,0.0,0.0,0.002823772374726556,0.0,0.0,0.0,0.0,0.0,9.810834952067127,0.0,0.0,0.0 +9589,my_reservoir,2012-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9590,gw1,2012-06-13,262.48767044261473,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9591,gw2,2012-06-13,262.51232955738527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9592,my_sewer,2012-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 +9593,my_land,2012-06-14,7.605108052729979,percolation,0.0,0.0,0.0010576341865178678,0.0,0.0,0.0,0.0,0.0,11.832617275379805,0.0,0.0,0.0 +9594,my_land,2012-06-14,0.58684866140537,subsurface_runoff,0.0,0.0,6.462889952361528e-05,0.0,0.0,0.0,0.0,0.0,12.830030313648837,0.0,0.0,0.0 +9595,my_land,2012-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.44642857,0.0,0.0,0.0 +9596,my_groundwater,2012-06-14,17.44657246069449,tank,0.0,0.0,0.002838243354015282,0.0,0.0,0.0,0.0,0.0,9.828775945605386,0.0,0.0,0.0 +9597,my_reservoir,2012-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9598,gw1,2012-06-14,262.48775263966394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9599,gw2,2012-06-14,262.51224736033606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9600,my_sewer,2012-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 +9601,my_land,2012-06-15,7.529647973082707,percolation,0.0,0.0,0.0010444469680501633,0.0,0.0,0.0,0.0,0.0,11.843661046906638,0.0,0.0,0.0 +9602,my_land,2012-06-15,0.4903339172623442,subsurface_runoff,0.0,0.0,5.38705931597502e-05,0.0,0.0,0.0,0.0,0.0,12.833755056013961,0.0,0.0,0.0 +9603,my_land,2012-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.83214286,0.0,0.0,0.0 +9604,my_groundwater,2012-06-15,17.556238148994794,tank,0.0,0.0,0.002852409701765551,0.0,0.0,0.0,0.0,0.0,9.84636774722933,0.0,0.0,0.0 +9605,my_reservoir,2012-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9606,gw1,2012-06-15,262.48783428873287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9607,gw2,2012-06-15,262.51216571126713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9608,my_sewer,2012-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0 +9609,my_land,2012-06-16,7.516225524284985,percolation,0.0,0.0,0.0010378019038457045,0.0,0.0,0.0,0.0,0.0,11.86924454931506,0.0,0.0,0.0 +9610,my_land,2012-06-16,0.4295924428340746,subsurface_runoff,0.0,0.0,4.697235892413878e-05,0.0,0.0,0.0,0.0,0.0,12.869529936953137,0.0,0.0,0.0 +9611,my_land,2012-06-16,1.1628836508193303e-18,surface_runoff,0.0,0.0,1.4195357065665653e-22,0.0,0.0,0.0,0.0,0.0,12.982512472937385,0.0,0.0,0.0 +9612,my_groundwater,2012-06-16,17.665356430366682,tank,0.0,0.0,0.0028664053591251387,0.0,0.0,0.0,0.0,0.0,9.863888939541493,0.0,0.0,0.0 +9613,my_reservoir,2012-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9614,gw1,2012-06-16,262.4879153934746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9615,gw2,2012-06-16,262.5120846065254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9616,my_sewer,2012-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 +9617,my_land,2012-06-17,7.584751424288592,percolation,0.0,0.0,0.001039563383395823,0.0,0.0,0.0,0.0,0.0,11.918742667445928,0.0,0.0,0.0 +9618,my_land,2012-06-17,0.40322508637319354,subsurface_runoff,0.0,0.0,4.3705102820136176e-05,0.0,0.0,0.0,0.0,0.0,12.975153193511476,0.0,0.0,0.0 +9619,my_land,2012-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.603571430000002,0.0,0.0,0.0 +9620,my_groundwater,2012-06-17,17.775596907570925,tank,0.0,0.0,0.0028804018860321694,0.0,0.0,0.0,0.0,0.0,9.881737980897917,0.0,0.0,0.0 +9621,my_reservoir,2012-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9622,gw1,2012-06-17,262.48799595751814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9623,gw2,2012-06-17,262.51200404248186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9624,my_sewer,2012-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 +9625,my_land,2012-06-18,7.4330563958028195,percolation,0.0,0.0,0.0010187721157279065,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 +9626,my_land,2012-06-18,0.32258006909855486,subsurface_runoff,0.0,0.0,3.496408225610894e-05,0.0,0.0,0.0,0.0,0.0,12.975153193511476,0.0,0.0,0.0 +9627,my_land,2012-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.603571430000002,0.0,0.0,0.0 +9628,my_groundwater,2012-06-18,17.882473706216555,tank,0.0,0.0,0.0028939401708158357,0.0,0.0,0.0,0.0,0.0,9.8989744650838,0.0,0.0,0.0 +9629,my_reservoir,2012-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9630,gw1,2012-06-18,262.488075984468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9631,gw2,2012-06-18,262.511924015532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9632,my_sewer,2012-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0 +9633,my_land,2012-06-19,7.284395267886763,percolation,0.0,0.0,0.0009983966734133484,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 +9634,my_land,2012-06-19,0.2580640552788439,subsurface_runoff,0.0,0.0,2.797126580488715e-05,0.0,0.0,0.0,0.0,0.0,12.975153193511474,0.0,0.0,0.0 +9635,my_land,2012-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.603571430000002,0.0,0.0,0.0 +9636,my_groundwater,2012-06-19,17.98605699704728,tank,0.0,0.0,0.0029070298240975677,0.0,0.0,0.0,0.0,0.0,9.91562682900067,0.0,0.0,0.0 +9637,my_reservoir,2012-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9638,gw1,2012-06-19,262.4881554779049,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9639,gw2,2012-06-19,262.5118445220951,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9640,my_sewer,2012-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.345833330000003,0.0,0.0,0.0 +9641,my_land,2012-06-20,7.655824000457448,percolation,0.0,0.0,0.0010305342818346058,0.0,0.0,0.0,0.0,0.0,12.09982316852747,0.0,0.0,0.0 +9642,my_land,2012-06-20,0.34716325454373365,subsurface_runoff,0.0,0.0,3.655539138935856e-05,0.0,0.0,0.0,0.0,0.0,13.633576576597351,0.0,0.0,0.0 +9643,my_land,2012-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.345833330000001,0.0,0.0,0.0 +9644,my_groundwater,2012-06-20,18.09694255742112,tank,0.0,0.0,0.002920740983131814,0.0,0.0,0.0,0.0,0.0,9.934437107788563,0.0,0.0,0.0 +9645,my_reservoir,2012-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9646,gw1,2012-06-20,262.48823444138554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9647,gw2,2012-06-20,262.51176555861446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9648,my_sewer,2012-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 +9649,my_land,2012-06-21,7.975307379736935,percolation,0.0,0.0,0.0010558483385649223,0.0,0.0,0.0,0.0,0.0,12.248855671790007,0.0,0.0,0.0 +9650,my_land,2012-06-21,0.4063292048019626,subsurface_runoff,0.0,0.0,4.17408416467273e-05,0.0,0.0,0.0,0.0,0.0,13.944124258700176,0.0,0.0,0.0 +9651,my_land,2012-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.31666667,0.0,0.0,0.0 +9652,my_groundwater,2012-06-21,18.214054672686498,tank,0.0,0.0,0.0029349331861376273,0.0,0.0,0.0,0.0,0.0,9.955067121802935,0.0,0.0,0.0 +9653,my_reservoir,2012-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9654,gw1,2012-06-21,262.48831287844297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9655,gw2,2012-06-21,262.51168712155703,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9656,my_sewer,2012-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 +9657,my_land,2012-06-22,7.892281344615443,percolation,0.0,0.0,0.0010422000135270953,0.0,0.0,0.0,0.0,0.0,12.271304793683495,0.0,0.0,0.0 +9658,my_land,2012-06-22,0.34587427880027677,subsurface_runoff,0.0,0.0,3.542495678227199e-05,0.0,0.0,0.0,0.0,0.0,13.981509911521737,0.0,0.0,0.0 +9659,my_land,2012-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.2875,0.0,0.0,0.0 +9660,my_groundwater,2012-06-22,18.32918383480588,tank,0.0,0.0,0.0029488120677333704,0.0,0.0,0.0,0.0,0.0,9.97537008263105,0.0,0.0,0.0 +9661,my_reservoir,2012-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9662,gw1,2012-06-22,262.4883907925867,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9663,gw2,2012-06-22,262.5116092074133,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9664,my_sewer,2012-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 +9665,my_land,2012-06-23,8.565519084705153,percolation,0.0,0.0,0.0010967730010207715,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 +9666,my_land,2012-06-23,0.5028445569128793,subsurface_runoff,0.0,0.0,4.8861594749414315e-05,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 +9667,my_land,2012-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25833333,0.0,0.0,0.0 +9668,my_groundwater,2012-06-23,18.457730370871793,tank,0.0,0.0,0.0029637672022276742,0.0,0.0,0.0,0.0,0.0,9.999186604730353,0.0,0.0,0.0 +9669,my_reservoir,2012-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9670,gw1,2012-06-23,262.4884681873028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9671,gw2,2012-06-23,262.5115318126972,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9672,my_sewer,2012-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 +9673,my_land,2012-06-24,8.39420870301105,percolation,0.0,0.0,0.001074837541000356,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 +9674,my_land,2012-06-24,0.4022756455303035,subsurface_runoff,0.0,0.0,3.908927579953145e-05,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 +9675,my_land,2012-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.22916667,0.0,0.0,0.0 +9676,my_groundwater,2012-06-24,18.58246815068448,tank,0.0,0.0,0.002978238405592469,0.0,0.0,0.0,0.0,0.0,10.022151107804277,0.0,0.0,0.0 +9677,my_reservoir,2012-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9678,gw1,2012-06-24,262.4885450660541,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9679,gw2,2012-06-24,262.5114549339459,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9680,my_sewer,2012-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 +9681,my_land,2012-06-25,8.226324528950828,percolation,0.0,0.0,0.001053340790180349,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 +9682,my_land,2012-06-25,0.3218205164242428,subsurface_runoff,0.0,0.0,3.127142063962516e-05,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 +9683,my_land,2012-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.22916667,0.0,0.0,0.0 +9684,my_groundwater,2012-06-25,18.70347644393284,tank,0.0,0.0,0.002992235818521445,0.0,0.0,0.0,0.0,0.0,10.044305099714848,0.0,0.0,0.0 +9685,my_reservoir,2012-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9686,gw1,2012-06-25,262.4886214322804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9687,gw2,2012-06-25,262.5113785677196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9688,my_sewer,2012-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 +9689,my_land,2012-06-26,8.164036141313542,percolation,0.0,0.0,0.00104180292880691,0.0,0.0,0.0,0.0,0.0,12.521087887475797,0.0,0.0,0.0 +9690,my_land,2012-06-26,0.2852763050963276,subsurface_runoff,0.0,0.0,2.7610049281813915e-05,0.0,0.0,0.0,0.0,0.0,14.276240239296666,0.0,0.0,0.0 +9691,my_land,2012-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.171875,0.0,0.0,0.0 +9692,my_groundwater,2012-06-26,18.822914202842604,tank,0.0,0.0,0.0030059633600258533,0.0,0.0,0.0,0.0,0.0,10.06617379137224,0.0,0.0,0.0 +9693,my_reservoir,2012-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9694,gw1,2012-06-26,262.48869728939854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9695,gw2,2012-06-26,262.51130271060146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9696,my_sewer,2012-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 +9697,my_land,2012-06-27,8.000755418487271,percolation,0.0,0.0,0.0010209668702307717,0.0,0.0,0.0,0.0,0.0,12.521087887475797,0.0,0.0,0.0 +9698,my_land,2012-06-27,0.2282210440770621,subsurface_runoff,0.0,0.0,2.2088039425451133e-05,0.0,0.0,0.0,0.0,0.0,14.276240239296664,0.0,0.0,0.0 +9699,my_land,2012-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.143750000000002,0.0,0.0,0.0 +9700,my_groundwater,2012-06-27,18.938729438354702,tank,0.0,0.0,0.0030192324200554862,0.0,0.0,0.0,0.0,0.0,10.087285981026747,0.0,0.0,0.0 +9701,my_reservoir,2012-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9702,gw1,2012-06-27,262.48877264080255,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9703,gw2,2012-06-27,262.51122735919745,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9704,my_sewer,2012-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 +9705,my_land,2012-06-28,7.937510170201346,percolation,0.0,0.0,0.0010096610721326302,0.0,0.0,0.0,0.0,0.0,12.544185836885163,0.0,0.0,0.0 +9706,my_land,2012-06-28,0.20890876997833527,subsurface_runoff,0.0,0.0,2.0150306181578296e-05,0.0,0.0,0.0,0.0,0.0,14.293816978280756,0.0,0.0,0.0 +9707,my_land,2012-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.115625,0.0,0.0,0.0 +9708,my_groundwater,2012-06-28,19.05296764322363,tank,0.0,0.0,0.003032238153688047,0.0,0.0,0.0,0.0,0.0,10.108122537335351,0.0,0.0,0.0 +9709,my_reservoir,2012-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9710,gw1,2012-06-28,262.4888474898639,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9711,gw2,2012-06-28,262.5111525101361,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9712,my_sewer,2012-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0 +9713,my_land,2012-06-29,7.95366492585923,percolation,0.0,0.0,0.0010058139184591025,0.0,0.0,0.0,0.0,0.0,12.58496767464177,0.0,0.0,0.0 +9714,my_land,2012-06-29,0.21472020212196377,subsurface_runoff,0.0,0.0,2.0568154542303437e-05,0.0,0.0,0.0,0.0,0.0,14.317066230777376,0.0,0.0,0.0 +9715,my_land,2012-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0875,0.0,0.0,0.0 +9716,my_groundwater,2012-06-29,19.167249117249135,tank,0.0,0.0,0.0030451330559296014,0.0,0.0,0.0,0.0,0.0,10.12904550006292,0.0,0.0,0.0 +9717,my_reservoir,2012-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9718,gw1,2012-06-29,262.48892183993144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9719,gw2,2012-06-29,262.51107816006856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9720,my_sewer,2012-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 +9721,my_land,2012-06-30,8.04957715198166,percolation,0.0,0.0,0.0010091184887588028,0.0,0.0,0.0,0.0,0.0,12.641892806669919,0.0,0.0,0.0 +9722,my_land,2012-06-30,0.24115997792603772,subsurface_runoff,0.0,0.0,2.2827543679797163e-05,0.0,0.0,0.0,0.0,0.0,14.335755022478725,0.0,0.0,0.0 +9723,my_land,2012-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 +9724,my_groundwater,2012-06-30,19.283197386478495,tank,0.0,0.0,0.0030580629925252246,0.0,0.0,0.0,0.0,0.0,10.15039938726245,0.0,0.0,0.0 +9725,my_reservoir,2012-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9726,gw1,2012-06-30,262.4889956943319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9727,gw2,2012-06-30,262.5110043056681,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9728,my_sewer,2012-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0 +9729,my_land,2012-07-01,8.009196898433038,percolation,0.0,0.0,0.0010000056930233219,0.0,0.0,0.0,0.0,0.0,12.667579012983037,0.0,0.0,0.0 +9730,my_land,2012-07-01,0.22574738084178572,subsurface_runoff,0.0,0.0,2.1274163934230984e-05,0.0,0.0,0.0,0.0,0.0,14.33747505703958,0.0,0.0,0.0 +9731,my_land,2012-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03125,0.0,0.0,0.0 +9732,my_groundwater,2012-07-01,19.398033758444686,tank,0.0,0.0,0.0030707750937947437,0.0,0.0,0.0,0.0,0.0,10.17155678702088,0.0,0.0,0.0 +9733,my_reservoir,2012-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9734,gw1,2012-07-01,262.48906905636966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9735,gw2,2012-07-01,262.51093094363034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9736,my_sewer,2012-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0 +9737,my_land,2012-07-02,8.102286428155915,percolation,0.0,0.0,0.001002853966540016,0.0,0.0,0.0,0.0,0.0,12.719647878296659,0.0,0.0,0.0 +9738,my_land,2012-07-02,0.24951585506568433,subsurface_runoff,0.0,0.0,2.3236579413278806e-05,0.0,0.0,0.0,0.0,0.0,14.336315258886348,0.0,0.0,0.0 +9739,my_land,2012-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.003125000000002,0.0,0.0,0.0 +9740,my_groundwater,2012-07-02,19.514478076336033,tank,0.0,0.0,0.0030835133975219645,0.0,0.0,0.0,0.0,0.0,10.193093649033024,0.0,0.0,0.0 +9741,my_reservoir,2012-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9742,gw1,2012-07-02,262.4891419293272,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9743,gw2,2012-07-02,262.5108580706728,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9744,my_sewer,2012-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 +9745,my_land,2012-07-03,8.368447154799812,percolation,0.0,0.0,0.00102005818450162,0.0,0.0,0.0,0.0,0.0,12.801677021060193,0.0,0.0,0.0 +9746,my_land,2012-07-03,0.31613144737418414,subsurface_runoff,0.0,0.0,2.872839204556306e-05,0.0,0.0,0.0,0.0,0.0,14.33131358337954,0.0,0.0,0.0 +9747,my_land,2012-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 +9748,my_groundwater,2012-07-03,19.6360495553679,tank,0.0,0.0,0.0030965700842126567,0.0,0.0,0.0,0.0,0.0,10.2157250950895,0.0,0.0,0.0 +9749,my_reservoir,2012-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9750,gw1,2012-07-03,262.48921431646505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9751,gw2,2012-07-03,262.51078568353495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9752,my_sewer,2012-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 +9753,my_land,2012-07-04,8.363733531992429,percolation,0.0,0.0,0.0010137544554292648,0.0,0.0,0.0,0.0,0.0,12.830458664073673,0.0,0.0,0.0 +9754,my_land,2012-07-04,0.29716510899828974,subsurface_runoff,0.0,0.0,2.6818750267110865e-05,0.0,0.0,0.0,0.0,0.0,14.323913467039946,0.0,0.0,0.0 +9755,my_land,2012-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16785714,0.0,0.0,0.0 +9756,my_groundwater,2012-07-04,19.75722114980933,tank,0.0,0.0,0.0031094658032733637,0.0,0.0,0.0,0.0,0.0,10.238258073136075,0.0,0.0,0.0 +9757,my_reservoir,2012-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9758,gw1,2012-07-04,262.4892862210219,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9759,gw2,2012-07-04,262.5107137789781,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9760,my_sewer,2012-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 +9761,my_land,2012-07-05,8.26202077781826,percolation,0.0,0.0,0.0009991978246778723,0.0,0.0,0.0,0.0,0.0,12.843008892361265,0.0,0.0,0.0 +9762,my_land,2012-07-05,0.2555720644682045,subsurface_runoff,0.0,0.0,2.3011043304081302e-05,0.0,0.0,0.0,0.0,0.0,14.330063722269998,0.0,0.0,0.0 +9763,my_land,2012-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.36071429,0.0,0.0,0.0 +9764,my_groundwater,2012-07-05,19.876019234197532,tank,0.0,0.0,0.003122032951624694,0.0,0.0,0.0,0.0,0.0,10.26029950896935,0.0,0.0,0.0 +9765,my_reservoir,2012-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9766,gw1,2012-07-05,262.4893576462151,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9767,gw2,2012-07-05,262.5106423537849,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9768,my_sewer,2012-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0 +9769,my_land,2012-07-06,8.78582587458955,percolation,0.0,0.0,0.0010355036471670525,0.0,0.0,0.0,0.0,0.0,12.984016704601535,0.0,0.0,0.0 +9770,my_land,2012-07-06,0.3919530290786875,subsurface_runoff,0.0,0.0,3.372578130523444e-05,0.0,0.0,0.0,0.0,0.0,14.478784602519319,0.0,0.0,0.0 +9771,my_land,2012-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.55357143,0.0,0.0,0.0 +9772,my_groundwater,2012-07-06,20.00518349855904,tank,0.0,0.0,0.003135307764920104,0.0,0.0,0.0,0.0,0.0,10.284650626086568,0.0,0.0,0.0 +9773,my_reservoir,2012-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9774,gw1,2012-07-06,262.4894285952404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9775,gw2,2012-07-06,262.5105714047596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9776,my_sewer,2012-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +9777,my_land,2012-07-07,8.986009752111995,percolation,0.0,0.0,0.0010447881056305478,0.0,0.0,0.0,0.0,0.0,13.058980444739438,0.0,0.0,0.0 +9778,my_land,2012-07-07,0.4158482450355314,subsurface_runoff,0.0,0.0,3.514240229774849e-05,0.0,0.0,0.0,0.0,0.0,14.551901971810251,0.0,0.0,0.0 +9779,my_land,2012-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.74642857,0.0,0.0,0.0 +9780,my_groundwater,2012-07-07,20.13810002405207,tank,0.0,0.0,0.0031487383962295686,0.0,0.0,0.0,0.0,0.0,10.309851947076636,0.0,0.0,0.0 +9781,my_reservoir,2012-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9782,gw1,2012-07-07,262.4894990712721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9783,gw2,2012-07-07,262.5105009287279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9784,my_sewer,2012-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +9785,my_land,2012-07-08,8.90737023821775,percolation,0.0,0.0,0.0010319896315810987,0.0,0.0,0.0,0.0,0.0,13.07999593597676,0.0,0.0,0.0 +9786,my_land,2012-07-08,0.36018354327958024,subsurface_runoff,0.0,0.0,3.0317265528855103e-05,0.0,0.0,0.0,0.0,0.0,14.579315989184732,0.0,0.0,0.0 +9787,my_land,2012-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.93928571,0.0,0.0,0.0 +9788,my_groundwater,2012-07-08,20.2690833824128,tank,0.0,0.0,0.003161874910596181,0.0,0.0,0.0,0.0,0.0,10.334633844962976,0.0,0.0,0.0 +9789,my_reservoir,2012-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9790,gw1,2012-07-08,262.4895690774636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9791,gw2,2012-07-08,262.5104309225364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9792,my_sewer,2012-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 +9793,my_land,2012-07-09,8.729222833453395,percolation,0.0,0.0,0.0010113498389494767,0.0,0.0,0.0,0.0,0.0,13.07999593597676,0.0,0.0,0.0 +9794,my_land,2012-07-09,0.2881468346236642,subsurface_runoff,0.0,0.0,2.425381242308408e-05,0.0,0.0,0.0,0.0,0.0,14.579315989184732,0.0,0.0,0.0 +9795,my_land,2012-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.13214286,0.0,0.0,0.0 +9796,my_groundwater,2012-07-09,20.396112710209213,tank,0.0,0.0,0.0031745584164697338,0.0,0.0,0.0,0.0,0.0,10.358552933896977,0.0,0.0,0.0 +9797,my_reservoir,2012-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9798,gw1,2012-07-09,262.4896386169472,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9799,gw2,2012-07-09,262.5103613830528,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9800,my_sewer,2012-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0 +9801,my_land,2012-07-10,8.68930890045207,percolation,0.0,0.0,0.0010020208104351118,0.0,0.0,0.0,0.0,0.0,13.113497592849635,0.0,0.0,0.0 +9802,my_land,2012-07-10,0.26716250815273873,subsurface_runoff,0.0,0.0,2.2368483479861743e-05,0.0,0.0,0.0,0.0,0.0,14.670159348550689,0.0,0.0,0.0 +9803,my_land,2012-07-10,1.7509144622347636e-18,surface_runoff,0.0,0.0,1.0686733778288352e-22,0.0,0.0,0.0,0.0,0.0,14.8789451052896,0.0,0.0,0.0 +9804,my_groundwater,2012-07-10,20.522011931050038,tank,0.0,0.0,0.003187020301212417,0.0,0.0,0.0,0.0,0.0,10.382299182173949,0.0,0.0,0.0 +9805,my_reservoir,2012-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9806,gw1,2012-07-10,262.48970769283426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9807,gw2,2012-07-10,262.51029230716574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9808,my_sewer,2012-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0 +9809,my_land,2012-07-11,8.863092334852968,percolation,0.0,0.0,0.0010094276064963506,0.0,0.0,0.0,0.0,0.0,13.204115407814035,0.0,0.0,0.0 +9810,my_land,2012-07-11,0.3083067718038066,subsurface_runoff,0.0,0.0,2.5363415972989006e-05,0.0,0.0,0.0,0.0,0.0,14.901491566359987,0.0,0.0,0.0 +9811,my_land,2012-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.195833329999996,0.0,0.0,0.0 +9812,my_groundwater,2012-07-11,20.651134138039062,tank,0.0,0.0,0.003199601812448776,0.0,0.0,0.0,0.0,0.0,10.40695315521937,0.0,0.0,0.0 +9813,my_reservoir,2012-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9814,gw1,2012-07-11,262.48977630821537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9815,gw2,2012-07-11,262.51022369178463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9816,my_sewer,2012-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0 +9817,my_land,2012-07-12,9.633842455895813,percolation,0.0,0.0,0.0010580108612908048,0.0,0.0,0.0,0.0,0.0,13.419285263648918,0.0,0.0,0.0 +9818,my_land,2012-07-12,0.5046078576443799,subsurface_runoff,0.0,0.0,3.9004149628562946e-05,0.0,0.0,0.0,0.0,0.0,15.151583837701924,0.0,0.0,0.0 +9819,my_land,2012-07-12,9.71044150303349e-18,surface_runoff,0.0,0.0,5.926783143941339e-22,0.0,0.0,0.0,0.0,0.0,15.471730623216871,0.0,0.0,0.0 +9820,my_groundwater,2012-07-12,20.795623809831845,tank,0.0,0.0,0.00321314088616536,0.0,0.0,0.0,0.0,0.0,10.435361587165387,0.0,0.0,0.0 +9821,my_reservoir,2012-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9822,gw1,2012-07-12,262.4898444661606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9823,gw2,2012-07-12,262.5101555338394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9824,my_sewer,2012-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0 +9825,my_land,2012-07-13,9.800751183192137,percolation,0.0,0.0,0.0010624339968961078,0.0,0.0,0.0,0.0,0.0,13.486217189464094,0.0,0.0,0.0 +9826,my_land,2012-07-13,0.5015327014663173,subsurface_runoff,0.0,0.0,3.8164776255535846e-05,0.0,0.0,0.0,0.0,0.0,15.169528053140553,0.0,0.0,0.0 +9827,my_land,2012-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.9375,0.0,0.0,0.0 +9828,my_groundwater,2012-07-13,20.94315004225082,tank,0.0,0.0,0.003226736154601046,0.0,0.0,0.0,0.0,0.0,10.464425617406409,0.0,0.0,0.0 +9829,my_reservoir,2012-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9830,gw1,2012-07-13,262.48991216971956,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9831,gw2,2012-07-13,262.51008783028044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9832,my_sewer,2012-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0 +9833,my_land,2012-07-14,9.813117340321494,percolation,0.0,0.0,0.0010559334821339062,0.0,0.0,0.0,0.0,0.0,13.52087459280988,0.0,0.0,0.0 +9834,my_land,2012-07-14,0.4579285232936523,subsurface_runoff,0.0,0.0,3.45449271746928e-05,0.0,0.0,0.0,0.0,0.0,15.163185893730756,0.0,0.0,0.0 +9835,my_land,2012-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.808333329999998,0.0,0.0,0.0 +9836,my_groundwater,2012-07-14,21.090559198716026,tank,0.0,0.0,0.0032401651029579834,0.0,0.0,0.0,0.0,0.0,10.493375904272261,0.0,0.0,0.0 +9837,my_reservoir,2012-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9838,gw1,2012-07-14,262.4899794219214,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9839,gw2,2012-07-14,262.5100205780786,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9840,my_sewer,2012-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +9841,my_land,2012-07-15,9.742801662348878,percolation,0.0,0.0,0.0010437511521312831,0.0,0.0,0.0,0.0,0.0,13.540000029188292,0.0,0.0,0.0 +9842,my_land,2012-07-15,0.4006140210386809,subsurface_runoff,0.0,0.0,3.0067598784667156e-05,0.0,0.0,0.0,0.0,0.0,15.14925604942857,0.0,0.0,0.0 +9843,my_land,2012-07-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.67916667,0.0,0.0,0.0 +9844,my_groundwater,2012-07-15,21.23616840598848,tank,0.0,0.0,0.0032533124815118325,0.0,0.0,0.0,0.0,0.0,10.521829909170465,0.0,0.0,0.0 +9845,my_reservoir,2012-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9846,gw1,2012-07-15,262.4900462257753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9847,gw2,2012-07-15,262.5099537742247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9848,my_sewer,2012-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +9849,my_land,2012-07-16,9.664250008706945,percolation,0.0,0.0,0.0010311538681171632,0.0,0.0,0.0,0.0,0.0,13.55622558573622,0.0,0.0,0.0 +9850,my_land,2012-07-16,0.35213866706361,subsurface_runoff,0.0,0.0,2.630652502188493e-05,0.0,0.0,0.0,0.0,0.0,15.125799235557531,0.0,0.0,0.0 +9851,my_land,2012-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.55,0.0,0.0,0.0 +9852,my_groundwater,2012-07-16,21.3798145030079,tank,0.0,0.0,0.0032661705469090095,0.0,0.0,0.0,0.0,0.0,10.549752342251546,0.0,0.0,0.0 +9853,my_reservoir,2012-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9854,gw1,2012-07-16,262.49011258427015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9855,gw2,2012-07-16,262.50988741572985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9856,my_sewer,2012-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 +9857,my_land,2012-07-17,9.560812750487118,percolation,0.0,0.0,0.0010169607023868422,0.0,0.0,0.0,0.0,0.0,13.567699106201786,0.0,0.0,0.0 +9858,my_land,2012-07-17,0.3061592988085241,subsurface_runoff,0.0,0.0,2.2794855835745292e-05,0.0,0.0,0.0,0.0,0.0,15.097956838221593,0.0,0.0,0.0 +9859,my_land,2012-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.8375,0.0,0.0,0.0 +9860,my_groundwater,2012-07-17,21.52099579774244,tank,0.0,0.0,0.003278707534840326,0.0,0.0,0.0,0.0,0.0,10.57704594390817,0.0,0.0,0.0 +9861,my_reservoir,2012-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9862,gw1,2012-07-17,262.490178500375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9863,gw2,2012-07-17,262.509821499625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9864,my_sewer,2012-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9865,my_land,2012-07-18,9.541681966545823,percolation,0.0,0.0,0.001008884051061292,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9866,my_land,2012-07-18,0.29175341756884593,subsurface_runoff,0.0,0.0,2.1572636429735457e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +9867,my_land,2012-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9868,my_groundwater,2012-07-18,21.66143469113848,tank,0.0,0.0,0.003291048762756973,0.0,0.0,0.0,0.0,0.0,10.604093653299463,0.0,0.0,0.0 +9869,my_reservoir,2012-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9870,gw1,2012-07-18,262.4902439770392,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9871,gw2,2012-07-18,262.5097560229608,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9872,my_sewer,2012-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9873,my_land,2012-07-19,9.350848327214907,percolation,0.0,0.0,0.000988706370040066,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9874,my_land,2012-07-19,0.23340273405507675,subsurface_runoff,0.0,0.0,1.7258109143788364e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +9875,my_land,2012-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9876,my_groundwater,2012-07-19,21.79763765964322,tank,0.0,0.0,0.003302948377668753,0.0,0.0,0.0,0.0,0.0,10.630198575622344,0.0,0.0,0.0 +9877,my_reservoir,2012-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9878,gw1,2012-07-19,262.49030901719226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9879,gw2,2012-07-19,262.50969098280774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9880,my_sewer,2012-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9881,my_land,2012-07-20,9.163831360670608,percolation,0.0,0.0,0.0009689322426392647,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9882,my_land,2012-07-20,0.1867221872440614,subsurface_runoff,0.0,0.0,1.3806487315030691e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +9883,my_land,2012-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9884,my_groundwater,2012-07-20,21.92969298962205,tank,0.0,0.0,0.0033144156988068807,0.0,0.0,0.0,0.0,0.0,10.655405279026905,0.0,0.0,0.0 +9885,my_reservoir,2012-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9886,gw1,2012-07-20,262.4903736237443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9887,gw2,2012-07-20,262.5096263762557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9888,my_sewer,2012-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9889,my_land,2012-07-21,8.980554733457195,percolation,0.0,0.0,0.0009495535977864794,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9890,my_land,2012-07-21,0.14937774979524912,subsurface_runoff,0.0,0.0,1.1045189852024554e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +9891,my_land,2012-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9892,my_groundwater,2012-07-21,22.057687192793374,tank,0.0,0.0,0.003325459857800517,0.0,0.0,0.0,0.0,0.0,10.679755588595848,0.0,0.0,0.0 +9893,my_reservoir,2012-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9894,gw1,2012-07-21,262.490437799586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9895,gw2,2012-07-21,262.509562200414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9896,my_sewer,2012-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9897,my_land,2012-07-22,8.800943638788052,percolation,0.0,0.0,0.0009305625258307498,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9898,my_land,2012-07-22,0.11950219983619931,subsurface_runoff,0.0,0.0,8.836151881619643e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 +9899,my_land,2012-07-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9900,my_groundwater,2012-07-22,22.18170504174386,tank,0.0,0.0,0.0033360898024318558,0.0,0.0,0.0,0.0,0.0,10.703288794384756,0.0,0.0,0.0 +9901,my_reservoir,2012-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9902,gw1,2012-07-22,262.4905015475888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9903,gw2,2012-07-22,262.5094984524112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9904,my_sewer,2012-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9905,my_land,2012-07-23,8.62492476601229,percolation,0.0,0.0,0.0009119512753141348,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9906,my_land,2012-07-23,0.09560175986895944,subsurface_runoff,0.0,0.0,7.068921505295714e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 +9907,my_land,2012-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9908,my_groundwater,2012-07-23,22.30182960473332,tank,0.0,0.0,0.0033463143003160992,0.0,0.0,0.0,0.0,0.0,10.726041840805832,0.0,0.0,0.0 +9909,my_reservoir,2012-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9910,gw1,2012-07-23,262.4905648706049,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9911,gw2,2012-07-23,262.5094351293951,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9912,my_sewer,2012-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9913,my_land,2012-07-24,8.452426270692044,percolation,0.0,0.0,0.0008937122498078521,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9914,my_land,2012-07-24,0.07648140789516755,subsurface_runoff,0.0,0.0,5.655137204236571e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 +9915,my_land,2012-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9916,my_groundwater,2012-07-24,22.41814227980343,tank,0.0,0.0,0.0033561419425078257,0.0,0.0,0.0,0.0,0.0,10.748049499278256,0.0,0.0,0.0 +9917,my_reservoir,2012-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9918,gw1,2012-07-24,262.49062777146753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9919,gw2,2012-07-24,262.50937222853247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9920,my_sewer,2012-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9921,my_land,2012-07-25,8.283377745278203,percolation,0.0,0.0,0.0008758380048116951,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9922,my_land,2012-07-25,0.06118512631613404,subsurface_runoff,0.0,0.0,4.524109763389257e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 +9923,my_land,2012-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9924,my_groundwater,2012-07-25,22.53072282820423,tank,0.0,0.0,0.003365581147035223,0.0,0.0,0.0,0.0,0.0,10.769344525845039,0.0,0.0,0.0 +9925,my_reservoir,2012-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9926,gw1,2012-07-25,262.4906902529911,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9927,gw2,2012-07-25,262.5093097470089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9928,my_sewer,2012-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9929,my_land,2012-07-26,8.11771019037264,percolation,0.0,0.0,0.0008583212447154612,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9930,my_land,2012-07-26,0.048948101052907235,subsurface_runoff,0.0,0.0,3.6192878107114055e-06,0.0,0.0,0.0,0.0,0.0,15.0806768827329,0.0,0.0,0.0 +9931,my_land,2012-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9932,my_groundwater,2012-07-26,22.63964940715202,tank,0.0,0.0,0.003374640162363628,0.0,0.0,0.0,0.0,0.0,10.789957805261752,0.0,0.0,0.0 +9933,my_reservoir,2012-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9934,gw1,2012-07-26,262.49075231797116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9935,gw2,2012-07-26,262.50924768202884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9936,my_sewer,2012-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9937,my_land,2012-07-27,7.955355986565187,percolation,0.0,0.0,0.000841154819821152,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9938,my_land,2012-07-27,0.03915848084232579,subsurface_runoff,0.0,0.0,2.8954302485691243e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +9939,my_land,2012-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9940,my_groundwater,2012-07-27,22.744998601932075,tank,0.0,0.0,0.0033833270707897926,0.0,0.0,0.0,0.0,0.0,10.809918482892604,0.0,0.0,0.0 +9941,my_reservoir,2012-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9942,gw1,2012-07-27,262.49081396918467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9943,gw2,2012-07-27,262.50918603081533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9944,my_sewer,2012-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 +9945,my_land,2012-07-28,7.796248866833883,percolation,0.0,0.0,0.000824331723424729,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9946,my_land,2012-07-28,0.03132678467386063,subsurface_runoff,0.0,0.0,2.3163441988552993e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +9947,my_land,2012-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9948,my_groundwater,2012-07-28,22.84684545735922,tank,0.0,0.0,0.00339164979176825,0.0,0.0,0.0,0.0,0.0,10.829254085600855,0.0,0.0,0.0 +9949,my_reservoir,2012-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9950,gw1,2012-07-28,262.4908752093901,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9951,gw2,2012-07-28,262.5091247906099,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9952,my_sewer,2012-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0 +9953,my_land,2012-07-29,7.640323889497205,percolation,0.0,0.0,0.0008078450889562344,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9954,my_land,2012-07-29,0.025061427739088503,subsurface_runoff,0.0,0.0,1.8530753590842395e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +9955,my_land,2012-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9956,my_groundwater,2012-07-29,22.94526350860916,tank,0.0,0.0,0.003399616085171153,0.0,0.0,0.0,0.0,0.0,10.847990632690212,0.0,0.0,0.0 +9957,my_reservoir,2012-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9958,gw1,2012-07-29,262.4909360413275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9959,gw2,2012-07-29,262.5090639586725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9960,my_sewer,2012-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 +9961,my_land,2012-07-30,7.487517411707261,percolation,0.0,0.0,0.0007916881871771097,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 +9962,my_land,2012-07-30,0.020049142191270804,subsurface_runoff,0.0,0.0,1.4824602872673916e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 +9963,my_land,2012-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 +9964,my_groundwater,2012-07-30,23.040324811433106,tank,0.0,0.0,0.003407233554482902,0.0,0.0,0.0,0.0,0.0,10.86615273783956,0.0,0.0,0.0 +9965,my_reservoir,2012-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9966,gw1,2012-07-30,262.4909964677186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9967,gw2,2012-07-30,262.5090035322814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9968,my_sewer,2012-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 +9969,my_land,2012-07-31,7.379000460246312,percolation,0.0,0.0,0.0007792108212294476,0.0,0.0,0.0,0.0,0.0,13.601373646119358,0.0,0.0,0.0 +9970,my_land,2012-07-31,0.027259285664090506,subsurface_runoff,0.0,0.0,2.099273752502386e-06,0.0,0.0,0.0,0.0,0.0,15.059081894065006,0.0,0.0,0.0 +9971,my_land,2012-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.475,0.0,0.0,0.0 +9972,my_groundwater,2012-07-31,23.13293936591668,tank,0.0,0.0,0.0034145779766002944,0.0,0.0,0.0,0.0,0.0,10.883914086915428,0.0,0.0,0.0 +9973,my_reservoir,2012-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9974,gw1,2012-07-31,262.49105649126716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9975,gw2,2012-07-31,262.50894350873284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9976,my_sewer,2012-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 +9977,my_land,2012-08-01,7.264777628188283,percolation,0.0,0.0,0.0007663605977488088,0.0,0.0,0.0,0.0,0.0,13.606581847908508,0.0,0.0,0.0 +9978,my_land,2012-08-01,0.030884211428387393,subsurface_runoff,0.0,0.0,2.4233626602196336e-06,0.0,0.0,0.0,0.0,0.0,14.964027672675316,0.0,0.0,0.0 +9979,my_land,2012-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.496428569999999,0.0,0.0,0.0 +9980,my_groundwater,2012-08-01,23.222997133504293,tank,0.0,0.0,0.0034216424438272513,0.0,0.0,0.0,0.0,0.0,10.90125274689521,0.0,0.0,0.0 +9981,my_reservoir,2012-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9982,gw1,2012-08-01,262.4911161146587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9983,gw2,2012-08-01,262.5088838853413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9984,my_sewer,2012-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.517857139999998,0.0,0.0,0.0 +9985,my_land,2012-08-02,7.392463542610206,percolation,0.0,0.0,0.0007722478678740902,0.0,0.0,0.0,0.0,0.0,13.649247178604615,0.0,0.0,0.0 +9986,my_land,2012-08-02,0.0989880404313326,subsurface_runoff,0.0,0.0,7.711338313279807e-06,0.0,0.0,0.0,0.0,0.0,14.812409958919783,0.0,0.0,0.0 +9987,my_land,2012-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 +9988,my_groundwater,2012-08-02,23.31542907707367,tank,0.0,0.0,0.0034288090978851203,0.0,0.0,0.0,0.0,0.0,10.918989676886929,0.0,0.0,0.0 +9989,my_reservoir,2012-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9990,gw1,2012-08-02,262.49117534056097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9991,gw2,2012-08-02,262.50882465943903,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9992,my_sewer,2012-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 +9993,my_land,2012-08-03,7.308266143573675,percolation,0.0,0.0,0.000761788099683716,0.0,0.0,0.0,0.0,0.0,13.658694192430548,0.0,0.0,0.0 +9994,my_land,2012-08-03,0.09651066957382091,subsurface_runoff,0.0,0.0,7.525584709700776e-06,0.0,0.0,0.0,0.0,0.0,14.798323336536802,0.0,0.0,0.0 +9995,my_land,2012-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.53928571,0.0,0.0,0.0 +9996,my_groundwater,2012-08-03,23.405915922303738,tank,0.0,0.0,0.0034357449043125403,0.0,0.0,0.0,0.0,0.0,10.936404106881374,0.0,0.0,0.0 +9997,my_reservoir,2012-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9998,gw1,2012-08-03,262.4912341716239,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9999,gw2,2012-08-03,262.5087658283761,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10000,my_sewer,2012-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 +10001,my_land,2012-08-04,7.438785205645059,percolation,0.0,0.0,0.0007678824530348217,0.0,0.0,0.0,0.0,0.0,13.69985899499671,0.0,0.0,0.0 +10002,my_land,2012-08-04,0.15249680367071866,subsurface_runoff,0.0,0.0,1.1824580786748361e-05,0.0,0.0,0.0,0.0,0.0,14.782083068453382,0.0,0.0,0.0 +10003,my_land,2012-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 +10004,my_groundwater,2012-08-04,23.498833545612897,tank,0.0,0.0,0.003442787434845682,0.0,0.0,0.0,0.0,0.0,10.954212507516631,0.0,0.0,0.0 +10005,my_reservoir,2012-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10006,gw1,2012-08-04,262.4912926104797,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10007,gw2,2012-08-04,262.5087073895203,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10008,my_sewer,2012-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.582142859999998,0.0,0.0,0.0 +10009,my_land,2012-08-05,7.717077731942864,percolation,0.0,0.0,0.0007844232197457446,0.0,0.0,0.0,0.0,0.0,13.760635458556788,0.0,0.0,0.0 +10010,my_land,2012-08-05,0.23820648522520252,subsurface_runoff,0.0,0.0,1.813950565568966e-05,0.0,0.0,0.0,0.0,0.0,14.789888762601679,0.0,0.0,0.0 +10011,my_land,2012-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.58214286,0.0,0.0,0.0 +10012,my_groundwater,2012-08-05,23.5971841155777,tank,0.0,0.0,0.003450149081803392,0.0,0.0,0.0,0.0,0.0,10.972896197023841,0.0,0.0,0.0 +10013,my_reservoir,2012-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10014,gw1,2012-08-05,262.4913506597432,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10015,gw2,2012-08-05,262.5086493402568,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10016,my_sewer,2012-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0 +10017,my_land,2012-08-06,7.734668569046623,percolation,0.0,0.0,0.0007815334177894195,0.0,0.0,0.0,0.0,0.0,13.783649642335789,0.0,0.0,0.0 +10018,my_land,2012-08-06,0.23734951246386707,subsurface_runoff,0.0,0.0,1.7994233759542157e-05,0.0,0.0,0.0,0.0,0.0,14.791086917158017,0.0,0.0,0.0 +10019,my_land,2012-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.60357143,0.0,0.0,0.0 +10020,my_groundwater,2012-08-06,23.69564690830149,tank,0.0,0.0,0.003457433496532454,0.0,0.0,0.0,0.0,0.0,10.9915734376992,0.0,0.0,0.0 +10021,my_reservoir,2012-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10022,gw1,2012-08-06,262.4914083220116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10023,gw2,2012-08-06,262.5085916779884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10024,my_sewer,2012-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10025,my_land,2012-08-07,7.719641868032565,percolation,0.0,0.0,0.0007762958421842659,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +10026,my_land,2012-08-07,0.22788414612534505,subsurface_runoff,0.0,0.0,1.722343945678603e-05,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 +10027,my_land,2012-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10028,my_groundwater,2012-08-07,23.793557643344258,tank,0.0,0.0,0.003464593078149874,0.0,0.0,0.0,0.0,0.0,11.010136902424243,0.0,0.0,0.0 +10029,my_reservoir,2012-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10030,gw1,2012-08-07,262.49146559986485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10031,gw2,2012-08-07,262.50853440013515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10032,my_sewer,2012-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10033,my_land,2012-08-08,7.565249030671914,percolation,0.0,0.0,0.0007607699253405805,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +10034,my_land,2012-08-08,0.18230731690027605,subsurface_runoff,0.0,0.0,1.3778751565428823e-05,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 +10035,my_land,2012-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10036,my_groundwater,2012-08-08,23.888080604503145,tank,0.0,0.0,0.0034714186975060755,0.0,0.0,0.0,0.0,0.0,11.028137434025322,0.0,0.0,0.0 +10037,my_reservoir,2012-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10038,gw1,2012-08-08,262.49152249586575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10039,gw2,2012-08-08,262.50847750413425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10040,my_sewer,2012-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10041,my_land,2012-08-09,7.4139440500584755,percolation,0.0,0.0,0.0007455545268337689,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +10042,my_land,2012-08-09,0.14584585352022084,subsurface_runoff,0.0,0.0,1.1023001252343059e-05,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 +10043,my_land,2012-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10044,my_groundwater,2012-08-09,23.979287121153792,tank,0.0,0.0,0.0034779175107728546,0.0,0.0,0.0,0.0,0.0,11.045597562157537,0.0,0.0,0.0 +10045,my_reservoir,2012-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10046,gw1,2012-08-09,262.49157901255995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10047,gw2,2012-08-09,262.50842098744005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10048,my_sewer,2012-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10049,my_land,2012-08-10,7.265665169057306,percolation,0.0,0.0,0.0007306434362970935,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +10050,my_land,2012-08-10,0.11667668281617667,subsurface_runoff,0.0,0.0,8.818401001874446e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 +10051,my_land,2012-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10052,my_groundwater,2012-08-10,24.067247087149575,tank,0.0,0.0,0.003484096529806256,0.0,0.0,0.0,0.0,0.0,11.062538648099945,0.0,0.0,0.0 +10053,my_reservoir,2012-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10054,gw1,2012-08-10,262.4916351524762,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10055,gw2,2012-08-10,262.5083648475238,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10056,my_sewer,2012-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 +10057,my_land,2012-08-11,7.12035186567616,percolation,0.0,0.0,0.0007160305675711516,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 +10058,my_land,2012-08-11,0.09334134625294134,subsurface_runoff,0.0,0.0,7.054720801499557e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 +10059,my_land,2012-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.48214286,0.0,0.0,0.0 +10060,my_groundwater,2012-08-11,24.152028989554395,tank,0.0,0.0,0.0034899626250358673,0.0,0.0,0.0,0.0,0.0,11.078980959621598,0.0,0.0,0.0 +10061,my_reservoir,2012-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10062,gw1,2012-08-11,262.4916909181263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10063,gw2,2012-08-11,262.5083090818737,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10064,my_sewer,2012-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 +10065,my_land,2012-08-12,7.055876391412156,percolation,0.0,0.0,0.0007078576426997847,0.0,0.0,0.0,0.0,0.0,13.821402671541934,0.0,0.0,0.0 +10066,my_land,2012-08-12,0.09587894449882055,subsurface_runoff,0.0,0.0,7.316616499718311e-06,0.0,0.0,0.0,0.0,0.0,14.959118996327847,0.0,0.0,0.0 +10067,my_land,2012-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 +10068,my_groundwater,2012-08-12,24.235286400762828,tank,0.0,0.0,0.003495647677628238,0.0,0.0,0.0,0.0,0.0,11.095234720661681,0.0,0.0,0.0 +10069,my_reservoir,2012-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10070,gw1,2012-08-12,262.4917463120055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10071,gw2,2012-08-12,262.5082536879945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10072,my_sewer,2012-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 +10073,my_land,2012-08-13,7.011831814781658,percolation,0.0,0.0,0.0007013352992331825,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 +10074,my_land,2012-08-13,0.10311756408823887,subsurface_runoff,0.0,0.0,7.930792352806893e-06,0.0,0.0,0.0,0.0,0.0,15.156118910764432,0.0,0.0,0.0 +10075,my_land,2012-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 +10076,my_groundwater,2012-08-13,24.317439046704692,tank,0.0,0.0,0.0035011857413114146,0.0,0.0,0.0,0.0,0.0,11.111391997248802,0.0,0.0,0.0 +10077,my_reservoir,2012-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10078,gw1,2012-08-13,262.4918013365921,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10079,gw2,2012-08-13,262.5081986634079,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10080,my_sewer,2012-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 +10081,my_land,2012-08-14,6.871595178486025,percolation,0.0,0.0,0.0006873085932485189,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 +10082,my_land,2012-08-14,0.08249405127059109,subsurface_runoff,0.0,0.0,6.344633882245515e-06,0.0,0.0,0.0,0.0,0.0,15.15611891076443,0.0,0.0,0.0 +10083,my_land,2012-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.125,0.0,0.0,0.0 +10084,my_groundwater,2012-08-14,24.396531493792825,tank,0.0,0.0,0.003506424416177838,0.0,0.0,0.0,0.0,0.0,11.127082151374976,0.0,0.0,0.0 +10085,my_reservoir,2012-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10086,gw1,2012-08-14,262.49185599434816,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10087,gw2,2012-08-14,262.50814400565184,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10088,my_sewer,2012-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 +10089,my_land,2012-08-15,7.220414946347113,percolation,0.0,0.0,0.0007092898903616766,0.0,0.0,0.0,0.0,0.0,14.005023368864164,0.0,0.0,0.0 +10090,my_land,2012-08-15,0.19830862099764507,subsurface_runoff,0.0,0.0,1.4797467371953734e-05,0.0,0.0,0.0,0.0,0.0,15.840880533199165,0.0,0.0,0.0 +10091,my_land,2012-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 +10092,my_groundwater,2012-08-15,24.48252718360898,tank,0.0,0.0,0.0035120974707626134,0.0,0.0,0.0,0.0,0.0,11.144360596363532,0.0,0.0,0.0 +10093,my_reservoir,2012-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10094,gw1,2012-08-15,262.4919102877192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10095,gw2,2012-08-15,262.5080897122808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10096,my_sewer,2012-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0 +10097,my_land,2012-08-16,7.260085055473977,percolation,0.0,0.0,0.0007085953959256106,0.0,0.0,0.0,0.0,0.0,14.061328539956195,0.0,0.0,0.0 +10098,my_land,2012-08-16,0.2087362595338455,subsurface_runoff,0.0,0.0,1.5509076855703794e-05,0.0,0.0,0.0,0.0,0.0,15.933225906202166,0.0,0.0,0.0 +10099,my_land,2012-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.38214286,0.0,0.0,0.0 +10100,my_groundwater,2012-08-16,24.56911545427925,tank,0.0,0.0,0.003517742204788478,0.0,0.0,0.0,0.0,0.0,11.161907507161782,0.0,0.0,0.0 +10101,my_reservoir,2012-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10102,gw1,2012-08-16,262.4919642191344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10103,gw2,2012-08-16,262.5080357808656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10104,my_sewer,2012-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10105,my_land,2012-08-17,7.28277392935675,percolation,0.0,0.0,0.000706711959899128,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 +10106,my_land,2012-08-17,0.21267351782905003,subsurface_runoff,0.0,0.0,1.5751063359945256e-05,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 +10107,my_land,2012-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.51071429,0.0,0.0,0.0 +10108,my_groundwater,2012-08-17,24.655949134919744,tank,0.0,0.0,0.003523334485603025,0.0,0.0,0.0,0.0,0.0,11.179655752319375,0.0,0.0,0.0 +10109,my_reservoir,2012-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10110,gw1,2012-08-17,262.49201779100684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10111,gw2,2012-08-17,262.50798220899316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10112,my_sewer,2012-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10113,my_land,2012-08-18,7.1371184507696155,percolation,0.0,0.0,0.0006925777207011455,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 +10114,my_land,2012-08-18,0.17013881426324,subsurface_runoff,0.0,0.0,1.2600850687956206e-05,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 +10115,my_land,2012-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.51071429,0.0,0.0,0.0 +10116,my_groundwater,2012-08-18,24.739600601973113,tank,0.0,0.0,0.003528625052989005,0.0,0.0,0.0,0.0,0.0,11.196885988723809,0.0,0.0,0.0 +10117,my_reservoir,2012-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10118,gw1,2012-08-18,262.49207100573346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10119,gw2,2012-08-18,262.50792899426654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10120,my_sewer,2012-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10121,my_land,2012-08-19,6.994376081754223,percolation,0.0,0.0,0.0006787261662871226,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 +10122,my_land,2012-08-19,0.13611105141059202,subsurface_runoff,0.0,0.0,1.0080680550364965e-05,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 +10123,my_land,2012-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.76785714,0.0,0.0,0.0 +10124,my_groundwater,2012-08-19,24.82013711356103,tank,0.0,0.0,0.0035336204158845207,0.0,0.0,0.0,0.0,0.0,11.213617985232673,0.0,0.0,0.0 +10125,my_reservoir,2012-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10126,gw1,2012-08-19,262.49212386569525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10127,gw2,2012-08-19,262.50787613430475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10128,my_sewer,2012-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10129,my_land,2012-08-20,6.8544885601191385,percolation,0.0,0.0,0.0006651516429613801,0.0,0.0,0.0,0.0,0.0,14.113548214485732,0.0,0.0,0.0 +10130,my_land,2012-08-20,0.1088888411284736,subsurface_runoff,0.0,0.0,8.064544440291972e-06,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 +10131,my_land,2012-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.76785714,0.0,0.0,0.0 +10132,my_groundwater,2012-08-20,24.897624573608127,tank,0.0,0.0,0.0035383269518622375,0.0,0.0,0.0,0.0,0.0,11.229870535404952,0.0,0.0,0.0 +10133,my_reservoir,2012-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10134,gw1,2012-08-20,262.4921763732573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10135,gw2,2012-08-20,262.5078236267427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10136,my_sewer,2012-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10137,my_land,2012-08-21,6.81787107616894,percolation,0.0,0.0,0.000659541344685186,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 +10138,my_land,2012-08-21,0.11445047079452983,subsurface_runoff,0.0,0.0,8.544896663263113e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 +10139,my_land,2012-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.025,0.0,0.0,0.0 +10140,my_groundwater,2012-08-21,24.97417288765326,tank,0.0,0.0,0.0035429075118565303,0.0,0.0,0.0,0.0,0.0,11.24611307324296,0.0,0.0,0.0 +10141,my_reservoir,2012-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10142,gw1,2012-08-21,262.4922285307689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10143,gw2,2012-08-21,262.5077714692311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10144,my_sewer,2012-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10145,my_land,2012-08-22,6.681513654645561,percolation,0.0,0.0,0.0006463505177914823,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 +10146,my_land,2012-08-22,0.09156037663562386,subsurface_runoff,0.0,0.0,6.83591733061049e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 +10147,my_land,2012-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.72857143,0.0,0.0,0.0 +10148,my_groundwater,2012-08-22,25.047753983403698,tank,0.0,0.0,0.0035472080929033587,0.0,0.0,0.0,0.0,0.0,11.261895798344716,0.0,0.0,0.0 +10149,my_reservoir,2012-08-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10150,gw1,2012-08-22,262.49228034056375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10151,gw2,2012-08-22,262.50771965943625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10152,my_sewer,2012-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 +10153,my_land,2012-08-23,6.54788338155265,percolation,0.0,0.0,0.0006334235074356527,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 +10154,my_land,2012-08-23,0.07324830130849909,subsurface_runoff,0.0,0.0,5.4687338644883914e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 +10155,my_land,2012-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.72857143,0.0,0.0,0.0 +10156,my_groundwater,2012-08-23,25.118430795855367,tank,0.0,0.0,0.0035512347655010405,0.0,0.0,0.0,0.0,0.0,11.277235594254597,0.0,0.0,0.0 +10157,my_reservoir,2012-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10158,gw1,2012-08-23,262.49233180496,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10159,gw2,2012-08-23,262.50766819504,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10160,my_sewer,2012-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 +10161,my_land,2012-08-24,6.610270767051015,percolation,0.0,0.0,0.00063576162287622,0.0,0.0,0.0,0.0,0.0,14.21892881986854,0.0,0.0,0.0 +10162,my_land,2012-08-24,0.11120953985752528,subsurface_runoff,0.0,0.0,8.458411741735014e-06,0.0,0.0,0.0,0.0,0.0,16.302493784608153,0.0,0.0,0.0 +10163,my_land,2012-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 +10164,my_groundwater,2012-08-24,25.19020094519498,tank,0.0,0.0,0.003555298968767268,0.0,0.0,0.0,0.0,0.0,11.292950139654627,0.0,0.0,0.0 +10165,my_reservoir,2012-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10166,gw1,2012-08-24,262.49238292626023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10167,gw2,2012-08-24,262.50761707373977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10168,my_sewer,2012-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +10169,my_land,2012-08-25,6.882346914175661,percolation,0.0,0.0,0.0006532434678404109,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 +10170,my_land,2012-08-25,0.1989762203120519,subsurface_runoff,0.0,0.0,1.4983621208820738e-05,0.0,0.0,0.0,0.0,0.0,16.237970634833662,0.0,0.0,0.0 +10171,my_land,2012-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +10172,my_groundwater,2012-08-25,25.267330362156283,tank,0.0,0.0,0.0035597088919406723,0.0,0.0,0.0,0.0,0.0,11.309815051431732,0.0,0.0,0.0 +10173,my_reservoir,2012-08-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10174,gw1,2012-08-25,262.49243370675185,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10175,gw2,2012-08-25,262.50756629324815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10176,my_sewer,2012-08-26,8.673617379884035e-19,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +10177,my_land,2012-08-26,6.744699975892147,percolation,0.0,0.0,0.0006401785984836027,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 +10178,my_land,2012-08-26,0.1591809762496415,subsurface_runoff,0.0,0.0,1.198689696705659e-05,0.0,0.0,0.0,0.0,0.0,16.237970634833662,0.0,0.0,0.0 +10179,my_land,2012-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 +10180,my_groundwater,2012-08-26,25.341464857188697,tank,0.0,0.0,0.0035638418268942366,0.0,0.0,0.0,0.0,0.0,11.326202938786755,0.0,0.0,0.0 +10181,my_reservoir,2012-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10182,gw1,2012-08-26,262.49248414870686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10183,gw2,2012-08-26,262.50751585129314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10184,my_sewer,2012-08-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 +10185,my_land,2012-08-27,7.16862213306228,percolation,0.0,0.0,0.0006676229471852984,0.0,0.0,0.0,0.0,0.0,14.439340603064899,0.0,0.0,0.0 +10186,my_land,2012-08-27,0.2794035991461013,subsurface_runoff,0.0,0.0,2.0541332722316772e-05,0.0,0.0,0.0,0.0,0.0,15.934212837096025,0.0,0.0,0.0 +10187,my_land,2012-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 +10188,my_groundwater,2012-08-27,25.42404385989735,tank,0.0,0.0,0.003568523118037559,0.0,0.0,0.0,0.0,0.0,11.344072184053228,0.0,0.0,0.0 +10189,my_reservoir,2012-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10190,gw1,2012-08-27,262.4925342543822,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10191,gw2,2012-08-27,262.5074657456178,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10192,my_sewer,2012-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0 +10193,my_land,2012-08-28,7.210471249741689,percolation,0.0,0.0,0.0006675542511169243,0.0,0.0,0.0,0.0,0.0,14.464068389091073,0.0,0.0,0.0 +10194,my_land,2012-08-28,0.2739233036272629,subsurface_runoff,0.0,0.0,2.0047695531685248e-05,0.0,0.0,0.0,0.0,0.0,15.836282275879011,0.0,0.0,0.0 +10195,my_land,2012-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95,0.0,0.0,0.0 +10196,my_groundwater,2012-08-28,25.50726834354592,tank,0.0,0.0,0.0035731913074973456,0.0,0.0,0.0,0.0,0.0,11.362026571323577,0.0,0.0,0.0 +10197,my_reservoir,2012-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10198,gw1,2012-08-28,262.49258402601964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10199,gw2,2012-08-28,262.50741597398036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10200,my_sewer,2012-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 +10201,my_land,2012-08-29,7.857641736367832,percolation,0.0,0.0,0.0007072756617939458,0.0,0.0,0.0,0.0,0.0,14.537819147680773,0.0,0.0,0.0 +10202,my_land,2012-08-29,0.4344801154517359,subsurface_runoff,0.0,0.0,3.0479651853745448e-05,0.0,0.0,0.0,0.0,0.0,15.51910879891563,0.0,0.0,0.0 +10203,my_land,2012-08-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.93928571,0.0,0.0,0.0 +10204,my_groundwater,2012-08-29,25.603459308034545,tank,0.0,0.0,0.003578656440915122,0.0,0.0,0.0,0.0,0.0,11.38186752439345,0.0,0.0,0.0 +10205,my_reservoir,2012-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10206,gw1,2012-08-29,262.49263346584615,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10207,gw2,2012-08-29,262.50736653415385,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10208,my_sewer,2012-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 +10209,my_land,2012-08-30,7.7979653895394785,percolation,0.0,0.0,0.0006997065375288611,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10210,my_land,2012-08-30,0.37410830675567525,subsurface_runoff,0.0,0.0,2.617321508049139e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10211,my_land,2012-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.92857143,0.0,0.0,0.0 +10212,my_groundwater,2012-08-30,25.69819495519437,tank,0.0,0.0,0.003583953825755386,0.0,0.0,0.0,0.0,0.0,11.401406572028234,0.0,0.0,0.0 +10213,my_reservoir,2012-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10214,gw1,2012-08-30,262.49268257607383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10215,gw2,2012-08-30,262.50731742392617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10216,my_sewer,2012-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10217,my_land,2012-08-31,7.642006081748689,percolation,0.0,0.0,0.0006857124067782839,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10218,my_land,2012-08-31,0.2992866454045402,subsurface_runoff,0.0,0.0,2.093857206439311e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +10219,my_land,2012-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.92857143,0.0,0.0,0.0 +10220,my_groundwater,2012-08-31,25.789518877327698,tank,0.0,0.0,0.0035889530866146982,0.0,0.0,0.0,0.0,0.0,11.420369167432721,0.0,0.0,0.0 +10221,my_reservoir,2012-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10222,gw1,2012-08-31,262.4927313589,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10223,gw2,2012-08-31,262.5072686411,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10224,my_sewer,2012-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10225,my_land,2012-09-01,7.4891659601137155,percolation,0.0,0.0,0.0006719981586427183,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10226,my_land,2012-09-01,0.23942931632363218,subsurface_runoff,0.0,0.0,1.675085765151449e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +10227,my_land,2012-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.90714286,0.0,0.0,0.0 +10228,my_groundwater,2012-09-01,25.877503101465265,tank,0.0,0.0,0.0035936606664133883,0.0,0.0,0.0,0.0,0.0,11.438777608396355,0.0,0.0,0.0 +10229,my_reservoir,2012-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10230,gw1,2012-09-01,262.4927798165073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10231,gw2,2012-09-01,262.5072201834927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10232,my_sewer,2012-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10233,my_land,2012-09-02,7.339382640911441,percolation,0.0,0.0,0.0006585581954698639,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10234,my_land,2012-09-02,0.19154345305890574,subsurface_runoff,0.0,0.0,1.340068612121159e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +10235,my_land,2012-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10236,my_groundwater,2012-09-02,25.962218204615873,tank,0.0,0.0,0.0035980828780122773,0.0,0.0,0.0,0.0,0.0,11.45665307691426,0.0,0.0,0.0 +10237,my_reservoir,2012-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10238,gw1,2012-09-02,262.49282795106393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10239,gw2,2012-09-02,262.50717204893607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10240,my_sewer,2012-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10241,my_land,2012-09-03,7.192594988093212,percolation,0.0,0.0,0.0006453870315604666,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10242,my_land,2012-09-03,0.15323476244712458,subsurface_runoff,0.0,0.0,1.0720548896969273e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +10243,my_land,2012-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10244,my_groundwater,2012-09-03,26.043733342790517,tank,0.0,0.0,0.0036022259068168704,0.0,0.0,0.0,0.0,0.0,11.47401570820889,0.0,0.0,0.0 +10245,my_reservoir,2012-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10246,gw1,2012-09-03,262.4928757647235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10247,gw2,2012-09-03,262.5071242352765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10248,my_sewer,2012-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10249,my_land,2012-09-04,7.048743088331348,percolation,0.0,0.0,0.0006324792909292573,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10250,my_land,2012-09-04,0.12258780995769966,subsurface_runoff,0.0,0.0,8.576439117575418e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +10251,my_land,2012-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10252,my_groundwater,2012-09-04,26.122116279446,tank,0.0,0.0,0.00360609581332946,0.0,0.0,0.0,0.0,0.0,11.490884654686404,0.0,0.0,0.0 +10253,my_reservoir,2012-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10254,gw1,2012-09-04,262.49292325962534,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10255,gw2,2012-09-04,262.50707674037466,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10256,my_sewer,2012-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10257,my_land,2012-09-05,6.907768226564722,percolation,0.0,0.0,0.0006198297051106721,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10258,my_land,2012-09-05,0.09807024796615973,subsurface_runoff,0.0,0.0,6.861151294060334e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +10259,my_land,2012-09-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10260,my_groundwater,2012-09-05,26.197433413359594,tank,0.0,0.0,0.003609698535650175,0.0,0.0,0.0,0.0,0.0,11.507278145256214,0.0,0.0,0.0 +10261,my_reservoir,2012-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10262,gw1,2012-09-05,262.4929704378945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10263,gw2,2012-09-05,262.5070295621055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10264,my_sewer,2012-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10265,my_land,2012-09-06,6.769612862033427,percolation,0.0,0.0,0.0006074331110084587,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10266,my_land,2012-09-06,0.07845619837292779,subsurface_runoff,0.0,0.0,5.488921035248267e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 +10267,my_land,2012-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10268,my_groundwater,2012-09-06,26.26974980594616,tank,0.0,0.0,0.0036130398919280078,0.0,0.0,0.0,0.0,0.0,11.523213540401246,0.0,0.0,0.0 +10269,my_reservoir,2012-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10270,gw1,2012-09-06,262.4930173016418,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10271,gw2,2012-09-06,262.5069826983582,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10272,my_sewer,2012-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10273,my_land,2012-09-07,6.634220604792759,percolation,0.0,0.0,0.0005952844487882896,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10274,my_land,2012-09-07,0.06276495869834223,subsurface_runoff,0.0,0.0,4.3911368281986135e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +10275,my_land,2012-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10276,my_groundwater,2012-09-07,26.339129208028858,tank,0.0,0.0,0.0036161255827628067,0.0,0.0,0.0,0.0,0.0,11.538707383349864,0.0,0.0,0.0 +10277,my_reservoir,2012-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10278,gw1,2012-09-07,262.4930638529642,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10279,gw2,2012-09-07,262.5069361470358,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10280,my_sewer,2012-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10281,my_land,2012-09-08,6.5015361926969035,percolation,0.0,0.0,0.0005833787598125238,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10282,my_land,2012-09-08,0.05021196695867378,subsurface_runoff,0.0,0.0,3.5129094625588906e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +10283,my_land,2012-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10284,my_groundwater,2012-09-08,26.4056340860744,tank,0.0,0.0,0.003618961193559226,0.0,0.0,0.0,0.0,0.0,11.55377544766767,0.0,0.0,0.0 +10285,my_reservoir,2012-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10286,gw1,2012-09-08,262.49311009394444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10287,gw2,2012-09-08,262.50688990605556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10288,my_sewer,2012-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10289,my_land,2012-09-09,6.371505468842965,percolation,0.0,0.0,0.0005717111846162734,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10290,my_land,2012-09-09,0.040169573566939024,subsurface_runoff,0.0,0.0,2.8103275700471127e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10291,my_land,2012-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10292,my_groundwater,2012-09-09,26.469325647903517,tank,0.0,0.0,0.0036215521968335877,0.0,0.0,0.0,0.0,0.0,11.568432781558034,0.0,0.0,0.0 +10293,my_reservoir,2012-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10294,gw1,2012-09-09,262.4931560266515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10295,gw2,2012-09-09,262.5068439733485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10296,my_sewer,2012-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10297,my_land,2012-09-10,6.244075359466106,percolation,0.0,0.0,0.0005602769609239479,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10298,my_land,2012-09-10,0.03213565885355122,subsurface_runoff,0.0,0.0,2.24826205603769e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10299,my_land,2012-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10300,my_groundwater,2012-09-10,26.530263867887175,tank,0.0,0.0,0.0036239039544745982,0.0,0.0,0.0,0.0,0.0,11.58269374913393,0.0,0.0,0.0 +10301,my_reservoir,2012-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10302,gw1,2012-09-10,262.4932016531405,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10303,gw2,2012-09-10,262.5067983468595,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10304,my_sewer,2012-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10305,my_land,2012-09-11,6.119193852276784,percolation,0.0,0.0,0.000549071421705469,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10306,my_land,2012-09-11,0.025708527082840976,subsurface_runoff,0.0,0.0,1.7986096448301523e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10307,my_land,2012-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10308,my_groundwater,2012-09-11,26.588507511638806,tank,0.0,0.0,0.003626021719958845,0.0,0.0,0.0,0.0,0.0,11.596572068899919,0.0,0.0,0.0 +10309,my_reservoir,2012-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10310,gw1,2012-09-11,262.4932469754529,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10311,gw2,2012-09-11,262.5067530245471,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10312,my_sewer,2012-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10313,my_land,2012-09-12,5.9968099752312485,percolation,0.0,0.0,0.0005380899932713596,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10314,my_land,2012-09-12,0.02056682166627278,subsurface_runoff,0.0,0.0,1.4388877158641217e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10315,my_land,2012-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10316,my_groundwater,2012-09-12,26.64411416021263,tank,0.0,0.0,0.003627910640521972,0.0,0.0,0.0,0.0,0.0,11.610080849661864,0.0,0.0,0.0 +10317,my_reservoir,2012-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10318,gw1,2012-09-12,262.4932919956166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10319,gw2,2012-09-12,262.5067080043834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10320,my_sewer,2012-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10321,my_land,2012-09-13,5.876873775726623,percolation,0.0,0.0,0.0005273281934059324,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10322,my_land,2012-09-13,0.016453457333018222,subsurface_runoff,0.0,0.0,1.1511101726912974e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10323,my_land,2012-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10324,my_groundwater,2012-09-13,26.69714023381796,tank,0.0,0.0,0.0036295757592864305,0.0,0.0,0.0,0.0,0.0,11.62323262406282,0.0,0.0,0.0 +10325,my_reservoir,2012-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10326,gw1,2012-09-13,262.4933367156458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10327,gw2,2012-09-13,262.5066632843542,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10328,my_sewer,2012-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10329,my_land,2012-09-14,5.759336300212091,percolation,0.0,0.0,0.0005167816295378138,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10330,my_land,2012-09-14,0.013162765866414577,subsurface_runoff,0.0,0.0,9.20888138153038e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10331,my_land,2012-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10332,my_groundwater,2012-09-14,26.747641015059163,tank,0.0,0.0,0.0036310220173466625,0.0,0.0,0.0,0.0,0.0,11.636039379926158,0.0,0.0,0.0 +10333,my_reservoir,2012-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10334,gw1,2012-09-14,262.4933811375415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10335,gw2,2012-09-14,262.5066188624585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10336,my_sewer,2012-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10337,my_land,2012-09-15,5.644149574207849,percolation,0.0,0.0,0.0005064459969470576,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10338,my_land,2012-09-15,0.010530212693131662,subsurface_runoff,0.0,0.0,7.367105105224304e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10339,my_land,2012-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10340,my_groundwater,2012-09-15,26.79567067171075,tank,0.0,0.0,0.0036322542558125752,0.0,0.0,0.0,0.0,0.0,11.648512589571437,0.0,0.0,0.0 +10341,my_reservoir,2012-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10342,gw1,2012-09-15,262.4934252632912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10343,gw2,2012-09-15,262.5065747367088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10344,my_sewer,2012-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10345,my_land,2012-09-16,5.531266582723692,percolation,0.0,0.0,0.0004963170770081164,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10346,my_land,2012-09-16,0.00842417015450533,subsurface_runoff,0.0,0.0,5.893684084179444e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10347,my_land,2012-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10348,my_groundwater,2012-09-16,26.841282279036918,tank,0.0,0.0,0.0036332772178121375,0.0,0.0,0.0,0.0,0.0,11.660663237254399,0.0,0.0,0.0 +10349,my_reservoir,2012-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10350,gw1,2012-09-16,262.4934690948693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10351,gw2,2012-09-16,262.5065309051307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10352,my_sewer,2012-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10353,my_land,2012-09-17,5.420641251069219,percolation,0.0,0.0,0.00048639073546795407,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 +10354,my_land,2012-09-17,0.006739336123604264,subsurface_runoff,0.0,0.0,4.714947267343555e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10355,my_land,2012-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10356,my_groundwater,2012-09-17,26.884527841664664,tank,0.0,0.0,0.0036340955504539194,0.0,0.0,0.0,0.0,0.0,11.672501844869647,0.0,0.0,0.0 +10357,my_reservoir,2012-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10358,gw1,2012-09-17,262.4935126342368,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10359,gw2,2012-09-17,262.5064873657632,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10360,my_sewer,2012-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10361,my_land,2012-09-18,5.3122284260478345,percolation,0.0,0.0,0.000476662920758595,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 +10362,my_land,2012-09-18,0.005391468898883411,subsurface_runoff,0.0,0.0,3.771957813874844e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10363,my_land,2012-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10364,my_groundwater,2012-09-18,26.925458315019334,tank,0.0,0.0,0.0036347138067503704,0.0,0.0,0.0,0.0,0.0,11.684038496043046,0.0,0.0,0.0 +10365,my_reservoir,2012-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10366,gw1,2012-09-18,262.4935558833419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10367,gw2,2012-09-18,262.5064441166581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10368,my_sewer,2012-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10369,my_land,2012-09-19,5.205983857526878,percolation,0.0,0.0,0.0004671296623434231,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +10370,my_land,2012-09-19,0.004313175119106729,subsurface_runoff,0.0,0.0,3.017566251099875e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10371,my_land,2012-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10372,my_groundwater,2012-09-19,26.96412362633144,tank,0.0,0.0,0.0036351364475026285,0.0,0.0,0.0,0.0,0.0,11.695282858730328,0.0,0.0,0.0 +10373,my_reservoir,2012-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10374,gw1,2012-09-19,262.4935988441196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10375,gw2,2012-09-19,262.5064011558804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10376,my_sewer,2012-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10377,my_land,2012-09-20,5.1018641803763405,percolation,0.0,0.0,0.0004577870690965546,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +10378,my_land,2012-09-20,0.003450540095285383,subsurface_runoff,0.0,0.0,2.4140530008799e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10379,my_land,2012-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10380,my_groundwater,2012-09-20,27.000572695223273,tank,0.0,0.0,0.0036353678431476234,0.0,0.0,0.0,0.0,0.0,11.706244206428902,0.0,0.0,0.0 +10381,my_reservoir,2012-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10382,gw1,2012-09-20,262.49364151849215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10383,gw2,2012-09-20,262.50635848150785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10384,my_sewer,2012-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10385,my_land,2012-09-21,4.9998268967688135,percolation,0.0,0.0,0.0004486313277146235,0.0,0.0,0.0,0.0,0.0,14.544930826905585,0.0,0.0,0.0 +10386,my_land,2012-09-21,0.0027604320762283064,subsurface_runoff,0.0,0.0,1.9312424007039198e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10387,my_land,2012-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10388,my_groundwater,2012-09-21,27.034853453883724,tank,0.0,0.0,0.0036354122755682303,0.0,0.0,0.0,0.0,0.0,11.716931438101154,0.0,0.0,0.0 +10389,my_reservoir,2012-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10390,gw1,2012-09-21,262.4936839083689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10391,gw2,2012-09-21,262.5063160916311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10392,my_sewer,2012-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 +10393,my_land,2012-09-22,4.899830358833437,percolation,0.0,0.0,0.000439658701160331,0.0,0.0,0.0,0.0,0.0,14.544930826905585,0.0,0.0,0.0 +10394,my_land,2012-09-22,0.002208345660982645,subsurface_runoff,0.0,0.0,1.544993920563136e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 +10395,my_land,2012-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10396,my_groundwater,2012-09-22,27.06701286683955,tank,0.0,0.0,0.0036352739398672162,0.0,0.0,0.0,0.0,0.0,11.727353096899677,0.0,0.0,0.0 +10397,my_reservoir,2012-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10398,gw1,2012-09-22,262.4937260156464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10399,gw2,2012-09-22,262.5062739843536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10400,my_sewer,2012-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0 +10401,my_land,2012-09-23,4.801833751656768,percolation,0.0,0.0,0.0004308655271371244,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 +10402,my_land,2012-09-23,0.001766676528786116,subsurface_runoff,0.0,0.0,1.2359951364505088e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 +10403,my_land,2012-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 +10404,my_groundwater,2012-09-23,27.097096950331178,tank,0.0,0.0,0.0036349569461056968,0.0,0.0,0.0,0.0,0.0,11.737517387777663,0.0,0.0,0.0 +10405,my_reservoir,2012-09-23,0.06799999999999998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10406,gw1,2012-09-23,262.4937678422088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10407,gw2,2012-09-23,262.5062321577912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10408,my_sewer,2012-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0 +10409,my_land,2012-09-24,5.229232043031802,percolation,0.0,0.0,0.00046002292728515305,0.0,0.0,0.0,0.0,0.0,14.273659488076007,0.0,0.0,0.0 +10410,my_land,2012-09-24,0.14384462459940117,subsurface_runoff,0.0,0.0,1.03777124519422e-05,0.0,0.0,0.0,0.0,0.0,11.870781778382353,0.0,0.0,0.0 +10411,my_land,2012-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.75,0.0,0.0,0.0 +10412,my_groundwater,2012-09-24,27.135806431688497,tank,0.0,0.0,0.0036352343061887373,0.0,0.0,0.0,0.0,0.0,11.747466528849243,0.0,0.0,0.0 +10413,my_reservoir,2012-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10414,gw1,2012-09-24,262.4938093899274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10415,gw2,2012-09-24,262.5061906100726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10416,my_sewer,2012-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0 +10417,my_land,2012-09-25,5.320014085031343,percolation,0.0,0.0,0.00046489967409773635,0.0,0.0,0.0,0.0,0.0,14.173444353367161,0.0,0.0,0.0 +10418,my_land,2012-09-25,0.16823670181834477,subsurface_runoff,0.0,0.0,1.2132702031835766e-05,0.0,0.0,0.0,0.0,0.0,11.767746384183463,0.0,0.0,0.0 +10419,my_land,2012-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.84642857,0.0,0.0,0.0 +10420,my_groundwater,2012-09-25,27.17626720234027,tank,0.0,0.0,0.0036356102495031122,0.0,0.0,0.0,0.0,0.0,11.757134305959402,0.0,0.0,0.0 +10421,my_reservoir,2012-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10422,gw1,2012-09-25,262.4938506606612,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10423,gw2,2012-09-25,262.5061493393388,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10424,my_sewer,2012-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +10425,my_land,2012-09-26,6.00874606560487,percolation,0.0,0.0,0.0005102739624778366,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 +10426,my_land,2012-09-26,0.3509518818013842,subsurface_runoff,0.0,0.0,2.4582973016503974e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 +10427,my_land,2012-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.94285714,0.0,0.0,0.0 +10428,my_groundwater,2012-09-26,27.230647436384235,tank,0.0,0.0,0.0036369089438297963,0.0,0.0,0.0,0.0,0.0,11.766457146410339,0.0,0.0,0.0 +10429,my_reservoir,2012-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10430,gw1,2012-09-26,262.49389165625684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10431,gw2,2012-09-26,262.50610834374316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10432,my_sewer,2012-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +10433,my_land,2012-09-27,5.888571144292773,percolation,0.0,0.0,0.0005000684832282799,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 +10434,my_land,2012-09-27,0.28076150544110734,subsurface_runoff,0.0,0.0,1.966637841320318e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 +10435,my_land,2012-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.03928571,0.0,0.0,0.0 +10436,my_groundwater,2012-09-27,27.282445301802092,tank,0.0,0.0,0.0036379966370216547,0.0,0.0,0.0,0.0,0.0,11.775535220914595,0.0,0.0,0.0 +10437,my_reservoir,2012-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10438,gw1,2012-09-27,262.49393237854844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10439,gw2,2012-09-27,262.50606762145156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10440,my_sewer,2012-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +10441,my_land,2012-09-28,5.7707997214069175,percolation,0.0,0.0,0.0004900671135637143,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 +10442,my_land,2012-09-28,0.22460920435288587,subsurface_runoff,0.0,0.0,1.573310273056254e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 +10443,my_land,2012-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.13571429,0.0,0.0,0.0 +10444,my_groundwater,2012-09-28,27.331716182876228,tank,0.0,0.0,0.0036388780116695047,0.0,0.0,0.0,0.0,0.0,11.784376676868622,0.0,0.0,0.0 +10445,my_reservoir,2012-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10446,gw1,2012-09-28,262.4939728293581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10447,gw2,2012-09-28,262.5060271706419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10448,my_sewer,2012-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +10449,my_land,2012-09-29,5.655383726978779,percolation,0.0,0.0,0.00048026577129244,0.0,0.0,0.0,0.0,0.0,13.832552138651145,0.0,0.0,0.0 +10450,my_land,2012-09-29,0.17968736348230868,subsurface_runoff,0.0,0.0,1.2586482184450033e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 +10451,my_land,2012-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.13571429,0.0,0.0,0.0 +10452,my_groundwater,2012-09-29,27.378514346861103,tank,0.0,0.0,0.0036395576555559267,0.0,0.0,0.0,0.0,0.0,11.792989314653797,0.0,0.0,0.0 +10453,my_reservoir,2012-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10454,gw1,2012-09-29,262.4940130104957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10455,gw2,2012-09-29,262.5059869895043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10456,my_sewer,2012-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +10457,my_land,2012-09-30,5.653575190955209,percolation,0.0,0.0,0.00047865300091570165,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 +10458,my_land,2012-09-30,0.1740353706541478,subsurface_runoff,0.0,0.0,1.2244027937794178e-05,0.0,0.0,0.0,0.0,0.0,11.704472371951853,0.0,0.0,0.0 +10459,my_land,2012-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.32857143,0.0,0.0,0.0 +10460,my_groundwater,2012-09-30,27.425158698809824,tank,0.0,0.0,0.003640202768935678,0.0,0.0,0.0,0.0,0.0,11.801388981146047,0.0,0.0,0.0 +10461,my_reservoir,2012-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10462,gw1,2012-09-30,262.49405292375906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10463,gw2,2012-09-30,262.50594707624094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10464,my_sewer,2012-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 +10465,my_land,2012-10-01,5.540503687136105,percolation,0.0,0.0,0.00046907994089738763,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 +10466,my_land,2012-10-01,0.13922829652331822,subsurface_runoff,0.0,0.0,9.795222350235343e-06,0.0,0.0,0.0,0.0,0.0,11.704472371951853,0.0,0.0,0.0 +10467,my_land,2012-10-01,7.118174013486916e-19,surface_runoff,0.0,0.0,4.344588631278635e-23,0.0,0.0,0.0,0.0,0.0,11.778386761031697,0.0,0.0,0.0 +10468,my_groundwater,2012-10-01,27.469384627122356,tank,0.0,0.0,0.003640651389381607,0.0,0.0,0.0,0.0,0.0,11.809572912361572,0.0,0.0,0.0 +10469,my_reservoir,2012-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10470,gw1,2012-10-01,262.494092570934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10471,gw2,2012-10-01,262.505907429066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10472,my_sewer,2012-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0 +10473,my_land,2012-10-02,5.776812644452794,percolation,0.0,0.0,0.0004845212938810295,0.0,0.0,0.0,0.0,0.0,13.690947055920006,0.0,0.0,0.0 +10474,my_land,2012-10-02,0.20583679533005905,subsurface_runoff,0.0,0.0,1.4590722588103802e-05,0.0,0.0,0.0,0.0,0.0,11.87229575220988,0.0,0.0,0.0 +10475,my_land,2012-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.225000000000001,0.0,0.0,0.0 +10476,my_groundwater,2012-10-02,27.518310565816623,tank,0.0,0.0,0.003641413230105017,0.0,0.0,0.0,0.0,0.0,11.8176129579313,0.0,0.0,0.0 +10477,my_reservoir,2012-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10478,gw1,2012-10-02,262.49413195379447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10479,gw2,2012-10-02,262.50586804620553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10480,my_sewer,2012-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0 +10481,my_land,2012-10-03,5.896802473341691,percolation,0.0,0.0,0.0004915918108332201,0.0,0.0,0.0,0.0,0.0,13.62056431542778,0.0,0.0,0.0 +10482,my_land,2012-10-03,0.22875816599954463,subsurface_runoff,0.0,0.0,1.6233378840499697e-05,0.0,0.0,0.0,0.0,0.0,11.888124127313011,0.0,0.0,0.0 +10483,my_land,2012-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.025,0.0,0.0,0.0 +10484,my_groundwater,2012-10-03,27.569556839752252,tank,0.0,0.0,0.003642317101750288,0.0,0.0,0.0,0.0,0.0,11.82546328279845,0.0,0.0,0.0 +10485,my_reservoir,2012-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10486,gw1,2012-10-03,262.4941710741025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10487,gw2,2012-10-03,262.5058289258975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10488,my_sewer,2012-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0 +10489,my_land,2012-10-04,6.732044662046371,percolation,0.0,0.0,0.0005455622626340529,0.0,0.0,0.0,0.0,0.0,13.357728837564117,0.0,0.0,0.0 +10490,my_land,2012-10-04,0.44237476087351696,subsurface_runoff,0.0,0.0,3.0347869879881986e-05,0.0,0.0,0.0,0.0,0.0,11.815482243639705,0.0,0.0,0.0 +10491,my_land,2012-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.825,0.0,0.0,0.0 +10492,my_groundwater,2012-10-04,27.637678142558816,tank,0.0,0.0,0.0036443173979138197,0.0,0.0,0.0,0.0,0.0,11.833061230445043,0.0,0.0,0.0 +10493,my_reservoir,2012-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10494,gw1,2012-10-04,262.4942099336085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10495,gw2,2012-10-04,262.5057900663915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10496,my_sewer,2012-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +10497,my_land,2012-10-05,7.643815885123612,percolation,0.0,0.0,0.0006000621388419467,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 +10498,my_land,2012-10-05,0.6386377995336895,subsurface_runoff,0.0,0.0,4.207724051902798e-05,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 +10499,my_land,2012-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.625,0.0,0.0,0.0 +10500,my_groundwater,2012-10-05,27.724190199149575,tank,0.0,0.0,0.0036474221551026035,0.0,0.0,0.0,0.0,0.0,11.840261908122194,0.0,0.0,0.0 +10501,my_reservoir,2012-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10502,gw1,2012-10-05,262.4942485340511,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10503,gw2,2012-10-05,262.5057514659489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10504,my_sewer,2012-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +10505,my_land,2012-10-06,7.490939567421139,percolation,0.0,0.0,0.0005880608960651077,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 +10506,my_land,2012-10-06,0.5109102396269516,subsurface_runoff,0.0,0.0,3.366179241522238e-05,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 +10507,my_land,2012-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.625,0.0,0.0,0.0 +10508,my_groundwater,2012-10-06,27.807373850559916,tank,0.0,0.0,0.003650274839384744,0.0,0.0,0.0,0.0,0.0,11.847257974644851,0.0,0.0,0.0 +10509,my_reservoir,2012-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10510,gw1,2012-10-06,262.49428687715744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10511,gw2,2012-10-06,262.50571312284256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10512,my_sewer,2012-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 +10513,my_land,2012-10-07,7.341120776072716,percolation,0.0,0.0,0.0005762996781438055,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 +10514,my_land,2012-10-07,0.40872819170156127,subsurface_runoff,0.0,0.0,2.6929433932177906e-05,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 +10515,my_land,2012-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.225,0.0,0.0,0.0 +10516,my_groundwater,2012-10-07,27.88729966030357,tank,0.0,0.0,0.0036528809671627807,0.0,0.0,0.0,0.0,0.0,11.85405697895749,0.0,0.0,0.0 +10517,my_reservoir,2012-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10518,gw1,2012-10-07,262.49432496464306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10519,gw2,2012-10-07,262.50567503535694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10520,my_sewer,2012-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +10521,my_land,2012-10-08,7.282864774011727,percolation,0.0,0.0,0.0005704973829964806,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 +10522,my_land,2012-10-08,0.3510822577042325,subsurface_runoff,0.0,0.0,2.3101016102354863e-05,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 +10523,my_land,2012-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.024999999999999,0.0,0.0,0.0 +10524,my_groundwater,2012-10-08,27.965839729766618,tank,0.0,0.0,0.003655362461470159,0.0,0.0,0.0,0.0,0.0,11.860615421700048,0.0,0.0,0.0 +10525,my_reservoir,2012-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10526,gw1,2012-10-08,262.4943627982121,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10527,gw2,2012-10-08,262.5056372017879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10528,my_sewer,2012-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +10529,my_land,2012-10-09,7.137207478531492,percolation,0.0,0.0,0.000559087435336551,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 +10530,my_land,2012-10-09,0.280865806163386,subsurface_runoff,0.0,0.0,1.848081288188389e-05,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 +10531,my_land,2012-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.024999999999999,0.0,0.0,0.0 +10532,my_groundwater,2012-10-09,28.041218282683733,tank,0.0,0.0,0.0036576054781072634,0.0,0.0,0.0,0.0,0.0,11.866991436209144,0.0,0.0,0.0 +10533,my_reservoir,2012-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10534,gw1,2012-10-09,262.4944003795573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10535,gw2,2012-10-09,262.5055996204427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10536,my_sewer,2012-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 +10537,my_land,2012-10-10,6.994463328960862,percolation,0.0,0.0,0.00054790568662982,0.0,0.0,0.0,0.0,0.0,13.091170419404726,0.0,0.0,0.0 +10538,my_land,2012-10-10,0.2246926449307088,subsurface_runoff,0.0,0.0,1.4784650305507112e-05,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 +10539,my_land,2012-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.74375,0.0,0.0,0.0 +10540,my_groundwater,2012-10-10,28.113502526173725,tank,0.0,0.0,0.0036596152587469594,0.0,0.0,0.0,0.0,0.0,11.87319157177555,0.0,0.0,0.0 +10541,my_reservoir,2012-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10542,gw1,2012-10-10,262.4944377103603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10543,gw2,2012-10-10,262.5055622896397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10544,my_sewer,2012-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +10545,my_land,2012-10-11,7.456464650910729,percolation,0.0,0.0,0.0005755675273590139,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 +10546,my_land,2012-10-11,0.34353386792527035,subsurface_runoff,0.0,0.0,2.23365513904711e-05,0.0,0.0,0.0,0.0,0.0,11.18584432471923,0.0,0.0,0.0 +10547,my_land,2012-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +10548,my_groundwater,2012-10-11,28.195011085966115,tank,0.0,0.0,0.003662183130978472,0.0,0.0,0.0,0.0,0.0,11.878688977951288,0.0,0.0,0.0 +10549,my_reservoir,2012-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10550,gw1,2012-10-11,262.4944747922912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10551,gw2,2012-10-11,262.5055252077088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10552,my_sewer,2012-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +10553,my_land,2012-10-12,7.307335357892515,percolation,0.0,0.0,0.0005640561768118337,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 +10554,my_land,2012-10-12,0.2748270943402163,subsurface_runoff,0.0,0.0,1.786924111237688e-05,0.0,0.0,0.0,0.0,0.0,11.18584432471923,0.0,0.0,0.0 +10555,my_land,2012-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.4625,0.0,0.0,0.0 +10556,my_groundwater,2012-10-12,28.273280028036872,tank,0.0,0.0,0.003664510245321838,0.0,0.0,0.0,0.0,0.0,11.88403259795654,0.0,0.0,0.0 +10557,my_reservoir,2012-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10558,gw1,2012-10-12,262.4945116270093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10559,gw2,2012-10-12,262.5054883729907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10560,my_sewer,2012-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +10561,my_land,2012-10-13,7.2390060376796725,percolation,0.0,0.0,0.0005578790271963118,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 +10562,my_land,2012-10-13,0.24103647464088276,subsurface_runoff,0.0,0.0,1.5684229330912327e-05,0.0,0.0,0.0,0.0,0.0,11.11799746448154,0.0,0.0,0.0 +10563,my_land,2012-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.321875,0.0,0.0,0.0 +10564,my_groundwater,2012-10-13,28.349962308019546,tank,0.0,0.0,0.003666705792762173,0.0,0.0,0.0,0.0,0.0,11.88914553429037,0.0,0.0,0.0 +10565,my_reservoir,2012-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10566,gw1,2012-10-13,262.49454821616257,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10567,gw2,2012-10-13,262.50545178383743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10568,my_sewer,2012-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 +10569,my_land,2012-10-14,7.094225916926079,percolation,0.0,0.0,0.0005467214466523856,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 +10570,my_land,2012-10-14,0.19282917971270622,subsurface_runoff,0.0,0.0,1.2547383464729863e-05,0.0,0.0,0.0,0.0,0.0,11.11799746448154,0.0,0.0,0.0 +10571,my_land,2012-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.18125,0.0,0.0,0.0 +10572,my_groundwater,2012-10-14,28.423505572701206,tank,0.0,0.0,0.003668668714872834,0.0,0.0,0.0,0.0,0.0,11.894117268689138,0.0,0.0,0.0 +10573,my_reservoir,2012-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10574,gw1,2012-10-14,262.49458456138814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10575,gw2,2012-10-14,262.50541543861186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10576,my_sewer,2012-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 +10577,my_land,2012-10-15,7.189025952989506,percolation,0.0,0.0,0.0005514190594034094,0.0,0.0,0.0,0.0,0.0,12.778851645365535,0.0,0.0,0.0 +10578,my_land,2012-10-15,0.21866730415164773,subsurface_runoff,0.0,0.0,1.4291523556565278e-05,0.0,0.0,0.0,0.0,0.0,10.838913933758187,0.0,0.0,0.0 +10579,my_land,2012-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 +10580,my_groundwater,2012-10-15,28.498794837098167,tank,0.0,0.0,0.0036707223596520785,0.0,0.0,0.0,0.0,0.0,11.898660588235153,0.0,0.0,0.0 +10581,my_reservoir,2012-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10582,gw1,2012-10-15,262.4946206643122,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10583,gw2,2012-10-15,262.5053793356878,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10584,my_sewer,2012-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 +10585,my_land,2012-10-16,7.60123650198429,percolation,0.0,0.0,0.0005757517305352672,0.0,0.0,0.0,0.0,0.0,12.578868314585371,0.0,0.0,0.0 +10586,my_land,2012-10-16,0.32622392986678034,subsurface_runoff,0.0,0.0,2.1055273898293312e-05,0.0,0.0,0.0,0.0,0.0,10.470624236064141,0.0,0.0,0.0 +10587,my_land,2012-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 +10588,my_groundwater,2012-10-16,28.582287307367245,tank,0.0,0.0,0.003673266213981702,0.0,0.0,0.0,0.0,0.0,11.902343112776903,0.0,0.0,0.0 +10589,my_reservoir,2012-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10590,gw1,2012-10-16,262.4946565265501,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10591,gw2,2012-10-16,262.5053434734499,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10592,my_sewer,2012-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +10593,my_land,2012-10-17,8.013987317187802,percolation,0.0,0.0,0.0005988204591423216,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +10594,my_land,2012-10-17,0.4146595643677634,subsurface_runoff,0.0,0.0,2.625476693299105e-05,0.0,0.0,0.0,0.0,0.0,10.27463886433559,0.0,0.0,0.0 +10595,my_land,2012-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.17142857,0.0,0.0,0.0 +10596,my_groundwater,2012-10-17,28.67397347377015,tank,0.0,0.0,0.0036762733220792876,0.0,0.0,0.0,0.0,0.0,11.905134872870649,0.0,0.0,0.0 +10597,my_reservoir,2012-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10598,gw1,2012-10-17,262.49469214970645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10599,gw2,2012-10-17,262.50530785029355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10600,my_sewer,2012-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +10601,my_land,2012-10-18,7.853707570844046,percolation,0.0,0.0,0.0005868440499594751,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +10602,my_land,2012-10-18,0.33172765149421074,subsurface_runoff,0.0,0.0,2.100381354639284e-05,0.0,0.0,0.0,0.0,0.0,10.274638864335591,0.0,0.0,0.0 +10603,my_land,2012-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.44285714,0.0,0.0,0.0 +10604,my_groundwater,2012-10-18,28.762167587063622,tank,0.0,0.0,0.0036790291069339785,0.0,0.0,0.0,0.0,0.0,11.907846890092454,0.0,0.0,0.0 +10605,my_reservoir,2012-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10606,gw1,2012-10-18,262.4947275353751,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10607,gw2,2012-10-18,262.5052724646249,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10608,my_sewer,2012-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +10609,my_land,2012-10-19,7.696633419427165,percolation,0.0,0.0,0.0005751071689602856,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +10610,my_land,2012-10-19,0.2653821211953686,subsurface_runoff,0.0,0.0,1.680305083711427e-05,0.0,0.0,0.0,0.0,0.0,10.274638864335591,0.0,0.0,0.0 +10611,my_land,2012-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71428571,0.0,0.0,0.0 +10612,my_groundwater,2012-10-19,28.846943634134302,tank,0.0,0.0,0.003681539072963335,0.0,0.0,0.0,0.0,0.0,11.91048212598038,0.0,0.0,0.0 +10613,my_reservoir,2012-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10614,gw1,2012-10-19,262.4947626851393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10615,gw2,2012-10-19,262.5052373148607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10616,my_sewer,2012-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 +10617,my_land,2012-10-20,7.542700751038622,percolation,0.0,0.0,0.0005636050255810799,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 +10618,my_land,2012-10-20,0.21230569695629486,subsurface_runoff,0.0,0.0,1.3442440669691417e-05,0.0,0.0,0.0,0.0,0.0,10.274638864335591,0.0,0.0,0.0 +10619,my_land,2012-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.98571429,0.0,0.0,0.0 +10620,my_groundwater,2012-10-20,28.928374111766537,tank,0.0,0.0,0.0036838086133016844,0.0,0.0,0.0,0.0,0.0,11.91304340011363,0.0,0.0,0.0 +10621,my_reservoir,2012-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10622,gw1,2012-10-20,262.4947976005717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10623,gw2,2012-10-20,262.5052023994283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10624,my_sewer,2012-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10625,my_land,2012-10-21,7.518442025874311,percolation,0.0,0.0,0.0005604300932245568,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +10626,my_land,2012-10-21,0.2042922554851613,subsurface_runoff,0.0,0.0,1.2957263598364947e-05,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10627,my_land,2012-10-21,1.0459624321817598e-18,surface_runoff,0.0,0.0,6.384048047984374e-23,0.0,0.0,0.0,0.0,0.0,10.50009039116509,0.0,0.0,0.0 +10628,my_groundwater,2012-10-21,29.00910717487099,tank,0.0,0.0,0.0036860078472376444,0.0,0.0,0.0,0.0,0.0,11.915435609786748,0.0,0.0,0.0 +10629,my_reservoir,2012-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10630,gw1,2012-10-21,262.49483228323453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10631,gw2,2012-10-21,262.50516771676547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10632,my_sewer,2012-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10633,my_land,2012-10-22,7.368073185356825,percolation,0.0,0.0,0.0005492214913600656,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +10634,my_land,2012-10-22,0.16343380438812904,subsurface_runoff,0.0,0.0,1.0365810878691958e-05,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10635,my_land,2012-10-22,3.8347162307706296e-19,surface_runoff,0.0,0.0,2.3405250431949643e-23,0.0,0.0,0.0,0.0,0.0,10.429981846726673,0.0,0.0,0.0 +10636,my_groundwater,2012-10-22,29.086577325350007,tank,0.0,0.0,0.00368797340797938,0.0,0.0,0.0,0.0,0.0,11.917761395120284,0.0,0.0,0.0 +10637,my_reservoir,2012-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10638,gw1,2012-10-22,262.49486673467965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10639,gw2,2012-10-22,262.50513326532035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10640,my_sewer,2012-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10641,my_land,2012-10-23,7.220711721649688,percolation,0.0,0.0,0.0005382370615328643,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +10642,my_land,2012-10-23,0.13074704351050323,subsurface_runoff,0.0,0.0,8.292648702953567e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10643,my_land,2012-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 +10644,my_groundwater,2012-10-23,29.160853942084497,tank,0.0,0.0,0.0036897104432120653,0.0,0.0,0.0,0.0,0.0,11.920023135399736,0.0,0.0,0.0 +10645,my_reservoir,2012-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10646,gw1,2012-10-23,262.4949009564485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10647,gw2,2012-10-23,262.5050990435515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10648,my_sewer,2012-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10649,my_land,2012-10-24,7.076297487216694,percolation,0.0,0.0,0.000527472320302207,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +10650,my_land,2012-10-24,0.10459763480840259,subsurface_runoff,0.0,0.0,6.634118962362853e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10651,my_land,2012-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25833333,0.0,0.0,0.0 +10652,my_groundwater,2012-10-24,29.232005006076196,tank,0.0,0.0,0.003691223996481616,0.0,0.0,0.0,0.0,0.0,11.92222310017976,0.0,0.0,0.0 +10653,my_reservoir,2012-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10654,gw1,2012-10-24,262.49493495007215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10655,gw2,2012-10-24,262.50506504992785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10656,my_sewer,2012-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10657,my_land,2012-10-25,6.93477153747236,percolation,0.0,0.0,0.0005169228738961629,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +10658,my_land,2012-10-25,0.08367810784672207,subsurface_runoff,0.0,0.0,5.307295169890283e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10659,my_land,2012-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71666667,0.0,0.0,0.0 +10660,my_groundwater,2012-10-25,29.30009712843098,tank,0.0,0.0,0.0036925190092804406,0.0,0.0,0.0,0.0,0.0,11.924363455545619,0.0,0.0,0.0 +10661,my_reservoir,2012-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10662,gw1,2012-10-25,262.4949687170717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10663,gw2,2012-10-25,262.5050312829283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10664,my_sewer,2012-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10665,my_land,2012-10-26,6.796076106722913,percolation,0.0,0.0,0.0005065844164182395,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 +10666,my_land,2012-10-26,0.06694248627737766,subsurface_runoff,0.0,0.0,4.245836135912226e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10667,my_land,2012-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71666667,0.0,0.0,0.0 +10668,my_groundwater,2012-10-26,29.365195577782476,tank,0.0,0.0,0.0036936003230914677,0.0,0.0,0.0,0.0,0.0,11.926446269950146,0.0,0.0,0.0 +10669,my_reservoir,2012-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10670,gw1,2012-10-26,262.49500225895787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10671,gw2,2012-10-26,262.50499774104213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10672,my_sewer,2012-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 +10673,my_land,2012-10-27,6.660154584588455,percolation,0.0,0.0,0.0004964527280898747,0.0,0.0,0.0,0.0,0.0,12.366451135455684,0.0,0.0,0.0 +10674,my_land,2012-10-27,0.05355398902190213,subsurface_runoff,0.0,0.0,3.396668908729781e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 +10675,my_land,2012-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.633333333,0.0,0.0,0.0 +10676,my_groundwater,2012-10-27,29.427364307167142,tank,0.0,0.0,0.003694472681391283,0.0,0.0,0.0,0.0,0.0,11.928473519659487,0.0,0.0,0.0 +10677,my_reservoir,2012-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10678,gw1,2012-10-27,262.4950355772315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10679,gw2,2012-10-27,262.5049644227685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10680,my_sewer,2012-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 +10681,my_land,2012-10-28,6.62697756317632,percolation,0.0,0.0,0.0004934691681756894,0.0,0.0,0.0,0.0,0.0,12.326859058443523,0.0,0.0,0.0 +10682,my_land,2012-10-28,0.07006116952490513,subsurface_runoff,0.0,0.0,4.607265643340888e-06,0.0,0.0,0.0,0.0,0.0,10.1239453527476,0.0,0.0,0.0 +10683,my_land,2012-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 +10684,my_groundwater,2012-10-28,29.488702225363888,tank,0.0,0.0,0.0036952821220399526,0.0,0.0,0.0,0.0,0.0,11.930296072925454,0.0,0.0,0.0 +10685,my_reservoir,2012-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10686,gw1,2012-10-28,262.4950686733833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10687,gw2,2012-10-28,262.5049313266167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10688,my_sewer,2012-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 +10689,my_land,2012-10-29,6.572710742989682,percolation,0.0,0.0,0.0004890487144150779,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 +10690,my_land,2012-10-29,0.07734763795377142,subsurface_runoff,0.0,0.0,5.168514447435251e-06,0.0,0.0,0.0,0.0,0.0,9.892022276811032,0.0,0.0,0.0 +10691,my_land,2012-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 +10692,my_groundwater,2012-10-29,29.548782081354197,tank,0.0,0.0,0.0036959995512783027,0.0,0.0,0.0,0.0,0.0,11.931927564347495,0.0,0.0,0.0 +10693,my_reservoir,2012-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10694,gw1,2012-10-29,262.49510154889407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10695,gw2,2012-10-29,262.50489845110593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10696,my_sewer,2012-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 +10697,my_land,2012-10-30,6.441256528129888,percolation,0.0,0.0,0.0004792677401267764,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 +10698,my_land,2012-10-30,0.06187811036301714,subsurface_runoff,0.0,0.0,4.134811557948201e-06,0.0,0.0,0.0,0.0,0.0,9.892022276811032,0.0,0.0,0.0 +10699,my_land,2012-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 +10700,my_groundwater,2012-10-30,29.606035705473456,tank,0.0,0.0,0.0036965160742526877,0.0,0.0,0.0,0.0,0.0,11.933516108082884,0.0,0.0,0.0 +10701,my_reservoir,2012-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10702,gw1,2012-10-30,262.49513420523476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10703,gw2,2012-10-30,262.50486579476524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10704,my_sewer,2012-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0 +10705,my_land,2012-10-31,6.723241165306067,percolation,0.0,0.0,0.0004967531435630436,0.0,0.0,0.0,0.0,0.0,12.057217799977936,0.0,0.0,0.0 +10706,my_land,2012-10-31,0.16128745910368633,subsurface_runoff,0.0,0.0,1.0674041964400121e-05,0.0,0.0,0.0,0.0,0.0,8.907268587938642,0.0,0.0,0.0 +10707,my_land,2012-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.89375,0.0,0.0,0.0 +10708,my_groundwater,2012-10-31,29.66888659707493,tank,0.0,0.0,0.0036973872587753036,0.0,0.0,0.0,0.0,0.0,11.93408675819274,0.0,0.0,0.0 +10709,my_reservoir,2012-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10710,gw1,2012-10-31,262.4951666438665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10711,gw2,2012-10-31,262.5048333561335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10712,my_sewer,2012-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 +10713,my_land,2012-11-01,6.780616437195739,percolation,0.0,0.0,0.0004994248037417387,0.0,0.0,0.0,0.0,0.0,11.948686352301085,0.0,0.0,0.0 +10714,my_land,2012-11-01,0.1812313537307839,subsurface_runoff,0.0,0.0,1.1969634401440077e-05,0.0,0.0,0.0,0.0,0.0,8.709643098035373,0.0,0.0,0.0 +10715,my_land,2012-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.565625,0.0,0.0,0.0 +10716,my_groundwater,2012-11-01,29.732748358053726,tank,0.0,0.0,0.0036983106527045365,0.0,0.0,0.0,0.0,0.0,11.934154536657749,0.0,0.0,0.0 +10717,my_reservoir,2012-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10718,gw1,2012-11-01,262.49519886624074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10719,gw2,2012-11-01,262.50480113375926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10720,my_sewer,2012-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 +10721,my_land,2012-11-02,6.711564321923619,percolation,0.0,0.0,0.0004938506728995938,0.0,0.0,0.0,0.0,0.0,11.909046559621892,0.0,0.0,0.0 +10722,my_land,2012-11-02,0.16309670569804058,subsurface_runoff,0.0,0.0,1.0776895339571085e-05,0.0,0.0,0.0,0.0,0.0,8.625466824707148,0.0,0.0,0.0 +10723,my_land,2012-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.2375,0.0,0.0,0.0 +10724,my_groundwater,2012-11-02,29.795044760854893,tank,0.0,0.0,0.0036991182647710882,0.0,0.0,0.0,0.0,0.0,11.934039401420128,0.0,0.0,0.0 +10725,my_reservoir,2012-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10726,gw1,2012-11-02,262.49523087379913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10727,gw2,2012-11-02,262.50476912620087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10728,my_sewer,2012-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0 +10729,my_land,2012-11-03,7.347838702122822,percolation,0.0,0.0,0.0005320250090444815,0.0,0.0,0.0,0.0,0.0,11.459268856510318,0.0,0.0,0.0 +10730,my_land,2012-11-03,0.34013877044623514,subsurface_runoff,0.0,0.0,2.1696713442508454e-05,0.0,0.0,0.0,0.0,0.0,8.005569997319363,0.0,0.0,0.0 +10731,my_land,2012-11-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.909375,0.0,0.0,0.0 +10732,my_groundwater,2012-11-03,29.870138151103113,tank,0.0,0.0,0.003700700978221852,0.0,0.0,0.0,0.0,0.0,11.931661888013934,0.0,0.0,0.0 +10733,my_reservoir,2012-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10734,gw1,2012-11-03,262.4952626679738,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10735,gw2,2012-11-03,262.5047373320262,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10736,my_sewer,2012-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +10737,my_land,2012-11-04,7.874040756207047,percolation,0.0,0.0,0.0005613984253187527,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +10738,my_land,2012-11-04,0.4552834865955406,subsurface_runoff,0.0,0.0,2.8245511286023317e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +10739,my_land,2012-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.58125,0.0,0.0,0.0 +10740,my_groundwater,2012-11-04,29.95575577826243,tank,0.0,0.0,0.0037028776937202863,0.0,0.0,0.0,0.0,0.0,11.927249370948855,0.0,0.0,0.0 +10741,my_reservoir,2012-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10742,gw1,2012-11-04,262.4952942501873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10743,gw2,2012-11-04,262.5047057498127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10744,my_sewer,2012-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +10745,my_land,2012-11-05,7.716559941082906,percolation,0.0,0.0,0.0005501704568123776,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +10746,my_land,2012-11-05,0.3642267892764325,subsurface_runoff,0.0,0.0,2.2596409028818653e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +10747,my_land,2012-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.58125,0.0,0.0,0.0 +10748,my_groundwater,2012-11-05,30.037953501903104,tank,0.0,0.0,0.0037048203980710945,0.0,0.0,0.0,0.0,0.0,11.922960013209414,0.0,0.0,0.0 +10749,my_reservoir,2012-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10750,gw1,2012-11-05,262.49532562185277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10751,gw2,2012-11-05,262.50467437814723,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10752,my_sewer,2012-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +10753,my_land,2012-11-06,7.562228742261248,percolation,0.0,0.0,0.0005391670476761301,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +10754,my_land,2012-11-06,0.291381431421146,subsurface_runoff,0.0,0.0,1.8077127223054923e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +10755,my_land,2012-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.925,0.0,0.0,0.0 +10756,my_groundwater,2012-11-06,30.11680398897295,tank,0.0,0.0,0.003706534247689324,0.0,0.0,0.0,0.0,0.0,11.918789373753716,0.0,0.0,0.0 +10757,my_reservoir,2012-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10758,gw1,2012-11-06,262.49535678437377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10759,gw2,2012-11-06,262.50464321562623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10760,my_sewer,2012-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +10761,my_land,2012-11-07,7.410984167416023,percolation,0.0,0.0,0.0005283837067226075,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 +10762,my_land,2012-11-07,0.23310514513691677,subsurface_runoff,0.0,0.0,1.446170177844394e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +10763,my_land,2012-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.408333333,0.0,0.0,0.0 +10764,my_groundwater,2012-11-07,30.192378442408632,tank,0.0,0.0,0.0037080242946712395,0.0,0.0,0.0,0.0,0.0,11.914733217827319,0.0,0.0,0.0 +10765,my_reservoir,2012-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10766,gw1,2012-11-07,262.49538773914463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10767,gw2,2012-11-07,262.50461226085537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10768,my_sewer,2012-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 +10769,my_land,2012-11-08,7.262764484067703,percolation,0.0,0.0,0.0005178160325881554,0.0,0.0,0.0,0.0,0.0,11.107045053746091,0.0,0.0,0.0 +10770,my_land,2012-11-08,0.18648411610953342,subsurface_runoff,0.0,0.0,1.1569361422755152e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 +10771,my_land,2012-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.408333333,0.0,0.0,0.0 +10772,my_groundwater,2012-11-08,30.26474663044256,tank,0.0,0.0,0.0037092954888836775,0.0,0.0,0.0,0.0,0.0,11.910787505108404,0.0,0.0,0.0 +10773,my_reservoir,2012-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10774,gw1,2012-11-08,262.49541848755035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10775,gw2,2012-11-08,262.50458151244965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10776,my_sewer,2012-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 +10777,my_land,2012-11-09,7.224910875273554,percolation,0.0,0.0,0.0005142908366333125,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 +10778,my_land,2012-11-09,0.1784122400678184,subsurface_runoff,0.0,0.0,1.1114298579542932e-05,0.0,0.0,0.0,0.0,0.0,7.6623425151472695,0.0,0.0,0.0 +10779,my_land,2012-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 +10780,my_groundwater,2012-11-09,30.33616330668452,tank,0.0,0.0,0.003710491742192932,0.0,0.0,0.0,0.0,0.0,11.906614811915473,0.0,0.0,0.0 +10781,my_reservoir,2012-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10782,gw1,2012-11-09,262.4954490309667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10783,gw2,2012-11-09,262.5045509690333,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10784,my_sewer,2012-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 +10785,my_land,2012-11-10,7.080412657768083,percolation,0.0,0.0,0.0005040050199006462,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 +10786,my_land,2012-11-10,0.1427297920542547,subsurface_runoff,0.0,0.0,8.891438863634346e-06,0.0,0.0,0.0,0.0,0.0,7.6623425151472695,0.0,0.0,0.0 +10787,my_land,2012-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.858333333,0.0,0.0,0.0 +10788,my_groundwater,2012-11-10,30.404459870379515,tank,0.0,0.0,0.0037114756150282845,0.0,0.0,0.0,0.0,0.0,11.902554539401132,0.0,0.0,0.0 +10789,my_reservoir,2012-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10790,gw1,2012-11-10,262.4954793707603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10791,gw2,2012-11-10,262.5045206292397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10792,my_sewer,2012-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 +10793,my_land,2012-11-11,6.938804404612721,percolation,0.0,0.0,0.0004939249195026333,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 +10794,my_land,2012-11-11,0.11418383364340376,subsurface_runoff,0.0,0.0,7.1131510909074765e-06,0.0,0.0,0.0,0.0,0.0,7.662342515147269,0.0,0.0,0.0 +10795,my_land,2012-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.341666667,0.0,0.0,0.0 +10796,my_groundwater,2012-11-11,30.46970295322604,tank,0.0,0.0,0.0037122518261377318,0.0,0.0,0.0,0.0,0.0,11.89860281547466,0.0,0.0,0.0 +10797,my_reservoir,2012-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10798,gw1,2012-11-11,262.49550950828854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10799,gw2,2012-11-11,262.50449049171146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10800,my_sewer,2012-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10801,my_land,2012-11-12,6.9370752040423875,percolation,0.0,0.0,0.0004929875371954296,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +10802,my_land,2012-11-12,0.12863873698871522,subsurface_runoff,0.0,0.0,8.123477629963771e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 +10803,my_land,2012-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10804,my_groundwater,2012-11-12,30.53474772678241,tank,0.0,0.0,0.0037130070142938655,0.0,0.0,0.0,0.0,0.0,11.894447951610742,0.0,0.0,0.0 +10805,my_reservoir,2012-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10806,gw1,2012-11-12,262.4955394448999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10807,gw2,2012-11-12,262.5044605551001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10808,my_sewer,2012-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10809,my_land,2012-11-13,6.79833369996154,percolation,0.0,0.0,0.000483127786451521,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +10810,my_land,2012-11-13,0.10291098959097218,subsurface_runoff,0.0,0.0,6.498782103971017e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 +10811,my_land,2012-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.646428571,0.0,0.0,0.0 +10812,my_groundwater,2012-11-13,30.5968055077861,tank,0.0,0.0,0.0037135595981251796,0.0,0.0,0.0,0.0,0.0,11.89040323672826,0.0,0.0,0.0 +10813,my_reservoir,2012-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10814,gw1,2012-11-13,262.49556918193394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10815,gw2,2012-11-13,262.50443081806606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10816,my_sewer,2012-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10817,my_land,2012-11-14,6.662367025962309,percolation,0.0,0.0,0.0004734652307224906,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +10818,my_land,2012-11-14,0.08232879167277775,subsurface_runoff,0.0,0.0,5.199025683176814e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 +10819,my_land,2012-11-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.467857143,0.0,0.0,0.0 +10820,my_groundwater,2012-11-14,30.65594025133087,tank,0.0,0.0,0.0037139140984695745,0.0,0.0,0.0,0.0,0.0,11.886464956742444,0.0,0.0,0.0 +10821,my_reservoir,2012-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10822,gw1,2012-11-14,262.49559872072103,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10823,gw2,2012-11-14,262.50440127927897,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10824,my_sewer,2012-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10825,my_land,2012-11-15,6.529119685443063,percolation,0.0,0.0,0.00046399592610804077,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 +10826,my_land,2012-11-15,0.0658630333382222,subsurface_runoff,0.0,0.0,4.159220546541451e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770162,0.0,0.0,0.0 +10827,my_land,2012-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.467857143,0.0,0.0,0.0 +10828,my_groundwater,2012-11-15,30.71221462287049,tank,0.0,0.0,0.0037140749445763142,0.0,0.0,0.0,0.0,0.0,11.882629558011194,0.0,0.0,0.0 +10829,my_reservoir,2012-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10830,gw1,2012-11-15,262.4956280625829,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10831,gw2,2012-11-15,262.5043719374171,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10832,my_sewer,2012-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10833,my_land,2012-11-16,6.4342267841873335,percolation,0.0,0.0,0.0004571706465919759,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +10834,my_land,2012-11-16,0.06240185318843676,subsurface_runoff,0.0,0.0,3.995305418483758e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +10835,my_land,2012-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 +10836,my_groundwater,2012-11-16,30.76641656013427,tank,0.0,0.0,0.0037140964453776385,0.0,0.0,0.0,0.0,0.0,11.878815108957399,0.0,0.0,0.0 +10837,my_reservoir,2012-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10838,gw1,2012-11-16,262.49565720883237,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10839,gw2,2012-11-16,262.50434279116763,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10840,my_sewer,2012-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10841,my_land,2012-11-17,6.305542248503587,percolation,0.0,0.0,0.00044802723366013636,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +10842,my_land,2012-11-17,0.04992148255074941,subsurface_runoff,0.0,0.0,3.1962443347870064e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +10843,my_land,2012-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 +10844,my_groundwater,2012-11-17,30.81786334307847,tank,0.0,0.0,0.003713931758663704,0.0,0.0,0.0,0.0,0.0,11.87509907727678,0.0,0.0,0.0 +10845,my_reservoir,2012-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10846,gw1,2012-11-17,262.49568616077346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10847,gw2,2012-11-17,262.50431383922654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10848,my_sewer,2012-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 +10849,my_land,2012-11-18,6.179431403533515,percolation,0.0,0.0,0.00043906668898693364,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +10850,my_land,2012-11-18,0.03993718604059952,subsurface_runoff,0.0,0.0,2.5569954678296053e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +10851,my_land,2012-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 +10852,my_groundwater,2012-11-18,30.866614252578422,tank,0.0,0.0,0.003713585072578565,0.0,0.0,0.0,0.0,0.0,11.87147826249769,0.0,0.0,0.0 +10853,my_reservoir,2012-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10854,gw1,2012-11-18,262.49571491970164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10855,gw2,2012-11-18,262.50428508029836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10856,my_sewer,2012-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0 +10857,my_land,2012-11-19,6.055842775462845,percolation,0.0,0.0,0.00043028535520719496,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 +10858,my_land,2012-11-19,0.03194974883247962,subsurface_runoff,0.0,0.0,2.045596374263684e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 +10859,my_land,2012-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 +10860,my_groundwater,2012-11-19,30.91272737344747,tank,0.0,0.0,0.0037130604903424075,0.0,0.0,0.0,0.0,0.0,11.867949597003864,0.0,0.0,0.0 +10861,my_reservoir,2012-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10862,gw1,2012-11-19,262.4957434869036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10863,gw2,2012-11-19,262.5042565130964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10864,my_sewer,2012-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 +10865,my_land,2012-11-20,6.705286329696699,percolation,0.0,0.0,0.0004701224809989962,0.0,0.0,0.0,0.0,0.0,10.632623365112318,0.0,0.0,0.0 +10866,my_land,2012-11-20,0.23523610103689818,subsurface_runoff,0.0,0.0,1.4818200336402806e-05,0.0,0.0,0.0,0.0,0.0,7.917444508037916,0.0,0.0,0.0 +10867,my_land,2012-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 +10868,my_groundwater,2012-11-20,30.971946026725536,tank,0.0,0.0,0.0037133481896226023,0.0,0.0,0.0,0.0,0.0,11.862505230891852,0.0,0.0,0.0 +10869,my_reservoir,2012-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10870,gw1,2012-11-20,262.4957718636576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10871,gw2,2012-11-20,262.5042281363424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10872,my_sewer,2012-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.634651218431439,0.0,0.0,0.0 +10873,my_land,2012-11-21,7.716801631793732,percolation,0.0,0.0,0.0005270344142012968,0.0,0.0,0.0,0.0,0.0,10.23034394828577,0.0,0.0,0.0 +10874,my_land,2012-11-21,0.4999224940787612,subsurface_runoff,0.0,0.0,2.9899290288790425e-05,0.0,0.0,0.0,0.0,0.0,7.920849408690841,0.0,0.0,0.0 +10875,my_land,2012-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.653571429,0.0,0.0,0.0 +10876,my_groundwater,2012-11-21,31.05160819487738,tank,0.0,0.0,0.0037147937340090724,0.0,0.0,0.0,0.0,0.0,11.8542480246043,0.0,0.0,0.0 +10877,my_reservoir,2012-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10878,gw1,2012-11-21,262.4958000512332,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10879,gw2,2012-11-21,262.5041999487668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10880,my_sewer,2012-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 +10881,my_land,2012-11-22,8.703381606608673,percolation,0.0,0.0,0.0005773888755528423,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 +10882,my_land,2012-11-22,0.7103913306237748,subsurface_runoff,0.0,0.0,4.048954097540555e-05,0.0,0.0,0.0,0.0,0.0,7.935916269355516,0.0,0.0,0.0 +10883,my_land,2012-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.692857143000001,0.0,0.0,0.0 +10884,my_groundwater,2012-11-22,31.15115515709615,tank,0.0,0.0,0.0037172607374978037,0.0,0.0,0.0,0.0,0.0,11.843315656648786,0.0,0.0,0.0 +10885,my_reservoir,2012-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10886,gw1,2012-11-22,262.49582805089165,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10887,gw2,2012-11-22,262.50417194910835,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10888,my_sewer,2012-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 +10889,my_land,2012-11-23,8.5293139744765,percolation,0.0,0.0,0.0005658410980417855,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 +10890,my_land,2012-11-23,0.5683130644990199,subsurface_runoff,0.0,0.0,3.239163278032444e-05,0.0,0.0,0.0,0.0,0.0,7.935916269355516,0.0,0.0,0.0 +10891,my_land,2012-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.732142857,0.0,0.0,0.0 +10892,my_groundwater,2012-11-23,31.246909732255254,tank,0.0,0.0,0.0037194864937213387,0.0,0.0,0.0,0.0,0.0,11.832695516562078,0.0,0.0,0.0 +10893,my_reservoir,2012-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10894,gw1,2012-11-23,262.4958558638857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10895,gw2,2012-11-23,262.5041441361143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10896,my_sewer,2012-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.708278507803088,0.0,0.0,0.0 +10897,my_land,2012-11-24,10.162387603195784,percolation,0.0,0.0,0.0006399586580666357,0.0,0.0,0.0,0.0,0.0,9.591433476967335,0.0,0.0,0.0 +10898,my_land,2012-11-24,0.9454422633567159,subsurface_runoff,0.0,0.0,4.916075710471831e-05,0.0,0.0,0.0,0.0,0.0,7.975729143411609,0.0,0.0,0.0 +10899,my_land,2012-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.7714285709999995,0.0,0.0,0.0 +10900,my_groundwater,2012-11-24,31.37566963413253,tank,0.0,0.0,0.0037232155073119635,0.0,0.0,0.0,0.0,0.0,11.817917633976618,0.0,0.0,0.0 +10901,my_reservoir,2012-11-24,0.0295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10902,gw1,2012-11-24,262.4958834914598,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10903,gw2,2012-11-24,262.5041165085402,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10904,my_sewer,2012-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0 +10905,my_land,2012-11-25,10.249172485497798,percolation,0.0,0.0,0.0006408078995202258,0.0,0.0,0.0,0.0,0.0,9.548520006563194,0.0,0.0,0.0 +10906,my_land,2012-11-25,0.8352742554107955,subsurface_runoff,0.0,0.0,4.3042460000760436e-05,0.0,0.0,0.0,0.0,0.0,7.985104669781824,0.0,0.0,0.0 +10907,my_land,2012-11-25,2.5107801108827394e-18,surface_runoff,0.0,0.0,1.5324585637712033e-22,0.0,0.0,0.0,0.0,0.0,7.969329248180333,0.0,0.0,0.0 +10908,my_groundwater,2012-11-25,31.505874328501978,tank,0.0,0.0,0.0037269524864982024,0.0,0.0,0.0,0.0,0.0,11.802888820774717,0.0,0.0,0.0 +10909,my_reservoir,2012-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10910,gw1,2012-11-25,262.49591093485003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10911,gw2,2012-11-25,262.50408906514997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10912,my_sewer,2012-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +10913,my_land,2012-11-26,10.193816418437544,percolation,0.0,0.0,0.0006350732142963792,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +10914,my_land,2012-11-26,0.708934338382977,subsurface_runoff,0.0,0.0,3.63608993656581e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +10915,my_land,2012-11-26,1.5822772154752515e-18,surface_runoff,0.0,0.0,9.65745370773469e-23,0.0,0.0,0.0,0.0,0.0,7.984461710833754,0.0,0.0,0.0 +10916,my_groundwater,2012-11-26,31.634626619770344,tank,0.0,0.0,0.0037305633814301332,0.0,0.0,0.0,0.0,0.0,11.787962615877008,0.0,0.0,0.0 +10917,my_reservoir,2012-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10918,gw1,2012-11-26,262.49593819528434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10919,gw2,2012-11-26,262.50406180471566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10920,my_sewer,2012-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +10921,my_land,2012-11-27,9.989940090068794,percolation,0.0,0.0,0.0006223717500104517,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +10922,my_land,2012-11-27,0.5671474707063816,subsurface_runoff,0.0,0.0,2.908871949252648e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +10923,my_land,2012-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 +10924,my_groundwater,2012-11-27,31.758906690768747,tank,0.0,0.0,0.003733906683601771,0.0,0.0,0.0,0.0,0.0,11.773487755870393,0.0,0.0,0.0 +10925,my_reservoir,2012-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10926,gw1,2012-11-27,262.49596527398245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10927,gw2,2012-11-27,262.50403472601755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10928,my_sewer,2012-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +10929,my_land,2012-11-28,9.790141288267417,percolation,0.0,0.0,0.0006099243150102427,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +10930,my_land,2012-11-28,0.45371797656510526,subsurface_runoff,0.0,0.0,2.3270975594021183e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +10931,my_land,2012-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 +10932,my_groundwater,2012-11-28,31.878808728838695,tank,0.0,0.0,0.0037369882333054753,0.0,0.0,0.0,0.0,0.0,11.7594462404544,0.0,0.0,0.0 +10933,my_reservoir,2012-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10934,gw1,2012-11-28,262.4959921721559,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10935,gw2,2012-11-28,262.5040078278441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10936,my_sewer,2012-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +10937,my_land,2012-11-29,9.59433846250207,percolation,0.0,0.0,0.0005977258287100378,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +10938,my_land,2012-11-29,0.3629743812520842,subsurface_runoff,0.0,0.0,1.8616780475216945e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +10939,my_land,2012-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 +10940,my_groundwater,2012-11-29,31.994425025717536,tank,0.0,0.0,0.0037398137528066658,0.0,0.0,0.0,0.0,0.0,11.745820999394452,0.0,0.0,0.0 +10941,my_reservoir,2012-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10942,gw1,2012-11-29,262.4960188910082,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10943,gw2,2012-11-29,262.5039811089918,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10944,my_sewer,2012-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +10945,my_land,2012-11-30,9.402451693252027,percolation,0.0,0.0,0.000585771312135837,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +10946,my_land,2012-11-30,0.29037950500166737,subsurface_runoff,0.0,0.0,1.4893424380173557e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 +10947,my_land,2012-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 +10948,my_groundwater,2012-11-30,32.10584601548016,tank,0.0,0.0,0.0037423888487074144,0.0,0.0,0.0,0.0,0.0,11.732595833141378,0.0,0.0,0.0 +10949,my_reservoir,2012-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10950,gw1,2012-11-30,262.4960454317348,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10951,gw2,2012-11-30,262.5039545682652,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10952,my_sewer,2012-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 +10953,my_land,2012-12-01,9.214402659386987,percolation,0.0,0.0,0.0005740558858931203,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 +10954,my_land,2012-12-01,0.2323036040013339,subsurface_runoff,0.0,0.0,1.1914739504138845e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808099,0.0,0.0,0.0 +10955,my_land,2012-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 +10956,my_groundwater,2012-12-01,32.213160311721836,tank,0.0,0.0,0.0037447190142627556,0.0,0.0,0.0,0.0,0.0,11.719755357946292,0.0,0.0,0.0 +10957,my_reservoir,2012-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10958,gw1,2012-12-01,262.4960717955232,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10959,gw2,2012-12-01,262.5039282044768,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10960,my_sewer,2012-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +10961,my_land,2012-12-02,9.46100603938118,percolation,0.0,0.0,0.0005842539625252791,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +10962,my_land,2012-12-02,0.30309225277438245,subsurface_runoff,0.0,0.0,1.5430892106718186e-05,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 +10963,my_land,2012-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.84375,0.0,0.0,0.0 +10964,my_groundwater,2012-12-02,32.3252264624585,tank,0.0,0.0,0.0037472509581070778,0.0,0.0,0.0,0.0,0.0,11.705932982175138,0.0,0.0,0.0 +10965,my_reservoir,2012-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10966,gw1,2012-12-02,262.49609798355306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10967,gw2,2012-12-02,262.50390201644694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10968,my_sewer,2012-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +10969,my_land,2012-12-03,9.271785918593556,percolation,0.0,0.0,0.0005725688832747735,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +10970,my_land,2012-12-03,0.24247380221950599,subsurface_runoff,0.0,0.0,1.2344713685374549e-05,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 +10971,my_land,2012-12-03,1.7852336469999989e-19,surface_runoff,0.0,0.0,1.0896201458740227e-23,0.0,0.0,0.0,0.0,0.0,7.450974765096014,0.0,0.0,0.0 +10972,my_groundwater,2012-12-03,32.43316046678801,tank,0.0,0.0,0.0037495386972641893,0.0,0.0,0.0,0.0,0.0,11.69251257357751,0.0,0.0,0.0 +10973,my_reservoir,2012-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10974,gw1,2012-12-03,262.49612399699606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10975,gw2,2012-12-03,262.50387600300394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10976,my_sewer,2012-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +10977,my_land,2012-12-04,9.086350200221686,percolation,0.0,0.0,0.000561117505609278,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +10978,my_land,2012-12-04,0.1939790417756048,subsurface_runoff,0.0,0.0,9.875770948299638e-06,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 +10979,my_land,2012-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.175000000000001,0.0,0.0,0.0 +10980,my_groundwater,2012-12-04,32.53704969469698,tank,0.0,0.0,0.0037515875997423606,0.0,0.0,0.0,0.0,0.0,11.679478861464917,0.0,0.0,0.0 +10981,my_reservoir,2012-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10982,gw1,2012-12-04,262.4961498370161,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10983,gw2,2012-12-04,262.5038501629839,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10984,my_sewer,2012-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 +10985,my_land,2012-12-05,8.904623196217251,percolation,0.0,0.0,0.0005498951554970925,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 +10986,my_land,2012-12-05,0.15518323342048385,subsurface_runoff,0.0,0.0,7.90061675863971e-06,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 +10987,my_land,2012-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.175000000000001,0.0,0.0,0.0 +10988,my_groundwater,2012-12-05,32.636979756954666,tank,0.0,0.0,0.00375340292497991,0.0,0.0,0.0,0.0,0.0,11.66681732491934,0.0,0.0,0.0 +10989,my_reservoir,2012-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10990,gw1,2012-12-05,262.4961755047693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10991,gw2,2012-12-05,262.5038244952307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10992,my_sewer,2012-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +10993,my_land,2012-12-06,9.005185671331137,percolation,0.0,0.0,0.000553380548328355,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +10994,my_land,2012-12-06,0.199971059944069,subsurface_runoff,0.0,0.0,1.0261526316082992e-05,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +10995,my_land,2012-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.960714286,0.0,0.0,0.0 +10996,my_groundwater,2012-12-06,32.738707158728666,tank,0.0,0.0,0.0037552846645441443,0.0,0.0,0.0,0.0,0.0,11.653493714973619,0.0,0.0,0.0 +10997,my_reservoir,2012-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10998,gw1,2012-12-06,262.4962010014042,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10999,gw2,2012-12-06,262.5037989985958,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11000,my_sewer,2012-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11001,my_land,2012-12-07,8.825081957904514,percolation,0.0,0.0,0.0005423129373617879,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11002,my_land,2012-12-07,0.15997684795525519,subsurface_runoff,0.0,0.0,8.209221052866393e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11003,my_land,2012-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.853571429,0.0,0.0,0.0 +11004,my_groundwater,2012-12-07,32.8365138449749,tank,0.0,0.0,0.003756936394821935,0.0,0.0,0.0,0.0,0.0,11.640548364609012,0.0,0.0,0.0 +11005,my_reservoir,2012-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11006,gw1,2012-12-07,262.4962263280615,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11007,gw2,2012-12-07,262.5037736719385,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11008,my_sewer,2012-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11009,my_land,2012-12-08,8.648580318746424,percolation,0.0,0.0,0.0005314666786145521,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11010,my_land,2012-12-08,0.12798147836420415,subsurface_runoff,0.0,0.0,6.567376842293114e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11011,my_land,2012-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.853571429,0.0,0.0,0.0 +11012,my_groundwater,2012-12-08,32.93048294542266,tank,0.0,0.0,0.0037583631969352474,0.0,0.0,0.0,0.0,0.0,11.627967334131487,0.0,0.0,0.0 +11013,my_reservoir,2012-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11014,gw1,2012-12-08,262.4962514858744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11015,gw2,2012-12-08,262.5037485141256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11016,my_sewer,2012-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11017,my_land,2012-12-09,8.475608712371496,percolation,0.0,0.0,0.000520837345042261,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11018,my_land,2012-12-09,0.10238518269136332,subsurface_runoff,0.0,0.0,5.253901473834491e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11019,my_land,2012-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639285714,0.0,0.0,0.0 +11020,my_groundwater,2012-12-09,33.020695915418095,tank,0.0,0.0,0.0037595700491812696,0.0,0.0,0.0,0.0,0.0,11.615737346557331,0.0,0.0,0.0 +11021,my_reservoir,2012-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11022,gw1,2012-12-09,262.49627647596856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11023,gw2,2012-12-09,262.50372352403144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11024,my_sewer,2012-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11025,my_land,2012-12-10,8.306096538124066,percolation,0.0,0.0,0.0005104205981414159,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11026,my_land,2012-12-10,0.08190814615309065,subsurface_runoff,0.0,0.0,4.203121179067593e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11027,my_land,2012-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639285714,0.0,0.0,0.0 +11028,my_groundwater,2012-12-10,33.10723256944136,tank,0.0,0.0,0.003760561829091909,0.0,0.0,0.0,0.0,0.0,11.603845748643195,0.0,0.0,0.0 +11029,my_reservoir,2012-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11030,gw1,2012-12-10,262.4963012994621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11031,gw2,2012-12-10,262.5036987005379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11032,my_sewer,2012-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11033,my_land,2012-12-11,8.139974607361586,percolation,0.0,0.0,0.0005002121861785876,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11034,my_land,2012-12-11,0.06552651692247252,subsurface_runoff,0.0,0.0,3.3624969432540743e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11035,my_land,2012-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.425,0.0,0.0,0.0 +11036,my_groundwater,2012-12-11,33.190171113953326,tank,0.0,0.0,0.0037613433154521005,0.0,0.0,0.0,0.0,0.0,11.592280474637073,0.0,0.0,0.0 +11037,my_reservoir,2012-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11038,gw1,2012-12-11,262.49632595746573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11039,gw2,2012-12-11,262.50367404253427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11040,my_sewer,2012-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11041,my_land,2012-12-12,7.9771751152143535,percolation,0.0,0.0,0.0004902079424550158,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11042,my_land,2012-12-12,0.05242121353797802,subsurface_runoff,0.0,0.0,2.6899975546032593e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11043,my_land,2012-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.425,0.0,0.0,0.0 +11044,my_groundwater,2012-12-12,33.269588179585305,tank,0.0,0.0,0.003761919190277733,0.0,0.0,0.0,0.0,0.0,11.581030012531118,0.0,0.0,0.0 +11045,my_reservoir,2012-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11046,gw1,2012-12-12,262.4963504510826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11047,gw2,2012-12-12,262.5036495489174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11048,my_sewer,2012-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 +11049,my_land,2012-12-13,7.817631612910066,percolation,0.0,0.0,0.0004804037836059155,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 +11050,my_land,2012-12-13,0.04193697083038241,subsurface_runoff,0.0,0.0,2.1519980436826074e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 +11051,my_land,2012-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.916666667,0.0,0.0,0.0 +11052,my_groundwater,2012-12-13,33.34555885268487,tank,0.0,0.0,0.0037622940407540167,0.0,0.0,0.0,0.0,0.0,11.570083372617109,0.0,0.0,0.0 +11053,my_reservoir,2012-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11054,gw1,2012-12-13,262.49637478140875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11055,gw2,2012-12-13,262.50362521859125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11056,my_sewer,2012-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +11057,my_land,2012-12-14,7.725434362975496,percolation,0.0,0.0,0.00047426039313792413,0.0,0.0,0.0,0.0,0.0,9.256532837769155,0.0,0.0,0.0 +11058,my_land,2012-12-14,0.05100682355509004,subsurface_runoff,0.0,0.0,2.6643699190622583e-06,0.0,0.0,0.0,0.0,0.0,6.40861207151349,0.0,0.0,0.0 +11059,my_land,2012-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +11060,my_groundwater,2012-12-14,33.41946272651373,tank,0.0,0.0,0.003762542892226725,0.0,0.0,0.0,0.0,0.0,11.559196095984396,0.0,0.0,0.0 +11061,my_reservoir,2012-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11062,gw1,2012-12-14,262.4963989495327,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11063,gw2,2012-12-14,262.5036010504673,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11064,my_sewer,2012-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 +11065,my_land,2012-12-15,7.699121314453923,percolation,0.0,0.0,0.0004717420728969624,0.0,0.0,0.0,0.0,0.0,9.199253044001107,0.0,0.0,0.0 +11066,my_land,2012-12-15,0.07568862584759242,subsurface_runoff,0.0,0.0,4.027247669072046e-06,0.0,0.0,0.0,0.0,0.0,6.135696365005686,0.0,0.0,0.0 +11067,my_land,2012-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.408333333,0.0,0.0,0.0 +11068,my_groundwater,2012-12-15,33.492646182170255,tank,0.0,0.0,0.0037627398557658464,0.0,0.0,0.0,0.0,0.0,11.548152511734855,0.0,0.0,0.0 +11069,my_reservoir,2012-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11070,gw1,2012-12-15,262.4964229565358,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11071,gw2,2012-12-15,262.5035770434642,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11072,my_sewer,2012-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +11073,my_land,2012-12-16,7.912398885051923,percolation,0.0,0.0,0.00048198093582014383,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 +11074,my_land,2012-12-16,0.1604855937085715,subsurface_runoff,0.0,0.0,8.575187082501366e-06,0.0,0.0,0.0,0.0,0.0,6.065971808381955,0.0,0.0,0.0 +11075,my_land,2012-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.654166667,0.0,0.0,0.0 +11076,my_groundwater,2012-12-16,33.56998840116053,tank,0.0,0.0,0.0037631447608913416,0.0,0.0,0.0,0.0,0.0,11.536174919110506,0.0,0.0,0.0 +11077,my_reservoir,2012-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11078,gw1,2012-12-16,262.49644680349223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11079,gw2,2012-12-16,262.50355319650777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11080,my_sewer,2012-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +11081,my_land,2012-12-17,7.754150907350884,percolation,0.0,0.0,0.000472341317103741,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 +11082,my_land,2012-12-17,0.12838847496685718,subsurface_runoff,0.0,0.0,6.860149666001093e-06,0.0,0.0,0.0,0.0,0.0,6.065971808381955,0.0,0.0,0.0 +11083,my_land,2012-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9,0.0,0.0,0.0 +11084,my_groundwater,2012-12-17,33.643915787914416,tank,0.0,0.0,0.003763352418658725,0.0,0.0,0.0,0.0,0.0,11.524518868019431,0.0,0.0,0.0 +11085,my_reservoir,2012-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11086,gw1,2012-12-17,262.4964704914689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11087,gw2,2012-12-17,262.5035295085311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11088,my_sewer,2012-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 +11089,my_land,2012-12-18,7.599067889203867,percolation,0.0,0.0,0.00046289449076166616,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 +11090,my_land,2012-12-18,0.10271077997348574,subsurface_runoff,0.0,0.0,5.488119732800874e-06,0.0,0.0,0.0,0.0,0.0,6.065971808381955,0.0,0.0,0.0 +11091,my_land,2012-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.029761904999999,0.0,0.0,0.0 +11092,my_groundwater,2012-12-18,33.71450130904628,tank,0.0,0.0,0.003763367246888298,0.0,0.0,0.0,0.0,0.0,11.513173335800197,0.0,0.0,0.0 +11093,my_reservoir,2012-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11094,gw1,2012-12-18,262.4964940215258,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11095,gw2,2012-12-18,262.5035059784742,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11096,my_sewer,2012-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 +11097,my_land,2012-12-19,8.793095103184276,percolation,0.0,0.0,0.0005210096847848379,0.0,0.0,0.0,0.0,0.0,8.666571607648867,0.0,0.0,0.0 +11098,my_land,2012-12-19,0.44842945983307114,subsurface_runoff,0.0,0.0,2.2723307715058423e-05,0.0,0.0,0.0,0.0,0.0,6.448965124565558,0.0,0.0,0.0 +11099,my_land,2012-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 +11100,my_groundwater,2012-12-19,33.80921734894563,tank,0.0,0.0,0.0037645650973541973,0.0,0.0,0.0,0.0,0.0,11.498102054148587,0.0,0.0,0.0 +11101,my_reservoir,2012-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11102,gw1,2012-12-19,262.4965173947156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11103,gw2,2012-12-19,262.5034826052844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11104,my_sewer,2012-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0 +11105,my_land,2012-12-20,8.884040592733776,percolation,0.0,0.0,0.0005238703824384695,0.0,0.0,0.0,0.0,0.0,8.60689508614274,0.0,0.0,0.0 +11106,my_land,2012-12-20,0.43134421864555506,subsurface_runoff,0.0,0.0,2.1792494158258537e-05,0.0,0.0,0.0,0.0,0.0,6.487764991928905,0.0,0.0,0.0 +11107,my_land,2012-12-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.289285714,0.0,0.0,0.0 +11108,my_groundwater,2012-12-20,33.905547989068204,tank,0.0,0.0,0.003765818188824738,0.0,0.0,0.0,0.0,0.0,11.48268022908094,0.0,0.0,0.0 +11109,my_reservoir,2012-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11110,gw1,2012-12-20,262.4965406120842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11111,gw2,2012-12-20,262.5034593879158,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11112,my_sewer,2012-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0 +11113,my_land,2012-12-21,9.41144468998567,percolation,0.0,0.0,0.0005469495603637041,0.0,0.0,0.0,0.0,0.0,8.470072038829677,0.0,0.0,0.0 +11114,my_land,2012-12-21,0.5369352141291163,subsurface_runoff,0.0,0.0,2.6565039020213354e-05,0.0,0.0,0.0,0.0,0.0,6.592397186124073,0.0,0.0,0.0 +11115,my_land,2012-12-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.419047619,0.0,0.0,0.0 +11116,my_groundwater,2012-12-21,34.01237424314167,tank,0.0,0.0,0.003767537973688652,0.0,0.0,0.0,0.0,0.0,11.465710347097795,0.0,0.0,0.0 +11117,my_reservoir,2012-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11118,gw1,2012-12-21,262.49656367467026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11119,gw2,2012-12-21,262.50343632532974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11120,my_sewer,2012-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0 +11121,my_land,2012-12-22,10.016233338783367,percolation,0.0,0.0,0.0005718340017822268,0.0,0.0,0.0,0.0,0.0,8.344890937886982,0.0,0.0,0.0 +11122,my_land,2012-12-22,0.645335257724357,subsurface_runoff,0.0,0.0,3.0999904039516756e-05,0.0,0.0,0.0,0.0,0.0,6.691564532859045,0.0,0.0,0.0 +11123,my_land,2012-12-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.548809524,0.0,0.0,0.0 +11124,my_groundwater,2012-12-22,34.13124520050191,tank,0.0,0.0,0.003769760035219283,0.0,0.0,0.0,0.0,0.0,11.447066404240994,0.0,0.0,0.0 +11125,my_reservoir,2012-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11126,gw1,2012-12-22,262.4965865835058,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11127,gw2,2012-12-22,262.5034134164942,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11128,my_sewer,2012-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.448791676696904,0.0,0.0,0.0 +11129,my_land,2012-12-23,10.44967769266447,percolation,0.0,0.0,0.0005879739417140083,0.0,0.0,0.0,0.0,0.0,8.263661885199351,0.0,0.0,0.0 +11130,my_land,2012-12-23,0.6887223614602394,subsurface_runoff,0.0,0.0,3.230376539962048e-05,0.0,0.0,0.0,0.0,0.0,6.770191691084949,0.0,0.0,0.0 +11131,my_land,2012-12-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.678571429,0.0,0.0,0.0 +11132,my_groundwater,2012-12-23,34.25864266910132,tank,0.0,0.0,0.003772305104658984,0.0,0.0,0.0,0.0,0.0,11.427299375397377,0.0,0.0,0.0 +11133,my_reservoir,2012-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11134,gw1,2012-12-23,262.49660933961576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11135,gw2,2012-12-23,262.50339066038424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11136,my_sewer,2012-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.493179535499756,0.0,0.0,0.0 +11137,my_land,2012-12-24,10.623176316530415,percolation,0.0,0.0,0.0005926134312576949,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 +11138,my_land,2012-12-24,0.6550573933094803,subsurface_runoff,0.0,0.0,3.030531664023154e-05,0.0,0.0,0.0,0.0,0.0,6.826615183259081,0.0,0.0,0.0 +11139,my_land,2012-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.808333333,0.0,0.0,0.0 +11140,my_groundwater,2012-12-24,34.38925358030079,tank,0.0,0.0,0.003774938258176511,0.0,0.0,0.0,0.0,0.0,11.407147030406493,0.0,0.0,0.0 +11141,my_reservoir,2012-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11142,gw1,2012-12-24,262.4966319440183,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11143,gw2,2012-12-24,262.5033680559817,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11144,my_sewer,2012-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0 +11145,my_land,2012-12-25,10.410712790199806,percolation,0.0,0.0,0.000580761162632541,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 +11146,my_land,2012-12-25,0.5240459146475842,subsurface_runoff,0.0,0.0,2.4244253312185234e-05,0.0,0.0,0.0,0.0,0.0,6.826615183259081,0.0,0.0,0.0 +11147,my_land,2012-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.938095238,0.0,0.0,0.0 +11148,my_groundwater,2012-12-25,34.51521281386482,tank,0.0,0.0,0.0037773235504846604,0.0,0.0,0.0,0.0,0.0,11.38759354569987,0.0,0.0,0.0 +11149,my_reservoir,2012-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11150,gw1,2012-12-25,262.49665439772485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11151,gw2,2012-12-25,262.50334560227515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11152,my_sewer,2012-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0 +11153,my_land,2012-12-26,10.584027480252168,percolation,0.0,0.0,0.0005855109593183399,0.0,0.0,0.0,0.0,0.0,8.191249753745728,0.0,0.0,0.0 +11154,my_land,2012-12-26,0.5230541319510899,subsurface_runoff,0.0,0.0,2.384846929966647e-05,0.0,0.0,0.0,0.0,0.0,6.930677481820681,0.0,0.0,0.0 +11155,my_land,2012-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.067857143,0.0,0.0,0.0 +11156,my_groundwater,2012-12-26,34.644385341249574,tank,0.0,0.0,0.0037797995718517148,0.0,0.0,0.0,0.0,0.0,11.367714826111468,0.0,0.0,0.0 +11157,my_reservoir,2012-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11158,gw1,2012-12-26,262.49667670174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11159,gw2,2012-12-26,262.50332329826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11160,my_sewer,2012-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 +11161,my_land,2012-12-27,10.77439304995856,percolation,0.0,0.0,0.0005907446646483832,0.0,0.0,0.0,0.0,0.0,8.164006388702758,0.0,0.0,0.0 +11162,my_land,2012-12-27,0.527843610135412,subsurface_runoff,0.0,0.0,2.3689367144878792e-05,0.0,0.0,0.0,0.0,0.0,7.040624223243023,0.0,0.0,0.0 +11163,my_land,2012-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.197619048,0.0,0.0,0.0 +11164,my_groundwater,2012-12-27,34.77711023641346,tank,0.0,0.0,0.003782375946452428,0.0,0.0,0.0,0.0,0.0,11.347509347974256,0.0,0.0,0.0 +11165,my_reservoir,2012-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11166,gw1,2012-12-27,262.49669885706174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11167,gw2,2012-12-27,262.50330114293826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11168,my_sewer,2012-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 +11169,my_land,2012-12-28,10.663161779530801,percolation,0.0,0.0,0.0005833715364167759,0.0,0.0,0.0,0.0,0.0,8.15829512129369,0.0,0.0,0.0 +11170,my_land,2012-12-28,0.45064402839987067,subsurface_runoff,0.0,0.0,2.0160137270014695e-05,0.0,0.0,0.0,0.0,0.0,7.074570999208448,0.0,0.0,0.0 +11171,my_land,2012-12-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.327380952,0.0,0.0,0.0 +11172,my_groundwater,2012-12-28,34.90723896847717,tank,0.0,0.0,0.003784795784291924,0.0,0.0,0.0,0.0,0.0,11.327677142366568,0.0,0.0,0.0 +11173,my_reservoir,2012-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11174,gw1,2012-12-28,262.4967208646813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11175,gw2,2012-12-28,262.5032791353187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11176,my_sewer,2012-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 +11177,my_land,2012-12-29,11.283023792845789,percolation,0.0,0.0,0.0006051126282168338,0.0,0.0,0.0,0.0,0.0,8.122677163850419,0.0,0.0,0.0 +11178,my_land,2012-12-29,0.5872159707214213,subsurface_runoff,0.0,0.0,2.5218864245506586e-05,0.0,0.0,0.0,0.0,0.0,7.306728241143554,0.0,0.0,0.0 +11179,my_land,2012-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.457142857,0.0,0.0,0.0 +11180,my_groundwater,2012-12-29,35.04966099826748,tank,0.0,0.0,0.0037876521590484652,0.0,0.0,0.0,0.0,0.0,11.30667389064283,0.0,0.0,0.0 +11181,my_reservoir,2012-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11182,gw1,2012-12-29,262.49674272558343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11183,gw2,2012-12-29,262.50325727441657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11184,my_sewer,2012-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 +11185,my_land,2012-12-30,11.131628394803554,percolation,0.0,0.0,0.0005960321284270194,0.0,0.0,0.0,0.0,0.0,8.12053875107678,0.0,0.0,0.0 +11186,my_land,2012-12-30,0.48998096101650584,subsurface_runoff,0.0,0.0,2.0997337049336485e-05,0.0,0.0,0.0,0.0,0.0,7.327160796199608,0.0,0.0,0.0 +11187,my_land,2012-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.586904762,0.0,0.0,0.0 +11188,my_groundwater,2012-12-30,35.18864499523745,tank,0.0,0.0,0.00379031653983668,0.0,0.0,0.0,0.0,0.0,11.286155789192144,0.0,0.0,0.0 +11189,my_reservoir,2012-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11190,gw1,2012-12-30,262.49676444074623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11191,gw2,2012-12-30,262.50323555925377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11192,my_sewer,2012-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11193,my_land,2012-12-31,11.233045798494327,percolation,0.0,0.0,0.0005971583912225381,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11194,my_land,2012-12-31,0.4801616318300328,subsurface_runoff,0.0,0.0,2.0348047969825397e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 +11195,my_land,2012-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.716666667000001,0.0,0.0,0.0 +11196,my_groundwater,2012-12-31,35.32934610079014,tank,0.0,0.0,0.003792997187165547,0.0,0.0,0.0,0.0,0.0,11.26562677349215,0.0,0.0,0.0 +11197,my_reservoir,2012-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11198,gw1,2012-12-31,262.49678601114124,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11199,gw2,2012-12-31,262.50321398885876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11200,my_sewer,2013-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11201,my_land,2013-01-01,11.00838488252444,percolation,0.0,0.0,0.0005852152233980873,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11202,my_land,2013-01-01,0.38412930546402624,subsurface_runoff,0.0,0.0,1.6278438375860317e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 +11203,my_land,2013-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.846428571,0.0,0.0,0.0 +11204,my_groundwater,2013-01-01,35.46512199921813,tank,0.0,0.0,0.003795428004102523,0.0,0.0,0.0,0.0,0.0,11.245715080266583,0.0,0.0,0.0 +11205,my_reservoir,2013-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11206,gw1,2013-01-01,262.49680743773365,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11207,gw2,2013-01-01,262.50319256226635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11208,my_sewer,2013-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11209,my_land,2013-01-02,10.788217184873952,percolation,0.0,0.0,0.0005735109189301255,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11210,my_land,2013-01-02,0.307303444371221,subsurface_runoff,0.0,0.0,1.3022750700688253e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 +11211,my_land,2013-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 +11212,my_groundwater,2013-01-02,35.59607647262644,tank,0.0,0.0,0.0037976144777990585,0.0,0.0,0.0,0.0,0.0,11.226396258274479,0.0,0.0,0.0 +11213,my_reservoir,2013-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11214,gw1,2013-01-02,262.4968287214821,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11215,gw2,2013-01-02,262.5031712785179,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11216,my_sewer,2013-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11217,my_land,2013-01-03,10.572452841176473,percolation,0.0,0.0,0.000562040700551523,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11218,my_land,2013-01-03,0.2458427554969768,subsurface_runoff,0.0,0.0,1.0418200560550602e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 +11219,my_land,2013-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 +11220,my_groundwater,2013-01-03,35.72231121428311,tank,0.0,0.0,0.003799561984437217,0.0,0.0,0.0,0.0,0.0,11.207647110619703,0.0,0.0,0.0 +11221,my_reservoir,2013-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11222,gw1,2013-01-03,262.49684986333887,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11223,gw2,2013-01-03,262.50315013666113,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11224,my_sewer,2013-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11225,my_land,2013-01-04,10.361003784352944,percolation,0.0,0.0,0.0005507998865404925,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11226,my_land,2013-01-04,0.19667420439758143,subsurface_runoff,0.0,0.0,8.334560448440481e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 +11227,my_land,2013-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 +11228,my_groundwater,2013-01-04,35.843925870428876,tank,0.0,0.0,0.0038012757914521267,0.0,0.0,0.0,0.0,0.0,11.189445615231882,0.0,0.0,0.0 +11229,my_reservoir,2013-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11230,gw1,2013-01-04,262.49687086424996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11231,gw2,2013-01-04,262.50312913575004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11232,my_sewer,2013-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11233,my_land,2013-01-05,10.153783708665884,percolation,0.0,0.0,0.0005397838888096827,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11234,my_land,2013-01-05,0.15733936351806516,subsurface_runoff,0.0,0.0,6.667648358752385e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 +11235,my_land,2013-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 +11236,my_groundwater,2013-01-05,35.96101808125065,tank,0.0,0.0,0.003802761059709979,0.0,0.0,0.0,0.0,0.0,11.17177085132548,0.0,0.0,0.0 +11237,my_reservoir,2013-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11238,gw1,2013-01-05,262.49689172515497,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11239,gw2,2013-01-05,262.50310827484503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11240,my_sewer,2013-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11241,my_land,2013-01-06,9.950708034492566,percolation,0.0,0.0,0.0005289882110334891,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11242,my_land,2013-01-06,0.12587149081445212,subsurface_runoff,0.0,0.0,5.334118687001908e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 +11243,my_land,2013-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.495238095,0.0,0.0,0.0 +11244,my_groundwater,2013-01-06,36.07368352103541,tank,0.0,0.0,0.0038040228456424573,0.0,0.0,0.0,0.0,0.0,11.154602931319172,0.0,0.0,0.0 +11245,my_reservoir,2013-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11246,gw1,2013-01-06,262.49691244698727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11247,gw2,2013-01-06,262.50308755301273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11248,my_sewer,2013-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 +11249,my_land,2013-01-07,9.751693873802715,percolation,0.0,0.0,0.0005184084468128193,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 +11250,my_land,2013-01-07,0.1006971926515617,subsurface_runoff,0.0,0.0,4.267294949601526e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 +11251,my_land,2013-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.495238095,0.0,0.0,0.0 +11252,my_groundwater,2013-01-07,36.18201593752095,tank,0.0,0.0,0.0038050661033384695,0.0,0.0,0.0,0.0,0.0,11.137922937748312,0.0,0.0,0.0 +11253,my_reservoir,2013-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11254,gw1,2013-01-07,262.49693303067403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11255,gw2,2013-01-07,262.50306696932597,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11256,my_sewer,2013-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 +11257,my_land,2013-01-08,9.623613653175195,percolation,0.0,0.0,0.0005111694305099313,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 +11258,my_land,2013-01-08,0.09877643625690471,subsurface_runoff,0.0,0.0,4.265306063999135e-06,0.0,0.0,0.0,0.0,0.0,7.685619357765254,0.0,0.0,0.0 +11259,my_land,2013-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 +11260,my_groundwater,2013-01-08,36.28747017561678,tank,0.0,0.0,0.0038059593872012184,0.0,0.0,0.0,0.0,0.0,11.121625548809932,0.0,0.0,0.0 +11261,my_reservoir,2013-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11262,gw1,2013-01-08,262.49695347713623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11263,gw2,2013-01-08,262.50304652286377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11264,my_sewer,2013-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 +11265,my_land,2013-01-09,9.43114138011169,percolation,0.0,0.0,0.0005009460418997327,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 +11266,my_land,2013-01-09,0.07902114900552377,subsurface_runoff,0.0,0.0,3.412244851199308e-06,0.0,0.0,0.0,0.0,0.0,7.685619357765254,0.0,0.0,0.0 +11267,my_land,2013-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.496428571,0.0,0.0,0.0 +11268,my_groundwater,2013-01-09,36.388742592558586,tank,0.0,0.0,0.0038066423188718884,0.0,0.0,0.0,0.0,0.0,11.10578454414291,0.0,0.0,0.0 +11269,my_reservoir,2013-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11270,gw1,2013-01-09,262.49697378728865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11271,gw2,2013-01-09,262.50302621271135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11272,my_sewer,2013-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 +11273,my_land,2013-01-10,9.242518552509456,percolation,0.0,0.0,0.000490927121061738,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 +11274,my_land,2013-01-10,0.06321691920441902,subsurface_runoff,0.0,0.0,2.7297958809594465e-06,0.0,0.0,0.0,0.0,0.0,7.685619357765254,0.0,0.0,0.0 +11275,my_land,2013-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.932142857,0.0,0.0,0.0 +11276,my_groundwater,2013-01-10,36.485922006610416,tank,0.0,0.0,0.003807119586610608,0.0,0.0,0.0,0.0,0.0,11.090383397060627,0.0,0.0,0.0 +11277,my_reservoir,2013-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11278,gw1,2013-01-10,262.49699396204005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11279,gw2,2013-01-10,262.50300603795995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11280,my_sewer,2013-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 +11281,my_land,2013-01-11,9.134445104775567,percolation,0.0,0.0,0.00048481043296763187,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 +11282,my_land,2013-01-11,0.0714652151774944,subsurface_runoff,0.0,0.0,3.1911440046664885e-06,0.0,0.0,0.0,0.0,0.0,7.608050477573436,0.0,0.0,0.0 +11283,my_land,2013-01-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 +11284,my_groundwater,2013-01-11,36.58065840551254,tank,0.0,0.0,0.0038074711428866368,0.0,0.0,0.0,0.0,0.0,11.075250181554585,0.0,0.0,0.0 +11285,my_reservoir,2013-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11286,gw1,2013-01-11,262.4970140022931,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11287,gw2,2013-01-11,262.5029859977069,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11288,my_sewer,2013-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 +11289,my_land,2013-01-12,8.951756202680055,percolation,0.0,0.0,0.0004751142243082792,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 +11290,my_land,2013-01-12,0.05717217214199553,subsurface_runoff,0.0,0.0,2.552915203733191e-06,0.0,0.0,0.0,0.0,0.0,7.608050477573436,0.0,0.0,0.0 +11291,my_land,2013-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.803571429,0.0,0.0,0.0 +11292,my_groundwater,2013-01-12,36.67143893933903,tank,0.0,0.0,0.0038076244331671245,0.0,0.0,0.0,0.0,0.0,11.060531545361808,0.0,0.0,0.0 +11293,my_reservoir,2013-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11294,gw1,2013-01-12,262.4970339089445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11295,gw2,2013-01-12,262.5029660910555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11296,my_sewer,2013-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 +11297,my_land,2013-01-13,8.772721078626454,percolation,0.0,0.0,0.00046561193982211363,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 +11298,my_land,2013-01-13,0.04573773771359642,subsurface_runoff,0.0,0.0,2.0423321629865527e-06,0.0,0.0,0.0,0.0,0.0,7.608050477573436,0.0,0.0,0.0 +11299,my_land,2013-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.239285714,0.0,0.0,0.0 +11300,my_groundwater,2013-01-13,36.75834787823415,tank,0.0,0.0,0.003807583900859157,0.0,0.0,0.0,0.0,0.0,11.046212894974843,0.0,0.0,0.0 +11301,my_reservoir,2013-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11302,gw1,2013-01-13,262.4970536828849,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11303,gw2,2013-01-13,262.5029463171151,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11304,my_sewer,2013-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +11305,my_land,2013-01-14,8.72953497409342,percolation,0.0,0.0,0.00046280897765657537,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 +11306,my_land,2013-01-14,0.07258156895713454,subsurface_runoff,0.0,0.0,3.4050974666896467e-06,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 +11307,my_land,2013-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +11308,my_groundwater,2013-01-14,36.844160399082604,tank,0.0,0.0,0.0038074864095807323,0.0,0.0,0.0,0.0,0.0,11.031909107983019,0.0,0.0,0.0 +11309,my_reservoir,2013-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11310,gw1,2013-01-14,262.497073324999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11311,gw2,2013-01-14,262.502926675001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11312,my_sewer,2013-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +11313,my_land,2013-01-15,8.554944274611552,percolation,0.0,0.0,0.00045355279810344387,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 +11314,my_land,2013-01-15,0.05806525516570763,subsurface_runoff,0.0,0.0,2.7240779733517172e-06,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 +11315,my_land,2013-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +11316,my_groundwater,2013-01-15,36.92620422081806,tank,0.0,0.0,0.0038072007326610292,0.0,0.0,0.0,0.0,0.0,11.017990002357728,0.0,0.0,0.0 +11317,my_reservoir,2013-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11318,gw1,2013-01-15,262.4970928361657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11319,gw2,2013-01-15,262.5029071638343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11320,my_sewer,2013-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +11321,my_land,2013-01-16,8.38384538911932,percolation,0.0,0.0,0.000444481742141375,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 +11322,my_land,2013-01-16,0.04645220413256611,subsurface_runoff,0.0,0.0,2.1792623786813738e-06,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 +11323,my_land,2013-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 +11324,my_groundwater,2013-01-16,37.00455984854451,tank,0.0,0.0,0.0038067311091515405,0.0,0.0,0.0,0.0,0.0,11.004442359726555,0.0,0.0,0.0 +11325,my_reservoir,2013-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11326,gw1,2013-01-16,262.4971122172579,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11327,gw2,2013-01-16,262.5028877827421,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11328,my_sewer,2013-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 +11329,my_land,2013-01-17,8.310613536666391,percolation,0.0,0.0,0.0004404160551334162,0.0,0.0,0.0,0.0,0.0,8.046385796074881,0.0,0.0,0.0 +11330,my_land,2013-01-17,0.0628610980895786,subsurface_runoff,0.0,0.0,3.056048769576043e-06,0.0,0.0,0.0,0.0,0.0,6.084612563682026,0.0,0.0,0.0 +11331,my_land,2013-01-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 +11332,my_groundwater,2013-01-17,37.08122879591957,tank,0.0,0.0,0.003806179893929592,0.0,0.0,0.0,0.0,0.0,10.990946446777501,0.0,0.0,0.0 +11333,my_reservoir,2013-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11334,gw1,2013-01-17,262.49713146914286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11335,gw2,2013-01-17,262.50286853085714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11336,my_sewer,2013-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +11337,my_land,2013-01-18,8.361291893550554,percolation,0.0,0.0,0.0004424838569133115,0.0,0.0,0.0,0.0,0.0,7.963675849984912,0.0,0.0,0.0 +11338,my_land,2013-01-18,0.1093067363267625,subsurface_runoff,0.0,0.0,5.4043282354060415e-06,0.0,0.0,0.0,0.0,0.0,5.422251896878544,0.0,0.0,0.0 +11339,my_land,2013-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +11340,my_groundwater,2013-01-18,37.15873773747705,tank,0.0,0.0,0.0038056721512819323,0.0,0.0,0.0,0.0,0.0,10.977079511160019,0.0,0.0,0.0 +11341,my_reservoir,2013-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11342,gw1,2013-01-18,262.4971505926819,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11343,gw2,2013-01-18,262.5028494073181,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11344,my_sewer,2013-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +11345,my_land,2013-01-19,8.194066055679542,percolation,0.0,0.0,0.0004336341797750453,0.0,0.0,0.0,0.0,0.0,7.963675849984912,0.0,0.0,0.0 +11346,my_land,2013-01-19,0.08744538906141,subsurface_runoff,0.0,0.0,4.323462588324833e-06,0.0,0.0,0.0,0.0,0.0,5.422251896878544,0.0,0.0,0.0 +11347,my_land,2013-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.567857143,0.0,0.0,0.0 +11348,my_groundwater,2013-01-19,37.23264866640969,tank,0.0,0.0,0.003804985523849148,0.0,0.0,0.0,0.0,0.0,10.963579017031682,0.0,0.0,0.0 +11349,my_reservoir,2013-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11350,gw1,2013-01-19,262.4971695887307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11351,gw2,2013-01-19,262.5028304112693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11352,my_sewer,2013-01-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +11353,my_land,2013-01-20,8.085660056226105,percolation,0.0,0.0,0.00042782659144962725,0.0,0.0,0.0,0.0,0.0,7.939989472913499,0.0,0.0,0.0 +11354,my_land,2013-01-20,0.08505163687093847,subsurface_runoff,0.0,0.0,4.2383878312266215e-06,0.0,0.0,0.0,0.0,0.0,5.260577622400816,0.0,0.0,0.0 +11355,my_land,2013-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.346428571,0.0,0.0,0.0 +11356,my_groundwater,2013-01-20,37.30416798160255,tank,0.0,0.0,0.00380418238707975,0.0,0.0,0.0,0.0,0.0,10.950237728415244,0.0,0.0,0.0 +11357,my_reservoir,2013-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11358,gw1,2013-01-20,262.49718845813914,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11359,gw2,2013-01-20,262.50281154186086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11360,my_sewer,2013-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 +11361,my_land,2013-01-21,7.923946855101583,percolation,0.0,0.0,0.0004192700596206347,0.0,0.0,0.0,0.0,0.0,7.939989472913499,0.0,0.0,0.0 +11362,my_land,2013-01-21,0.06804130949675077,subsurface_runoff,0.0,0.0,3.3907102649812974e-06,0.0,0.0,0.0,0.0,0.0,5.260577622400816,0.0,0.0,0.0 +11363,my_land,2013-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.125,0.0,0.0,0.0 +11364,my_groundwater,2013-01-21,37.37221647977026,tank,0.0,0.0,0.0038032070716114705,0.0,0.0,0.0,0.0,0.0,10.937244656686795,0.0,0.0,0.0 +11365,my_reservoir,2013-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11366,gw1,2013-01-21,262.49720720175156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11367,gw2,2013-01-21,262.50279279824844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11368,my_sewer,2013-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 +11369,my_land,2013-01-22,7.915136720200032,percolation,0.0,0.0,0.0004186740972531902,0.0,0.0,0.0,0.0,0.0,7.867763581583282,0.0,0.0,0.0 +11370,my_land,2013-01-22,0.09515925227780311,subsurface_runoff,0.0,0.0,4.832143402452568e-06,0.0,0.0,0.0,0.0,0.0,4.772592379434688,0.0,0.0,0.0 +11371,my_land,2013-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 +11372,my_groundwater,2013-01-22,37.43991550751776,tank,0.0,0.0,0.00380222206234081,0.0,0.0,0.0,0.0,0.0,10.924034579799127,0.0,0.0,0.0 +11373,my_reservoir,2013-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11374,gw1,2013-01-22,262.4972258204065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11375,gw2,2013-01-22,262.5027741795935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11376,my_sewer,2013-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 +11377,my_land,2013-01-23,7.808986868745272,percolation,0.0,0.0,0.0004130457242375543,0.0,0.0,0.0,0.0,0.0,7.843673603993153,0.0,0.0,0.0 +11378,my_land,2013-01-23,0.09031866248870261,subsurface_runoff,0.0,0.0,4.612683138132894e-06,0.0,0.0,0.0,0.0,0.0,4.69216296867689,0.0,0.0,0.0 +11379,my_land,2013-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.532142857,0.0,0.0,0.0 +11380,my_groundwater,2013-01-23,37.50528438000556,tank,0.0,0.0,0.003801124937999794,0.0,0.0,0.0,0.0,0.0,10.910978263373167,0.0,0.0,0.0 +11381,my_reservoir,2013-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11382,gw1,2013-01-23,262.4972443149372,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11383,gw2,2013-01-23,262.5027556850628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11384,my_sewer,2013-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 +11385,my_land,2013-01-24,7.652807131370366,percolation,0.0,0.0,0.0004047848097528032,0.0,0.0,0.0,0.0,0.0,7.843673603993153,0.0,0.0,0.0 +11386,my_land,2013-01-24,0.07225492999096209,subsurface_runoff,0.0,0.0,3.6901465105063156e-06,0.0,0.0,0.0,0.0,0.0,4.69216296867689,0.0,0.0,0.0 +11387,my_land,2013-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.532142857,0.0,0.0,0.0 +11388,my_groundwater,2013-01-24,37.56731045708702,tank,0.0,0.0,0.0037998623878533334,0.0,0.0,0.0,0.0,0.0,10.898258342696218,0.0,0.0,0.0 +11389,my_reservoir,2013-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11390,gw1,2013-01-24,262.4972626861709,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11391,gw2,2013-01-24,262.5027373138291,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11392,my_sewer,2013-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.939285714000001,0.0,0.0,0.0 +11393,my_land,2013-01-25,7.786473514195681,percolation,0.0,0.0,0.0004115277123321216,0.0,0.0,0.0,0.0,0.0,7.7232976083887594,0.0,0.0,0.0 +11394,my_land,2013-01-25,0.1358236788098369,subsurface_runoff,0.0,0.0,6.989831160615775e-06,0.0,0.0,0.0,0.0,0.0,4.6246576559771775,0.0,0.0,0.0 +11395,my_land,2013-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.939285714,0.0,0.0,0.0 +11396,my_groundwater,2013-01-25,37.63190253462614,tank,0.0,0.0,0.0037987402603133183,0.0,0.0,0.0,0.0,0.0,10.884885004782783,0.0,0.0,0.0 +11397,my_reservoir,2013-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11398,gw1,2013-01-25,262.4972809349298,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11399,gw2,2013-01-25,262.5027190650702,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11400,my_sewer,2013-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0 +11401,my_land,2013-01-26,8.381011853722226,percolation,0.0,0.0,0.00043968659398733865,0.0,0.0,0.0,0.0,0.0,7.455273030125969,0.0,0.0,0.0 +11402,my_land,2013-01-26,0.3128134491187426,subsurface_runoff,0.0,0.0,1.5493752248726488e-05,0.0,0.0,0.0,0.0,0.0,4.69293650513479,0.0,0.0,0.0 +11403,my_land,2013-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.142857143,0.0,0.0,0.0 +11404,my_groundwater,2013-01-26,37.708436233883205,tank,0.0,0.0,0.0037981941724687055,0.0,0.0,0.0,0.0,0.0,10.869367576621292,0.0,0.0,0.0 +11405,my_reservoir,2013-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11406,gw1,2013-01-26,262.49729906203027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11407,gw2,2013-01-26,262.50270093796973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11408,my_sewer,2013-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0 +11409,my_land,2013-01-27,8.430564310800703,percolation,0.0,0.0,0.0004414011933373493,0.0,0.0,0.0,0.0,0.0,7.390458369696871,0.0,0.0,0.0 +11410,my_land,2013-01-27,0.3093453699488503,subsurface_runoff,0.0,0.0,1.525441165741857e-05,0.0,0.0,0.0,0.0,0.0,4.739978923641431,0.0,0.0,0.0 +11411,my_land,2013-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.346428571,0.0,0.0,0.0 +11412,my_groundwater,2013-01-27,37.7857873453398,tank,0.0,0.0,0.0037976843541876154,0.0,0.0,0.0,0.0,0.0,10.85356644871737,0.0,0.0,0.0 +11413,my_reservoir,2013-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11414,gw1,2013-01-27,262.4973170682834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11415,gw2,2013-01-27,262.5026829317166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11416,my_sewer,2013-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0 +11417,my_land,2013-01-28,8.4628038219495,percolation,0.0,0.0,0.0004422802791208436,0.0,0.0,0.0,0.0,0.0,7.336551890999767,0.0,0.0,0.0 +11418,my_land,2013-01-28,0.3021295741535868,subsurface_runoff,0.0,0.0,1.4844919706952893e-05,0.0,0.0,0.0,0.0,0.0,4.808563234469511,0.0,0.0,0.0 +11419,my_land,2013-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.55,0.0,0.0,0.0 +11420,my_groundwater,2013-01-28,37.86360138335185,tank,0.0,0.0,0.0037971937061271064,0.0,0.0,0.0,0.0,0.0,10.83756411421227,0.0,0.0,0.0 +11421,my_reservoir,2013-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11422,gw1,2013-01-28,262.4973349544948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11423,gw2,2013-01-28,262.5026650455052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11424,my_sewer,2013-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0 +11425,my_land,2013-01-29,8.859718468696194,percolation,0.0,0.0,0.0004597578229412687,0.0,0.0,0.0,0.0,0.0,7.205079967926501,0.0,0.0,0.0 +11426,my_land,2013-01-29,0.3957637200536678,subsurface_runoff,0.0,0.0,1.903869750783223e-05,0.0,0.0,0.0,0.0,0.0,4.9917749632724036,0.0,0.0,0.0 +11427,my_land,2013-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.842857143,0.0,0.0,0.0 +11428,my_groundwater,2013-01-29,37.94930093443479,tank,0.0,0.0,0.0037970600775430927,0.0,0.0,0.0,0.0,0.0,10.820300302392647,0.0,0.0,0.0 +11429,my_reservoir,2013-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11430,gw1,2013-01-29,262.49735272146484,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11431,gw2,2013-01-29,262.50264727853516,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11432,my_sewer,2013-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0 +11433,my_land,2013-01-30,8.837532388125185,percolation,0.0,0.0,0.0004577992819373501,0.0,0.0,0.0,0.0,0.0,7.175844483017311,0.0,0.0,0.0 +11434,my_land,2013-01-30,0.3587901022478087,subsurface_runoff,0.0,0.0,1.7200105068825447e-05,0.0,0.0,0.0,0.0,0.0,5.05602041749425,0.0,0.0,0.0 +11435,my_land,2013-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.135714286,0.0,0.0,0.0 +11436,my_groundwater,2013-01-30,38.0343345914284,tank,0.0,0.0,0.0037968869127315307,0.0,0.0,0.0,0.0,0.0,10.803061594533139,0.0,0.0,0.0 +11437,my_reservoir,2013-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11438,gw1,2013-01-30,262.4973703699884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11439,gw2,2013-01-30,262.5026296300116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11440,my_sewer,2013-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +11441,my_land,2013-01-31,8.939070132055312,percolation,0.0,0.0,0.0004615181029144282,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +11442,my_land,2013-01-31,0.36275681423161604,subsurface_runoff,0.0,0.0,1.726343279406039e-05,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 +11443,my_land,2013-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.428571429,0.0,0.0,0.0 +11444,my_groundwater,2013-01-31,38.1212226826381,tank,0.0,0.0,0.003796789885401888,0.0,0.0,0.0,0.0,0.0,10.785540304025412,0.0,0.0,0.0 +11445,my_reservoir,2013-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11446,gw1,2013-01-31,262.49738790085513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11447,gw2,2013-01-31,262.50261209914487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11448,my_sewer,2013-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +11449,my_land,2013-02-01,8.760288729414205,percolation,0.0,0.0,0.0004522877408561396,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +11450,my_land,2013-02-01,0.29020545138529286,subsurface_runoff,0.0,0.0,1.3810746235248313e-05,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 +11451,my_land,2013-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.721428571,0.0,0.0,0.0 +11452,my_groundwater,2013-02-01,38.20425407506601,tank,0.0,0.0,0.003796505196841526,0.0,0.0,0.0,0.0,0.0,10.768488545710257,0.0,0.0,0.0 +11453,my_reservoir,2013-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11454,gw1,2013-02-01,262.4974053148494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11455,gw2,2013-02-01,262.5025946851506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11456,my_sewer,2013-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +11457,my_land,2013-02-02,8.585082954825921,percolation,0.0,0.0,0.00044324198603901686,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +11458,my_land,2013-02-02,0.2321643611082343,subsurface_runoff,0.0,0.0,1.104859698819865e-05,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 +11459,my_land,2013-02-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.721428571,0.0,0.0,0.0 +11460,my_groundwater,2013-02-02,38.28351120003016,tank,0.0,0.0,0.003796037074279502,0.0,0.0,0.0,0.0,0.0,10.751890261085077,0.0,0.0,0.0 +11461,my_reservoir,2013-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11462,gw1,2013-02-02,262.4974226127504,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11463,gw2,2013-02-02,262.5025773872496,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11464,my_sewer,2013-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +11465,my_land,2013-02-03,8.413381295729403,percolation,0.0,0.0,0.0004343771463182365,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 +11466,my_land,2013-02-03,0.18573148888658744,subsurface_runoff,0.0,0.0,8.838877590558921e-06,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 +11467,my_land,2013-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.721428571,0.0,0.0,0.0 +11468,my_groundwater,2013-02-03,38.35907482697886,tank,0.0,0.0,0.003795389659215282,0.0,0.0,0.0,0.0,0.0,10.735730096177223,0.0,0.0,0.0 +11469,my_reservoir,2013-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11470,gw1,2013-02-03,262.49743979533207,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11471,gw2,2013-02-03,262.50256020466793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11472,my_sewer,2013-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 +11473,my_land,2013-02-04,8.329155917833562,percolation,0.0,0.0,0.0004298424646846155,0.0,0.0,0.0,0.0,0.0,7.129197127589859,0.0,0.0,0.0 +11474,my_land,2013-02-04,0.171453830025936,subsurface_runoff,0.0,0.0,8.201132356186935e-06,0.0,0.0,0.0,0.0,0.0,5.420396681322303,0.0,0.0,0.0 +11475,my_land,2013-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.6,0.0,0.0,0.0 +11476,my_groundwater,2013-02-04,38.43273495681017,tank,0.0,0.0,0.003794651549526895,0.0,0.0,0.0,0.0,0.0,10.719818768049931,0.0,0.0,0.0 +11477,my_reservoir,2013-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11478,gw1,2013-02-04,262.4974568633632,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11479,gw2,2013-02-04,262.5025431366368,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11480,my_sewer,2013-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +11481,my_land,2013-02-05,8.260512043477704,percolation,0.0,0.0,0.0004261129202096226,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 +11482,my_land,2013-02-05,0.16381319844273884,subsurface_runoff,0.0,0.0,7.885342570309933e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 +11483,my_land,2013-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +11484,my_groundwater,2013-02-05,38.50481354316037,tank,0.0,0.0,0.003793839362243059,0.0,0.0,0.0,0.0,0.0,10.704133178711828,0.0,0.0,0.0 +11485,my_reservoir,2013-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11486,gw1,2013-02-05,262.49747381760744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11487,gw2,2013-02-05,262.50252618239256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11488,my_sewer,2013-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +11489,my_land,2013-02-06,8.09530180260815,percolation,0.0,0.0,0.00041759066180543014,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 +11490,my_land,2013-02-06,0.13105055875419108,subsurface_runoff,0.0,0.0,6.308274056247947e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 +11491,my_land,2013-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +11492,my_groundwater,2013-02-06,38.57334872456985,tank,0.0,0.0,0.0037928557165956335,0.0,0.0,0.0,0.0,0.0,10.688855626801885,0.0,0.0,0.0 +11493,my_reservoir,2013-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11494,gw1,2013-02-06,262.4974906588234,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11495,gw2,2013-02-06,262.5025093411766,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11496,my_sewer,2013-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 +11497,my_land,2013-02-07,7.933395766555987,percolation,0.0,0.0,0.00040923884856932155,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 +11498,my_land,2013-02-07,0.10484044700335286,subsurface_runoff,0.0,0.0,5.046619244998358e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 +11499,my_land,2013-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496428571,0.0,0.0,0.0 +11500,my_groundwater,2013-02-07,38.63841662372046,tank,0.0,0.0,0.0037917045110071627,0.0,0.0,0.0,0.0,0.0,10.673972696368171,0.0,0.0,0.0 +11501,my_reservoir,2013-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11502,gw1,2013-02-07,262.4975073877646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11503,gw2,2013-02-07,262.5024926122354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11504,my_sewer,2013-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 +11505,my_land,2013-02-08,7.8735955460531,percolation,0.0,0.0,0.0004061426214974799,0.0,0.0,0.0,0.0,0.0,7.116189371345608,0.0,0.0,0.0 +11506,my_land,2013-02-08,0.1107751317056033,subsurface_runoff,0.0,0.0,5.421934824446247e-06,0.0,0.0,0.0,0.0,0.0,5.803114949883114,0.0,0.0,0.0 +11507,my_land,2013-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 +11508,my_groundwater,2013-02-08,38.702104491491525,tank,0.0,0.0,0.0037904931530958435,0.0,0.0,0.0,0.0,0.0,10.65923821545615,0.0,0.0,0.0 +11509,my_reservoir,2013-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11510,gw1,2013-02-08,262.4975240051795,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11511,gw2,2013-02-08,262.5024759948205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11512,my_sewer,2013-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 +11513,my_land,2013-02-09,7.982483535439127,percolation,0.0,0.0,0.00041139674030689415,0.0,0.0,0.0,0.0,0.0,7.0731961318885235,0.0,0.0,0.0 +11514,my_land,2013-02-09,0.16109898980178558,subsurface_runoff,0.0,0.0,7.977540033533552e-06,0.0,0.0,0.0,0.0,0.0,5.814191159809541,0.0,0.0,0.0 +11515,my_land,2013-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 +11516,my_groundwater,2013-02-09,38.76784978794852,tank,0.0,0.0,0.0037893917824264943,0.0,0.0,0.0,0.0,0.0,10.644206846895559,0.0,0.0,0.0 +11517,my_reservoir,2013-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11518,gw1,2013-02-09,262.4975405118117,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11519,gw2,2013-02-09,262.5024594881883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11520,my_sewer,2013-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +11521,my_land,2013-02-10,8.63689386461298,percolation,0.0,0.0,0.0004410261244864467,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 +11522,my_land,2013-02-10,0.3503921169795604,subsurface_runoff,0.0,0.0,1.6683343315450083e-05,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 +11523,my_land,2013-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.392857143,0.0,0.0,0.0 +11524,my_groundwater,2013-02-10,38.84675264572256,tank,0.0,0.0,0.003788896334790331,0.0,0.0,0.0,0.0,0.0,10.627351782438277,0.0,0.0,0.0 +11525,my_reservoir,2013-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11526,gw1,2013-02-10,262.4975569083996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11527,gw2,2013-02-10,262.5024430916004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11528,my_sewer,2013-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +11529,my_land,2013-02-11,8.46415598732072,percolation,0.0,0.0,0.0004322056019967178,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 +11530,my_land,2013-02-11,0.2803136935836483,subsurface_runoff,0.0,0.0,1.3346674652360067e-05,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 +11531,my_land,2013-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.025,0.0,0.0,0.0 +11532,my_groundwater,2013-02-11,38.92194179670728,tank,0.0,0.0,0.0037882225651368596,0.0,0.0,0.0,0.0,0.0,10.61094034532514,0.0,0.0,0.0 +11533,my_reservoir,2013-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11534,gw1,2013-02-11,262.4975731956769,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11535,gw2,2013-02-11,262.5024268043231,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11536,my_sewer,2013-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 +11537,my_land,2013-02-12,8.294872867574306,percolation,0.0,0.0,0.00042356148995678346,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 +11538,my_land,2013-02-12,0.22425095486691865,subsurface_runoff,0.0,0.0,1.0677339721888055e-05,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 +11539,my_land,2013-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.025,0.0,0.0,0.0 +11540,my_groundwater,2013-02-12,38.993496854162565,tank,0.0,0.0,0.0037873745104838523,0.0,0.0,0.0,0.0,0.0,10.59495771959089,0.0,0.0,0.0 +11541,my_reservoir,2013-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11542,gw1,2013-02-12,262.4975893743724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11543,gw2,2013-02-12,262.5024106256276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11544,my_sewer,2013-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11545,my_land,2013-02-13,8.647824615279912,percolation,0.0,0.0,0.0004392825129655802,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11546,my_land,2013-02-13,0.32058422105192746,subsurface_runoff,0.0,0.0,1.512479771164172e-05,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11547,my_land,2013-02-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11548,my_groundwater,2013-02-13,39.07205811312393,tank,0.0,0.0,0.0037868486110787278,0.0,0.0,0.0,0.0,0.0,10.577896226704054,0.0,0.0,0.0 +11549,my_reservoir,2013-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11550,gw1,2013-02-13,262.4976054452099,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11551,gw2,2013-02-13,262.5023945547901,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11552,my_sewer,2013-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11553,my_land,2013-02-14,8.474868122974314,percolation,0.0,0.0,0.0004304968627062686,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11554,my_land,2013-02-14,0.25646737684154197,subsurface_runoff,0.0,0.0,1.2099838169313376e-05,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11555,my_land,2013-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.807142857,0.0,0.0,0.0 +11556,my_groundwater,2013-02-14,39.146902068915956,tank,0.0,0.0,0.003786145175684694,0.0,0.0,0.0,0.0,0.0,10.56128312232937,0.0,0.0,0.0 +11557,my_reservoir,2013-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11558,gw1,2013-02-14,262.4976214089085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11559,gw2,2013-02-14,262.5023785910915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11560,my_sewer,2013-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11561,my_land,2013-02-15,8.305370760514828,percolation,0.0,0.0,0.00042188692545214326,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11562,my_land,2013-02-15,0.20517390147323358,subsurface_runoff,0.0,0.0,9.679870535450702e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11563,my_land,2013-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.807142857,0.0,0.0,0.0 +11564,my_groundwater,2013-02-15,39.218108432797,tank,0.0,0.0,0.0037852682251564725,0.0,0.0,0.0,0.0,0.0,10.545103461292857,0.0,0.0,0.0 +11565,my_reservoir,2013-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11566,gw1,2013-02-15,262.49763726618244,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11567,gw2,2013-02-15,262.50236273381756,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11568,my_sewer,2013-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11569,my_land,2013-02-16,8.139263345304531,percolation,0.0,0.0,0.0004134491869431004,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11570,my_land,2013-02-16,0.16413912117858687,subsurface_runoff,0.0,0.0,7.743896428360561e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11571,my_land,2013-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11572,my_groundwater,2013-02-16,39.28575530838728,tank,0.0,0.0,0.0037842216987563518,0.0,0.0,0.0,0.0,0.0,10.529342935899182,0.0,0.0,0.0 +11573,my_reservoir,2013-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11574,gw1,2013-02-16,262.49765301774124,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11575,gw2,2013-02-16,262.50234698225876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11576,my_sewer,2013-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11577,my_land,2013-02-17,7.976478078398441,percolation,0.0,0.0,0.0004051802032042384,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11578,my_land,2013-02-17,0.1313112969428695,subsurface_runoff,0.0,0.0,6.195117142688449e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11579,my_land,2013-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11580,my_groundwater,2013-02-17,39.34991922385514,tank,0.0,0.0,0.003783009455788976,0.0,0.0,0.0,0.0,0.0,10.51398784227249,0.0,0.0,0.0 +11581,my_reservoir,2013-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11582,gw1,2013-02-17,262.4976686642896,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11583,gw2,2013-02-17,262.5023313357104,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11584,my_sewer,2013-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11585,my_land,2013-02-18,7.816948516830472,percolation,0.0,0.0,0.00039707659914015367,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11586,my_land,2013-02-18,0.1050490375542956,subsurface_runoff,0.0,0.0,4.956093714150759e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11587,my_land,2013-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11588,my_groundwater,2013-02-18,39.41067516345955,tank,0.0,0.0,0.0037816352772034284,0.0,0.0,0.0,0.0,0.0,10.499025048811431,0.0,0.0,0.0 +11589,my_reservoir,2013-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11590,gw1,2013-02-18,262.4976842065277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11591,gw2,2013-02-18,262.5023157934723,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11592,my_sewer,2013-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11593,my_land,2013-02-19,7.660609546493863,percolation,0.0,0.0,0.0003891350671573506,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11594,my_land,2013-02-19,0.08403923004343647,subsurface_runoff,0.0,0.0,3.964874971320607e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11595,my_land,2013-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11596,my_groundwater,2013-02-19,39.46809659846167,tank,0.0,0.0,0.0037801028671632657,0.0,0.0,0.0,0.0,0.0,10.484441966605036,0.0,0.0,0.0 +11597,my_reservoir,2013-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11598,gw1,2013-02-19,262.4976996451509,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11599,gw2,2013-02-19,262.5023003548491,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11600,my_sewer,2013-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11601,my_land,2013-02-20,7.5073973555639855,percolation,0.0,0.0,0.0003813523658142036,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11602,my_land,2013-02-20,0.06723138403474918,subsurface_runoff,0.0,0.0,3.1718999770564855e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11603,my_land,2013-02-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11604,my_groundwater,2013-02-20,39.52225551741807,tank,0.0,0.0,0.003778415854585147,0.0,0.0,0.0,0.0,0.0,10.470226521668632,0.0,0.0,0.0 +11605,my_reservoir,2013-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11606,gw1,2013-02-20,262.4977149808499,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11607,gw2,2013-02-20,262.5022850191501,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11608,my_sewer,2013-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11609,my_land,2013-02-21,7.357249408452706,percolation,0.0,0.0,0.0003737253184979195,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11610,my_land,2013-02-21,0.05378510722779935,subsurface_runoff,0.0,0.0,2.5375199816451886e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11611,my_land,2013-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11612,my_groundwater,2013-02-21,39.57322245586802,tank,0.0,0.0,0.0037765777946466776,0.0,0.0,0.0,0.0,0.0,10.45636712887049,0.0,0.0,0.0 +11613,my_reservoir,2013-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11614,gw1,2013-02-21,262.4977302143109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11615,gw2,2013-02-21,262.5022697856891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11616,my_sewer,2013-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11617,my_land,2013-02-22,7.210104420283652,percolation,0.0,0.0,0.0003662508121279611,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11618,my_land,2013-02-22,0.043028085782239475,subsurface_runoff,0.0,0.0,2.0300159853161507e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11619,my_land,2013-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11620,my_groundwater,2013-02-22,39.62106652542698,tank,0.0,0.0,0.0037745921702640943,0.0,0.0,0.0,0.0,0.0,10.442852667430246,0.0,0.0,0.0 +11621,my_reservoir,2013-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11622,gw1,2013-02-22,262.4977453462155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11623,gw2,2013-02-22,262.5022546537845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11624,my_sewer,2013-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11625,my_land,2013-02-23,7.065902331877979,percolation,0.0,0.0,0.00035892579588540186,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11626,my_land,2013-02-23,0.03442246862579158,subsurface_runoff,0.0,0.0,1.6240127882529205e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11627,my_land,2013-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11628,my_groundwater,2013-02-23,39.665855442298074,tank,0.0,0.0,0.0037724623935403868,0.0,0.0,0.0,0.0,0.0,10.429672457879626,0.0,0.0,0.0 +11629,my_reservoir,2013-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11630,gw1,2013-02-23,262.4977603772407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11631,gw2,2013-02-23,262.5022396227593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11632,my_sewer,2013-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11633,my_land,2013-02-24,6.924584285240419,percolation,0.0,0.0,0.00035174727996769385,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11634,my_land,2013-02-24,0.027537974900633266,subsurface_runoff,0.0,0.0,1.2992102306023364e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11635,my_land,2013-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11636,my_groundwater,2013-02-24,39.70765555521329,tank,0.0,0.0,0.0037701918071844495,0.0,0.0,0.0,0.0,0.0,10.416816240384605,0.0,0.0,0.0 +11637,my_reservoir,2013-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11638,gw1,2013-02-24,262.4977753080591,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11639,gw2,2013-02-24,262.5022246919409,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11640,my_sewer,2013-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 +11641,my_land,2013-02-25,6.7860925995356105,percolation,0.0,0.0,0.00034471233436834,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 +11642,my_land,2013-02-25,0.02203037992050661,subsurface_runoff,0.0,0.0,1.0393681844818692e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 +11643,my_land,2013-02-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 +11644,my_groundwater,2013-02-25,39.74653187281581,tank,0.0,0.0,0.003767783685901844,0.0,0.0,0.0,0.0,0.0,10.404274154336065,0.0,0.0,0.0 +11645,my_reservoir,2013-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11646,gw1,2013-02-25,262.4977901393387,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11647,gw2,2013-02-25,262.5022098606613,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 From 142787534a035eb99d8a6e3eed2e2707fcdf3104 Mon Sep 17 00:00:00 2001 From: Dobson Date: Mon, 15 Jan 2024 10:33:31 +0000 Subject: [PATCH 07/59] Simplify custom orchestration -Update model: -- Add custom orchestration -- Load/save the custom orchestration -Update model_extensions.py -- Remove custom orchestration (this is now simplified) - Update settings_saved.yaml -- Add custom orchestration --- docs/demo/data/processed/model_extensions.py | 255 +------------------ docs/demo/data/processed/settings_saved.yaml | 18 ++ wsimod/orchestration/model.py | 83 +++--- 3 files changed, 49 insertions(+), 307 deletions(-) diff --git a/docs/demo/data/processed/model_extensions.py b/docs/demo/data/processed/model_extensions.py index b0e3d30e..b3357366 100644 --- a/docs/demo/data/processed/model_extensions.py +++ b/docs/demo/data/processed/model_extensions.py @@ -24,9 +24,6 @@ def extensions(model): model.nodes['my_reservoir'].make_abstractions = wrapper_reservoir(model.nodes['my_reservoir'], model.nodes['my_reservoir'].make_abstractions) - # Change model.run because new function has been introduced by the new node - model.run = wrapper_run(model) - def wrapper_reservoir(node, func): def reservoir_functions_wrapper(): # Initialise mass balance VQIPs @@ -54,254 +51,4 @@ def reservoir_functions_wrapper(): node.satisfy_environmental() # Call whatever else was going happen return func() - return reservoir_functions_wrapper - -def wrapper_run(self): - def run(#self, - dates = None, - settings = None, - record_arcs = None, - record_tanks = None, - verbose = True, - record_all = True, - other_attr = {}): - """Run the model object with the default orchestration - - Args: - dates (list, optional): Dates to simulate. Defaults to None, which - simulates all dates that the model has data for. - settings (dict, optional): Dict to specify what results are stored, - not currently used. Defaults to None. - record_arcs (list, optional): List of arcs to store result for. - Defaults to None. - record_tanks (list, optional): List of nodes with water stores to - store results for. Defaults to None. - verbose (bool, optional): Prints updates on simulation if true. - Defaults to True. - record_all (bool, optional): Specifies to store all results. - Defaults to True. - other_attr (dict, optional): Dict to store additional attributes of - specified nodes/arcs. Example: - {'arc.name1': ['arc.attribute1'], - 'arc.name2': ['arc.attribute1', 'arc.attribute2'], - 'node.name1': ['node.attribute1'], - 'node.name2': ['node.attribute1', 'node.attribute2']} - Defaults to None. - - Returns: - flows: simulated flows in a list of dicts - tanks: simulated tanks storages in a list of dicts - node_mb: mass balance differences in a list of dicts (not currently used) - surfaces: simulated surface storages of land nodes in a list of dicts - requested_attr: timeseries of attributes of specified nodes/arcs requested by the users - """ - - if record_arcs is None: - record_arcs = self.arcs.keys() - - if record_tanks is None: - record_tanks = [] - - if settings is None: - settings = self.default_settings() - - def blockPrint(): - stdout = sys.stdout - sys.stdout = open(os.devnull, 'w') - return stdout - def enablePrint(stdout): - sys.stdout = stdout - if not verbose: - stdout = blockPrint() - if dates is None: - dates = self.dates - - flows = [] - tanks = [] - node_mb = [] - surfaces = [] - for date in tqdm(dates, disable = (not verbose)): - # for date in dates: - for node in self.nodelist: - node.t = date - node.monthyear = date.to_period('M') - - #Run FWTW - for node in self.nodes_type['FWTW'].values(): - node.treat_water() - - #Create demand (gets pushed to sewers) - for node in self.nodes_type['Demand'].values(): - node.create_demand() - - #Create runoff (impervious gets pushed to sewers, pervious to groundwater) - for node in self.nodes_type['Land'].values(): - node.run() - - #Infiltrate GW - for node in self.nodes_type['Groundwater'].values(): - node.infiltrate() - for node in self.nodes_type['Groundwater_h'].values(): - node.infiltrate() - - #Discharge sewers (pushed to other sewers or WWTW) - for node in self.nodes_type['Sewer'].values(): - node.make_discharge() - - #Foul second so that it can discharge any misconnection - for node in self.nodes_type['Foul'].values(): - node.make_discharge() - - #Discharge WWTW - for node in self.nodes_type['WWTW'].values(): - node.calculate_discharge() - - #Discharge GW - for node in self.nodes_type['Groundwater'].values(): - node.distribute() - - for node in self.nodes_type['Groundwater_h'].values(): - node.distribute_gw_gw() - for node in self.nodes_type['Groundwater_h'].values(): - node.distribute_gw_rw() - - #river - # for node in self.nodes_type['Lake'].values(): - # node.calculate_discharge() - for node in self.nodes_type['River'].values(): - node.calculate_discharge() - - #Abstract - for node in self.nodes_type['Reservoir'].values(): - node.make_abstractions() - - for node in self.nodes_type['Land'].values(): - node.apply_irrigation() - - for node in self.nodes_type['WWTW'].values(): - node.make_discharge() - - #Catchment routing - for node in self.nodes_type['Catchment'].values(): - node.route() - - #river - # for node in self.nodes_type['Lake'].values(): - # node.distribute() - for node_name in self.river_discharge_order: - self.nodes[node_name].distribute() - - - #mass balance checking - #nodes/system - sys_in = self.empty_vqip() - sys_out = self.empty_vqip() - sys_ds = self.empty_vqip() - - #arcs - for arc in self.arcs.values(): - in_, ds_, out_ = arc.arc_mass_balance() - for v in constants.ADDITIVE_POLLUTANTS + ['volume']: - sys_in[v] += in_[v] - sys_out[v] += out_[v] - sys_ds[v] += ds_[v] - for node in self.nodelist: - # print(node.name) - in_, ds_, out_ = node.node_mass_balance() - - # temp = {'name' : node.name, - # 'time' : date} - # for lab, dict_ in zip(['in','ds','out'], [in_, ds_, out_]): - # for key, value in dict_.items(): - # temp[(lab, key)] = value - # node_mb.append(temp) - - for v in constants.ADDITIVE_POLLUTANTS + ['volume']: - sys_in[v] += in_[v] - sys_out[v] += out_[v] - sys_ds[v] += ds_[v] - - for v in constants.ADDITIVE_POLLUTANTS + ['volume']: - - #Find the largest value of in_, out_, ds_ - largest = max(sys_in[v], sys_in[v], sys_in[v]) - - if largest > constants.FLOAT_ACCURACY: - #Convert perform comparison in a magnitude to match the largest value - magnitude = 10**int(log10(largest)) - in_10 = sys_in[v] / magnitude - out_10 = sys_in[v] / magnitude - ds_10 = sys_in[v] / magnitude - else: - in_10 = sys_in[v] - ds_10 = sys_in[v] - out_10 = sys_in[v] - - if (in_10 - ds_10 - out_10) > constants.FLOAT_ACCURACY: - print("system mass balance error for " + v + " of " + str(sys_in[v] - sys_ds[v] - sys_out[v])) - - #Store results - for arc in record_arcs: - arc = self.arcs[arc] - flows.append({'arc' : arc.name, - 'flow' : arc.vqip_out['volume'], - 'time' : date}) - for pol in constants.POLLUTANTS: - flows[-1][pol] = arc.vqip_out[pol] - - for node in record_tanks: - node = self.nodes[node] - tanks.append({'node' : node.name, - 'storage' : node.tank.storage['volume'], - 'time' : date}) - if record_all: - for node in self.nodes.values(): - for prop_ in dir(node): - prop = node.__getattribute__(prop_) - if prop.__class__ in [QueueTank, Tank, ResidenceTank]: - tanks.append({'node' : node.name, - 'time' : date, - 'storage' : prop.storage['volume'], - 'prop' : prop_}) - for pol in constants.POLLUTANTS: - tanks[-1][pol] = prop.storage[pol] - - for name, node in self.nodes_type['Land'].items(): - for surface in node.surfaces: - if not isinstance(surface,ImperviousSurface): - surfaces.append({'node' : name, - 'surface' : surface.surface, - 'percolation' : surface.percolation['volume'], - 'subsurface_r' : surface.subsurface_flow['volume'], - 'surface_r' : surface.infiltration_excess['volume'], - 'storage' : surface.storage['volume'], - 'evaporation' : surface.evaporation['volume'], - 'precipitation' : surface.precipitation['volume'], - 'tank_recharge' : surface.tank_recharge, - 'capacity' : surface.capacity, - 'time' : date, - 'et0_coef' : surface.et0_coefficient, - # 'crop_factor' : surface.crop_factor - }) - for pol in constants.POLLUTANTS: - surfaces[-1][pol] = surface.storage[pol] - else: - surfaces.append({'node' : name, - 'surface' : surface.surface, - 'storage' : surface.storage['volume'], - 'evaporation' : surface.evaporation['volume'], - 'precipitation' : surface.precipitation['volume'], - 'capacity' : surface.capacity, - 'time' : date}) - for pol in constants.POLLUTANTS: - surfaces[-1][pol] = surface.storage[pol] - - for node in self.nodes.values(): - node.end_timestep() - - for arc in self.arcs.values(): - arc.end_timestep() - if not verbose: - enablePrint(stdout) - return flows, tanks, node_mb, surfaces - return run \ No newline at end of file + return reservoir_functions_wrapper \ No newline at end of file diff --git a/docs/demo/data/processed/settings_saved.yaml b/docs/demo/data/processed/settings_saved.yaml index 97497237..24266e30 100644 --- a/docs/demo/data/processed/settings_saved.yaml +++ b/docs/demo/data/processed/settings_saved.yaml @@ -127,6 +127,24 @@ arcs: in_port: gw2 out_port: gw1 +orchestration: +- FWTW: treat_water +- Demand: create_demand +- Land: run +- Groundwater: infiltrate +- Groundwater_h: infiltrate +- Sewer: make_discharge +- Foul: make_discharge +- WWTW: calculate_discharge +- Groundwater: distribute +- Groundwater_h: distribute_gw_gw +- Groundwater_h: distribute_gw_rw +- River: calculate_discharge +- Reservoir: make_abstractions +- Land: apply_irrigation +- WWTW: make_discharge +- Catchment: route + pollutants: - do - org-phosphorus diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 584c55ab..2493d207 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -144,6 +144,22 @@ def __init__(self): # self.arcs_type = {} #not sure that this would be necessary self.nodes = {} self.nodes_type = {} + + # Default orchestration + self.orchestration = [{'FWTW' : 'treat_water'}, + {'Demand' : 'create_demand'}, + {'Land' : 'run'}, + {'Groundwater' : 'infiltrate'}, + {'Sewer' : 'make_discharge'}, + {'Foul' : 'make_discharge'}, + {'WWTW' : 'calculate_discharge'}, + {'Groundwater' : 'distribute'}, + {'River' : 'calculate_discharge'}, + {'Reservoir' : 'make_abstractions'}, + {'Land' : 'apply_irrigation'}, + {'WWTW' : 'make_discharge'}, + {'Catchment' : 'route'}] + def all_subclasses(cls): """ @@ -197,7 +213,7 @@ def load(self, address, config_name="config.yml", overrides={}): """ FLAG: - E.G. ADDITION FOR NEW CLASSES + E.G. ADDITION FOR NEW CLASSES AND ORCHESTRATION """ if 'extensions' in data.keys(): @@ -208,7 +224,11 @@ def load(self, address, config_name="config.yml", overrides={}): new_node = __import__(class_name, fromlist=['']) setattr(wsimod.nodes, class_name, getattr(new_node, class_name)) self.nodes_type[class_name] = {} - + + if 'orchestration' in data.keys(): + # Update orchestration + self.orchestration = data['orchestration'] + nodes = data["nodes"] for name, node in nodes.items(): @@ -337,6 +357,7 @@ def save(self, address, config_name="config.yml", compress=False): data = { "nodes": nodes, "arcs": arcs, + "orchestration" : self.orchestration, "pollutants": constants.POLLUTANTS, "additive_pollutants": constants.ADDITIVE_POLLUTANTS, "non_additive_pollutants": constants.NON_ADDITIVE_POLLUTANTS, @@ -768,57 +789,13 @@ def enablePrint(stdout): for node in self.nodelist: node.t = date node.monthyear = date.to_period("M") - - # Run FWTW - for node in self.nodes_type["FWTW"].values(): - node.treat_water() - - # Create demand (gets pushed to sewers) - for node in self.nodes_type["Demand"].values(): - node.create_demand() - - # Create runoff (impervious gets pushed to sewers, pervious to groundwater) - for node in self.nodes_type["Land"].values(): - node.run() - - # Infiltrate GW - for node in self.nodes_type["Groundwater"].values(): - node.infiltrate() - - # Discharge sewers (pushed to other sewers or WWTW) - for node in self.nodes_type["Sewer"].values(): - node.make_discharge() - - # Foul second so that it can discharge any misconnection - for node in self.nodes_type["Foul"].values(): - node.make_discharge() - - # Discharge WWTW - for node in self.nodes_type["WWTW"].values(): - node.calculate_discharge() - - # Discharge GW - for node in self.nodes_type["Groundwater"].values(): - node.distribute() - - # river - for node in self.nodes_type["River"].values(): - node.calculate_discharge() - - # Abstract - for node in self.nodes_type["Reservoir"].values(): - node.make_abstractions() - - for node in self.nodes_type["Land"].values(): - node.apply_irrigation() - - for node in self.nodes_type["WWTW"].values(): - node.make_discharge() - - # Catchment routing - for node in self.nodes_type["Catchment"].values(): - node.route() - + + # Iterate over orchestration + for timestep_item in self.orchestration: + for node_type, function in timestep_item.items(): + for node in self.nodes_type[node_type].values(): + getattr(node, function)() + # river for node_name in self.river_discharge_order: self.nodes[node_name].distribute() From 1bea5e7d24c3e2165cfea7759d28e3f52edd4445 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 11:01:03 +0000 Subject: [PATCH 08/59] Apply overrides in Tank --- wsimod/nodes/nodes.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index 4f9c1e4a..dd73310f 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -793,7 +793,25 @@ def __init__(self, capacity=0, area=1, datum=10, initial_storage=0): else: self.storage = self.empty_vqip() self.storage_ = self.empty_vqip() # Lagged storage for mass balance + + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the tank. + Enables a user to override any of the following parameters: + area, capacity, datum. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.capacity = overrides.pop("capacity", + self.capacity) + self.area = overrides.pop("area", + self.area) + self.datum = overrides.pop("datum", + self.datum) + if len(overrides) > 0: + print(f"No override behaviour defined for: {overrides.keys()}") + def ds(self): """Should be called by parent object to get change in storage. From 5805efc3e167a7f4c8a9571a96b457189744e992 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 11:05:59 +0000 Subject: [PATCH 09/59] Apply overrides in ResidenceTank --- wsimod/nodes/nodes.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index dd73310f..4c33fd16 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -1117,6 +1117,19 @@ def __init__(self, residence_time=2, **kwargs): self.residence_time = residence_time super().__init__(**kwargs) + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the residencetank. + + Enables a user to override any of the following parameters: + residence_time. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.residence_time = overrides.pop("residence_time", + self.residence_time) + super().apply_overrides(overrides) + def pull_outflow(self): """Pull storage by residence time from the tank, updating tank storage. From 663a0533da71b31bce1e6a8dd1b6dd9b1cebe831 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 11:07:00 +0000 Subject: [PATCH 10/59] Apply overrides in DecayTank --- wsimod/nodes/nodes.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index 4c33fd16..c46af4d0 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -1173,6 +1173,19 @@ def __init__(self, decays={}, parent=None, **kwargs): self.end_timestep = self.end_timestep_decay self.ds = self.decay_ds + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the decaytank. + + Enables a user to override any of the following parameters: + decays. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.decays = overrides.pop("decays", + self.decays) + super().apply_overrides(overrides) + def end_timestep_decay(self): """Update state variables and call make_decay.""" self.total_decayed = self.empty_vqip() From 2088468681f57298a041587319c353f2b996ce0e Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 11:07:49 +0000 Subject: [PATCH 11/59] Apply overrides in QueueTank --- wsimod/nodes/nodes.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index c46af4d0..769dd481 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -1234,6 +1234,20 @@ def __init__(self, number_of_timesteps=0, **kwargs): # TODO should mass balance call internal arc (is this arc called in arc mass # balance?) + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the queuetank. + + Enables a user to override any of the following parameters: + number_of_timesteps. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.number_of_timesteps = overrides.pop("number_of_timesteps", + self.number_of_timesteps) + self.internal_arc.number_of_timesteps = self.number_of_timesteps + super().apply_overrides(overrides) + def get_avail(self): """Return the active_storage of the tank. From 7f40fc8fadb546f6c88c99de9fe49bb78ac780a5 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 11:08:31 +0000 Subject: [PATCH 12/59] Apply overrides in DecayQueueTank --- wsimod/nodes/nodes.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index 769dd481..31a071e1 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -1416,6 +1416,22 @@ def __init__(self, decays={}, parent=None, number_of_timesteps=1, **kwargs): self.end_timestep = self._end_timestep + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the decayqueuetank. + + Enables a user to override any of the following parameters: + number_of_timesteps, decays. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.number_of_timesteps = overrides.pop("number_of_timesteps", + self.number_of_timesteps) + self.internal_arc.number_of_timesteps = self.number_of_timesteps + self.internal_arc.decays = overrides.pop("decays", + self.internal_arc.decays) + super().apply_overrides(overrides) + def _end_timestep(self): """End timestep wrapper that removes decayed pollutants and calls internal arc.""" From 19a47d7aa807c460cba56c01f7a21792f5142938 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 11:09:43 +0000 Subject: [PATCH 13/59] Add overrides test for Tank and its superclasses --- tests/test_nodes.py | 56 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/tests/test_nodes.py b/tests/test_nodes.py index b285f712..9989f80c 100644 --- a/tests/test_nodes.py +++ b/tests/test_nodes.py @@ -660,6 +660,62 @@ def test_decay_queue(self): } self.assertDictAlmostEqual(d4, tank.storage, 15) + def test_overrides(self): + # node - no need to test + # tank + tank = Tank(capacity=10, area=8, datum = 4) + tank.apply_overrides({'capacity': 3, + 'area': 2, + 'datum': 3.5}) + self.assertEqual(tank.capacity, 3) + self.assertEqual(tank.area, 2) + self.assertEqual(tank.datum, 3.5) + # residence tank + tank = ResidenceTank(capacity=10, area=8, datum = 4, residence_time = 8) + tank.apply_overrides({'capacity': 3, + 'area': 2, + 'datum': 3.5, + 'residence_time': 6}) + self.assertEqual(tank.capacity, 3) + self.assertEqual(tank.area, 2) + self.assertEqual(tank.datum, 3.5) + self.assertEqual(tank.residence_time, 6) + # decay tank + tank = DecayTank(capacity=10, area=8, datum = 4, decays = {'phosphate' : {'constant' : 0.001, 'exponent' : 1.005}}) + tank.apply_overrides({'capacity': 3, + 'area': 2, + 'datum': 3.5, + 'decays': {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}} + }) + self.assertEqual(tank.capacity, 3) + self.assertEqual(tank.area, 2) + self.assertEqual(tank.datum, 3.5) + self.assertDictEqual(tank.decays, {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}}) + # queue tank + tank = QueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8) + tank.apply_overrides({'capacity': 3, + 'area': 2, + 'datum': 3.5, + 'number_of_timesteps': 6}) + self.assertEqual(tank.capacity, 3) + self.assertEqual(tank.area, 2) + self.assertEqual(tank.datum, 3.5) + self.assertEqual(tank.number_of_timesteps, 6) + self.assertEqual(tank.internal_arc.number_of_timesteps, 6) + # decay queue tank + tank = DecayQueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8, decays = {'phosphate' : {'constant' : 0.001, 'exponent' : 1.005}}) + tank.apply_overrides({'capacity': 3, + 'area': 2, + 'datum': 3.5, + 'number_of_timesteps': 6, + 'decays': {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}} + }) + self.assertEqual(tank.capacity, 3) + self.assertEqual(tank.area, 2) + self.assertEqual(tank.datum, 3.5) + self.assertEqual(tank.number_of_timesteps, 6) + self.assertEqual(tank.internal_arc.number_of_timesteps, 6) + self.assertDictEqual(tank.internal_arc.decays, {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}}) if __name__ == "__main__": unittest.main() From 072cd36ac2ca8773da5ba7e447c5e7e50aa9fe66 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 19:59:43 +0000 Subject: [PATCH 14/59] Improve decays override --- wsimod/nodes/nodes.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index 31a071e1..3af4ef79 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -1182,8 +1182,7 @@ def apply_overrides(self, overrides: Dict[str, Any] = {}): Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.decays = overrides.pop("decays", - self.decays) + self.decays.update(overrides.pop("decays", {})) super().apply_overrides(overrides) def end_timestep_decay(self): @@ -1428,8 +1427,7 @@ def apply_overrides(self, overrides: Dict[str, Any] = {}): self.number_of_timesteps = overrides.pop("number_of_timesteps", self.number_of_timesteps) self.internal_arc.number_of_timesteps = self.number_of_timesteps - self.internal_arc.decays = overrides.pop("decays", - self.internal_arc.decays) + self.internal_arc.decays.update(overrides.pop("decays", {})) super().apply_overrides(overrides) def _end_timestep(self): From 60e4b20e8e5881a72ac714058ccf77b43189eb81 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Mon, 4 Mar 2024 20:00:13 +0000 Subject: [PATCH 15/59] Update test_decaytank_overrides --- tests/test_nodes.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_nodes.py b/tests/test_nodes.py index 9989f80c..fd7ab690 100644 --- a/tests/test_nodes.py +++ b/tests/test_nodes.py @@ -681,7 +681,7 @@ def test_overrides(self): self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.residence_time, 6) # decay tank - tank = DecayTank(capacity=10, area=8, datum = 4, decays = {'phosphate' : {'constant' : 0.001, 'exponent' : 1.005}}) + tank = DecayTank(capacity=10, area=8, datum = 4, decays = {'nitrate' : {'constant' : 0.001, 'exponent' : 1.005}}) tank.apply_overrides({'capacity': 3, 'area': 2, 'datum': 3.5, @@ -690,7 +690,9 @@ def test_overrides(self): self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) - self.assertDictEqual(tank.decays, {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}}) + self.assertDictEqual(tank.decays, {'nitrate' : {'constant' : 0.001, 'exponent' : 1.005}, + 'phosphate' : {'constant' : 1.001, 'exponent' : 10.005} + }) # queue tank tank = QueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8) tank.apply_overrides({'capacity': 3, From 5df6d55f255c3f44b7a24cf0b827fd23f408e47c Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 16 Mar 2024 09:50:01 +0000 Subject: [PATCH 16/59] Apply overrides in Sewer --- tests/test_sewer.py | 18 ++++++++++++++++++ wsimod/nodes/sewer.py | 31 ++++++++++++++++++++++++++++++- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/tests/test_sewer.py b/tests/test_sewer.py index 0ca4a289..b37a8052 100644 --- a/tests/test_sewer.py +++ b/tests/test_sewer.py @@ -91,6 +91,24 @@ def test_make_discharge(self): d3 = {"volume": 7, "phosphate": 7 * 2 / 9, "temperature": 10} self.assertDictAlmostEqual(d3, sewer.sewer_tank.storage, 15) + def test_sewer_overrides(self): + sewer = Sewer(name="", capacity=10, pipe_timearea={0: 0.3, 1: 0.7}) + sewer.apply_overrides({'capacity': 3, + 'chamber_area': 2, + 'chamber_floor': 3.5, + 'pipe_time': 8.4, + 'pipe_timearea': {0: 0.5, 1: 0.5} + }) + self.assertEqual(sewer.capacity, 3) + self.assertEqual(sewer.sewer_tank.capacity, 3) + self.assertEqual(sewer.chamber_area, 2) + self.assertEqual(sewer.sewer_tank.area, 2) + self.assertEqual(sewer.chamber_floor, 3.5) + self.assertEqual(sewer.sewer_tank.datum, 3.5) + self.assertEqual(sewer.pipe_time, 8.4) + self.assertEqual(sewer.pipe_timearea, {0: 0.5, + 1: 0.5 + }) if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/sewer.py b/wsimod/nodes/sewer.py index af566658..11ad2dcc 100644 --- a/wsimod/nodes/sewer.py +++ b/wsimod/nodes/sewer.py @@ -6,7 +6,7 @@ """ from wsimod.core import constants from wsimod.nodes.nodes import Node, QueueTank - +from typing import Any, Dict class Sewer(Node): """""" @@ -112,6 +112,35 @@ def __init__( # Mass balance self.mass_balance_ds.append(lambda: self.sewer_tank.ds()) + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the sewer. + + Enables a user to override any of the following parameters: + capacity, chamber_area, chamber_floor, pipe_time, pipe_timearea. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.capacity = overrides.pop("capacity", + self.capacity) + self.chamber_area = overrides.pop("chamber_area", + self.chamber_area) + self.chamber_floor = overrides.pop("chamber_floor", + self.chamber_floor) + self.sewer_tank.capacity = self.capacity + self.sewer_tank.area = self.chamber_area + self.sewer_tank.datum = self.chamber_floor + + self.pipe_time = overrides.pop("pipe_time", + self.pipe_time) + if 'pipe_timearea' in overrides.keys(): + pipe_timearea_sum = sum([v for k,v in overrides['pipe_timearea'].items()]) + if pipe_timearea_sum != 1: + print('ERROR: the sum of pipe_timearea in the overrides dict is not equal to 1, please check it') + self.pipe_timearea = overrides.pop("pipe_timearea", + self.pipe_timearea) + super().apply_overrides(overrides) + def push_check_sewer(self, vqip=None): """Generic push check, simply looks at excess. From b649e363001e5089f9483273d1aece82332bff65 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 16 Mar 2024 14:22:44 +0000 Subject: [PATCH 17/59] Apply overrides in Distribution --- tests/test_distribution.py | 4 ++++ wsimod/nodes/distribution.py | 25 +++++++++++++++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/tests/test_distribution.py b/tests/test_distribution.py index aeaabc74..239400e3 100644 --- a/tests/test_distribution.py +++ b/tests/test_distribution.py @@ -67,6 +67,10 @@ def test_leakage(self): self.assertEqual(v2, arc1.vqip_in["volume"]) self.assertEqual(v2 * 0.2, arc2.vqip_in["volume"]) + def test_distribution_overrides(self): + distribution = Distribution(name="", leakage=0.2) + distribution.apply_overrides({'leakage': 0}) + self.assertEqual(distribution.leakage, 0) if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/distribution.py b/wsimod/nodes/distribution.py index 63a7cc0b..fece94d9 100644 --- a/wsimod/nodes/distribution.py +++ b/wsimod/nodes/distribution.py @@ -6,7 +6,7 @@ from wsimod.core import constants from wsimod.nodes.nodes import Node - +from typing import Any, Dict def decorate_leakage_set(self, f): """Decorator to extend the functionality of `f` by introducing leakage. This is @@ -125,15 +125,32 @@ def __init__(self, leakage=0, **kwargs): # Update handlers self.push_set_handler["default"] = self.push_set_deny self.push_check_handler["default"] = self.push_check_deny - - if leakage > 0: + self.decorate_pull_handlers() + + def decorate_pull_handlers(self): + """Decorate handlers if there is leakage ratio. + """ + if self.leakage > 0: self.pull_set_handler["default"] = decorate_leakage_set( self, self.pull_set_handler["default"] ) self.pull_check_handler["default"] = decorate_leakage_check( self, self.pull_check_handler["default"] ) - + + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the sewer. + + Enables a user to override any of the following parameters: + leakage. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.leakage = overrides.pop("leakage", + self.leakage) + self.decorate_pull_handlers() + super().apply_overrides(overrides) class UnlimitedDistribution(Distribution): """""" From 1ab05cfd9fedc3f476ca32aeaa2871b69d952655 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 16 Mar 2024 15:16:53 +0000 Subject: [PATCH 18/59] Apply overrides in Demand and ResidentialDemand --- tests/test_demand.py | 33 ++++++++++++++++++++++++++++++++- wsimod/nodes/demand.py | 40 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 70 insertions(+), 3 deletions(-) diff --git a/tests/test_demand.py b/tests/test_demand.py index 6032c953..3c870fa1 100644 --- a/tests/test_demand.py +++ b/tests/test_demand.py @@ -118,7 +118,38 @@ def test_garden_demand(self): d1 = {"volume": 0.03 * 0.4, "temperature": 0, "phosphate": 0} self.assertDictAlmostEqual(d1, reply) - + + def test_demand_overrides(self): + demand = Demand( + name="", + constant_demand=10, + pollutant_load={"phosphate": 0.1, "temperature": 12}, + ) + demand.apply_overrides({"constant_demand": 20, + "pollutant_load": {"phosphate": 0.5} + }) + self.assertEqual(demand.constant_demand, 20) + self.assertDictEqual(demand.pollutant_load, {"phosphate": 0.5, "temperature": 12}) + + def test_residentialdemand_overrides(self): + demand = ResidentialDemand(name="", gardening_efficiency=0.4, pollutant_load={"phosphate": 0.1, "temperature": 12}) + demand.apply_overrides({"gardening_efficiency": 0.5, + "population": 153.2, + "per_capita": 32.4, + "constant_weighting": 47.5, + "constant_temp": 0.71, + + "constant_demand": 20, + "pollutant_load": {"phosphate": 0.5} + }) + self.assertEqual(demand.gardening_efficiency, 0.5) + self.assertEqual(demand.population, 153.2) + self.assertEqual(demand.per_capita, 32.4) + self.assertEqual(demand.constant_weighting, 47.5) + self.assertEqual(demand.constant_temp, 0.71) + + self.assertEqual(demand.constant_demand, 20) + self.assertDictEqual(demand.pollutant_load, {"phosphate": 0.5, "temperature": 12}) if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/demand.py b/wsimod/nodes/demand.py index 131ac80d..0755e220 100644 --- a/wsimod/nodes/demand.py +++ b/wsimod/nodes/demand.py @@ -7,7 +7,7 @@ """ from wsimod.core import constants from wsimod.nodes.nodes import Node - +from typing import Any, Dict class Demand(Node): """""" @@ -28,7 +28,7 @@ def __init__( is used. Defaults to 0. pollutant_load (dict, optional): Pollutant mass per timestep of constant_demand. - Defaults to {}. + Defaults to 0. data_input_dict (dict, optional): Dictionary of data inputs relevant for the node (temperature). Keys are tuples where first value is the name of the variable to read from the dict and the second value is the time. @@ -61,6 +61,20 @@ def __init__( self.mass_balance_out.append(lambda: self.total_backup) self.mass_balance_out.append(lambda: self.total_received) + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the sewer. + + Enables a user to override any of the following parameters: + constant_demand, pollutant_load. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.constant_demand = overrides.pop("constant_demand", + self.constant_demand) + self.pollutant_load.update(overrides.pop("pollutant_load", {})) + super().apply_overrides(overrides) + def create_demand(self): """Function to call get_demand, which should return a dict with keys that match the keys in directions. @@ -198,6 +212,28 @@ def __init__( # Label as Demand class so that other nodes treat it the same self.__class__.__name__ = "Demand" + def apply_overrides(self, overrides: Dict[str, Any] = {}): + """Apply overrides to the sewer. + + Enables a user to override any of the following parameters: + gardening_efficiency, population, per_capita, constant_weighting, constant_temp. + + Args: + overrides (dict, optional): Dictionary of overrides. Defaults to {}. + """ + self.gardening_efficiency = overrides.pop("gardening_efficiency", + self.gardening_efficiency) + self.population = overrides.pop("population", + self.population) + self.per_capita = overrides.pop("per_capita", + self.per_capita) + self.constant_weighting = overrides.pop("constant_weighting", + self.constant_weighting) + self.constant_temp = overrides.pop("constant_temp", + self.constant_temp) + self.pollutant_load.update(overrides.pop("pollutant_load", {})) + super().apply_overrides(overrides) + def get_demand(self): """Overwrite get_demand and replace with custom functions. From c64b57ae681697bc9cb3b6e4797d2ac2a065843c Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 16 Mar 2024 15:20:05 +0000 Subject: [PATCH 19/59] Remove duplicated pollutant_load overrides --- wsimod/nodes/demand.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wsimod/nodes/demand.py b/wsimod/nodes/demand.py index 0755e220..bd85dfaf 100644 --- a/wsimod/nodes/demand.py +++ b/wsimod/nodes/demand.py @@ -231,7 +231,6 @@ def apply_overrides(self, overrides: Dict[str, Any] = {}): self.constant_weighting) self.constant_temp = overrides.pop("constant_temp", self.constant_temp) - self.pollutant_load.update(overrides.pop("pollutant_load", {})) super().apply_overrides(overrides) def get_demand(self): From 9942e437e867378f97ca7c120ec0a3a763fc7a7f Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 16 Mar 2024 19:40:53 +0000 Subject: [PATCH 20/59] Apply overrides in FWTW --- tests/test_wtw.py | 22 +++++++++++++++++++++- wsimod/nodes/wtw.py | 25 +++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/tests/test_wtw.py b/tests/test_wtw.py index 1a2061f9..56bf0638 100644 --- a/tests/test_wtw.py +++ b/tests/test_wtw.py @@ -10,7 +10,7 @@ from unittest import TestCase from wsimod.core import constants -from wsimod.nodes.wtw import WTW, WWTW +from wsimod.nodes.wtw import WTW, WWTW, FWTW class MyTestClass(TestCase): @@ -113,6 +113,26 @@ def test_wwtw_overrides(self): self.assertEqual(wwtw.process_parameters['phosphate']['constant'], 0.01) self.assertEqual(wwtw.process_parameters['volume']['constant'], vol) self.assertEqual(wwtw.stormwater_storage_capacity, 100) + + def test_fwtw_overrides(self): + fwtw = FWTW(name='') + vol = fwtw.process_parameters['volume']['constant'] + fwtw.apply_overrides({'treatment_throughput_capacity' : 20, + 'process_parameters' : {'phosphate' : + {'constant' : 0.01}}, + 'service_reservoir_storage_capacity': 100, + 'service_reservoir_storage_area': 34.7, + 'service_reservoir_storage_elevation': 68.2 + }) + self.assertEqual(fwtw.treatment_throughput_capacity, 20) + self.assertEqual(fwtw.process_parameters['phosphate']['constant'], 0.01) + self.assertEqual(fwtw.process_parameters['volume']['constant'], vol) + self.assertEqual(fwtw.service_reservoir_storage_capacity, 100) + self.assertEqual(fwtw.service_reservoir_tank.capacity, 100) + self.assertEqual(fwtw.service_reservoir_storage_area, 34.7) + self.assertEqual(fwtw.service_reservoir_tank.area, 34.7) + self.assertEqual(fwtw.service_reservoir_storage_elevation, 68.2) + self.assertEqual(fwtw.service_reservoir_tank.datum, 68.2) if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/wtw.py b/wsimod/nodes/wtw.py index db99d56e..acf4f1a2 100644 --- a/wsimod/nodes/wtw.py +++ b/wsimod/nodes/wtw.py @@ -542,6 +542,31 @@ def __init__( self.mass_balance_ds.append(lambda: self.service_reservoir_tank.ds()) self.mass_balance_out.append(lambda: self.unpushed_sludge) + def apply_overrides(self, overrides=Dict[str, Any]): + """Apply overrides to the service reservoir tank and FWTW. + + Enables a user to override any parameter of the service reservoir tank, and + then calls any overrides in WTW. + + Args: + overrides (Dict[str, Any]): Dict describing which parameters should + be overridden (keys) and new values (values). Defaults to {}. + """ + self.service_reservoir_storage_capacity = overrides.pop( + "service_reservoir_storage_capacity", + self.service_reservoir_storage_capacity) + self.service_reservoir_storage_area = overrides.pop( + "service_reservoir_storage_area", + self.service_reservoir_storage_area) + self.service_reservoir_storage_elevation = overrides.pop( + "service_reservoir_storage_elevation", + self.service_reservoir_storage_elevation) + + self.service_reservoir_tank.capacity = self.service_reservoir_storage_capacity + self.service_reservoir_tank.area = self.service_reservoir_storage_area + self.service_reservoir_tank.datum = self.service_reservoir_storage_elevation + super().apply_overrides(overrides) + def treat_water(self): """Pulls water, aiming to fill service reservoirs, calls WTW treat_current_input, avoids deficit, sends liquor and solids to sewers.""" From e950f3d8e922f46b3c24a7d13aaf722d9023232b Mon Sep 17 00:00:00 2001 From: liuly12 <59883247+liuly12@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:15:25 +0000 Subject: [PATCH 21/59] check it doesn't delete other bits Co-authored-by: barneydobson --- tests/test_wtw.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_wtw.py b/tests/test_wtw.py index 56bf0638..09e2d7be 100644 --- a/tests/test_wtw.py +++ b/tests/test_wtw.py @@ -133,6 +133,7 @@ def test_fwtw_overrides(self): self.assertEqual(fwtw.service_reservoir_tank.area, 34.7) self.assertEqual(fwtw.service_reservoir_storage_elevation, 68.2) self.assertEqual(fwtw.service_reservoir_tank.datum, 68.2) + self.assertEqual(fwtw.process_parameters['nitrate']['constant'], 0.01) if __name__ == "__main__": unittest.main() From ef7091662a5ed19e75ae0ea41cb571308978bc1b Mon Sep 17 00:00:00 2001 From: liuly12 <59883247+liuly12@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:15:46 +0000 Subject: [PATCH 22/59] use something that itsn't the default value Co-authored-by: barneydobson --- tests/test_wtw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_wtw.py b/tests/test_wtw.py index 09e2d7be..105cabae 100644 --- a/tests/test_wtw.py +++ b/tests/test_wtw.py @@ -119,7 +119,7 @@ def test_fwtw_overrides(self): vol = fwtw.process_parameters['volume']['constant'] fwtw.apply_overrides({'treatment_throughput_capacity' : 20, 'process_parameters' : {'phosphate' : - {'constant' : 0.01}}, + {'constant' : 0.02}}, 'service_reservoir_storage_capacity': 100, 'service_reservoir_storage_area': 34.7, 'service_reservoir_storage_elevation': 68.2 From f7a21d6ddbbe2251ed64225a621cc1eaddb8f7cc Mon Sep 17 00:00:00 2001 From: liuly12 <59883247+liuly12@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:15:54 +0000 Subject: [PATCH 23/59] use something that itsn't the default value Co-authored-by: barneydobson --- tests/test_wtw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_wtw.py b/tests/test_wtw.py index 105cabae..7c225c25 100644 --- a/tests/test_wtw.py +++ b/tests/test_wtw.py @@ -125,7 +125,7 @@ def test_fwtw_overrides(self): 'service_reservoir_storage_elevation': 68.2 }) self.assertEqual(fwtw.treatment_throughput_capacity, 20) - self.assertEqual(fwtw.process_parameters['phosphate']['constant'], 0.01) + self.assertEqual(fwtw.process_parameters['phosphate']['constant'], 0.02) self.assertEqual(fwtw.process_parameters['volume']['constant'], vol) self.assertEqual(fwtw.service_reservoir_storage_capacity, 100) self.assertEqual(fwtw.service_reservoir_tank.capacity, 100) From 394d13280037973e2f98dbe170c742c33c177c51 Mon Sep 17 00:00:00 2001 From: liuly12 <59883247+liuly12@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:18:46 +0000 Subject: [PATCH 24/59] ensure the behaviour is working as intended Co-authored-by: barneydobson --- tests/test_nodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_nodes.py b/tests/test_nodes.py index fd7ab690..79d07007 100644 --- a/tests/test_nodes.py +++ b/tests/test_nodes.py @@ -670,6 +670,7 @@ def test_overrides(self): self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) + self.assertEqual(tank.get_excess()['volume'], 3) # residence tank tank = ResidenceTank(capacity=10, area=8, datum = 4, residence_time = 8) tank.apply_overrides({'capacity': 3, From 1e7c64435664b70cd6d3ff55c73fef77adc0f4aa Mon Sep 17 00:00:00 2001 From: liuly12 <59883247+liuly12@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:55:36 +0100 Subject: [PATCH 25/59] Upload Luton model scripts --- docs/demo/examples/luton_scripts/CSO.py | 14 + .../examples/luton_scripts/Groundwater_h.py | 228 + docs/demo/examples/luton_scripts/River_h.py | 491 + docs/demo/examples/luton_scripts/SewerCSO.py | 80 + .../luton_scripts/TimevaryingDemand.py | 37 + .../luton_scripts/model_extensions.py | 531 + ...tings_separatesewers_2cso_generalhead.yaml | 10225 ++++++++++++++++ 7 files changed, 11606 insertions(+) create mode 100644 docs/demo/examples/luton_scripts/CSO.py create mode 100644 docs/demo/examples/luton_scripts/Groundwater_h.py create mode 100644 docs/demo/examples/luton_scripts/River_h.py create mode 100644 docs/demo/examples/luton_scripts/SewerCSO.py create mode 100644 docs/demo/examples/luton_scripts/TimevaryingDemand.py create mode 100644 docs/demo/examples/luton_scripts/model_extensions.py create mode 100644 docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml diff --git a/docs/demo/examples/luton_scripts/CSO.py b/docs/demo/examples/luton_scripts/CSO.py new file mode 100644 index 00000000..24c424d1 --- /dev/null +++ b/docs/demo/examples/luton_scripts/CSO.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Dec 24 10:09:12 2023 + +@author: leyan +""" + +from wsimod.nodes.sewer import Sewer + +class CSO(Sewer): + def __init__(self, + **kwargs): + + super().__init__(**kwargs) diff --git a/docs/demo/examples/luton_scripts/Groundwater_h.py b/docs/demo/examples/luton_scripts/Groundwater_h.py new file mode 100644 index 00000000..61ca13f2 --- /dev/null +++ b/docs/demo/examples/luton_scripts/Groundwater_h.py @@ -0,0 +1,228 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Dec 24 10:09:12 2023 + +@author: leyan +""" + +from wsimod.nodes.storage import Storage +from wsimod.core import constants + +class Groundwater_h(Storage): + def __init__(self, + h_initial = 200, + z_surface = 250, + s = 0.1, + c_riverbed = 0, + c_aquifer = {}, + infiltration_threshold = 1, + infiltration_pct = 0, + data_input_dict = {}, + **kwargs): + # TODO can infiltrate to sewers? + """A head-driven storage for groundwater. Can also infiltrate to sewers. + + Args: + h_initial (float, compulsory): initial groundwater head (m asl). Defaults to 200. + z_surface (float, compulsoty): elevation of land surface (m asl), + which determines the maximum storage capacity. Default to 250. + s (float, optional): storage coefficient (-). Defaults to 0.1. + A (float, compulsory): area of the groundwater body (polygon) (m2). Defaults to 0. + c_riverbed (float, compulsory): the river bed conductance + (which could be taken from the BGWM parameterisation) (1/day). Defaults to 0. + data_input_dict (dict, optional): Dictionary of data inputs relevant for + the node (though I don't think it is used). Defaults to {}. + c_aquifer (dict, optional): aquifer conductance, which can be + calculated from parameterisation of British Groundwater Model + for any polygonal mesh (m2/day). Defaults to {}. + + Functions intended to call in orchestration: + infiltrate (before sewers are discharged) + + distribute + + Key assumptions: + - Conceptualises groundwater as a tank. The total volume of storage is controlled by a storage coefficient. + - Exchange flow between groundwater bodies is driven by head difference through an aquifer conductance. + - River-groundwater interactions are bi-directional, which is determined by the head difference. + - Infiltration to `sewer.py/Sewer` nodes occurs when the storage + in the tank is greater than a specified threshold, at a rate + proportional to the sqrt of volume above the threshold. (Note, + this behaviour is __not validated__ and a high uncertainty process + in general) + - If `decays` are provided to model water quality transformations, + see `core.py/DecayObj`. + + Input data and parameter requirements: + - Groundwater tank `capacity`, `area`, and `datum`. + _Units_: cubic metres, squared metres, metres + - Infiltration behaviour determined by an `infiltration_threshold` + and `infiltration_pct`. + _Units_: proportion of capacity + - Optional dictionary of decays with pollutants as keys and decay + parameters (a constant and a temperature sensitivity exponent) + as values. + _Units_: - + """ + self.h = h_initial + self.z_surface = z_surface + self.s = s + self.c_riverbed = c_riverbed + self.c_aquifer = c_aquifer + # + self.infiltration_threshold = infiltration_threshold + self.infiltration_pct = infiltration_pct + #TODO not used data_input + self.data_input_dict = data_input_dict + super().__init__(data_input_dict=data_input_dict, **kwargs) + + # update tank + self.tank.specific_yield = self.s + ########################################################################################### + def wrapper(self): + def get_head(#self, + datum = None, non_head_storage = 0): + """Area volume calculation for head calcuations. Datum and storage + that does not contribute to head can be specified + + Args: + datum (float, optional): Value to add to pressure head in tank. + Defaults to None. + non_head_storage (float, optional): Amount of storage that does + not contribute to generation of head. The tank must exceed + this value to generate any pressure head. Defaults to 0. + + Returns: + head (float): Total head in tank + + Examples: + >>> my_tank = Tank(datum = 10, initial_storage = 5, capacity = 10, area = 2) + >>> print(my_tank.get_head()) + 12.5 + >>> print(my_tank.get_head(non_head_storage = 1)) + 12 + >>> print(my_tank.get_head(non_head_storage = 1, datum = 0)) + 2 + + """ + #If datum not provided use object datum + if datum is None: + datum = self.datum + + #Calculate pressure head generating storage + head_storage = max(self.storage['volume'] - non_head_storage, 0) + + #Perform head calculation + head = head_storage / self.area / self.specific_yield + datum + + return head + return get_head + + self.tank.get_head = wrapper(self.tank) + ########################################################################################### + self.tank.storage['volume'] = (self.h - self.datum) * self.area * self.s # [m3] + self.tank.capacity = (self.z_surface - self.datum) * self.area * self.s # [m3] + #Update handlers + self.push_check_handler['Groundwater_h'] = self.push_check_head + self.push_check_handler[('River_h', 'head')] = self.push_check_head + self.push_check_handler[('River_h', 'c_riverbed')] = self.push_check_criverbed + + def distribute(self): + # def distribute_gw_rw(self): + ## pumping rate via pull_request through arcs + ## recharge rate via push_request through arcs + """Calculate exchange between Rivers and Groundwater_h + """ + ## river-groundwater exchange + # query river elevation + # list of arcs that connect with gw bodies + _, arcs = self.get_direction_arcs(direction='push', of_type=['River_h']) + # if there is only one river arc + if len(arcs) == 1: + arc = arcs[0] + z_river = arc.send_push_check(tag=('Groundwater_h', 'datum'))['volume'] # [m asl] + length = arc.send_push_check(tag=('Groundwater_h', 'length'))['volume'] # [m] + width = arc.send_push_check(tag=('Groundwater_h', 'width'))['volume'] # [m] + # calculate riverbed hydraulic conductance + C_riverbed = self.c_riverbed * length * width # [m2/day] + # calculate river-gw flux + flux = C_riverbed * (self.h - z_river) # [m3/day] + if flux > 0: + to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards + retained = self.push_distributed(to_send, of_type = ['River_h']) + _ = self.tank.push_storage(retained, force = True) + if retained['volume'] > constants.FLOAT_ACCURACY: + print('Groundwater to river: gw baseflow unable to push into river at '+self.name) + # else: wait river to discharge back + # TODO may need consider when one river connects to multiple gws + elif len(arcs) > 1: + print('WARNING: '+self.name+' connects with more than one river - cannot model this at this stage and please re-setup the model') + + # def distribute_gw_gw(self): + """Calculate exchange between Groundwater_h and Groundwater_h + """ + ## groundwater-groundwater exchange + # list of arcs that connect with gw bodies + _, arcs = self.get_direction_arcs(direction='push', of_type=['Groundwater_h']) + for arc in arcs: + h = arc.send_push_check(tag='Groundwater_h')['volume'] # check the head of the adjacent groundwater_h + # if h < self.h, there will be flux discharged outside + if h < self.h: + # get the c_aquifer [m2/day] + adj_node_name = arc.out_port.name # get the name of the adjacent gw_h + if adj_node_name in self.c_aquifer.keys(): + c_aquifer = self.c_aquifer[adj_node_name] + else: + print('ERROR: the name of '+adj_node_name+' is not consistent with the c_aquifer input in '+self.name+', please recheck') + # calculate the flux + flux = c_aquifer * (self.h - h) # [m3/day] + if flux > 0: + to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards + retained = arc.send_push_request(to_send) + _ = self.tank.push_storage(retained, force = True) + if retained['volume'] > constants.FLOAT_ACCURACY: + print('Groundwater to groundwater: gw baseflow unable to push from '+self.name+' into '+adj_node_name) + # if h > self.h, wait the adjacent node to push flux here + + def infiltrate(self): + # TODO could use head-drive approach here + """Calculate amount of water available for infiltration and send to sewers + """ + #Calculate infiltration + avail = self.tank.get_avail()['volume'] + avail = max(avail - self.tank.capacity * self.infiltration_threshold, 0) + avail = (avail * self.infiltration_pct) ** 0.5 + + #Push to sewers + to_send = self.tank.pull_storage({'volume' : avail}) + retained = self.push_distributed(to_send, of_type = 'Sewer') + _ = self.tank.push_storage(retained, force = True) + #Any not sent is left in tank + if retained['volume'] > constants.FLOAT_ACCURACY: + #print('unable to infiltrate') + pass + + def push_check_head(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.h + """ + reply = self.empty_vqip() + reply['volume'] = self.h + + return reply + + def push_check_criverbed(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.c_riverbed + """ + reply = self.empty_vqip() + reply['volume'] = self.c_riverbed + + return reply + + def end_timestep(self): + """Update tank states & self.h + """ + self.tank.end_timestep() + self.h = self.tank.get_head() + \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/River_h.py b/docs/demo/examples/luton_scripts/River_h.py new file mode 100644 index 00000000..16f06514 --- /dev/null +++ b/docs/demo/examples/luton_scripts/River_h.py @@ -0,0 +1,491 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Dec 24 10:09:12 2023 + +@author: leyan +""" + +from wsimod.nodes.storage import Storage +from wsimod.core import constants +from math import exp + +class River_h(Storage): + #TODO non-day timestep + def __init__(self, + depth = 2, + length = 200, + width = 20, + velocity = 0.2 * constants.M_S_TO_M_DT, + damp = 0.1, + mrf = 0, + denpar_w = 0.0015, + muptNpar = 0.001, + muptPpar = 0.0001, + **kwargs): + """Node that contains extensive in-river biochemical processes + + Args: + depth (float, optional): River tank depth. Defaults to 2. + length (float, optional): River tank length. Defaults to 200. + width (float, optional): River tank width. Defaults to 20. + velocity (float, optional): River velocity (if someone wants to calculate + this on the fly that would also work). Defaults to 0.2*constants.M_S_TO_M_DT. + damp (float, optional): Flow delay and attentuation parameter. Defaults + to 0.1. + mrf (float, optional): Minimum required flow in river (volume per timestep), + can limit pulls made to the river. Defaults to 0. + + Functions intended to call in orchestration: + distribute + + Key assumptions: + - River is conceptualised as a water tank that receives flows from various + sources (e.g., runoffs from urban and rural land, baseflow from groundwater), + interacts with water infrastructure (e.g., abstraction for irrigation and + domestic supply, sewage and treated effluent discharge), and discharges + flows downstream. It has length and width as shape parameters, average + velocity to indicate flow speed and capacity to indicate the maximum storage limit. + - Flows from different sources into rivers will fully mix. River tank is assumed to + have delay and attenuation effects when generate outflows. These effects are + simulated based on the average velocity. + - In-river biochemical processes are simulated as sources/sinks of nutrients + in the river tank, including + - denitrification (for nitrogen) + - phytoplankton absorption/release (for nitrogen and phosphorus) + - macrophyte uptake (for nitrogen and phosphorus) + These processes are affected by river temperature. + + Input data and parameter requirements: + - depth, length, width + _Units_: m + - velocity + _Units_: m/day + - damping coefficient + _Units_: - + - minimum required flow + _Units_: m3/day + """ + #Set parameters + self.depth = depth # [m] + self.length = length # [m] + self.width = width # [m] + self.velocity = velocity # [m/dt] + self.damp = damp # [>=0] flow delay and attenuation + self.mrf = mrf + self.denpar_w = denpar_w # [kg/m2/day] reference denitrification rate in water course + self.muptNpar = muptNpar # [kg/m2/day] nitrogen macrophyte uptake rate + self.muptPpar = muptPpar # [kg/m2/day] phosphorus macrophyte uptake rate + area = length * width # [m2] + + capacity = constants.UNBOUNDED_CAPACITY #TODO might be depth * area if flood indunation is going to be simulated + + #Required in cases where 'area' conflicts with length*width + kwargs['area'] = area + #Required in cases where 'capacity' conflicts with depth*area + kwargs['capacity'] = capacity + + super().__init__(**kwargs) + + + + #TODO check units + #TODO Will a user want to change any of these? + #Wide variety of river parameters (from HYPE) + self.uptake_PNratio = 1/7.2 # [-] P:N during crop uptake + self.bulk_density = 1300 # [kg/m3] soil density + # self.denpar_w = 0.0015#0.001, # [kg/m2/day] reference denitrification rate in water course + self.T_wdays = 5 # [days] weighting constant for river temperature calculation (similar to moving average period) + self.halfsatINwater = 1.5 * constants.MG_L_TO_KG_M3 # [kg/m3] half saturation parameter for denitrification in river + self.T_10_days = [] # [degree C] average water temperature of 10 days + self.T_20_days = [] # [degree C] average water temperature of 20 days + self.TP_365_days = [] # [degree C] average water temperature of 20 days + self.hsatTP = 0.05 * constants.MG_L_TO_KG_M3 # [kg/m3] + self.limpppar = 0.1 * constants.MG_L_TO_KG_M3 # [kg/m3] + self.prodNpar = 0.001 # [kg N/m3/day] nitrogen production/mineralisation rate + self.prodPpar = 0.0001 # [kg N/m3/day] phosphorus production/mineralisation rate + # self.muptNpar = 0.001 # [kg/m2/day] nitrogen macrophyte uptake rate + # self.muptPpar = 0.0001#0.01, # [kg/m2/day] phosphorus macrophyte uptake rate + self.qbank_365_days = [1e6, 1e6] # [m3/day] store outflow in the previous year + self.qbank = 1e6 # [m3/day] bankfull flow = second largest outflow in the previous year + self.qbankcorrpar = 0.001 # [-] correction coefficient for qbank flow + self.sedexppar = 1 # [-] + self.EPC0 = 0.05 * constants.MG_L_TO_KG_M3 # [mg/l] + self.kd_s = 0 * constants.MG_L_TO_KG_M3 #6 * 1e-6, # [kg/m3] + self.kadsdes_s = 2#0.9, # [-] + self.Dsed = 0.2 # [m] + + self.max_temp_lag = 20 + self.lagged_temperatures = [] + + self.max_phosphorus_lag = 365 + self.lagged_total_phosphorus = [] + + self.din_components = ['ammonia','nitrate'] + # TODO need a cleaner way to do this depending on whether e.g., nitrite is included + + # Initialise paramters + self.current_depth = 0 # [m] + # self.river_temperature = 0 # [degree C] + # self.river_denitrification = 0 # [kg/day] + # self.macrophyte_uptake_N = 0 # [kg/day] + # self.macrophyte_uptake_P = 0 # [kg/day] + # self.sediment_particulate_phosphorus_pool = 60000 # [kg] + # self.sediment_pool = 1000000 # [kg] + # self.benthos_source_sink = 0 # [kg/day] + # self.t_res = 0 # [day] + # self.outflow = self.empty_vqip() + + #Update end_teimstep + self.end_timestep = self.end_timestep_ + + #Update handlers + self.push_set_handler['default'] = self.push_set_river + self.push_check_handler['default'] = self.push_check_accept + self.push_check_handler[('Groundwater_h', 'datum')] = self.push_check_datum + self.push_check_handler[('Groundwater_h', 'length')] = self.push_check_length + self.push_check_handler[('Groundwater_h', 'width')] = self.push_check_width + self.pull_check_handler['default'] = self.pull_check_river + self.pull_set_handler['default'] = self.pull_set_river + + #TODO - RiparianBuffer + self.pull_check_handler[('RiparianBuffer', 'volume')] = self.pull_check_fp + + #Update mass balance + self.bio_in = self.empty_vqip() + self.bio_out = self.empty_vqip() + + self.mass_balance_in.append(lambda : self.bio_in) + self.mass_balance_out.append(lambda : self.bio_out) + + + #TODO something like this might be needed if you want sewers backing up from river height... would need to incorporate expected river outflow + # def get_dt_excess(self, vqip = None): + # reply = self.empty_vqip() + # reply['volume'] = self.tank.get_excess()['volume'] + self.tank.get_avail()['volume'] * self.get_riverrc() + # if vqip is not None: + # reply['volume'] = min(vqip['volume'], reply['volume']) + # return reply + + # def push_set_river(self, vqip): + # vqip_ = vqip.copy() + # vqip_ = self.v_change_vqip(vqip_, min(vqip_['volume'], self.get_dt_excess()['volume'])) + # _ = self.tank.push_storage(vqip_, force=True) + # return self.extract_vqip(vqip, vqip_) + + def pull_check_river(self, vqip = None): + """Check amount of water that can be pulled from river tank and upstream + + Args: + vqip (dict, optional): Maximum water required (only 'volume' is used) + + Returns: + avail (dict): A VQIP amount that can be pulled + """ + + #Get storage + avail = self.tank.get_avail() + + #Check incoming + upstream = self.get_connected(direction = 'pull', of_type =['River_h','Node']) + avail['volume'] += upstream['avail'] + + #convert mrf from volume/timestep to discrete value + mrf = self.mrf / self.get_riverrc() + + #Apply mrf + avail_vol = max(avail['volume'] - mrf, 0) + if vqip is None: + avail = self.v_change_vqip(avail, avail_vol) + else: + avail = self.v_change_vqip(avail, min(avail_vol,vqip['volume'])) + + return avail + + def pull_set_river(self, vqip): + """Pull from river tank and upstream, acknowledging MRF with pull_check + + Args: + vqip (dict): A VQIP amount to pull (only volume key used) + + Returns: + (dict): A VQIP amount that was pulled + """ + #Calculate available pull + avail = self.pull_check_river(vqip) + + #Take first from tank + pulled = self.tank.pull_storage(avail) + + #Take remaining from upstream + to_pull = {'volume' : avail['volume'] - pulled['volume']} + pulled_ = self.pull_distributed(to_pull, of_type = ['River_h', 'Node']) + + reply = self.sum_vqip(pulled, pulled_) + + return reply + + + def push_set_river(self, vqip): + """Push to river tank, currently forced. + + Args: + vqip (dict): A VQIP amount to push + + Returns: + (dict): A VQIP amount that was not successfully received + """ + _ = self.tank.push_storage(vqip, force = True) + return self.empty_vqip() + + def update_depth(self): + """Recalculate depth + """ + self.current_depth = self.tank.storage['volume'] / self.area + + def get_din_pool(self): + """Get total dissolved inorganic nitrogen from tank storage + + Returns: + (float): total din + """ + return sum([self.tank.storage[x] for x in self.din_components]) #TODO + self.tank.storage['nitrite'] but nitrite might not be modelled... need some ways to address this + + def biochemical_processes(self): + """Runs all biochemical processes and updates pollutant amounts + + Returns: + in_ (dict): A VQIP amount that represents total gain in pollutant amounts + out_ (dict): A VQIP amount that represents total loss in pollutant amounts + """ + #TODO make more modular + self.update_depth() + + self.tank.storage['temperature'] = (1 - 1 / self.T_wdays) * self.tank.storage['temperature'] + (1 / self.T_wdays) * self.get_data_input('temperature') + + #Update lagged temperatures + if len(self.lagged_temperatures) > self.max_temp_lag: + del self.lagged_temperatures[0] + self.lagged_temperatures.append(self.tank.storage['temperature']) + + #Update lagged total phosphorus + if len(self.lagged_total_phosphorus) > self.max_phosphorus_lag: + del self.lagged_total_phosphorus[0] + total_phosphorus = self.tank.storage['phosphate'] + self.tank.storage['org-phosphorus'] + self.lagged_total_phosphorus.append(total_phosphorus) + + #Check if any water + if self.tank.storage['volume'] < constants.FLOAT_ACCURACY: + #Assume these only do something when there is water + return (self.empty_vqip(), self.empty_vqip()) + + if self.tank.storage['temperature'] <= 0 : + #Seems that these things are only active when above freezing + return (self.empty_vqip(), self.empty_vqip()) + + #Denitrification + tempfcn = 2 ** ((self.tank.storage['temperature'] - 20) / 10) + if self.tank.storage['temperature'] < 5 : + tempfcn *= (self.tank.storage['temperature'] / 5) + + din = self.get_din_pool() + din_concentration = din / self.tank.storage['volume'] + confcn = din_concentration / (din_concentration + self.halfsatINwater) # [kg/m3] + denitri_water = self.denpar_w * self.area * tempfcn * confcn # [kg/day] #TODO convert to per DT + + river_denitrification = min(denitri_water, 0.5 * din) # [kg/day] max 50% kan be denitrified + din_ = (din - river_denitrification) # [kg] + + #Update mass balance + in_ = self.empty_vqip() + out_ = self.empty_vqip() + if din > 0: + for pol in self.din_components: + #denitrification + loss = (din - din_) / din * self.tank.storage[pol] + out_[pol] += loss + self.tank.storage[pol] -= loss + + din = self.get_din_pool() + + #Calculate moving averages + #TODO generalise + temp_10_day = sum(self.lagged_temperatures[-10:]) / 10 + temp_20_day = sum(self.lagged_temperatures[-20:]) / 20 + total_phos_365_day = sum(self.lagged_total_phosphorus) / self.max_phosphorus_lag + + #Calculate coefficients + tempfcn = (self.tank.storage['temperature']) / 20 * (temp_10_day - temp_20_day) / 5 + if (total_phos_365_day - self.limpppar + self.hsatTP) > 0: + totalphosfcn = (total_phos_365_day - self.limpppar) / (total_phos_365_day - self.limpppar + self.hsatTP) + else: + totalphosfcn = 0 + + #Mineralisation/production + #TODO this feels like it could be much tidier + minprodN = self.prodNpar * totalphosfcn * tempfcn * self.area * self.current_depth # [kg N/day] + minprodP = self.prodPpar * totalphosfcn * tempfcn * self.area * self.current_depth * self.uptake_PNratio # [kg N/day] + if minprodN > 0 : + #production (inorg -> org) + minprodN = min(0.5 * din, minprodN) # only half pool can be used for production + minprodP = min(0.5 * self.tank.storage['phosphate'], minprodP) # only half pool can be used for production + + #Update mass balance + out_['phosphate'] = minprodP + self.tank.storage['phosphate'] -= minprodP + in_['org-phosphorus'] = minprodP + self.tank.storage['org-phosphorus'] += minprodP + if din > 0: + for pol in self.din_components: + loss = minprodN * self.tank.storage[pol] / din + out_[pol] += loss + self.tank.storage[pol] -= loss + + in_['org-nitrogen'] = minprodN + self.tank.storage['org-nitrogen'] += minprodN + + else: + #mineralisation (org -> inorg) + minprodN = min(0.5 * self.tank.storage['org-nitrogen'], -minprodN) + minprodP = min(0.5 * self.tank.storage['org-phosphorus'], -minprodP) + + #Update mass balance + in_['phosphate'] = minprodP + self.tank.storage['phosphate'] += minprodP + out_['org-phosphorus'] = minprodP + self.tank.storage['org-phosphorus'] -= minprodP + if din > 0: + for pol in self.din_components: + gain = minprodN * self.tank.storage[pol] / din + in_[pol] += gain + self.tank.storage[pol] += gain + + out_['org-nitrogen'] = minprodN + self.tank.storage['org-nitrogen'] -= minprodN + + din = self.get_din_pool() + + # macrophyte uptake + # temperature dependence factor + tempfcn1 = (max(0, self.tank.storage['temperature']) / 20) ** 0.3 + tempfcn2 = (self.tank.storage['temperature'] - temp_20_day) / 5 + tempfcn = max(0, tempfcn1 * tempfcn2) + + macrouptN = self.muptNpar * tempfcn * self.area # [kg/day] + macrophyte_uptake_N = min(0.5 * din, macrouptN) + if din > 0: + for pol in self.din_components: + loss = macrophyte_uptake_N * self.tank.storage[pol] / din + out_[pol] += loss + self.tank.storage[pol] -= loss + + macrouptP = self.muptPpar * tempfcn * max(0, totalphosfcn) * self.area # [kg/day] + macrophyte_uptake_P = min(0.5 * self.tank.storage['phosphate'], macrouptP) + out_['phosphate'] += macrophyte_uptake_P + self.tank.storage['phosphate'] -= macrophyte_uptake_P + + #TODO + #source/sink for benthos sediment P + #suspension/resuspension + return in_, out_ + + def get_riverrc(self): + """Get river outflow coefficient (i.e., how much water leaves the tank in this + timestep) + + Returns: + riverrc (float): outflow coeffficient + """ + #Calculate travel time + total_time = self.length / self.velocity + #Apply damp + kt = self.damp * total_time # [day] + if kt != 0 : + riverrc = 1 - kt + kt * exp(-1 / kt) # [-] + else: + riverrc = 1 + return riverrc + + def calculate_discharge(self): + if 'nitrate' in constants.POLLUTANTS: + #TODO clumsy + #Run biochemical processes + in_, out_ = self.biochemical_processes() + #Mass balance + self.bio_in = in_ + self.bio_out = out_ + + def distribute(self): + """Run biochemical processes, track mass balance, and distribute water + """ + # self.calculate_discharge() + #Get outflow + outflow = self.tank.pull_storage({'volume' : self.tank.storage['volume'] * self.get_riverrc()}) + #Distribute outflow + reply = self.push_distributed(outflow, of_type = ['River_h','Node','Waste']) + _ = self.tank.push_storage(reply, force = True) + if reply['volume'] > constants.FLOAT_ACCURACY: + print('river cant push: {0}'.format(reply['volume']) + ' at '+self.name) + ## river-groundwater exchange + # query river elevation + # list of arcs that connect with gw bodies + _, arcs = self.get_direction_arcs(direction='push', of_type=['Groundwater_h']) + # if there is only one arc to gw_h + if len(arcs) == 1: + arc = arcs[0] + h = arc.send_push_check(tag=('River_h', 'head'))['volume'] # [m asl] + c_riverbed = arc.send_push_check(tag=('River_h', 'c_riverbed'))['volume'] # [m] + # calculate riverbed hydraulic conductance + C_riverbed = c_riverbed * self.length * self.width # [m2/day] + # calculate river-gw flux + flux = C_riverbed * (self.datum - h) # [m3/day] + if flux > 0: + to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards + retained = self.push_distributed(to_send, of_type = ['Groundwater_h']) + _ = self.tank.push_storage(retained, force = True) + if retained['volume'] > constants.FLOAT_ACCURACY: + print('River to groundwater: river return flow unable to push into groundwater at '+self.name) + # else: wait gw to discharge back + # TODO may need consider when one river connects to multiple gws + elif len(arcs) > 1: + print('WARNING: '+self.name+' connects with more than one gw - cannot model this at this stage and please re-setup the model') + + + def pull_check_fp(self, vqip = None): + #TODO Pull checking for riparian buffer, needs updating + # update river depth + self.update_depth() + return self.current_depth, self.area, self.width, self.river_tank.storage + + def push_check_datum(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.datum + """ + datum = self.empty_vqip() + datum['volume'] = self.datum + + return datum + + def push_check_length(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.length + """ + length = self.empty_vqip() + length['volume'] = self.length + + return length + + def push_check_width(self, vqip = None): + # TODO should revise arc.get_excess to consider information transfer not in vqip? + """Return a pseudo vqip whose volume is self.width + """ + width = self.empty_vqip() + width['volume'] = self.width + + return width + + def end_timestep_(self): + """Update state variables + """ + self.tank.end_timestep() + self.bio_in = self.empty_vqip() + self.bio_out = self.empty_vqip() diff --git a/docs/demo/examples/luton_scripts/SewerCSO.py b/docs/demo/examples/luton_scripts/SewerCSO.py new file mode 100644 index 00000000..6a686206 --- /dev/null +++ b/docs/demo/examples/luton_scripts/SewerCSO.py @@ -0,0 +1,80 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Dec 24 10:09:12 2023 + +@author: leyan +""" + +from wsimod.nodes.sewer import Sewer +from wsimod.core import constants + +class SewerCSO(Sewer): + def __init__(self, + spill_capacity = 172800, + **kwargs): + self.spill_capacity = spill_capacity + super().__init__(**kwargs) + + def make_discharge(self): + """Function to trigger downstream sewer flow. + + Updates sewer tank travel time, pushes to WWTW, then sewer, then CSO. May + flood land if, after these attempts, the sewer tank storage is above + capacity. + + """ + self.sewer_tank.internal_arc.update_queue(direction="push") + # TODO... do I need to do anything with this backflow... does it ever happen? + + # Discharge to CSO first + + cso_spill = self.sewer_tank.active_storage['volume'] - self.spill_capacity # [m3/d] + if cso_spill > 0: + # cso_spill = self.v_change_vqip(self.sewer_tank.active_storage, cso_spill) # [vqip] + cso_spill = self.sewer_tank.pull_storage({'volume': cso_spill}) # [vqip] + + remaining = self.push_distributed(cso_spill, + of_type = ["CSO"] + ) + _ = self.sewer_tank.push_storage(remaining, force=True) + # # list of arcs that connect with gw bodies + # _, arcs = self.get_direction_arcs(direction='push', of_type=['CSO']) # new type + # cso_arcs = [arc for arc in arcs if 'cso' in arc.name] + # # if there is only one river arc + # if len(cso_arcs) == 1: + # arc = cso_arcs[0] + # remaining = arc.send_push_request(cso_spill) + # _ = self.sewer_tank.push_storage(remaining, force = True) + # if remaining['volume'] > constants.FLOAT_ACCURACY: + # print('Sewer unable to push from '+self.name+' into cso '+arc.name.split('-to-')[-1]) + # else: + # print("More than 1 cso corresponds with "+self.name+" - can't model it at this stage and needs further development") + # Discharge to sewer and river then (based on preferences) + to_send = self.sewer_tank.pull_storage(self.sewer_tank.active_storage) # [vqip] + remaining = self.push_distributed(to_send, + of_type = ["Sewer", "River_h"] + ) + _ = self.sewer_tank.push_storage(remaining, force=True) + # #Discharge to WWTW if possible + # remaining = self.push_distributed(remaining, + # of_type = ["WWTW"], + # tag = 'Sewer' + # ) + + # remaining = self.push_distributed(self.sewer_tank.active_storage) + + # TODO backflow can cause mass balance errors here + + # # Update tank + # sent = self.extract_vqip(self.sewer_tank.active_storage, remaining) + # reply = self.sewer_tank.pull_storage_exact(sent) + # if (reply["volume"] - sent["volume"]) > constants.FLOAT_ACCURACY: + # print("Miscalculated tank storage in discharge") + + # Flood excess + ponded = self.sewer_tank.pull_ponded() + if ponded["volume"] > constants.FLOAT_ACCURACY: + reply_ = self.push_distributed(ponded, of_type=["Land"], tag="Sewer") + reply_ = self.sewer_tank.push_storage(reply_, time=0, force=True) + if reply_["volume"]: + print("ponded water cant reenter") \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/TimevaryingDemand.py b/docs/demo/examples/luton_scripts/TimevaryingDemand.py new file mode 100644 index 00000000..57169f11 --- /dev/null +++ b/docs/demo/examples/luton_scripts/TimevaryingDemand.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +""" +Created on Sun Dec 24 10:09:12 2023 + +@author: leyan +""" + +from wsimod.nodes.demand import Demand + +class TimevaryingDemand(Demand): + def __init__(self, + **kwargs): + """Node that generates time-varying water demand specified by data input. + + Args: + data_input_dict (dict, optional): This must contains 'demand' along with the original + input vairables (e.g., 'temperature') + + Functions intended to call in orchestration: + create_demand + """ + #Update args + + super().__init__(**kwargs) + + def get_demand(self): + """Holder function to enable constant demand generation + + Returns: + (dict): A VQIP that will contain constant demand + """ + #TODO read/gen demand + self.constant_demand = self.get_data_input('demand') + pol = self.v_change_vqip(self.empty_vqip(), self.constant_demand) + for key, item in self.pollutant_load.items(): + pol[key] = item + return {'default' : pol} \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/model_extensions.py b/docs/demo/examples/luton_scripts/model_extensions.py new file mode 100644 index 00000000..8a09ffc5 --- /dev/null +++ b/docs/demo/examples/luton_scripts/model_extensions.py @@ -0,0 +1,531 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Dec 19 10:50:55 2023 + +@author: bdobson +""" +from wsimod.core import constants +# import sys +# import os +# from tqdm import tqdm +# from math import log10 +# from wsimod.nodes.land import ImperviousSurface +# from wsimod.nodes.nodes import QueueTank, Tank, ResidenceTank + +def extensions(model): + # decorate storm sewer to make it cso + # for node_name, node in model.nodes.items(): + # if any(ext in node_name for ext in ['storm', 'foul', 'combined']): + # node.make_discharge = wrapper_sewer(node) + + # decorate land->gw + model.nodes['1823-land'].run = wrapper_land_gw(model.nodes['1823-land']) + # model.nodes['1823-land'].surfaces[-1].push_to_sewers = wrapper_impervioussurface_sewer(model.nodes['1823-land'].surfaces[-1]) + + model.nodes['1823-land'].surfaces[-1].atmospheric_deposition = adjust_atmospheric_deposition(model.nodes['1823-land'].surfaces[-1]) + model.nodes['1823-land'].surfaces[-1].precipitation_deposition = adjust_precipitation_deposition(model.nodes['1823-land'].surfaces[-1]) + model.nodes['1823-land'].surfaces[-1].inflows[0] = model.nodes['1823-land'].surfaces[-1].atmospheric_deposition + model.nodes['1823-land'].surfaces[-1].inflows[1] = model.nodes['1823-land'].surfaces[-1].precipitation_deposition + + # Change model.run because new function has been introduced by the new node + model.river_discharge_order = ['1823-river'] + # model.run = wrapper_run(model) + # parameter adjustment + # model.nodes['1823-land'].surfaces[-1].pore_depth = 0.1 + # model.nodes['1823-storm'].make_discharge = wrapper_stormsewer_cso(model.nodes['1823-storm']) + + # decorate fix head + for node in ['6aead97c-0040-4e31-889d-01f628faf990', + 'fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7', + '7e0cc125-fe7a-445b-af6b-bf55ac4065f9', + 'e07ddbc6-7158-4a47-b987-eb2b934dd257', + 'e4b324b5-60f9-48c2-9d64-d89d22a5305e', + '88c7e69b-e4b3-4483-a438-0d6f9046cdee', + 'a057761f-e18e-4cad-84d4-9458edc182ef', + '2b5397b7-a129-40a6-873d-cb2a0dd7d5b8' + ]: + model.nodes[node].end_timestep = end_timestep(model.nodes[node]) + + # wq parameters for wwtw + for wwtw, new_constants, variable, date in zip(['luton_stw-wwtw', 'luton_stw-wwtw', 'luton_stw-wwtw'], + [2.6, 1.5, 0.3], + ['phosphate', 'phosphate', 'phosphate'], + ['2000-01-01', '2001-01-01', '2005-01-01']): + node = model.nodes[wwtw] + node.end_timestep = wrapper_wwtw(node.end_timestep, node, variable, new_constants, date) + +# set fixed head for 'ex-head' node +def end_timestep(self): + self.mass_balance_in = [lambda: self.empty_vqip()] + self.mass_balance_out = [lambda: self.empty_vqip()] + self.mass_balance_ds = [lambda: self.empty_vqip()] + def inner_function(): + """Update tank states & self.h + """ + self.h = self.get_data_input('head') + self.tank.storage['volume'] = (self.h - self.datum) * self.area * self.s + self.tank.end_timestep() + self.h = self.tank.get_head() + return inner_function + + +def wrapper_land_gw(self): + def run(#self + ): + """Call the run function in all surfaces, update surface/subsurface/ + percolation tanks, discharge to rivers/groundwater. + """ + # Run all surfaces + for surface in self.surfaces: + surface.run() + + # Apply residence time to percolation + percolation = self.percolation.pull_outflow() + + # Distribute percolation + reply = self.push_distributed(percolation, of_type=["Groundwater_h"]) + + if reply["volume"] > constants.FLOAT_ACCURACY: + # Update percolation 'tank' + _ = self.percolation.push_storage(reply, force=True) + + # Apply residence time to subsurface/surface runoff + surface_runoff = self.surface_runoff.pull_outflow() + subsurface_runoff = self.subsurface_runoff.pull_outflow() + + # Total runoff + total_runoff = self.sum_vqip(surface_runoff, subsurface_runoff) + if total_runoff["volume"] > 0: + # Send to rivers (or nodes, which are assumed to be junctions) + reply = self.push_distributed(total_runoff, of_type=["River_h", "Node"]) + + # Redistribute total_runoff not sent + if reply["volume"] > 0: + reply_surface = self.v_change_vqip( + reply, + reply["volume"] * surface_runoff["volume"] / total_runoff["volume"], + ) + reply_subsurface = self.v_change_vqip( + reply, + reply["volume"] + * subsurface_runoff["volume"] + / total_runoff["volume"], + ) + + # Update surface/subsurface runoff 'tanks' + if reply_surface["volume"] > 0: + self.surface_runoff.push_storage(reply_surface, force=True) + if reply_subsurface["volume"] > 0: + self.subsurface_runoff.push_storage(reply_subsurface, force=True) + return run + +def adjust_atmospheric_deposition(surface, ratio = 0.05): + def atmospheric_deposition(): + """Inflow function to cause dry atmospheric deposition to occur, updating the + surface tank + + Returns: + (tuple): A tuple containing a VQIP amount for model inputs and outputs + for mass balance checking. + """ + #TODO double check units in preprocessing - is weight of N or weight of NHX/noy? + + #Read data and scale + nhx = surface.get_data_input_surface('nhx-dry') * surface.area * ratio + noy = surface.get_data_input_surface('noy-dry') * surface.area * ratio + srp = surface.get_data_input_surface('srp-dry') * surface.area * ratio + + #Assign pollutants + vqip = surface.empty_vqip() + vqip['ammonia'] = nhx + vqip['nitrate'] = noy + vqip['phosphate'] = srp + + #Update tank + in_ = surface.dry_deposition_to_tank(vqip) + + #Return mass balance + return (in_, surface.empty_vqip()) + return atmospheric_deposition + +def adjust_precipitation_deposition(surface, ratio = 0.05): + def precipitation_deposition(): + """Inflow function to cause wet precipitation deposition to occur, updating + the surface tank + + Returns: + (tuple): A tuple containing a VQIP amount for model inputs and outputs + for mass balance checking. + """ + #TODO double check units - is weight of N or weight of NHX/noy? + + #Read data and scale + nhx = surface.get_data_input_surface('nhx-wet') * surface.area * ratio + noy = surface.get_data_input_surface('noy-wet') * surface.area * ratio + srp = surface.get_data_input_surface('srp-wet') * surface.area * ratio + + #Assign pollutants + vqip = surface.empty_vqip() + vqip['ammonia'] = nhx + vqip['nitrate'] = noy + vqip['phosphate'] = srp + + #Update tank + in_ = surface.wet_deposition_to_tank(vqip) + + #Return mass balance + return (in_, surface.empty_vqip()) + return precipitation_deposition + +def wrapper_wwtw(f, node,variable, value, date): + def new_end_timestep(): + f() + if str(node.t) == date: + node.process_parameters[variable]['constant'] = value + return new_end_timestep + +# def wrapper_impervioussurface_sewer(self): +# def push_to_sewers(#self +# ): +# """Outflow function that distributes ponded water (i.e., surface runoff) +# to the parent node's attached sewers. + +# Returns: +# (tuple): A tuple containing a VQIP amount for model inputs and outputs +# for mass balance checking. + +# """ +# # Get runoff +# surface_runoff = self.pull_ponded() +# print(surface_runoff['volume']) +# # Distribute +# # TODO in cwsd_partition this is done with timearea +# reply = self.parent.push_distributed(surface_runoff, of_type=["Sewer", "SewerCSO"], tag = 'Land') + +# # Update tank (forcing, because if the water can't go to the sewer, where else can it go) +# _ = self.push_storage(reply, force=True) +# # TODO... possibly this could flow to attached river or land nodes.. or other surfaces? I expect this doesn't matter for large scale models.. but may need to be revisited for detailed sewer models + +# # Return empty mass balance because outflows are handled by parent +# return (self.empty_vqip(), self.empty_vqip()) +# return push_to_sewers +# def wrapper_stormsewer_cso(self): +# def make_discharge(#self +# ): +# """Function to trigger downstream sewer flow. + +# Updates sewer tank travel time, pushes to WWTW, then sewer, then CSO. May +# flood land if, after these attempts, the sewer tank storage is above +# capacity. + +# """ +# self.sewer_tank.internal_arc.update_queue(direction="push") +# # TODO... do I need to do anything with this backflow... does it ever happen? + +# # Discharge to CSO first +# capacity = 86400 * 2 # [m3/d] + +# cso_spill = self.sewer_tank.active_storage['volume'] - capacity # [m3/d] +# if cso_spill > 0: +# # cso_spill = self.v_change_vqip(self.sewer_tank.active_storage, cso_spill) # [vqip] +# cso_spill = self.sewer_tank.pull_storage({'volume': cso_spill}) # [vqip] + +# remaining = self.push_distributed(cso_spill, +# of_type = ["CSO"] +# ) +# _ = self.sewer_tank.push_storage(remaining, force=True) +# # # list of arcs that connect with gw bodies +# # _, arcs = self.get_direction_arcs(direction='push', of_type=['CSO']) # new type +# # cso_arcs = [arc for arc in arcs if 'cso' in arc.name] +# # # if there is only one river arc +# # if len(cso_arcs) == 1: +# # arc = cso_arcs[0] +# # remaining = arc.send_push_request(cso_spill) +# # _ = self.sewer_tank.push_storage(remaining, force = True) +# # if remaining['volume'] > constants.FLOAT_ACCURACY: +# # print('Sewer unable to push from '+self.name+' into cso '+arc.name.split('-to-')[-1]) +# # else: +# # print("More than 1 cso corresponds with "+self.name+" - can't model it at this stage and needs further development") +# # Discharge to sewer and river then (based on preferences) +# to_send = self.sewer_tank.pull_storage(self.sewer_tank.active_storage) # [vqip] +# remaining = self.push_distributed(to_send, +# of_type = ["Sewer", "River_h"] +# ) +# _ = self.sewer_tank.push_storage(remaining, force=True) +# # #Discharge to WWTW if possible +# # remaining = self.push_distributed(remaining, +# # of_type = ["WWTW"], +# # tag = 'Sewer' +# # ) + +# # remaining = self.push_distributed(self.sewer_tank.active_storage) + +# # TODO backflow can cause mass balance errors here + +# # # Update tank +# # sent = self.extract_vqip(self.sewer_tank.active_storage, remaining) +# # reply = self.sewer_tank.pull_storage_exact(sent) +# # if (reply["volume"] - sent["volume"]) > constants.FLOAT_ACCURACY: +# # print("Miscalculated tank storage in discharge") + +# # Flood excess +# ponded = self.sewer_tank.pull_ponded() +# if ponded["volume"] > constants.FLOAT_ACCURACY: +# reply_ = self.push_distributed(ponded, of_type=["Land"], tag="Sewer") +# reply_ = self.sewer_tank.push_storage(reply_, time=0, force=True) +# if reply_["volume"]: +# print("ponded water cant reenter") +# return make_discharge + + +# def wrapper_run(self): + +# def run(#self, +# dates = None, +# settings = None, +# record_arcs = None, +# record_tanks = None, +# verbose = True, +# record_all = True, +# other_attr = {}): +# """Run the model object with the default orchestration + +# Args: +# dates (list, optional): Dates to simulate. Defaults to None, which +# simulates all dates that the model has data for. +# settings (dict, optional): Dict to specify what results are stored, +# not currently used. Defaults to None. +# record_arcs (list, optional): List of arcs to store result for. +# Defaults to None. +# record_tanks (list, optional): List of nodes with water stores to +# store results for. Defaults to None. +# verbose (bool, optional): Prints updates on simulation if true. +# Defaults to True. +# record_all (bool, optional): Specifies to store all results. +# Defaults to True. +# other_attr (dict, optional): Dict to store additional attributes of +# specified nodes/arcs. Example: +# {'arc.name1': ['arc.attribute1'], +# 'arc.name2': ['arc.attribute1', 'arc.attribute2'], +# 'node.name1': ['node.attribute1'], +# 'node.name2': ['node.attribute1', 'node.attribute2']} +# Defaults to None. + +# Returns: +# flows: simulated flows in a list of dicts +# tanks: simulated tanks storages in a list of dicts +# node_mb: mass balance differences in a list of dicts (not currently used) +# surfaces: simulated surface storages of land nodes in a list of dicts +# requested_attr: timeseries of attributes of specified nodes/arcs requested by the users +# """ + +# if record_arcs is None: +# record_arcs = self.arcs.keys() + +# if record_tanks is None: +# record_tanks = [] + +# if settings is None: +# settings = self.default_settings() + +# def blockPrint(): +# stdout = sys.stdout +# sys.stdout = open(os.devnull, 'w') +# return stdout +# def enablePrint(stdout): +# sys.stdout = stdout +# if not verbose: +# stdout = blockPrint() +# if dates is None: +# dates = self.dates + +# flows = [] +# tanks = [] +# node_mb = [] +# surfaces = [] + +# # print( +# # self.nodes['6aead97c-0040-4e31-889d-01f628faf990'].data_input_dict)#[('nhx-dry', dates[-36].to_period('M'))]) + +# for date in tqdm(dates, disable = (not verbose)): +# # for date in dates: +# for node in self.nodelist: +# node.t = date +# node.monthyear = date.to_period('M') + +# # print(type(node.monthyear)) + +# #Run FWTW +# for node in self.nodes_type['FWTW'].values(): +# node.treat_water() + +# #Create demand (gets pushed to sewers) +# for node in self.nodes_type['Demand'].values(): +# node.create_demand() + +# #Create runoff (impervious gets pushed to sewers, pervious to groundwater) +# for node in self.nodes_type['Land'].values(): +# node.run() + +# #Infiltrate GW +# for node in self.nodes_type['Groundwater'].values(): +# node.infiltrate() +# for node in self.nodes_type['Groundwater_h'].values(): +# node.infiltrate() + +# #Foul second so that it can discharge any misconnection +# for node in self.nodes_type['Foul'].values(): +# node.make_discharge() + +# #Discharge sewers (pushed to other sewers or WWTW) +# for node in self.nodes_type['Sewer'].values(): +# node.make_discharge() + +# #Discharge WWTW +# for node in self.nodes_type['WWTW'].values(): +# node.calculate_discharge() + +# #Discharge GW +# for node in self.nodes_type['Groundwater'].values(): +# node.distribute() + +# #river +# # for node in self.nodes_type['Lake'].values(): +# # node.calculate_discharge() +# for node in self.nodes_type['River'].values(): +# node.calculate_discharge() + +# #Abstract +# for node in self.nodes_type['Reservoir'].values(): +# node.make_abstractions() + +# for node in self.nodes_type['Land'].values(): +# node.apply_irrigation() + +# for node in self.nodes_type['WWTW'].values(): +# node.make_discharge() + +# #Catchment routing +# for node in self.nodes_type['Catchment'].values(): +# node.route() + +# #river +# # for node in self.nodes_type['Lake'].values(): +# # node.distribute() +# for node_name in self.river_discharge_order: +# self.nodes[node_name].distribute() + + +# #mass balance checking +# #nodes/system +# sys_in = self.empty_vqip() +# sys_out = self.empty_vqip() +# sys_ds = self.empty_vqip() + +# #arcs +# for arc in self.arcs.values(): +# in_, ds_, out_ = arc.arc_mass_balance() +# for v in constants.ADDITIVE_POLLUTANTS + ['volume']: +# sys_in[v] += in_[v] +# sys_out[v] += out_[v] +# sys_ds[v] += ds_[v] +# for node in self.nodelist: +# # print(node.name) +# in_, ds_, out_ = node.node_mass_balance() + +# # temp = {'name' : node.name, +# # 'time' : date} +# # for lab, dict_ in zip(['in','ds','out'], [in_, ds_, out_]): +# # for key, value in dict_.items(): +# # temp[(lab, key)] = value +# # node_mb.append(temp) + +# for v in constants.ADDITIVE_POLLUTANTS + ['volume']: +# sys_in[v] += in_[v] +# sys_out[v] += out_[v] +# sys_ds[v] += ds_[v] + +# for v in constants.ADDITIVE_POLLUTANTS + ['volume']: + +# #Find the largest value of in_, out_, ds_ +# largest = max(sys_in[v], sys_in[v], sys_in[v]) + +# if largest > constants.FLOAT_ACCURACY: +# #Convert perform comparison in a magnitude to match the largest value +# magnitude = 10**int(log10(largest)) +# in_10 = sys_in[v] / magnitude +# out_10 = sys_in[v] / magnitude +# ds_10 = sys_in[v] / magnitude +# else: +# in_10 = sys_in[v] +# ds_10 = sys_in[v] +# out_10 = sys_in[v] + +# if (in_10 - ds_10 - out_10) > constants.FLOAT_ACCURACY: +# print("system mass balance error for " + v + " of " + str(sys_in[v] - sys_ds[v] - sys_out[v])) + +# #Store results +# for arc in record_arcs: +# arc = self.arcs[arc] +# flows.append({'arc' : arc.name, +# 'flow' : arc.vqip_out['volume'], +# 'time' : date}) +# for pol in constants.POLLUTANTS: +# flows[-1][pol] = arc.vqip_out[pol] + +# for node in record_tanks: +# node = self.nodes[node] +# tanks.append({'node' : node.name, +# 'storage' : node.tank.storage['volume'], +# 'time' : date}) +# if record_all: +# for node in self.nodes.values(): +# for prop_ in dir(node): +# prop = node.__getattribute__(prop_) +# if prop.__class__ in [QueueTank, Tank, ResidenceTank]: +# tanks.append({'node' : node.name, +# 'time' : date, +# 'storage' : prop.storage['volume'], +# 'prop' : prop_}) +# for pol in constants.POLLUTANTS: +# tanks[-1][pol] = prop.storage[pol] + +# for name, node in self.nodes_type['Land'].items(): +# for surface in node.surfaces: +# if not isinstance(surface,ImperviousSurface): +# surfaces.append({'node' : name, +# 'surface' : surface.surface, +# 'percolation' : surface.percolation['volume'], +# 'subsurface_r' : surface.subsurface_flow['volume'], +# 'surface_r' : surface.infiltration_excess['volume'], +# 'storage' : surface.storage['volume'], +# 'evaporation' : surface.evaporation['volume'], +# 'precipitation' : surface.precipitation['volume'], +# 'tank_recharge' : surface.tank_recharge, +# 'capacity' : surface.capacity, +# 'time' : date, +# 'et0_coef' : surface.et0_coefficient, +# # 'crop_factor' : surface.crop_factor +# }) +# for pol in constants.POLLUTANTS: +# surfaces[-1][pol] = surface.storage[pol] +# else: +# surfaces.append({'node' : name, +# 'surface' : surface.surface, +# 'storage' : surface.storage['volume'], +# 'evaporation' : surface.evaporation['volume'], +# 'precipitation' : surface.precipitation['volume'], +# 'capacity' : surface.capacity, +# 'time' : date}) +# for pol in constants.POLLUTANTS: +# surfaces[-1][pol] = surface.storage[pol] + +# for node in self.nodes.values(): +# node.end_timestep() + +# for arc in self.arcs.values(): +# arc.end_timestep() +# if not verbose: +# enablePrint(stdout) +# return flows, tanks, node_mb, surfaces +# return run \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml b/docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml new file mode 100644 index 00000000..ee63276c --- /dev/null +++ b/docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml @@ -0,0 +1,10225 @@ +orchestration: +- FWTW: treat_water +- Demand: create_demand +- Land: run +- Groundwater: infiltrate +- Foul: make_discharge +- Sewer: make_discharge +- WWTW: calculate_discharge +- Groundwater: distribute +- River: calculate_discharge +- Reservoir: make_abstractions +- Land: apply_irrigation +- WWTW: make_discharge +- Catchment: route +extensions: + extension_file: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton + new_classes: + Groundwater_h: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton + River_h: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton + TimevaryingDemand: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton + CSO: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton + SewerCSO: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton +nodes: + chalton_stw-1823-demand: + gardening_efficiency: 0.42 + name: chalton_stw-1823-demand + constant_demand: 0 + constant_temp: 30 + per_capita: 0.12 + pollutant_load: + do: 0.005 + org-phosphorus: 0.0007 + phosphate: 7.0e-05 + ammonia: 4.0e-05 + solids: 0.0005 + bod: 0.005 + cod: 0.03 + ph: 7.5 + temperature: 13.0 + nitrate: 0.0001 + nitrite: 1.0e-05 + org-nitrogen: 1.0e-05 + constant_weighting: 0.2 + population: 63471.75333511187 + type_: Demand + node_type_override: ResidentialDemand + filename: chalton_stw-1823-demand-inputs.csv.gz + chalton_stw-1823-foul: + capacity: 11424.915600320137 + name: chalton_stw-1823-foul + pipe_time: 0 + chamber_area: 1 + pipe_timearea: &id001 + 0: 1 + chamber_floor: 10 + type_: Sewer + node_type_override: Sewer + luton_stw-1823-demand: + gardening_efficiency: 0.42 + name: luton_stw-1823-demand + constant_demand: 0 + constant_temp: 30 + per_capita: 0.12 + pollutant_load: + do: 0.005 + org-phosphorus: 0.0007 + phosphate: 7.0e-05 + ammonia: 4.0e-04 + solids: 0.0005 + bod: 0.005 + cod: 0.03 + ph: 7.5 + temperature: 13.0 + nitrate: 0.0001 + nitrite: 1.0e-05 + org-nitrogen: 1.0e-05 + constant_weighting: 0.2 + population: 112156.74238526115 + type_: Demand + node_type_override: ResidentialDemand + filename: luton_stw-1823-demand-inputs.csv.gz + 1823-gw-demand: + name: 1823-gw-demand + constant_demand: null + pollutant_load: {} + type_: Demand + node_type_override: TimevaryingDemand + filename: 1823-gw-demand-inputs.csv.gz + luton_stw-1823-foul: + capacity: 20188.213629347007 + name: luton_stw-1823-foul + pipe_time: 0 + chamber_area: 1 + pipe_timearea: *id001 + chamber_floor: 10 + type_: Sewer + node_type_override: Sewer + distribution: + name: distribution + type_: UnlimitedDistribution + node_type_override: UnlimitedDistribution + 1823-land: + subsurface_residence_time: 50.0 + name: 1823-land + surface_residence_time: 1.7 + percolation_residence_time: 1.0 + type_: Land + node_type_override: Land + surfaces: + Maize: + surface: Maize + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.3 + - 0.3 + - 1.2 + - 1.2 + - 0.325 + - 0.0 + - 0.0 + crop_factor_stage_dates: + - 0 + - 90 + - 91 + - 121 + - 161 + - 213 + - 244 + - 245 + - 366 + rooting_depth: 1.35 + harvest_day: 244 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 24.855240288041117 + phosphate: 24.855240288041117 + ammonia: 12.427620144020558 + solids: 2485.524028804112 + bod: 248.55240288041117 + cod: 4971.048057608224 + ph: 7.0 + temperature: 11.0 + nitrate: 994.2096115216447 + nitrite: 4.971048057608224 + org-nitrogen: 1242.762014402056 + volume: 248552.40288041116 + area: 736451.5640901071 + surface_coefficient: 0.01 + decays: &id002 + ammonia: + constant: 0.1 + exponent: 1.005 + nitrite: + constant: 0.05 + exponent: 1.005 + ET_depletion_factor: 0.55 + infiltration_capacity: 0.1 + sowing_day: 91 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 1242.762014402056 + phosphate: 1242.762014402056 + ammonia: 0.0 + nitrate: 248552.40288041116 + nitrite: 0.0 + org-nitrogen: 248552.40288041116 + volume: 248552.40288041116 + pollutant_load: &id003 {} + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Maize-inputs.csv.gz + total_porosity: 0.4 + Field beans: + surface: Field beans + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.5 + - 0.5 + - 1.15 + - 1.15 + - 1.1 + - 0.0 + - 0.0 + crop_factor_stage_dates: + - 0 + - 120 + - 121 + - 135 + - 161 + - 206 + - 222 + - 223 + - 366 + rooting_depth: 0.6 + harvest_day: 222 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 8.373989292279457 + phosphate: 8.373989292279457 + ammonia: 4.186994646139729 + solids: 837.3989292279458 + bod: 83.73989292279458 + cod: 1674.7978584558916 + ph: 7.0 + temperature: 11.0 + nitrate: 334.9595716911783 + nitrite: 1.6747978584558916 + org-nitrogen: 418.6994646139729 + volume: 83739.89292279458 + area: 558265.9528186305 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.45 + infiltration_capacity: 0.1 + sowing_day: 121 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 418.6994646139729 + phosphate: 418.6994646139729 + ammonia: 0.0 + nitrate: 83739.89292279458 + nitrite: 0.0 + org-nitrogen: 83739.89292279458 + volume: 83739.89292279458 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Field_beans-inputs.csv.gz + total_porosity: 0.4 + Oilseed rape: + surface: Oilseed rape + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.7124999999999999 + - 1.075 + - 1.075 + - 0.35 + - 0.0 + - 0.0 + - 0.35 + - 0.35 + - 0.7124999999999999 + crop_factor_stage_dates: + - 0 + - 60 + - 166 + - 227 + - 228 + - 257 + - 258 + - 305 + - 365 + rooting_depth: 1.25 + harvest_day: 227 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 16.8476420733389 + phosphate: 16.8476420733389 + ammonia: 8.42382103666945 + solids: 1684.7642073338898 + bod: 168.47642073338898 + cod: 3369.5284146677795 + ph: 7.0 + temperature: 11.0 + nitrate: 673.9056829335559 + nitrite: 3.36952841466778 + org-nitrogen: 842.3821036669449 + volume: 168476.42073338898 + area: 539124.5463468448 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.6 + infiltration_capacity: 0.1 + sowing_day: 258 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 842.3821036669449 + phosphate: 842.3821036669449 + ammonia: 0.0 + nitrate: 168476.42073338898 + nitrite: 0.0 + org-nitrogen: 168476.42073338898 + volume: 168476.42073338898 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Oilseed_rape-inputs.csv.gz + total_porosity: 0.4 + Spring barley: + surface: Spring barley + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.3 + - 0.3 + - 1.15 + - 1.15 + - 0.25 + - 0.0 + - 0.0 + crop_factor_stage_dates: + - 0 + - 31 + - 32 + - 79 + - 105 + - 166 + - 244 + - 245 + - 366 + rooting_depth: 1.25 + harvest_day: 244 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 41.85785493116267 + phosphate: 41.85785493116267 + ammonia: 20.928927465581335 + solids: 4185.785493116267 + bod: 418.5785493116267 + cod: 8371.570986232535 + ph: 7.0 + temperature: 11.0 + nitrate: 1674.3141972465069 + nitrite: 8.371570986232534 + org-nitrogen: 2092.8927465581337 + volume: 418578.5493116267 + area: 1339451.3577972054 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.55 + infiltration_capacity: 0.1 + sowing_day: 32 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 2092.8927465581337 + phosphate: 2092.8927465581337 + ammonia: 0.0 + nitrate: 418578.5493116267 + nitrite: 0.0 + org-nitrogen: 418578.5493116267 + volume: 418578.5493116267 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Spring_barley-inputs.csv.gz + total_porosity: 0.4 + Spring wheat: + surface: Spring wheat + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.3 + - 0.3 + - 1.15 + - 1.15 + - 0.325 + - 0.0 + - 0.0 + crop_factor_stage_dates: + - 0 + - 73 + - 74 + - 121 + - 166 + - 196 + - 274 + - 275 + - 366 + rooting_depth: 1.25 + harvest_day: 274 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 5.729782752413001 + phosphate: 5.729782752413001 + ammonia: 2.8648913762065007 + solids: 572.9782752413001 + bod: 57.297827524130014 + cod: 1145.9565504826003 + ph: 7.0 + temperature: 11.0 + nitrate: 229.19131009652006 + nitrite: 1.1459565504826004 + org-nitrogen: 286.48913762065007 + volume: 57297.827524130014 + area: 183353.04807721605 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.55 + infiltration_capacity: 0.1 + sowing_day: 74 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 286.48913762065007 + phosphate: 286.48913762065007 + ammonia: 0.0 + nitrate: 57297.827524130014 + nitrite: 0.0 + org-nitrogen: 57297.827524130014 + volume: 57297.827524130014 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Spring_wheat-inputs.csv.gz + total_porosity: 0.4 + Winter barley: + surface: Winter barley + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.817391304347826 + - 1.15 + - 1.15 + - 0.25 + - 0.0 + - 0.0 + - 0.3 + - 0.3 + - 0.817391304347826 + crop_factor_stage_dates: + - 0 + - 36 + - 105 + - 152 + - 153 + - 257 + - 258 + - 309 + - 365 + rooting_depth: 1.25 + harvest_day: 152 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 48.418117460244964 + phosphate: 48.418117460244964 + ammonia: 24.209058730122482 + solids: 4841.811746024497 + bod: 484.18117460244963 + cod: 9683.623492048993 + ph: 7.0 + temperature: 11.0 + nitrate: 1936.7246984097985 + nitrite: 9.683623492048994 + org-nitrogen: 2420.9058730122483 + volume: 484181.17460244964 + area: 1549379.7587278388 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.55 + infiltration_capacity: 0.1 + sowing_day: 258 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 2420.9058730122483 + phosphate: 2420.9058730122483 + ammonia: 0.0 + nitrate: 484181.17460244964 + nitrite: 0.0 + org-nitrogen: 484181.17460244964 + volume: 484181.17460244964 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Winter_barley-inputs.csv.gz + total_porosity: 0.4 + Winter oats: + surface: Winter oats + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 1.0114130434782607 + - 1.15 + - 1.15 + - 0.25 + - 0.0 + - 0.0 + - 0.3 + - 0.3 + - 1.0114130434782607 + crop_factor_stage_dates: + - 0 + - 15 + - 74 + - 152 + - 153 + - 243 + - 244 + - 288 + - 365 + rooting_depth: 1.25 + harvest_day: 152 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 4.797525601869322 + phosphate: 4.797525601869322 + ammonia: 2.398762800934661 + solids: 479.75256018693216 + bod: 47.975256018693216 + cod: 959.5051203738643 + ph: 7.0 + temperature: 11.0 + nitrate: 191.90102407477286 + nitrite: 0.9595051203738644 + org-nitrogen: 239.87628009346608 + volume: 47975.25601869322 + area: 153520.8192598183 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.55 + infiltration_capacity: 0.1 + sowing_day: 244 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 239.87628009346608 + phosphate: 239.87628009346608 + ammonia: 0.0 + nitrate: 47975.25601869322 + nitrite: 0.0 + org-nitrogen: 47975.25601869322 + volume: 47975.25601869322 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Winter_oats-inputs.csv.gz + total_porosity: 0.4 + Winter wheat: + surface: Winter wheat + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.8298076923076922 + - 1.15 + - 1.15 + - 0.325 + - 0.0 + - 0.0 + - 0.7 + - 0.7 + - 0.8298076923076922 + crop_factor_stage_dates: + - 0 + - 74 + - 182 + - 244 + - 245 + - 273 + - 274 + - 335 + - 365 + rooting_depth: 1.65 + harvest_day: 244 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 214.3381644847924 + phosphate: 214.3381644847924 + ammonia: 107.1690822423962 + solids: 21433.81644847924 + bod: 2143.381644847924 + cod: 42867.63289695848 + ph: 7.0 + temperature: 11.0 + nitrate: 8573.526579391695 + nitrite: 42.86763289695848 + org-nitrogen: 10716.90822423962 + volume: 2143381.644847924 + area: 5196076.714782846 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.55 + infiltration_capacity: 0.1 + sowing_day: 274 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 10716.90822423962 + phosphate: 10716.90822423962 + ammonia: 0.0 + nitrate: 2143381.644847924 + nitrite: 0.0 + org-nitrogen: 2143381.644847924 + volume: 2143381.644847924 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Winter_wheat-inputs.csv.gz + total_porosity: 0.4 + Other crops: + surface: Other crops + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0 + - 0 + - 0.46428571428571463 + - 0.46428571428571463 + - 1.0946428571428501 + - 1.0946428571428501 + - 0.573214285714282 + - 0 + - 0 + crop_factor_stage_dates: + - 0 + - 90 + - 91 + - 121 + - 152 + - 201 + - 232 + - 233 + - 366 + rooting_depth: 1.0857142857142843 + harvest_day: 232 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 24.93080463867836 + phosphate: 24.93080463867836 + ammonia: 12.46540231933918 + solids: 2493.080463867836 + bod: 249.3080463867836 + cod: 4986.160927735672 + ph: 7.0 + temperature: 11.0 + nitrate: 997.2321855471343 + nitrite: 4.986160927735672 + org-nitrogen: 1246.540231933918 + volume: 249308.0463867836 + area: 918503.3287934144 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.5071428571428571 + infiltration_capacity: 0.1 + sowing_day: 91 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 1246.540231933918 + phosphate: 1246.540231933918 + ammonia: 0.0 + nitrate: 249308.0463867836 + nitrite: 0.0 + org-nitrogen: 249308.0463867836 + volume: 249308.0463867836 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Other_crops-inputs.csv.gz + total_porosity: 0.4 + Garden: + surface: Garden + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.9 + - 0.9 + - 0.95 + - 0.95 + - 0.95 + - 0.0 + - 0.0 + irrigation_coefficient: 0.0 + crop_factor_stage_dates: + - 0 + - 0 + - 1 + - 2 + - 3 + - 5 + - 365 + - 366 + - 366 + rooting_depth: 0.75 + harvest_day: 365 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 248.19533297481044 + phosphate: 248.19533297481044 + ammonia: 124.09766648740522 + solids: 24819.533297481044 + bod: 2481.9533297481044 + cod: 49639.06659496209 + ph: 7.0 + temperature: 11.0 + nitrate: 9927.813318992417 + nitrite: 49.63906659496209 + org-nitrogen: 12409.766648740522 + volume: 2481953.3297481043 + area: 13237084.425323224 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.4 + infiltration_capacity: 0.1 + sowing_day: 1 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 12409.766648740522 + phosphate: 12409.766648740522 + ammonia: 0.0 + nitrate: 2481953.3297481043 + nitrite: 0.0 + org-nitrogen: 2481953.3297481043 + volume: 2481953.3297481043 + pollutant_load: *id003 + et0_coefficient: 1 + type_: IrrigationSurface + filename: 1823-land-Garden-inputs.csv.gz + total_porosity: 0.4 + Woodland: + surface: Woodland + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.15 + - 0.15 + - 0.9 + - 0.9 + - 0.15 + - 0.0 + - 0.0 + crop_factor_stage_dates: + - 0 + - 0 + - 1 + - 4 + - 135 + - 288 + - 365 + - 366 + - 366 + rooting_depth: 1.75 + harvest_day: 365 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 160.5087319745666 + phosphate: 160.5087319745666 + ammonia: 80.2543659872833 + solids: 16050.873197456656 + bod: 1605.0873197456656 + cod: 32101.746394913313 + ph: 7.0 + temperature: 11.0 + nitrate: 6420.349278982662 + nitrite: 32.10174639491331 + org-nitrogen: 8025.436598728328 + volume: 1605087.3197456656 + area: 3668771.0165615217 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.75 + infiltration_capacity: 0.1 + sowing_day: 1 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 8025.436598728328 + phosphate: 8025.436598728328 + ammonia: 0.0 + nitrate: 1605087.3197456656 + nitrite: 0.0 + org-nitrogen: 1605087.3197456656 + volume: 1605087.3197456656 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Woodland-inputs.csv.gz + total_porosity: 0.4 + Grass: + surface: Grass + field_capacity: 0.15 + percolation_coefficient: 0.7 + crop_factor_stages: + - 0.0 + - 0.0 + - 0.9 + - 0.9 + - 0.95 + - 0.95 + - 0.95 + - 0.0 + - 0.0 + crop_factor_stage_dates: + - 0 + - 0 + - 1 + - 2 + - 3 + - 5 + - 365 + - 366 + - 366 + rooting_depth: 0.75 + harvest_day: 365 + ihacres_p: 10.0 + initial_storage: + do: 0.01 + org-phosphorus: 383.2844684047325 + phosphate: 383.2844684047325 + ammonia: 191.64223420236624 + solids: 38328.44684047325 + bod: 3832.844684047325 + cod: 76656.8936809465 + ph: 7.0 + temperature: 11.0 + nitrate: 15331.3787361893 + nitrite: 76.6568936809465 + org-nitrogen: 19164.223420236623 + volume: 3832844.6840473246 + area: 22816424.919374123 + surface_coefficient: 0.01 + decays: *id002 + ET_depletion_factor: 0.4 + infiltration_capacity: 0.1 + sowing_day: 1 + wilting_point: 0.12 + datum: 10 + initial_soil_storage: + org-phosphorus: 19164.223420236623 + phosphate: 19164.223420236623 + ammonia: 0.0 + nitrate: 3832844.6840473246 + nitrite: 0.0 + org-nitrogen: 3832844.6840473246 + volume: 3832844.6840473246 + pollutant_load: *id003 + et0_coefficient: 1 + type_: GrowingSurface + filename: 1823-land-Grass-inputs.csv.gz + total_porosity: 0.4 + Impervious: + pore_depth: 0.001 + surface: Impervious + decays: {} + datum: 10 + et0_to_e: 1.2 + initial_storage: 0 + pollutant_load: + do: 0.005 + org-phosphorus: 1.0e-08 + phosphate: 1.0e-10 + ammonia: 1.0e-09 + solids: 1.0e-05 + bod: 1.0e-05 + cod: 1.0e-06 + ph: 7.5 + temperature: 13.0 + nitrate: 1.0e-09 + nitrite: 1.0e-09 + org-nitrogen: 1.0e-09 + area: 13835156.946402296 + type_: ImperviousSurface + filename: 1823-land-Impervious-inputs.csv.gz + filename: 1823-land-inputs.csv.gz + 1823-storm: + capacity: 324194.8710171471 + name: 1823-storm + pipe_time: 0 + chamber_area: 1 + pipe_timearea: *id001 + chamber_floor: 10 + type_: Sewer + node_type_override: Sewer + 1823-stormcso: + capacity: 324194.8710171471 + name: 1823-stormcso + pipe_time: 0 + chamber_area: 1 + pipe_timearea: *id001 + chamber_floor: 10 + type_: Sewer + node_type_override: SewerCSO + spill_capacity: 172800 + 1823-gw: + infiltration_threshold: 0.0 + decays: null + name: 1823-gw + datum: -70 + infiltration_pct: 0.0 + area: 64731564.39835509 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 108.51860639741416 + z_surface: 136.48225 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 6aead97c-0040-4e31-889d-01f628faf990: 123.6 + fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7: 123.6 + 7e0cc125-fe7a-445b-af6b-bf55ac4065f9: 123.6 + e07ddbc6-7158-4a47-b987-eb2b934dd257: 123.6 + e4b324b5-60f9-48c2-9d64-d89d22a5305e: 123.6 + 88c7e69b-e4b3-4483-a438-0d6f9046cdee: 123.6 + a057761f-e18e-4cad-84d4-9458edc182ef: 123.6 + 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8: 123.6 + 1823-river: + capacity: 1448206.7140110577 + decays: null + name: 1823-river + damp: 0.1 + width: 30 + velocity: 17280.0 + datum: 107.51860639741416 + depth: 3 + initial_storage: 0 + mrf: 0 + length: 16091.185711233973 + area: 482735.5713370192 + type_: River + node_type_override: River_h + filename: 1823-river-inputs.csv.gz + chalton_stw-wwtw: + liquor_multiplier: + do: 0.1 + org-phosphorus: 0.5 + phosphate: 0.8 + ammonia: 0.2 + solids: 0.1 + bod: 0.05 + cod: 0.1 + nitrate: 0.05 + nitrite: 0.2 + volume: 0.03 + org-nitrogen: 0.95 + name: chalton_stw-wwtw + percent_solids: 0.0002 + stormwater_storage_capacity: 31764.513449128088 + process_parameters: + ammonia: + constant: 0.01 + exponent: 1.05 + bod: + constant: 0.07 + exponent: 1.05 + cod: + constant: 0.1 + exponent: 1.05 + do: + constant: 1.2 + exponent: 1.005 + nitrate: + constant: 20.0 + exponent: 1.05 + nitrite: + constant: 5.0 + exponent: 1.05 + org-nitrogen: + constant: 0.9 + exponent: 1.05 + org-phosphorus: + constant: 0.1 + exponent: 1.05 + phosphate: + constant: 1.3 + exponent: 1.001 + solids: + constant: 0.02 + exponent: 1.05 + volume: + constant: 0.9698 + stormwater_storage_area: 1 + stormwater_storage_elevation: 10 + treatment_throughput_capacity: 190587.08069476852 + type_: WWTW + node_type_override: WWTW + luton_stw-wwtw: + liquor_multiplier: + do: 0.1 + org-phosphorus: 0.5 + phosphate: 0.8 + ammonia: 0.2 + solids: 0.1 + bod: 0.05 + cod: 0.1 + nitrate: 0.05 + nitrite: 0.2 + volume: 0.03 + org-nitrogen: 0.95 + name: luton_stw-wwtw + percent_solids: 0.0002 + stormwater_storage_capacity: 66608.41 + process_parameters: + ammonia: + constant: 0.015 + exponent: 1.05 + bod: + constant: 0.07 + exponent: 1.05 + cod: + constant: 0.1 + exponent: 1.05 + do: + constant: 1.2 + exponent: 1.005 + nitrate: + constant: 20.0 + exponent: 1.05 + nitrite: + constant: 5.0 + exponent: 1.05 + org-nitrogen: + constant: 0.9 + exponent: 1.05 + org-phosphorus: + constant: 0.1 + exponent: 1.05 + phosphate: + constant: 1.3 + exponent: 1.001 + solids: + constant: 0.02 + exponent: 1.05 + volume: + constant: 0.9698 + stormwater_storage_area: 1 + stormwater_storage_elevation: 10 + treatment_throughput_capacity: 39092.92454064619 + type_: WWTW + node_type_override: WWTW + 1823-outlet: + type_: Node + name: 1823-outlet + 1823-downstream: + type_: Waste + name: 1823-downstream + external-river: + type_: Waste + name: external-river + 6aead97c-0040-4e31-889d-01f628faf990: + infiltration_threshold: 0.0 + decays: null + name: 6aead97c-0040-4e31-889d-01f628faf990 + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 128.8920588235294 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: 6aead97c-0040-4e31-889d-01f628faf990.csv + fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7: + infiltration_threshold: 0.0 + decays: null + name: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 127.25714285714288 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7.csv + 7e0cc125-fe7a-445b-af6b-bf55ac4065f9: + infiltration_threshold: 0.0 + decays: null + name: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9 + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 119.53073170731707 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9.csv + e07ddbc6-7158-4a47-b987-eb2b934dd257: + infiltration_threshold: 0.0 + decays: null + name: e07ddbc6-7158-4a47-b987-eb2b934dd257 + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 98.70826666666667 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: e07ddbc6-7158-4a47-b987-eb2b934dd257.csv + e4b324b5-60f9-48c2-9d64-d89d22a5305e: + infiltration_threshold: 0.0 + decays: null + name: e4b324b5-60f9-48c2-9d64-d89d22a5305e + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 107.70526315789476 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: e4b324b5-60f9-48c2-9d64-d89d22a5305e.csv + 88c7e69b-e4b3-4483-a438-0d6f9046cdee: + infiltration_threshold: 0.0 + decays: null + name: 88c7e69b-e4b3-4483-a438-0d6f9046cdee + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 109.0362037037037 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: 88c7e69b-e4b3-4483-a438-0d6f9046cdee.csv + a057761f-e18e-4cad-84d4-9458edc182ef: + infiltration_threshold: 0.0 + decays: null + name: a057761f-e18e-4cad-84d4-9458edc182ef + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 106.9316129032258 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: a057761f-e18e-4cad-84d4-9458edc182ef.csv + 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8: + infiltration_threshold: 0.0 + decays: null + name: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 + datum: -70 + infiltration_pct: 0.0 + area: 1000000000000.0 + type_: Groundwater + node_type_override: Groundwater_h + h_initial: 107.65836956521738 + z_surface: 200 + s: 0.01 + c_riverbed: 1.0e-05 + c_aquifer: + 1823-gw: 123.6 + filename: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8.csv + 1823-stormcso-cso: + capacity: 1000000000000000.0 + name: 1823-stormcso-cso + pipe_time: 0 + chamber_area: 1 + pipe_timearea: *id001 + chamber_floor: 10 + type_: Sewer + node_type_override: CSO + luton_stw-1823-combined: + capacity: 324194.8710171471 + name: luton_stw-1823-combined + pipe_time: 0 + chamber_area: 1 + pipe_timearea: *id001 + chamber_floor: 10 + type_: Sewer + node_type_override: Sewer +arcs: + chalton_stw-1823-demand-to-chalton_stw-1823-foul: + capacity: 1000000000000000.0 + name: chalton_stw-1823-demand-to-chalton_stw-1823-foul + preference: 1 + type_: Arc + in_port: chalton_stw-1823-demand + out_port: chalton_stw-1823-foul + chalton_stw-1823-demand-to-1823-land: + capacity: 1000000000000000.0 + name: chalton_stw-1823-demand-to-1823-land + preference: 0.29755011992665326 + type_: Arc + in_port: chalton_stw-1823-demand + out_port: 1823-land + distribution-to-chalton_stw-1823-demand: + capacity: 1000000000000000.0 + name: distribution-to-chalton_stw-1823-demand + preference: 1 + type_: Arc + in_port: distribution + out_port: chalton_stw-1823-demand + luton_stw-1823-demand-to-luton_stw-1823-foul: + capacity: 1000000000000000.0 + name: luton_stw-1823-demand-to-luton_stw-1823-foul + preference: 1 + type_: Arc + in_port: luton_stw-1823-demand + out_port: luton_stw-1823-foul + luton_stw-1823-demand-to-1823-land: + capacity: 1000000000000000.0 + name: luton_stw-1823-demand-to-1823-land + preference: 0.45980943658684387 + type_: Arc + in_port: luton_stw-1823-demand + out_port: 1823-land + distribution-to-luton_stw-1823-demand: + capacity: 1000000000000000.0 + name: distribution-to-luton_stw-1823-demand + preference: 1 + type_: Arc + in_port: distribution + out_port: luton_stw-1823-demand + 1823-land-to-1823-storm: + capacity: 1000000000000000.0 + name: 1823-land-to-1823-storm + preference: 1 + type_: Arc + in_port: 1823-land + out_port: 1823-storm + 1823-storm-to-1823-stormcso: + capacity: 1000000000000000.0 + name: 1823-storm-to-1823-stormcso + preference: 1 + type_: Arc + in_port: 1823-storm + out_port: 1823-stormcso + 1823-land-to-1823-gw: + capacity: 1000000000000000.0 + name: 1823-land-to-1823-gw + preference: 1 + type_: Arc + in_port: 1823-land + out_port: 1823-gw + 1823-land-to-1823-river: + capacity: 1000000000000000.0 + name: 1823-land-to-1823-river + preference: 1 + type_: Arc + in_port: 1823-land + out_port: 1823-river + 1823-gw-to-1823-river: + capacity: 1000000000000000.0 + name: 1823-gw-to-1823-river + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: 1823-river + chalton_stw-1823-foul-to-chalton_stw-wwtw: + capacity: 1000000000000000.0 + name: chalton_stw-1823-foul-to-chalton_stw-wwtw + preference: 1 + type_: Arc + in_port: chalton_stw-1823-foul + out_port: chalton_stw-wwtw + chalton_stw-wwtw-to-external-river: + capacity: 1000000000000000.0 + name: chalton_stw-wwtw-to-external-river + preference: 1 + type_: Arc + in_port: chalton_stw-wwtw + out_port: external-river + luton_stw-wwtw-to-1823-outlet: + capacity: 1000000000000000.0 + name: luton_stw-wwtw-to-1823-outlet + preference: 1 + type_: Arc + in_port: luton_stw-wwtw + out_port: 1823-outlet + 1823-river-to-1823-outlet: + capacity: 1000000000000000.0 + name: 1823-river-to-1823-outlet + preference: 1 + type_: Arc + in_port: 1823-river + out_port: 1823-outlet + 1823-outlet-to-1823-downstream: + capacity: 1000000000000000.0 + name: 1823-outlet-to-1823-downstream + preference: 1 + type_: Arc + in_port: 1823-outlet + out_port: 1823-downstream + 1823-river-to-1823-gw: + capacity: 1000000000000000.0 + name: 1823-river-to-1823-gw + preference: 1 + type_: Arc + in_port: 1823-river + out_port: 1823-gw + 1823-gw-demand-to-external-river: + capacity: 1000000000000000.0 + name: 1823-gw-demand-to-external-river + preference: 1 + type_: Arc + in_port: 1823-gw-demand + out_port: external-river + 1823-gw-to-1823-gw-demand: + capacity: 1000000000000000.0 + name: 1823-gw-to-1823-gw-demand + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: 1823-gw-demand + 1823-stormcso-to-1823-river: + capacity: 324194.8710171471 + name: 1823-stormcso-to-1823-river + preference: 1 + type_: Arc + in_port: 1823-stormcso + out_port: 1823-river + 1823-stormcso-to-luton_stw-1823-combined: + capacity: 324194.8710171471 + name: 1823-stormcso-to-luton_stw-1823-combined + preference: 3.5 + type_: Arc + in_port: 1823-stormcso + out_port: luton_stw-1823-combined + 1823-stormcso-to-1823-stormcso-cso: + capacity: 1000000000000000.0 + name: 1823-stormcso-to-1823-stormcso-cso + preference: 1 + type_: Arc + in_port: 1823-stormcso + out_port: 1823-stormcso-cso + 1823-stormcso-cso-to-1823-river: + capacity: 1000000000000000.0 + name: 1823-stormcso-cso-to-1823-river + preference: 1 + type_: Arc + in_port: 1823-stormcso-cso + out_port: 1823-river + luton_stw-1823-foul-to-luton_stw-1823-combined: + capacity: 1000000000000000.0 + name: luton_stw-1823-foul-to-luton_stw-1823-combined + preference: 1 + type_: Arc + in_port: luton_stw-1823-foul + out_port: luton_stw-1823-combined + luton_stw-1823-combined-to-luton_stw-wwtw: + capacity: 1000000000000000.0 + name: luton_stw-1823-combined-to-luton_stw-wwtw + preference: 1 + type_: Arc + in_port: luton_stw-1823-combined + out_port: luton_stw-wwtw + luton_stw-1823-combined-to-1823-outlet: + capacity: 1000000000000000.0 + name: luton_stw-1823-combined-to-1823-outlet + preference: 1.0e-17 + type_: Arc + in_port: luton_stw-1823-combined + out_port: 1823-outlet + 6aead97c-0040-4e31-889d-01f628faf990-to-1823-gw: + capacity: 1000000000000000.0 + name: 6aead97c-0040-4e31-889d-01f628faf990-to-1823-gw + preference: 1 + type_: Arc + in_port: 6aead97c-0040-4e31-889d-01f628faf990 + out_port: 1823-gw + 1823-gw-to-6aead97c-0040-4e31-889d-01f628faf990: + capacity: 1000000000000000.0 + name: 1823-gw-to-6aead97c-0040-4e31-889d-01f628faf990 + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: 6aead97c-0040-4e31-889d-01f628faf990 + fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7-to-1823-gw: + capacity: 1000000000000000.0 + name: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7-to-1823-gw + preference: 1 + type_: Arc + in_port: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 + out_port: 1823-gw + 1823-gw-to-fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7: + capacity: 1000000000000000.0 + name: 1823-gw-to-fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 + 7e0cc125-fe7a-445b-af6b-bf55ac4065f9-to-1823-gw: + capacity: 1000000000000000.0 + name: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9-to-1823-gw + preference: 1 + type_: Arc + in_port: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9 + out_port: 1823-gw + 1823-gw-to-7e0cc125-fe7a-445b-af6b-bf55ac4065f9: + capacity: 1000000000000000.0 + name: 1823-gw-to-7e0cc125-fe7a-445b-af6b-bf55ac4065f9 + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9 + e07ddbc6-7158-4a47-b987-eb2b934dd257-to-1823-gw: + capacity: 1000000000000000.0 + name: e07ddbc6-7158-4a47-b987-eb2b934dd257-to-1823-gw + preference: 1 + type_: Arc + in_port: e07ddbc6-7158-4a47-b987-eb2b934dd257 + out_port: 1823-gw + 1823-gw-to-e07ddbc6-7158-4a47-b987-eb2b934dd257: + capacity: 1000000000000000.0 + name: 1823-gw-to-e07ddbc6-7158-4a47-b987-eb2b934dd257 + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: e07ddbc6-7158-4a47-b987-eb2b934dd257 + e4b324b5-60f9-48c2-9d64-d89d22a5305e-to-1823-gw: + capacity: 1000000000000000.0 + name: e4b324b5-60f9-48c2-9d64-d89d22a5305e-to-1823-gw + preference: 1 + type_: Arc + in_port: e4b324b5-60f9-48c2-9d64-d89d22a5305e + out_port: 1823-gw + 1823-gw-to-e4b324b5-60f9-48c2-9d64-d89d22a5305e: + capacity: 1000000000000000.0 + name: 1823-gw-to-e4b324b5-60f9-48c2-9d64-d89d22a5305e + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: e4b324b5-60f9-48c2-9d64-d89d22a5305e + 88c7e69b-e4b3-4483-a438-0d6f9046cdee-to-1823-gw: + capacity: 1000000000000000.0 + name: 88c7e69b-e4b3-4483-a438-0d6f9046cdee-to-1823-gw + preference: 1 + type_: Arc + in_port: 88c7e69b-e4b3-4483-a438-0d6f9046cdee + out_port: 1823-gw + 1823-gw-to-88c7e69b-e4b3-4483-a438-0d6f9046cdee: + capacity: 1000000000000000.0 + name: 1823-gw-to-88c7e69b-e4b3-4483-a438-0d6f9046cdee + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: 88c7e69b-e4b3-4483-a438-0d6f9046cdee + a057761f-e18e-4cad-84d4-9458edc182ef-to-1823-gw: + capacity: 1000000000000000.0 + name: a057761f-e18e-4cad-84d4-9458edc182ef-to-1823-gw + preference: 1 + type_: Arc + in_port: a057761f-e18e-4cad-84d4-9458edc182ef + out_port: 1823-gw + 1823-gw-to-a057761f-e18e-4cad-84d4-9458edc182ef: + capacity: 1000000000000000.0 + name: 1823-gw-to-a057761f-e18e-4cad-84d4-9458edc182ef + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: a057761f-e18e-4cad-84d4-9458edc182ef + 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8-to-1823-gw: + capacity: 1000000000000000.0 + name: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8-to-1823-gw + preference: 1 + type_: Arc + in_port: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 + out_port: 1823-gw + 1823-gw-to-2b5397b7-a129-40a6-873d-cb2a0dd7d5b8: + capacity: 1000000000000000.0 + name: 1823-gw-to-2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 + preference: 1 + type_: Arc + in_port: 1823-gw + out_port: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 +pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- temperature +- nitrate +- nitrite +- org-nitrogen +additive_pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- nitrate +- nitrite +- org-nitrogen +non_additive_pollutants: +- temperature +float_accuracy: 1.0e-06 +dates: +- '2000-01-01' +- '2000-01-02' +- '2000-01-03' +- '2000-01-04' +- '2000-01-05' +- '2000-01-06' +- '2000-01-07' +- '2000-01-08' +- '2000-01-09' +- '2000-01-10' +- '2000-01-11' +- '2000-01-12' +- '2000-01-13' +- '2000-01-14' +- '2000-01-15' +- '2000-01-16' +- '2000-01-17' +- '2000-01-18' +- '2000-01-19' +- '2000-01-20' +- '2000-01-21' +- '2000-01-22' +- '2000-01-23' +- '2000-01-24' +- '2000-01-25' +- '2000-01-26' +- '2000-01-27' +- '2000-01-28' +- '2000-01-29' +- '2000-01-30' +- '2000-01-31' +- '2000-02-01' +- '2000-02-02' +- '2000-02-03' +- '2000-02-04' +- '2000-02-05' +- '2000-02-06' +- '2000-02-07' +- '2000-02-08' +- '2000-02-09' +- '2000-02-10' +- '2000-02-11' +- '2000-02-12' +- '2000-02-13' +- '2000-02-14' +- '2000-02-15' +- '2000-02-16' +- '2000-02-17' +- '2000-02-18' +- '2000-02-19' +- '2000-02-20' +- '2000-02-21' +- '2000-02-22' +- '2000-02-23' +- '2000-02-24' +- '2000-02-25' +- '2000-02-26' +- '2000-02-27' +- '2000-02-28' +- '2000-02-29' +- '2000-03-01' +- '2000-03-02' +- '2000-03-03' +- '2000-03-04' +- '2000-03-05' +- '2000-03-06' +- '2000-03-07' +- '2000-03-08' +- '2000-03-09' +- '2000-03-10' +- '2000-03-11' +- '2000-03-12' +- '2000-03-13' +- '2000-03-14' +- '2000-03-15' +- '2000-03-16' +- '2000-03-17' +- '2000-03-18' +- '2000-03-19' +- '2000-03-20' +- '2000-03-21' +- '2000-03-22' +- '2000-03-23' +- '2000-03-24' +- '2000-03-25' +- '2000-03-26' +- '2000-03-27' +- '2000-03-28' +- '2000-03-29' +- '2000-03-30' +- '2000-03-31' +- '2000-04-01' +- '2000-04-02' +- '2000-04-03' +- '2000-04-04' +- '2000-04-05' +- '2000-04-06' +- '2000-04-07' +- '2000-04-08' +- '2000-04-09' +- '2000-04-10' +- '2000-04-11' +- '2000-04-12' +- '2000-04-13' +- '2000-04-14' +- '2000-04-15' +- '2000-04-16' +- '2000-04-17' +- '2000-04-18' +- '2000-04-19' +- '2000-04-20' +- '2000-04-21' +- '2000-04-22' +- '2000-04-23' +- '2000-04-24' +- '2000-04-25' +- '2000-04-26' +- '2000-04-27' +- '2000-04-28' +- '2000-04-29' +- '2000-04-30' +- '2000-05-01' +- '2000-05-02' +- '2000-05-03' +- '2000-05-04' +- '2000-05-05' +- '2000-05-06' +- '2000-05-07' +- '2000-05-08' +- '2000-05-09' +- '2000-05-10' +- '2000-05-11' +- '2000-05-12' +- '2000-05-13' +- '2000-05-14' +- '2000-05-15' +- '2000-05-16' +- '2000-05-17' +- '2000-05-18' +- '2000-05-19' +- '2000-05-20' +- '2000-05-21' +- '2000-05-22' +- '2000-05-23' +- '2000-05-24' +- '2000-05-25' +- '2000-05-26' +- '2000-05-27' +- '2000-05-28' +- '2000-05-29' +- '2000-05-30' +- '2000-05-31' +- '2000-06-01' +- '2000-06-02' +- '2000-06-03' +- '2000-06-04' +- '2000-06-05' +- '2000-06-06' +- '2000-06-07' +- '2000-06-08' +- '2000-06-09' +- '2000-06-10' +- '2000-06-11' +- '2000-06-12' +- '2000-06-13' +- '2000-06-14' +- '2000-06-15' +- '2000-06-16' +- '2000-06-17' +- '2000-06-18' +- '2000-06-19' +- '2000-06-20' +- '2000-06-21' +- '2000-06-22' +- '2000-06-23' +- '2000-06-24' +- '2000-06-25' +- '2000-06-26' +- '2000-06-27' +- '2000-06-28' +- '2000-06-29' +- '2000-06-30' +- '2000-07-01' +- '2000-07-02' +- '2000-07-03' +- '2000-07-04' +- '2000-07-05' +- '2000-07-06' +- '2000-07-07' +- '2000-07-08' +- '2000-07-09' +- '2000-07-10' +- '2000-07-11' +- '2000-07-12' +- '2000-07-13' +- '2000-07-14' +- '2000-07-15' +- '2000-07-16' +- '2000-07-17' +- '2000-07-18' +- '2000-07-19' +- '2000-07-20' +- '2000-07-21' +- '2000-07-22' +- '2000-07-23' +- '2000-07-24' +- '2000-07-25' +- '2000-07-26' +- '2000-07-27' +- '2000-07-28' +- '2000-07-29' +- '2000-07-30' +- '2000-07-31' +- '2000-08-01' +- '2000-08-02' +- '2000-08-03' +- '2000-08-04' +- '2000-08-05' +- '2000-08-06' +- '2000-08-07' +- '2000-08-08' +- '2000-08-09' +- '2000-08-10' +- '2000-08-11' +- '2000-08-12' +- '2000-08-13' +- '2000-08-14' +- '2000-08-15' +- '2000-08-16' +- '2000-08-17' +- '2000-08-18' +- '2000-08-19' +- '2000-08-20' +- '2000-08-21' +- '2000-08-22' +- '2000-08-23' +- '2000-08-24' +- '2000-08-25' +- '2000-08-26' +- '2000-08-27' +- '2000-08-28' +- '2000-08-29' +- '2000-08-30' +- '2000-08-31' +- '2000-09-01' +- '2000-09-02' +- '2000-09-03' +- '2000-09-04' +- '2000-09-05' +- '2000-09-06' +- '2000-09-07' +- '2000-09-08' +- '2000-09-09' +- '2000-09-10' +- '2000-09-11' +- '2000-09-12' +- '2000-09-13' +- '2000-09-14' +- '2000-09-15' +- '2000-09-16' +- '2000-09-17' +- '2000-09-18' +- '2000-09-19' +- '2000-09-20' +- '2000-09-21' +- '2000-09-22' +- '2000-09-23' +- '2000-09-24' +- '2000-09-25' +- '2000-09-26' +- '2000-09-27' +- '2000-09-28' +- '2000-09-29' +- '2000-09-30' +- '2000-10-01' +- '2000-10-02' +- '2000-10-03' +- '2000-10-04' +- '2000-10-05' +- '2000-10-06' +- '2000-10-07' +- '2000-10-08' +- '2000-10-09' +- '2000-10-10' +- '2000-10-11' +- '2000-10-12' +- '2000-10-13' +- '2000-10-14' +- '2000-10-15' +- '2000-10-16' +- '2000-10-17' +- '2000-10-18' +- '2000-10-19' +- '2000-10-20' +- '2000-10-21' +- '2000-10-22' +- '2000-10-23' +- '2000-10-24' +- '2000-10-25' +- '2000-10-26' +- '2000-10-27' +- '2000-10-28' +- '2000-10-29' +- '2000-10-30' +- '2000-10-31' +- '2000-11-01' +- '2000-11-02' +- '2000-11-03' +- '2000-11-04' +- '2000-11-05' +- '2000-11-06' +- '2000-11-07' +- '2000-11-08' +- '2000-11-09' +- '2000-11-10' +- '2000-11-11' +- '2000-11-12' +- '2000-11-13' +- '2000-11-14' +- '2000-11-15' +- '2000-11-16' +- '2000-11-17' +- '2000-11-18' +- '2000-11-19' +- '2000-11-20' +- '2000-11-21' +- '2000-11-22' +- '2000-11-23' +- '2000-11-24' +- '2000-11-25' +- '2000-11-26' +- '2000-11-27' +- '2000-11-28' +- '2000-11-29' +- '2000-11-30' +- '2000-12-01' +- '2000-12-02' +- '2000-12-03' +- '2000-12-04' +- '2000-12-05' +- '2000-12-06' +- '2000-12-07' +- '2000-12-08' +- '2000-12-09' +- '2000-12-10' +- '2000-12-11' +- '2000-12-12' +- '2000-12-13' +- '2000-12-14' +- '2000-12-15' +- '2000-12-16' +- '2000-12-17' +- '2000-12-18' +- '2000-12-19' +- '2000-12-20' +- '2000-12-21' +- '2000-12-22' +- '2000-12-23' +- '2000-12-24' +- '2000-12-25' +- '2000-12-26' +- '2000-12-27' +- '2000-12-28' +- '2000-12-29' +- '2000-12-30' +- '2000-12-31' +- '2001-01-01' +- '2001-01-02' +- '2001-01-03' +- '2001-01-04' +- '2001-01-05' +- '2001-01-06' +- '2001-01-07' +- '2001-01-08' +- '2001-01-09' +- '2001-01-10' +- '2001-01-11' +- '2001-01-12' +- '2001-01-13' +- '2001-01-14' +- '2001-01-15' +- '2001-01-16' +- '2001-01-17' +- '2001-01-18' +- '2001-01-19' +- '2001-01-20' +- '2001-01-21' +- '2001-01-22' +- '2001-01-23' +- '2001-01-24' +- '2001-01-25' +- '2001-01-26' +- '2001-01-27' +- '2001-01-28' +- '2001-01-29' +- '2001-01-30' +- '2001-01-31' +- '2001-02-01' +- '2001-02-02' +- '2001-02-03' +- '2001-02-04' +- '2001-02-05' +- '2001-02-06' +- '2001-02-07' +- '2001-02-08' +- '2001-02-09' +- '2001-02-10' +- '2001-02-11' +- '2001-02-12' +- '2001-02-13' +- '2001-02-14' +- '2001-02-15' +- '2001-02-16' +- '2001-02-17' +- '2001-02-18' +- '2001-02-19' +- '2001-02-20' +- '2001-02-21' +- '2001-02-22' +- '2001-02-23' +- '2001-02-24' +- '2001-02-25' +- '2001-02-26' +- '2001-02-27' +- '2001-02-28' +- '2001-03-01' +- '2001-03-02' +- '2001-03-03' +- '2001-03-04' +- '2001-03-05' +- '2001-03-06' +- '2001-03-07' +- '2001-03-08' +- '2001-03-09' +- '2001-03-10' +- '2001-03-11' +- '2001-03-12' +- '2001-03-13' +- '2001-03-14' +- '2001-03-15' +- '2001-03-16' +- '2001-03-17' +- '2001-03-18' +- '2001-03-19' +- '2001-03-20' +- '2001-03-21' +- '2001-03-22' +- '2001-03-23' +- '2001-03-24' +- '2001-03-25' +- '2001-03-26' +- '2001-03-27' +- '2001-03-28' +- '2001-03-29' +- '2001-03-30' +- '2001-03-31' +- '2001-04-01' +- '2001-04-02' +- '2001-04-03' +- '2001-04-04' +- '2001-04-05' +- '2001-04-06' +- '2001-04-07' +- '2001-04-08' +- '2001-04-09' +- '2001-04-10' +- '2001-04-11' +- '2001-04-12' +- '2001-04-13' +- '2001-04-14' +- '2001-04-15' +- '2001-04-16' +- '2001-04-17' +- '2001-04-18' +- '2001-04-19' +- '2001-04-20' +- '2001-04-21' +- '2001-04-22' +- '2001-04-23' +- '2001-04-24' +- '2001-04-25' +- '2001-04-26' +- '2001-04-27' +- '2001-04-28' +- '2001-04-29' +- '2001-04-30' +- '2001-05-01' +- '2001-05-02' +- '2001-05-03' +- '2001-05-04' +- '2001-05-05' +- '2001-05-06' +- '2001-05-07' +- '2001-05-08' +- '2001-05-09' +- '2001-05-10' +- '2001-05-11' +- '2001-05-12' +- '2001-05-13' +- '2001-05-14' +- '2001-05-15' +- '2001-05-16' +- '2001-05-17' +- '2001-05-18' +- '2001-05-19' +- '2001-05-20' +- '2001-05-21' +- '2001-05-22' +- '2001-05-23' +- '2001-05-24' +- '2001-05-25' +- '2001-05-26' +- '2001-05-27' +- '2001-05-28' +- '2001-05-29' +- '2001-05-30' +- '2001-05-31' +- '2001-06-01' +- '2001-06-02' +- '2001-06-03' +- '2001-06-04' +- '2001-06-05' +- '2001-06-06' +- '2001-06-07' +- '2001-06-08' +- '2001-06-09' +- '2001-06-10' +- '2001-06-11' +- '2001-06-12' +- '2001-06-13' +- '2001-06-14' +- '2001-06-15' +- '2001-06-16' +- '2001-06-17' +- '2001-06-18' +- '2001-06-19' +- '2001-06-20' +- '2001-06-21' +- '2001-06-22' +- '2001-06-23' +- '2001-06-24' +- '2001-06-25' +- '2001-06-26' +- '2001-06-27' +- '2001-06-28' +- '2001-06-29' +- '2001-06-30' +- '2001-07-01' +- '2001-07-02' +- '2001-07-03' +- '2001-07-04' +- '2001-07-05' +- '2001-07-06' +- '2001-07-07' +- '2001-07-08' +- '2001-07-09' +- '2001-07-10' +- '2001-07-11' +- '2001-07-12' +- '2001-07-13' +- '2001-07-14' +- '2001-07-15' +- '2001-07-16' +- '2001-07-17' +- '2001-07-18' +- '2001-07-19' +- '2001-07-20' +- '2001-07-21' +- '2001-07-22' +- '2001-07-23' +- '2001-07-24' +- '2001-07-25' +- '2001-07-26' +- '2001-07-27' +- '2001-07-28' +- '2001-07-29' +- '2001-07-30' +- '2001-07-31' +- '2001-08-01' +- '2001-08-02' +- '2001-08-03' +- '2001-08-04' +- '2001-08-05' +- '2001-08-06' +- '2001-08-07' +- '2001-08-08' +- '2001-08-09' +- '2001-08-10' +- '2001-08-11' +- '2001-08-12' +- '2001-08-13' +- '2001-08-14' +- '2001-08-15' +- '2001-08-16' +- '2001-08-17' +- '2001-08-18' +- '2001-08-19' +- '2001-08-20' +- '2001-08-21' +- '2001-08-22' +- '2001-08-23' +- '2001-08-24' +- '2001-08-25' +- '2001-08-26' +- '2001-08-27' +- '2001-08-28' +- '2001-08-29' +- '2001-08-30' +- '2001-08-31' +- '2001-09-01' +- '2001-09-02' +- '2001-09-03' +- '2001-09-04' +- '2001-09-05' +- '2001-09-06' +- '2001-09-07' +- '2001-09-08' +- '2001-09-09' +- '2001-09-10' +- '2001-09-11' +- '2001-09-12' +- '2001-09-13' +- '2001-09-14' +- '2001-09-15' +- '2001-09-16' +- '2001-09-17' +- '2001-09-18' +- '2001-09-19' +- '2001-09-20' +- '2001-09-21' +- '2001-09-22' +- '2001-09-23' +- '2001-09-24' +- '2001-09-25' +- '2001-09-26' +- '2001-09-27' +- '2001-09-28' +- '2001-09-29' +- '2001-09-30' +- '2001-10-01' +- '2001-10-02' +- '2001-10-03' +- '2001-10-04' +- '2001-10-05' +- '2001-10-06' +- '2001-10-07' +- '2001-10-08' +- '2001-10-09' +- '2001-10-10' +- '2001-10-11' +- '2001-10-12' +- '2001-10-13' +- '2001-10-14' +- '2001-10-15' +- '2001-10-16' +- '2001-10-17' +- '2001-10-18' +- '2001-10-19' +- '2001-10-20' +- '2001-10-21' +- '2001-10-22' +- '2001-10-23' +- '2001-10-24' +- '2001-10-25' +- '2001-10-26' +- '2001-10-27' +- '2001-10-28' +- '2001-10-29' +- '2001-10-30' +- '2001-10-31' +- '2001-11-01' +- '2001-11-02' +- '2001-11-03' +- '2001-11-04' +- '2001-11-05' +- '2001-11-06' +- '2001-11-07' +- '2001-11-08' +- '2001-11-09' +- '2001-11-10' +- '2001-11-11' +- '2001-11-12' +- '2001-11-13' +- '2001-11-14' +- '2001-11-15' +- '2001-11-16' +- '2001-11-17' +- '2001-11-18' +- '2001-11-19' +- '2001-11-20' +- '2001-11-21' +- '2001-11-22' +- '2001-11-23' +- '2001-11-24' +- '2001-11-25' +- '2001-11-26' +- '2001-11-27' +- '2001-11-28' +- '2001-11-29' +- '2001-11-30' +- '2001-12-01' +- '2001-12-02' +- '2001-12-03' +- '2001-12-04' +- '2001-12-05' +- '2001-12-06' +- '2001-12-07' +- '2001-12-08' +- '2001-12-09' +- '2001-12-10' +- '2001-12-11' +- '2001-12-12' +- '2001-12-13' +- '2001-12-14' +- '2001-12-15' +- '2001-12-16' +- '2001-12-17' +- '2001-12-18' +- '2001-12-19' +- '2001-12-20' +- '2001-12-21' +- '2001-12-22' +- '2001-12-23' +- '2001-12-24' +- '2001-12-25' +- '2001-12-26' +- '2001-12-27' +- '2001-12-28' +- '2001-12-29' +- '2001-12-30' +- '2001-12-31' +- '2002-01-01' +- '2002-01-02' +- '2002-01-03' +- '2002-01-04' +- '2002-01-05' +- '2002-01-06' +- '2002-01-07' +- '2002-01-08' +- '2002-01-09' +- '2002-01-10' +- '2002-01-11' +- '2002-01-12' +- '2002-01-13' +- '2002-01-14' +- '2002-01-15' +- '2002-01-16' +- '2002-01-17' +- '2002-01-18' +- '2002-01-19' +- '2002-01-20' +- '2002-01-21' +- '2002-01-22' +- '2002-01-23' +- '2002-01-24' +- '2002-01-25' +- '2002-01-26' +- '2002-01-27' +- '2002-01-28' +- '2002-01-29' +- '2002-01-30' +- '2002-01-31' +- '2002-02-01' +- '2002-02-02' +- '2002-02-03' +- '2002-02-04' +- '2002-02-05' +- '2002-02-06' +- '2002-02-07' +- '2002-02-08' +- '2002-02-09' +- '2002-02-10' +- '2002-02-11' +- '2002-02-12' +- '2002-02-13' +- '2002-02-14' +- '2002-02-15' +- '2002-02-16' +- '2002-02-17' +- '2002-02-18' +- '2002-02-19' +- '2002-02-20' +- '2002-02-21' +- '2002-02-22' +- '2002-02-23' +- '2002-02-24' +- '2002-02-25' +- '2002-02-26' +- '2002-02-27' +- '2002-02-28' +- '2002-03-01' +- '2002-03-02' +- '2002-03-03' +- '2002-03-04' +- '2002-03-05' +- '2002-03-06' +- '2002-03-07' +- '2002-03-08' +- '2002-03-09' +- '2002-03-10' +- '2002-03-11' +- '2002-03-12' +- '2002-03-13' +- '2002-03-14' +- '2002-03-15' +- '2002-03-16' +- '2002-03-17' +- '2002-03-18' +- '2002-03-19' +- '2002-03-20' +- '2002-03-21' +- '2002-03-22' +- '2002-03-23' +- '2002-03-24' +- '2002-03-25' +- '2002-03-26' +- '2002-03-27' +- '2002-03-28' +- '2002-03-29' +- '2002-03-30' +- '2002-03-31' +- '2002-04-01' +- '2002-04-02' +- '2002-04-03' +- '2002-04-04' +- '2002-04-05' +- '2002-04-06' +- '2002-04-07' +- '2002-04-08' +- '2002-04-09' +- '2002-04-10' +- '2002-04-11' +- '2002-04-12' +- '2002-04-13' +- '2002-04-14' +- '2002-04-15' +- '2002-04-16' +- '2002-04-17' +- '2002-04-18' +- '2002-04-19' +- '2002-04-20' +- '2002-04-21' +- '2002-04-22' +- '2002-04-23' +- '2002-04-24' +- '2002-04-25' +- '2002-04-26' +- '2002-04-27' +- '2002-04-28' +- '2002-04-29' +- '2002-04-30' +- '2002-05-01' +- '2002-05-02' +- '2002-05-03' +- '2002-05-04' +- '2002-05-05' +- '2002-05-06' +- '2002-05-07' +- '2002-05-08' +- '2002-05-09' +- '2002-05-10' +- '2002-05-11' +- '2002-05-12' +- '2002-05-13' +- '2002-05-14' +- '2002-05-15' +- '2002-05-16' +- '2002-05-17' +- '2002-05-18' +- '2002-05-19' +- '2002-05-20' +- '2002-05-21' +- '2002-05-22' +- '2002-05-23' +- '2002-05-24' +- '2002-05-25' +- '2002-05-26' +- '2002-05-27' +- '2002-05-28' +- '2002-05-29' +- '2002-05-30' +- '2002-05-31' +- '2002-06-01' +- '2002-06-02' +- '2002-06-03' +- '2002-06-04' +- '2002-06-05' +- '2002-06-06' +- '2002-06-07' +- '2002-06-08' +- '2002-06-09' +- '2002-06-10' +- '2002-06-11' +- '2002-06-12' +- '2002-06-13' +- '2002-06-14' +- '2002-06-15' +- '2002-06-16' +- '2002-06-17' +- '2002-06-18' +- '2002-06-19' +- '2002-06-20' +- '2002-06-21' +- '2002-06-22' +- '2002-06-23' +- '2002-06-24' +- '2002-06-25' +- '2002-06-26' +- '2002-06-27' +- '2002-06-28' +- '2002-06-29' +- '2002-06-30' +- '2002-07-01' +- '2002-07-02' +- '2002-07-03' +- '2002-07-04' +- '2002-07-05' +- '2002-07-06' +- '2002-07-07' +- '2002-07-08' +- '2002-07-09' +- '2002-07-10' +- '2002-07-11' +- '2002-07-12' +- '2002-07-13' +- '2002-07-14' +- '2002-07-15' +- '2002-07-16' +- '2002-07-17' +- '2002-07-18' +- '2002-07-19' +- '2002-07-20' +- '2002-07-21' +- '2002-07-22' +- '2002-07-23' +- '2002-07-24' +- '2002-07-25' +- '2002-07-26' +- '2002-07-27' +- '2002-07-28' +- '2002-07-29' +- '2002-07-30' +- '2002-07-31' +- '2002-08-01' +- '2002-08-02' +- '2002-08-03' +- '2002-08-04' +- '2002-08-05' +- '2002-08-06' +- '2002-08-07' +- '2002-08-08' +- '2002-08-09' +- '2002-08-10' +- '2002-08-11' +- '2002-08-12' +- '2002-08-13' +- '2002-08-14' +- '2002-08-15' +- '2002-08-16' +- '2002-08-17' +- '2002-08-18' +- '2002-08-19' +- '2002-08-20' +- '2002-08-21' +- '2002-08-22' +- '2002-08-23' +- '2002-08-24' +- '2002-08-25' +- '2002-08-26' +- '2002-08-27' +- '2002-08-28' +- '2002-08-29' +- '2002-08-30' +- '2002-08-31' +- '2002-09-01' +- '2002-09-02' +- '2002-09-03' +- '2002-09-04' +- '2002-09-05' +- '2002-09-06' +- '2002-09-07' +- '2002-09-08' +- '2002-09-09' +- '2002-09-10' +- '2002-09-11' +- '2002-09-12' +- '2002-09-13' +- '2002-09-14' +- '2002-09-15' +- '2002-09-16' +- '2002-09-17' +- '2002-09-18' +- '2002-09-19' +- '2002-09-20' +- '2002-09-21' +- '2002-09-22' +- '2002-09-23' +- '2002-09-24' +- '2002-09-25' +- '2002-09-26' +- '2002-09-27' +- '2002-09-28' +- '2002-09-29' +- '2002-09-30' +- '2002-10-01' +- '2002-10-02' +- '2002-10-03' +- '2002-10-04' +- '2002-10-05' +- '2002-10-06' +- '2002-10-07' +- '2002-10-08' +- '2002-10-09' +- '2002-10-10' +- '2002-10-11' +- '2002-10-12' +- '2002-10-13' +- '2002-10-14' +- '2002-10-15' +- '2002-10-16' +- '2002-10-17' +- '2002-10-18' +- '2002-10-19' +- '2002-10-20' +- '2002-10-21' +- '2002-10-22' +- '2002-10-23' +- '2002-10-24' +- '2002-10-25' +- '2002-10-26' +- '2002-10-27' +- '2002-10-28' +- '2002-10-29' +- '2002-10-30' +- '2002-10-31' +- '2002-11-01' +- '2002-11-02' +- '2002-11-03' +- '2002-11-04' +- '2002-11-05' +- '2002-11-06' +- '2002-11-07' +- '2002-11-08' +- '2002-11-09' +- '2002-11-10' +- '2002-11-11' +- '2002-11-12' +- '2002-11-13' +- '2002-11-14' +- '2002-11-15' +- '2002-11-16' +- '2002-11-17' +- '2002-11-18' +- '2002-11-19' +- '2002-11-20' +- '2002-11-21' +- '2002-11-22' +- '2002-11-23' +- '2002-11-24' +- '2002-11-25' +- '2002-11-26' +- '2002-11-27' +- '2002-11-28' +- '2002-11-29' +- '2002-11-30' +- '2002-12-01' +- '2002-12-02' +- '2002-12-03' +- '2002-12-04' +- '2002-12-05' +- '2002-12-06' +- '2002-12-07' +- '2002-12-08' +- '2002-12-09' +- '2002-12-10' +- '2002-12-11' +- '2002-12-12' +- '2002-12-13' +- '2002-12-14' +- '2002-12-15' +- '2002-12-16' +- '2002-12-17' +- '2002-12-18' +- '2002-12-19' +- '2002-12-20' +- '2002-12-21' +- '2002-12-22' +- '2002-12-23' +- '2002-12-24' +- '2002-12-25' +- '2002-12-26' +- '2002-12-27' +- '2002-12-28' +- '2002-12-29' +- '2002-12-30' +- '2002-12-31' +- '2003-01-01' +- '2003-01-02' +- '2003-01-03' +- '2003-01-04' +- '2003-01-05' +- '2003-01-06' +- '2003-01-07' +- '2003-01-08' +- '2003-01-09' +- '2003-01-10' +- '2003-01-11' +- '2003-01-12' +- '2003-01-13' +- '2003-01-14' +- '2003-01-15' +- '2003-01-16' +- '2003-01-17' +- '2003-01-18' +- '2003-01-19' +- '2003-01-20' +- '2003-01-21' +- '2003-01-22' +- '2003-01-23' +- '2003-01-24' +- '2003-01-25' +- '2003-01-26' +- '2003-01-27' +- '2003-01-28' +- '2003-01-29' +- '2003-01-30' +- '2003-01-31' +- '2003-02-01' +- '2003-02-02' +- '2003-02-03' +- '2003-02-04' +- '2003-02-05' +- '2003-02-06' +- '2003-02-07' +- '2003-02-08' +- '2003-02-09' +- '2003-02-10' +- '2003-02-11' +- '2003-02-12' +- '2003-02-13' +- '2003-02-14' +- '2003-02-15' +- '2003-02-16' +- '2003-02-17' +- '2003-02-18' +- '2003-02-19' +- '2003-02-20' +- '2003-02-21' +- '2003-02-22' +- '2003-02-23' +- '2003-02-24' +- '2003-02-25' +- '2003-02-26' +- '2003-02-27' +- '2003-02-28' +- '2003-03-01' +- '2003-03-02' +- '2003-03-03' +- '2003-03-04' +- '2003-03-05' +- '2003-03-06' +- '2003-03-07' +- '2003-03-08' +- '2003-03-09' +- '2003-03-10' +- '2003-03-11' +- '2003-03-12' +- '2003-03-13' +- '2003-03-14' +- '2003-03-15' +- '2003-03-16' +- '2003-03-17' +- '2003-03-18' +- '2003-03-19' +- '2003-03-20' +- '2003-03-21' +- '2003-03-22' +- '2003-03-23' +- '2003-03-24' +- '2003-03-25' +- '2003-03-26' +- '2003-03-27' +- '2003-03-28' +- '2003-03-29' +- '2003-03-30' +- '2003-03-31' +- '2003-04-01' +- '2003-04-02' +- '2003-04-03' +- '2003-04-04' +- '2003-04-05' +- '2003-04-06' +- '2003-04-07' +- '2003-04-08' +- '2003-04-09' +- '2003-04-10' +- '2003-04-11' +- '2003-04-12' +- '2003-04-13' +- '2003-04-14' +- '2003-04-15' +- '2003-04-16' +- '2003-04-17' +- '2003-04-18' +- '2003-04-19' +- '2003-04-20' +- '2003-04-21' +- '2003-04-22' +- '2003-04-23' +- '2003-04-24' +- '2003-04-25' +- '2003-04-26' +- '2003-04-27' +- '2003-04-28' +- '2003-04-29' +- '2003-04-30' +- '2003-05-01' +- '2003-05-02' +- '2003-05-03' +- '2003-05-04' +- '2003-05-05' +- '2003-05-06' +- '2003-05-07' +- '2003-05-08' +- '2003-05-09' +- '2003-05-10' +- '2003-05-11' +- '2003-05-12' +- '2003-05-13' +- '2003-05-14' +- '2003-05-15' +- '2003-05-16' +- '2003-05-17' +- '2003-05-18' +- '2003-05-19' +- '2003-05-20' +- '2003-05-21' +- '2003-05-22' +- '2003-05-23' +- '2003-05-24' +- '2003-05-25' +- '2003-05-26' +- '2003-05-27' +- '2003-05-28' +- '2003-05-29' +- '2003-05-30' +- '2003-05-31' +- '2003-06-01' +- '2003-06-02' +- '2003-06-03' +- '2003-06-04' +- '2003-06-05' +- '2003-06-06' +- '2003-06-07' +- '2003-06-08' +- '2003-06-09' +- '2003-06-10' +- '2003-06-11' +- '2003-06-12' +- '2003-06-13' +- '2003-06-14' +- '2003-06-15' +- '2003-06-16' +- '2003-06-17' +- '2003-06-18' +- '2003-06-19' +- '2003-06-20' +- '2003-06-21' +- '2003-06-22' +- '2003-06-23' +- '2003-06-24' +- '2003-06-25' +- '2003-06-26' +- '2003-06-27' +- '2003-06-28' +- '2003-06-29' +- '2003-06-30' +- '2003-07-01' +- '2003-07-02' +- '2003-07-03' +- '2003-07-04' +- '2003-07-05' +- '2003-07-06' +- '2003-07-07' +- '2003-07-08' +- '2003-07-09' +- '2003-07-10' +- '2003-07-11' +- '2003-07-12' +- '2003-07-13' +- '2003-07-14' +- '2003-07-15' +- '2003-07-16' +- '2003-07-17' +- '2003-07-18' +- '2003-07-19' +- '2003-07-20' +- '2003-07-21' +- '2003-07-22' +- '2003-07-23' +- '2003-07-24' +- '2003-07-25' +- '2003-07-26' +- '2003-07-27' +- '2003-07-28' +- '2003-07-29' +- '2003-07-30' +- '2003-07-31' +- '2003-08-01' +- '2003-08-02' +- '2003-08-03' +- '2003-08-04' +- '2003-08-05' +- '2003-08-06' +- '2003-08-07' +- '2003-08-08' +- '2003-08-09' +- '2003-08-10' +- '2003-08-11' +- '2003-08-12' +- '2003-08-13' +- '2003-08-14' +- '2003-08-15' +- '2003-08-16' +- '2003-08-17' +- '2003-08-18' +- '2003-08-19' +- '2003-08-20' +- '2003-08-21' +- '2003-08-22' +- '2003-08-23' +- '2003-08-24' +- '2003-08-25' +- '2003-08-26' +- '2003-08-27' +- '2003-08-28' +- '2003-08-29' +- '2003-08-30' +- '2003-08-31' +- '2003-09-01' +- '2003-09-02' +- '2003-09-03' +- '2003-09-04' +- '2003-09-05' +- '2003-09-06' +- '2003-09-07' +- '2003-09-08' +- '2003-09-09' +- '2003-09-10' +- '2003-09-11' +- '2003-09-12' +- '2003-09-13' +- '2003-09-14' +- '2003-09-15' +- '2003-09-16' +- '2003-09-17' +- '2003-09-18' +- '2003-09-19' +- '2003-09-20' +- '2003-09-21' +- '2003-09-22' +- '2003-09-23' +- '2003-09-24' +- '2003-09-25' +- '2003-09-26' +- '2003-09-27' +- '2003-09-28' +- '2003-09-29' +- '2003-09-30' +- '2003-10-01' +- '2003-10-02' +- '2003-10-03' +- '2003-10-04' +- '2003-10-05' +- '2003-10-06' +- '2003-10-07' +- '2003-10-08' +- '2003-10-09' +- '2003-10-10' +- '2003-10-11' +- '2003-10-12' +- '2003-10-13' +- '2003-10-14' +- '2003-10-15' +- '2003-10-16' +- '2003-10-17' +- '2003-10-18' +- '2003-10-19' +- '2003-10-20' +- '2003-10-21' +- '2003-10-22' +- '2003-10-23' +- '2003-10-24' +- '2003-10-25' +- '2003-10-26' +- '2003-10-27' +- '2003-10-28' +- '2003-10-29' +- '2003-10-30' +- '2003-10-31' +- '2003-11-01' +- '2003-11-02' +- '2003-11-03' +- '2003-11-04' +- '2003-11-05' +- '2003-11-06' +- '2003-11-07' +- '2003-11-08' +- '2003-11-09' +- '2003-11-10' +- '2003-11-11' +- '2003-11-12' +- '2003-11-13' +- '2003-11-14' +- '2003-11-15' +- '2003-11-16' +- '2003-11-17' +- '2003-11-18' +- '2003-11-19' +- '2003-11-20' +- '2003-11-21' +- '2003-11-22' +- '2003-11-23' +- '2003-11-24' +- '2003-11-25' +- '2003-11-26' +- '2003-11-27' +- '2003-11-28' +- '2003-11-29' +- '2003-11-30' +- '2003-12-01' +- '2003-12-02' +- '2003-12-03' +- '2003-12-04' +- '2003-12-05' +- '2003-12-06' +- '2003-12-07' +- '2003-12-08' +- '2003-12-09' +- '2003-12-10' +- '2003-12-11' +- '2003-12-12' +- '2003-12-13' +- '2003-12-14' +- '2003-12-15' +- '2003-12-16' +- '2003-12-17' +- '2003-12-18' +- '2003-12-19' +- '2003-12-20' +- '2003-12-21' +- '2003-12-22' +- '2003-12-23' +- '2003-12-24' +- '2003-12-25' +- '2003-12-26' +- '2003-12-27' +- '2003-12-28' +- '2003-12-29' +- '2003-12-30' +- '2003-12-31' +- '2004-01-01' +- '2004-01-02' +- '2004-01-03' +- '2004-01-04' +- '2004-01-05' +- '2004-01-06' +- '2004-01-07' +- '2004-01-08' +- '2004-01-09' +- '2004-01-10' +- '2004-01-11' +- '2004-01-12' +- '2004-01-13' +- '2004-01-14' +- '2004-01-15' +- '2004-01-16' +- '2004-01-17' +- '2004-01-18' +- '2004-01-19' +- '2004-01-20' +- '2004-01-21' +- '2004-01-22' +- '2004-01-23' +- '2004-01-24' +- '2004-01-25' +- '2004-01-26' +- '2004-01-27' +- '2004-01-28' +- '2004-01-29' +- '2004-01-30' +- '2004-01-31' +- '2004-02-01' +- '2004-02-02' +- '2004-02-03' +- '2004-02-04' +- '2004-02-05' +- '2004-02-06' +- '2004-02-07' +- '2004-02-08' +- '2004-02-09' +- '2004-02-10' +- '2004-02-11' +- '2004-02-12' +- '2004-02-13' +- '2004-02-14' +- '2004-02-15' +- '2004-02-16' +- '2004-02-17' +- '2004-02-18' +- '2004-02-19' +- '2004-02-20' +- '2004-02-21' +- '2004-02-22' +- '2004-02-23' +- '2004-02-24' +- '2004-02-25' +- '2004-02-26' +- '2004-02-27' +- '2004-02-28' +- '2004-02-29' +- '2004-03-01' +- '2004-03-02' +- '2004-03-03' +- '2004-03-04' +- '2004-03-05' +- '2004-03-06' +- '2004-03-07' +- '2004-03-08' +- '2004-03-09' +- '2004-03-10' +- '2004-03-11' +- '2004-03-12' +- '2004-03-13' +- '2004-03-14' +- '2004-03-15' +- '2004-03-16' +- '2004-03-17' +- '2004-03-18' +- '2004-03-19' +- '2004-03-20' +- '2004-03-21' +- '2004-03-22' +- '2004-03-23' +- '2004-03-24' +- '2004-03-25' +- '2004-03-26' +- '2004-03-27' +- '2004-03-28' +- '2004-03-29' +- '2004-03-30' +- '2004-03-31' +- '2004-04-01' +- '2004-04-02' +- '2004-04-03' +- '2004-04-04' +- '2004-04-05' +- '2004-04-06' +- '2004-04-07' +- '2004-04-08' +- '2004-04-09' +- '2004-04-10' +- '2004-04-11' +- '2004-04-12' +- '2004-04-13' +- '2004-04-14' +- '2004-04-15' +- '2004-04-16' +- '2004-04-17' +- '2004-04-18' +- '2004-04-19' +- '2004-04-20' +- '2004-04-21' +- '2004-04-22' +- '2004-04-23' +- '2004-04-24' +- '2004-04-25' +- '2004-04-26' +- '2004-04-27' +- '2004-04-28' +- '2004-04-29' +- '2004-04-30' +- '2004-05-01' +- '2004-05-02' +- '2004-05-03' +- '2004-05-04' +- '2004-05-05' +- '2004-05-06' +- '2004-05-07' +- '2004-05-08' +- '2004-05-09' +- '2004-05-10' +- '2004-05-11' +- '2004-05-12' +- '2004-05-13' +- '2004-05-14' +- '2004-05-15' +- '2004-05-16' +- '2004-05-17' +- '2004-05-18' +- '2004-05-19' +- '2004-05-20' +- '2004-05-21' +- '2004-05-22' +- '2004-05-23' +- '2004-05-24' +- '2004-05-25' +- '2004-05-26' +- '2004-05-27' +- '2004-05-28' +- '2004-05-29' +- '2004-05-30' +- '2004-05-31' +- '2004-06-01' +- '2004-06-02' +- '2004-06-03' +- '2004-06-04' +- '2004-06-05' +- '2004-06-06' +- '2004-06-07' +- '2004-06-08' +- '2004-06-09' +- '2004-06-10' +- '2004-06-11' +- '2004-06-12' +- '2004-06-13' +- '2004-06-14' +- '2004-06-15' +- '2004-06-16' +- '2004-06-17' +- '2004-06-18' +- '2004-06-19' +- '2004-06-20' +- '2004-06-21' +- '2004-06-22' +- '2004-06-23' +- '2004-06-24' +- '2004-06-25' +- '2004-06-26' +- '2004-06-27' +- '2004-06-28' +- '2004-06-29' +- '2004-06-30' +- '2004-07-01' +- '2004-07-02' +- '2004-07-03' +- '2004-07-04' +- '2004-07-05' +- '2004-07-06' +- '2004-07-07' +- '2004-07-08' +- '2004-07-09' +- '2004-07-10' +- '2004-07-11' +- '2004-07-12' +- '2004-07-13' +- '2004-07-14' +- '2004-07-15' +- '2004-07-16' +- '2004-07-17' +- '2004-07-18' +- '2004-07-19' +- '2004-07-20' +- '2004-07-21' +- '2004-07-22' +- '2004-07-23' +- '2004-07-24' +- '2004-07-25' +- '2004-07-26' +- '2004-07-27' +- '2004-07-28' +- '2004-07-29' +- '2004-07-30' +- '2004-07-31' +- '2004-08-01' +- '2004-08-02' +- '2004-08-03' +- '2004-08-04' +- '2004-08-05' +- '2004-08-06' +- '2004-08-07' +- '2004-08-08' +- '2004-08-09' +- '2004-08-10' +- '2004-08-11' +- '2004-08-12' +- '2004-08-13' +- '2004-08-14' +- '2004-08-15' +- '2004-08-16' +- '2004-08-17' +- '2004-08-18' +- '2004-08-19' +- '2004-08-20' +- '2004-08-21' +- '2004-08-22' +- '2004-08-23' +- '2004-08-24' +- '2004-08-25' +- '2004-08-26' +- '2004-08-27' +- '2004-08-28' +- '2004-08-29' +- '2004-08-30' +- '2004-08-31' +- '2004-09-01' +- '2004-09-02' +- '2004-09-03' +- '2004-09-04' +- '2004-09-05' +- '2004-09-06' +- '2004-09-07' +- '2004-09-08' +- '2004-09-09' +- '2004-09-10' +- '2004-09-11' +- '2004-09-12' +- '2004-09-13' +- '2004-09-14' +- '2004-09-15' +- '2004-09-16' +- '2004-09-17' +- '2004-09-18' +- '2004-09-19' +- '2004-09-20' +- '2004-09-21' +- '2004-09-22' +- '2004-09-23' +- '2004-09-24' +- '2004-09-25' +- '2004-09-26' +- '2004-09-27' +- '2004-09-28' +- '2004-09-29' +- '2004-09-30' +- '2004-10-01' +- '2004-10-02' +- '2004-10-03' +- '2004-10-04' +- '2004-10-05' +- '2004-10-06' +- '2004-10-07' +- '2004-10-08' +- '2004-10-09' +- '2004-10-10' +- '2004-10-11' +- '2004-10-12' +- '2004-10-13' +- '2004-10-14' +- '2004-10-15' +- '2004-10-16' +- '2004-10-17' +- '2004-10-18' +- '2004-10-19' +- '2004-10-20' +- '2004-10-21' +- '2004-10-22' +- '2004-10-23' +- '2004-10-24' +- '2004-10-25' +- '2004-10-26' +- '2004-10-27' +- '2004-10-28' +- '2004-10-29' +- '2004-10-30' +- '2004-10-31' +- '2004-11-01' +- '2004-11-02' +- '2004-11-03' +- '2004-11-04' +- '2004-11-05' +- '2004-11-06' +- '2004-11-07' +- '2004-11-08' +- '2004-11-09' +- '2004-11-10' +- '2004-11-11' +- '2004-11-12' +- '2004-11-13' +- '2004-11-14' +- '2004-11-15' +- '2004-11-16' +- '2004-11-17' +- '2004-11-18' +- '2004-11-19' +- '2004-11-20' +- '2004-11-21' +- '2004-11-22' +- '2004-11-23' +- '2004-11-24' +- '2004-11-25' +- '2004-11-26' +- '2004-11-27' +- '2004-11-28' +- '2004-11-29' +- '2004-11-30' +- '2004-12-01' +- '2004-12-02' +- '2004-12-03' +- '2004-12-04' +- '2004-12-05' +- '2004-12-06' +- '2004-12-07' +- '2004-12-08' +- '2004-12-09' +- '2004-12-10' +- '2004-12-11' +- '2004-12-12' +- '2004-12-13' +- '2004-12-14' +- '2004-12-15' +- '2004-12-16' +- '2004-12-17' +- '2004-12-18' +- '2004-12-19' +- '2004-12-20' +- '2004-12-21' +- '2004-12-22' +- '2004-12-23' +- '2004-12-24' +- '2004-12-25' +- '2004-12-26' +- '2004-12-27' +- '2004-12-28' +- '2004-12-29' +- '2004-12-30' +- '2004-12-31' +- '2005-01-01' +- '2005-01-02' +- '2005-01-03' +- '2005-01-04' +- '2005-01-05' +- '2005-01-06' +- '2005-01-07' +- '2005-01-08' +- '2005-01-09' +- '2005-01-10' +- '2005-01-11' +- '2005-01-12' +- '2005-01-13' +- '2005-01-14' +- '2005-01-15' +- '2005-01-16' +- '2005-01-17' +- '2005-01-18' +- '2005-01-19' +- '2005-01-20' +- '2005-01-21' +- '2005-01-22' +- '2005-01-23' +- '2005-01-24' +- '2005-01-25' +- '2005-01-26' +- '2005-01-27' +- '2005-01-28' +- '2005-01-29' +- '2005-01-30' +- '2005-01-31' +- '2005-02-01' +- '2005-02-02' +- '2005-02-03' +- '2005-02-04' +- '2005-02-05' +- '2005-02-06' +- '2005-02-07' +- '2005-02-08' +- '2005-02-09' +- '2005-02-10' +- '2005-02-11' +- '2005-02-12' +- '2005-02-13' +- '2005-02-14' +- '2005-02-15' +- '2005-02-16' +- '2005-02-17' +- '2005-02-18' +- '2005-02-19' +- '2005-02-20' +- '2005-02-21' +- '2005-02-22' +- '2005-02-23' +- '2005-02-24' +- '2005-02-25' +- '2005-02-26' +- '2005-02-27' +- '2005-02-28' +- '2005-03-01' +- '2005-03-02' +- '2005-03-03' +- '2005-03-04' +- '2005-03-05' +- '2005-03-06' +- '2005-03-07' +- '2005-03-08' +- '2005-03-09' +- '2005-03-10' +- '2005-03-11' +- '2005-03-12' +- '2005-03-13' +- '2005-03-14' +- '2005-03-15' +- '2005-03-16' +- '2005-03-17' +- '2005-03-18' +- '2005-03-19' +- '2005-03-20' +- '2005-03-21' +- '2005-03-22' +- '2005-03-23' +- '2005-03-24' +- '2005-03-25' +- '2005-03-26' +- '2005-03-27' +- '2005-03-28' +- '2005-03-29' +- '2005-03-30' +- '2005-03-31' +- '2005-04-01' +- '2005-04-02' +- '2005-04-03' +- '2005-04-04' +- '2005-04-05' +- '2005-04-06' +- '2005-04-07' +- '2005-04-08' +- '2005-04-09' +- '2005-04-10' +- '2005-04-11' +- '2005-04-12' +- '2005-04-13' +- '2005-04-14' +- '2005-04-15' +- '2005-04-16' +- '2005-04-17' +- '2005-04-18' +- '2005-04-19' +- '2005-04-20' +- '2005-04-21' +- '2005-04-22' +- '2005-04-23' +- '2005-04-24' +- '2005-04-25' +- '2005-04-26' +- '2005-04-27' +- '2005-04-28' +- '2005-04-29' +- '2005-04-30' +- '2005-05-01' +- '2005-05-02' +- '2005-05-03' +- '2005-05-04' +- '2005-05-05' +- '2005-05-06' +- '2005-05-07' +- '2005-05-08' +- '2005-05-09' +- '2005-05-10' +- '2005-05-11' +- '2005-05-12' +- '2005-05-13' +- '2005-05-14' +- '2005-05-15' +- '2005-05-16' +- '2005-05-17' +- '2005-05-18' +- '2005-05-19' +- '2005-05-20' +- '2005-05-21' +- '2005-05-22' +- '2005-05-23' +- '2005-05-24' +- '2005-05-25' +- '2005-05-26' +- '2005-05-27' +- '2005-05-28' +- '2005-05-29' +- '2005-05-30' +- '2005-05-31' +- '2005-06-01' +- '2005-06-02' +- '2005-06-03' +- '2005-06-04' +- '2005-06-05' +- '2005-06-06' +- '2005-06-07' +- '2005-06-08' +- '2005-06-09' +- '2005-06-10' +- '2005-06-11' +- '2005-06-12' +- '2005-06-13' +- '2005-06-14' +- '2005-06-15' +- '2005-06-16' +- '2005-06-17' +- '2005-06-18' +- '2005-06-19' +- '2005-06-20' +- '2005-06-21' +- '2005-06-22' +- '2005-06-23' +- '2005-06-24' +- '2005-06-25' +- '2005-06-26' +- '2005-06-27' +- '2005-06-28' +- '2005-06-29' +- '2005-06-30' +- '2005-07-01' +- '2005-07-02' +- '2005-07-03' +- '2005-07-04' +- '2005-07-05' +- '2005-07-06' +- '2005-07-07' +- '2005-07-08' +- '2005-07-09' +- '2005-07-10' +- '2005-07-11' +- '2005-07-12' +- '2005-07-13' +- '2005-07-14' +- '2005-07-15' +- '2005-07-16' +- '2005-07-17' +- '2005-07-18' +- '2005-07-19' +- '2005-07-20' +- '2005-07-21' +- '2005-07-22' +- '2005-07-23' +- '2005-07-24' +- '2005-07-25' +- '2005-07-26' +- '2005-07-27' +- '2005-07-28' +- '2005-07-29' +- '2005-07-30' +- '2005-07-31' +- '2005-08-01' +- '2005-08-02' +- '2005-08-03' +- '2005-08-04' +- '2005-08-05' +- '2005-08-06' +- '2005-08-07' +- '2005-08-08' +- '2005-08-09' +- '2005-08-10' +- '2005-08-11' +- '2005-08-12' +- '2005-08-13' +- '2005-08-14' +- '2005-08-15' +- '2005-08-16' +- '2005-08-17' +- '2005-08-18' +- '2005-08-19' +- '2005-08-20' +- '2005-08-21' +- '2005-08-22' +- '2005-08-23' +- '2005-08-24' +- '2005-08-25' +- '2005-08-26' +- '2005-08-27' +- '2005-08-28' +- '2005-08-29' +- '2005-08-30' +- '2005-08-31' +- '2005-09-01' +- '2005-09-02' +- '2005-09-03' +- '2005-09-04' +- '2005-09-05' +- '2005-09-06' +- '2005-09-07' +- '2005-09-08' +- '2005-09-09' +- '2005-09-10' +- '2005-09-11' +- '2005-09-12' +- '2005-09-13' +- '2005-09-14' +- '2005-09-15' +- '2005-09-16' +- '2005-09-17' +- '2005-09-18' +- '2005-09-19' +- '2005-09-20' +- '2005-09-21' +- '2005-09-22' +- '2005-09-23' +- '2005-09-24' +- '2005-09-25' +- '2005-09-26' +- '2005-09-27' +- '2005-09-28' +- '2005-09-29' +- '2005-09-30' +- '2005-10-01' +- '2005-10-02' +- '2005-10-03' +- '2005-10-04' +- '2005-10-05' +- '2005-10-06' +- '2005-10-07' +- '2005-10-08' +- '2005-10-09' +- '2005-10-10' +- '2005-10-11' +- '2005-10-12' +- '2005-10-13' +- '2005-10-14' +- '2005-10-15' +- '2005-10-16' +- '2005-10-17' +- '2005-10-18' +- '2005-10-19' +- '2005-10-20' +- '2005-10-21' +- '2005-10-22' +- '2005-10-23' +- '2005-10-24' +- '2005-10-25' +- '2005-10-26' +- '2005-10-27' +- '2005-10-28' +- '2005-10-29' +- '2005-10-30' +- '2005-10-31' +- '2005-11-01' +- '2005-11-02' +- '2005-11-03' +- '2005-11-04' +- '2005-11-05' +- '2005-11-06' +- '2005-11-07' +- '2005-11-08' +- '2005-11-09' +- '2005-11-10' +- '2005-11-11' +- '2005-11-12' +- '2005-11-13' +- '2005-11-14' +- '2005-11-15' +- '2005-11-16' +- '2005-11-17' +- '2005-11-18' +- '2005-11-19' +- '2005-11-20' +- '2005-11-21' +- '2005-11-22' +- '2005-11-23' +- '2005-11-24' +- '2005-11-25' +- '2005-11-26' +- '2005-11-27' +- '2005-11-28' +- '2005-11-29' +- '2005-11-30' +- '2005-12-01' +- '2005-12-02' +- '2005-12-03' +- '2005-12-04' +- '2005-12-05' +- '2005-12-06' +- '2005-12-07' +- '2005-12-08' +- '2005-12-09' +- '2005-12-10' +- '2005-12-11' +- '2005-12-12' +- '2005-12-13' +- '2005-12-14' +- '2005-12-15' +- '2005-12-16' +- '2005-12-17' +- '2005-12-18' +- '2005-12-19' +- '2005-12-20' +- '2005-12-21' +- '2005-12-22' +- '2005-12-23' +- '2005-12-24' +- '2005-12-25' +- '2005-12-26' +- '2005-12-27' +- '2005-12-28' +- '2005-12-29' +- '2005-12-30' +- '2005-12-31' +- '2006-01-01' +- '2006-01-02' +- '2006-01-03' +- '2006-01-04' +- '2006-01-05' +- '2006-01-06' +- '2006-01-07' +- '2006-01-08' +- '2006-01-09' +- '2006-01-10' +- '2006-01-11' +- '2006-01-12' +- '2006-01-13' +- '2006-01-14' +- '2006-01-15' +- '2006-01-16' +- '2006-01-17' +- '2006-01-18' +- '2006-01-19' +- '2006-01-20' +- '2006-01-21' +- '2006-01-22' +- '2006-01-23' +- '2006-01-24' +- '2006-01-25' +- '2006-01-26' +- '2006-01-27' +- '2006-01-28' +- '2006-01-29' +- '2006-01-30' +- '2006-01-31' +- '2006-02-01' +- '2006-02-02' +- '2006-02-03' +- '2006-02-04' +- '2006-02-05' +- '2006-02-06' +- '2006-02-07' +- '2006-02-08' +- '2006-02-09' +- '2006-02-10' +- '2006-02-11' +- '2006-02-12' +- '2006-02-13' +- '2006-02-14' +- '2006-02-15' +- '2006-02-16' +- '2006-02-17' +- '2006-02-18' +- '2006-02-19' +- '2006-02-20' +- '2006-02-21' +- '2006-02-22' +- '2006-02-23' +- '2006-02-24' +- '2006-02-25' +- '2006-02-26' +- '2006-02-27' +- '2006-02-28' +- '2006-03-01' +- '2006-03-02' +- '2006-03-03' +- '2006-03-04' +- '2006-03-05' +- '2006-03-06' +- '2006-03-07' +- '2006-03-08' +- '2006-03-09' +- '2006-03-10' +- '2006-03-11' +- '2006-03-12' +- '2006-03-13' +- '2006-03-14' +- '2006-03-15' +- '2006-03-16' +- '2006-03-17' +- '2006-03-18' +- '2006-03-19' +- '2006-03-20' +- '2006-03-21' +- '2006-03-22' +- '2006-03-23' +- '2006-03-24' +- '2006-03-25' +- '2006-03-26' +- '2006-03-27' +- '2006-03-28' +- '2006-03-29' +- '2006-03-30' +- '2006-03-31' +- '2006-04-01' +- '2006-04-02' +- '2006-04-03' +- '2006-04-04' +- '2006-04-05' +- '2006-04-06' +- '2006-04-07' +- '2006-04-08' +- '2006-04-09' +- '2006-04-10' +- '2006-04-11' +- '2006-04-12' +- '2006-04-13' +- '2006-04-14' +- '2006-04-15' +- '2006-04-16' +- '2006-04-17' +- '2006-04-18' +- '2006-04-19' +- '2006-04-20' +- '2006-04-21' +- '2006-04-22' +- '2006-04-23' +- '2006-04-24' +- '2006-04-25' +- '2006-04-26' +- '2006-04-27' +- '2006-04-28' +- '2006-04-29' +- '2006-04-30' +- '2006-05-01' +- '2006-05-02' +- '2006-05-03' +- '2006-05-04' +- '2006-05-05' +- '2006-05-06' +- '2006-05-07' +- '2006-05-08' +- '2006-05-09' +- '2006-05-10' +- '2006-05-11' +- '2006-05-12' +- '2006-05-13' +- '2006-05-14' +- '2006-05-15' +- '2006-05-16' +- '2006-05-17' +- '2006-05-18' +- '2006-05-19' +- '2006-05-20' +- '2006-05-21' +- '2006-05-22' +- '2006-05-23' +- '2006-05-24' +- '2006-05-25' +- '2006-05-26' +- '2006-05-27' +- '2006-05-28' +- '2006-05-29' +- '2006-05-30' +- '2006-05-31' +- '2006-06-01' +- '2006-06-02' +- '2006-06-03' +- '2006-06-04' +- '2006-06-05' +- '2006-06-06' +- '2006-06-07' +- '2006-06-08' +- '2006-06-09' +- '2006-06-10' +- '2006-06-11' +- '2006-06-12' +- '2006-06-13' +- '2006-06-14' +- '2006-06-15' +- '2006-06-16' +- '2006-06-17' +- '2006-06-18' +- '2006-06-19' +- '2006-06-20' +- '2006-06-21' +- '2006-06-22' +- '2006-06-23' +- '2006-06-24' +- '2006-06-25' +- '2006-06-26' +- '2006-06-27' +- '2006-06-28' +- '2006-06-29' +- '2006-06-30' +- '2006-07-01' +- '2006-07-02' +- '2006-07-03' +- '2006-07-04' +- '2006-07-05' +- '2006-07-06' +- '2006-07-07' +- '2006-07-08' +- '2006-07-09' +- '2006-07-10' +- '2006-07-11' +- '2006-07-12' +- '2006-07-13' +- '2006-07-14' +- '2006-07-15' +- '2006-07-16' +- '2006-07-17' +- '2006-07-18' +- '2006-07-19' +- '2006-07-20' +- '2006-07-21' +- '2006-07-22' +- '2006-07-23' +- '2006-07-24' +- '2006-07-25' +- '2006-07-26' +- '2006-07-27' +- '2006-07-28' +- '2006-07-29' +- '2006-07-30' +- '2006-07-31' +- '2006-08-01' +- '2006-08-02' +- '2006-08-03' +- '2006-08-04' +- '2006-08-05' +- '2006-08-06' +- '2006-08-07' +- '2006-08-08' +- '2006-08-09' +- '2006-08-10' +- '2006-08-11' +- '2006-08-12' +- '2006-08-13' +- '2006-08-14' +- '2006-08-15' +- '2006-08-16' +- '2006-08-17' +- '2006-08-18' +- '2006-08-19' +- '2006-08-20' +- '2006-08-21' +- '2006-08-22' +- '2006-08-23' +- '2006-08-24' +- '2006-08-25' +- '2006-08-26' +- '2006-08-27' +- '2006-08-28' +- '2006-08-29' +- '2006-08-30' +- '2006-08-31' +- '2006-09-01' +- '2006-09-02' +- '2006-09-03' +- '2006-09-04' +- '2006-09-05' +- '2006-09-06' +- '2006-09-07' +- '2006-09-08' +- '2006-09-09' +- '2006-09-10' +- '2006-09-11' +- '2006-09-12' +- '2006-09-13' +- '2006-09-14' +- '2006-09-15' +- '2006-09-16' +- '2006-09-17' +- '2006-09-18' +- '2006-09-19' +- '2006-09-20' +- '2006-09-21' +- '2006-09-22' +- '2006-09-23' +- '2006-09-24' +- '2006-09-25' +- '2006-09-26' +- '2006-09-27' +- '2006-09-28' +- '2006-09-29' +- '2006-09-30' +- '2006-10-01' +- '2006-10-02' +- '2006-10-03' +- '2006-10-04' +- '2006-10-05' +- '2006-10-06' +- '2006-10-07' +- '2006-10-08' +- '2006-10-09' +- '2006-10-10' +- '2006-10-11' +- '2006-10-12' +- '2006-10-13' +- '2006-10-14' +- '2006-10-15' +- '2006-10-16' +- '2006-10-17' +- '2006-10-18' +- '2006-10-19' +- '2006-10-20' +- '2006-10-21' +- '2006-10-22' +- '2006-10-23' +- '2006-10-24' +- '2006-10-25' +- '2006-10-26' +- '2006-10-27' +- '2006-10-28' +- '2006-10-29' +- '2006-10-30' +- '2006-10-31' +- '2006-11-01' +- '2006-11-02' +- '2006-11-03' +- '2006-11-04' +- '2006-11-05' +- '2006-11-06' +- '2006-11-07' +- '2006-11-08' +- '2006-11-09' +- '2006-11-10' +- '2006-11-11' +- '2006-11-12' +- '2006-11-13' +- '2006-11-14' +- '2006-11-15' +- '2006-11-16' +- '2006-11-17' +- '2006-11-18' +- '2006-11-19' +- '2006-11-20' +- '2006-11-21' +- '2006-11-22' +- '2006-11-23' +- '2006-11-24' +- '2006-11-25' +- '2006-11-26' +- '2006-11-27' +- '2006-11-28' +- '2006-11-29' +- '2006-11-30' +- '2006-12-01' +- '2006-12-02' +- '2006-12-03' +- '2006-12-04' +- '2006-12-05' +- '2006-12-06' +- '2006-12-07' +- '2006-12-08' +- '2006-12-09' +- '2006-12-10' +- '2006-12-11' +- '2006-12-12' +- '2006-12-13' +- '2006-12-14' +- '2006-12-15' +- '2006-12-16' +- '2006-12-17' +- '2006-12-18' +- '2006-12-19' +- '2006-12-20' +- '2006-12-21' +- '2006-12-22' +- '2006-12-23' +- '2006-12-24' +- '2006-12-25' +- '2006-12-26' +- '2006-12-27' +- '2006-12-28' +- '2006-12-29' +- '2006-12-30' +- '2006-12-31' +- '2007-01-01' +- '2007-01-02' +- '2007-01-03' +- '2007-01-04' +- '2007-01-05' +- '2007-01-06' +- '2007-01-07' +- '2007-01-08' +- '2007-01-09' +- '2007-01-10' +- '2007-01-11' +- '2007-01-12' +- '2007-01-13' +- '2007-01-14' +- '2007-01-15' +- '2007-01-16' +- '2007-01-17' +- '2007-01-18' +- '2007-01-19' +- '2007-01-20' +- '2007-01-21' +- '2007-01-22' +- '2007-01-23' +- '2007-01-24' +- '2007-01-25' +- '2007-01-26' +- '2007-01-27' +- '2007-01-28' +- '2007-01-29' +- '2007-01-30' +- '2007-01-31' +- '2007-02-01' +- '2007-02-02' +- '2007-02-03' +- '2007-02-04' +- '2007-02-05' +- '2007-02-06' +- '2007-02-07' +- '2007-02-08' +- '2007-02-09' +- '2007-02-10' +- '2007-02-11' +- '2007-02-12' +- '2007-02-13' +- '2007-02-14' +- '2007-02-15' +- '2007-02-16' +- '2007-02-17' +- '2007-02-18' +- '2007-02-19' +- '2007-02-20' +- '2007-02-21' +- '2007-02-22' +- '2007-02-23' +- '2007-02-24' +- '2007-02-25' +- '2007-02-26' +- '2007-02-27' +- '2007-02-28' +- '2007-03-01' +- '2007-03-02' +- '2007-03-03' +- '2007-03-04' +- '2007-03-05' +- '2007-03-06' +- '2007-03-07' +- '2007-03-08' +- '2007-03-09' +- '2007-03-10' +- '2007-03-11' +- '2007-03-12' +- '2007-03-13' +- '2007-03-14' +- '2007-03-15' +- '2007-03-16' +- '2007-03-17' +- '2007-03-18' +- '2007-03-19' +- '2007-03-20' +- '2007-03-21' +- '2007-03-22' +- '2007-03-23' +- '2007-03-24' +- '2007-03-25' +- '2007-03-26' +- '2007-03-27' +- '2007-03-28' +- '2007-03-29' +- '2007-03-30' +- '2007-03-31' +- '2007-04-01' +- '2007-04-02' +- '2007-04-03' +- '2007-04-04' +- '2007-04-05' +- '2007-04-06' +- '2007-04-07' +- '2007-04-08' +- '2007-04-09' +- '2007-04-10' +- '2007-04-11' +- '2007-04-12' +- '2007-04-13' +- '2007-04-14' +- '2007-04-15' +- '2007-04-16' +- '2007-04-17' +- '2007-04-18' +- '2007-04-19' +- '2007-04-20' +- '2007-04-21' +- '2007-04-22' +- '2007-04-23' +- '2007-04-24' +- '2007-04-25' +- '2007-04-26' +- '2007-04-27' +- '2007-04-28' +- '2007-04-29' +- '2007-04-30' +- '2007-05-01' +- '2007-05-02' +- '2007-05-03' +- '2007-05-04' +- '2007-05-05' +- '2007-05-06' +- '2007-05-07' +- '2007-05-08' +- '2007-05-09' +- '2007-05-10' +- '2007-05-11' +- '2007-05-12' +- '2007-05-13' +- '2007-05-14' +- '2007-05-15' +- '2007-05-16' +- '2007-05-17' +- '2007-05-18' +- '2007-05-19' +- '2007-05-20' +- '2007-05-21' +- '2007-05-22' +- '2007-05-23' +- '2007-05-24' +- '2007-05-25' +- '2007-05-26' +- '2007-05-27' +- '2007-05-28' +- '2007-05-29' +- '2007-05-30' +- '2007-05-31' +- '2007-06-01' +- '2007-06-02' +- '2007-06-03' +- '2007-06-04' +- '2007-06-05' +- '2007-06-06' +- '2007-06-07' +- '2007-06-08' +- '2007-06-09' +- '2007-06-10' +- '2007-06-11' +- '2007-06-12' +- '2007-06-13' +- '2007-06-14' +- '2007-06-15' +- '2007-06-16' +- '2007-06-17' +- '2007-06-18' +- '2007-06-19' +- '2007-06-20' +- '2007-06-21' +- '2007-06-22' +- '2007-06-23' +- '2007-06-24' +- '2007-06-25' +- '2007-06-26' +- '2007-06-27' +- '2007-06-28' +- '2007-06-29' +- '2007-06-30' +- '2007-07-01' +- '2007-07-02' +- '2007-07-03' +- '2007-07-04' +- '2007-07-05' +- '2007-07-06' +- '2007-07-07' +- '2007-07-08' +- '2007-07-09' +- '2007-07-10' +- '2007-07-11' +- '2007-07-12' +- '2007-07-13' +- '2007-07-14' +- '2007-07-15' +- '2007-07-16' +- '2007-07-17' +- '2007-07-18' +- '2007-07-19' +- '2007-07-20' +- '2007-07-21' +- '2007-07-22' +- '2007-07-23' +- '2007-07-24' +- '2007-07-25' +- '2007-07-26' +- '2007-07-27' +- '2007-07-28' +- '2007-07-29' +- '2007-07-30' +- '2007-07-31' +- '2007-08-01' +- '2007-08-02' +- '2007-08-03' +- '2007-08-04' +- '2007-08-05' +- '2007-08-06' +- '2007-08-07' +- '2007-08-08' +- '2007-08-09' +- '2007-08-10' +- '2007-08-11' +- '2007-08-12' +- '2007-08-13' +- '2007-08-14' +- '2007-08-15' +- '2007-08-16' +- '2007-08-17' +- '2007-08-18' +- '2007-08-19' +- '2007-08-20' +- '2007-08-21' +- '2007-08-22' +- '2007-08-23' +- '2007-08-24' +- '2007-08-25' +- '2007-08-26' +- '2007-08-27' +- '2007-08-28' +- '2007-08-29' +- '2007-08-30' +- '2007-08-31' +- '2007-09-01' +- '2007-09-02' +- '2007-09-03' +- '2007-09-04' +- '2007-09-05' +- '2007-09-06' +- '2007-09-07' +- '2007-09-08' +- '2007-09-09' +- '2007-09-10' +- '2007-09-11' +- '2007-09-12' +- '2007-09-13' +- '2007-09-14' +- '2007-09-15' +- '2007-09-16' +- '2007-09-17' +- '2007-09-18' +- '2007-09-19' +- '2007-09-20' +- '2007-09-21' +- '2007-09-22' +- '2007-09-23' +- '2007-09-24' +- '2007-09-25' +- '2007-09-26' +- '2007-09-27' +- '2007-09-28' +- '2007-09-29' +- '2007-09-30' +- '2007-10-01' +- '2007-10-02' +- '2007-10-03' +- '2007-10-04' +- '2007-10-05' +- '2007-10-06' +- '2007-10-07' +- '2007-10-08' +- '2007-10-09' +- '2007-10-10' +- '2007-10-11' +- '2007-10-12' +- '2007-10-13' +- '2007-10-14' +- '2007-10-15' +- '2007-10-16' +- '2007-10-17' +- '2007-10-18' +- '2007-10-19' +- '2007-10-20' +- '2007-10-21' +- '2007-10-22' +- '2007-10-23' +- '2007-10-24' +- '2007-10-25' +- '2007-10-26' +- '2007-10-27' +- '2007-10-28' +- '2007-10-29' +- '2007-10-30' +- '2007-10-31' +- '2007-11-01' +- '2007-11-02' +- '2007-11-03' +- '2007-11-04' +- '2007-11-05' +- '2007-11-06' +- '2007-11-07' +- '2007-11-08' +- '2007-11-09' +- '2007-11-10' +- '2007-11-11' +- '2007-11-12' +- '2007-11-13' +- '2007-11-14' +- '2007-11-15' +- '2007-11-16' +- '2007-11-17' +- '2007-11-18' +- '2007-11-19' +- '2007-11-20' +- '2007-11-21' +- '2007-11-22' +- '2007-11-23' +- '2007-11-24' +- '2007-11-25' +- '2007-11-26' +- '2007-11-27' +- '2007-11-28' +- '2007-11-29' +- '2007-11-30' +- '2007-12-01' +- '2007-12-02' +- '2007-12-03' +- '2007-12-04' +- '2007-12-05' +- '2007-12-06' +- '2007-12-07' +- '2007-12-08' +- '2007-12-09' +- '2007-12-10' +- '2007-12-11' +- '2007-12-12' +- '2007-12-13' +- '2007-12-14' +- '2007-12-15' +- '2007-12-16' +- '2007-12-17' +- '2007-12-18' +- '2007-12-19' +- '2007-12-20' +- '2007-12-21' +- '2007-12-22' +- '2007-12-23' +- '2007-12-24' +- '2007-12-25' +- '2007-12-26' +- '2007-12-27' +- '2007-12-28' +- '2007-12-29' +- '2007-12-30' +- '2007-12-31' +- '2008-01-01' +- '2008-01-02' +- '2008-01-03' +- '2008-01-04' +- '2008-01-05' +- '2008-01-06' +- '2008-01-07' +- '2008-01-08' +- '2008-01-09' +- '2008-01-10' +- '2008-01-11' +- '2008-01-12' +- '2008-01-13' +- '2008-01-14' +- '2008-01-15' +- '2008-01-16' +- '2008-01-17' +- '2008-01-18' +- '2008-01-19' +- '2008-01-20' +- '2008-01-21' +- '2008-01-22' +- '2008-01-23' +- '2008-01-24' +- '2008-01-25' +- '2008-01-26' +- '2008-01-27' +- '2008-01-28' +- '2008-01-29' +- '2008-01-30' +- '2008-01-31' +- '2008-02-01' +- '2008-02-02' +- '2008-02-03' +- '2008-02-04' +- '2008-02-05' +- '2008-02-06' +- '2008-02-07' +- '2008-02-08' +- '2008-02-09' +- '2008-02-10' +- '2008-02-11' +- '2008-02-12' +- '2008-02-13' +- '2008-02-14' +- '2008-02-15' +- '2008-02-16' +- '2008-02-17' +- '2008-02-18' +- '2008-02-19' +- '2008-02-20' +- '2008-02-21' +- '2008-02-22' +- '2008-02-23' +- '2008-02-24' +- '2008-02-25' +- '2008-02-26' +- '2008-02-27' +- '2008-02-28' +- '2008-02-29' +- '2008-03-01' +- '2008-03-02' +- '2008-03-03' +- '2008-03-04' +- '2008-03-05' +- '2008-03-06' +- '2008-03-07' +- '2008-03-08' +- '2008-03-09' +- '2008-03-10' +- '2008-03-11' +- '2008-03-12' +- '2008-03-13' +- '2008-03-14' +- '2008-03-15' +- '2008-03-16' +- '2008-03-17' +- '2008-03-18' +- '2008-03-19' +- '2008-03-20' +- '2008-03-21' +- '2008-03-22' +- '2008-03-23' +- '2008-03-24' +- '2008-03-25' +- '2008-03-26' +- '2008-03-27' +- '2008-03-28' +- '2008-03-29' +- '2008-03-30' +- '2008-03-31' +- '2008-04-01' +- '2008-04-02' +- '2008-04-03' +- '2008-04-04' +- '2008-04-05' +- '2008-04-06' +- '2008-04-07' +- '2008-04-08' +- '2008-04-09' +- '2008-04-10' +- '2008-04-11' +- '2008-04-12' +- '2008-04-13' +- '2008-04-14' +- '2008-04-15' +- '2008-04-16' +- '2008-04-17' +- '2008-04-18' +- '2008-04-19' +- '2008-04-20' +- '2008-04-21' +- '2008-04-22' +- '2008-04-23' +- '2008-04-24' +- '2008-04-25' +- '2008-04-26' +- '2008-04-27' +- '2008-04-28' +- '2008-04-29' +- '2008-04-30' +- '2008-05-01' +- '2008-05-02' +- '2008-05-03' +- '2008-05-04' +- '2008-05-05' +- '2008-05-06' +- '2008-05-07' +- '2008-05-08' +- '2008-05-09' +- '2008-05-10' +- '2008-05-11' +- '2008-05-12' +- '2008-05-13' +- '2008-05-14' +- '2008-05-15' +- '2008-05-16' +- '2008-05-17' +- '2008-05-18' +- '2008-05-19' +- '2008-05-20' +- '2008-05-21' +- '2008-05-22' +- '2008-05-23' +- '2008-05-24' +- '2008-05-25' +- '2008-05-26' +- '2008-05-27' +- '2008-05-28' +- '2008-05-29' +- '2008-05-30' +- '2008-05-31' +- '2008-06-01' +- '2008-06-02' +- '2008-06-03' +- '2008-06-04' +- '2008-06-05' +- '2008-06-06' +- '2008-06-07' +- '2008-06-08' +- '2008-06-09' +- '2008-06-10' +- '2008-06-11' +- '2008-06-12' +- '2008-06-13' +- '2008-06-14' +- '2008-06-15' +- '2008-06-16' +- '2008-06-17' +- '2008-06-18' +- '2008-06-19' +- '2008-06-20' +- '2008-06-21' +- '2008-06-22' +- '2008-06-23' +- '2008-06-24' +- '2008-06-25' +- '2008-06-26' +- '2008-06-27' +- '2008-06-28' +- '2008-06-29' +- '2008-06-30' +- '2008-07-01' +- '2008-07-02' +- '2008-07-03' +- '2008-07-04' +- '2008-07-05' +- '2008-07-06' +- '2008-07-07' +- '2008-07-08' +- '2008-07-09' +- '2008-07-10' +- '2008-07-11' +- '2008-07-12' +- '2008-07-13' +- '2008-07-14' +- '2008-07-15' +- '2008-07-16' +- '2008-07-17' +- '2008-07-18' +- '2008-07-19' +- '2008-07-20' +- '2008-07-21' +- '2008-07-22' +- '2008-07-23' +- '2008-07-24' +- '2008-07-25' +- '2008-07-26' +- '2008-07-27' +- '2008-07-28' +- '2008-07-29' +- '2008-07-30' +- '2008-07-31' +- '2008-08-01' +- '2008-08-02' +- '2008-08-03' +- '2008-08-04' +- '2008-08-05' +- '2008-08-06' +- '2008-08-07' +- '2008-08-08' +- '2008-08-09' +- '2008-08-10' +- '2008-08-11' +- '2008-08-12' +- '2008-08-13' +- '2008-08-14' +- '2008-08-15' +- '2008-08-16' +- '2008-08-17' +- '2008-08-18' +- '2008-08-19' +- '2008-08-20' +- '2008-08-21' +- '2008-08-22' +- '2008-08-23' +- '2008-08-24' +- '2008-08-25' +- '2008-08-26' +- '2008-08-27' +- '2008-08-28' +- '2008-08-29' +- '2008-08-30' +- '2008-08-31' +- '2008-09-01' +- '2008-09-02' +- '2008-09-03' +- '2008-09-04' +- '2008-09-05' +- '2008-09-06' +- '2008-09-07' +- '2008-09-08' +- '2008-09-09' +- '2008-09-10' +- '2008-09-11' +- '2008-09-12' +- '2008-09-13' +- '2008-09-14' +- '2008-09-15' +- '2008-09-16' +- '2008-09-17' +- '2008-09-18' +- '2008-09-19' +- '2008-09-20' +- '2008-09-21' +- '2008-09-22' +- '2008-09-23' +- '2008-09-24' +- '2008-09-25' +- '2008-09-26' +- '2008-09-27' +- '2008-09-28' +- '2008-09-29' +- '2008-09-30' +- '2008-10-01' +- '2008-10-02' +- '2008-10-03' +- '2008-10-04' +- '2008-10-05' +- '2008-10-06' +- '2008-10-07' +- '2008-10-08' +- '2008-10-09' +- '2008-10-10' +- '2008-10-11' +- '2008-10-12' +- '2008-10-13' +- '2008-10-14' +- '2008-10-15' +- '2008-10-16' +- '2008-10-17' +- '2008-10-18' +- '2008-10-19' +- '2008-10-20' +- '2008-10-21' +- '2008-10-22' +- '2008-10-23' +- '2008-10-24' +- '2008-10-25' +- '2008-10-26' +- '2008-10-27' +- '2008-10-28' +- '2008-10-29' +- '2008-10-30' +- '2008-10-31' +- '2008-11-01' +- '2008-11-02' +- '2008-11-03' +- '2008-11-04' +- '2008-11-05' +- '2008-11-06' +- '2008-11-07' +- '2008-11-08' +- '2008-11-09' +- '2008-11-10' +- '2008-11-11' +- '2008-11-12' +- '2008-11-13' +- '2008-11-14' +- '2008-11-15' +- '2008-11-16' +- '2008-11-17' +- '2008-11-18' +- '2008-11-19' +- '2008-11-20' +- '2008-11-21' +- '2008-11-22' +- '2008-11-23' +- '2008-11-24' +- '2008-11-25' +- '2008-11-26' +- '2008-11-27' +- '2008-11-28' +- '2008-11-29' +- '2008-11-30' +- '2008-12-01' +- '2008-12-02' +- '2008-12-03' +- '2008-12-04' +- '2008-12-05' +- '2008-12-06' +- '2008-12-07' +- '2008-12-08' +- '2008-12-09' +- '2008-12-10' +- '2008-12-11' +- '2008-12-12' +- '2008-12-13' +- '2008-12-14' +- '2008-12-15' +- '2008-12-16' +- '2008-12-17' +- '2008-12-18' +- '2008-12-19' +- '2008-12-20' +- '2008-12-21' +- '2008-12-22' +- '2008-12-23' +- '2008-12-24' +- '2008-12-25' +- '2008-12-26' +- '2008-12-27' +- '2008-12-28' +- '2008-12-29' +- '2008-12-30' +- '2008-12-31' +- '2009-01-01' +- '2009-01-02' +- '2009-01-03' +- '2009-01-04' +- '2009-01-05' +- '2009-01-06' +- '2009-01-07' +- '2009-01-08' +- '2009-01-09' +- '2009-01-10' +- '2009-01-11' +- '2009-01-12' +- '2009-01-13' +- '2009-01-14' +- '2009-01-15' +- '2009-01-16' +- '2009-01-17' +- '2009-01-18' +- '2009-01-19' +- '2009-01-20' +- '2009-01-21' +- '2009-01-22' +- '2009-01-23' +- '2009-01-24' +- '2009-01-25' +- '2009-01-26' +- '2009-01-27' +- '2009-01-28' +- '2009-01-29' +- '2009-01-30' +- '2009-01-31' +- '2009-02-01' +- '2009-02-02' +- '2009-02-03' +- '2009-02-04' +- '2009-02-05' +- '2009-02-06' +- '2009-02-07' +- '2009-02-08' +- '2009-02-09' +- '2009-02-10' +- '2009-02-11' +- '2009-02-12' +- '2009-02-13' +- '2009-02-14' +- '2009-02-15' +- '2009-02-16' +- '2009-02-17' +- '2009-02-18' +- '2009-02-19' +- '2009-02-20' +- '2009-02-21' +- '2009-02-22' +- '2009-02-23' +- '2009-02-24' +- '2009-02-25' +- '2009-02-26' +- '2009-02-27' +- '2009-02-28' +- '2009-03-01' +- '2009-03-02' +- '2009-03-03' +- '2009-03-04' +- '2009-03-05' +- '2009-03-06' +- '2009-03-07' +- '2009-03-08' +- '2009-03-09' +- '2009-03-10' +- '2009-03-11' +- '2009-03-12' +- '2009-03-13' +- '2009-03-14' +- '2009-03-15' +- '2009-03-16' +- '2009-03-17' +- '2009-03-18' +- '2009-03-19' +- '2009-03-20' +- '2009-03-21' +- '2009-03-22' +- '2009-03-23' +- '2009-03-24' +- '2009-03-25' +- '2009-03-26' +- '2009-03-27' +- '2009-03-28' +- '2009-03-29' +- '2009-03-30' +- '2009-03-31' +- '2009-04-01' +- '2009-04-02' +- '2009-04-03' +- '2009-04-04' +- '2009-04-05' +- '2009-04-06' +- '2009-04-07' +- '2009-04-08' +- '2009-04-09' +- '2009-04-10' +- '2009-04-11' +- '2009-04-12' +- '2009-04-13' +- '2009-04-14' +- '2009-04-15' +- '2009-04-16' +- '2009-04-17' +- '2009-04-18' +- '2009-04-19' +- '2009-04-20' +- '2009-04-21' +- '2009-04-22' +- '2009-04-23' +- '2009-04-24' +- '2009-04-25' +- '2009-04-26' +- '2009-04-27' +- '2009-04-28' +- '2009-04-29' +- '2009-04-30' +- '2009-05-01' +- '2009-05-02' +- '2009-05-03' +- '2009-05-04' +- '2009-05-05' +- '2009-05-06' +- '2009-05-07' +- '2009-05-08' +- '2009-05-09' +- '2009-05-10' +- '2009-05-11' +- '2009-05-12' +- '2009-05-13' +- '2009-05-14' +- '2009-05-15' +- '2009-05-16' +- '2009-05-17' +- '2009-05-18' +- '2009-05-19' +- '2009-05-20' +- '2009-05-21' +- '2009-05-22' +- '2009-05-23' +- '2009-05-24' +- '2009-05-25' +- '2009-05-26' +- '2009-05-27' +- '2009-05-28' +- '2009-05-29' +- '2009-05-30' +- '2009-05-31' +- '2009-06-01' +- '2009-06-02' +- '2009-06-03' +- '2009-06-04' +- '2009-06-05' +- '2009-06-06' +- '2009-06-07' +- '2009-06-08' +- '2009-06-09' +- '2009-06-10' +- '2009-06-11' +- '2009-06-12' +- '2009-06-13' +- '2009-06-14' +- '2009-06-15' +- '2009-06-16' +- '2009-06-17' +- '2009-06-18' +- '2009-06-19' +- '2009-06-20' +- '2009-06-21' +- '2009-06-22' +- '2009-06-23' +- '2009-06-24' +- '2009-06-25' +- '2009-06-26' +- '2009-06-27' +- '2009-06-28' +- '2009-06-29' +- '2009-06-30' +- '2009-07-01' +- '2009-07-02' +- '2009-07-03' +- '2009-07-04' +- '2009-07-05' +- '2009-07-06' +- '2009-07-07' +- '2009-07-08' +- '2009-07-09' +- '2009-07-10' +- '2009-07-11' +- '2009-07-12' +- '2009-07-13' +- '2009-07-14' +- '2009-07-15' +- '2009-07-16' +- '2009-07-17' +- '2009-07-18' +- '2009-07-19' +- '2009-07-20' +- '2009-07-21' +- '2009-07-22' +- '2009-07-23' +- '2009-07-24' +- '2009-07-25' +- '2009-07-26' +- '2009-07-27' +- '2009-07-28' +- '2009-07-29' +- '2009-07-30' +- '2009-07-31' +- '2009-08-01' +- '2009-08-02' +- '2009-08-03' +- '2009-08-04' +- '2009-08-05' +- '2009-08-06' +- '2009-08-07' +- '2009-08-08' +- '2009-08-09' +- '2009-08-10' +- '2009-08-11' +- '2009-08-12' +- '2009-08-13' +- '2009-08-14' +- '2009-08-15' +- '2009-08-16' +- '2009-08-17' +- '2009-08-18' +- '2009-08-19' +- '2009-08-20' +- '2009-08-21' +- '2009-08-22' +- '2009-08-23' +- '2009-08-24' +- '2009-08-25' +- '2009-08-26' +- '2009-08-27' +- '2009-08-28' +- '2009-08-29' +- '2009-08-30' +- '2009-08-31' +- '2009-09-01' +- '2009-09-02' +- '2009-09-03' +- '2009-09-04' +- '2009-09-05' +- '2009-09-06' +- '2009-09-07' +- '2009-09-08' +- '2009-09-09' +- '2009-09-10' +- '2009-09-11' +- '2009-09-12' +- '2009-09-13' +- '2009-09-14' +- '2009-09-15' +- '2009-09-16' +- '2009-09-17' +- '2009-09-18' +- '2009-09-19' +- '2009-09-20' +- '2009-09-21' +- '2009-09-22' +- '2009-09-23' +- '2009-09-24' +- '2009-09-25' +- '2009-09-26' +- '2009-09-27' +- '2009-09-28' +- '2009-09-29' +- '2009-09-30' +- '2009-10-01' +- '2009-10-02' +- '2009-10-03' +- '2009-10-04' +- '2009-10-05' +- '2009-10-06' +- '2009-10-07' +- '2009-10-08' +- '2009-10-09' +- '2009-10-10' +- '2009-10-11' +- '2009-10-12' +- '2009-10-13' +- '2009-10-14' +- '2009-10-15' +- '2009-10-16' +- '2009-10-17' +- '2009-10-18' +- '2009-10-19' +- '2009-10-20' +- '2009-10-21' +- '2009-10-22' +- '2009-10-23' +- '2009-10-24' +- '2009-10-25' +- '2009-10-26' +- '2009-10-27' +- '2009-10-28' +- '2009-10-29' +- '2009-10-30' +- '2009-10-31' +- '2009-11-01' +- '2009-11-02' +- '2009-11-03' +- '2009-11-04' +- '2009-11-05' +- '2009-11-06' +- '2009-11-07' +- '2009-11-08' +- '2009-11-09' +- '2009-11-10' +- '2009-11-11' +- '2009-11-12' +- '2009-11-13' +- '2009-11-14' +- '2009-11-15' +- '2009-11-16' +- '2009-11-17' +- '2009-11-18' +- '2009-11-19' +- '2009-11-20' +- '2009-11-21' +- '2009-11-22' +- '2009-11-23' +- '2009-11-24' +- '2009-11-25' +- '2009-11-26' +- '2009-11-27' +- '2009-11-28' +- '2009-11-29' +- '2009-11-30' +- '2009-12-01' +- '2009-12-02' +- '2009-12-03' +- '2009-12-04' +- '2009-12-05' +- '2009-12-06' +- '2009-12-07' +- '2009-12-08' +- '2009-12-09' +- '2009-12-10' +- '2009-12-11' +- '2009-12-12' +- '2009-12-13' +- '2009-12-14' +- '2009-12-15' +- '2009-12-16' +- '2009-12-17' +- '2009-12-18' +- '2009-12-19' +- '2009-12-20' +- '2009-12-21' +- '2009-12-22' +- '2009-12-23' +- '2009-12-24' +- '2009-12-25' +- '2009-12-26' +- '2009-12-27' +- '2009-12-28' +- '2009-12-29' +- '2009-12-30' +- '2009-12-31' +- '2010-01-01' +- '2010-01-02' +- '2010-01-03' +- '2010-01-04' +- '2010-01-05' +- '2010-01-06' +- '2010-01-07' +- '2010-01-08' +- '2010-01-09' +- '2010-01-10' +- '2010-01-11' +- '2010-01-12' +- '2010-01-13' +- '2010-01-14' +- '2010-01-15' +- '2010-01-16' +- '2010-01-17' +- '2010-01-18' +- '2010-01-19' +- '2010-01-20' +- '2010-01-21' +- '2010-01-22' +- '2010-01-23' +- '2010-01-24' +- '2010-01-25' +- '2010-01-26' +- '2010-01-27' +- '2010-01-28' +- '2010-01-29' +- '2010-01-30' +- '2010-01-31' +- '2010-02-01' +- '2010-02-02' +- '2010-02-03' +- '2010-02-04' +- '2010-02-05' +- '2010-02-06' +- '2010-02-07' +- '2010-02-08' +- '2010-02-09' +- '2010-02-10' +- '2010-02-11' +- '2010-02-12' +- '2010-02-13' +- '2010-02-14' +- '2010-02-15' +- '2010-02-16' +- '2010-02-17' +- '2010-02-18' +- '2010-02-19' +- '2010-02-20' +- '2010-02-21' +- '2010-02-22' +- '2010-02-23' +- '2010-02-24' +- '2010-02-25' +- '2010-02-26' +- '2010-02-27' +- '2010-02-28' +- '2010-03-01' +- '2010-03-02' +- '2010-03-03' +- '2010-03-04' +- '2010-03-05' +- '2010-03-06' +- '2010-03-07' +- '2010-03-08' +- '2010-03-09' +- '2010-03-10' +- '2010-03-11' +- '2010-03-12' +- '2010-03-13' +- '2010-03-14' +- '2010-03-15' +- '2010-03-16' +- '2010-03-17' +- '2010-03-18' +- '2010-03-19' +- '2010-03-20' +- '2010-03-21' +- '2010-03-22' +- '2010-03-23' +- '2010-03-24' +- '2010-03-25' +- '2010-03-26' +- '2010-03-27' +- '2010-03-28' +- '2010-03-29' +- '2010-03-30' +- '2010-03-31' +- '2010-04-01' +- '2010-04-02' +- '2010-04-03' +- '2010-04-04' +- '2010-04-05' +- '2010-04-06' +- '2010-04-07' +- '2010-04-08' +- '2010-04-09' +- '2010-04-10' +- '2010-04-11' +- '2010-04-12' +- '2010-04-13' +- '2010-04-14' +- '2010-04-15' +- '2010-04-16' +- '2010-04-17' +- '2010-04-18' +- '2010-04-19' +- '2010-04-20' +- '2010-04-21' +- '2010-04-22' +- '2010-04-23' +- '2010-04-24' +- '2010-04-25' +- '2010-04-26' +- '2010-04-27' +- '2010-04-28' +- '2010-04-29' +- '2010-04-30' +- '2010-05-01' +- '2010-05-02' +- '2010-05-03' +- '2010-05-04' +- '2010-05-05' +- '2010-05-06' +- '2010-05-07' +- '2010-05-08' +- '2010-05-09' +- '2010-05-10' +- '2010-05-11' +- '2010-05-12' +- '2010-05-13' +- '2010-05-14' +- '2010-05-15' +- '2010-05-16' +- '2010-05-17' +- '2010-05-18' +- '2010-05-19' +- '2010-05-20' +- '2010-05-21' +- '2010-05-22' +- '2010-05-23' +- '2010-05-24' +- '2010-05-25' +- '2010-05-26' +- '2010-05-27' +- '2010-05-28' +- '2010-05-29' +- '2010-05-30' +- '2010-05-31' +- '2010-06-01' +- '2010-06-02' +- '2010-06-03' +- '2010-06-04' +- '2010-06-05' +- '2010-06-06' +- '2010-06-07' +- '2010-06-08' +- '2010-06-09' +- '2010-06-10' +- '2010-06-11' +- '2010-06-12' +- '2010-06-13' +- '2010-06-14' +- '2010-06-15' +- '2010-06-16' +- '2010-06-17' +- '2010-06-18' +- '2010-06-19' +- '2010-06-20' +- '2010-06-21' +- '2010-06-22' +- '2010-06-23' +- '2010-06-24' +- '2010-06-25' +- '2010-06-26' +- '2010-06-27' +- '2010-06-28' +- '2010-06-29' +- '2010-06-30' +- '2010-07-01' +- '2010-07-02' +- '2010-07-03' +- '2010-07-04' +- '2010-07-05' +- '2010-07-06' +- '2010-07-07' +- '2010-07-08' +- '2010-07-09' +- '2010-07-10' +- '2010-07-11' +- '2010-07-12' +- '2010-07-13' +- '2010-07-14' +- '2010-07-15' +- '2010-07-16' +- '2010-07-17' +- '2010-07-18' +- '2010-07-19' +- '2010-07-20' +- '2010-07-21' +- '2010-07-22' +- '2010-07-23' +- '2010-07-24' +- '2010-07-25' +- '2010-07-26' +- '2010-07-27' +- '2010-07-28' +- '2010-07-29' +- '2010-07-30' +- '2010-07-31' +- '2010-08-01' +- '2010-08-02' +- '2010-08-03' +- '2010-08-04' +- '2010-08-05' +- '2010-08-06' +- '2010-08-07' +- '2010-08-08' +- '2010-08-09' +- '2010-08-10' +- '2010-08-11' +- '2010-08-12' +- '2010-08-13' +- '2010-08-14' +- '2010-08-15' +- '2010-08-16' +- '2010-08-17' +- '2010-08-18' +- '2010-08-19' +- '2010-08-20' +- '2010-08-21' +- '2010-08-22' +- '2010-08-23' +- '2010-08-24' +- '2010-08-25' +- '2010-08-26' +- '2010-08-27' +- '2010-08-28' +- '2010-08-29' +- '2010-08-30' +- '2010-08-31' +- '2010-09-01' +- '2010-09-02' +- '2010-09-03' +- '2010-09-04' +- '2010-09-05' +- '2010-09-06' +- '2010-09-07' +- '2010-09-08' +- '2010-09-09' +- '2010-09-10' +- '2010-09-11' +- '2010-09-12' +- '2010-09-13' +- '2010-09-14' +- '2010-09-15' +- '2010-09-16' +- '2010-09-17' +- '2010-09-18' +- '2010-09-19' +- '2010-09-20' +- '2010-09-21' +- '2010-09-22' +- '2010-09-23' +- '2010-09-24' +- '2010-09-25' +- '2010-09-26' +- '2010-09-27' +- '2010-09-28' +- '2010-09-29' +- '2010-09-30' +- '2010-10-01' +- '2010-10-02' +- '2010-10-03' +- '2010-10-04' +- '2010-10-05' +- '2010-10-06' +- '2010-10-07' +- '2010-10-08' +- '2010-10-09' +- '2010-10-10' +- '2010-10-11' +- '2010-10-12' +- '2010-10-13' +- '2010-10-14' +- '2010-10-15' +- '2010-10-16' +- '2010-10-17' +- '2010-10-18' +- '2010-10-19' +- '2010-10-20' +- '2010-10-21' +- '2010-10-22' +- '2010-10-23' +- '2010-10-24' +- '2010-10-25' +- '2010-10-26' +- '2010-10-27' +- '2010-10-28' +- '2010-10-29' +- '2010-10-30' +- '2010-10-31' +- '2010-11-01' +- '2010-11-02' +- '2010-11-03' +- '2010-11-04' +- '2010-11-05' +- '2010-11-06' +- '2010-11-07' +- '2010-11-08' +- '2010-11-09' +- '2010-11-10' +- '2010-11-11' +- '2010-11-12' +- '2010-11-13' +- '2010-11-14' +- '2010-11-15' +- '2010-11-16' +- '2010-11-17' +- '2010-11-18' +- '2010-11-19' +- '2010-11-20' +- '2010-11-21' +- '2010-11-22' +- '2010-11-23' +- '2010-11-24' +- '2010-11-25' +- '2010-11-26' +- '2010-11-27' +- '2010-11-28' +- '2010-11-29' +- '2010-11-30' +- '2010-12-01' +- '2010-12-02' +- '2010-12-03' +- '2010-12-04' +- '2010-12-05' +- '2010-12-06' +- '2010-12-07' +- '2010-12-08' +- '2010-12-09' +- '2010-12-10' +- '2010-12-11' +- '2010-12-12' +- '2010-12-13' +- '2010-12-14' +- '2010-12-15' +- '2010-12-16' +- '2010-12-17' +- '2010-12-18' +- '2010-12-19' +- '2010-12-20' +- '2010-12-21' +- '2010-12-22' +- '2010-12-23' +- '2010-12-24' +- '2010-12-25' +- '2010-12-26' +- '2010-12-27' +- '2010-12-28' +- '2010-12-29' +- '2010-12-30' +- '2010-12-31' +- '2011-01-01' +- '2011-01-02' +- '2011-01-03' +- '2011-01-04' +- '2011-01-05' +- '2011-01-06' +- '2011-01-07' +- '2011-01-08' +- '2011-01-09' +- '2011-01-10' +- '2011-01-11' +- '2011-01-12' +- '2011-01-13' +- '2011-01-14' +- '2011-01-15' +- '2011-01-16' +- '2011-01-17' +- '2011-01-18' +- '2011-01-19' +- '2011-01-20' +- '2011-01-21' +- '2011-01-22' +- '2011-01-23' +- '2011-01-24' +- '2011-01-25' +- '2011-01-26' +- '2011-01-27' +- '2011-01-28' +- '2011-01-29' +- '2011-01-30' +- '2011-01-31' +- '2011-02-01' +- '2011-02-02' +- '2011-02-03' +- '2011-02-04' +- '2011-02-05' +- '2011-02-06' +- '2011-02-07' +- '2011-02-08' +- '2011-02-09' +- '2011-02-10' +- '2011-02-11' +- '2011-02-12' +- '2011-02-13' +- '2011-02-14' +- '2011-02-15' +- '2011-02-16' +- '2011-02-17' +- '2011-02-18' +- '2011-02-19' +- '2011-02-20' +- '2011-02-21' +- '2011-02-22' +- '2011-02-23' +- '2011-02-24' +- '2011-02-25' +- '2011-02-26' +- '2011-02-27' +- '2011-02-28' +- '2011-03-01' +- '2011-03-02' +- '2011-03-03' +- '2011-03-04' +- '2011-03-05' +- '2011-03-06' +- '2011-03-07' +- '2011-03-08' +- '2011-03-09' +- '2011-03-10' +- '2011-03-11' +- '2011-03-12' +- '2011-03-13' +- '2011-03-14' +- '2011-03-15' +- '2011-03-16' +- '2011-03-17' +- '2011-03-18' +- '2011-03-19' +- '2011-03-20' +- '2011-03-21' +- '2011-03-22' +- '2011-03-23' +- '2011-03-24' +- '2011-03-25' +- '2011-03-26' +- '2011-03-27' +- '2011-03-28' +- '2011-03-29' +- '2011-03-30' +- '2011-03-31' +- '2011-04-01' +- '2011-04-02' +- '2011-04-03' +- '2011-04-04' +- '2011-04-05' +- '2011-04-06' +- '2011-04-07' +- '2011-04-08' +- '2011-04-09' +- '2011-04-10' +- '2011-04-11' +- '2011-04-12' +- '2011-04-13' +- '2011-04-14' +- '2011-04-15' +- '2011-04-16' +- '2011-04-17' +- '2011-04-18' +- '2011-04-19' +- '2011-04-20' +- '2011-04-21' +- '2011-04-22' +- '2011-04-23' +- '2011-04-24' +- '2011-04-25' +- '2011-04-26' +- '2011-04-27' +- '2011-04-28' +- '2011-04-29' +- '2011-04-30' +- '2011-05-01' +- '2011-05-02' +- '2011-05-03' +- '2011-05-04' +- '2011-05-05' +- '2011-05-06' +- '2011-05-07' +- '2011-05-08' +- '2011-05-09' +- '2011-05-10' +- '2011-05-11' +- '2011-05-12' +- '2011-05-13' +- '2011-05-14' +- '2011-05-15' +- '2011-05-16' +- '2011-05-17' +- '2011-05-18' +- '2011-05-19' +- '2011-05-20' +- '2011-05-21' +- '2011-05-22' +- '2011-05-23' +- '2011-05-24' +- '2011-05-25' +- '2011-05-26' +- '2011-05-27' +- '2011-05-28' +- '2011-05-29' +- '2011-05-30' +- '2011-05-31' +- '2011-06-01' +- '2011-06-02' +- '2011-06-03' +- '2011-06-04' +- '2011-06-05' +- '2011-06-06' +- '2011-06-07' +- '2011-06-08' +- '2011-06-09' +- '2011-06-10' +- '2011-06-11' +- '2011-06-12' +- '2011-06-13' +- '2011-06-14' +- '2011-06-15' +- '2011-06-16' +- '2011-06-17' +- '2011-06-18' +- '2011-06-19' +- '2011-06-20' +- '2011-06-21' +- '2011-06-22' +- '2011-06-23' +- '2011-06-24' +- '2011-06-25' +- '2011-06-26' +- '2011-06-27' +- '2011-06-28' +- '2011-06-29' +- '2011-06-30' +- '2011-07-01' +- '2011-07-02' +- '2011-07-03' +- '2011-07-04' +- '2011-07-05' +- '2011-07-06' +- '2011-07-07' +- '2011-07-08' +- '2011-07-09' +- '2011-07-10' +- '2011-07-11' +- '2011-07-12' +- '2011-07-13' +- '2011-07-14' +- '2011-07-15' +- '2011-07-16' +- '2011-07-17' +- '2011-07-18' +- '2011-07-19' +- '2011-07-20' +- '2011-07-21' +- '2011-07-22' +- '2011-07-23' +- '2011-07-24' +- '2011-07-25' +- '2011-07-26' +- '2011-07-27' +- '2011-07-28' +- '2011-07-29' +- '2011-07-30' +- '2011-07-31' +- '2011-08-01' +- '2011-08-02' +- '2011-08-03' +- '2011-08-04' +- '2011-08-05' +- '2011-08-06' +- '2011-08-07' +- '2011-08-08' +- '2011-08-09' +- '2011-08-10' +- '2011-08-11' +- '2011-08-12' +- '2011-08-13' +- '2011-08-14' +- '2011-08-15' +- '2011-08-16' +- '2011-08-17' +- '2011-08-18' +- '2011-08-19' +- '2011-08-20' +- '2011-08-21' +- '2011-08-22' +- '2011-08-23' +- '2011-08-24' +- '2011-08-25' +- '2011-08-26' +- '2011-08-27' +- '2011-08-28' +- '2011-08-29' +- '2011-08-30' +- '2011-08-31' +- '2011-09-01' +- '2011-09-02' +- '2011-09-03' +- '2011-09-04' +- '2011-09-05' +- '2011-09-06' +- '2011-09-07' +- '2011-09-08' +- '2011-09-09' +- '2011-09-10' +- '2011-09-11' +- '2011-09-12' +- '2011-09-13' +- '2011-09-14' +- '2011-09-15' +- '2011-09-16' +- '2011-09-17' +- '2011-09-18' +- '2011-09-19' +- '2011-09-20' +- '2011-09-21' +- '2011-09-22' +- '2011-09-23' +- '2011-09-24' +- '2011-09-25' +- '2011-09-26' +- '2011-09-27' +- '2011-09-28' +- '2011-09-29' +- '2011-09-30' +- '2011-10-01' +- '2011-10-02' +- '2011-10-03' +- '2011-10-04' +- '2011-10-05' +- '2011-10-06' +- '2011-10-07' +- '2011-10-08' +- '2011-10-09' +- '2011-10-10' +- '2011-10-11' +- '2011-10-12' +- '2011-10-13' +- '2011-10-14' +- '2011-10-15' +- '2011-10-16' +- '2011-10-17' +- '2011-10-18' +- '2011-10-19' +- '2011-10-20' +- '2011-10-21' +- '2011-10-22' +- '2011-10-23' +- '2011-10-24' +- '2011-10-25' +- '2011-10-26' +- '2011-10-27' +- '2011-10-28' +- '2011-10-29' +- '2011-10-30' +- '2011-10-31' +- '2011-11-01' +- '2011-11-02' +- '2011-11-03' +- '2011-11-04' +- '2011-11-05' +- '2011-11-06' +- '2011-11-07' +- '2011-11-08' +- '2011-11-09' +- '2011-11-10' +- '2011-11-11' +- '2011-11-12' +- '2011-11-13' +- '2011-11-14' +- '2011-11-15' +- '2011-11-16' +- '2011-11-17' +- '2011-11-18' +- '2011-11-19' +- '2011-11-20' +- '2011-11-21' +- '2011-11-22' +- '2011-11-23' +- '2011-11-24' +- '2011-11-25' +- '2011-11-26' +- '2011-11-27' +- '2011-11-28' +- '2011-11-29' +- '2011-11-30' +- '2011-12-01' +- '2011-12-02' +- '2011-12-03' +- '2011-12-04' +- '2011-12-05' +- '2011-12-06' +- '2011-12-07' +- '2011-12-08' +- '2011-12-09' +- '2011-12-10' +- '2011-12-11' +- '2011-12-12' +- '2011-12-13' +- '2011-12-14' +- '2011-12-15' +- '2011-12-16' +- '2011-12-17' +- '2011-12-18' +- '2011-12-19' +- '2011-12-20' +- '2011-12-21' +- '2011-12-22' +- '2011-12-23' +- '2011-12-24' +- '2011-12-25' +- '2011-12-26' +- '2011-12-27' +- '2011-12-28' +- '2011-12-29' +- '2011-12-30' +- '2011-12-31' +- '2012-01-01' +- '2012-01-02' +- '2012-01-03' +- '2012-01-04' +- '2012-01-05' +- '2012-01-06' +- '2012-01-07' +- '2012-01-08' +- '2012-01-09' +- '2012-01-10' +- '2012-01-11' +- '2012-01-12' +- '2012-01-13' +- '2012-01-14' +- '2012-01-15' +- '2012-01-16' +- '2012-01-17' +- '2012-01-18' +- '2012-01-19' +- '2012-01-20' +- '2012-01-21' +- '2012-01-22' +- '2012-01-23' +- '2012-01-24' +- '2012-01-25' +- '2012-01-26' +- '2012-01-27' +- '2012-01-28' +- '2012-01-29' +- '2012-01-30' +- '2012-01-31' +- '2012-02-01' +- '2012-02-02' +- '2012-02-03' +- '2012-02-04' +- '2012-02-05' +- '2012-02-06' +- '2012-02-07' +- '2012-02-08' +- '2012-02-09' +- '2012-02-10' +- '2012-02-11' +- '2012-02-12' +- '2012-02-13' +- '2012-02-14' +- '2012-02-15' +- '2012-02-16' +- '2012-02-17' +- '2012-02-18' +- '2012-02-19' +- '2012-02-20' +- '2012-02-21' +- '2012-02-22' +- '2012-02-23' +- '2012-02-24' +- '2012-02-25' +- '2012-02-26' +- '2012-02-27' +- '2012-02-28' +- '2012-02-29' +- '2012-03-01' +- '2012-03-02' +- '2012-03-03' +- '2012-03-04' +- '2012-03-05' +- '2012-03-06' +- '2012-03-07' +- '2012-03-08' +- '2012-03-09' +- '2012-03-10' +- '2012-03-11' +- '2012-03-12' +- '2012-03-13' +- '2012-03-14' +- '2012-03-15' +- '2012-03-16' +- '2012-03-17' +- '2012-03-18' +- '2012-03-19' +- '2012-03-20' +- '2012-03-21' +- '2012-03-22' +- '2012-03-23' +- '2012-03-24' +- '2012-03-25' +- '2012-03-26' +- '2012-03-27' +- '2012-03-28' +- '2012-03-29' +- '2012-03-30' +- '2012-03-31' +- '2012-04-01' +- '2012-04-02' +- '2012-04-03' +- '2012-04-04' +- '2012-04-05' +- '2012-04-06' +- '2012-04-07' +- '2012-04-08' +- '2012-04-09' +- '2012-04-10' +- '2012-04-11' +- '2012-04-12' +- '2012-04-13' +- '2012-04-14' +- '2012-04-15' +- '2012-04-16' +- '2012-04-17' +- '2012-04-18' +- '2012-04-19' +- '2012-04-20' +- '2012-04-21' +- '2012-04-22' +- '2012-04-23' +- '2012-04-24' +- '2012-04-25' +- '2012-04-26' +- '2012-04-27' +- '2012-04-28' +- '2012-04-29' +- '2012-04-30' +- '2012-05-01' +- '2012-05-02' +- '2012-05-03' +- '2012-05-04' +- '2012-05-05' +- '2012-05-06' +- '2012-05-07' +- '2012-05-08' +- '2012-05-09' +- '2012-05-10' +- '2012-05-11' +- '2012-05-12' +- '2012-05-13' +- '2012-05-14' +- '2012-05-15' +- '2012-05-16' +- '2012-05-17' +- '2012-05-18' +- '2012-05-19' +- '2012-05-20' +- '2012-05-21' +- '2012-05-22' +- '2012-05-23' +- '2012-05-24' +- '2012-05-25' +- '2012-05-26' +- '2012-05-27' +- '2012-05-28' +- '2012-05-29' +- '2012-05-30' +- '2012-05-31' +- '2012-06-01' +- '2012-06-02' +- '2012-06-03' +- '2012-06-04' +- '2012-06-05' +- '2012-06-06' +- '2012-06-07' +- '2012-06-08' +- '2012-06-09' +- '2012-06-10' +- '2012-06-11' +- '2012-06-12' +- '2012-06-13' +- '2012-06-14' +- '2012-06-15' +- '2012-06-16' +- '2012-06-17' +- '2012-06-18' +- '2012-06-19' +- '2012-06-20' +- '2012-06-21' +- '2012-06-22' +- '2012-06-23' +- '2012-06-24' +- '2012-06-25' +- '2012-06-26' +- '2012-06-27' +- '2012-06-28' +- '2012-06-29' +- '2012-06-30' +- '2012-07-01' +- '2012-07-02' +- '2012-07-03' +- '2012-07-04' +- '2012-07-05' +- '2012-07-06' +- '2012-07-07' +- '2012-07-08' +- '2012-07-09' +- '2012-07-10' +- '2012-07-11' +- '2012-07-12' +- '2012-07-13' +- '2012-07-14' +- '2012-07-15' +- '2012-07-16' +- '2012-07-17' +- '2012-07-18' +- '2012-07-19' +- '2012-07-20' +- '2012-07-21' +- '2012-07-22' +- '2012-07-23' +- '2012-07-24' +- '2012-07-25' +- '2012-07-26' +- '2012-07-27' +- '2012-07-28' +- '2012-07-29' +- '2012-07-30' +- '2012-07-31' +- '2012-08-01' +- '2012-08-02' +- '2012-08-03' +- '2012-08-04' +- '2012-08-05' +- '2012-08-06' +- '2012-08-07' +- '2012-08-08' +- '2012-08-09' +- '2012-08-10' +- '2012-08-11' +- '2012-08-12' +- '2012-08-13' +- '2012-08-14' +- '2012-08-15' +- '2012-08-16' +- '2012-08-17' +- '2012-08-18' +- '2012-08-19' +- '2012-08-20' +- '2012-08-21' +- '2012-08-22' +- '2012-08-23' +- '2012-08-24' +- '2012-08-25' +- '2012-08-26' +- '2012-08-27' +- '2012-08-28' +- '2012-08-29' +- '2012-08-30' +- '2012-08-31' +- '2012-09-01' +- '2012-09-02' +- '2012-09-03' +- '2012-09-04' +- '2012-09-05' +- '2012-09-06' +- '2012-09-07' +- '2012-09-08' +- '2012-09-09' +- '2012-09-10' +- '2012-09-11' +- '2012-09-12' +- '2012-09-13' +- '2012-09-14' +- '2012-09-15' +- '2012-09-16' +- '2012-09-17' +- '2012-09-18' +- '2012-09-19' +- '2012-09-20' +- '2012-09-21' +- '2012-09-22' +- '2012-09-23' +- '2012-09-24' +- '2012-09-25' +- '2012-09-26' +- '2012-09-27' +- '2012-09-28' +- '2012-09-29' +- '2012-09-30' +- '2012-10-01' +- '2012-10-02' +- '2012-10-03' +- '2012-10-04' +- '2012-10-05' +- '2012-10-06' +- '2012-10-07' +- '2012-10-08' +- '2012-10-09' +- '2012-10-10' +- '2012-10-11' +- '2012-10-12' +- '2012-10-13' +- '2012-10-14' +- '2012-10-15' +- '2012-10-16' +- '2012-10-17' +- '2012-10-18' +- '2012-10-19' +- '2012-10-20' +- '2012-10-21' +- '2012-10-22' +- '2012-10-23' +- '2012-10-24' +- '2012-10-25' +- '2012-10-26' +- '2012-10-27' +- '2012-10-28' +- '2012-10-29' +- '2012-10-30' +- '2012-10-31' +- '2012-11-01' +- '2012-11-02' +- '2012-11-03' +- '2012-11-04' +- '2012-11-05' +- '2012-11-06' +- '2012-11-07' +- '2012-11-08' +- '2012-11-09' +- '2012-11-10' +- '2012-11-11' +- '2012-11-12' +- '2012-11-13' +- '2012-11-14' +- '2012-11-15' +- '2012-11-16' +- '2012-11-17' +- '2012-11-18' +- '2012-11-19' +- '2012-11-20' +- '2012-11-21' +- '2012-11-22' +- '2012-11-23' +- '2012-11-24' +- '2012-11-25' +- '2012-11-26' +- '2012-11-27' +- '2012-11-28' +- '2012-11-29' +- '2012-11-30' +- '2012-12-01' +- '2012-12-02' +- '2012-12-03' +- '2012-12-04' +- '2012-12-05' +- '2012-12-06' +- '2012-12-07' +- '2012-12-08' +- '2012-12-09' +- '2012-12-10' +- '2012-12-11' +- '2012-12-12' +- '2012-12-13' +- '2012-12-14' +- '2012-12-15' +- '2012-12-16' +- '2012-12-17' +- '2012-12-18' +- '2012-12-19' +- '2012-12-20' +- '2012-12-21' +- '2012-12-22' +- '2012-12-23' +- '2012-12-24' +- '2012-12-25' +- '2012-12-26' +- '2012-12-27' +- '2012-12-28' +- '2012-12-29' +- '2012-12-30' +- '2012-12-31' +- '2013-01-01' +- '2013-01-02' +- '2013-01-03' +- '2013-01-04' +- '2013-01-05' +- '2013-01-06' +- '2013-01-07' +- '2013-01-08' +- '2013-01-09' +- '2013-01-10' +- '2013-01-11' +- '2013-01-12' +- '2013-01-13' +- '2013-01-14' +- '2013-01-15' +- '2013-01-16' +- '2013-01-17' +- '2013-01-18' +- '2013-01-19' +- '2013-01-20' +- '2013-01-21' +- '2013-01-22' +- '2013-01-23' +- '2013-01-24' +- '2013-01-25' +- '2013-01-26' +- '2013-01-27' +- '2013-01-28' +- '2013-01-29' +- '2013-01-30' +- '2013-01-31' +- '2013-02-01' +- '2013-02-02' +- '2013-02-03' +- '2013-02-04' +- '2013-02-05' +- '2013-02-06' +- '2013-02-07' +- '2013-02-08' +- '2013-02-09' +- '2013-02-10' +- '2013-02-11' +- '2013-02-12' +- '2013-02-13' +- '2013-02-14' +- '2013-02-15' +- '2013-02-16' +- '2013-02-17' +- '2013-02-18' +- '2013-02-19' +- '2013-02-20' +- '2013-02-21' +- '2013-02-22' +- '2013-02-23' +- '2013-02-24' +- '2013-02-25' +- '2013-02-26' +- '2013-02-27' +- '2013-02-28' +- '2013-03-01' +- '2013-03-02' +- '2013-03-03' +- '2013-03-04' +- '2013-03-05' +- '2013-03-06' +- '2013-03-07' +- '2013-03-08' +- '2013-03-09' +- '2013-03-10' +- '2013-03-11' +- '2013-03-12' +- '2013-03-13' +- '2013-03-14' +- '2013-03-15' +- '2013-03-16' +- '2013-03-17' +- '2013-03-18' +- '2013-03-19' +- '2013-03-20' +- '2013-03-21' +- '2013-03-22' +- '2013-03-23' +- '2013-03-24' +- '2013-03-25' +- '2013-03-26' +- '2013-03-27' +- '2013-03-28' +- '2013-03-29' +- '2013-03-30' +- '2013-03-31' +- '2013-04-01' +- '2013-04-02' +- '2013-04-03' +- '2013-04-04' +- '2013-04-05' +- '2013-04-06' +- '2013-04-07' +- '2013-04-08' +- '2013-04-09' +- '2013-04-10' +- '2013-04-11' +- '2013-04-12' +- '2013-04-13' +- '2013-04-14' +- '2013-04-15' +- '2013-04-16' +- '2013-04-17' +- '2013-04-18' +- '2013-04-19' +- '2013-04-20' +- '2013-04-21' +- '2013-04-22' +- '2013-04-23' +- '2013-04-24' +- '2013-04-25' +- '2013-04-26' +- '2013-04-27' +- '2013-04-28' +- '2013-04-29' +- '2013-04-30' +- '2013-05-01' +- '2013-05-02' +- '2013-05-03' +- '2013-05-04' +- '2013-05-05' +- '2013-05-06' +- '2013-05-07' +- '2013-05-08' +- '2013-05-09' +- '2013-05-10' +- '2013-05-11' +- '2013-05-12' +- '2013-05-13' +- '2013-05-14' +- '2013-05-15' +- '2013-05-16' +- '2013-05-17' +- '2013-05-18' +- '2013-05-19' +- '2013-05-20' +- '2013-05-21' +- '2013-05-22' +- '2013-05-23' +- '2013-05-24' +- '2013-05-25' +- '2013-05-26' +- '2013-05-27' +- '2013-05-28' +- '2013-05-29' +- '2013-05-30' +- '2013-05-31' +- '2013-06-01' +- '2013-06-02' +- '2013-06-03' +- '2013-06-04' +- '2013-06-05' +- '2013-06-06' +- '2013-06-07' +- '2013-06-08' +- '2013-06-09' +- '2013-06-10' +- '2013-06-11' +- '2013-06-12' +- '2013-06-13' +- '2013-06-14' +- '2013-06-15' +- '2013-06-16' +- '2013-06-17' +- '2013-06-18' +- '2013-06-19' +- '2013-06-20' +- '2013-06-21' +- '2013-06-22' +- '2013-06-23' +- '2013-06-24' +- '2013-06-25' +- '2013-06-26' +- '2013-06-27' +- '2013-06-28' +- '2013-06-29' +- '2013-06-30' +- '2013-07-01' +- '2013-07-02' +- '2013-07-03' +- '2013-07-04' +- '2013-07-05' +- '2013-07-06' +- '2013-07-07' +- '2013-07-08' +- '2013-07-09' +- '2013-07-10' +- '2013-07-11' +- '2013-07-12' +- '2013-07-13' +- '2013-07-14' +- '2013-07-15' +- '2013-07-16' +- '2013-07-17' +- '2013-07-18' +- '2013-07-19' +- '2013-07-20' +- '2013-07-21' +- '2013-07-22' +- '2013-07-23' +- '2013-07-24' +- '2013-07-25' +- '2013-07-26' +- '2013-07-27' +- '2013-07-28' +- '2013-07-29' +- '2013-07-30' +- '2013-07-31' +- '2013-08-01' +- '2013-08-02' +- '2013-08-03' +- '2013-08-04' +- '2013-08-05' +- '2013-08-06' +- '2013-08-07' +- '2013-08-08' +- '2013-08-09' +- '2013-08-10' +- '2013-08-11' +- '2013-08-12' +- '2013-08-13' +- '2013-08-14' +- '2013-08-15' +- '2013-08-16' +- '2013-08-17' +- '2013-08-18' +- '2013-08-19' +- '2013-08-20' +- '2013-08-21' +- '2013-08-22' +- '2013-08-23' +- '2013-08-24' +- '2013-08-25' +- '2013-08-26' +- '2013-08-27' +- '2013-08-28' +- '2013-08-29' +- '2013-08-30' +- '2013-08-31' +- '2013-09-01' +- '2013-09-02' +- '2013-09-03' +- '2013-09-04' +- '2013-09-05' +- '2013-09-06' +- '2013-09-07' +- '2013-09-08' +- '2013-09-09' +- '2013-09-10' +- '2013-09-11' +- '2013-09-12' +- '2013-09-13' +- '2013-09-14' +- '2013-09-15' +- '2013-09-16' +- '2013-09-17' +- '2013-09-18' +- '2013-09-19' +- '2013-09-20' +- '2013-09-21' +- '2013-09-22' +- '2013-09-23' +- '2013-09-24' +- '2013-09-25' +- '2013-09-26' +- '2013-09-27' +- '2013-09-28' +- '2013-09-29' +- '2013-09-30' +- '2013-10-01' +- '2013-10-02' +- '2013-10-03' +- '2013-10-04' +- '2013-10-05' +- '2013-10-06' +- '2013-10-07' +- '2013-10-08' +- '2013-10-09' +- '2013-10-10' +- '2013-10-11' +- '2013-10-12' +- '2013-10-13' +- '2013-10-14' +- '2013-10-15' +- '2013-10-16' +- '2013-10-17' +- '2013-10-18' +- '2013-10-19' +- '2013-10-20' +- '2013-10-21' +- '2013-10-22' +- '2013-10-23' +- '2013-10-24' +- '2013-10-25' +- '2013-10-26' +- '2013-10-27' +- '2013-10-28' +- '2013-10-29' +- '2013-10-30' +- '2013-10-31' +- '2013-11-01' +- '2013-11-02' +- '2013-11-03' +- '2013-11-04' +- '2013-11-05' +- '2013-11-06' +- '2013-11-07' +- '2013-11-08' +- '2013-11-09' +- '2013-11-10' +- '2013-11-11' +- '2013-11-12' +- '2013-11-13' +- '2013-11-14' +- '2013-11-15' +- '2013-11-16' +- '2013-11-17' +- '2013-11-18' +- '2013-11-19' +- '2013-11-20' +- '2013-11-21' +- '2013-11-22' +- '2013-11-23' +- '2013-11-24' +- '2013-11-25' +- '2013-11-26' +- '2013-11-27' +- '2013-11-28' +- '2013-11-29' +- '2013-11-30' +- '2013-12-01' +- '2013-12-02' +- '2013-12-03' +- '2013-12-04' +- '2013-12-05' +- '2013-12-06' +- '2013-12-07' +- '2013-12-08' +- '2013-12-09' +- '2013-12-10' +- '2013-12-11' +- '2013-12-12' +- '2013-12-13' +- '2013-12-14' +- '2013-12-15' +- '2013-12-16' +- '2013-12-17' +- '2013-12-18' +- '2013-12-19' +- '2013-12-20' +- '2013-12-21' +- '2013-12-22' +- '2013-12-23' +- '2013-12-24' +- '2013-12-25' +- '2013-12-26' +- '2013-12-27' +- '2013-12-28' +- '2013-12-29' +- '2013-12-30' +- '2013-12-31' +- '2014-01-01' +- '2014-01-02' +- '2014-01-03' +- '2014-01-04' +- '2014-01-05' +- '2014-01-06' +- '2014-01-07' +- '2014-01-08' +- '2014-01-09' +- '2014-01-10' +- '2014-01-11' +- '2014-01-12' +- '2014-01-13' +- '2014-01-14' +- '2014-01-15' +- '2014-01-16' +- '2014-01-17' +- '2014-01-18' +- '2014-01-19' +- '2014-01-20' +- '2014-01-21' +- '2014-01-22' +- '2014-01-23' +- '2014-01-24' +- '2014-01-25' +- '2014-01-26' +- '2014-01-27' +- '2014-01-28' +- '2014-01-29' +- '2014-01-30' +- '2014-01-31' +- '2014-02-01' +- '2014-02-02' +- '2014-02-03' +- '2014-02-04' +- '2014-02-05' +- '2014-02-06' +- '2014-02-07' +- '2014-02-08' +- '2014-02-09' +- '2014-02-10' +- '2014-02-11' +- '2014-02-12' +- '2014-02-13' +- '2014-02-14' +- '2014-02-15' +- '2014-02-16' +- '2014-02-17' +- '2014-02-18' +- '2014-02-19' +- '2014-02-20' +- '2014-02-21' +- '2014-02-22' +- '2014-02-23' +- '2014-02-24' +- '2014-02-25' +- '2014-02-26' +- '2014-02-27' +- '2014-02-28' +- '2014-03-01' +- '2014-03-02' +- '2014-03-03' +- '2014-03-04' +- '2014-03-05' +- '2014-03-06' +- '2014-03-07' +- '2014-03-08' +- '2014-03-09' +- '2014-03-10' +- '2014-03-11' +- '2014-03-12' +- '2014-03-13' +- '2014-03-14' +- '2014-03-15' +- '2014-03-16' +- '2014-03-17' +- '2014-03-18' +- '2014-03-19' +- '2014-03-20' +- '2014-03-21' +- '2014-03-22' +- '2014-03-23' +- '2014-03-24' +- '2014-03-25' +- '2014-03-26' +- '2014-03-27' +- '2014-03-28' +- '2014-03-29' +- '2014-03-30' +- '2014-03-31' +- '2014-04-01' +- '2014-04-02' +- '2014-04-03' +- '2014-04-04' +- '2014-04-05' +- '2014-04-06' +- '2014-04-07' +- '2014-04-08' +- '2014-04-09' +- '2014-04-10' +- '2014-04-11' +- '2014-04-12' +- '2014-04-13' +- '2014-04-14' +- '2014-04-15' +- '2014-04-16' +- '2014-04-17' +- '2014-04-18' +- '2014-04-19' +- '2014-04-20' +- '2014-04-21' +- '2014-04-22' +- '2014-04-23' +- '2014-04-24' +- '2014-04-25' +- '2014-04-26' +- '2014-04-27' +- '2014-04-28' +- '2014-04-29' +- '2014-04-30' +- '2014-05-01' +- '2014-05-02' +- '2014-05-03' +- '2014-05-04' +- '2014-05-05' +- '2014-05-06' +- '2014-05-07' +- '2014-05-08' +- '2014-05-09' +- '2014-05-10' +- '2014-05-11' +- '2014-05-12' +- '2014-05-13' +- '2014-05-14' +- '2014-05-15' +- '2014-05-16' +- '2014-05-17' +- '2014-05-18' +- '2014-05-19' +- '2014-05-20' +- '2014-05-21' +- '2014-05-22' +- '2014-05-23' +- '2014-05-24' +- '2014-05-25' +- '2014-05-26' +- '2014-05-27' +- '2014-05-28' +- '2014-05-29' +- '2014-05-30' +- '2014-05-31' +- '2014-06-01' +- '2014-06-02' +- '2014-06-03' +- '2014-06-04' +- '2014-06-05' +- '2014-06-06' +- '2014-06-07' +- '2014-06-08' +- '2014-06-09' +- '2014-06-10' +- '2014-06-11' +- '2014-06-12' +- '2014-06-13' +- '2014-06-14' +- '2014-06-15' +- '2014-06-16' +- '2014-06-17' +- '2014-06-18' +- '2014-06-19' +- '2014-06-20' +- '2014-06-21' +- '2014-06-22' +- '2014-06-23' +- '2014-06-24' +- '2014-06-25' +- '2014-06-26' +- '2014-06-27' +- '2014-06-28' +- '2014-06-29' +- '2014-06-30' +- '2014-07-01' +- '2014-07-02' +- '2014-07-03' +- '2014-07-04' +- '2014-07-05' +- '2014-07-06' +- '2014-07-07' +- '2014-07-08' +- '2014-07-09' +- '2014-07-10' +- '2014-07-11' +- '2014-07-12' +- '2014-07-13' +- '2014-07-14' +- '2014-07-15' +- '2014-07-16' +- '2014-07-17' +- '2014-07-18' +- '2014-07-19' +- '2014-07-20' +- '2014-07-21' +- '2014-07-22' +- '2014-07-23' +- '2014-07-24' +- '2014-07-25' +- '2014-07-26' +- '2014-07-27' +- '2014-07-28' +- '2014-07-29' +- '2014-07-30' +- '2014-07-31' +- '2014-08-01' +- '2014-08-02' +- '2014-08-03' +- '2014-08-04' +- '2014-08-05' +- '2014-08-06' +- '2014-08-07' +- '2014-08-08' +- '2014-08-09' +- '2014-08-10' +- '2014-08-11' +- '2014-08-12' +- '2014-08-13' +- '2014-08-14' +- '2014-08-15' +- '2014-08-16' +- '2014-08-17' +- '2014-08-18' +- '2014-08-19' +- '2014-08-20' +- '2014-08-21' +- '2014-08-22' +- '2014-08-23' +- '2014-08-24' +- '2014-08-25' +- '2014-08-26' +- '2014-08-27' +- '2014-08-28' +- '2014-08-29' +- '2014-08-30' +- '2014-08-31' +- '2014-09-01' +- '2014-09-02' +- '2014-09-03' +- '2014-09-04' +- '2014-09-05' +- '2014-09-06' +- '2014-09-07' +- '2014-09-08' +- '2014-09-09' +- '2014-09-10' +- '2014-09-11' +- '2014-09-12' +- '2014-09-13' +- '2014-09-14' +- '2014-09-15' +- '2014-09-16' +- '2014-09-17' +- '2014-09-18' +- '2014-09-19' +- '2014-09-20' +- '2014-09-21' +- '2014-09-22' +- '2014-09-23' +- '2014-09-24' +- '2014-09-25' +- '2014-09-26' +- '2014-09-27' +- '2014-09-28' +- '2014-09-29' +- '2014-09-30' +- '2014-10-01' +- '2014-10-02' +- '2014-10-03' +- '2014-10-04' +- '2014-10-05' +- '2014-10-06' +- '2014-10-07' +- '2014-10-08' +- '2014-10-09' +- '2014-10-10' +- '2014-10-11' +- '2014-10-12' +- '2014-10-13' +- '2014-10-14' +- '2014-10-15' +- '2014-10-16' +- '2014-10-17' +- '2014-10-18' +- '2014-10-19' +- '2014-10-20' +- '2014-10-21' +- '2014-10-22' +- '2014-10-23' +- '2014-10-24' +- '2014-10-25' +- '2014-10-26' +- '2014-10-27' +- '2014-10-28' +- '2014-10-29' +- '2014-10-30' +- '2014-10-31' +- '2014-11-01' +- '2014-11-02' +- '2014-11-03' +- '2014-11-04' +- '2014-11-05' +- '2014-11-06' +- '2014-11-07' +- '2014-11-08' +- '2014-11-09' +- '2014-11-10' +- '2014-11-11' +- '2014-11-12' +- '2014-11-13' +- '2014-11-14' +- '2014-11-15' +- '2014-11-16' +- '2014-11-17' +- '2014-11-18' +- '2014-11-19' +- '2014-11-20' +- '2014-11-21' +- '2014-11-22' +- '2014-11-23' +- '2014-11-24' +- '2014-11-25' +- '2014-11-26' +- '2014-11-27' +- '2014-11-28' +- '2014-11-29' +- '2014-11-30' +- '2014-12-01' +- '2014-12-02' +- '2014-12-03' +- '2014-12-04' +- '2014-12-05' +- '2014-12-06' +- '2014-12-07' +- '2014-12-08' +- '2014-12-09' +- '2014-12-10' +- '2014-12-11' +- '2014-12-12' +- '2014-12-13' +- '2014-12-14' +- '2014-12-15' +- '2014-12-16' +- '2014-12-17' +- '2014-12-18' +- '2014-12-19' +- '2014-12-20' +- '2014-12-21' +- '2014-12-22' +- '2014-12-23' +- '2014-12-24' +- '2014-12-25' +- '2014-12-26' +- '2014-12-27' +- '2014-12-28' +- '2014-12-29' +- '2014-12-30' +- '2014-12-31' +- '2015-01-01' +- '2015-01-02' +- '2015-01-03' +- '2015-01-04' +- '2015-01-05' +- '2015-01-06' +- '2015-01-07' +- '2015-01-08' +- '2015-01-09' +- '2015-01-10' +- '2015-01-11' +- '2015-01-12' +- '2015-01-13' +- '2015-01-14' +- '2015-01-15' +- '2015-01-16' +- '2015-01-17' +- '2015-01-18' +- '2015-01-19' +- '2015-01-20' +- '2015-01-21' +- '2015-01-22' +- '2015-01-23' +- '2015-01-24' +- '2015-01-25' +- '2015-01-26' +- '2015-01-27' +- '2015-01-28' +- '2015-01-29' +- '2015-01-30' +- '2015-01-31' +- '2015-02-01' +- '2015-02-02' +- '2015-02-03' +- '2015-02-04' +- '2015-02-05' +- '2015-02-06' +- '2015-02-07' +- '2015-02-08' +- '2015-02-09' +- '2015-02-10' +- '2015-02-11' +- '2015-02-12' +- '2015-02-13' +- '2015-02-14' +- '2015-02-15' +- '2015-02-16' +- '2015-02-17' +- '2015-02-18' +- '2015-02-19' +- '2015-02-20' +- '2015-02-21' +- '2015-02-22' +- '2015-02-23' +- '2015-02-24' +- '2015-02-25' +- '2015-02-26' +- '2015-02-27' +- '2015-02-28' +- '2015-03-01' +- '2015-03-02' +- '2015-03-03' +- '2015-03-04' +- '2015-03-05' +- '2015-03-06' +- '2015-03-07' +- '2015-03-08' +- '2015-03-09' +- '2015-03-10' +- '2015-03-11' +- '2015-03-12' +- '2015-03-13' +- '2015-03-14' +- '2015-03-15' +- '2015-03-16' +- '2015-03-17' +- '2015-03-18' +- '2015-03-19' +- '2015-03-20' +- '2015-03-21' +- '2015-03-22' +- '2015-03-23' +- '2015-03-24' +- '2015-03-25' +- '2015-03-26' +- '2015-03-27' +- '2015-03-28' +- '2015-03-29' +- '2015-03-30' +- '2015-03-31' +- '2015-04-01' +- '2015-04-02' +- '2015-04-03' +- '2015-04-04' +- '2015-04-05' +- '2015-04-06' +- '2015-04-07' +- '2015-04-08' +- '2015-04-09' +- '2015-04-10' +- '2015-04-11' +- '2015-04-12' +- '2015-04-13' +- '2015-04-14' +- '2015-04-15' +- '2015-04-16' +- '2015-04-17' +- '2015-04-18' +- '2015-04-19' +- '2015-04-20' +- '2015-04-21' +- '2015-04-22' +- '2015-04-23' +- '2015-04-24' +- '2015-04-25' +- '2015-04-26' +- '2015-04-27' +- '2015-04-28' +- '2015-04-29' +- '2015-04-30' +- '2015-05-01' +- '2015-05-02' +- '2015-05-03' +- '2015-05-04' +- '2015-05-05' +- '2015-05-06' +- '2015-05-07' +- '2015-05-08' +- '2015-05-09' +- '2015-05-10' +- '2015-05-11' +- '2015-05-12' +- '2015-05-13' +- '2015-05-14' +- '2015-05-15' +- '2015-05-16' +- '2015-05-17' +- '2015-05-18' +- '2015-05-19' +- '2015-05-20' +- '2015-05-21' +- '2015-05-22' +- '2015-05-23' +- '2015-05-24' +- '2015-05-25' +- '2015-05-26' +- '2015-05-27' +- '2015-05-28' +- '2015-05-29' +- '2015-05-30' +- '2015-05-31' +- '2015-06-01' +- '2015-06-02' +- '2015-06-03' +- '2015-06-04' +- '2015-06-05' +- '2015-06-06' +- '2015-06-07' +- '2015-06-08' +- '2015-06-09' +- '2015-06-10' +- '2015-06-11' +- '2015-06-12' +- '2015-06-13' +- '2015-06-14' +- '2015-06-15' +- '2015-06-16' +- '2015-06-17' +- '2015-06-18' +- '2015-06-19' +- '2015-06-20' +- '2015-06-21' +- '2015-06-22' +- '2015-06-23' +- '2015-06-24' +- '2015-06-25' +- '2015-06-26' +- '2015-06-27' +- '2015-06-28' +- '2015-06-29' +- '2015-06-30' +- '2015-07-01' +- '2015-07-02' +- '2015-07-03' +- '2015-07-04' +- '2015-07-05' +- '2015-07-06' +- '2015-07-07' +- '2015-07-08' +- '2015-07-09' +- '2015-07-10' +- '2015-07-11' +- '2015-07-12' +- '2015-07-13' +- '2015-07-14' +- '2015-07-15' +- '2015-07-16' +- '2015-07-17' +- '2015-07-18' +- '2015-07-19' +- '2015-07-20' +- '2015-07-21' +- '2015-07-22' +- '2015-07-23' +- '2015-07-24' +- '2015-07-25' +- '2015-07-26' +- '2015-07-27' +- '2015-07-28' +- '2015-07-29' +- '2015-07-30' +- '2015-07-31' +- '2015-08-01' +- '2015-08-02' +- '2015-08-03' +- '2015-08-04' +- '2015-08-05' +- '2015-08-06' +- '2015-08-07' +- '2015-08-08' +- '2015-08-09' +- '2015-08-10' +- '2015-08-11' +- '2015-08-12' +- '2015-08-13' +- '2015-08-14' +- '2015-08-15' +- '2015-08-16' +- '2015-08-17' +- '2015-08-18' +- '2015-08-19' +- '2015-08-20' +- '2015-08-21' +- '2015-08-22' +- '2015-08-23' +- '2015-08-24' +- '2015-08-25' +- '2015-08-26' +- '2015-08-27' +- '2015-08-28' +- '2015-08-29' +- '2015-08-30' +- '2015-08-31' +- '2015-09-01' +- '2015-09-02' +- '2015-09-03' +- '2015-09-04' +- '2015-09-05' +- '2015-09-06' +- '2015-09-07' +- '2015-09-08' +- '2015-09-09' +- '2015-09-10' +- '2015-09-11' +- '2015-09-12' +- '2015-09-13' +- '2015-09-14' +- '2015-09-15' +- '2015-09-16' +- '2015-09-17' +- '2015-09-18' +- '2015-09-19' +- '2015-09-20' +- '2015-09-21' +- '2015-09-22' +- '2015-09-23' +- '2015-09-24' +- '2015-09-25' +- '2015-09-26' +- '2015-09-27' +- '2015-09-28' +- '2015-09-29' +- '2015-09-30' +- '2015-10-01' +- '2015-10-02' +- '2015-10-03' +- '2015-10-04' +- '2015-10-05' +- '2015-10-06' +- '2015-10-07' +- '2015-10-08' +- '2015-10-09' +- '2015-10-10' +- '2015-10-11' +- '2015-10-12' +- '2015-10-13' +- '2015-10-14' +- '2015-10-15' +- '2015-10-16' +- '2015-10-17' +- '2015-10-18' +- '2015-10-19' +- '2015-10-20' +- '2015-10-21' +- '2015-10-22' +- '2015-10-23' +- '2015-10-24' +- '2015-10-25' +- '2015-10-26' +- '2015-10-27' +- '2015-10-28' +- '2015-10-29' +- '2015-10-30' +- '2015-10-31' +- '2015-11-01' +- '2015-11-02' +- '2015-11-03' +- '2015-11-04' +- '2015-11-05' +- '2015-11-06' +- '2015-11-07' +- '2015-11-08' +- '2015-11-09' +- '2015-11-10' +- '2015-11-11' +- '2015-11-12' +- '2015-11-13' +- '2015-11-14' +- '2015-11-15' +- '2015-11-16' +- '2015-11-17' +- '2015-11-18' +- '2015-11-19' +- '2015-11-20' +- '2015-11-21' +- '2015-11-22' +- '2015-11-23' +- '2015-11-24' +- '2015-11-25' +- '2015-11-26' +- '2015-11-27' +- '2015-11-28' +- '2015-11-29' +- '2015-11-30' +- '2015-12-01' +- '2015-12-02' +- '2015-12-03' +- '2015-12-04' +- '2015-12-05' +- '2015-12-06' +- '2015-12-07' +- '2015-12-08' +- '2015-12-09' +- '2015-12-10' +- '2015-12-11' +- '2015-12-12' +- '2015-12-13' +- '2015-12-14' +- '2015-12-15' +- '2015-12-16' +- '2015-12-17' +- '2015-12-18' +- '2015-12-19' +- '2015-12-20' +- '2015-12-21' +- '2015-12-22' +- '2015-12-23' +- '2015-12-24' +- '2015-12-25' +- '2015-12-26' +- '2015-12-27' +- '2015-12-28' +- '2015-12-29' +- '2015-12-30' +- '2015-12-31' +- '2016-01-01' +- '2016-01-02' +- '2016-01-03' +- '2016-01-04' +- '2016-01-05' +- '2016-01-06' +- '2016-01-07' +- '2016-01-08' +- '2016-01-09' +- '2016-01-10' +- '2016-01-11' +- '2016-01-12' +- '2016-01-13' +- '2016-01-14' +- '2016-01-15' +- '2016-01-16' +- '2016-01-17' +- '2016-01-18' +- '2016-01-19' +- '2016-01-20' +- '2016-01-21' +- '2016-01-22' +- '2016-01-23' +- '2016-01-24' +- '2016-01-25' +- '2016-01-26' +- '2016-01-27' +- '2016-01-28' +- '2016-01-29' +- '2016-01-30' +- '2016-01-31' +- '2016-02-01' +- '2016-02-02' +- '2016-02-03' +- '2016-02-04' +- '2016-02-05' +- '2016-02-06' +- '2016-02-07' +- '2016-02-08' +- '2016-02-09' +- '2016-02-10' +- '2016-02-11' +- '2016-02-12' +- '2016-02-13' +- '2016-02-14' +- '2016-02-15' +- '2016-02-16' +- '2016-02-17' +- '2016-02-18' +- '2016-02-19' +- '2016-02-20' +- '2016-02-21' +- '2016-02-22' +- '2016-02-23' +- '2016-02-24' +- '2016-02-25' +- '2016-02-26' +- '2016-02-27' +- '2016-02-28' +- '2016-02-29' +- '2016-03-01' +- '2016-03-02' +- '2016-03-03' +- '2016-03-04' +- '2016-03-05' +- '2016-03-06' +- '2016-03-07' +- '2016-03-08' +- '2016-03-09' +- '2016-03-10' +- '2016-03-11' +- '2016-03-12' +- '2016-03-13' +- '2016-03-14' +- '2016-03-15' +- '2016-03-16' +- '2016-03-17' +- '2016-03-18' +- '2016-03-19' +- '2016-03-20' +- '2016-03-21' +- '2016-03-22' +- '2016-03-23' +- '2016-03-24' +- '2016-03-25' +- '2016-03-26' +- '2016-03-27' +- '2016-03-28' +- '2016-03-29' +- '2016-03-30' +- '2016-03-31' +- '2016-04-01' +- '2016-04-02' +- '2016-04-03' +- '2016-04-04' +- '2016-04-05' +- '2016-04-06' +- '2016-04-07' +- '2016-04-08' +- '2016-04-09' +- '2016-04-10' +- '2016-04-11' +- '2016-04-12' +- '2016-04-13' +- '2016-04-14' +- '2016-04-15' +- '2016-04-16' +- '2016-04-17' +- '2016-04-18' +- '2016-04-19' +- '2016-04-20' +- '2016-04-21' +- '2016-04-22' +- '2016-04-23' +- '2016-04-24' +- '2016-04-25' +- '2016-04-26' +- '2016-04-27' +- '2016-04-28' +- '2016-04-29' +- '2016-04-30' +- '2016-05-01' +- '2016-05-02' +- '2016-05-03' +- '2016-05-04' +- '2016-05-05' +- '2016-05-06' +- '2016-05-07' +- '2016-05-08' +- '2016-05-09' +- '2016-05-10' +- '2016-05-11' +- '2016-05-12' +- '2016-05-13' +- '2016-05-14' +- '2016-05-15' +- '2016-05-16' +- '2016-05-17' +- '2016-05-18' +- '2016-05-19' +- '2016-05-20' +- '2016-05-21' +- '2016-05-22' +- '2016-05-23' +- '2016-05-24' +- '2016-05-25' +- '2016-05-26' +- '2016-05-27' +- '2016-05-28' +- '2016-05-29' +- '2016-05-30' +- '2016-05-31' +- '2016-06-01' +- '2016-06-02' +- '2016-06-03' +- '2016-06-04' +- '2016-06-05' +- '2016-06-06' +- '2016-06-07' +- '2016-06-08' +- '2016-06-09' +- '2016-06-10' +- '2016-06-11' +- '2016-06-12' +- '2016-06-13' +- '2016-06-14' +- '2016-06-15' +- '2016-06-16' +- '2016-06-17' +- '2016-06-18' +- '2016-06-19' +- '2016-06-20' +- '2016-06-21' +- '2016-06-22' +- '2016-06-23' +- '2016-06-24' +- '2016-06-25' +- '2016-06-26' +- '2016-06-27' +- '2016-06-28' +- '2016-06-29' +- '2016-06-30' +- '2016-07-01' +- '2016-07-02' +- '2016-07-03' +- '2016-07-04' +- '2016-07-05' +- '2016-07-06' +- '2016-07-07' +- '2016-07-08' +- '2016-07-09' +- '2016-07-10' +- '2016-07-11' +- '2016-07-12' +- '2016-07-13' +- '2016-07-14' +- '2016-07-15' +- '2016-07-16' +- '2016-07-17' +- '2016-07-18' +- '2016-07-19' +- '2016-07-20' +- '2016-07-21' +- '2016-07-22' +- '2016-07-23' +- '2016-07-24' +- '2016-07-25' +- '2016-07-26' +- '2016-07-27' +- '2016-07-28' +- '2016-07-29' +- '2016-07-30' +- '2016-07-31' +- '2016-08-01' +- '2016-08-02' +- '2016-08-03' +- '2016-08-04' +- '2016-08-05' +- '2016-08-06' +- '2016-08-07' +- '2016-08-08' +- '2016-08-09' +- '2016-08-10' +- '2016-08-11' +- '2016-08-12' +- '2016-08-13' +- '2016-08-14' +- '2016-08-15' +- '2016-08-16' +- '2016-08-17' +- '2016-08-18' +- '2016-08-19' +- '2016-08-20' +- '2016-08-21' +- '2016-08-22' +- '2016-08-23' +- '2016-08-24' +- '2016-08-25' +- '2016-08-26' +- '2016-08-27' +- '2016-08-28' +- '2016-08-29' +- '2016-08-30' +- '2016-08-31' +- '2016-09-01' +- '2016-09-02' +- '2016-09-03' +- '2016-09-04' +- '2016-09-05' +- '2016-09-06' +- '2016-09-07' +- '2016-09-08' +- '2016-09-09' +- '2016-09-10' +- '2016-09-11' +- '2016-09-12' +- '2016-09-13' +- '2016-09-14' +- '2016-09-15' +- '2016-09-16' +- '2016-09-17' +- '2016-09-18' +- '2016-09-19' +- '2016-09-20' +- '2016-09-21' +- '2016-09-22' +- '2016-09-23' +- '2016-09-24' +- '2016-09-25' +- '2016-09-26' +- '2016-09-27' +- '2016-09-28' +- '2016-09-29' +- '2016-09-30' +- '2016-10-01' +- '2016-10-02' +- '2016-10-03' +- '2016-10-04' +- '2016-10-05' +- '2016-10-06' +- '2016-10-07' +- '2016-10-08' +- '2016-10-09' +- '2016-10-10' +- '2016-10-11' +- '2016-10-12' +- '2016-10-13' +- '2016-10-14' +- '2016-10-15' +- '2016-10-16' +- '2016-10-17' +- '2016-10-18' +- '2016-10-19' +- '2016-10-20' +- '2016-10-21' +- '2016-10-22' +- '2016-10-23' +- '2016-10-24' +- '2016-10-25' +- '2016-10-26' +- '2016-10-27' +- '2016-10-28' +- '2016-10-29' +- '2016-10-30' +- '2016-10-31' +- '2016-11-01' +- '2016-11-02' +- '2016-11-03' +- '2016-11-04' +- '2016-11-05' +- '2016-11-06' +- '2016-11-07' +- '2016-11-08' +- '2016-11-09' +- '2016-11-10' +- '2016-11-11' +- '2016-11-12' +- '2016-11-13' +- '2016-11-14' +- '2016-11-15' +- '2016-11-16' +- '2016-11-17' +- '2016-11-18' +- '2016-11-19' +- '2016-11-20' +- '2016-11-21' +- '2016-11-22' +- '2016-11-23' +- '2016-11-24' +- '2016-11-25' +- '2016-11-26' +- '2016-11-27' +- '2016-11-28' +- '2016-11-29' +- '2016-11-30' +- '2016-12-01' +- '2016-12-02' +- '2016-12-03' +- '2016-12-04' +- '2016-12-05' +- '2016-12-06' +- '2016-12-07' +- '2016-12-08' +- '2016-12-09' +- '2016-12-10' +- '2016-12-11' +- '2016-12-12' +- '2016-12-13' +- '2016-12-14' +- '2016-12-15' +- '2016-12-16' +- '2016-12-17' +- '2016-12-18' +- '2016-12-19' +- '2016-12-20' +- '2016-12-21' +- '2016-12-22' +- '2016-12-23' +- '2016-12-24' +- '2016-12-25' +- '2016-12-26' +- '2016-12-27' +- '2016-12-28' +- '2016-12-29' +- '2016-12-30' +- '2016-12-31' +- '2017-01-01' +- '2017-01-02' +- '2017-01-03' +- '2017-01-04' +- '2017-01-05' +- '2017-01-06' +- '2017-01-07' +- '2017-01-08' +- '2017-01-09' +- '2017-01-10' +- '2017-01-11' +- '2017-01-12' +- '2017-01-13' +- '2017-01-14' +- '2017-01-15' +- '2017-01-16' +- '2017-01-17' +- '2017-01-18' +- '2017-01-19' +- '2017-01-20' +- '2017-01-21' +- '2017-01-22' +- '2017-01-23' +- '2017-01-24' +- '2017-01-25' +- '2017-01-26' +- '2017-01-27' +- '2017-01-28' +- '2017-01-29' +- '2017-01-30' +- '2017-01-31' +- '2017-02-01' +- '2017-02-02' +- '2017-02-03' +- '2017-02-04' +- '2017-02-05' +- '2017-02-06' +- '2017-02-07' +- '2017-02-08' +- '2017-02-09' +- '2017-02-10' +- '2017-02-11' +- '2017-02-12' +- '2017-02-13' +- '2017-02-14' +- '2017-02-15' +- '2017-02-16' +- '2017-02-17' +- '2017-02-18' +- '2017-02-19' +- '2017-02-20' +- '2017-02-21' +- '2017-02-22' +- '2017-02-23' +- '2017-02-24' +- '2017-02-25' +- '2017-02-26' +- '2017-02-27' +- '2017-02-28' +- '2017-03-01' +- '2017-03-02' +- '2017-03-03' +- '2017-03-04' +- '2017-03-05' +- '2017-03-06' +- '2017-03-07' +- '2017-03-08' +- '2017-03-09' +- '2017-03-10' +- '2017-03-11' +- '2017-03-12' +- '2017-03-13' +- '2017-03-14' +- '2017-03-15' +- '2017-03-16' +- '2017-03-17' +- '2017-03-18' +- '2017-03-19' +- '2017-03-20' +- '2017-03-21' +- '2017-03-22' +- '2017-03-23' +- '2017-03-24' +- '2017-03-25' +- '2017-03-26' +- '2017-03-27' +- '2017-03-28' +- '2017-03-29' +- '2017-03-30' +- '2017-03-31' +- '2017-04-01' +- '2017-04-02' +- '2017-04-03' +- '2017-04-04' +- '2017-04-05' +- '2017-04-06' +- '2017-04-07' +- '2017-04-08' +- '2017-04-09' +- '2017-04-10' +- '2017-04-11' +- '2017-04-12' +- '2017-04-13' +- '2017-04-14' +- '2017-04-15' +- '2017-04-16' +- '2017-04-17' +- '2017-04-18' +- '2017-04-19' +- '2017-04-20' +- '2017-04-21' +- '2017-04-22' +- '2017-04-23' +- '2017-04-24' +- '2017-04-25' +- '2017-04-26' +- '2017-04-27' +- '2017-04-28' +- '2017-04-29' +- '2017-04-30' +- '2017-05-01' +- '2017-05-02' +- '2017-05-03' +- '2017-05-04' +- '2017-05-05' +- '2017-05-06' +- '2017-05-07' +- '2017-05-08' +- '2017-05-09' +- '2017-05-10' +- '2017-05-11' +- '2017-05-12' +- '2017-05-13' +- '2017-05-14' +- '2017-05-15' +- '2017-05-16' +- '2017-05-17' +- '2017-05-18' +- '2017-05-19' +- '2017-05-20' +- '2017-05-21' +- '2017-05-22' +- '2017-05-23' +- '2017-05-24' +- '2017-05-25' +- '2017-05-26' +- '2017-05-27' +- '2017-05-28' +- '2017-05-29' +- '2017-05-30' +- '2017-05-31' +- '2017-06-01' +- '2017-06-02' +- '2017-06-03' +- '2017-06-04' +- '2017-06-05' +- '2017-06-06' +- '2017-06-07' +- '2017-06-08' +- '2017-06-09' +- '2017-06-10' +- '2017-06-11' +- '2017-06-12' +- '2017-06-13' +- '2017-06-14' +- '2017-06-15' +- '2017-06-16' +- '2017-06-17' +- '2017-06-18' +- '2017-06-19' +- '2017-06-20' +- '2017-06-21' +- '2017-06-22' +- '2017-06-23' +- '2017-06-24' +- '2017-06-25' +- '2017-06-26' +- '2017-06-27' +- '2017-06-28' +- '2017-06-29' +- '2017-06-30' +- '2017-07-01' +- '2017-07-02' +- '2017-07-03' +- '2017-07-04' +- '2017-07-05' +- '2017-07-06' +- '2017-07-07' +- '2017-07-08' +- '2017-07-09' +- '2017-07-10' +- '2017-07-11' +- '2017-07-12' +- '2017-07-13' +- '2017-07-14' +- '2017-07-15' +- '2017-07-16' +- '2017-07-17' +- '2017-07-18' +- '2017-07-19' +- '2017-07-20' +- '2017-07-21' +- '2017-07-22' +- '2017-07-23' +- '2017-07-24' +- '2017-07-25' +- '2017-07-26' +- '2017-07-27' +- '2017-07-28' +- '2017-07-29' +- '2017-07-30' +- '2017-07-31' +- '2017-08-01' +- '2017-08-02' +- '2017-08-03' +- '2017-08-04' +- '2017-08-05' +- '2017-08-06' +- '2017-08-07' +- '2017-08-08' +- '2017-08-09' +- '2017-08-10' +- '2017-08-11' +- '2017-08-12' +- '2017-08-13' +- '2017-08-14' +- '2017-08-15' +- '2017-08-16' +- '2017-08-17' +- '2017-08-18' +- '2017-08-19' +- '2017-08-20' +- '2017-08-21' +- '2017-08-22' +- '2017-08-23' +- '2017-08-24' +- '2017-08-25' +- '2017-08-26' +- '2017-08-27' +- '2017-08-28' +- '2017-08-29' +- '2017-08-30' +- '2017-08-31' +- '2017-09-01' +- '2017-09-02' +- '2017-09-03' +- '2017-09-04' +- '2017-09-05' +- '2017-09-06' +- '2017-09-07' +- '2017-09-08' +- '2017-09-09' +- '2017-09-10' +- '2017-09-11' +- '2017-09-12' +- '2017-09-13' +- '2017-09-14' +- '2017-09-15' +- '2017-09-16' +- '2017-09-17' +- '2017-09-18' +- '2017-09-19' +- '2017-09-20' +- '2017-09-21' +- '2017-09-22' +- '2017-09-23' +- '2017-09-24' +- '2017-09-25' +- '2017-09-26' +- '2017-09-27' +- '2017-09-28' +- '2017-09-29' +- '2017-09-30' +- '2017-10-01' +- '2017-10-02' +- '2017-10-03' +- '2017-10-04' +- '2017-10-05' +- '2017-10-06' +- '2017-10-07' +- '2017-10-08' +- '2017-10-09' +- '2017-10-10' +- '2017-10-11' +- '2017-10-12' +- '2017-10-13' +- '2017-10-14' +- '2017-10-15' +- '2017-10-16' +- '2017-10-17' +- '2017-10-18' +- '2017-10-19' +- '2017-10-20' +- '2017-10-21' +- '2017-10-22' +- '2017-10-23' +- '2017-10-24' +- '2017-10-25' +- '2017-10-26' +- '2017-10-27' +- '2017-10-28' +- '2017-10-29' +- '2017-10-30' +- '2017-10-31' +- '2017-11-01' +- '2017-11-02' +- '2017-11-03' +- '2017-11-04' +- '2017-11-05' +- '2017-11-06' +- '2017-11-07' +- '2017-11-08' +- '2017-11-09' +- '2017-11-10' +- '2017-11-11' +- '2017-11-12' +- '2017-11-13' +- '2017-11-14' +- '2017-11-15' +- '2017-11-16' +- '2017-11-17' +- '2017-11-18' +- '2017-11-19' +- '2017-11-20' +- '2017-11-21' +- '2017-11-22' +- '2017-11-23' +- '2017-11-24' +- '2017-11-25' +- '2017-11-26' +- '2017-11-27' +- '2017-11-28' +- '2017-11-29' +- '2017-11-30' +- '2017-12-01' +- '2017-12-02' +- '2017-12-03' +- '2017-12-04' +- '2017-12-05' +- '2017-12-06' +- '2017-12-07' +- '2017-12-08' +- '2017-12-09' +- '2017-12-10' +- '2017-12-11' +- '2017-12-12' +- '2017-12-13' +- '2017-12-14' +- '2017-12-15' +- '2017-12-16' +- '2017-12-17' +- '2017-12-18' +- '2017-12-19' +- '2017-12-20' +- '2017-12-21' +- '2017-12-22' +- '2017-12-23' +- '2017-12-24' +- '2017-12-25' +- '2017-12-26' +- '2017-12-27' +- '2017-12-28' +- '2017-12-29' +- '2017-12-30' +- '2017-12-31' +- '2018-01-01' +- '2018-01-02' +- '2018-01-03' +- '2018-01-04' +- '2018-01-05' +- '2018-01-06' +- '2018-01-07' +- '2018-01-08' +- '2018-01-09' +- '2018-01-10' +- '2018-01-11' +- '2018-01-12' +- '2018-01-13' +- '2018-01-14' +- '2018-01-15' +- '2018-01-16' +- '2018-01-17' +- '2018-01-18' +- '2018-01-19' +- '2018-01-20' +- '2018-01-21' +- '2018-01-22' +- '2018-01-23' +- '2018-01-24' +- '2018-01-25' +- '2018-01-26' +- '2018-01-27' +- '2018-01-28' +- '2018-01-29' +- '2018-01-30' +- '2018-01-31' +- '2018-02-01' +- '2018-02-02' +- '2018-02-03' +- '2018-02-04' +- '2018-02-05' +- '2018-02-06' +- '2018-02-07' +- '2018-02-08' +- '2018-02-09' +- '2018-02-10' +- '2018-02-11' +- '2018-02-12' +- '2018-02-13' +- '2018-02-14' +- '2018-02-15' +- '2018-02-16' +- '2018-02-17' +- '2018-02-18' +- '2018-02-19' +- '2018-02-20' +- '2018-02-21' +- '2018-02-22' +- '2018-02-23' +- '2018-02-24' +- '2018-02-25' +- '2018-02-26' +- '2018-02-27' +- '2018-02-28' +- '2018-03-01' +- '2018-03-02' +- '2018-03-03' +- '2018-03-04' +- '2018-03-05' +- '2018-03-06' +- '2018-03-07' +- '2018-03-08' +- '2018-03-09' +- '2018-03-10' +- '2018-03-11' +- '2018-03-12' +- '2018-03-13' +- '2018-03-14' +- '2018-03-15' +- '2018-03-16' +- '2018-03-17' +- '2018-03-18' +- '2018-03-19' +- '2018-03-20' +- '2018-03-21' +- '2018-03-22' +- '2018-03-23' +- '2018-03-24' +- '2018-03-25' +- '2018-03-26' +- '2018-03-27' +- '2018-03-28' +- '2018-03-29' +- '2018-03-30' +- '2018-03-31' +- '2018-04-01' +- '2018-04-02' +- '2018-04-03' +- '2018-04-04' +- '2018-04-05' +- '2018-04-06' +- '2018-04-07' +- '2018-04-08' +- '2018-04-09' +- '2018-04-10' +- '2018-04-11' +- '2018-04-12' +- '2018-04-13' +- '2018-04-14' +- '2018-04-15' +- '2018-04-16' +- '2018-04-17' +- '2018-04-18' +- '2018-04-19' +- '2018-04-20' +- '2018-04-21' +- '2018-04-22' +- '2018-04-23' +- '2018-04-24' +- '2018-04-25' +- '2018-04-26' +- '2018-04-27' +- '2018-04-28' +- '2018-04-29' +- '2018-04-30' +- '2018-05-01' +- '2018-05-02' +- '2018-05-03' +- '2018-05-04' +- '2018-05-05' +- '2018-05-06' +- '2018-05-07' +- '2018-05-08' +- '2018-05-09' +- '2018-05-10' +- '2018-05-11' +- '2018-05-12' +- '2018-05-13' +- '2018-05-14' +- '2018-05-15' +- '2018-05-16' +- '2018-05-17' +- '2018-05-18' +- '2018-05-19' +- '2018-05-20' +- '2018-05-21' +- '2018-05-22' +- '2018-05-23' +- '2018-05-24' +- '2018-05-25' +- '2018-05-26' +- '2018-05-27' +- '2018-05-28' +- '2018-05-29' +- '2018-05-30' +- '2018-05-31' +- '2018-06-01' +- '2018-06-02' +- '2018-06-03' +- '2018-06-04' +- '2018-06-05' +- '2018-06-06' +- '2018-06-07' +- '2018-06-08' +- '2018-06-09' +- '2018-06-10' +- '2018-06-11' +- '2018-06-12' +- '2018-06-13' +- '2018-06-14' +- '2018-06-15' +- '2018-06-16' +- '2018-06-17' +- '2018-06-18' +- '2018-06-19' +- '2018-06-20' +- '2018-06-21' +- '2018-06-22' +- '2018-06-23' +- '2018-06-24' +- '2018-06-25' +- '2018-06-26' +- '2018-06-27' +- '2018-06-28' +- '2018-06-29' +- '2018-06-30' +- '2018-07-01' +- '2018-07-02' +- '2018-07-03' +- '2018-07-04' +- '2018-07-05' +- '2018-07-06' +- '2018-07-07' +- '2018-07-08' +- '2018-07-09' +- '2018-07-10' +- '2018-07-11' +- '2018-07-12' +- '2018-07-13' +- '2018-07-14' +- '2018-07-15' +- '2018-07-16' +- '2018-07-17' +- '2018-07-18' +- '2018-07-19' +- '2018-07-20' +- '2018-07-21' +- '2018-07-22' +- '2018-07-23' +- '2018-07-24' +- '2018-07-25' +- '2018-07-26' +- '2018-07-27' +- '2018-07-28' +- '2018-07-29' +- '2018-07-30' +- '2018-07-31' +- '2018-08-01' +- '2018-08-02' +- '2018-08-03' +- '2018-08-04' +- '2018-08-05' +- '2018-08-06' +- '2018-08-07' +- '2018-08-08' +- '2018-08-09' +- '2018-08-10' +- '2018-08-11' +- '2018-08-12' +- '2018-08-13' +- '2018-08-14' +- '2018-08-15' +- '2018-08-16' +- '2018-08-17' +- '2018-08-18' +- '2018-08-19' +- '2018-08-20' +- '2018-08-21' +- '2018-08-22' +- '2018-08-23' +- '2018-08-24' +- '2018-08-25' +- '2018-08-26' +- '2018-08-27' +- '2018-08-28' +- '2018-08-29' +- '2018-08-30' +- '2018-08-31' +- '2018-09-01' +- '2018-09-02' +- '2018-09-03' +- '2018-09-04' +- '2018-09-05' +- '2018-09-06' +- '2018-09-07' +- '2018-09-08' +- '2018-09-09' +- '2018-09-10' +- '2018-09-11' +- '2018-09-12' +- '2018-09-13' +- '2018-09-14' +- '2018-09-15' +- '2018-09-16' +- '2018-09-17' +- '2018-09-18' +- '2018-09-19' +- '2018-09-20' +- '2018-09-21' +- '2018-09-22' +- '2018-09-23' +- '2018-09-24' +- '2018-09-25' +- '2018-09-26' +- '2018-09-27' +- '2018-09-28' +- '2018-09-29' +- '2018-09-30' +- '2018-10-01' +- '2018-10-02' +- '2018-10-03' +- '2018-10-04' +- '2018-10-05' +- '2018-10-06' +- '2018-10-07' +- '2018-10-08' +- '2018-10-09' +- '2018-10-10' +- '2018-10-11' +- '2018-10-12' +- '2018-10-13' +- '2018-10-14' +- '2018-10-15' +- '2018-10-16' +- '2018-10-17' +- '2018-10-18' +- '2018-10-19' +- '2018-10-20' +- '2018-10-21' +- '2018-10-22' +- '2018-10-23' +- '2018-10-24' +- '2018-10-25' +- '2018-10-26' +- '2018-10-27' +- '2018-10-28' +- '2018-10-29' +- '2018-10-30' +- '2018-10-31' +- '2018-11-01' +- '2018-11-02' +- '2018-11-03' +- '2018-11-04' +- '2018-11-05' +- '2018-11-06' +- '2018-11-07' +- '2018-11-08' +- '2018-11-09' +- '2018-11-10' +- '2018-11-11' +- '2018-11-12' +- '2018-11-13' +- '2018-11-14' +- '2018-11-15' +- '2018-11-16' +- '2018-11-17' +- '2018-11-18' +- '2018-11-19' +- '2018-11-20' +- '2018-11-21' +- '2018-11-22' +- '2018-11-23' +- '2018-11-24' +- '2018-11-25' +- '2018-11-26' +- '2018-11-27' +- '2018-11-28' +- '2018-11-29' +- '2018-11-30' +- '2018-12-01' +- '2018-12-02' +- '2018-12-03' +- '2018-12-04' +- '2018-12-05' +- '2018-12-06' +- '2018-12-07' +- '2018-12-08' +- '2018-12-09' +- '2018-12-10' +- '2018-12-11' +- '2018-12-12' +- '2018-12-13' +- '2018-12-14' +- '2018-12-15' +- '2018-12-16' +- '2018-12-17' +- '2018-12-18' +- '2018-12-19' +- '2018-12-20' +- '2018-12-21' +- '2018-12-22' +- '2018-12-23' +- '2018-12-24' +- '2018-12-25' +- '2018-12-26' +- '2018-12-27' +- '2018-12-28' +- '2018-12-29' +- '2018-12-30' +- '2018-12-31' +- '2019-01-01' +- '2019-01-02' +- '2019-01-03' +- '2019-01-04' +- '2019-01-05' +- '2019-01-06' +- '2019-01-07' +- '2019-01-08' +- '2019-01-09' +- '2019-01-10' +- '2019-01-11' +- '2019-01-12' +- '2019-01-13' +- '2019-01-14' +- '2019-01-15' +- '2019-01-16' +- '2019-01-17' +- '2019-01-18' +- '2019-01-19' +- '2019-01-20' +- '2019-01-21' +- '2019-01-22' +- '2019-01-23' +- '2019-01-24' +- '2019-01-25' +- '2019-01-26' +- '2019-01-27' +- '2019-01-28' +- '2019-01-29' +- '2019-01-30' +- '2019-01-31' +- '2019-02-01' +- '2019-02-02' +- '2019-02-03' +- '2019-02-04' +- '2019-02-05' +- '2019-02-06' +- '2019-02-07' +- '2019-02-08' +- '2019-02-09' +- '2019-02-10' +- '2019-02-11' +- '2019-02-12' +- '2019-02-13' +- '2019-02-14' +- '2019-02-15' +- '2019-02-16' +- '2019-02-17' +- '2019-02-18' +- '2019-02-19' +- '2019-02-20' +- '2019-02-21' +- '2019-02-22' +- '2019-02-23' +- '2019-02-24' +- '2019-02-25' +- '2019-02-26' +- '2019-02-27' +- '2019-02-28' +- '2019-03-01' +- '2019-03-02' +- '2019-03-03' +- '2019-03-04' +- '2019-03-05' +- '2019-03-06' +- '2019-03-07' +- '2019-03-08' +- '2019-03-09' +- '2019-03-10' +- '2019-03-11' +- '2019-03-12' +- '2019-03-13' +- '2019-03-14' +- '2019-03-15' +- '2019-03-16' +- '2019-03-17' +- '2019-03-18' +- '2019-03-19' +- '2019-03-20' +- '2019-03-21' +- '2019-03-22' +- '2019-03-23' +- '2019-03-24' +- '2019-03-25' +- '2019-03-26' +- '2019-03-27' +- '2019-03-28' +- '2019-03-29' +- '2019-03-30' +- '2019-03-31' +- '2019-04-01' +- '2019-04-02' +- '2019-04-03' +- '2019-04-04' +- '2019-04-05' +- '2019-04-06' +- '2019-04-07' +- '2019-04-08' +- '2019-04-09' +- '2019-04-10' +- '2019-04-11' +- '2019-04-12' +- '2019-04-13' +- '2019-04-14' +- '2019-04-15' +- '2019-04-16' +- '2019-04-17' +- '2019-04-18' +- '2019-04-19' +- '2019-04-20' +- '2019-04-21' +- '2019-04-22' +- '2019-04-23' +- '2019-04-24' +- '2019-04-25' +- '2019-04-26' +- '2019-04-27' +- '2019-04-28' +- '2019-04-29' +- '2019-04-30' +- '2019-05-01' +- '2019-05-02' +- '2019-05-03' +- '2019-05-04' +- '2019-05-05' +- '2019-05-06' +- '2019-05-07' +- '2019-05-08' +- '2019-05-09' +- '2019-05-10' +- '2019-05-11' +- '2019-05-12' +- '2019-05-13' +- '2019-05-14' +- '2019-05-15' +- '2019-05-16' +- '2019-05-17' +- '2019-05-18' +- '2019-05-19' +- '2019-05-20' +- '2019-05-21' +- '2019-05-22' +- '2019-05-23' +- '2019-05-24' +- '2019-05-25' +- '2019-05-26' +- '2019-05-27' +- '2019-05-28' +- '2019-05-29' +- '2019-05-30' +- '2019-05-31' +- '2019-06-01' +- '2019-06-02' +- '2019-06-03' +- '2019-06-04' +- '2019-06-05' +- '2019-06-06' +- '2019-06-07' +- '2019-06-08' +- '2019-06-09' +- '2019-06-10' +- '2019-06-11' +- '2019-06-12' +- '2019-06-13' +- '2019-06-14' +- '2019-06-15' +- '2019-06-16' +- '2019-06-17' +- '2019-06-18' +- '2019-06-19' +- '2019-06-20' +- '2019-06-21' +- '2019-06-22' +- '2019-06-23' +- '2019-06-24' +- '2019-06-25' +- '2019-06-26' +- '2019-06-27' +- '2019-06-28' +- '2019-06-29' +- '2019-06-30' +- '2019-07-01' +- '2019-07-02' +- '2019-07-03' +- '2019-07-04' +- '2019-07-05' +- '2019-07-06' +- '2019-07-07' +- '2019-07-08' +- '2019-07-09' +- '2019-07-10' +- '2019-07-11' +- '2019-07-12' +- '2019-07-13' +- '2019-07-14' +- '2019-07-15' +- '2019-07-16' +- '2019-07-17' +- '2019-07-18' +- '2019-07-19' +- '2019-07-20' +- '2019-07-21' +- '2019-07-22' +- '2019-07-23' +- '2019-07-24' +- '2019-07-25' +- '2019-07-26' +- '2019-07-27' +- '2019-07-28' +- '2019-07-29' +- '2019-07-30' +- '2019-07-31' +- '2019-08-01' +- '2019-08-02' +- '2019-08-03' +- '2019-08-04' +- '2019-08-05' +- '2019-08-06' +- '2019-08-07' +- '2019-08-08' +- '2019-08-09' +- '2019-08-10' +- '2019-08-11' +- '2019-08-12' +- '2019-08-13' +- '2019-08-14' +- '2019-08-15' +- '2019-08-16' +- '2019-08-17' +- '2019-08-18' +- '2019-08-19' +- '2019-08-20' +- '2019-08-21' +- '2019-08-22' +- '2019-08-23' +- '2019-08-24' +- '2019-08-25' +- '2019-08-26' +- '2019-08-27' +- '2019-08-28' +- '2019-08-29' +- '2019-08-30' +- '2019-08-31' +- '2019-09-01' +- '2019-09-02' +- '2019-09-03' +- '2019-09-04' +- '2019-09-05' +- '2019-09-06' +- '2019-09-07' +- '2019-09-08' +- '2019-09-09' +- '2019-09-10' +- '2019-09-11' +- '2019-09-12' +- '2019-09-13' +- '2019-09-14' +- '2019-09-15' +- '2019-09-16' +- '2019-09-17' +- '2019-09-18' +- '2019-09-19' +- '2019-09-20' +- '2019-09-21' +- '2019-09-22' +- '2019-09-23' +- '2019-09-24' +- '2019-09-25' +- '2019-09-26' +- '2019-09-27' +- '2019-09-28' +- '2019-09-29' +- '2019-09-30' +- '2019-10-01' +- '2019-10-02' +- '2019-10-03' +- '2019-10-04' +- '2019-10-05' +- '2019-10-06' +- '2019-10-07' +- '2019-10-08' +- '2019-10-09' +- '2019-10-10' +- '2019-10-11' +- '2019-10-12' +- '2019-10-13' +- '2019-10-14' +- '2019-10-15' +- '2019-10-16' +- '2019-10-17' +- '2019-10-18' +- '2019-10-19' +- '2019-10-20' +- '2019-10-21' +- '2019-10-22' +- '2019-10-23' +- '2019-10-24' +- '2019-10-25' +- '2019-10-26' +- '2019-10-27' +- '2019-10-28' +- '2019-10-29' +- '2019-10-30' +- '2019-10-31' +- '2019-11-01' +- '2019-11-02' +- '2019-11-03' +- '2019-11-04' +- '2019-11-05' +- '2019-11-06' +- '2019-11-07' +- '2019-11-08' +- '2019-11-09' +- '2019-11-10' +- '2019-11-11' +- '2019-11-12' +- '2019-11-13' +- '2019-11-14' +- '2019-11-15' +- '2019-11-16' +- '2019-11-17' +- '2019-11-18' +- '2019-11-19' +- '2019-11-20' +- '2019-11-21' +- '2019-11-22' +- '2019-11-23' +- '2019-11-24' +- '2019-11-25' +- '2019-11-26' +- '2019-11-27' +- '2019-11-28' +- '2019-11-29' +- '2019-11-30' +- '2019-12-01' +- '2019-12-02' +- '2019-12-03' +- '2019-12-04' +- '2019-12-05' +- '2019-12-06' +- '2019-12-07' +- '2019-12-08' +- '2019-12-09' +- '2019-12-10' +- '2019-12-11' +- '2019-12-12' +- '2019-12-13' +- '2019-12-14' +- '2019-12-15' +- '2019-12-16' +- '2019-12-17' +- '2019-12-18' +- '2019-12-19' +- '2019-12-20' +- '2019-12-21' +- '2019-12-22' +- '2019-12-23' +- '2019-12-24' +- '2019-12-25' +- '2019-12-26' +- '2019-12-27' +- '2019-12-28' +- '2019-12-29' +- '2019-12-30' +- '2019-12-31' +- '2020-01-01' +- '2020-01-02' +- '2020-01-03' +- '2020-01-04' +- '2020-01-05' +- '2020-01-06' +- '2020-01-07' +- '2020-01-08' +- '2020-01-09' +- '2020-01-10' +- '2020-01-11' +- '2020-01-12' +- '2020-01-13' +- '2020-01-14' +- '2020-01-15' +- '2020-01-16' +- '2020-01-17' +- '2020-01-18' +- '2020-01-19' +- '2020-01-20' +- '2020-01-21' +- '2020-01-22' +- '2020-01-23' +- '2020-01-24' +- '2020-01-25' +- '2020-01-26' +- '2020-01-27' +- '2020-01-28' +- '2020-01-29' +- '2020-01-30' +- '2020-01-31' +- '2020-02-01' +- '2020-02-02' +- '2020-02-03' +- '2020-02-04' +- '2020-02-05' +- '2020-02-06' +- '2020-02-07' +- '2020-02-08' +- '2020-02-09' +- '2020-02-10' +- '2020-02-11' +- '2020-02-12' +- '2020-02-13' +- '2020-02-14' +- '2020-02-15' +- '2020-02-16' +- '2020-02-17' +- '2020-02-18' +- '2020-02-19' +- '2020-02-20' +- '2020-02-21' +- '2020-02-22' +- '2020-02-23' +- '2020-02-24' +- '2020-02-25' +- '2020-02-26' +- '2020-02-27' +- '2020-02-28' +- '2020-02-29' +- '2020-03-01' +- '2020-03-02' +- '2020-03-03' +- '2020-03-04' +- '2020-03-05' +- '2020-03-06' +- '2020-03-07' +- '2020-03-08' +- '2020-03-09' +- '2020-03-10' +- '2020-03-11' +- '2020-03-12' +- '2020-03-13' +- '2020-03-14' +- '2020-03-15' +- '2020-03-16' +- '2020-03-17' +- '2020-03-18' +- '2020-03-19' +- '2020-03-20' +- '2020-03-21' +- '2020-03-22' +- '2020-03-23' +- '2020-03-24' +- '2020-03-25' +- '2020-03-26' +- '2020-03-27' +- '2020-03-28' +- '2020-03-29' +- '2020-03-30' +- '2020-03-31' +- '2020-04-01' +- '2020-04-02' +- '2020-04-03' +- '2020-04-04' +- '2020-04-05' +- '2020-04-06' +- '2020-04-07' +- '2020-04-08' +- '2020-04-09' +- '2020-04-10' +- '2020-04-11' +- '2020-04-12' +- '2020-04-13' +- '2020-04-14' +- '2020-04-15' +- '2020-04-16' +- '2020-04-17' +- '2020-04-18' +- '2020-04-19' +- '2020-04-20' +- '2020-04-21' +- '2020-04-22' +- '2020-04-23' +- '2020-04-24' +- '2020-04-25' +- '2020-04-26' +- '2020-04-27' +- '2020-04-28' +- '2020-04-29' +- '2020-04-30' +- '2020-05-01' +- '2020-05-02' +- '2020-05-03' +- '2020-05-04' +- '2020-05-05' +- '2020-05-06' +- '2020-05-07' +- '2020-05-08' +- '2020-05-09' +- '2020-05-10' +- '2020-05-11' +- '2020-05-12' +- '2020-05-13' +- '2020-05-14' +- '2020-05-15' +- '2020-05-16' +- '2020-05-17' +- '2020-05-18' +- '2020-05-19' +- '2020-05-20' +- '2020-05-21' +- '2020-05-22' +- '2020-05-23' +- '2020-05-24' +- '2020-05-25' +- '2020-05-26' +- '2020-05-27' +- '2020-05-28' +- '2020-05-29' +- '2020-05-30' +- '2020-05-31' +- '2020-06-01' +- '2020-06-02' +- '2020-06-03' +- '2020-06-04' +- '2020-06-05' +- '2020-06-06' +- '2020-06-07' +- '2020-06-08' +- '2020-06-09' +- '2020-06-10' +- '2020-06-11' +- '2020-06-12' +- '2020-06-13' +- '2020-06-14' +- '2020-06-15' +- '2020-06-16' +- '2020-06-17' +- '2020-06-18' +- '2020-06-19' +- '2020-06-20' +- '2020-06-21' +- '2020-06-22' +- '2020-06-23' +- '2020-06-24' +- '2020-06-25' +- '2020-06-26' +- '2020-06-27' +- '2020-06-28' +- '2020-06-29' +- '2020-06-30' +- '2020-07-01' +- '2020-07-02' +- '2020-07-03' +- '2020-07-04' +- '2020-07-05' +- '2020-07-06' +- '2020-07-07' +- '2020-07-08' +- '2020-07-09' +- '2020-07-10' +- '2020-07-11' +- '2020-07-12' +- '2020-07-13' +- '2020-07-14' +- '2020-07-15' +- '2020-07-16' +- '2020-07-17' +- '2020-07-18' +- '2020-07-19' +- '2020-07-20' +- '2020-07-21' +- '2020-07-22' +- '2020-07-23' +- '2020-07-24' +- '2020-07-25' +- '2020-07-26' +- '2020-07-27' +- '2020-07-28' +- '2020-07-29' +- '2020-07-30' +- '2020-07-31' +- '2020-08-01' +- '2020-08-02' +- '2020-08-03' +- '2020-08-04' +- '2020-08-05' +- '2020-08-06' +- '2020-08-07' +- '2020-08-08' +- '2020-08-09' +- '2020-08-10' +- '2020-08-11' +- '2020-08-12' +- '2020-08-13' +- '2020-08-14' +- '2020-08-15' +- '2020-08-16' +- '2020-08-17' +- '2020-08-18' +- '2020-08-19' +- '2020-08-20' +- '2020-08-21' +- '2020-08-22' +- '2020-08-23' +- '2020-08-24' +- '2020-08-25' +- '2020-08-26' +- '2020-08-27' +- '2020-08-28' +- '2020-08-29' +- '2020-08-30' +- '2020-08-31' +- '2020-09-01' +- '2020-09-02' +- '2020-09-03' +- '2020-09-04' +- '2020-09-05' +- '2020-09-06' +- '2020-09-07' +- '2020-09-08' +- '2020-09-09' +- '2020-09-10' +- '2020-09-11' +- '2020-09-12' +- '2020-09-13' +- '2020-09-14' +- '2020-09-15' +- '2020-09-16' +- '2020-09-17' +- '2020-09-18' +- '2020-09-19' +- '2020-09-20' +- '2020-09-21' +- '2020-09-22' +- '2020-09-23' +- '2020-09-24' +- '2020-09-25' +- '2020-09-26' +- '2020-09-27' +- '2020-09-28' +- '2020-09-29' +- '2020-09-30' +- '2020-10-01' +- '2020-10-02' +- '2020-10-03' +- '2020-10-04' +- '2020-10-05' +- '2020-10-06' +- '2020-10-07' +- '2020-10-08' +- '2020-10-09' +- '2020-10-10' +- '2020-10-11' +- '2020-10-12' +- '2020-10-13' +- '2020-10-14' +- '2020-10-15' +- '2020-10-16' +- '2020-10-17' +- '2020-10-18' +- '2020-10-19' +- '2020-10-20' +- '2020-10-21' +- '2020-10-22' +- '2020-10-23' +- '2020-10-24' +- '2020-10-25' +- '2020-10-26' +- '2020-10-27' +- '2020-10-28' +- '2020-10-29' +- '2020-10-30' +- '2020-10-31' +- '2020-11-01' +- '2020-11-02' +- '2020-11-03' +- '2020-11-04' +- '2020-11-05' +- '2020-11-06' +- '2020-11-07' +- '2020-11-08' +- '2020-11-09' +- '2020-11-10' +- '2020-11-11' +- '2020-11-12' +- '2020-11-13' +- '2020-11-14' +- '2020-11-15' +- '2020-11-16' +- '2020-11-17' +- '2020-11-18' +- '2020-11-19' +- '2020-11-20' +- '2020-11-21' +- '2020-11-22' +- '2020-11-23' +- '2020-11-24' +- '2020-11-25' +- '2020-11-26' +- '2020-11-27' +- '2020-11-28' +- '2020-11-29' +- '2020-11-30' +- '2020-12-01' +- '2020-12-02' +- '2020-12-03' +- '2020-12-04' +- '2020-12-05' +- '2020-12-06' +- '2020-12-07' +- '2020-12-08' +- '2020-12-09' +- '2020-12-10' +- '2020-12-11' +- '2020-12-12' +- '2020-12-13' +- '2020-12-14' +- '2020-12-15' +- '2020-12-16' +- '2020-12-17' +- '2020-12-18' +- '2020-12-19' +- '2020-12-20' +- '2020-12-21' +- '2020-12-22' +- '2020-12-23' +- '2020-12-24' +- '2020-12-25' +- '2020-12-26' +- '2020-12-27' +- '2020-12-28' +- '2020-12-29' +- '2020-12-30' +- '2020-12-31' +- '2021-01-01' +- '2021-01-02' +- '2021-01-03' +- '2021-01-04' +- '2021-01-05' +- '2021-01-06' +- '2021-01-07' +- '2021-01-08' +- '2021-01-09' +- '2021-01-10' +- '2021-01-11' +- '2021-01-12' +- '2021-01-13' +- '2021-01-14' +- '2021-01-15' +- '2021-01-16' +- '2021-01-17' +- '2021-01-18' +- '2021-01-19' +- '2021-01-20' +- '2021-01-21' +- '2021-01-22' +- '2021-01-23' +- '2021-01-24' +- '2021-01-25' +- '2021-01-26' +- '2021-01-27' +- '2021-01-28' +- '2021-01-29' +- '2021-01-30' +- '2021-01-31' +- '2021-02-01' +- '2021-02-02' +- '2021-02-03' +- '2021-02-04' +- '2021-02-05' +- '2021-02-06' +- '2021-02-07' +- '2021-02-08' +- '2021-02-09' +- '2021-02-10' +- '2021-02-11' +- '2021-02-12' +- '2021-02-13' +- '2021-02-14' +- '2021-02-15' +- '2021-02-16' +- '2021-02-17' +- '2021-02-18' +- '2021-02-19' +- '2021-02-20' +- '2021-02-21' +- '2021-02-22' +- '2021-02-23' +- '2021-02-24' +- '2021-02-25' +- '2021-02-26' +- '2021-02-27' +- '2021-02-28' +- '2021-03-01' +- '2021-03-02' +- '2021-03-03' +- '2021-03-04' +- '2021-03-05' +- '2021-03-06' +- '2021-03-07' +- '2021-03-08' +- '2021-03-09' +- '2021-03-10' +- '2021-03-11' +- '2021-03-12' +- '2021-03-13' +- '2021-03-14' +- '2021-03-15' +- '2021-03-16' +- '2021-03-17' +- '2021-03-18' +- '2021-03-19' +- '2021-03-20' +- '2021-03-21' +- '2021-03-22' +- '2021-03-23' +- '2021-03-24' +- '2021-03-25' +- '2021-03-26' +- '2021-03-27' +- '2021-03-28' +- '2021-03-29' +- '2021-03-30' +- '2021-03-31' +- '2021-04-01' +- '2021-04-02' +- '2021-04-03' +- '2021-04-04' +- '2021-04-05' +- '2021-04-06' +- '2021-04-07' +- '2021-04-08' +- '2021-04-09' +- '2021-04-10' +- '2021-04-11' +- '2021-04-12' +- '2021-04-13' +- '2021-04-14' +- '2021-04-15' +- '2021-04-16' +- '2021-04-17' +- '2021-04-18' +- '2021-04-19' +- '2021-04-20' +- '2021-04-21' +- '2021-04-22' +- '2021-04-23' +- '2021-04-24' +- '2021-04-25' +- '2021-04-26' +- '2021-04-27' +- '2021-04-28' +- '2021-04-29' +- '2021-04-30' +- '2021-05-01' +- '2021-05-02' +- '2021-05-03' +- '2021-05-04' +- '2021-05-05' +- '2021-05-06' +- '2021-05-07' +- '2021-05-08' +- '2021-05-09' +- '2021-05-10' +- '2021-05-11' +- '2021-05-12' +- '2021-05-13' +- '2021-05-14' +- '2021-05-15' +- '2021-05-16' +- '2021-05-17' +- '2021-05-18' +- '2021-05-19' +- '2021-05-20' +- '2021-05-21' +- '2021-05-22' +- '2021-05-23' +- '2021-05-24' +- '2021-05-25' +- '2021-05-26' +- '2021-05-27' +- '2021-05-28' +- '2021-05-29' +- '2021-05-30' +- '2021-05-31' +- '2021-06-01' +- '2021-06-02' +- '2021-06-03' +- '2021-06-04' +- '2021-06-05' +- '2021-06-06' +- '2021-06-07' +- '2021-06-08' +- '2021-06-09' +- '2021-06-10' +- '2021-06-11' +- '2021-06-12' +- '2021-06-13' +- '2021-06-14' +- '2021-06-15' +- '2021-06-16' +- '2021-06-17' +- '2021-06-18' +- '2021-06-19' +- '2021-06-20' +- '2021-06-21' +- '2021-06-22' +- '2021-06-23' +- '2021-06-24' +- '2021-06-25' +- '2021-06-26' +- '2021-06-27' +- '2021-06-28' +- '2021-06-29' +- '2021-06-30' +- '2021-07-01' +- '2021-07-02' +- '2021-07-03' +- '2021-07-04' +- '2021-07-05' +- '2021-07-06' +- '2021-07-07' +- '2021-07-08' +- '2021-07-09' +- '2021-07-10' +- '2021-07-11' +- '2021-07-12' +- '2021-07-13' +- '2021-07-14' +- '2021-07-15' +- '2021-07-16' +- '2021-07-17' +- '2021-07-18' +- '2021-07-19' +- '2021-07-20' +- '2021-07-21' +- '2021-07-22' +- '2021-07-23' +- '2021-07-24' +- '2021-07-25' +- '2021-07-26' +- '2021-07-27' +- '2021-07-28' +- '2021-07-29' +- '2021-07-30' +- '2021-07-31' +- '2021-08-01' +- '2021-08-02' +- '2021-08-03' +- '2021-08-04' +- '2021-08-05' +- '2021-08-06' +- '2021-08-07' +- '2021-08-08' +- '2021-08-09' +- '2021-08-10' +- '2021-08-11' +- '2021-08-12' +- '2021-08-13' +- '2021-08-14' +- '2021-08-15' +- '2021-08-16' +- '2021-08-17' +- '2021-08-18' +- '2021-08-19' +- '2021-08-20' +- '2021-08-21' +- '2021-08-22' +- '2021-08-23' +- '2021-08-24' +- '2021-08-25' +- '2021-08-26' +- '2021-08-27' +- '2021-08-28' +- '2021-08-29' +- '2021-08-30' +- '2021-08-31' +- '2021-09-01' +- '2021-09-02' +- '2021-09-03' +- '2021-09-04' +- '2021-09-05' +- '2021-09-06' +- '2021-09-07' +- '2021-09-08' +- '2021-09-09' +- '2021-09-10' +- '2021-09-11' +- '2021-09-12' +- '2021-09-13' +- '2021-09-14' +- '2021-09-15' +- '2021-09-16' +- '2021-09-17' +- '2021-09-18' +- '2021-09-19' +- '2021-09-20' +- '2021-09-21' +- '2021-09-22' +- '2021-09-23' +- '2021-09-24' +- '2021-09-25' +- '2021-09-26' +- '2021-09-27' +- '2021-09-28' +- '2021-09-29' +- '2021-09-30' +- '2021-10-01' +- '2021-10-02' +- '2021-10-03' +- '2021-10-04' +- '2021-10-05' +- '2021-10-06' +- '2021-10-07' +- '2021-10-08' +- '2021-10-09' +- '2021-10-10' +- '2021-10-11' +- '2021-10-12' +- '2021-10-13' +- '2021-10-14' +- '2021-10-15' +- '2021-10-16' +- '2021-10-17' +- '2021-10-18' +- '2021-10-19' +- '2021-10-20' +- '2021-10-21' +- '2021-10-22' +- '2021-10-23' +- '2021-10-24' +- '2021-10-25' +- '2021-10-26' +- '2021-10-27' +- '2021-10-28' +- '2021-10-29' +- '2021-10-30' +- '2021-10-31' +- '2021-11-01' +- '2021-11-02' +- '2021-11-03' +- '2021-11-04' +- '2021-11-05' +- '2021-11-06' +- '2021-11-07' +- '2021-11-08' +- '2021-11-09' +- '2021-11-10' +- '2021-11-11' +- '2021-11-12' +- '2021-11-13' +- '2021-11-14' +- '2021-11-15' +- '2021-11-16' +- '2021-11-17' +- '2021-11-18' +- '2021-11-19' +- '2021-11-20' +- '2021-11-21' +- '2021-11-22' +- '2021-11-23' +- '2021-11-24' +- '2021-11-25' +- '2021-11-26' +- '2021-11-27' +- '2021-11-28' +- '2021-11-29' +- '2021-11-30' +- '2021-12-01' +- '2021-12-02' +- '2021-12-03' +- '2021-12-04' +- '2021-12-05' +- '2021-12-06' +- '2021-12-07' +- '2021-12-08' +- '2021-12-09' +- '2021-12-10' +- '2021-12-11' +- '2021-12-12' +- '2021-12-13' +- '2021-12-14' +- '2021-12-15' +- '2021-12-16' +- '2021-12-17' +- '2021-12-18' +- '2021-12-19' +- '2021-12-20' +- '2021-12-21' +- '2021-12-22' +- '2021-12-23' +- '2021-12-24' +- '2021-12-25' +- '2021-12-26' +- '2021-12-27' +- '2021-12-28' +- '2021-12-29' +- '2021-12-30' +- '2021-12-31' +- '2022-01-01' +- '2022-01-02' +- '2022-01-03' +- '2022-01-04' +- '2022-01-05' +- '2022-01-06' +- '2022-01-07' +- '2022-01-08' +- '2022-01-09' +- '2022-01-10' +- '2022-01-11' +- '2022-01-12' +- '2022-01-13' +- '2022-01-14' +- '2022-01-15' +- '2022-01-16' +- '2022-01-17' +- '2022-01-18' +- '2022-01-19' +- '2022-01-20' +- '2022-01-21' +- '2022-01-22' +- '2022-01-23' +- '2022-01-24' +- '2022-01-25' +- '2022-01-26' +- '2022-01-27' +- '2022-01-28' +- '2022-01-29' +- '2022-01-30' +- '2022-01-31' +- '2022-02-01' +- '2022-02-02' +- '2022-02-03' +- '2022-02-04' +- '2022-02-05' +- '2022-02-06' +- '2022-02-07' +- '2022-02-08' +- '2022-02-09' +- '2022-02-10' +- '2022-02-11' +- '2022-02-12' +- '2022-02-13' +- '2022-02-14' +- '2022-02-15' +- '2022-02-16' +- '2022-02-17' +- '2022-02-18' +- '2022-02-19' +- '2022-02-20' +- '2022-02-21' +- '2022-02-22' +- '2022-02-23' +- '2022-02-24' +- '2022-02-25' +- '2022-02-26' +- '2022-02-27' +- '2022-02-28' +- '2022-03-01' +- '2022-03-02' +- '2022-03-03' +- '2022-03-04' +- '2022-03-05' +- '2022-03-06' +- '2022-03-07' +- '2022-03-08' +- '2022-03-09' +- '2022-03-10' +- '2022-03-11' +- '2022-03-12' +- '2022-03-13' +- '2022-03-14' +- '2022-03-15' +- '2022-03-16' +- '2022-03-17' +- '2022-03-18' +- '2022-03-19' +- '2022-03-20' +- '2022-03-21' +- '2022-03-22' +- '2022-03-23' +- '2022-03-24' +- '2022-03-25' +- '2022-03-26' +- '2022-03-27' +- '2022-03-28' +- '2022-03-29' +- '2022-03-30' +- '2022-03-31' +- '2022-04-01' +- '2022-04-02' +- '2022-04-03' +- '2022-04-04' +- '2022-04-05' +- '2022-04-06' +- '2022-04-07' +- '2022-04-08' +- '2022-04-09' +- '2022-04-10' +- '2022-04-11' +- '2022-04-12' +- '2022-04-13' +- '2022-04-14' +- '2022-04-15' +- '2022-04-16' +- '2022-04-17' +- '2022-04-18' +- '2022-04-19' +- '2022-04-20' +- '2022-04-21' +- '2022-04-22' +- '2022-04-23' +- '2022-04-24' +- '2022-04-25' +- '2022-04-26' +- '2022-04-27' +- '2022-04-28' +- '2022-04-29' +- '2022-04-30' +- '2022-05-01' +- '2022-05-02' +- '2022-05-03' +- '2022-05-04' +- '2022-05-05' +- '2022-05-06' +- '2022-05-07' +- '2022-05-08' +- '2022-05-09' +- '2022-05-10' +- '2022-05-11' +- '2022-05-12' +- '2022-05-13' +- '2022-05-14' +- '2022-05-15' +- '2022-05-16' +- '2022-05-17' +- '2022-05-18' +- '2022-05-19' +- '2022-05-20' +- '2022-05-21' +- '2022-05-22' +- '2022-05-23' +- '2022-05-24' +- '2022-05-25' +- '2022-05-26' +- '2022-05-27' +- '2022-05-28' +- '2022-05-29' +- '2022-05-30' +- '2022-05-31' +- '2022-06-01' +- '2022-06-02' +- '2022-06-03' +- '2022-06-04' +- '2022-06-05' +- '2022-06-06' +- '2022-06-07' +- '2022-06-08' +- '2022-06-09' +- '2022-06-10' +- '2022-06-11' +- '2022-06-12' +- '2022-06-13' +- '2022-06-14' +- '2022-06-15' +- '2022-06-16' +- '2022-06-17' +- '2022-06-18' +- '2022-06-19' +- '2022-06-20' +- '2022-06-21' +- '2022-06-22' +- '2022-06-23' +- '2022-06-24' +- '2022-06-25' +- '2022-06-26' +- '2022-06-27' +- '2022-06-28' +- '2022-06-29' +- '2022-06-30' +- '2022-07-01' +- '2022-07-02' +- '2022-07-03' +- '2022-07-04' +- '2022-07-05' +- '2022-07-06' +- '2022-07-07' +- '2022-07-08' +- '2022-07-09' +- '2022-07-10' +- '2022-07-11' +- '2022-07-12' +- '2022-07-13' +- '2022-07-14' +- '2022-07-15' +- '2022-07-16' +- '2022-07-17' +- '2022-07-18' +- '2022-07-19' +- '2022-07-20' +- '2022-07-21' +- '2022-07-22' +- '2022-07-23' +- '2022-07-24' +- '2022-07-25' +- '2022-07-26' +- '2022-07-27' +- '2022-07-28' +- '2022-07-29' +- '2022-07-30' +- '2022-07-31' +- '2022-08-01' +- '2022-08-02' +- '2022-08-03' +- '2022-08-04' +- '2022-08-05' +- '2022-08-06' +- '2022-08-07' +- '2022-08-08' +- '2022-08-09' +- '2022-08-10' +- '2022-08-11' +- '2022-08-12' +- '2022-08-13' +- '2022-08-14' +- '2022-08-15' +- '2022-08-16' +- '2022-08-17' +- '2022-08-18' +- '2022-08-19' +- '2022-08-20' +- '2022-08-21' +- '2022-08-22' +- '2022-08-23' +- '2022-08-24' +- '2022-08-25' +- '2022-08-26' +- '2022-08-27' +- '2022-08-28' +- '2022-08-29' +- '2022-08-30' +- '2022-08-31' +- '2022-09-01' +- '2022-09-02' +- '2022-09-03' +- '2022-09-04' +- '2022-09-05' +- '2022-09-06' +- '2022-09-07' +- '2022-09-08' +- '2022-09-09' +- '2022-09-10' +- '2022-09-11' +- '2022-09-12' +- '2022-09-13' +- '2022-09-14' +- '2022-09-15' +- '2022-09-16' +- '2022-09-17' +- '2022-09-18' +- '2022-09-19' +- '2022-09-20' +- '2022-09-21' +- '2022-09-22' +- '2022-09-23' +- '2022-09-24' +- '2022-09-25' +- '2022-09-26' +- '2022-09-27' +- '2022-09-28' +- '2022-09-29' +- '2022-09-30' +- '2022-10-01' +- '2022-10-02' +- '2022-10-03' +- '2022-10-04' +- '2022-10-05' +- '2022-10-06' +- '2022-10-07' +- '2022-10-08' +- '2022-10-09' +- '2022-10-10' +- '2022-10-11' +- '2022-10-12' +- '2022-10-13' +- '2022-10-14' +- '2022-10-15' +- '2022-10-16' +- '2022-10-17' +- '2022-10-18' +- '2022-10-19' +- '2022-10-20' +- '2022-10-21' +- '2022-10-22' +- '2022-10-23' +- '2022-10-24' +- '2022-10-25' +- '2022-10-26' +- '2022-10-27' +- '2022-10-28' +- '2022-10-29' +- '2022-10-30' +- '2022-10-31' +- '2022-11-01' +- '2022-11-02' +- '2022-11-03' +- '2022-11-04' +- '2022-11-05' +- '2022-11-06' +- '2022-11-07' +- '2022-11-08' +- '2022-11-09' +- '2022-11-10' +- '2022-11-11' +- '2022-11-12' +- '2022-11-13' +- '2022-11-14' +- '2022-11-15' +- '2022-11-16' +- '2022-11-17' +- '2022-11-18' +- '2022-11-19' +- '2022-11-20' +- '2022-11-21' +- '2022-11-22' +- '2022-11-23' +- '2022-11-24' +- '2022-11-25' +- '2022-11-26' +- '2022-11-27' +- '2022-11-28' +- '2022-11-29' +- '2022-11-30' +- '2022-12-01' +- '2022-12-02' +- '2022-12-03' +- '2022-12-04' +- '2022-12-05' +- '2022-12-06' +- '2022-12-07' +- '2022-12-08' +- '2022-12-09' +- '2022-12-10' +- '2022-12-11' +- '2022-12-12' +- '2022-12-13' +- '2022-12-14' +- '2022-12-15' +- '2022-12-16' +- '2022-12-17' +- '2022-12-18' +- '2022-12-19' +- '2022-12-20' +- '2022-12-21' +- '2022-12-22' +- '2022-12-23' +- '2022-12-24' +- '2022-12-25' +- '2022-12-26' +- '2022-12-27' +- '2022-12-28' +- '2022-12-29' +- '2022-12-30' +- '2022-12-31' +- '2023-01-01' +- '2023-01-02' +- '2023-01-03' +- '2023-01-04' +- '2023-01-05' +- '2023-01-06' +- '2023-01-07' +- '2023-01-08' +- '2023-01-09' +- '2023-01-10' +- '2023-01-11' +- '2023-01-12' +- '2023-01-13' +- '2023-01-14' +- '2023-01-15' +- '2023-01-16' +- '2023-01-17' +- '2023-01-18' +- '2023-01-19' +- '2023-01-20' +- '2023-01-21' +- '2023-01-22' +- '2023-01-23' +- '2023-01-24' +- '2023-01-25' +- '2023-01-26' +- '2023-01-27' +- '2023-01-28' +- '2023-01-29' +- '2023-01-30' +- '2023-01-31' +- '2023-02-01' +- '2023-02-02' +- '2023-02-03' +- '2023-02-04' +- '2023-02-05' +- '2023-02-06' +- '2023-02-07' +- '2023-02-08' +- '2023-02-09' +- '2023-02-10' +- '2023-02-11' +- '2023-02-12' +- '2023-02-13' +- '2023-02-14' +- '2023-02-15' +- '2023-02-16' +- '2023-02-17' +- '2023-02-18' +- '2023-02-19' +- '2023-02-20' +- '2023-02-21' +- '2023-02-22' +- '2023-02-23' +- '2023-02-24' +- '2023-02-25' +- '2023-02-26' +- '2023-02-27' +- '2023-02-28' +- '2023-03-01' +- '2023-03-02' +- '2023-03-03' +- '2023-03-04' +- '2023-03-05' +- '2023-03-06' +- '2023-03-07' +- '2023-03-08' +- '2023-03-09' +- '2023-03-10' +- '2023-03-11' +- '2023-03-12' +- '2023-03-13' +- '2023-03-14' +- '2023-03-15' +- '2023-03-16' +- '2023-03-17' +- '2023-03-18' +- '2023-03-19' +- '2023-03-20' +- '2023-03-21' +- '2023-03-22' +- '2023-03-23' +- '2023-03-24' +- '2023-03-25' +- '2023-03-26' +- '2023-03-27' +- '2023-03-28' +- '2023-03-29' +- '2023-03-30' +- '2023-03-31' +- '2023-04-01' +- '2023-04-02' +- '2023-04-03' +- '2023-04-04' +- '2023-04-05' +- '2023-04-06' +- '2023-04-07' +- '2023-04-08' +- '2023-04-09' +- '2023-04-10' +- '2023-04-11' +- '2023-04-12' +- '2023-04-13' +- '2023-04-14' +- '2023-04-15' +- '2023-04-16' +- '2023-04-17' +- '2023-04-18' +- '2023-04-19' +- '2023-04-20' +- '2023-04-21' +- '2023-04-22' +- '2023-04-23' +- '2023-04-24' +- '2023-04-25' +- '2023-04-26' +- '2023-04-27' +- '2023-04-28' +- '2023-04-29' +- '2023-04-30' +- '2023-05-01' +- '2023-05-02' +- '2023-05-03' +- '2023-05-04' +- '2023-05-05' +- '2023-05-06' +- '2023-05-07' +- '2023-05-08' +- '2023-05-09' +- '2023-05-10' +- '2023-05-11' +- '2023-05-12' +- '2023-05-13' +- '2023-05-14' +- '2023-05-15' +- '2023-05-16' +- '2023-05-17' +- '2023-05-18' +- '2023-05-19' +- '2023-05-20' +- '2023-05-21' +- '2023-05-22' +- '2023-05-23' +- '2023-05-24' +- '2023-05-25' +- '2023-05-26' +- '2023-05-27' +- '2023-05-28' +- '2023-05-29' +- '2023-05-30' +- '2023-05-31' +- '2023-06-01' +- '2023-06-02' +- '2023-06-03' +- '2023-06-04' +- '2023-06-05' +- '2023-06-06' +- '2023-06-07' +- '2023-06-08' +- '2023-06-09' +- '2023-06-10' +- '2023-06-11' +- '2023-06-12' +- '2023-06-13' +- '2023-06-14' +- '2023-06-15' +- '2023-06-16' +- '2023-06-17' +- '2023-06-18' +- '2023-06-19' +- '2023-06-20' +- '2023-06-21' +- '2023-06-22' +- '2023-06-23' +- '2023-06-24' +- '2023-06-25' +- '2023-06-26' +- '2023-06-27' +- '2023-06-28' +- '2023-06-29' +- '2023-06-30' +- '2023-07-01' +- '2023-07-02' +- '2023-07-03' +- '2023-07-04' +- '2023-07-05' +- '2023-07-06' +- '2023-07-07' +- '2023-07-08' +- '2023-07-09' +- '2023-07-10' +- '2023-07-11' +- '2023-07-12' +- '2023-07-13' +- '2023-07-14' +- '2023-07-15' +- '2023-07-16' +- '2023-07-17' +- '2023-07-18' +- '2023-07-19' +- '2023-07-20' +- '2023-07-21' +- '2023-07-22' +- '2023-07-23' +- '2023-07-24' +- '2023-07-25' +- '2023-07-26' +- '2023-07-27' +- '2023-07-28' +- '2023-07-29' +- '2023-07-30' +- '2023-07-31' +- '2023-08-01' +- '2023-08-02' +- '2023-08-03' +- '2023-08-04' +- '2023-08-05' +- '2023-08-06' +- '2023-08-07' +- '2023-08-08' +- '2023-08-09' +- '2023-08-10' +- '2023-08-11' +- '2023-08-12' +- '2023-08-13' +- '2023-08-14' +- '2023-08-15' +- '2023-08-16' +- '2023-08-17' +- '2023-08-18' +- '2023-08-19' +- '2023-08-20' +- '2023-08-21' +- '2023-08-22' +- '2023-08-23' +- '2023-08-24' +- '2023-08-25' +- '2023-08-26' +- '2023-08-27' +- '2023-08-28' +- '2023-08-29' +- '2023-08-30' +- '2023-08-31' +- '2023-09-01' +- '2023-09-02' +- '2023-09-03' +- '2023-09-04' +- '2023-09-05' +- '2023-09-06' +- '2023-09-07' +- '2023-09-08' +- '2023-09-09' +- '2023-09-10' +- '2023-09-11' +- '2023-09-12' +- '2023-09-13' +- '2023-09-14' +- '2023-09-15' +- '2023-09-16' +- '2023-09-17' +- '2023-09-18' +- '2023-09-19' +- '2023-09-20' +- '2023-09-21' +- '2023-09-22' +- '2023-09-23' +- '2023-09-24' +- '2023-09-25' +- '2023-09-26' +- '2023-09-27' +- '2023-09-28' +- '2023-09-29' +- '2023-09-30' +- '2023-10-01' +- '2023-10-02' +- '2023-10-03' +- '2023-10-04' +- '2023-10-05' +- '2023-10-06' +- '2023-10-07' +- '2023-10-08' +- '2023-10-09' +- '2023-10-10' +- '2023-10-11' +- '2023-10-12' +- '2023-10-13' +- '2023-10-14' +- '2023-10-15' +- '2023-10-16' +- '2023-10-17' +- '2023-10-18' +- '2023-10-19' +- '2023-10-20' +- '2023-10-21' +- '2023-10-22' +- '2023-10-23' +- '2023-10-24' +- '2023-10-25' +- '2023-10-26' +- '2023-10-27' +- '2023-10-28' +- '2023-10-29' +- '2023-10-30' +- '2023-10-31' From 0bbd91c28eae910d07580329b466e967aa6b6a29 Mon Sep 17 00:00:00 2001 From: liuly12 <59883247+liuly12@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:57:16 +0100 Subject: [PATCH 26/59] Remove redundant lines --- .../luton_scripts/model_extensions.py | 354 ------------------ 1 file changed, 354 deletions(-) diff --git a/docs/demo/examples/luton_scripts/model_extensions.py b/docs/demo/examples/luton_scripts/model_extensions.py index 8a09ffc5..42c61f77 100644 --- a/docs/demo/examples/luton_scripts/model_extensions.py +++ b/docs/demo/examples/luton_scripts/model_extensions.py @@ -13,10 +13,6 @@ # from wsimod.nodes.nodes import QueueTank, Tank, ResidenceTank def extensions(model): - # decorate storm sewer to make it cso - # for node_name, node in model.nodes.items(): - # if any(ext in node_name for ext in ['storm', 'foul', 'combined']): - # node.make_discharge = wrapper_sewer(node) # decorate land->gw model.nodes['1823-land'].run = wrapper_land_gw(model.nodes['1823-land']) @@ -29,10 +25,6 @@ def extensions(model): # Change model.run because new function has been introduced by the new node model.river_discharge_order = ['1823-river'] - # model.run = wrapper_run(model) - # parameter adjustment - # model.nodes['1823-land'].surfaces[-1].pore_depth = 0.1 - # model.nodes['1823-storm'].make_discharge = wrapper_stormsewer_cso(model.nodes['1823-storm']) # decorate fix head for node in ['6aead97c-0040-4e31-889d-01f628faf990', @@ -183,349 +175,3 @@ def new_end_timestep(): if str(node.t) == date: node.process_parameters[variable]['constant'] = value return new_end_timestep - -# def wrapper_impervioussurface_sewer(self): -# def push_to_sewers(#self -# ): -# """Outflow function that distributes ponded water (i.e., surface runoff) -# to the parent node's attached sewers. - -# Returns: -# (tuple): A tuple containing a VQIP amount for model inputs and outputs -# for mass balance checking. - -# """ -# # Get runoff -# surface_runoff = self.pull_ponded() -# print(surface_runoff['volume']) -# # Distribute -# # TODO in cwsd_partition this is done with timearea -# reply = self.parent.push_distributed(surface_runoff, of_type=["Sewer", "SewerCSO"], tag = 'Land') - -# # Update tank (forcing, because if the water can't go to the sewer, where else can it go) -# _ = self.push_storage(reply, force=True) -# # TODO... possibly this could flow to attached river or land nodes.. or other surfaces? I expect this doesn't matter for large scale models.. but may need to be revisited for detailed sewer models - -# # Return empty mass balance because outflows are handled by parent -# return (self.empty_vqip(), self.empty_vqip()) -# return push_to_sewers -# def wrapper_stormsewer_cso(self): -# def make_discharge(#self -# ): -# """Function to trigger downstream sewer flow. - -# Updates sewer tank travel time, pushes to WWTW, then sewer, then CSO. May -# flood land if, after these attempts, the sewer tank storage is above -# capacity. - -# """ -# self.sewer_tank.internal_arc.update_queue(direction="push") -# # TODO... do I need to do anything with this backflow... does it ever happen? - -# # Discharge to CSO first -# capacity = 86400 * 2 # [m3/d] - -# cso_spill = self.sewer_tank.active_storage['volume'] - capacity # [m3/d] -# if cso_spill > 0: -# # cso_spill = self.v_change_vqip(self.sewer_tank.active_storage, cso_spill) # [vqip] -# cso_spill = self.sewer_tank.pull_storage({'volume': cso_spill}) # [vqip] - -# remaining = self.push_distributed(cso_spill, -# of_type = ["CSO"] -# ) -# _ = self.sewer_tank.push_storage(remaining, force=True) -# # # list of arcs that connect with gw bodies -# # _, arcs = self.get_direction_arcs(direction='push', of_type=['CSO']) # new type -# # cso_arcs = [arc for arc in arcs if 'cso' in arc.name] -# # # if there is only one river arc -# # if len(cso_arcs) == 1: -# # arc = cso_arcs[0] -# # remaining = arc.send_push_request(cso_spill) -# # _ = self.sewer_tank.push_storage(remaining, force = True) -# # if remaining['volume'] > constants.FLOAT_ACCURACY: -# # print('Sewer unable to push from '+self.name+' into cso '+arc.name.split('-to-')[-1]) -# # else: -# # print("More than 1 cso corresponds with "+self.name+" - can't model it at this stage and needs further development") -# # Discharge to sewer and river then (based on preferences) -# to_send = self.sewer_tank.pull_storage(self.sewer_tank.active_storage) # [vqip] -# remaining = self.push_distributed(to_send, -# of_type = ["Sewer", "River_h"] -# ) -# _ = self.sewer_tank.push_storage(remaining, force=True) -# # #Discharge to WWTW if possible -# # remaining = self.push_distributed(remaining, -# # of_type = ["WWTW"], -# # tag = 'Sewer' -# # ) - -# # remaining = self.push_distributed(self.sewer_tank.active_storage) - -# # TODO backflow can cause mass balance errors here - -# # # Update tank -# # sent = self.extract_vqip(self.sewer_tank.active_storage, remaining) -# # reply = self.sewer_tank.pull_storage_exact(sent) -# # if (reply["volume"] - sent["volume"]) > constants.FLOAT_ACCURACY: -# # print("Miscalculated tank storage in discharge") - -# # Flood excess -# ponded = self.sewer_tank.pull_ponded() -# if ponded["volume"] > constants.FLOAT_ACCURACY: -# reply_ = self.push_distributed(ponded, of_type=["Land"], tag="Sewer") -# reply_ = self.sewer_tank.push_storage(reply_, time=0, force=True) -# if reply_["volume"]: -# print("ponded water cant reenter") -# return make_discharge - - -# def wrapper_run(self): - -# def run(#self, -# dates = None, -# settings = None, -# record_arcs = None, -# record_tanks = None, -# verbose = True, -# record_all = True, -# other_attr = {}): -# """Run the model object with the default orchestration - -# Args: -# dates (list, optional): Dates to simulate. Defaults to None, which -# simulates all dates that the model has data for. -# settings (dict, optional): Dict to specify what results are stored, -# not currently used. Defaults to None. -# record_arcs (list, optional): List of arcs to store result for. -# Defaults to None. -# record_tanks (list, optional): List of nodes with water stores to -# store results for. Defaults to None. -# verbose (bool, optional): Prints updates on simulation if true. -# Defaults to True. -# record_all (bool, optional): Specifies to store all results. -# Defaults to True. -# other_attr (dict, optional): Dict to store additional attributes of -# specified nodes/arcs. Example: -# {'arc.name1': ['arc.attribute1'], -# 'arc.name2': ['arc.attribute1', 'arc.attribute2'], -# 'node.name1': ['node.attribute1'], -# 'node.name2': ['node.attribute1', 'node.attribute2']} -# Defaults to None. - -# Returns: -# flows: simulated flows in a list of dicts -# tanks: simulated tanks storages in a list of dicts -# node_mb: mass balance differences in a list of dicts (not currently used) -# surfaces: simulated surface storages of land nodes in a list of dicts -# requested_attr: timeseries of attributes of specified nodes/arcs requested by the users -# """ - -# if record_arcs is None: -# record_arcs = self.arcs.keys() - -# if record_tanks is None: -# record_tanks = [] - -# if settings is None: -# settings = self.default_settings() - -# def blockPrint(): -# stdout = sys.stdout -# sys.stdout = open(os.devnull, 'w') -# return stdout -# def enablePrint(stdout): -# sys.stdout = stdout -# if not verbose: -# stdout = blockPrint() -# if dates is None: -# dates = self.dates - -# flows = [] -# tanks = [] -# node_mb = [] -# surfaces = [] - -# # print( -# # self.nodes['6aead97c-0040-4e31-889d-01f628faf990'].data_input_dict)#[('nhx-dry', dates[-36].to_period('M'))]) - -# for date in tqdm(dates, disable = (not verbose)): -# # for date in dates: -# for node in self.nodelist: -# node.t = date -# node.monthyear = date.to_period('M') - -# # print(type(node.monthyear)) - -# #Run FWTW -# for node in self.nodes_type['FWTW'].values(): -# node.treat_water() - -# #Create demand (gets pushed to sewers) -# for node in self.nodes_type['Demand'].values(): -# node.create_demand() - -# #Create runoff (impervious gets pushed to sewers, pervious to groundwater) -# for node in self.nodes_type['Land'].values(): -# node.run() - -# #Infiltrate GW -# for node in self.nodes_type['Groundwater'].values(): -# node.infiltrate() -# for node in self.nodes_type['Groundwater_h'].values(): -# node.infiltrate() - -# #Foul second so that it can discharge any misconnection -# for node in self.nodes_type['Foul'].values(): -# node.make_discharge() - -# #Discharge sewers (pushed to other sewers or WWTW) -# for node in self.nodes_type['Sewer'].values(): -# node.make_discharge() - -# #Discharge WWTW -# for node in self.nodes_type['WWTW'].values(): -# node.calculate_discharge() - -# #Discharge GW -# for node in self.nodes_type['Groundwater'].values(): -# node.distribute() - -# #river -# # for node in self.nodes_type['Lake'].values(): -# # node.calculate_discharge() -# for node in self.nodes_type['River'].values(): -# node.calculate_discharge() - -# #Abstract -# for node in self.nodes_type['Reservoir'].values(): -# node.make_abstractions() - -# for node in self.nodes_type['Land'].values(): -# node.apply_irrigation() - -# for node in self.nodes_type['WWTW'].values(): -# node.make_discharge() - -# #Catchment routing -# for node in self.nodes_type['Catchment'].values(): -# node.route() - -# #river -# # for node in self.nodes_type['Lake'].values(): -# # node.distribute() -# for node_name in self.river_discharge_order: -# self.nodes[node_name].distribute() - - -# #mass balance checking -# #nodes/system -# sys_in = self.empty_vqip() -# sys_out = self.empty_vqip() -# sys_ds = self.empty_vqip() - -# #arcs -# for arc in self.arcs.values(): -# in_, ds_, out_ = arc.arc_mass_balance() -# for v in constants.ADDITIVE_POLLUTANTS + ['volume']: -# sys_in[v] += in_[v] -# sys_out[v] += out_[v] -# sys_ds[v] += ds_[v] -# for node in self.nodelist: -# # print(node.name) -# in_, ds_, out_ = node.node_mass_balance() - -# # temp = {'name' : node.name, -# # 'time' : date} -# # for lab, dict_ in zip(['in','ds','out'], [in_, ds_, out_]): -# # for key, value in dict_.items(): -# # temp[(lab, key)] = value -# # node_mb.append(temp) - -# for v in constants.ADDITIVE_POLLUTANTS + ['volume']: -# sys_in[v] += in_[v] -# sys_out[v] += out_[v] -# sys_ds[v] += ds_[v] - -# for v in constants.ADDITIVE_POLLUTANTS + ['volume']: - -# #Find the largest value of in_, out_, ds_ -# largest = max(sys_in[v], sys_in[v], sys_in[v]) - -# if largest > constants.FLOAT_ACCURACY: -# #Convert perform comparison in a magnitude to match the largest value -# magnitude = 10**int(log10(largest)) -# in_10 = sys_in[v] / magnitude -# out_10 = sys_in[v] / magnitude -# ds_10 = sys_in[v] / magnitude -# else: -# in_10 = sys_in[v] -# ds_10 = sys_in[v] -# out_10 = sys_in[v] - -# if (in_10 - ds_10 - out_10) > constants.FLOAT_ACCURACY: -# print("system mass balance error for " + v + " of " + str(sys_in[v] - sys_ds[v] - sys_out[v])) - -# #Store results -# for arc in record_arcs: -# arc = self.arcs[arc] -# flows.append({'arc' : arc.name, -# 'flow' : arc.vqip_out['volume'], -# 'time' : date}) -# for pol in constants.POLLUTANTS: -# flows[-1][pol] = arc.vqip_out[pol] - -# for node in record_tanks: -# node = self.nodes[node] -# tanks.append({'node' : node.name, -# 'storage' : node.tank.storage['volume'], -# 'time' : date}) -# if record_all: -# for node in self.nodes.values(): -# for prop_ in dir(node): -# prop = node.__getattribute__(prop_) -# if prop.__class__ in [QueueTank, Tank, ResidenceTank]: -# tanks.append({'node' : node.name, -# 'time' : date, -# 'storage' : prop.storage['volume'], -# 'prop' : prop_}) -# for pol in constants.POLLUTANTS: -# tanks[-1][pol] = prop.storage[pol] - -# for name, node in self.nodes_type['Land'].items(): -# for surface in node.surfaces: -# if not isinstance(surface,ImperviousSurface): -# surfaces.append({'node' : name, -# 'surface' : surface.surface, -# 'percolation' : surface.percolation['volume'], -# 'subsurface_r' : surface.subsurface_flow['volume'], -# 'surface_r' : surface.infiltration_excess['volume'], -# 'storage' : surface.storage['volume'], -# 'evaporation' : surface.evaporation['volume'], -# 'precipitation' : surface.precipitation['volume'], -# 'tank_recharge' : surface.tank_recharge, -# 'capacity' : surface.capacity, -# 'time' : date, -# 'et0_coef' : surface.et0_coefficient, -# # 'crop_factor' : surface.crop_factor -# }) -# for pol in constants.POLLUTANTS: -# surfaces[-1][pol] = surface.storage[pol] -# else: -# surfaces.append({'node' : name, -# 'surface' : surface.surface, -# 'storage' : surface.storage['volume'], -# 'evaporation' : surface.evaporation['volume'], -# 'precipitation' : surface.precipitation['volume'], -# 'capacity' : surface.capacity, -# 'time' : date}) -# for pol in constants.POLLUTANTS: -# surfaces[-1][pol] = surface.storage[pol] - -# for node in self.nodes.values(): -# node.end_timestep() - -# for arc in self.arcs.values(): -# arc.end_timestep() -# if not verbose: -# enablePrint(stdout) -# return flows, tanks, node_mb, surfaces -# return run \ No newline at end of file From 0539b7ae4ca32fad782af9baf015d54cabd1fbd1 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 26 Jul 2024 11:20:26 +0100 Subject: [PATCH 27/59] pre-commit reformatted --- tests/test_nodes.py | 83 +++++++++++++++++++++++++++---------------- wsimod/nodes/nodes.py | 54 ++++++++++++++-------------- 2 files changed, 78 insertions(+), 59 deletions(-) diff --git a/tests/test_nodes.py b/tests/test_nodes.py index fd7ab690..81f9e93d 100644 --- a/tests/test_nodes.py +++ b/tests/test_nodes.py @@ -663,61 +663,82 @@ def test_decay_queue(self): def test_overrides(self): # node - no need to test # tank - tank = Tank(capacity=10, area=8, datum = 4) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5}) + tank = Tank(capacity=10, area=8, datum=4) + tank.apply_overrides({"capacity": 3, "area": 2, "datum": 3.5}) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) # residence tank - tank = ResidenceTank(capacity=10, area=8, datum = 4, residence_time = 8) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'residence_time': 6}) + tank = ResidenceTank(capacity=10, area=8, datum=4, residence_time=8) + tank.apply_overrides( + {"capacity": 3, "area": 2, "datum": 3.5, "residence_time": 6} + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.residence_time, 6) # decay tank - tank = DecayTank(capacity=10, area=8, datum = 4, decays = {'nitrate' : {'constant' : 0.001, 'exponent' : 1.005}}) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'decays': {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}} - }) + tank = DecayTank( + capacity=10, + area=8, + datum=4, + decays={"nitrate": {"constant": 0.001, "exponent": 1.005}}, + ) + tank.apply_overrides( + { + "capacity": 3, + "area": 2, + "datum": 3.5, + "decays": {"phosphate": {"constant": 1.001, "exponent": 10.005}}, + } + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) - self.assertDictEqual(tank.decays, {'nitrate' : {'constant' : 0.001, 'exponent' : 1.005}, - 'phosphate' : {'constant' : 1.001, 'exponent' : 10.005} - }) + self.assertDictEqual( + tank.decays, + { + "nitrate": {"constant": 0.001, "exponent": 1.005}, + "phosphate": {"constant": 1.001, "exponent": 10.005}, + }, + ) # queue tank - tank = QueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'number_of_timesteps': 6}) + tank = QueueTank(capacity=10, area=8, datum=4, number_of_timesteps=8) + tank.apply_overrides( + {"capacity": 3, "area": 2, "datum": 3.5, "number_of_timesteps": 6} + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.number_of_timesteps, 6) self.assertEqual(tank.internal_arc.number_of_timesteps, 6) # decay queue tank - tank = DecayQueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8, decays = {'phosphate' : {'constant' : 0.001, 'exponent' : 1.005}}) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'number_of_timesteps': 6, - 'decays': {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}} - }) + tank = DecayQueueTank( + capacity=10, + area=8, + datum=4, + number_of_timesteps=8, + decays={"phosphate": {"constant": 0.001, "exponent": 1.005}}, + ) + tank.apply_overrides( + { + "capacity": 3, + "area": 2, + "datum": 3.5, + "number_of_timesteps": 6, + "decays": {"phosphate": {"constant": 1.001, "exponent": 10.005}}, + } + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.number_of_timesteps, 6) self.assertEqual(tank.internal_arc.number_of_timesteps, 6) - self.assertDictEqual(tank.internal_arc.decays, {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}}) + self.assertDictEqual( + tank.internal_arc.decays, + {"phosphate": {"constant": 1.001, "exponent": 10.005}}, + ) + if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index d01195ad..6606add3 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -793,25 +793,22 @@ def __init__(self, capacity=0, area=1, datum=10, initial_storage=0): else: self.storage = self.empty_vqip() self.storage_ = self.empty_vqip() # Lagged storage for mass balance - + def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the tank. - Enables a user to override any of the following parameters: + Enables a user to override any of the following parameters: area, capacity, datum. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.capacity = overrides.pop("capacity", - self.capacity) - self.area = overrides.pop("area", - self.area) - self.datum = overrides.pop("datum", - self.datum) + self.capacity = overrides.pop("capacity", self.capacity) + self.area = overrides.pop("area", self.area) + self.datum = overrides.pop("datum", self.datum) if len(overrides) > 0: print(f"No override behaviour defined for: {overrides.keys()}") - + def ds(self): """Should be called by parent object to get change in storage. @@ -1119,15 +1116,14 @@ def __init__(self, residence_time=2, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the residencetank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: residence_time. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.residence_time = overrides.pop("residence_time", - self.residence_time) + self.residence_time = overrides.pop("residence_time", self.residence_time) super().apply_overrides(overrides) def pull_outflow(self): @@ -1175,10 +1171,10 @@ def __init__(self, decays={}, parent=None, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the decaytank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: decays. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ @@ -1235,15 +1231,16 @@ def __init__(self, number_of_timesteps=0, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the queuetank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: number_of_timesteps. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.number_of_timesteps = overrides.pop("number_of_timesteps", - self.number_of_timesteps) + self.number_of_timesteps = overrides.pop( + "number_of_timesteps", self.number_of_timesteps + ) self.internal_arc.number_of_timesteps = self.number_of_timesteps super().apply_overrides(overrides) @@ -1417,15 +1414,16 @@ def __init__(self, decays={}, parent=None, number_of_timesteps=1, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the decayqueuetank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: number_of_timesteps, decays. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.number_of_timesteps = overrides.pop("number_of_timesteps", - self.number_of_timesteps) + self.number_of_timesteps = overrides.pop( + "number_of_timesteps", self.number_of_timesteps + ) self.internal_arc.number_of_timesteps = self.number_of_timesteps self.internal_arc.decays.update(overrides.pop("decays", {})) super().apply_overrides(overrides) From 7a8d2fce2e48b56a8e1502f9b3c300997b717904 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 26 Jul 2024 12:50:24 +0100 Subject: [PATCH 28/59] pre-commit reformatted --- tests/test_nodes.py | 85 +++++++++++++++++++++++++++---------------- tests/test_sewer.py | 20 +++++----- wsimod/nodes/nodes.py | 54 +++++++++++++-------------- wsimod/nodes/sewer.py | 36 +++++++++--------- 4 files changed, 108 insertions(+), 87 deletions(-) diff --git a/tests/test_nodes.py b/tests/test_nodes.py index 79d07007..f56edab9 100644 --- a/tests/test_nodes.py +++ b/tests/test_nodes.py @@ -663,62 +663,83 @@ def test_decay_queue(self): def test_overrides(self): # node - no need to test # tank - tank = Tank(capacity=10, area=8, datum = 4) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5}) + tank = Tank(capacity=10, area=8, datum=4) + tank.apply_overrides({"capacity": 3, "area": 2, "datum": 3.5}) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) - self.assertEqual(tank.get_excess()['volume'], 3) + self.assertEqual(tank.get_excess()["volume"], 3) # residence tank - tank = ResidenceTank(capacity=10, area=8, datum = 4, residence_time = 8) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'residence_time': 6}) + tank = ResidenceTank(capacity=10, area=8, datum=4, residence_time=8) + tank.apply_overrides( + {"capacity": 3, "area": 2, "datum": 3.5, "residence_time": 6} + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.residence_time, 6) # decay tank - tank = DecayTank(capacity=10, area=8, datum = 4, decays = {'nitrate' : {'constant' : 0.001, 'exponent' : 1.005}}) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'decays': {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}} - }) + tank = DecayTank( + capacity=10, + area=8, + datum=4, + decays={"nitrate": {"constant": 0.001, "exponent": 1.005}}, + ) + tank.apply_overrides( + { + "capacity": 3, + "area": 2, + "datum": 3.5, + "decays": {"phosphate": {"constant": 1.001, "exponent": 10.005}}, + } + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) - self.assertDictEqual(tank.decays, {'nitrate' : {'constant' : 0.001, 'exponent' : 1.005}, - 'phosphate' : {'constant' : 1.001, 'exponent' : 10.005} - }) + self.assertDictEqual( + tank.decays, + { + "nitrate": {"constant": 0.001, "exponent": 1.005}, + "phosphate": {"constant": 1.001, "exponent": 10.005}, + }, + ) # queue tank - tank = QueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'number_of_timesteps': 6}) + tank = QueueTank(capacity=10, area=8, datum=4, number_of_timesteps=8) + tank.apply_overrides( + {"capacity": 3, "area": 2, "datum": 3.5, "number_of_timesteps": 6} + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.number_of_timesteps, 6) self.assertEqual(tank.internal_arc.number_of_timesteps, 6) # decay queue tank - tank = DecayQueueTank(capacity=10, area=8, datum = 4, number_of_timesteps = 8, decays = {'phosphate' : {'constant' : 0.001, 'exponent' : 1.005}}) - tank.apply_overrides({'capacity': 3, - 'area': 2, - 'datum': 3.5, - 'number_of_timesteps': 6, - 'decays': {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}} - }) + tank = DecayQueueTank( + capacity=10, + area=8, + datum=4, + number_of_timesteps=8, + decays={"phosphate": {"constant": 0.001, "exponent": 1.005}}, + ) + tank.apply_overrides( + { + "capacity": 3, + "area": 2, + "datum": 3.5, + "number_of_timesteps": 6, + "decays": {"phosphate": {"constant": 1.001, "exponent": 10.005}}, + } + ) self.assertEqual(tank.capacity, 3) self.assertEqual(tank.area, 2) self.assertEqual(tank.datum, 3.5) self.assertEqual(tank.number_of_timesteps, 6) self.assertEqual(tank.internal_arc.number_of_timesteps, 6) - self.assertDictEqual(tank.internal_arc.decays, {'phosphate' : {'constant' : 1.001, 'exponent' : 10.005}}) + self.assertDictEqual( + tank.internal_arc.decays, + {"phosphate": {"constant": 1.001, "exponent": 10.005}}, + ) + if __name__ == "__main__": unittest.main() diff --git a/tests/test_sewer.py b/tests/test_sewer.py index b37a8052..3299c789 100644 --- a/tests/test_sewer.py +++ b/tests/test_sewer.py @@ -93,12 +93,15 @@ def test_make_discharge(self): def test_sewer_overrides(self): sewer = Sewer(name="", capacity=10, pipe_timearea={0: 0.3, 1: 0.7}) - sewer.apply_overrides({'capacity': 3, - 'chamber_area': 2, - 'chamber_floor': 3.5, - 'pipe_time': 8.4, - 'pipe_timearea': {0: 0.5, 1: 0.5} - }) + sewer.apply_overrides( + { + "capacity": 3, + "chamber_area": 2, + "chamber_floor": 3.5, + "pipe_time": 8.4, + "pipe_timearea": {0: 0.5, 1: 0.5}, + } + ) self.assertEqual(sewer.capacity, 3) self.assertEqual(sewer.sewer_tank.capacity, 3) self.assertEqual(sewer.chamber_area, 2) @@ -106,9 +109,8 @@ def test_sewer_overrides(self): self.assertEqual(sewer.chamber_floor, 3.5) self.assertEqual(sewer.sewer_tank.datum, 3.5) self.assertEqual(sewer.pipe_time, 8.4) - self.assertEqual(sewer.pipe_timearea, {0: 0.5, - 1: 0.5 - }) + self.assertEqual(sewer.pipe_timearea, {0: 0.5, 1: 0.5}) + if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index d01195ad..6606add3 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -793,25 +793,22 @@ def __init__(self, capacity=0, area=1, datum=10, initial_storage=0): else: self.storage = self.empty_vqip() self.storage_ = self.empty_vqip() # Lagged storage for mass balance - + def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the tank. - Enables a user to override any of the following parameters: + Enables a user to override any of the following parameters: area, capacity, datum. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.capacity = overrides.pop("capacity", - self.capacity) - self.area = overrides.pop("area", - self.area) - self.datum = overrides.pop("datum", - self.datum) + self.capacity = overrides.pop("capacity", self.capacity) + self.area = overrides.pop("area", self.area) + self.datum = overrides.pop("datum", self.datum) if len(overrides) > 0: print(f"No override behaviour defined for: {overrides.keys()}") - + def ds(self): """Should be called by parent object to get change in storage. @@ -1119,15 +1116,14 @@ def __init__(self, residence_time=2, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the residencetank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: residence_time. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.residence_time = overrides.pop("residence_time", - self.residence_time) + self.residence_time = overrides.pop("residence_time", self.residence_time) super().apply_overrides(overrides) def pull_outflow(self): @@ -1175,10 +1171,10 @@ def __init__(self, decays={}, parent=None, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the decaytank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: decays. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ @@ -1235,15 +1231,16 @@ def __init__(self, number_of_timesteps=0, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the queuetank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: number_of_timesteps. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.number_of_timesteps = overrides.pop("number_of_timesteps", - self.number_of_timesteps) + self.number_of_timesteps = overrides.pop( + "number_of_timesteps", self.number_of_timesteps + ) self.internal_arc.number_of_timesteps = self.number_of_timesteps super().apply_overrides(overrides) @@ -1417,15 +1414,16 @@ def __init__(self, decays={}, parent=None, number_of_timesteps=1, **kwargs): def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the decayqueuetank. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: number_of_timesteps, decays. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.number_of_timesteps = overrides.pop("number_of_timesteps", - self.number_of_timesteps) + self.number_of_timesteps = overrides.pop( + "number_of_timesteps", self.number_of_timesteps + ) self.internal_arc.number_of_timesteps = self.number_of_timesteps self.internal_arc.decays.update(overrides.pop("decays", {})) super().apply_overrides(overrides) diff --git a/wsimod/nodes/sewer.py b/wsimod/nodes/sewer.py index 11ad2dcc..af5a32a0 100644 --- a/wsimod/nodes/sewer.py +++ b/wsimod/nodes/sewer.py @@ -4,9 +4,11 @@ @author: bdobson Converted to totals on 2022-05-03 """ +from typing import Any, Dict + from wsimod.core import constants from wsimod.nodes.nodes import Node, QueueTank -from typing import Any, Dict + class Sewer(Node): """""" @@ -114,31 +116,29 @@ def __init__( def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the sewer. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: capacity, chamber_area, chamber_floor, pipe_time, pipe_timearea. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.capacity = overrides.pop("capacity", - self.capacity) - self.chamber_area = overrides.pop("chamber_area", - self.chamber_area) - self.chamber_floor = overrides.pop("chamber_floor", - self.chamber_floor) + self.capacity = overrides.pop("capacity", self.capacity) + self.chamber_area = overrides.pop("chamber_area", self.chamber_area) + self.chamber_floor = overrides.pop("chamber_floor", self.chamber_floor) self.sewer_tank.capacity = self.capacity self.sewer_tank.area = self.chamber_area self.sewer_tank.datum = self.chamber_floor - - self.pipe_time = overrides.pop("pipe_time", - self.pipe_time) - if 'pipe_timearea' in overrides.keys(): - pipe_timearea_sum = sum([v for k,v in overrides['pipe_timearea'].items()]) + + self.pipe_time = overrides.pop("pipe_time", self.pipe_time) + if "pipe_timearea" in overrides.keys(): + pipe_timearea_sum = sum([v for k, v in overrides["pipe_timearea"].items()]) if pipe_timearea_sum != 1: - print('ERROR: the sum of pipe_timearea in the overrides dict is not equal to 1, please check it') - self.pipe_timearea = overrides.pop("pipe_timearea", - self.pipe_timearea) + print( + "ERROR: the sum of pipe_timearea in the overrides dict \ + is not equal to 1, please check it" + ) + self.pipe_timearea = overrides.pop("pipe_timearea", self.pipe_timearea) super().apply_overrides(overrides) def push_check_sewer(self, vqip=None): From 55a7d05a63a6ce7b00bfd2e807ded1fea36d9539 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 26 Jul 2024 13:24:12 +0100 Subject: [PATCH 29/59] pre-commit reformatted --- tests/test_distribution.py | 3 ++- wsimod/nodes/distribution.py | 21 +++++++++++---------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/tests/test_distribution.py b/tests/test_distribution.py index 239400e3..fca95a2f 100644 --- a/tests/test_distribution.py +++ b/tests/test_distribution.py @@ -69,8 +69,9 @@ def test_leakage(self): def test_distribution_overrides(self): distribution = Distribution(name="", leakage=0.2) - distribution.apply_overrides({'leakage': 0}) + distribution.apply_overrides({"leakage": 0}) self.assertEqual(distribution.leakage, 0) + if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/distribution.py b/wsimod/nodes/distribution.py index fece94d9..66baff45 100644 --- a/wsimod/nodes/distribution.py +++ b/wsimod/nodes/distribution.py @@ -4,9 +4,11 @@ @author: bdobson """ +from typing import Any, Dict + from wsimod.core import constants from wsimod.nodes.nodes import Node -from typing import Any, Dict + def decorate_leakage_set(self, f): """Decorator to extend the functionality of `f` by introducing leakage. This is @@ -126,10 +128,9 @@ def __init__(self, leakage=0, **kwargs): self.push_set_handler["default"] = self.push_set_deny self.push_check_handler["default"] = self.push_check_deny self.decorate_pull_handlers() - + def decorate_pull_handlers(self): - """Decorate handlers if there is leakage ratio. - """ + """Decorate handlers if there is leakage ratio.""" if self.leakage > 0: self.pull_set_handler["default"] = decorate_leakage_set( self, self.pull_set_handler["default"] @@ -137,21 +138,21 @@ def decorate_pull_handlers(self): self.pull_check_handler["default"] = decorate_leakage_check( self, self.pull_check_handler["default"] ) - + def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the sewer. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: leakage. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.leakage = overrides.pop("leakage", - self.leakage) + self.leakage = overrides.pop("leakage", self.leakage) self.decorate_pull_handlers() super().apply_overrides(overrides) + class UnlimitedDistribution(Distribution): """""" From d88f93d976c30632b061053a02040894b386f868 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 26 Jul 2024 14:22:42 +0100 Subject: [PATCH 30/59] pre-commit reformatted --- tests/test_demand.py | 47 ++++++++++++++++++++++++++---------------- wsimod/nodes/demand.py | 38 +++++++++++++++++----------------- 2 files changed, 48 insertions(+), 37 deletions(-) diff --git a/tests/test_demand.py b/tests/test_demand.py index 3c870fa1..c6d421e7 100644 --- a/tests/test_demand.py +++ b/tests/test_demand.py @@ -118,38 +118,49 @@ def test_garden_demand(self): d1 = {"volume": 0.03 * 0.4, "temperature": 0, "phosphate": 0} self.assertDictAlmostEqual(d1, reply) - + def test_demand_overrides(self): demand = Demand( name="", constant_demand=10, pollutant_load={"phosphate": 0.1, "temperature": 12}, ) - demand.apply_overrides({"constant_demand": 20, - "pollutant_load": {"phosphate": 0.5} - }) + demand.apply_overrides( + {"constant_demand": 20, "pollutant_load": {"phosphate": 0.5}} + ) self.assertEqual(demand.constant_demand, 20) - self.assertDictEqual(demand.pollutant_load, {"phosphate": 0.5, "temperature": 12}) - + self.assertDictEqual( + demand.pollutant_load, {"phosphate": 0.5, "temperature": 12} + ) + def test_residentialdemand_overrides(self): - demand = ResidentialDemand(name="", gardening_efficiency=0.4, pollutant_load={"phosphate": 0.1, "temperature": 12}) - demand.apply_overrides({"gardening_efficiency": 0.5, - "population": 153.2, - "per_capita": 32.4, - "constant_weighting": 47.5, - "constant_temp": 0.71, - - "constant_demand": 20, - "pollutant_load": {"phosphate": 0.5} - }) + demand = ResidentialDemand( + name="", + gardening_efficiency=0.4, + pollutant_load={"phosphate": 0.1, "temperature": 12}, + ) + demand.apply_overrides( + { + "gardening_efficiency": 0.5, + "population": 153.2, + "per_capita": 32.4, + "constant_weighting": 47.5, + "constant_temp": 0.71, + "constant_demand": 20, + "pollutant_load": {"phosphate": 0.5}, + } + ) self.assertEqual(demand.gardening_efficiency, 0.5) self.assertEqual(demand.population, 153.2) self.assertEqual(demand.per_capita, 32.4) self.assertEqual(demand.constant_weighting, 47.5) self.assertEqual(demand.constant_temp, 0.71) - + self.assertEqual(demand.constant_demand, 20) - self.assertDictEqual(demand.pollutant_load, {"phosphate": 0.5, "temperature": 12}) + self.assertDictEqual( + demand.pollutant_load, {"phosphate": 0.5, "temperature": 12} + ) + if __name__ == "__main__": unittest.main() diff --git a/wsimod/nodes/demand.py b/wsimod/nodes/demand.py index bd85dfaf..5778186a 100644 --- a/wsimod/nodes/demand.py +++ b/wsimod/nodes/demand.py @@ -5,9 +5,11 @@ Converted to totals BD 2022-05-03 """ +from typing import Any, Dict + from wsimod.core import constants from wsimod.nodes.nodes import Node -from typing import Any, Dict + class Demand(Node): """""" @@ -63,15 +65,14 @@ def __init__( def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the sewer. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: constant_demand, pollutant_load. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.constant_demand = overrides.pop("constant_demand", - self.constant_demand) + self.constant_demand = overrides.pop("constant_demand", self.constant_demand) self.pollutant_load.update(overrides.pop("pollutant_load", {})) super().apply_overrides(overrides) @@ -214,23 +215,22 @@ def __init__( def apply_overrides(self, overrides: Dict[str, Any] = {}): """Apply overrides to the sewer. - - Enables a user to override any of the following parameters: + + Enables a user to override any of the following parameters: gardening_efficiency, population, per_capita, constant_weighting, constant_temp. - + Args: overrides (dict, optional): Dictionary of overrides. Defaults to {}. """ - self.gardening_efficiency = overrides.pop("gardening_efficiency", - self.gardening_efficiency) - self.population = overrides.pop("population", - self.population) - self.per_capita = overrides.pop("per_capita", - self.per_capita) - self.constant_weighting = overrides.pop("constant_weighting", - self.constant_weighting) - self.constant_temp = overrides.pop("constant_temp", - self.constant_temp) + self.gardening_efficiency = overrides.pop( + "gardening_efficiency", self.gardening_efficiency + ) + self.population = overrides.pop("population", self.population) + self.per_capita = overrides.pop("per_capita", self.per_capita) + self.constant_weighting = overrides.pop( + "constant_weighting", self.constant_weighting + ) + self.constant_temp = overrides.pop("constant_temp", self.constant_temp) super().apply_overrides(overrides) def get_demand(self): From 05f83c07151f490a718314ee4bcf6c0c3fa949e1 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 26 Jul 2024 14:31:02 +0100 Subject: [PATCH 31/59] pre-commit reformatted --- tests/test_wtw.py | 28 +++++++++++++++------------- wsimod/nodes/wtw.py | 18 ++++++++++-------- 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/tests/test_wtw.py b/tests/test_wtw.py index c4ea92c0..f1d25d81 100644 --- a/tests/test_wtw.py +++ b/tests/test_wtw.py @@ -127,27 +127,29 @@ def test_wwtw_overrides(self): self.assertEqual(wwtw.process_parameters["phosphate"]["constant"], 0.01) self.assertEqual(wwtw.process_parameters["volume"]["constant"], vol) self.assertEqual(wwtw.stormwater_storage_capacity, 100) - + def test_fwtw_overrides(self): - fwtw = FWTW(name='') - vol = fwtw.process_parameters['volume']['constant'] - fwtw.apply_overrides({'treatment_throughput_capacity' : 20, - 'process_parameters' : {'phosphate' : - {'constant' : 0.02}}, - 'service_reservoir_storage_capacity': 100, - 'service_reservoir_storage_area': 34.7, - 'service_reservoir_storage_elevation': 68.2 - }) + fwtw = FWTW(name="") + vol = fwtw.process_parameters["volume"]["constant"] + fwtw.apply_overrides( + { + "treatment_throughput_capacity": 20, + "process_parameters": {"phosphate": {"constant": 0.02}}, + "service_reservoir_storage_capacity": 100, + "service_reservoir_storage_area": 34.7, + "service_reservoir_storage_elevation": 68.2, + } + ) self.assertEqual(fwtw.treatment_throughput_capacity, 20) - self.assertEqual(fwtw.process_parameters['phosphate']['constant'], 0.02) - self.assertEqual(fwtw.process_parameters['volume']['constant'], vol) + self.assertEqual(fwtw.process_parameters["phosphate"]["constant"], 0.02) + self.assertEqual(fwtw.process_parameters["volume"]["constant"], vol) self.assertEqual(fwtw.service_reservoir_storage_capacity, 100) self.assertEqual(fwtw.service_reservoir_tank.capacity, 100) self.assertEqual(fwtw.service_reservoir_storage_area, 34.7) self.assertEqual(fwtw.service_reservoir_tank.area, 34.7) self.assertEqual(fwtw.service_reservoir_storage_elevation, 68.2) self.assertEqual(fwtw.service_reservoir_tank.datum, 68.2) - self.assertEqual(fwtw.process_parameters['nitrate']['constant'], 0.01) + self.assertEqual(fwtw.process_parameters["nitrate"]["constant"], 0.01) if __name__ == "__main__": diff --git a/wsimod/nodes/wtw.py b/wsimod/nodes/wtw.py index d593db8b..002313dc 100644 --- a/wsimod/nodes/wtw.py +++ b/wsimod/nodes/wtw.py @@ -547,26 +547,28 @@ def apply_overrides(self, overrides=Dict[str, Any]): Enables a user to override any parameter of the service reservoir tank, and then calls any overrides in WTW. - + Args: overrides (Dict[str, Any]): Dict describing which parameters should be overridden (keys) and new values (values). Defaults to {}. """ self.service_reservoir_storage_capacity = overrides.pop( - "service_reservoir_storage_capacity", - self.service_reservoir_storage_capacity) + "service_reservoir_storage_capacity", + self.service_reservoir_storage_capacity, + ) self.service_reservoir_storage_area = overrides.pop( - "service_reservoir_storage_area", - self.service_reservoir_storage_area) + "service_reservoir_storage_area", self.service_reservoir_storage_area + ) self.service_reservoir_storage_elevation = overrides.pop( - "service_reservoir_storage_elevation", - self.service_reservoir_storage_elevation) + "service_reservoir_storage_elevation", + self.service_reservoir_storage_elevation, + ) self.service_reservoir_tank.capacity = self.service_reservoir_storage_capacity self.service_reservoir_tank.area = self.service_reservoir_storage_area self.service_reservoir_tank.datum = self.service_reservoir_storage_elevation super().apply_overrides(overrides) - + def treat_water(self): """Pulls water, aiming to fill service reservoirs, calls WTW treat_current_input, avoids deficit, sends liquor and solids to sewers.""" From f637860deb3ec0bea9ce5684c45576b056609cae Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 26 Jul 2024 14:40:44 +0100 Subject: [PATCH 32/59] Update test_wtw.py --- tests/test_wtw.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_wtw.py b/tests/test_wtw.py index f1d25d81..44fe4869 100644 --- a/tests/test_wtw.py +++ b/tests/test_wtw.py @@ -149,7 +149,6 @@ def test_fwtw_overrides(self): self.assertEqual(fwtw.service_reservoir_tank.area, 34.7) self.assertEqual(fwtw.service_reservoir_storage_elevation, 68.2) self.assertEqual(fwtw.service_reservoir_tank.datum, 68.2) - self.assertEqual(fwtw.process_parameters["nitrate"]["constant"], 0.01) if __name__ == "__main__": From 809a7121f7641c12983766507600e250b28d170e Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Thu, 5 Sep 2024 07:01:16 +0100 Subject: [PATCH 33/59] Add node patch --- tests/test_extensions.py | 84 +++++++++++++++++++++++++++++++ wsimod/extensions.py | 106 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 190 insertions(+) create mode 100644 tests/test_extensions.py create mode 100644 wsimod/extensions.py diff --git a/tests/test_extensions.py b/tests/test_extensions.py new file mode 100644 index 00000000..6d698100 --- /dev/null +++ b/tests/test_extensions.py @@ -0,0 +1,84 @@ +import pytest + + +@pytest.fixture +def temp_extension_registry(): + from wsimod.extensions import extensions_registry + + bkp = extensions_registry.copy() + extensions_registry.clear() + yield + extensions_registry.clear() + extensions_registry.update(bkp) + + +def test_register_node_patch(temp_extension_registry): + from wsimod.extensions import extensions_registry, register_node_patch + + # Define a dummy function to patch a node method + @register_node_patch("node_name.method_name") + def dummy_patch(): + print("Patched method") + + # Check if the patch is registered correctly + assert extensions_registry[("node_name.method_name", None, False)] == dummy_patch + + # Another function with other arguments + @register_node_patch("node_name.method_name", item="default", is_attr=True) + def another_dummy_patch(): + print("Another patched method") + + # Check if this other patch is registered correctly + assert ( + extensions_registry[("node_name.method_name", "default", True)] + == another_dummy_patch + ) + + +def test_apply_patches(temp_extension_registry): + from wsimod.arcs.arcs import Arc + from wsimod.extensions import ( + apply_patches, + extensions_registry, + register_node_patch, + ) + from wsimod.nodes import Node + from wsimod.orchestration.model import Model + + # Create a dummy model + node = Node("dummy_node") + node.dummy_arc = Arc("dummy_arc", in_port=node, out_port=node) + model = Model() + model.nodes[node.name] = node + + # 1. Patch a method + @register_node_patch("dummy_node.apply_overrides") + def dummy_patch(): + pass + + # 2. Patch an attribute + @register_node_patch("dummy_node.t", is_attr=True) + def another_dummy_patch(node): + return f"A pathced attribute for {node.name}" + + # 3. Patch a method with an item + @register_node_patch("dummy_node.pull_set_handler", item="default") + def yet_another_dummy_patch(): + pass + + # 4. Path a method of an attribute + @register_node_patch("dummy_node.dummy_arc.arc_mass_balance") + def arc_dummy_patch(): + pass + + # Check if all patches are registered + assert len(extensions_registry) == 4 + + # Apply the patches + apply_patches(model) + + # Verify that the patches are applied correctly + assert model.nodes[node.name].apply_overrides == dummy_patch + assert model.nodes[node.name].t == another_dummy_patch(node) + assert model.nodes[node.name].pull_set_handler["default"] == yet_another_dummy_patch + assert model.nodes[node.name].dummy_arc.arc_mass_balance == arc_dummy_patch diff --git a/wsimod/extensions.py b/wsimod/extensions.py new file mode 100644 index 00000000..bf56ea12 --- /dev/null +++ b/wsimod/extensions.py @@ -0,0 +1,106 @@ +"""This module contains the utilities to extend WSMOD with new features. + +The `register_node_patch` decorator is used to register a function that will be used +instead of a method or attribute of a node. The `apply_patches` function applies all +registered patches to a model. + +Example of patching a method: + +`empty_distributed` will be called instead of `my_node.pull_distributed`: + + >>> from wsimod.extensions import register_node_patch, apply_patches + >>> @register_node_patch("my_node.pull_distributed") + >>> def empty_distributed(self, vqip): + >>> return {} + +Attributes, methods of the node, and sub-attributes can be patched. Also, an item of a +list or a dictionary can be patched if the item argument is provided. + +Example of patching an attribute: + +`10` will be assigned to `my_node.t`: + + >>> @register_node_patch("my_node.t", is_attr=True) + >>> def patch_t(node): + >>> return 10 + +Example of patching an attribute item: + +`patch_default_pull_set_handler` will be assigned to +`my_node.pull_set_handler["default"]`: + + >>> @register_node_patch("my_node.pull_set_handler", item="default") + >>> def patch_default_pull_set_handler(self, vqip): + >>> return {} + +It should be noted that the patched function should have the same signature as the +original method or attribute, and the return type should be the same as well, otherwise +there will be a runtime error. +""" + +from typing import Callable, Hashable + +from .orchestration.model import Model + +extensions_registry: dict[tuple[str, Hashable, bool], Callable] = {} + + +def register_node_patch( + target: str, item: Hashable = None, is_attr: bool = False +) -> Callable: + """Register a function to patch a node method or any of its attributes. + + Args: + target (str): The target of the object to patch as a string with the node name + attribute, sub-attribute, etc. and finally method (or attribue) to replace, + sepparated with period, eg. `node_name.make_discharge` or + `node_name.sewer_tank.pull_storage_exact`. + item (Hashable): Typically a string or an integer indicating the item to replace + in the selected attribue, which should be a list or a dictionary. + is_attr (bool): If True, the decorated function will be called when applying + the patch and the result assigned to the target, instead of assigning the + function itself. In this case, the only argument passed to the function is + the node object. + """ + target_id = (target, item, is_attr) + if target_id in extensions_registry: + raise ValueError(f"Patch for {target} already registered.") + + def decorator(func): + extensions_registry[(target, item, is_attr)] = func + return func + + return decorator + + +def apply_patches(model: Model) -> None: + """Apply all registered patches to the model. + + TODO: Validate signature of the patched methods and type of patched attributes. + + Args: + model (Model): The model to apply the patches to. + """ + for (target, item, is_attr), func in extensions_registry.items(): + # Process the target string + starget = target.split(".") + if len(starget) < 2: + raise ValueError( + f"Invalid target {target}. At least two elements are required separated" + "by a period, indicating the node name and the method/attribute to " + "patch." + ) + node_name = starget.pop(0) + method = starget.pop() + + # Get the member to patch + node = obj = model.nodes[node_name] + for attr in starget: + obj = getattr(obj, attr) + + # Apply the patch + if item is not None: + obj = getattr(obj, method) + obj[item] = func(node) if is_attr else func + else: + setattr(obj, method, func(node) if is_attr else func) From cf5a5aef4f8d93d5f41101a8c5f0c63433e5745e Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Thu, 5 Sep 2024 07:04:56 +0100 Subject: [PATCH 34/59] Update docs --- wsimod/extensions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wsimod/extensions.py b/wsimod/extensions.py index bf56ea12..eb325b30 100644 --- a/wsimod/extensions.py +++ b/wsimod/extensions.py @@ -33,6 +33,10 @@ >>> def patch_default_pull_set_handler(self, vqip): >>> return {} +If patching a method of an attribute, the `is_attr` argument should be set to `True` and +the target should include the node name and the attribute name and the method name, all +separated by periods, eg. `node_name.attribute_name.method_name`. + It should be noted that the patched function should have the same signature as the original method or attribute, and the return type should be the same as well, otherwise there will be a runtime error. From 165d42a675c7ebb789b6435aaeab8ead8dee7d41 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Thu, 5 Sep 2024 07:53:04 +0100 Subject: [PATCH 35/59] Apply patches after loading config file. --- wsimod/orchestration/model.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 8e890175..50507249 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -157,6 +157,8 @@ def load(self, address, config_name="config.yml", overrides={}): config_name: overrides: """ + from ..extensions import apply_patches + with open(os.path.join(address, config_name), "r") as file: data = yaml.safe_load(file) @@ -191,6 +193,8 @@ def load(self, address, config_name="config.yml", overrides={}): if "dates" in data.keys(): self.dates = [to_datetime(x) for x in data["dates"]] + apply_patches(self) + def save(self, address, config_name="config.yml", compress=False): """Save the model object to a yaml file and input data to csv.gz format in the directory specified. From d457baf419628f707fed28d9649091b1f904e01c Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Thu, 5 Sep 2024 07:57:11 +0100 Subject: [PATCH 36/59] Update docstring in extensions.py --- wsimod/extensions.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wsimod/extensions.py b/wsimod/extensions.py index eb325b30..940a4f52 100644 --- a/wsimod/extensions.py +++ b/wsimod/extensions.py @@ -40,6 +40,12 @@ It should be noted that the patched function should have the same signature as the original method or attribute, and the return type should be the same as well, otherwise there will be a runtime error. + +Finally, the `apply_patches` is called within the `Model.load` method and will apply all +patches in the order they were registered. This means that users need to be careful with +the order of the patches in their extensions files, as they may have interdependencies. + +TODO: Update documentation on extensions files. """ from typing import Callable, Hashable From e3c5776c9392b453ba5d970c28595172ebe8556f Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 10 Sep 2024 12:37:18 +0100 Subject: [PATCH 37/59] :recycle: Add patched method when decorating. --- tests/test_extensions.py | 44 ++++++++++++++++++++++++++++++++++++++++ wsimod/extensions.py | 7 +++++-- 2 files changed, 49 insertions(+), 2 deletions(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index 6d698100..a92ec4ec 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -82,3 +82,47 @@ def arc_dummy_patch(): assert model.nodes[node.name].t == another_dummy_patch(node) assert model.nodes[node.name].pull_set_handler["default"] == yet_another_dummy_patch assert model.nodes[node.name].dummy_arc.arc_mass_balance == arc_dummy_patch + + +def assert_dict_almost_equal(d1: dict, d2: dict, tol: float | None = None): + """Check if two dictionaries are almost equal. + + Args: + d1 (dict): The first dictionary. + d2 (dict): The second dictionary. + tol (float | None, optional): Relative tolerance. Defaults to 1e-6, + `pytest.approx` default. + """ + for key in d1.keys(): + assert d1[key] == pytest.approx(d2[key], rel=tol) + + +def test_path_method_with_reuse(temp_extension_registry): + from functools import partial + from wsimod.arcs.arcs import Arc + from wsimod.extensions import apply_patches, register_node_patch + from wsimod.nodes.storage import Reservoir + from wsimod.orchestration.model import Model + + # Create a dummy model + node = Reservoir(name="dummy_node", initial_storage=10, capacity=10) + node.dummy_arc = Arc("dummy_arc", in_port=node, out_port=node) + + vq = node.pull_distributed({"volume": 5}) + assert_dict_almost_equal(vq, node.v_change_vqip(node.empty_vqip(), 5)) + + model = Model() + model.nodes[node.name] = node + + @register_node_patch("dummy_node.pull_distributed") + def new_pull_distributed(self, vqip, of_type=None, tag="default"): + return self._patched_pull_distributed(vqip, of_type=["Node"], tag=tag) + + # Apply the patches + apply_patches(model) + + # Check appropriate result + assert node.tank.storage["volume"] == 5 + vq = model.nodes[node.name].pull_distributed({"volume": 5}) + assert_dict_almost_equal(vq, node.empty_vqip()) + assert node.tank.storage["volume"] == 5 diff --git a/wsimod/extensions.py b/wsimod/extensions.py index 940a4f52..721abe60 100644 --- a/wsimod/extensions.py +++ b/wsimod/extensions.py @@ -47,7 +47,6 @@ TODO: Update documentation on extensions files. """ - from typing import Callable, Hashable from .orchestration.model import Model @@ -113,4 +112,8 @@ def apply_patches(model: Model) -> None: obj = getattr(obj, method) obj[item] = func(node) if is_attr else func else: - setattr(obj, method, func(node) if is_attr else func) + if is_attr: + setattr(obj, method, func(node)) + else: + setattr(obj, f"_patched_{method}", getattr(obj, method)) + setattr(obj, method, func.__get__(obj, obj.__class__)) From 80416c21bff7831be7f15ad2353340902ef3c065 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 10 Sep 2024 12:48:59 +0100 Subject: [PATCH 38/59] :white_check_mark: Fix failing tests --- tests/test_extensions.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index a92ec4ec..0741a223 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -78,10 +78,15 @@ def arc_dummy_patch(): apply_patches(model) # Verify that the patches are applied correctly - assert model.nodes[node.name].apply_overrides == dummy_patch + assert ( + model.nodes[node.name].apply_overrides.__qualname__ == dummy_patch.__qualname__ + ) assert model.nodes[node.name].t == another_dummy_patch(node) assert model.nodes[node.name].pull_set_handler["default"] == yet_another_dummy_patch - assert model.nodes[node.name].dummy_arc.arc_mass_balance == arc_dummy_patch + assert ( + model.nodes[node.name].dummy_arc.arc_mass_balance.__qualname__ + == arc_dummy_patch.__qualname__ + ) def assert_dict_almost_equal(d1: dict, d2: dict, tol: float | None = None): From dc5c216a447339d9e66b2be9ade60779a8448a91 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 10 Sep 2024 13:00:49 +0100 Subject: [PATCH 39/59] :memo: Updated docstring --- tests/test_extensions.py | 14 +++++++++++++- wsimod/extensions.py | 19 ++++++++++++------- 2 files changed, 25 insertions(+), 8 deletions(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index 0741a223..bdd6cd56 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -81,12 +81,24 @@ def arc_dummy_patch(): assert ( model.nodes[node.name].apply_overrides.__qualname__ == dummy_patch.__qualname__ ) + assert ( + model.nodes[node.name]._patched_apply_overrides.__qualname__ + == "Node.apply_overrides" + ) assert model.nodes[node.name].t == another_dummy_patch(node) - assert model.nodes[node.name].pull_set_handler["default"] == yet_another_dummy_patch + assert model.nodes[node.name]._patched_t == None + assert ( + model.nodes[node.name].pull_set_handler["default"].__qualname__ + == yet_another_dummy_patch.__qualname__ + ) assert ( model.nodes[node.name].dummy_arc.arc_mass_balance.__qualname__ == arc_dummy_patch.__qualname__ ) + assert ( + model.nodes[node.name].dummy_arc._patched_arc_mass_balance.__qualname__ + == "Arc.arc_mass_balance" + ) def assert_dict_almost_equal(d1: dict, d2: dict, tol: float | None = None): diff --git a/wsimod/extensions.py b/wsimod/extensions.py index 721abe60..aef55c6c 100644 --- a/wsimod/extensions.py +++ b/wsimod/extensions.py @@ -39,7 +39,13 @@ It should be noted that the patched function should have the same signature as the original method or attribute, and the return type should be the same as well, otherwise -there will be a runtime error. +there will be a runtime error. In particular, the first argument of the patched function +should be the node object itself, which will typically be named `self`. + +The overridden method or attribute can be accessed within the patched function using the +`_patched_{method_name}` attribute of the object, eg. `self._patched_pull_distributed`. +The exception to this is when patching an item, in which case the original item is no +available to be used within the overriding function. Finally, the `apply_patches` is called within the `Model.load` method and will apply all patches in the order they were registered. This means that users need to be careful with @@ -110,10 +116,9 @@ def apply_patches(model: Model) -> None: # Apply the patch if item is not None: obj = getattr(obj, method) - obj[item] = func(node) if is_attr else func + obj[item] = func(node) if is_attr else func.__get__(obj, obj.__class__) else: - if is_attr: - setattr(obj, method, func(node)) - else: - setattr(obj, f"_patched_{method}", getattr(obj, method)) - setattr(obj, method, func.__get__(obj, obj.__class__)) + setattr(obj, f"_patched_{method}", getattr(obj, method)) + setattr( + obj, method, func(node) if is_attr else func.__get__(obj, obj.__class__) + ) From 8082f1f05b4c41d3d6db9f977a52a1c37d630cae Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 10 Sep 2024 13:09:43 +0100 Subject: [PATCH 40/59] :recycle: Use a separate argument for the node name. --- tests/test_extensions.py | 18 +++++++++--------- wsimod/extensions.py | 41 +++++++++++++++++----------------------- 2 files changed, 26 insertions(+), 33 deletions(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index bdd6cd56..c3356d57 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -16,21 +16,21 @@ def test_register_node_patch(temp_extension_registry): from wsimod.extensions import extensions_registry, register_node_patch # Define a dummy function to patch a node method - @register_node_patch("node_name.method_name") + @register_node_patch("node_name", "method_name") def dummy_patch(): print("Patched method") # Check if the patch is registered correctly - assert extensions_registry[("node_name.method_name", None, False)] == dummy_patch + assert extensions_registry[("node_name", "method_name", None, False)] == dummy_patch # Another function with other arguments - @register_node_patch("node_name.method_name", item="default", is_attr=True) + @register_node_patch("node_name", "method_name", item="default", is_attr=True) def another_dummy_patch(): print("Another patched method") # Check if this other patch is registered correctly assert ( - extensions_registry[("node_name.method_name", "default", True)] + extensions_registry[("node_name", "method_name", "default", True)] == another_dummy_patch ) @@ -52,22 +52,22 @@ def test_apply_patches(temp_extension_registry): model.nodes[node.name] = node # 1. Patch a method - @register_node_patch("dummy_node.apply_overrides") + @register_node_patch("dummy_node", "apply_overrides") def dummy_patch(): pass # 2. Patch an attribute - @register_node_patch("dummy_node.t", is_attr=True) + @register_node_patch("dummy_node", "t", is_attr=True) def another_dummy_patch(node): return f"A pathced attribute for {node.name}" # 3. Patch a method with an item - @register_node_patch("dummy_node.pull_set_handler", item="default") + @register_node_patch("dummy_node", "pull_set_handler", item="default") def yet_another_dummy_patch(): pass # 4. Path a method of an attribute - @register_node_patch("dummy_node.dummy_arc.arc_mass_balance") + @register_node_patch("dummy_node", "dummy_arc.arc_mass_balance") def arc_dummy_patch(): pass @@ -131,7 +131,7 @@ def test_path_method_with_reuse(temp_extension_registry): model = Model() model.nodes[node.name] = node - @register_node_patch("dummy_node.pull_distributed") + @register_node_patch("dummy_node", "pull_distributed") def new_pull_distributed(self, vqip, of_type=None, tag="default"): return self._patched_pull_distributed(vqip, of_type=["Node"], tag=tag) diff --git a/wsimod/extensions.py b/wsimod/extensions.py index aef55c6c..1fa67387 100644 --- a/wsimod/extensions.py +++ b/wsimod/extensions.py @@ -6,10 +6,10 @@ Example of patching a method: -`empty_distributed` will be called instead of `my_node.pull_distributed`: +`empty_distributed` will be called instead of `pull_distributed` of "my_node": >>> from wsimod.extensions import register_node_patch, apply_patches - >>> @register_node_patch("my_node.pull_distributed") + >>> @register_node_patch("my_node", "pull_distributed") >>> def empty_distributed(self, vqip): >>> return {} @@ -18,24 +18,24 @@ Example of patching an attribute: -`10` will be assigned to `my_node.t`: +`10` will be assigned to `t`: - >>> @register_node_patch("my_node.t", is_attr=True) + >>> @register_node_patch("my_node", "t", is_attr=True) >>> def patch_t(node): >>> return 10 Example of patching an attribute item: `patch_default_pull_set_handler` will be assigned to -`my_node.pull_set_handler["default"]`: +`pull_set_handler["default"]`: - >>> @register_node_patch("my_node.pull_set_handler", item="default") + >>> @register_node_patch("my_node", "pull_set_handler", item="default") >>> def patch_default_pull_set_handler(self, vqip): >>> return {} If patching a method of an attribute, the `is_attr` argument should be set to `True` and -the target should include the node name and the attribute name and the method name, all -separated by periods, eg. `node_name.attribute_name.method_name`. +the target should include the attribute name and the method name, all separated by +periods, eg. `attribute_name.method_name`. It should be noted that the patched function should have the same signature as the original method or attribute, and the return type should be the same as well, otherwise @@ -61,15 +61,16 @@ def register_node_patch( - target: str, item: Hashable = None, is_attr: bool = False + node_name: str, target: str, item: Hashable = None, is_attr: bool = False ) -> Callable: """Register a function to patch a node method or any of its attributes. Args: - target (str): The target of the object to patch as a string with the node name - attribute, sub-attribute, etc. and finally method (or attribue) to replace, - sepparated with period, eg. `node_name.make_discharge` or - `node_name.sewer_tank.pull_storage_exact`. + node_name (str): The name of the node to patch. + target (str): The target of the object to patch in the form of a string with the + attribute, sub-attribute, etc. and finally method (or attribute) to replace, + sepparated with period, eg. `make_discharge` or + `sewer_tank.pull_storage_exact`. item (Hashable): Typically a string or an integer indicating the item to replace in the selected attribue, which should be a list or a dictionary. is_attr (bool): If True, the decorated function will be called when applying @@ -77,12 +78,12 @@ def register_node_patch( function itself. In this case, the only argument passed to the function is the node object. """ - target_id = (target, item, is_attr) + target_id = (node_name, target, item, is_attr) if target_id in extensions_registry: raise ValueError(f"Patch for {target} already registered.") def decorator(func): - extensions_registry[(target, item, is_attr)] = func + extensions_registry[target_id] = func return func return decorator @@ -96,16 +97,8 @@ def apply_patches(model: Model) -> None: Args: model (Model): The model to apply the patches to. """ - for (target, item, is_attr), func in extensions_registry.items(): - # Process the target string + for (node_name, target, item, is_attr), func in extensions_registry.items(): starget = target.split(".") - if len(starget) < 2: - raise ValueError( - f"Invalid target {target}. At least two elements are required separated" - "by a period, indicating the node name and the method/attribute to " - "patch." - ) - node_name = starget.pop(0) method = starget.pop() # Get the member to patch From d10bbb1f61dc1030479cc6b518bab4761378835e Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 10 Sep 2024 13:13:07 +0100 Subject: [PATCH 41/59] :rotating_light: Fix use of annotations incompatible with py3.9 --- tests/test_extensions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index c3356d57..0c598923 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -1,3 +1,5 @@ +from typing import Optional + import pytest @@ -101,7 +103,7 @@ def arc_dummy_patch(): ) -def assert_dict_almost_equal(d1: dict, d2: dict, tol: float | None = None): +def assert_dict_almost_equal(d1: dict, d2: dict, tol: Optional[float] = None): """Check if two dictionaries are almost equal. Args: From 6c7168d2e3dfad9ca4d6d366c9dd45d71a91042b Mon Sep 17 00:00:00 2001 From: Dobson Date: Tue, 10 Sep 2024 16:30:11 +0100 Subject: [PATCH 42/59] Update test_extensions.py Add handler behaviour tests --- tests/test_extensions.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index 0c598923..4faa8379 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -145,3 +145,36 @@ def new_pull_distributed(self, vqip, of_type=None, tag="default"): vq = model.nodes[node.name].pull_distributed({"volume": 5}) assert_dict_almost_equal(vq, node.empty_vqip()) assert node.tank.storage["volume"] == 5 + +def test_handler_extensions(temp_extension_registry): + from wsimod.arcs.arcs import Arc + from wsimod.extensions import ( + apply_patches, + extensions_registry, + register_node_patch, + ) + from wsimod.nodes import Node + from wsimod.orchestration.model import Model + + # Create a dummy model + node = Node("dummy_node") + node.dummy_arc = Arc("dummy_arc", in_port=node, out_port=node) + model = Model() + model.nodes[node.name] = node + + # 1. Patch a handler + @register_node_patch("dummy_node", "pull_check_handler", item="default") + def dummy_patch(*args, **kwargs): + return 'dummy_patch' + + # 2. Patch a handler with access to self + @register_node_patch("dummy_node", "pull_set_handler", item="default", is_attr=True) + def dummy_patch(self): + def f(vqip, *args, **kwargs): + return f"{self.name} - {vqip['volume']}" + return f + + apply_patches(model) + + assert node.pull_check() == 'dummy_patch' + assert node.pull_set({'volume': 1}) == 'dummy_node - 1' \ No newline at end of file From a6636cedc7d854d7533355d27514c5c51997ea31 Mon Sep 17 00:00:00 2001 From: Dobson Date: Tue, 10 Sep 2024 16:36:12 +0100 Subject: [PATCH 43/59] Fix precommit --- tests/test_extensions.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index 4faa8379..752de934 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -146,6 +146,7 @@ def new_pull_distributed(self, vqip, of_type=None, tag="default"): assert_dict_almost_equal(vq, node.empty_vqip()) assert node.tank.storage["volume"] == 5 + def test_handler_extensions(temp_extension_registry): from wsimod.arcs.arcs import Arc from wsimod.extensions import ( @@ -165,16 +166,17 @@ def test_handler_extensions(temp_extension_registry): # 1. Patch a handler @register_node_patch("dummy_node", "pull_check_handler", item="default") def dummy_patch(*args, **kwargs): - return 'dummy_patch' - + return "dummy_patch" + # 2. Patch a handler with access to self @register_node_patch("dummy_node", "pull_set_handler", item="default", is_attr=True) def dummy_patch(self): def f(vqip, *args, **kwargs): return f"{self.name} - {vqip['volume']}" + return f - + apply_patches(model) - assert node.pull_check() == 'dummy_patch' - assert node.pull_set({'volume': 1}) == 'dummy_node - 1' \ No newline at end of file + assert node.pull_check() == "dummy_patch" + assert node.pull_set({"volume": 1}) == "dummy_node - 1" From 566976ee6d905424ac5f34f7b2ac874ca551c087 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 10 Sep 2024 16:48:01 +0100 Subject: [PATCH 44/59] :bug: Fix node not being passed as first argument when item is present --- tests/test_extensions.py | 18 +++++------------- wsimod/extensions.py | 2 +- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/tests/test_extensions.py b/tests/test_extensions.py index 752de934..7f76f681 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -117,7 +117,6 @@ def assert_dict_almost_equal(d1: dict, d2: dict, tol: Optional[float] = None): def test_path_method_with_reuse(temp_extension_registry): - from functools import partial from wsimod.arcs.arcs import Arc from wsimod.extensions import apply_patches, register_node_patch from wsimod.nodes.storage import Reservoir @@ -149,11 +148,7 @@ def new_pull_distributed(self, vqip, of_type=None, tag="default"): def test_handler_extensions(temp_extension_registry): from wsimod.arcs.arcs import Arc - from wsimod.extensions import ( - apply_patches, - extensions_registry, - register_node_patch, - ) + from wsimod.extensions import apply_patches, register_node_patch from wsimod.nodes import Node from wsimod.orchestration.model import Model @@ -165,16 +160,13 @@ def test_handler_extensions(temp_extension_registry): # 1. Patch a handler @register_node_patch("dummy_node", "pull_check_handler", item="default") - def dummy_patch(*args, **kwargs): + def dummy_patch(self, *args, **kwargs): return "dummy_patch" # 2. Patch a handler with access to self - @register_node_patch("dummy_node", "pull_set_handler", item="default", is_attr=True) - def dummy_patch(self): - def f(vqip, *args, **kwargs): - return f"{self.name} - {vqip['volume']}" - - return f + @register_node_patch("dummy_node", "pull_set_handler", item="default") + def dummy_patch(self, vqip, *args, **kwargs): + return f"{self.name} - {vqip['volume']}" apply_patches(model) diff --git a/wsimod/extensions.py b/wsimod/extensions.py index 1fa67387..6d4a1be4 100644 --- a/wsimod/extensions.py +++ b/wsimod/extensions.py @@ -109,7 +109,7 @@ def apply_patches(model: Model) -> None: # Apply the patch if item is not None: obj = getattr(obj, method) - obj[item] = func(node) if is_attr else func.__get__(obj, obj.__class__) + obj[item] = func(node) if is_attr else func.__get__(node, node.__class__) else: setattr(obj, f"_patched_{method}", getattr(obj, method)) setattr( From e559868beaf283b25060bd02cfabc962c4dfc502 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Thu, 12 Sep 2024 15:08:49 +0100 Subject: [PATCH 45/59] Only keep updated orchestration part and bin else --- wsimod/orchestration/model.py | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 2493d207..d1665126 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -213,18 +213,9 @@ def load(self, address, config_name="config.yml", overrides={}): """ FLAG: - E.G. ADDITION FOR NEW CLASSES AND ORCHESTRATION + E.G. ADDITION FOR NEW ORCHESTRATION """ - if 'extensions' in data.keys(): - if 'new_classes' in data['extensions'].keys(): - import wsimod - for class_name, class_address in data['extensions']['new_classes'].items(): - sys.path.append(class_address) - new_node = __import__(class_name, fromlist=['']) - setattr(wsimod.nodes, class_name, getattr(new_node, class_name)) - self.nodes_type[class_name] = {} - if 'orchestration' in data.keys(): # Update orchestration self.orchestration = data['orchestration'] @@ -250,18 +241,6 @@ def load(self, address, config_name="config.yml", overrides={}): self.add_arcs(list(arcs.values())) if "dates" in data.keys(): self.dates = [to_datetime(x) for x in data["dates"]] - - """ - FLAG: - E.G. ADDITION FOR EXTENSIONS SCRIPT - - if you want this to work with 'model.save' functionality, you'll probably - need to store the extensions and new classes addresses in the model object - """ - if 'extensions' in data.keys(): - sys.path.append(data['extensions']['extension_file']) - from model_extensions import extensions - extensions(self) def save(self, address, config_name="config.yml", compress=False): """Save the model object to a yaml file and input data to csv.gz format in From 834d42ed534d9ecf96a398ddaf1ac9664db75609 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Thu, 12 Sep 2024 15:12:54 +0100 Subject: [PATCH 46/59] remove unrelated data and examples --- docs/demo/data/processed/Groundwater_h.py | 227 - docs/demo/data/processed/flows.csv | 13105 ---------------- docs/demo/data/processed/model_extensions.py | 54 - docs/demo/data/processed/settings_saved.yaml | 1634 -- docs/demo/data/processed/surfaces.csv | 2913 ---- docs/demo/data/processed/tanks.csv | 11649 -------------- .../data/processed/timeseries_data_saved.csv | 4369 ------ docs/demo/examples/luton_scripts/CSO.py | 14 - .../examples/luton_scripts/Groundwater_h.py | 228 - docs/demo/examples/luton_scripts/River_h.py | 491 - docs/demo/examples/luton_scripts/SewerCSO.py | 80 - .../luton_scripts/TimevaryingDemand.py | 37 - .../luton_scripts/model_extensions.py | 177 - ...tings_separatesewers_2cso_generalhead.yaml | 10225 ------------ 14 files changed, 45203 deletions(-) delete mode 100644 docs/demo/data/processed/Groundwater_h.py delete mode 100644 docs/demo/data/processed/flows.csv delete mode 100644 docs/demo/data/processed/model_extensions.py delete mode 100644 docs/demo/data/processed/settings_saved.yaml delete mode 100644 docs/demo/data/processed/surfaces.csv delete mode 100644 docs/demo/data/processed/tanks.csv delete mode 100644 docs/demo/data/processed/timeseries_data_saved.csv delete mode 100644 docs/demo/examples/luton_scripts/CSO.py delete mode 100644 docs/demo/examples/luton_scripts/Groundwater_h.py delete mode 100644 docs/demo/examples/luton_scripts/River_h.py delete mode 100644 docs/demo/examples/luton_scripts/SewerCSO.py delete mode 100644 docs/demo/examples/luton_scripts/TimevaryingDemand.py delete mode 100644 docs/demo/examples/luton_scripts/model_extensions.py delete mode 100644 docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml diff --git a/docs/demo/data/processed/Groundwater_h.py b/docs/demo/data/processed/Groundwater_h.py deleted file mode 100644 index 6cab4420..00000000 --- a/docs/demo/data/processed/Groundwater_h.py +++ /dev/null @@ -1,227 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 24 10:09:12 2023 - -@author: leyan -""" - -from wsimod.nodes.storage import Storage -from wsimod.core import constants - -class Groundwater_h(Storage): - def __init__(self, - h_initial = 200, - z_surface = 250, - s = 0.1, - c_riverbed = 0, - c_aquifer = {}, - infiltration_threshold = 1, - infiltration_pct = 0, - data_input_dict = {}, - **kwargs): - # TODO can infiltrate to sewers? - """A head-driven storage for groundwater. Can also infiltrate to sewers. - - Args: - h_initial (float, compulsory): initial groundwater head (m asl). Defaults to 200. - z_surface (float, compulsoty): elevation of land surface (m asl), - which determines the maximum storage capacity. Default to 250. - s (float, optional): storage coefficient (-). Defaults to 0.1. - A (float, compulsory): area of the groundwater body (polygon) (m2). Defaults to 0. - c_riverbed (float, compulsory): the river bed conductance - (which could be taken from the BGWM parameterisation) (1/day). Defaults to 0. - data_input_dict (dict, optional): Dictionary of data inputs relevant for - the node (though I don't think it is used). Defaults to {}. - c_aquifer (dict, optional): aquifer conductance, which can be - calculated from parameterisation of British Groundwater Model - for any polygonal mesh (m2/day). Defaults to {}. - - Functions intended to call in orchestration: - infiltrate (before sewers are discharged) - - distribute - - Key assumptions: - - Conceptualises groundwater as a tank. The total volume of storage is controlled by a storage coefficient. - - Exchange flow between groundwater bodies is driven by head difference through an aquifer conductance. - - River-groundwater interactions are bi-directional, which is determined by the head difference. - - Infiltration to `sewer.py/Sewer` nodes occurs when the storage - in the tank is greater than a specified threshold, at a rate - proportional to the sqrt of volume above the threshold. (Note, - this behaviour is __not validated__ and a high uncertainty process - in general) - - If `decays` are provided to model water quality transformations, - see `core.py/DecayObj`. - - Input data and parameter requirements: - - Groundwater tank `capacity`, `area`, and `datum`. - _Units_: cubic metres, squared metres, metres - - Infiltration behaviour determined by an `infiltration_threshold` - and `infiltration_pct`. - _Units_: proportion of capacity - - Optional dictionary of decays with pollutants as keys and decay - parameters (a constant and a temperature sensitivity exponent) - as values. - _Units_: - - """ - self.h = h_initial - self.z_surface = z_surface - self.s = s - self.c_riverbed = c_riverbed - self.c_aquifer = c_aquifer - # - self.infiltration_threshold = infiltration_threshold - self.infiltration_pct = infiltration_pct - #TODO not used data_input - self.data_input_dict = data_input_dict - super().__init__(**kwargs) - - # update tank - self.tank.specific_yield = self.s - ########################################################################################### - def wrapper(self): - def get_head(#self, - datum = None, non_head_storage = 0): - """Area volume calculation for head calcuations. Datum and storage - that does not contribute to head can be specified - - Args: - datum (float, optional): Value to add to pressure head in tank. - Defaults to None. - non_head_storage (float, optional): Amount of storage that does - not contribute to generation of head. The tank must exceed - this value to generate any pressure head. Defaults to 0. - - Returns: - head (float): Total head in tank - - Examples: - >>> my_tank = Tank(datum = 10, initial_storage = 5, capacity = 10, area = 2) - >>> print(my_tank.get_head()) - 12.5 - >>> print(my_tank.get_head(non_head_storage = 1)) - 12 - >>> print(my_tank.get_head(non_head_storage = 1, datum = 0)) - 2 - - """ - #If datum not provided use object datum - if datum is None: - datum = self.datum - - #Calculate pressure head generating storage - head_storage = max(self.storage['volume'] - non_head_storage, 0) - - #Perform head calculation - head = head_storage / self.area / self.specific_yield + datum - - return head - return get_head - - self.tank.get_head = wrapper(self.tank) - ########################################################################################### - self.tank.storage['volume'] = (self.h - self.datum) * self.area * self.s # [m3] - self.tank.capacity = (self.z_surface - self.datum) * self.area * self.s # [m3] - #Update handlers - self.push_check_handler['Groundwater_h'] = self.push_check_head - self.push_check_handler[('River', 'head')] = self.push_check_head - self.push_check_handler[('River', 'c_riverbed')] = self.push_check_criverbed - - def distribute_gw_rw(self): - ## pumping rate via pull_request through arcs - ## recharge rate via push_request through arcs - """Calculate exchange between Rivers and Groundwater_h - """ - ## river-groundwater exchange - # query river elevation - # list of arcs that connect with gw bodies - _, arcs = self.get_direction_arcs(direction='push', of_type=['River']) - # if there is only one river arc - if len(arcs) == 1: - arc = arcs[0] - z_river = arc.send_push_check(tag=('Groundwater_h', 'datum'))['volume'] # [m asl] - length = arc.send_push_check(tag=('Groundwater_h', 'length'))['volume'] # [m] - width = arc.send_push_check(tag=('Groundwater_h', 'width'))['volume'] # [m] - # calculate riverbed hydraulic conductance - C_riverbed = self.c_riverbed * length * width # [m2/day] - # calculate river-gw flux - flux = C_riverbed * (self.h - z_river) # [m3/day] - if flux > 0: - to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards - retained = self.push_distributed(to_send, of_type = ['River']) - _ = self.tank.push_storage(retained, force = True) - if retained['volume'] > constants.FLOAT_ACCURACY: - print('Groundwater to river: gw baseflow unable to push into river at '+self.name) - # else: wait river to discharge back - # TODO may need consider when one river connects to multiple gws - elif len(arcs) > 1: - print('WARNING: '+self.name+' connects with more than one river - cannot model this at this stage and please re-setup the model') - - def distribute_gw_gw(self): - """Calculate exchange between Groundwater_h and Groundwater_h - """ - ## groundwater-groundwater exchange - # list of arcs that connect with gw bodies - _, arcs = self.get_direction_arcs(direction='push', of_type=['Groundwater_h']) - for arc in arcs: - h = arc.send_push_check(tag='Groundwater_h')['volume'] # check the head of the adjacent groundwater_h - # if h < self.h, there will be flux discharged outside - if h < self.h: - # get the c_aquifer [m2/day] - adj_node_name = arc.out_port.name # get the name of the adjacent gw_h - if adj_node_name in self.c_aquifer.keys(): - c_aquifer = self.c_aquifer[adj_node_name] - else: - print('ERROR: the name of '+adj_node_name+' is not consistent with the c_aquifer input in '+self.name+', please recheck') - # calculate the flux - flux = c_aquifer * (self.h - h) # [m3/day] - if flux > 0: - to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards - retained = arc.send_push_request(to_send) - _ = self.tank.push_storage(retained, force = True) - if retained['volume'] > constants.FLOAT_ACCURACY: - print('Groundwater to groundwater: gw baseflow unable to push from '+self.name+' into '+adj_node_name) - # if h > self.h, wait the adjacent node to push flux here - - def infiltrate(self): - # TODO could use head-drive approach here - """Calculate amount of water available for infiltration and send to sewers - """ - #Calculate infiltration - avail = self.tank.get_avail()['volume'] - avail = max(avail - self.tank.capacity * self.infiltration_threshold, 0) - avail = (avail * self.infiltration_pct) ** 0.5 - - #Push to sewers - to_send = self.tank.pull_storage({'volume' : avail}) - retained = self.push_distributed(to_send, of_type = 'Sewer') - _ = self.tank.push_storage(retained, force = True) - #Any not sent is left in tank - if retained['volume'] > constants.FLOAT_ACCURACY: - #print('unable to infiltrate') - pass - - def push_check_head(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.h - """ - reply = self.empty_vqip() - reply['volume'] = self.h - - return reply - - def push_check_criverbed(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.c_riverbed - """ - reply = self.empty_vqip() - reply['volume'] = self.c_riverbed - - return reply - - def end_timestep(self): - """Update tank states & self.h - """ - self.tank.end_timestep() - self.h = self.tank.get_head() - \ No newline at end of file diff --git a/docs/demo/data/processed/flows.csv b/docs/demo/data/processed/flows.csv deleted file mode 100644 index 219246a6..00000000 --- a/docs/demo/data/processed/flows.csv +++ /dev/null @@ -1,13105 +0,0 @@ -,arc,flow,time,do,org-phosphorus,phosphate,ammonia,solids,bod,cod,ph,temperature,nitrate,nitrite,org-nitrogen -0,urban_drainage,0.04,2009-03-03,0.0,0.0,3.076923076923077e-07,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 -1,percolation,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,runoff,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3,storm_outflow,0.04,2009-03-03,0.0,0.0,3.076923076923077e-07,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 -4,baseflow,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5,catchment_outflow,0.04,2009-03-03,0.0,0.0,3.076923076923077e-07,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 -6,reservoir_outflow,0.1,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7,gw1_gw2,0.0,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8,gw2_gw1,0.25,2009-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9,urban_drainage,0.04,2009-03-04,0.0,0.0,9.534127843986998e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -10,percolation,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11,runoff,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12,storm_outflow,0.04,2009-03-04,0.0,0.0,9.534127843986998e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -13,baseflow,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -14,catchment_outflow,0.04,2009-03-04,0.0,0.0,9.534127843986998e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -15,reservoir_outflow,0.1,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -16,gw1_gw2,0.0,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -17,gw2_gw1,0.24833333333333332,2009-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -18,urban_drainage,0.010999999999999992,2009-03-05,0.0,0.0,1.7388949079089924e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -19,percolation,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -20,runoff,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -21,storm_outflow,0.010999999999999992,2009-03-05,0.0,0.0,1.7388949079089924e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -22,baseflow,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -23,catchment_outflow,0.010999999999999992,2009-03-05,0.0,0.0,1.7388949079089924e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -24,reservoir_outflow,0.10000000000000002,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -25,gw1_gw2,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -26,gw2_gw1,0.24667777777777766,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -27,urban_drainage,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -28,percolation,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -29,runoff,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -30,storm_outflow,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -31,baseflow,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -32,catchment_outflow,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -33,reservoir_outflow,0.1,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -34,gw1_gw2,0.0,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -35,gw2_gw1,0.24503325925925906,2009-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -36,urban_drainage,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -37,percolation,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -38,runoff,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -39,storm_outflow,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -40,baseflow,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -41,catchment_outflow,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -42,reservoir_outflow,0.09999999999999999,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -43,gw1_gw2,0.0,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -44,gw2_gw1,0.24339970419753065,2009-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -45,urban_drainage,0.017,2009-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -46,percolation,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -47,runoff,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -48,storm_outflow,0.017,2009-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -49,baseflow,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -50,catchment_outflow,0.017,2009-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -51,reservoir_outflow,0.09999999999999999,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -52,gw1_gw2,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -53,gw2_gw1,0.24177703950288043,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -54,urban_drainage,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -55,percolation,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -56,runoff,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -57,storm_outflow,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -58,baseflow,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -59,catchment_outflow,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -60,reservoir_outflow,0.1,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -61,gw1_gw2,0.0,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -62,gw2_gw1,0.24016519257286112,2009-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -63,urban_drainage,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -64,percolation,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -65,runoff,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -66,storm_outflow,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -67,baseflow,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -68,catchment_outflow,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -69,reservoir_outflow,0.1,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -70,gw1_gw2,0.0,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -71,gw2_gw1,0.238564091289042,2009-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -72,urban_drainage,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -73,percolation,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -74,runoff,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -75,storm_outflow,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -76,baseflow,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -77,catchment_outflow,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -78,reservoir_outflow,0.1,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -79,gw1_gw2,0.0,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -80,gw2_gw1,0.23697366401378162,2009-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -81,urban_drainage,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -82,percolation,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -83,runoff,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -84,storm_outflow,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -85,baseflow,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -86,catchment_outflow,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -87,reservoir_outflow,0.1,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -88,gw1_gw2,0.0,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -89,gw2_gw1,0.2353938395870233,2009-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -90,urban_drainage,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -91,percolation,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -92,runoff,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -93,storm_outflow,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -94,baseflow,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -95,catchment_outflow,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -96,reservoir_outflow,0.1,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -97,gw1_gw2,0.0,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -98,gw2_gw1,0.2338245473231096,2009-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -99,urban_drainage,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -100,percolation,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -101,runoff,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -102,storm_outflow,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -103,baseflow,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -104,catchment_outflow,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -105,reservoir_outflow,0.09999999999999999,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -106,gw1_gw2,0.0,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -107,gw2_gw1,0.23226571700762236,2009-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -108,urban_drainage,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -109,percolation,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -110,runoff,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -111,storm_outflow,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -112,baseflow,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -113,catchment_outflow,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -114,reservoir_outflow,0.10000000000000002,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -115,gw1_gw2,0.0,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -116,gw2_gw1,0.2307172788942382,2009-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -117,urban_drainage,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -118,percolation,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -119,runoff,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -120,storm_outflow,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -121,baseflow,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -122,catchment_outflow,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -123,reservoir_outflow,0.1,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -124,gw1_gw2,0.0,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -125,gw2_gw1,0.22917916370160996,2009-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -126,urban_drainage,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -127,percolation,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -128,runoff,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -129,storm_outflow,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -130,baseflow,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -131,catchment_outflow,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -132,reservoir_outflow,0.1,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -133,gw1_gw2,0.0,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -134,gw2_gw1,0.22765130261026592,2009-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -135,urban_drainage,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -136,percolation,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -137,runoff,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -138,storm_outflow,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -139,baseflow,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -140,catchment_outflow,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -141,reservoir_outflow,0.1,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -142,gw1_gw2,0.0,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -143,gw2_gw1,0.2261336272595308,2009-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -144,urban_drainage,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -145,percolation,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -146,runoff,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -147,storm_outflow,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -148,baseflow,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -149,catchment_outflow,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -150,reservoir_outflow,0.1,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -151,gw1_gw2,0.0,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -152,gw2_gw1,0.22462606974446742,2009-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -153,urban_drainage,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -154,percolation,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -155,runoff,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -156,storm_outflow,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -157,baseflow,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -158,catchment_outflow,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -159,reservoir_outflow,0.1,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -160,gw1_gw2,0.0,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -161,gw2_gw1,0.2231285626128374,2009-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -162,urban_drainage,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -163,percolation,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -164,runoff,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -165,storm_outflow,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -166,baseflow,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -167,catchment_outflow,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -168,reservoir_outflow,0.1,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -169,gw1_gw2,0.0,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -170,gw2_gw1,0.22164103886208528,2009-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -171,urban_drainage,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -172,percolation,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -173,runoff,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -174,storm_outflow,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -175,baseflow,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -176,catchment_outflow,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -177,reservoir_outflow,0.1,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -178,gw1_gw2,0.0,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -179,gw2_gw1,0.2201634319363381,2009-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -180,urban_drainage,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -181,percolation,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -182,runoff,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -183,storm_outflow,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -184,baseflow,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -185,catchment_outflow,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -186,reservoir_outflow,0.1,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -187,gw1_gw2,0.0,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -188,gw2_gw1,0.21869567572342924,2009-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -189,urban_drainage,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -190,percolation,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -191,runoff,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -192,storm_outflow,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -193,baseflow,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -194,catchment_outflow,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -195,reservoir_outflow,0.1,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -196,gw1_gw2,0.0,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -197,gw2_gw1,0.21723770455193955,2009-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -198,urban_drainage,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -199,percolation,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -200,runoff,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -201,storm_outflow,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -202,baseflow,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -203,catchment_outflow,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -204,reservoir_outflow,0.1,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -205,gw1_gw2,0.0,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -206,gw2_gw1,0.21578945318826,2009-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -207,urban_drainage,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -208,percolation,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -209,runoff,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -210,storm_outflow,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -211,baseflow,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -212,catchment_outflow,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -213,reservoir_outflow,0.1,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -214,gw1_gw2,0.0,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -215,gw2_gw1,0.21435085683367144,2009-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -216,urban_drainage,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -217,percolation,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -218,runoff,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -219,storm_outflow,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -220,baseflow,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -221,catchment_outflow,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -222,reservoir_outflow,0.1,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -223,gw1_gw2,0.0,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -224,gw2_gw1,0.21292185112144715,2009-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -225,urban_drainage,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -226,percolation,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -227,runoff,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -228,storm_outflow,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -229,baseflow,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -230,catchment_outflow,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -231,reservoir_outflow,0.1,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -232,gw1_gw2,0.0,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -233,gw2_gw1,0.21150237211397072,2009-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -234,urban_drainage,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -235,percolation,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -236,runoff,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -237,storm_outflow,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -238,baseflow,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -239,catchment_outflow,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -240,reservoir_outflow,0.1,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -241,gw1_gw2,0.0,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -242,gw2_gw1,0.21009235629987755,2009-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -243,urban_drainage,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -244,percolation,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -245,runoff,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -246,storm_outflow,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -247,baseflow,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -248,catchment_outflow,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -249,reservoir_outflow,0.09999999999999999,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -250,gw1_gw2,0.0,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -251,gw2_gw1,0.2086917405912118,2009-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -252,urban_drainage,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -253,percolation,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -254,runoff,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -255,storm_outflow,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -256,baseflow,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -257,catchment_outflow,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -258,reservoir_outflow,0.1,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -259,gw1_gw2,0.0,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -260,gw2_gw1,0.2073004623206038,2009-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -261,urban_drainage,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -262,percolation,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -263,runoff,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -264,storm_outflow,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -265,baseflow,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -266,catchment_outflow,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -267,reservoir_outflow,0.1,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -268,gw1_gw2,0.0,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -269,gw2_gw1,0.20591845923846624,2009-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -270,urban_drainage,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -271,percolation,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -272,runoff,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -273,storm_outflow,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -274,baseflow,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -275,catchment_outflow,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -276,reservoir_outflow,0.09999999999999999,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -277,gw1_gw2,0.0,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -278,gw2_gw1,0.20454566951020975,2009-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -279,urban_drainage,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -280,percolation,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -281,runoff,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -282,storm_outflow,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -283,baseflow,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -284,catchment_outflow,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -285,reservoir_outflow,0.10000000000000002,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -286,gw1_gw2,0.0,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -287,gw2_gw1,0.2031820317134751,2009-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -288,urban_drainage,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -289,percolation,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -290,runoff,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -291,storm_outflow,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -292,baseflow,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -293,catchment_outflow,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -294,reservoir_outflow,0.10000000000000002,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -295,gw1_gw2,0.0,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -296,gw2_gw1,0.2018274848353853,2009-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -297,urban_drainage,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -298,percolation,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -299,runoff,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -300,storm_outflow,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -301,baseflow,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -302,catchment_outflow,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -303,reservoir_outflow,0.1,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -304,gw1_gw2,0.0,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -305,gw2_gw1,0.2004819682698159,2009-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -306,urban_drainage,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -307,percolation,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -308,runoff,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -309,storm_outflow,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -310,baseflow,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -311,catchment_outflow,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -312,reservoir_outflow,0.1,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -313,gw1_gw2,0.0,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -314,gw2_gw1,0.19914542181468367,2009-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -315,urban_drainage,0.029999999999999995,2009-04-07,0.0,0.0,3.0000000000000008e-05,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -316,percolation,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -317,runoff,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -318,storm_outflow,0.029999999999999995,2009-04-07,0.0,0.0,3.0000000000000008e-05,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -319,baseflow,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -320,catchment_outflow,0.029999999999999995,2009-04-07,0.0,0.0,3.0000000000000008e-05,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -321,reservoir_outflow,0.09999999999999999,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -322,gw1_gw2,0.0,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -323,gw2_gw1,0.19781778566925257,2009-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -324,urban_drainage,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -325,percolation,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -326,runoff,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -327,storm_outflow,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -328,baseflow,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -329,catchment_outflow,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -330,reservoir_outflow,0.1,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -331,gw1_gw2,0.0,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -332,gw2_gw1,0.1964990004314575,2009-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -333,urban_drainage,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -334,percolation,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -335,runoff,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -336,storm_outflow,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -337,baseflow,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -338,catchment_outflow,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -339,reservoir_outflow,0.1,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -340,gw1_gw2,0.0,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -341,gw2_gw1,0.19518900709524767,2009-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -342,urban_drainage,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -343,percolation,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -344,runoff,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -345,storm_outflow,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -346,baseflow,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -347,catchment_outflow,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -348,reservoir_outflow,0.1,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -349,gw1_gw2,0.0,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -350,gw2_gw1,0.19388774704794623,2009-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -351,urban_drainage,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -352,percolation,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -353,runoff,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -354,storm_outflow,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -355,baseflow,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -356,catchment_outflow,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -357,reservoir_outflow,0.1,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -358,gw1_gw2,0.0,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -359,gw2_gw1,0.19259516206762664,2009-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -360,urban_drainage,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -361,percolation,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -362,runoff,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -363,storm_outflow,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -364,baseflow,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -365,catchment_outflow,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -366,reservoir_outflow,0.1,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -367,gw1_gw2,0.0,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -368,gw2_gw1,0.19131119432050908,2009-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -369,urban_drainage,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -370,percolation,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -371,runoff,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -372,storm_outflow,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -373,baseflow,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -374,catchment_outflow,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -375,reservoir_outflow,0.1,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -376,gw1_gw2,0.0,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -377,gw2_gw1,0.19003578635837232,2009-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -378,urban_drainage,0.031000000000000003,2009-04-14,0.0,0.0,7.0000000000000024e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 -379,percolation,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -380,runoff,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -381,storm_outflow,0.031000000000000003,2009-04-14,0.0,0.0,7.0000000000000024e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 -382,baseflow,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -383,catchment_outflow,0.031000000000000003,2009-04-14,0.0,0.0,7.0000000000000024e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 -384,reservoir_outflow,0.09999999999999999,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -385,gw1_gw2,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -386,gw2_gw1,0.18876888111598317,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -387,urban_drainage,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -388,percolation,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -389,runoff,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -390,storm_outflow,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -391,baseflow,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -392,catchment_outflow,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -393,reservoir_outflow,0.1,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -394,gw1_gw2,0.0,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -395,gw2_gw1,0.18751042190854325,2009-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -396,urban_drainage,0.04,2009-04-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -397,percolation,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -398,runoff,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -399,storm_outflow,0.04,2009-04-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -400,baseflow,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -401,catchment_outflow,0.04,2009-04-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -402,reservoir_outflow,0.1,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -403,gw1_gw2,0.0,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -404,gw2_gw1,0.18626035242915295,2009-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -405,urban_drainage,0.011000000000000005,2009-04-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -406,percolation,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -407,runoff,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -408,storm_outflow,0.011000000000000005,2009-04-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -409,baseflow,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -410,catchment_outflow,0.011000000000000005,2009-04-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -411,reservoir_outflow,0.10000000000000002,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -412,gw1_gw2,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -413,gw2_gw1,0.1850186167462921,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -414,urban_drainage,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -415,percolation,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -416,runoff,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -417,storm_outflow,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -418,baseflow,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -419,catchment_outflow,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -420,reservoir_outflow,0.1,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -421,gw1_gw2,0.0,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -422,gw2_gw1,0.1837851593013168,2009-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -423,urban_drainage,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -424,percolation,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -425,runoff,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -426,storm_outflow,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -427,baseflow,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -428,catchment_outflow,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -429,reservoir_outflow,0.1,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -430,gw1_gw2,0.0,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -431,gw2_gw1,0.18255992490597467,2009-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -432,urban_drainage,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -433,percolation,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -434,runoff,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -435,storm_outflow,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -436,baseflow,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -437,catchment_outflow,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -438,reservoir_outflow,0.1,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -439,gw1_gw2,0.0,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -440,gw2_gw1,0.1813428587399349,2009-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -441,urban_drainage,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -442,percolation,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -443,runoff,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -444,storm_outflow,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -445,baseflow,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -446,catchment_outflow,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -447,reservoir_outflow,0.1,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -448,gw1_gw2,0.0,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -449,gw2_gw1,0.18013390634833534,2009-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -450,urban_drainage,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -451,percolation,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -452,runoff,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -453,storm_outflow,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -454,baseflow,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -455,catchment_outflow,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -456,reservoir_outflow,0.1,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -457,gw1_gw2,0.0,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -458,gw2_gw1,0.17893301363934633,2009-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -459,urban_drainage,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -460,percolation,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -461,runoff,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -462,storm_outflow,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -463,baseflow,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -464,catchment_outflow,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -465,reservoir_outflow,0.10000000000000002,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -466,gw1_gw2,0.0,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -467,gw2_gw1,0.17774012688175092,2009-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -468,urban_drainage,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -469,percolation,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -470,runoff,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -471,storm_outflow,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -472,baseflow,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -473,catchment_outflow,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -474,reservoir_outflow,0.1,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -475,gw1_gw2,0.0,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -476,gw2_gw1,0.1765551927025392,2009-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -477,urban_drainage,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -478,percolation,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -479,runoff,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -480,storm_outflow,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -481,baseflow,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -482,catchment_outflow,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -483,reservoir_outflow,0.1,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -484,gw1_gw2,0.0,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -485,gw2_gw1,0.17537815808452228,2009-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -486,urban_drainage,0.036,2009-04-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 -487,percolation,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -488,runoff,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -489,storm_outflow,0.036,2009-04-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 -490,baseflow,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -491,catchment_outflow,0.036,2009-04-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 -492,reservoir_outflow,0.09999999999999999,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -493,gw1_gw2,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -494,gw2_gw1,0.17420897036395877,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -495,urban_drainage,0.034,2009-04-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -496,percolation,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -497,runoff,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -498,storm_outflow,0.034,2009-04-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -499,baseflow,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -500,catchment_outflow,0.034,2009-04-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -501,reservoir_outflow,0.1,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -502,gw1_gw2,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -503,gw2_gw1,0.17304757722819888,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -504,urban_drainage,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -505,percolation,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -506,runoff,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -507,storm_outflow,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -508,baseflow,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -509,catchment_outflow,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -510,reservoir_outflow,0.1,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -511,gw1_gw2,0.0,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -512,gw2_gw1,0.17189392671334427,2009-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -513,urban_drainage,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -514,percolation,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -515,runoff,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -516,storm_outflow,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -517,baseflow,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -518,catchment_outflow,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -519,reservoir_outflow,0.055500000000008605,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -520,gw1_gw2,0.0,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -521,gw2_gw1,0.17074796720192192,2009-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -522,urban_drainage,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -523,percolation,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -524,runoff,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -525,storm_outflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -526,baseflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -527,catchment_outflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -528,reservoir_outflow,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -529,gw1_gw2,0.0,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -530,gw2_gw1,0.16960964742057583,2009-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -531,urban_drainage,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -532,percolation,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -533,runoff,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -534,storm_outflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -535,baseflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -536,catchment_outflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -537,reservoir_outflow,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -538,gw1_gw2,0.0,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -539,gw2_gw1,0.1684789164377719,2009-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -540,urban_drainage,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -541,percolation,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -542,runoff,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -543,storm_outflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -544,baseflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -545,catchment_outflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -546,reservoir_outflow,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -547,gw1_gw2,0.0,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -548,gw2_gw1,0.16735572366152002,2009-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -549,urban_drainage,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -550,percolation,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -551,runoff,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -552,storm_outflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -553,baseflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -554,catchment_outflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -555,reservoir_outflow,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -556,gw1_gw2,0.0,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -557,gw2_gw1,0.16624001883711,2009-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -558,urban_drainage,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -559,percolation,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -560,runoff,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -561,storm_outflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -562,baseflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -563,catchment_outflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -564,reservoir_outflow,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -565,gw1_gw2,0.0,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -566,gw2_gw1,0.16513175204486252,2009-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -567,urban_drainage,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -568,percolation,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -569,runoff,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -570,storm_outflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -571,baseflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -572,catchment_outflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -573,reservoir_outflow,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -574,gw1_gw2,0.0,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -575,gw2_gw1,0.1640308736978966,2009-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -576,urban_drainage,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -577,percolation,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -578,runoff,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -579,storm_outflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -580,baseflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -581,catchment_outflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -582,reservoir_outflow,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -583,gw1_gw2,0.0,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -584,gw2_gw1,0.1629373345399107,2009-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -585,urban_drainage,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -586,percolation,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -587,runoff,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -588,storm_outflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -589,baseflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -590,catchment_outflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -591,reservoir_outflow,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -592,gw1_gw2,0.0,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -593,gw2_gw1,0.16185108564297793,2009-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -594,urban_drainage,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -595,percolation,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -596,runoff,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -597,storm_outflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -598,baseflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -599,catchment_outflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -600,reservoir_outflow,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -601,gw1_gw2,0.0,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -602,gw2_gw1,0.160772078405358,2009-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -603,urban_drainage,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -604,percolation,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -605,runoff,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -606,storm_outflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -607,baseflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -608,catchment_outflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -609,reservoir_outflow,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -610,gw1_gw2,0.0,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -611,gw2_gw1,0.1597002645493225,2009-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -612,urban_drainage,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -613,percolation,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -614,runoff,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -615,storm_outflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -616,baseflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -617,catchment_outflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -618,reservoir_outflow,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -619,gw1_gw2,0.0,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -620,gw2_gw1,0.1586355961189937,2009-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -621,urban_drainage,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -622,percolation,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -623,runoff,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -624,storm_outflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -625,baseflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -626,catchment_outflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -627,reservoir_outflow,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -628,gw1_gw2,0.0,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -629,gw2_gw1,0.15757802547820055,2009-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -630,urban_drainage,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -631,percolation,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -632,runoff,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -633,storm_outflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -634,baseflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -635,catchment_outflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -636,reservoir_outflow,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -637,gw1_gw2,0.0,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -638,gw2_gw1,0.15652750530834603,2009-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -639,urban_drainage,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -640,percolation,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -641,runoff,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -642,storm_outflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -643,baseflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -644,catchment_outflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -645,reservoir_outflow,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -646,gw1_gw2,0.0,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -647,gw2_gw1,0.1554839886062901,2009-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -648,urban_drainage,0.04,2009-05-14,0.0,0.0,5.811965811965813e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -649,percolation,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -650,runoff,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -651,storm_outflow,0.04,2009-05-14,0.0,0.0,5.811965811965813e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -652,baseflow,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -653,catchment_outflow,0.04,2009-05-14,0.0,0.0,5.811965811965813e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -654,reservoir_outflow,0.0585,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -655,gw1_gw2,0.0,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -656,gw2_gw1,0.15444742868224834,2009-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -657,urban_drainage,0.04,2009-05-15,0.0,0.0,6.866498134103769e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -658,percolation,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -659,runoff,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -660,storm_outflow,0.04,2009-05-15,0.0,0.0,6.866498134103769e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -661,baseflow,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -662,catchment_outflow,0.04,2009-05-15,0.0,0.0,6.866498134103769e-06,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -663,reservoir_outflow,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -664,gw1_gw2,0.0,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -665,gw2_gw1,0.15341777915769983,2009-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -666,urban_drainage,0.04,2009-05-16,0.0,0.0,5.619143159049264e-06,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 -667,percolation,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -668,runoff,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -669,storm_outflow,0.04,2009-05-16,0.0,0.0,5.619143159049264e-06,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 -670,baseflow,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -671,catchment_outflow,0.04,2009-05-16,0.0,0.0,5.619143159049264e-06,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 -672,reservoir_outflow,0.006999999999999999,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -673,gw1_gw2,0.0,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -674,gw2_gw1,0.15239499396331546,2009-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -675,urban_drainage,0.04,2009-05-17,0.0,0.0,1.335210113632281e-06,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 -676,percolation,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -677,runoff,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -678,storm_outflow,0.04,2009-05-17,0.0,0.0,1.335210113632281e-06,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 -679,baseflow,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -680,catchment_outflow,0.04,2009-05-17,0.0,0.0,1.335210113632281e-06,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 -681,reservoir_outflow,0.023,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -682,gw1_gw2,0.0,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -683,gw2_gw1,0.15137902733689323,2009-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -684,urban_drainage,0.04,2009-05-18,0.0,0.0,9.765591294634837e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 -685,percolation,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -686,runoff,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -687,storm_outflow,0.04,2009-05-18,0.0,0.0,9.765591294634837e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 -688,baseflow,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -689,catchment_outflow,0.04,2009-05-18,0.0,0.0,9.765591294634837e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 -690,reservoir_outflow,0.0225,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -691,gw1_gw2,0.0,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -692,gw2_gw1,0.15036983382131394,2009-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -693,urban_drainage,0.031,2009-05-19,0.0,0.0,1.3906236517853935e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -694,percolation,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -695,runoff,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -696,storm_outflow,0.031,2009-05-19,0.0,0.0,1.3906236517853935e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -697,baseflow,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -698,catchment_outflow,0.031,2009-05-19,0.0,0.0,1.3906236517853935e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -699,reservoir_outflow,0.0075,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -700,gw1_gw2,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -701,gw2_gw1,0.14936736826250546,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -702,urban_drainage,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -703,percolation,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -704,runoff,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -705,storm_outflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -706,baseflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -707,catchment_outflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -708,reservoir_outflow,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -709,gw1_gw2,0.0,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -710,gw2_gw1,0.148371585807422,2009-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -711,urban_drainage,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -712,percolation,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -713,runoff,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -714,storm_outflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -715,baseflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -716,catchment_outflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -717,reservoir_outflow,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -718,gw1_gw2,0.0,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -719,gw2_gw1,0.14738244190203922,2009-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -720,urban_drainage,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -721,percolation,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -722,runoff,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -723,storm_outflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -724,baseflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -725,catchment_outflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -726,reservoir_outflow,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -727,gw1_gw2,0.0,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -728,gw2_gw1,0.14639989228935876,2009-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -729,urban_drainage,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -730,percolation,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -731,runoff,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -732,storm_outflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -733,baseflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -734,catchment_outflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -735,reservoir_outflow,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -736,gw1_gw2,0.0,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -737,gw2_gw1,0.14542389300742967,2009-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -738,urban_drainage,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -739,percolation,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -740,runoff,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -741,storm_outflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -742,baseflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -743,catchment_outflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -744,reservoir_outflow,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -745,gw1_gw2,0.0,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -746,gw2_gw1,0.14445440038738014,2009-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -747,urban_drainage,0.0039999999999999975,2009-05-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -748,percolation,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -749,runoff,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -750,storm_outflow,0.0039999999999999975,2009-05-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -751,baseflow,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -752,catchment_outflow,0.0039999999999999975,2009-05-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -753,reservoir_outflow,0.0019999999999999987,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -754,gw1_gw2,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -755,gw2_gw1,0.14349137105146426,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -756,urban_drainage,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -757,percolation,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -758,runoff,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -759,storm_outflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -760,baseflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -761,catchment_outflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -762,reservoir_outflow,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -763,gw1_gw2,0.0,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -764,gw2_gw1,0.14253476191112122,2009-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -765,urban_drainage,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -766,percolation,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -767,runoff,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -768,storm_outflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -769,baseflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -770,catchment_outflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -771,reservoir_outflow,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -772,gw1_gw2,0.0,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -773,gw2_gw1,0.1415845301650469,2009-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -774,urban_drainage,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -775,percolation,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -776,runoff,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -777,storm_outflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -778,baseflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -779,catchment_outflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -780,reservoir_outflow,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -781,gw1_gw2,0.0,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -782,gw2_gw1,0.14064063329727983,2009-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -783,urban_drainage,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -784,percolation,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -785,runoff,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -786,storm_outflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -787,baseflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -788,catchment_outflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -789,reservoir_outflow,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -790,gw1_gw2,0.0,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -791,gw2_gw1,0.13970302907529852,2009-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -792,urban_drainage,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -793,percolation,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -794,runoff,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -795,storm_outflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -796,baseflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -797,catchment_outflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -798,reservoir_outflow,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -799,gw1_gw2,0.0,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -800,gw2_gw1,0.1387716755481296,2009-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -801,urban_drainage,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -802,percolation,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -803,runoff,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -804,storm_outflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -805,baseflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -806,catchment_outflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -807,reservoir_outflow,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -808,gw1_gw2,0.0,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -809,gw2_gw1,0.13784653104447547,2009-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -810,urban_drainage,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -811,percolation,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -812,runoff,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -813,storm_outflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -814,baseflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -815,catchment_outflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -816,reservoir_outflow,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -817,gw1_gw2,0.0,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -818,gw2_gw1,0.13692755417084543,2009-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -819,urban_drainage,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -820,percolation,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -821,runoff,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -822,storm_outflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -823,baseflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -824,catchment_outflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -825,reservoir_outflow,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -826,gw1_gw2,0.0,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -827,gw2_gw1,0.13601470380970646,2009-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -828,urban_drainage,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -829,percolation,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -830,runoff,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -831,storm_outflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -832,baseflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -833,catchment_outflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -834,reservoir_outflow,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -835,gw1_gw2,0.0,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -836,gw2_gw1,0.13510793911764196,2009-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -837,urban_drainage,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -838,percolation,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -839,runoff,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -840,storm_outflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -841,baseflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -842,catchment_outflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -843,reservoir_outflow,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -844,gw1_gw2,0.0,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -845,gw2_gw1,0.1342072195235245,2009-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -846,urban_drainage,0.04,2009-06-05,0.0,0.0,6.875000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 -847,percolation,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -848,runoff,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -849,storm_outflow,0.04,2009-06-05,0.0,0.0,6.875000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 -850,baseflow,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -851,catchment_outflow,0.04,2009-06-05,0.0,0.0,6.875000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 -852,reservoir_outflow,0.032,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -853,gw1_gw2,0.0,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -854,gw2_gw1,0.13331250472670073,2009-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -855,urban_drainage,0.04,2009-06-06,0.0,0.0,1.2974683544303798e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 -856,percolation,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -857,runoff,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -858,storm_outflow,0.04,2009-06-06,0.0,0.0,1.2974683544303798e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 -859,baseflow,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -860,catchment_outflow,0.04,2009-06-06,0.0,0.0,1.2974683544303798e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 -861,reservoir_outflow,0.067,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -862,gw1_gw2,0.0,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -863,gw2_gw1,0.1324237546951899,2009-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -864,urban_drainage,0.04,2009-06-07,0.0,0.0,1.3136140532162232e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -865,percolation,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -866,runoff,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -867,storm_outflow,0.04,2009-06-07,0.0,0.0,1.3136140532162232e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -868,baseflow,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -869,catchment_outflow,0.04,2009-06-07,0.0,0.0,1.3136140532162232e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -870,reservoir_outflow,0.014499999999999999,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -871,gw1_gw2,0.0,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -872,gw2_gw1,0.1315409296638883,2009-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -873,urban_drainage,0.04,2009-06-08,0.0,0.0,2.0287270077992797e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -874,percolation,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -875,runoff,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -876,storm_outflow,0.04,2009-06-08,0.0,0.0,2.0287270077992797e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -877,baseflow,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -878,catchment_outflow,0.04,2009-06-08,0.0,0.0,2.0287270077992797e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -879,reservoir_outflow,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -880,gw1_gw2,0.0,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -881,gw2_gw1,0.1306639901327957,2009-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -882,urban_drainage,0.028999999999999988,2009-06-09,0.0,0.0,3.485190584554117e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -883,percolation,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -884,runoff,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -885,storm_outflow,0.028999999999999988,2009-06-09,0.0,0.0,3.485190584554117e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -886,baseflow,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -887,catchment_outflow,0.028999999999999988,2009-06-09,0.0,0.0,3.485190584554117e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -888,reservoir_outflow,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -889,gw1_gw2,0.0,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -890,gw2_gw1,0.12979289686524373,2009-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -891,urban_drainage,0.04,2009-06-10,0.0,0.0,5.333333333333329e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -892,percolation,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -893,runoff,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -894,storm_outflow,0.04,2009-06-10,0.0,0.0,5.333333333333329e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -895,baseflow,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -896,catchment_outflow,0.04,2009-06-10,0.0,0.0,5.333333333333329e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -897,reservoir_outflow,0.0375,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -898,gw1_gw2,0.0,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -899,gw2_gw1,0.12892761088614205,2009-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -900,urban_drainage,0.014999999999999982,2009-06-11,0.0,0.0,1.466666666666666e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -901,percolation,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -902,runoff,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -903,storm_outflow,0.014999999999999982,2009-06-11,0.0,0.0,1.466666666666666e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -904,baseflow,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -905,catchment_outflow,0.014999999999999982,2009-06-11,0.0,0.0,1.466666666666666e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -906,reservoir_outflow,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -907,gw1_gw2,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -908,gw2_gw1,0.1280680934802346,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -909,urban_drainage,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -910,percolation,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -911,runoff,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -912,storm_outflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -913,baseflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -914,catchment_outflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -915,reservoir_outflow,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -916,gw1_gw2,0.0,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -917,gw2_gw1,0.12721430619036642,2009-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -918,urban_drainage,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -919,percolation,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -920,runoff,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -921,storm_outflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -922,baseflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -923,catchment_outflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -924,reservoir_outflow,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -925,gw1_gw2,0.0,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -926,gw2_gw1,0.12636621081576377,2009-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -927,urban_drainage,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -928,percolation,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -929,runoff,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -930,storm_outflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -931,baseflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -932,catchment_outflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -933,reservoir_outflow,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -934,gw1_gw2,0.0,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -935,gw2_gw1,0.1255237694103256,2009-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -936,urban_drainage,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -937,percolation,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -938,runoff,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -939,storm_outflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -940,baseflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -941,catchment_outflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -942,reservoir_outflow,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -943,gw1_gw2,0.0,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -944,gw2_gw1,0.1246869442809233,2009-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -945,urban_drainage,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -946,percolation,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -947,runoff,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -948,storm_outflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -949,baseflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -950,catchment_outflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -951,reservoir_outflow,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -952,gw1_gw2,0.0,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -953,gw2_gw1,0.12385569798571705,2009-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -954,urban_drainage,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -955,percolation,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -956,runoff,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -957,storm_outflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -958,baseflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -959,catchment_outflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -960,reservoir_outflow,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -961,gw1_gw2,0.0,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -962,gw2_gw1,0.12302999333247905,2009-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -963,urban_drainage,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -964,percolation,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -965,runoff,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -966,storm_outflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -967,baseflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -968,catchment_outflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -969,reservoir_outflow,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -970,gw1_gw2,0.0,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -971,gw2_gw1,0.1222097933769291,2009-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -972,urban_drainage,0.002999999999999999,2009-06-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -973,percolation,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -974,runoff,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -975,storm_outflow,0.002999999999999999,2009-06-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -976,baseflow,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -977,catchment_outflow,0.002999999999999999,2009-06-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -978,reservoir_outflow,0.0014999999999999996,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -979,gw1_gw2,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -980,gw2_gw1,0.12139506142108286,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -981,urban_drainage,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -982,percolation,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -983,runoff,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -984,storm_outflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -985,baseflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -986,catchment_outflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -987,reservoir_outflow,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -988,gw1_gw2,0.0,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -989,gw2_gw1,0.12058576101160892,2009-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -990,urban_drainage,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -991,percolation,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -992,runoff,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -993,storm_outflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -994,baseflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -995,catchment_outflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -996,reservoir_outflow,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -997,gw1_gw2,0.0,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -998,gw2_gw1,0.11978185593819822,2009-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -999,urban_drainage,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1000,percolation,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1001,runoff,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1002,storm_outflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1003,baseflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1004,catchment_outflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1005,reservoir_outflow,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1006,gw1_gw2,0.0,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1007,gw2_gw1,0.11898331023194367,2009-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1008,urban_drainage,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1009,percolation,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1010,runoff,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1011,storm_outflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1012,baseflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1013,catchment_outflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1014,reservoir_outflow,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1015,gw1_gw2,0.0,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1016,gw2_gw1,0.11819008816373061,2009-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1017,urban_drainage,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1018,percolation,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1019,runoff,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1020,storm_outflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1021,baseflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1022,catchment_outflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1023,reservoir_outflow,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1024,gw1_gw2,0.0,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1025,gw2_gw1,0.11740215424263917,2009-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1026,urban_drainage,0.017,2009-06-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 -1027,percolation,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1028,runoff,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1029,storm_outflow,0.017,2009-06-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 -1030,baseflow,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1031,catchment_outflow,0.017,2009-06-25,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 -1032,reservoir_outflow,0.0085,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1033,gw1_gw2,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1034,gw2_gw1,0.11661947321435484,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1035,urban_drainage,0.029999999999999995,2009-06-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -1036,percolation,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1037,runoff,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1038,storm_outflow,0.029999999999999995,2009-06-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -1039,baseflow,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1040,catchment_outflow,0.029999999999999995,2009-06-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -1041,reservoir_outflow,0.015,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1042,gw1_gw2,0.0,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1043,gw2_gw1,0.11584201005959241,2009-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1044,urban_drainage,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1045,percolation,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1046,runoff,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1047,storm_outflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1048,baseflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1049,catchment_outflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1050,reservoir_outflow,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1051,gw1_gw2,0.0,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1052,gw2_gw1,0.11506972999252857,2009-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1053,urban_drainage,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1054,percolation,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1055,runoff,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1056,storm_outflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1057,baseflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1058,catchment_outflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1059,reservoir_outflow,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1060,gw1_gw2,0.0,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1061,gw2_gw1,0.11430259845924501,2009-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1062,urban_drainage,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1063,percolation,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1064,runoff,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1065,storm_outflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1066,baseflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1067,catchment_outflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1068,reservoir_outflow,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1069,gw1_gw2,0.0,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1070,gw2_gw1,0.11354058113618369,2009-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1071,urban_drainage,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1072,percolation,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1073,runoff,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1074,storm_outflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1075,baseflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1076,catchment_outflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1077,reservoir_outflow,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1078,gw1_gw2,0.0,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1079,gw2_gw1,0.11278364392860905,2009-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1080,urban_drainage,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1081,percolation,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1082,runoff,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1083,storm_outflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1084,baseflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1085,catchment_outflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1086,reservoir_outflow,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1087,gw1_gw2,0.0,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1088,gw2_gw1,0.11203175296908477,2009-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1089,urban_drainage,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1090,percolation,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1091,runoff,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1092,storm_outflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1093,baseflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1094,catchment_outflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1095,reservoir_outflow,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1096,gw1_gw2,0.0,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1097,gw2_gw1,0.11128487461595765,2009-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1098,urban_drainage,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1099,percolation,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1100,runoff,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1101,storm_outflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1102,baseflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1103,catchment_outflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1104,reservoir_outflow,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1105,gw1_gw2,0.0,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1106,gw2_gw1,0.11054297545185127,2009-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1107,urban_drainage,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1108,percolation,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1109,runoff,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1110,storm_outflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1111,baseflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1112,catchment_outflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1113,reservoir_outflow,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1114,gw1_gw2,0.0,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1115,gw2_gw1,0.1098060222821724,2009-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1116,urban_drainage,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1117,percolation,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1118,runoff,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1119,storm_outflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1120,baseflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1121,catchment_outflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1122,reservoir_outflow,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1123,gw1_gw2,0.0,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1124,gw2_gw1,0.10907398213362463,2009-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1125,urban_drainage,0.005,2009-07-06,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 -1126,percolation,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1127,runoff,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1128,storm_outflow,0.005,2009-07-06,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 -1129,baseflow,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1130,catchment_outflow,0.005,2009-07-06,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 -1131,reservoir_outflow,0.0025,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1132,gw1_gw2,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1133,gw2_gw1,0.10834682225273369,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1134,urban_drainage,0.04,2009-07-07,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1135,percolation,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1136,runoff,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1137,storm_outflow,0.04,2009-07-07,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1138,baseflow,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1139,catchment_outflow,0.04,2009-07-07,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1140,reservoir_outflow,0.045,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1141,gw1_gw2,0.0,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1142,gw2_gw1,0.10762451010438223,2009-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1143,urban_drainage,0.04,2009-07-08,0.0,0.0,1.44702842377261e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1144,percolation,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1145,runoff,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1146,storm_outflow,0.04,2009-07-08,0.0,0.0,1.44702842377261e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1147,baseflow,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1148,catchment_outflow,0.04,2009-07-08,0.0,0.0,1.44702842377261e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1149,reservoir_outflow,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1150,gw1_gw2,0.0,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1151,gw2_gw1,0.10690701337035301,2009-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1152,urban_drainage,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1153,percolation,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1154,runoff,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1155,storm_outflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1156,baseflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1157,catchment_outflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1158,reservoir_outflow,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1159,gw1_gw2,0.0,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1160,gw2_gw1,0.1061942999478843,2009-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1161,urban_drainage,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1162,percolation,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1163,runoff,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1164,storm_outflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1165,baseflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1166,catchment_outflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1167,reservoir_outflow,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1168,gw1_gw2,0.0,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1169,gw2_gw1,0.10548633794823131,2009-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1170,urban_drainage,0.04,2009-07-11,0.0,0.0,1.8285453716370265e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1171,percolation,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1172,runoff,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1173,storm_outflow,0.04,2009-07-11,0.0,0.0,1.8285453716370265e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1174,baseflow,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1175,catchment_outflow,0.04,2009-07-11,0.0,0.0,1.8285453716370265e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1176,reservoir_outflow,0.034,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1177,gw1_gw2,0.0,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1178,gw2_gw1,0.10478309569524331,2009-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1179,urban_drainage,0.021000000000000005,2009-07-12,0.0,0.0,2.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1180,percolation,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1181,runoff,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1182,storm_outflow,0.021000000000000005,2009-07-12,0.0,0.0,2.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1183,baseflow,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1184,catchment_outflow,0.021000000000000005,2009-07-12,0.0,0.0,2.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1185,reservoir_outflow,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1186,gw1_gw2,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1187,gw2_gw1,0.10408454172394173,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1188,urban_drainage,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1189,percolation,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1190,runoff,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1191,storm_outflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1192,baseflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1193,catchment_outflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1194,reservoir_outflow,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1195,gw1_gw2,0.0,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1196,gw2_gw1,0.10339064477911536,2009-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1197,urban_drainage,0.005,2009-07-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 -1198,percolation,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1199,runoff,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1200,storm_outflow,0.005,2009-07-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 -1201,baseflow,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1202,catchment_outflow,0.005,2009-07-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 -1203,reservoir_outflow,0.0025,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1204,gw1_gw2,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1205,gw2_gw1,0.1027013738139214,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1206,urban_drainage,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1207,percolation,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1208,runoff,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1209,storm_outflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1210,baseflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1211,catchment_outflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1212,reservoir_outflow,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1213,gw1_gw2,0.0,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1214,gw2_gw1,0.10201669798849516,2009-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1215,urban_drainage,0.04,2009-07-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 -1216,percolation,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1217,runoff,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1218,storm_outflow,0.04,2009-07-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 -1219,baseflow,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1220,catchment_outflow,0.04,2009-07-16,0.0,0.0,1.2903225806451612e-06,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 -1221,reservoir_outflow,0.031000000000000003,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1222,gw1_gw2,0.0,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1223,gw2_gw1,0.10133658666857191,2009-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1224,urban_drainage,0.036000000000000004,2009-07-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 -1225,percolation,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1226,runoff,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1227,storm_outflow,0.036000000000000004,2009-07-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 -1228,baseflow,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1229,catchment_outflow,0.036000000000000004,2009-07-17,0.0,0.0,1.7096774193548387e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 -1230,reservoir_outflow,0.006999999999999999,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1231,gw1_gw2,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1232,gw2_gw1,0.10066100942411449,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1233,urban_drainage,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1234,percolation,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1235,runoff,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1236,storm_outflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1237,baseflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1238,catchment_outflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1239,reservoir_outflow,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1240,gw1_gw2,0.0,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1241,gw2_gw1,0.0999899360279537,2009-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1242,urban_drainage,0.04,2009-07-19,0.0,0.0,1.7391304347826088e-06,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 -1243,percolation,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1244,runoff,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1245,storm_outflow,0.04,2009-07-19,0.0,0.0,1.7391304347826088e-06,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 -1246,baseflow,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1247,catchment_outflow,0.04,2009-07-19,0.0,0.0,1.7391304347826088e-06,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 -1248,reservoir_outflow,0.023,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1249,gw1_gw2,0.0,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1250,gw2_gw1,0.09932333645443414,2009-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1251,urban_drainage,0.04,2009-07-20,0.0,0.0,6.815511163337248e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 -1252,percolation,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1253,runoff,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1254,storm_outflow,0.04,2009-07-20,0.0,0.0,6.815511163337248e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 -1255,baseflow,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1256,catchment_outflow,0.04,2009-07-20,0.0,0.0,6.815511163337248e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 -1257,reservoir_outflow,0.034,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1258,gw1_gw2,0.0,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1259,gw2_gw1,0.09866118087807117,2009-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1260,urban_drainage,0.04,2009-07-21,0.0,0.0,9.290108522845095e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1261,percolation,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1262,runoff,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1263,storm_outflow,0.04,2009-07-21,0.0,0.0,9.290108522845095e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1264,baseflow,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1265,catchment_outflow,0.04,2009-07-21,0.0,0.0,9.290108522845095e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1266,reservoir_outflow,0.017,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1267,gw1_gw2,0.0,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1268,gw2_gw1,0.09800343967221732,2009-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1269,urban_drainage,0.011000000000000003,2009-07-22,0.0,0.0,1.6503075965991565e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1270,percolation,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1271,runoff,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1272,storm_outflow,0.011000000000000003,2009-07-22,0.0,0.0,1.6503075965991565e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1273,baseflow,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1274,catchment_outflow,0.011000000000000003,2009-07-22,0.0,0.0,1.6503075965991565e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1275,reservoir_outflow,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1276,gw1_gw2,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1277,gw2_gw1,0.0973500834077358,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1278,urban_drainage,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1279,percolation,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1280,runoff,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1281,storm_outflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1282,baseflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1283,catchment_outflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1284,reservoir_outflow,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1285,gw1_gw2,0.0,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1286,gw2_gw1,0.09670108285168447,2009-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1287,urban_drainage,0.0009999999999999983,2009-07-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 -1288,percolation,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1289,runoff,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1290,storm_outflow,0.0009999999999999983,2009-07-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 -1291,baseflow,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1292,catchment_outflow,0.0009999999999999983,2009-07-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 -1293,reservoir_outflow,0.0004999999999999991,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1294,gw1_gw2,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1295,gw2_gw1,0.0960564089660064,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1296,urban_drainage,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1297,percolation,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1298,runoff,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1299,storm_outflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1300,baseflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1301,catchment_outflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1302,reservoir_outflow,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1303,gw1_gw2,0.0,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1304,gw2_gw1,0.0954160329062333,2009-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1305,urban_drainage,0.04,2009-07-26,0.0,0.0,1.5094339622641509e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 -1306,percolation,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1307,runoff,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1308,storm_outflow,0.04,2009-07-26,0.0,0.0,1.5094339622641509e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 -1309,baseflow,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1310,catchment_outflow,0.04,2009-07-26,0.0,0.0,1.5094339622641509e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 -1311,reservoir_outflow,0.0265,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1312,gw1_gw2,0.0,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1313,gw2_gw1,0.09477992602019167,2009-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1314,urban_drainage,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1315,percolation,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1316,runoff,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1317,storm_outflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1318,baseflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1319,catchment_outflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1320,reservoir_outflow,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1321,gw1_gw2,0.0,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1322,gw2_gw1,0.0941480598467237,2009-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1323,urban_drainage,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1324,percolation,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1325,runoff,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1326,storm_outflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1327,baseflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1328,catchment_outflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1329,reservoir_outflow,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1330,gw1_gw2,0.0,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1331,gw2_gw1,0.09352040611441233,2009-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1332,urban_drainage,0.039999999999999994,2009-07-29,0.0,0.0,9.185700099304864e-07,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1333,percolation,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1334,runoff,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1335,storm_outflow,0.039999999999999994,2009-07-29,0.0,0.0,9.185700099304864e-07,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1336,baseflow,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1337,catchment_outflow,0.039999999999999994,2009-07-29,0.0,0.0,9.185700099304864e-07,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1338,reservoir_outflow,0.076,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1339,gw1_gw2,0.0,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1340,gw2_gw1,0.09289693674031625,2009-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1341,urban_drainage,0.04,2009-07-30,0.0,0.0,1.310824230387289e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1342,percolation,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1343,runoff,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1344,storm_outflow,0.04,2009-07-30,0.0,0.0,1.310824230387289e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1345,baseflow,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1346,catchment_outflow,0.04,2009-07-30,0.0,0.0,1.310824230387289e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1347,reservoir_outflow,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1348,gw1_gw2,0.0,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1349,gw2_gw1,0.09227762382871402,2009-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1350,urban_drainage,0.04,2009-07-31,0.0,0.0,1.811762109676707e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 -1351,percolation,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1352,runoff,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1353,storm_outflow,0.04,2009-07-31,0.0,0.0,1.811762109676707e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 -1354,baseflow,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1355,catchment_outflow,0.04,2009-07-31,0.0,0.0,1.811762109676707e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 -1356,reservoir_outflow,0.0014999999999999996,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1357,gw1_gw2,0.0,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1358,gw2_gw1,0.09166243966985609,2009-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1359,urban_drainage,0.04,2009-08-01,0.0,0.0,1.848611085087823e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 -1360,percolation,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1361,runoff,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1362,storm_outflow,0.04,2009-08-01,0.0,0.0,1.848611085087823e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 -1363,baseflow,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1364,catchment_outflow,0.04,2009-08-01,0.0,0.0,1.848611085087823e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 -1365,reservoir_outflow,0.010500000000000002,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1366,gw1_gw2,0.0,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1367,gw2_gw1,0.09105135673872376,2009-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1368,urban_drainage,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1369,percolation,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1370,runoff,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1371,storm_outflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1372,baseflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1373,catchment_outflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1374,reservoir_outflow,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1375,gw1_gw2,0.0,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1376,gw2_gw1,0.09044434769379901,2009-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1377,urban_drainage,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1378,percolation,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1379,runoff,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1380,storm_outflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1381,baseflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1382,catchment_outflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1383,reservoir_outflow,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1384,gw1_gw2,0.0,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1385,gw2_gw1,0.08984138537584041,2009-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1386,urban_drainage,0.04,2009-08-04,0.0,0.0,7.311266198281305e-07,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1387,percolation,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1388,runoff,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1389,storm_outflow,0.04,2009-08-04,0.0,0.0,7.311266198281305e-07,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1390,baseflow,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1391,catchment_outflow,0.04,2009-08-04,0.0,0.0,7.311266198281305e-07,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1392,reservoir_outflow,0.0985,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1393,gw1_gw2,0.0,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1394,gw2_gw1,0.08924244280666792,2009-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1395,urban_drainage,0.04,2009-08-05,0.0,0.0,1.0824257294616538e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1396,percolation,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1397,runoff,0.0029788582833558063,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.95416667,0.0,0.0,0.0 -1398,storm_outflow,0.04,2009-08-05,0.0,0.0,1.0824257294616538e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1399,baseflow,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1400,catchment_outflow,0.042978858283355806,2009-08-05,0.0,0.0,1.0824257294616538e-06,0.0,0.0,0.0,0.0,0.0,17.880487030137946,0.0,0.0,0.0 -1401,reservoir_outflow,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1402,gw1_gw2,0.0,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1403,gw2_gw1,0.0886474931879569,2009-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1404,urban_drainage,0.04,2009-08-06,0.0,0.0,5.652606348304117e-07,0.0,0.0,0.0,0.0,0.0,17.972481341231344,0.0,0.0,0.0 -1405,percolation,0.026148777566410188,2009-08-06,0.0,0.0,2.210869346925628e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1406,runoff,0.17891268861228024,2009-08-06,0.0,0.0,7.369564489752096e-06,0.0,0.0,0.0,0.0,0.0,17.49119580627303,0.0,0.0,0.0 -1407,storm_outflow,0.04,2009-08-06,0.0,0.0,5.652606348304117e-07,0.0,0.0,0.0,0.0,0.0,17.972481341231344,0.0,0.0,0.0 -1408,baseflow,6.537194391602547e-05,2009-08-06,0.0,0.0,5.52717336731407e-09,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1409,catchment_outflow,0.21897806055619629,2009-08-06,0.0,0.0,7.940352297949822e-06,0.0,0.0,0.0,0.0,0.0,17.578940283833244,0.0,0.0,0.0 -1410,reservoir_outflow,0.0825,2009-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1411,gw1_gw2,0.0,2009-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1412,gw2_gw1,0.08805650990003731,2009-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1413,urban_drainage,0.04,2009-08-07,0.0,0.0,8.119203112564128e-07,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1414,percolation,0.025625802015081984,2009-08-07,0.0,0.0,2.1666519599871155e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1415,runoff,0.06973007351042718,2009-08-07,0.0,0.0,5.895651591801677e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1416,storm_outflow,0.04,2009-08-07,0.0,0.0,8.119203112564128e-07,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1417,baseflow,0.00012927301909394036,2009-08-07,0.0,0.0,1.0929985333863574e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1418,catchment_outflow,0.10985934652952112,2009-08-07,0.0,0.0,6.718501888391954e-06,0.0,0.0,0.0,0.0,0.0,17.30354416062016,0.0,0.0,0.0 -1419,reservoir_outflow,0.0,2009-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1420,gw1_gw2,0.0,2009-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1421,gw2_gw1,0.08746946650070378,2009-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1422,urban_drainage,0.04,2009-08-08,0.0,0.0,1.1919095425072792e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1423,percolation,0.025113285974780342,2009-08-08,0.0,0.0,2.123318920787373e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1424,runoff,0.05578405880834173,2009-08-08,0.0,0.0,4.71652127344134e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1425,storm_outflow,0.04,2009-08-08,0.0,0.0,1.1919095425072792e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1426,baseflow,0.00019173305148315636,2009-08-08,0.0,0.0,1.6210957672497347e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1427,catchment_outflow,0.09597579185982488,2009-08-08,0.0,0.0,5.924641773621116e-06,0.0,0.0,0.0,0.0,0.0,17.358950540917206,0.0,0.0,0.0 -1428,reservoir_outflow,0.0,2009-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1429,gw1_gw2,0.0,2009-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1430,gw2_gw1,0.08688633672403245,2009-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1431,urban_drainage,0.04,2009-08-09,0.0,0.0,1.917343529440752e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1432,percolation,0.02461102025528474,2009-08-09,0.0,0.0,2.080852542371626e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1433,runoff,0.04462724704667339,2009-08-09,0.0,0.0,3.7732170187530727e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1434,storm_outflow,0.04,2009-08-09,0.0,0.0,1.917343529440752e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1435,baseflow,0.00025278126949266033,2009-08-09,0.0,0.0,2.1372561634245166e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1436,catchment_outflow,0.08488002831616605,2009-08-09,0.0,0.0,5.71193310982807e-06,0.0,0.0,0.0,0.0,0.0,17.416262834994903,0.0,0.0,0.0 -1437,reservoir_outflow,0.0,2009-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1438,gw1_gw2,0.0,2009-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1439,gw2_gw1,0.08630709447920548,2009-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1440,urban_drainage,0.03200000000000001,2009-08-10,0.0,0.0,3.3008122353289023e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1441,percolation,0.024118799850179045,2009-08-10,0.0,0.0,2.0392354915241935e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1442,runoff,0.03764932022855343,2009-08-10,0.0,0.0,3.0185736150024592e-06,0.0,0.0,0.0,0.0,0.0,16.994468570615723,0.0,0.0,0.0 -1443,storm_outflow,0.03200000000000001,2009-08-10,0.0,0.0,3.3008122353289023e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1444,baseflow,0.0003124463159443763,2009-08-10,0.0,0.0,2.6417218958970036e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1445,catchment_outflow,0.06996176654449782,2009-08-10,0.0,0.0,6.345803069290331e-06,0.0,0.0,0.0,0.0,0.0,17.441474224179444,0.0,0.0,0.0 -1446,reservoir_outflow,0.0,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1447,gw1_gw2,0.0,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1448,gw2_gw1,0.08573171384934408,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1449,urban_drainage,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1450,percolation,0.02363642385317546,2009-08-11,0.0,0.0,1.9984507816937095e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1451,runoff,0.028561438109870968,2009-08-11,0.0,0.0,2.414858892001967e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1452,storm_outflow,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1453,baseflow,0.000370756259787454,2009-08-11,0.0,0.0,3.134730286580688e-08,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1454,catchment_outflow,0.028932194369658423,2009-08-11,0.0,0.0,2.446206194867774e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1455,reservoir_outflow,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1456,gw1_gw2,0.0,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1457,gw2_gw1,0.08516016909034861,2009-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1458,urban_drainage,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1459,percolation,0.025895758441401996,2009-08-12,0.0,0.0,2.204654946353774e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1460,runoff,0.041542213566197056,2009-08-12,0.0,0.0,2.7524643812480347e-06,0.0,0.0,0.0,0.0,0.0,17.381860878758687,0.0,0.0,0.0 -1461,storm_outflow,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1462,baseflow,0.0004345687652414904,2009-08-12,0.0,0.0,3.67805719745268e-08,0.0,0.0,0.0,0.0,0.0,16.925814735320973,0.0,0.0,0.0 -1463,catchment_outflow,0.04197678233143855,2009-08-12,0.0,0.0,2.7892449532225615e-06,0.0,0.0,0.0,0.0,0.0,17.377139616231176,0.0,0.0,0.0 -1464,reservoir_outflow,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1465,gw1_gw2,0.0,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1466,gw2_gw1,0.08459243462974637,2009-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1467,urban_drainage,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1468,percolation,0.025377843272573957,2009-08-13,0.0,0.0,2.1605618474266982e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1469,runoff,0.025564821897757536,2009-08-13,0.0,0.0,2.2019715049984285e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1470,storm_outflow,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1471,baseflow,0.0004969269515098215,2009-08-13,0.0,0.0,4.209002516315723e-08,0.0,0.0,0.0,0.0,0.0,16.929672992197066,0.0,0.0,0.0 -1472,catchment_outflow,0.026061748849267357,2009-08-13,0.0,0.0,2.2440615301615858e-06,0.0,0.0,0.0,0.0,0.0,17.014788387022218,0.0,0.0,0.0 -1473,reservoir_outflow,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1474,gw1_gw2,0.0,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1475,gw2_gw1,0.0840284850655479,2009-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1476,urban_drainage,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1477,percolation,0.024870286407122476,2009-08-14,0.0,0.0,2.117350610478164e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1478,runoff,0.020451857518206024,2009-08-14,0.0,0.0,1.7615772039987423e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1479,storm_outflow,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1480,baseflow,0.0005578603501488531,2009-08-14,0.0,0.0,4.727817662644475e-08,0.0,0.0,0.0,0.0,0.0,16.932611068915975,0.0,0.0,0.0 -1481,catchment_outflow,0.021009717868354878,2009-08-14,0.0,0.0,1.808855380625187e-06,0.0,0.0,0.0,0.0,0.0,17.014216910499464,0.0,0.0,0.0 -1482,reservoir_outflow,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1483,gw1_gw2,0.0,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1484,gw2_gw1,0.0834682951651109,2009-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1485,urban_drainage,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1486,percolation,0.024372880678980028,2009-08-15,0.0,0.0,2.075003598268601e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1487,runoff,0.01636148601456482,2009-08-15,0.0,0.0,1.4092617631989938e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1488,storm_outflow,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1489,baseflow,0.0006173979009709311,2009-08-15,0.0,0.0,5.234749018055014e-08,0.0,0.0,0.0,0.0,0.0,16.93492275849501,0.0,0.0,0.0 -1490,catchment_outflow,0.01697888391553575,2009-08-15,0.0,0.0,1.461609253379544e-06,0.0,0.0,0.0,0.0,0.0,17.013478563245236,0.0,0.0,0.0 -1491,reservoir_outflow,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1492,gw1_gw2,0.0,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1493,gw2_gw1,0.08291183986400999,2009-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1494,urban_drainage,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1495,percolation,0.023885423065400428,2009-08-16,0.0,0.0,2.033503526303229e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1496,runoff,0.013089188811651855,2009-08-16,0.0,0.0,1.1274094105591947e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1497,storm_outflow,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1498,baseflow,0.0006755679638820049,2009-08-16,0.0,0.0,5.7300380270856836e-08,0.0,0.0,0.0,0.0,0.0,16.936788815659256,0.0,0.0,0.0 -1499,catchment_outflow,0.01376475677553386,2009-08-16,0.0,0.0,1.1847097908300514e-06,0.0,0.0,0.0,0.0,0.0,17.012533469505485,0.0,0.0,0.0 -1500,reservoir_outflow,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1501,gw1_gw2,0.0,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1502,gw2_gw1,0.08235909426491671,2009-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1503,urban_drainage,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1504,percolation,0.02340771460409242,2009-08-17,0.0,0.0,1.9928334557771647e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1505,runoff,0.010471351049321485,2009-08-17,0.0,0.0,9.019275284473559e-07,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1506,storm_outflow,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1507,baseflow,0.0007323983304825309,2009-08-17,0.0,0.0,6.21392129596226e-08,0.0,0.0,0.0,0.0,0.0,16.93832655146428,0.0,0.0,0.0 -1508,catchment_outflow,0.011203749379804015,2009-08-17,0.0,0.0,9.640667414069785e-07,0.0,0.0,0.0,0.0,0.0,17.011336326194805,0.0,0.0,0.0 -1509,reservoir_outflow,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1510,gw1_gw2,0.0,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1511,gw2_gw1,0.08181003363648394,2009-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1512,urban_drainage,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1513,percolation,0.022939560312010564,2009-08-18,0.0,0.0,1.952976786661621e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1514,runoff,0.008377080839457188,2009-08-18,0.0,0.0,7.215420227578848e-07,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1515,storm_outflow,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1516,baseflow,0.0007879162354363509,2009-08-18,0.0,0.0,6.68663068938776e-08,0.0,0.0,0.0,0.0,0.0,16.93961542321208,0.0,0.0,0.0 -1517,catchment_outflow,0.009164997074893539,2009-08-18,0.0,0.0,7.884083296517624e-07,0.0,0.0,0.0,0.0,0.0,17.009837987016866,0.0,0.0,0.0 -1518,reservoir_outflow,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1519,gw1_gw2,0.0,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1520,gw2_gw1,0.08126463341224072,2009-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1521,urban_drainage,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1522,percolation,0.02248076910577036,2009-08-19,0.0,0.0,1.913917250928389e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1523,runoff,0.0070836084286648995,2009-08-19,0.0,0.0,5.772336182063078e-07,0.0,0.0,0.0,0.0,0.0,17.12705383460734,0.0,0.0,0.0 -1524,storm_outflow,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1525,baseflow,0.000842148367612186,2009-08-19,0.0,0.0,7.148393425396388e-08,0.0,0.0,0.0,0.0,0.0,16.940711162966547,0.0,0.0,0.0 -1526,catchment_outflow,0.007925756796277085,2009-08-19,0.0,0.0,6.487175524602717e-07,0.0,0.0,0.0,0.0,0.0,17.107254062702594,0.0,0.0,0.0 -1527,reservoir_outflow,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1528,gw1_gw2,0.0,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1529,gw2_gw1,0.0807228691894924,2009-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1530,urban_drainage,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1531,percolation,0.022031153723654946,2009-08-20,0.0,0.0,1.875638905909821e-06,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1532,runoff,0.006425848602264573,2009-08-20,0.0,0.0,4.617868945650462e-07,0.0,0.0,0.0,0.0,0.0,17.343267312221336,0.0,0.0,0.0 -1533,storm_outflow,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1534,baseflow,0.0008951208810022927,2009-08-20,0.0,0.0,7.599432168310352e-08,0.0,0.0,0.0,0.0,0.0,16.94165401764364,0.0,0.0,0.0 -1535,catchment_outflow,0.007320969483266866,2009-08-20,0.0,0.0,5.377812162481497e-07,0.0,0.0,0.0,0.0,0.0,17.294162825870682,0.0,0.0,0.0 -1536,reservoir_outflow,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1537,gw1_gw2,0.0,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1538,gw2_gw1,0.08018471672822916,2009-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1539,urban_drainage,0.02700000000000001,2009-08-21,0.0,0.0,1.1000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1540,percolation,0.026007220973825376,2009-08-21,0.0,0.0,2.271356094842753e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1541,runoff,0.03450852550578415,2009-08-21,0.0,0.0,1.8135294058224649e-06,0.0,0.0,0.0,0.0,0.0,18.176412947912013,0.0,0.0,0.0 -1542,storm_outflow,0.02700000000000001,2009-08-21,0.0,0.0,1.1000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1543,baseflow,0.0009579011312343504,2009-08-21,0.0,0.0,8.148272611600265e-08,0.0,0.0,0.0,0.0,0.0,16.95168299570742,0.0,0.0,0.0 -1544,catchment_outflow,0.06246642663701851,2009-08-21,0.0,0.0,1.289501213193847e-05,0.0,0.0,0.0,0.0,0.0,18.47502080870884,0.0,0.0,0.0 -1545,reservoir_outflow,0.013500000000000002,2009-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1546,gw1_gw2,0.0,2009-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1547,gw2_gw1,0.07965015195004083,2009-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1548,urban_drainage,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1549,percolation,0.025487076554348866,2009-08-22,0.0,0.0,2.2259289729458976e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1550,runoff,0.015209093177557748,2009-08-22,0.0,0.0,1.4508235246579717e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 -1551,storm_outflow,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1552,baseflow,0.0010192240697921367,2009-08-22,0.0,0.0,8.684384173307738e-08,0.0,0.0,0.0,0.0,0.0,16.960293085455767,0.0,0.0,0.0 -1553,catchment_outflow,0.016228317247349886,2009-08-22,0.0,0.0,1.5376673663910492e-06,0.0,0.0,0.0,0.0,0.0,17.539059966725087,0.0,0.0,0.0 -1554,reservoir_outflow,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1555,gw1_gw2,0.0,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1556,gw2_gw1,0.07911915093704068,2009-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1557,urban_drainage,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1558,percolation,0.0249773350232619,2009-08-23,0.0,0.0,2.1814103934869803e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1559,runoff,0.0121672745420462,2009-08-23,0.0,0.0,1.1606588197263777e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 -1560,storm_outflow,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1561,baseflow,0.001079119347175811,2009-08-23,0.0,0.0,9.208025811246212e-08,0.0,0.0,0.0,0.0,0.0,16.967764414536127,0.0,0.0,0.0 -1562,catchment_outflow,0.01324639388922201,2009-08-23,0.0,0.0,1.2527390778388399e-06,0.0,0.0,0.0,0.0,0.0,17.528145179230386,0.0,0.0,0.0 -1563,reservoir_outflow,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1564,gw1_gw2,0.0,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1565,gw2_gw1,0.07859168993079368,2009-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1566,urban_drainage,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1567,percolation,0.024477788322796658,2009-08-24,0.0,0.0,2.1377821856172407e-06,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1568,runoff,0.010539469487023676,2009-08-24,0.0,0.0,9.285270557811022e-07,0.0,0.0,0.0,0.0,0.0,17.661713344109604,0.0,0.0,0.0 -1569,storm_outflow,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1570,baseflow,0.001137616019614863,2009-08-24,0.0,0.0,9.719451293122406e-08,0.0,0.0,0.0,0.0,0.0,16.9743079252523,0.0,0.0,0.0 -1571,catchment_outflow,0.011677085506638539,2009-08-24,0.0,0.0,1.0257215687123262e-06,0.0,0.0,0.0,0.0,0.0,17.594744286118416,0.0,0.0,0.0 -1572,reservoir_outflow,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1573,gw1_gw2,0.0,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1574,gw2_gw1,0.0780677453312551,2009-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1575,urban_drainage,0.002999999999999999,2009-08-25,0.0,0.0,3.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 -1576,percolation,0.025499888280152556,2009-08-25,0.0,0.0,2.2486284511929604e-06,0.0,0.0,0.0,0.0,0.0,17.11098423400969,0.0,0.0,0.0 -1577,runoff,0.01812996329088527,2009-08-25,0.0,0.0,1.2548280089184298e-06,0.0,0.0,0.0,0.0,0.0,17.79433689319692,0.0,0.0,0.0 -1578,storm_outflow,0.002999999999999999,2009-08-25,0.0,0.0,3.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 -1579,baseflow,0.0011985217002662074,2009-08-25,0.0,0.0,1.0257309777687839e-07,0.0,0.0,0.0,0.0,0.0,16.98157777819506,0.0,0.0,0.0 -1580,catchment_outflow,0.022328484991151476,2009-08-25,0.0,0.0,5.357401106695306e-06,0.0,0.0,0.0,0.0,0.0,17.836937777868105,0.0,0.0,0.0 -1581,reservoir_outflow,0.0014999999999999996,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1582,gw1_gw2,0.0,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1583,gw2_gw1,0.0775472936957133,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1584,urban_drainage,0.008,2009-08-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 -1585,percolation,0.026937094321564582,2009-08-26,0.0,0.0,2.4005601463339834e-06,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 -1586,runoff,0.02358369991211151,2009-08-26,0.0,0.0,1.6602099543510197e-06,0.0,0.0,0.0,0.0,0.0,17.65106778701249,0.0,0.0,0.0 -1587,storm_outflow,0.008,2009-08-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 -1588,baseflow,0.0012628681318194532,2009-08-26,0.0,0.0,1.0831806539827116e-07,0.0,0.0,0.0,0.0,0.0,16.989088436127652,0.0,0.0,0.0 -1589,catchment_outflow,0.03284656804393096,2009-08-26,0.0,0.0,2.7685280197492908e-06,0.0,0.0,0.0,0.0,0.0,17.75863588462986,0.0,0.0,0.0 -1590,reservoir_outflow,0.004,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1591,gw1_gw2,0.0,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1592,gw2_gw1,0.07703031173774184,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1593,urban_drainage,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1594,percolation,0.02639835243513329,2009-08-27,0.0,0.0,2.3525489434073035e-06,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 -1595,runoff,0.014201457735402722,2009-08-27,0.0,0.0,1.3281679634808155e-06,0.0,0.0,0.0,0.0,0.0,17.45818087136377,0.0,0.0,0.0 -1596,storm_outflow,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1597,baseflow,0.001325706842577738,2009-08-27,0.0,0.0,1.1392864259329374e-07,0.0,0.0,0.0,0.0,0.0,16.99572610168884,0.0,0.0,0.0 -1598,catchment_outflow,0.01552716457798046,2009-08-27,0.0,0.0,1.4420966060741091e-06,0.0,0.0,0.0,0.0,0.0,17.418696556667307,0.0,0.0,0.0 -1599,reservoir_outflow,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1600,gw1_gw2,0.0,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1601,gw2_gw1,0.07651677632615696,2009-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1602,urban_drainage,0.002000000000000001,2009-08-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1603,percolation,0.02730359809474866,2009-08-28,0.0,0.0,2.4518712181212593e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1604,runoff,0.02052709196034963,2009-08-28,0.0,0.0,1.5504452160583251e-06,0.0,0.0,0.0,0.0,0.0,17.36674022057263,0.0,0.0,0.0 -1605,storm_outflow,0.002000000000000001,2009-08-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1606,baseflow,0.0013906515707081653,2009-08-28,0.0,0.0,1.1977349903211365e-07,0.0,0.0,0.0,0.0,0.0,17.00126187340013,0.0,0.0,0.0 -1607,catchment_outflow,0.023917743531057797,2009-08-28,0.0,0.0,3.670218715090439e-06,0.0,0.0,0.0,0.0,0.0,17.374983280836382,0.0,0.0,0.0 -1608,reservoir_outflow,0.0010000000000000005,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1609,gw1_gw2,0.0,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1610,gw2_gw1,0.07600666448398262,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1611,urban_drainage,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1612,percolation,0.026757526132853683,2009-08-29,0.0,0.0,2.402833793758834e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1613,runoff,0.012398620351948393,2009-08-29,0.0,0.0,1.2403561728466599e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 -1614,storm_outflow,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1615,baseflow,0.0014540687571135292,2009-08-29,0.0,0.0,1.2548114976893047e-07,0.0,0.0,0.0,0.0,0.0,17.006195652567865,0.0,0.0,0.0 -1616,catchment_outflow,0.013852689109061922,2009-08-29,0.0,0.0,1.3658373226155903e-06,0.0,0.0,0.0,0.0,0.0,17.22646388714994,0.0,0.0,0.0 -1617,reservoir_outflow,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1618,gw1_gw2,0.0,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1619,gw2_gw1,0.07549995338742246,2009-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1620,urban_drainage,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1621,percolation,0.026222375610196618,2009-08-30,0.0,0.0,2.354777117883658e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1622,runoff,0.010275565076465926,2009-08-30,0.0,0.0,9.922849382773277e-07,0.0,0.0,0.0,0.0,0.0,17.251927254153465,0.0,0.0,0.0 -1623,storm_outflow,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1624,baseflow,0.0015159895242462368,2009-08-30,0.0,0.0,1.310543896892173e-07,0.0,0.0,0.0,0.0,0.0,17.010619914362486,0.0,0.0,0.0 -1625,catchment_outflow,0.011791554600712163,2009-08-30,0.0,0.0,1.123339327966545e-06,0.0,0.0,0.0,0.0,0.0,17.220903406015175,0.0,0.0,0.0 -1626,reservoir_outflow,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1627,gw1_gw2,0.0,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1628,gw2_gw1,0.07499662036483982,2009-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1629,urban_drainage,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1630,percolation,0.02569792809799268,2009-08-31,0.0,0.0,2.3076815755259847e-06,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1631,runoff,0.008055152246703565,2009-08-31,0.0,0.0,7.938279506218622e-07,0.0,0.0,0.0,0.0,0.0,17.248577968214292,0.0,0.0,0.0 -1632,storm_outflow,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1633,baseflow,0.0015764443706806027,2009-08-31,0.0,0.0,1.364959576538092e-07,0.0,0.0,0.0,0.0,0.0,17.014609116934906,0.0,0.0,0.0 -1634,catchment_outflow,0.009631596617384167,2009-08-31,0.0,0.0,9.303239082756714e-07,0.0,0.0,0.0,0.0,0.0,17.210283291519854,0.0,0.0,0.0 -1635,reservoir_outflow,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1636,gw1_gw2,0.0,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1637,gw2_gw1,0.07449664289574098,2009-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1638,urban_drainage,0.04,2009-09-01,0.0,0.0,3.137254901960784e-06,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 -1639,percolation,0.026063716308576592,2009-09-01,0.0,0.0,2.351693012566096e-06,0.0,0.0,0.0,0.0,0.0,17.073117204826293,0.0,0.0,0.0 -1640,runoff,0.012367413642865489,2009-09-01,0.0,0.0,9.356125889995945e-07,0.0,0.0,0.0,0.0,0.0,16.8476888848378,0.0,0.0,0.0 -1641,storm_outflow,0.04,2009-09-01,0.0,0.0,3.137254901960784e-06,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 -1642,baseflow,0.0016376625505253428,2009-09-01,0.0,0.0,1.420339502910899e-07,0.0,0.0,0.0,0.0,0.0,17.016937035778856,0.0,0.0,0.0 -1643,catchment_outflow,0.05400507619339084,2009-09-01,0.0,0.0,4.2149014412514685e-06,0.0,0.0,0.0,0.0,0.0,16.790752969703462,0.0,0.0,0.0 -1644,reservoir_outflow,0.025500000000000002,2009-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1645,gw1_gw2,0.0,2009-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1646,gw2_gw1,0.07399999860976916,2009-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1647,urban_drainage,0.04,2009-09-02,0.0,0.0,9.55253896430367e-07,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1648,percolation,0.03443620635099391,2009-09-02,0.0,0.0,3.180392108137723e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1649,runoff,0.06827653828521603,2009-09-02,0.0,0.0,3.667599923942837e-06,0.0,0.0,0.0,0.0,0.0,16.27517413549115,0.0,0.0,0.0 -1650,storm_outflow,0.04,2009-09-02,0.0,0.0,9.55253896430367e-07,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1651,baseflow,0.0017196589100265142,2009-09-02,0.0,0.0,1.496298456857065e-07,0.0,0.0,0.0,0.0,0.0,17.00408828559599,0.0,0.0,0.0 -1652,catchment_outflow,0.10999619719524253,2009-09-02,0.0,0.0,4.772483666058911e-06,0.0,0.0,0.0,0.0,0.0,16.389669881418783,0.0,0.0,0.0 -1653,reservoir_outflow,0.033499999999999995,2009-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1654,gw1_gw2,0.0,2009-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1655,gw2_gw1,0.07350666528570411,2009-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1656,urban_drainage,0.025999999999999985,2009-09-03,0.0,0.0,1.9074912016088487e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1657,percolation,0.03374748222397403,2009-09-03,0.0,0.0,3.1167842659749688e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1658,runoff,0.03284895008136452,2009-09-03,0.0,0.0,2.9340799391542703e-06,0.0,0.0,0.0,0.0,0.0,16.099870328144203,0.0,0.0,0.0 -1659,storm_outflow,0.025999999999999985,2009-09-03,0.0,0.0,1.9074912016088487e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1660,baseflow,0.0017997284683113827,2009-09-03,0.0,0.0,1.570477317364296e-07,0.0,0.0,0.0,0.0,0.0,16.992659047062975,0.0,0.0,0.0 -1661,catchment_outflow,0.06064867854967589,2009-09-03,0.0,0.0,4.998618872499548e-06,0.0,0.0,0.0,0.0,0.0,16.323058615103978,0.0,0.0,0.0 -1662,reservoir_outflow,0.0,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1663,gw1_gw2,0.0,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1664,gw2_gw1,0.07301662085046595,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1665,urban_drainage,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1666,percolation,0.03307253257949455,2009-09-04,0.0,0.0,3.0544485806554692e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1667,runoff,0.02372502241167207,2009-09-04,0.0,0.0,2.347263951323416e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1668,storm_outflow,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1669,baseflow,0.001877910478589341,2009-09-04,0.0,0.0,1.642912338587272e-07,0.0,0.0,0.0,0.0,0.0,16.98242791464239,0.0,0.0,0.0 -1670,catchment_outflow,0.02560293289026141,2009-09-04,0.0,0.0,2.511555185182143e-06,0.0,0.0,0.0,0.0,0.0,16.13216890136068,0.0,0.0,0.0 -1671,reservoir_outflow,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1672,gw1_gw2,0.0,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1673,gw2_gw1,0.0725298433781294,2009-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1674,urban_drainage,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1675,percolation,0.03241108192790466,2009-09-05,0.0,0.0,2.9933596090423596e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1676,runoff,0.018980017929337657,2009-09-05,0.0,0.0,1.8778111610587328e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1677,storm_outflow,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1678,baseflow,0.001954243407212629,2009-09-05,0.0,0.0,1.7136390479668628e-07,0.0,0.0,0.0,0.0,0.0,16.97321724901053,0.0,0.0,0.0 -1679,catchment_outflow,0.020934261336550287,2009-09-05,0.0,0.0,2.0491750658554193e-06,0.0,0.0,0.0,0.0,0.0,16.149663903176528,0.0,0.0,0.0 -1680,reservoir_outflow,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1681,gw1_gw2,0.0,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1682,gw2_gw1,0.07204631108894209,2009-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1683,urban_drainage,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1684,percolation,0.031762860289346564,2009-09-06,0.0,0.0,2.933492416861513e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1685,runoff,0.015184014343470125,2009-09-06,0.0,0.0,1.5022489288469862e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1686,storm_outflow,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1687,baseflow,0.002028764949417964,2009-09-06,0.0,0.0,1.7826922607684835e-07,0.0,0.0,0.0,0.0,0.0,16.96488287186836,0.0,0.0,0.0 -1688,catchment_outflow,0.01721277929288809,2009-09-06,0.0,0.0,1.6805181549238345e-06,0.0,0.0,0.0,0.0,0.0,16.170947433644315,0.0,0.0,0.0 -1689,reservoir_outflow,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1690,gw1_gw2,0.0,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1691,gw2_gw1,0.07156600234834905,2009-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1692,urban_drainage,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1693,percolation,0.031127603083559635,2009-09-07,0.0,0.0,2.874822568524282e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1694,runoff,0.012437557421779252,2009-09-07,0.0,0.0,1.2017991430775891e-06,0.0,0.0,0.0,0.0,0.0,16.063937519073843,0.0,0.0,0.0 -1695,storm_outflow,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1696,baseflow,0.0021015120447533185,2009-09-07,0.0,0.0,1.8501060943296693e-07,0.0,0.0,0.0,0.0,0.0,16.95730654155062,0.0,0.0,0.0 -1697,catchment_outflow,0.014539069466532571,2009-09-07,0.0,0.0,1.3868097525105561e-06,0.0,0.0,0.0,0.0,0.0,16.19306722475866,0.0,0.0,0.0 -1698,reservoir_outflow,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1699,gw1_gw2,0.0,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1700,gw2_gw1,0.07108889566602682,2009-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1701,urban_drainage,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1702,percolation,0.030505051021888444,2009-09-08,0.0,0.0,2.8173261171537965e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1703,runoff,0.010453336242690485,2009-09-08,0.0,0.0,9.614393144620712e-07,0.0,0.0,0.0,0.0,0.0,16.067340323023544,0.0,0.0,0.0 -1704,storm_outflow,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1705,baseflow,0.002172520892196156,2009-09-08,0.0,0.0,1.9159139820226898e-07,0.0,0.0,0.0,0.0,0.0,16.95039037166423,0.0,0.0,0.0 -1706,catchment_outflow,0.01262585713488664,2009-09-08,0.0,0.0,1.1530307126643403e-06,0.0,0.0,0.0,0.0,0.0,16.219286021365548,0.0,0.0,0.0 -1707,reservoir_outflow,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1708,gw1_gw2,0.0,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1709,gw2_gw1,0.07061496969491986,2009-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1710,urban_drainage,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1711,percolation,0.029894950001450673,2009-09-09,0.0,0.0,2.760979594810721e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1712,runoff,0.007774215343856705,2009-09-09,0.0,0.0,7.69151451569657e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1713,storm_outflow,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1714,baseflow,0.002241826964969293,2009-09-09,0.0,0.0,1.9801486869379014e-07,0.0,0.0,0.0,0.0,0.0,16.944052631535158,0.0,0.0,0.0 -1715,catchment_outflow,0.010016042308825999,2009-09-09,0.0,0.0,9.671663202634472e-07,0.0,0.0,0.0,0.0,0.0,16.261650463456217,0.0,0.0,0.0 -1716,reservoir_outflow,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1717,gw1_gw2,0.0,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1718,gw2_gw1,0.070144203230287,2009-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1719,urban_drainage,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1720,percolation,0.02929705100142166,2009-09-10,0.0,0.0,2.7057600029145063e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1721,runoff,0.006219372275085364,2009-09-10,0.0,0.0,6.153211612557255e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1722,storm_outflow,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1723,baseflow,0.002309465025060424,2009-09-10,0.0,0.0,2.0428423152934193e-07,0.0,0.0,0.0,0.0,0.0,16.938224545160864,0.0,0.0,0.0 -1724,catchment_outflow,0.008528837300145788,2009-09-10,0.0,0.0,8.196053927850674e-07,0.0,0.0,0.0,0.0,0.0,16.301358351127046,0.0,0.0,0.0 -1725,reservoir_outflow,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1726,gw1_gw2,0.0,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1727,gw2_gw1,0.06967657520875169,2009-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1728,urban_drainage,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1729,percolation,0.028711109981393233,2009-09-11,0.0,0.0,2.6516448028562167e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1730,runoff,0.004975497820068292,2009-09-11,0.0,0.0,4.922569290045805e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1731,storm_outflow,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1732,baseflow,0.0023754691374512555,2009-09-11,0.0,0.0,2.104026329576591e-07,0.0,0.0,0.0,0.0,0.0,16.932847822248313,0.0,0.0,0.0 -1733,catchment_outflow,0.007350966957519547,2009-09-11,0.0,0.0,7.026595619622396e-07,0.0,0.0,0.0,0.0,0.0,16.345356316365017,0.0,0.0,0.0 -1734,reservoir_outflow,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1735,gw1_gw2,0.0,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1736,gw2_gw1,0.0692120647073601,2009-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1737,urban_drainage,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1738,percolation,0.02813688778176536,2009-09-12,0.0,0.0,2.5986119067990923e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1739,runoff,0.003980398256054634,2009-09-12,0.0,0.0,3.9380554320366434e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1740,storm_outflow,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1741,baseflow,0.002439872684062041,2009-09-12,0.0,0.0,2.1637315614226272e-07,0.0,0.0,0.0,0.0,0.0,16.92787273317549,0.0,0.0,0.0 -1742,catchment_outflow,0.006420270940116674,2009-09-12,0.0,0.0,6.10178699345927e-07,0.0,0.0,0.0,0.0,0.0,16.392832745887105,0.0,0.0,0.0 -1743,reservoir_outflow,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1744,gw1_gw2,0.0,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1745,gw2_gw1,0.06875065094264432,2009-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1746,urban_drainage,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1747,percolation,0.027574150026130055,2009-09-13,0.0,0.0,2.5466396686631105e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1748,runoff,0.003184318604843707,2009-09-13,0.0,0.0,3.150444345629315e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1749,storm_outflow,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1750,baseflow,0.002502708377417211,2009-09-13,0.0,0.0,2.2219882242356487e-07,0.0,0.0,0.0,0.0,0.0,16.92325659302749,0.0,0.0,0.0 -1751,catchment_outflow,0.005687026982260918,2009-09-13,0.0,0.0,5.372432569864964e-07,0.0,0.0,0.0,0.0,0.0,16.442621967357415,0.0,0.0,0.0 -1752,reservoir_outflow,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1753,gw1_gw2,0.0,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1754,gw2_gw1,0.06829231326969314,2009-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1755,urban_drainage,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1756,percolation,0.027022667025607454,2009-09-14,0.0,0.0,2.495706875289848e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1757,runoff,0.0025474548838749656,2009-09-14,0.0,0.0,2.520355476503452e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1758,storm_outflow,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1759,baseflow,0.0025640082740376866,2009-09-14,0.0,0.0,2.2788259255573054e-07,0.0,0.0,0.0,0.0,0.0,16.9189625567588,0.0,0.0,0.0 -1760,catchment_outflow,0.005111463157912652,2009-09-14,0.0,0.0,4.799181402060757e-07,0.0,0.0,0.0,0.0,0.0,16.493298370799966,0.0,0.0,0.0 -1761,reservoir_outflow,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1762,gw1_gw2,0.0,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1763,gw2_gw1,0.06783703118122855,2009-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1764,urban_drainage,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1765,percolation,0.026482213685095304,2009-09-15,0.0,0.0,2.4457927377840516e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1766,runoff,0.0020379639070999727,2009-09-15,0.0,0.0,2.0162843812027618e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1767,storm_outflow,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1768,baseflow,0.0026238037875653307,2009-09-15,0.0,0.0,2.3342736791880136e-07,0.0,0.0,0.0,0.0,0.0,16.914958653450107,0.0,0.0,0.0 -1769,catchment_outflow,0.004661767694665303,2009-09-15,0.0,0.0,4.350558060390775e-07,0.0,0.0,0.0,0.0,0.0,16.543328459416827,0.0,0.0,0.0 -1770,reservoir_outflow,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1771,gw1_gw2,0.0,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1772,gw2_gw1,0.06738478430668701,2009-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1773,urban_drainage,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1774,percolation,0.0259525694113934,2009-09-16,0.0,0.0,2.3968768830283705e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1775,runoff,0.0016303711256799782,2009-09-16,0.0,0.0,1.6130275049622093e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1776,storm_outflow,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1777,baseflow,0.0026821257016249006,2009-09-16,0.0,0.0,2.388359917065753e-07,0.0,0.0,0.0,0.0,0.0,16.91121700607666,0.0,0.0,0.0 -1778,catchment_outflow,0.004312496827304879,2009-09-16,0.0,0.0,4.0013874220279623e-07,0.0,0.0,0.0,0.0,0.0,16.591248624013538,0.0,0.0,0.0 -1779,reservoir_outflow,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1780,gw1_gw2,0.0,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1781,gw2_gw1,0.06693555241130937,2009-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1782,urban_drainage,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1783,percolation,0.025433518023165527,2009-09-17,0.0,0.0,2.348939345367803e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1784,runoff,0.0013042969005439826,2009-09-17,0.0,0.0,1.2904220039697674e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1785,storm_outflow,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1786,baseflow,0.002739004182428752,2009-09-17,0.0,0.0,2.4411125009072836e-07,0.0,0.0,0.0,0.0,0.0,16.907713196503536,0.0,0.0,0.0 -1787,catchment_outflow,0.004043301082972735,2009-09-17,0.0,0.0,3.731534504877051e-07,0.0,0.0,0.0,0.0,0.0,16.635826419965614,0.0,0.0,0.0 -1788,reservoir_outflow,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1789,gw1_gw2,0.0,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1790,gw2_gw1,0.06648931539523364,2009-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1791,urban_drainage,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1792,percolation,0.024924847662702223,2009-09-18,0.0,0.0,2.301960558460447e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1793,runoff,0.0010434375204351862,2009-09-18,0.0,0.0,1.032337603175814e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1794,storm_outflow,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1795,baseflow,0.002794468791129436,2009-09-18,0.0,0.0,2.492558733616527e-07,0.0,0.0,0.0,0.0,0.0,16.904425745119838,0.0,0.0,0.0 -1796,catchment_outflow,0.003837906311564622,2009-09-18,0.0,0.0,3.5248963367923407e-07,0.0,0.0,0.0,0.0,0.0,16.67616956657339,0.0,0.0,0.0 -1797,reservoir_outflow,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1798,gw1_gw2,0.0,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1799,gw2_gw1,0.06604605329259883,2009-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1800,urban_drainage,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1801,percolation,0.024426350709448184,2009-09-19,0.0,0.0,2.255921347291238e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1802,runoff,0.000834750016348149,2009-09-19,0.0,0.0,8.258700825406512e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1803,storm_outflow,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1804,baseflow,0.002848548495925232,2009-09-19,0.0,0.0,2.542725370464766e-07,0.0,0.0,0.0,0.0,0.0,16.901335681671835,0.0,0.0,0.0 -1805,catchment_outflow,0.003683298512273381,2009-09-19,0.0,0.0,3.368595453005417e-07,0.0,0.0,0.0,0.0,0.0,16.711766134213967,0.0,0.0,0.0 -1806,reservoir_outflow,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1807,gw1_gw2,0.0,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1808,gw2_gw1,0.065605746270648,2009-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1809,urban_drainage,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1810,percolation,0.023937823695259212,2009-09-20,0.0,0.0,2.2108029203454133e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1811,runoff,0.0006678000130785191,2009-09-20,0.0,0.0,6.60696066032521e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1812,storm_outflow,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1813,baseflow,0.0029012716839235675,2009-09-20,0.0,0.0,2.59163863004724e-07,0.0,0.0,0.0,0.0,0.0,16.898426189176842,0.0,0.0,0.0 -1814,catchment_outflow,0.0035690716970020867,2009-09-20,0.0,0.0,3.252334696079761e-07,0.0,0.0,0.0,0.0,0.0,16.742461256603345,0.0,0.0,0.0 -1815,reservoir_outflow,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1816,gw1_gw2,0.0,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1817,gw2_gw1,0.06516837462884376,2009-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1818,urban_drainage,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1819,percolation,0.02345906722135403,2009-09-21,0.0,0.0,2.166586861938505e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1820,runoff,0.0005342400104628154,2009-09-21,0.0,0.0,5.285568528260168e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1821,storm_outflow,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1822,baseflow,0.0029526661727671435,2009-09-21,0.0,0.0,2.6393242050205845e-07,0.0,0.0,0.0,0.0,0.0,16.8956823067999,0.0,0.0,0.0 -1823,catchment_outflow,0.0034869061832299587,2009-09-21,0.0,0.0,3.167881057846601e-07,0.0,0.0,0.0,0.0,0.0,16.768390631548282,0.0,0.0,0.0 -1824,reservoir_outflow,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1825,gw1_gw2,0.0,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1826,gw2_gw1,0.06473391879798474,2009-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1827,urban_drainage,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1828,percolation,0.02298988587692695,2009-09-22,0.0,0.0,2.123255124699735e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1829,runoff,0.00042739200837025226,2009-09-22,0.0,0.0,4.228454822608134e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1830,storm_outflow,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1831,baseflow,0.0030027592220275424,2009-09-22,0.0,0.0,2.685807272625526e-07,0.0,0.0,0.0,0.0,0.0,16.893090680608534,0.0,0.0,0.0 -1832,catchment_outflow,0.003430151230397795,2009-09-22,0.0,0.0,3.108652754886339e-07,0.0,0.0,0.0,0.0,0.0,16.789895328710614,0.0,0.0,0.0 -1833,reservoir_outflow,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1834,gw1_gw2,0.0,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1835,gw2_gw1,0.06430235933933144,2009-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1836,urban_drainage,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1837,percolation,0.022530088159388416,2009-09-23,0.0,0.0,2.0807900222057406e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1838,runoff,0.0003419136066962018,2009-09-23,0.0,0.0,3.382763858086507e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1839,storm_outflow,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1840,baseflow,0.0030515775443709444,2009-09-23,0.0,0.0,2.731112504999106e-07,0.0,0.0,0.0,0.0,0.0,16.89063935344019,0.0,0.0,0.0 -1841,catchment_outflow,0.003393491151067146,2009-09-23,0.0,0.0,3.0693888908077567e-07,0.0,0.0,0.0,0.0,0.0,16.80743819688934,0.0,0.0,0.0 -1842,reservoir_outflow,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1843,gw1_gw2,0.0,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1844,gw2_gw1,0.06387367694373616,2009-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1845,urban_drainage,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1846,percolation,0.022079486396200644,2009-09-24,0.0,0.0,2.0391742217616256e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1847,runoff,0.00027353088535696143,2009-09-24,0.0,0.0,2.7062110864692055e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1848,storm_outflow,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1849,baseflow,0.0030991473165005185,2009-09-24,0.0,0.0,2.7752640792806484e-07,0.0,0.0,0.0,0.0,0.0,16.88831758690411,0.0,0.0,0.0 -1850,catchment_outflow,0.00337267820185748,2009-09-24,0.0,0.0,3.045885187927569e-07,0.0,0.0,0.0,0.0,0.0,16.821534211060296,0.0,0.0,0.0 -1851,reservoir_outflow,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1852,gw1_gw2,0.0,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1853,gw2_gw1,0.06344785243077773,2009-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1854,urban_drainage,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1855,percolation,0.021637896668276632,2009-09-25,0.0,0.0,1.998390737326393e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1856,runoff,0.00021882470828556914,2009-09-25,0.0,0.0,2.1649688691753648e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1857,storm_outflow,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1858,baseflow,0.003145494189879959,2009-09-25,0.0,0.0,2.818285687515607e-07,0.0,0.0,0.0,0.0,0.0,16.886115709927022,0.0,0.0,0.0 -1859,catchment_outflow,0.003364318898165528,2009-09-25,0.0,0.0,3.034782574433144e-07,0.0,0.0,0.0,0.0,0.0,16.83269947647344,0.0,0.0,0.0 -1860,reservoir_outflow,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1861,gw1_gw2,0.0,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1862,gw2_gw1,0.06302486674790586,2009-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1863,urban_drainage,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1864,percolation,0.0212051387349111,2009-09-26,0.0,0.0,1.958422922579865e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1865,runoff,0.0001750597666284553,2009-09-26,0.0,0.0,1.7319750953402917e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1866,storm_outflow,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1867,baseflow,0.003190643301242537,2009-09-26,0.0,0.0,2.8602005463613143e-07,0.0,0.0,0.0,0.0,0.0,16.884024989336616,0.0,0.0,0.0 -1868,catchment_outflow,0.003365703067870992,2009-09-26,0.0,0.0,3.0333980558953434e-07,0.0,0.0,0.0,0.0,0.0,16.84141832113358,0.0,0.0,0.0 -1869,reservoir_outflow,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1870,gw1_gw2,0.0,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1871,gw2_gw1,0.06260470096958652,2009-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1872,urban_drainage,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1873,percolation,0.020781035960212874,2009-09-27,0.0,0.0,1.9192544641282674e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1874,runoff,0.00014004781330276424,2009-09-27,0.0,0.0,1.3855800762722336e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1875,storm_outflow,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1876,baseflow,0.003234619282889963,2009-09-27,0.0,0.0,2.9010314065986174e-07,0.0,0.0,0.0,0.0,0.0,16.882037518830213,0.0,0.0,0.0 -1877,catchment_outflow,0.003374667096192727,2009-09-27,0.0,0.0,3.039589414225841e-07,0.0,0.0,0.0,0.0,0.0,16.84812520364604,0.0,0.0,0.0 -1878,reservoir_outflow,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1879,gw1_gw2,0.0,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1880,gw2_gw1,0.06218733629645606,2009-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1881,urban_drainage,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1882,percolation,0.020365415241008617,2009-09-28,0.0,0.0,1.880869374845702e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1883,runoff,0.0001120382506422114,2009-09-28,0.0,0.0,1.108464061017787e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1884,storm_outflow,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1885,baseflow,0.0032774462727852595,2009-09-28,0.0,0.0,2.9408005624532635e-07,0.0,0.0,0.0,0.0,0.0,16.880146123352027,0.0,0.0,0.0 -1886,catchment_outflow,0.003389484523427471,2009-09-28,0.0,0.0,3.0516469685550423e-07,0.0,0.0,0.0,0.0,0.0,16.853197391149763,0.0,0.0,0.0 -1887,reservoir_outflow,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1888,gw1_gw2,0.0,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1889,gw2_gw1,0.06177275405447951,2009-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1890,urban_drainage,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1891,percolation,0.019958106936188446,2009-09-29,0.0,0.0,1.8432519873487885e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1892,runoff,8.963060051376912e-05,2009-09-29,0.0,0.0,8.867712488142295e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1893,storm_outflow,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1894,baseflow,0.0033191479244437674,2009-09-29,0.0,0.0,2.97952986073085e-07,0.0,0.0,0.0,0.0,0.0,16.878344276440632,0.0,0.0,0.0 -1895,catchment_outflow,0.0034087785249575365,2009-09-29,0.0,0.0,3.068206985612273e-07,0.0,0.0,0.0,0.0,0.0,16.85695469438773,0.0,0.0,0.0 -1896,reservoir_outflow,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1897,gw1_gw2,0.0,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1898,gw2_gw1,0.06136093569411649,2009-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1899,urban_drainage,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1900,percolation,0.019558944797464676,2009-09-30,0.0,0.0,1.8063869476018128e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1901,runoff,7.17044804110153e-05,2009-09-30,0.0,0.0,7.0941699905138374e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1902,storm_outflow,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1903,baseflow,0.003359747416626319,2009-09-30,0.0,0.0,3.017240709769068e-07,0.0,0.0,0.0,0.0,0.0,16.876626028539576,0.0,0.0,0.0 -1904,catchment_outflow,0.0034314518970373345,2009-09-30,0.0,0.0,3.0881824096742063e-07,0.0,0.0,0.0,0.0,0.0,16.859663333435183,0.0,0.0,0.0 -1905,reservoir_outflow,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1906,gw1_gw2,0.0,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1907,gw2_gw1,0.06095186278948894,2009-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1908,urban_drainage,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1909,percolation,0.019167765901515383,2009-10-01,0.0,0.0,1.7702592086497766e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1910,runoff,5.736358432881224e-05,2009-10-01,0.0,0.0,5.6753359924110695e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1911,storm_outflow,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1912,baseflow,0.0033992674628385423,2009-10-01,0.0,0.0,3.05395408821089e-07,0.0,0.0,0.0,0.0,0.0,16.87498594461123,0.0,0.0,0.0 -1913,catchment_outflow,0.0034566310471673546,2009-10-01,0.0,0.0,3.1107074481350007e-07,0.0,0.0,0.0,0.0,0.0,16.861541855233735,0.0,0.0,0.0 -1914,reservoir_outflow,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1915,gw1_gw2,0.0,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1916,gw2_gw1,0.06054551703755902,2009-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1917,urban_drainage,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1918,percolation,0.018784410583485078,2009-10-02,0.0,0.0,1.734854024476781e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1919,runoff,4.589086746304979e-05,2009-10-02,0.0,0.0,4.540268793928856e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1920,storm_outflow,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1921,baseflow,0.003437730320640159,2009-10-02,0.0,0.0,3.089690553602282e-07,0.0,0.0,0.0,0.0,0.0,16.873419049675295,0.0,0.0,0.0 -1922,catchment_outflow,0.003483621188103209,2009-10-02,0.0,0.0,3.13509324154157e-07,0.0,0.0,0.0,0.0,0.0,16.86276774827852,0.0,0.0,0.0 -1923,reservoir_outflow,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1924,gw1_gw2,0.0,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1925,gw2_gw1,0.06014188025730878,2009-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1926,urban_drainage,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1927,percolation,0.018408722371815373,2009-10-03,0.0,0.0,1.7001569439872453e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1928,runoff,3.671269397043983e-05,2009-10-03,0.0,0.0,3.6322150351430845e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1929,storm_outflow,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1930,baseflow,0.003475157800768097,2009-10-03,0.0,0.0,3.124470250817957e-07,0.0,0.0,0.0,0.0,0.0,16.87192078112182,0.0,0.0,0.0 -1931,catchment_outflow,0.003511870494738537,2009-10-03,0.0,0.0,3.1607924011693883e-07,0.0,0.0,0.0,0.0,0.0,16.863483945552044,0.0,0.0,0.0 -1932,reservoir_outflow,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1933,gw1_gw2,0.0,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1934,gw2_gw1,0.05974093438892663,2009-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1935,urban_drainage,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1936,percolation,0.018040547924379067,2009-10-04,0.0,0.0,1.6661538051075006e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1937,runoff,2.9370155176351862e-05,2009-10-04,0.0,0.0,2.9057720281144676e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1938,storm_outflow,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1939,baseflow,0.003511571276077124,2009-10-04,0.0,0.0,3.1583129203185994e-07,0.0,0.0,0.0,0.0,0.0,16.870486946835605,0.0,0.0,0.0 -1940,catchment_outflow,0.0035409414312534758,2009-10-04,0.0,0.0,3.1873706405997443e-07,0.0,0.0,0.0,0.0,0.0,16.863804784012792,0.0,0.0,0.0 -1941,reservoir_outflow,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1942,gw1_gw2,0.0,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1943,gw2_gw1,0.05934266149300065,2009-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1944,urban_drainage,0.023,2009-10-05,0.0,0.0,3.2000000000000005e-05,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0 -1945,percolation,0.017679736965891486,2009-10-05,0.0,0.0,1.6328307290053505e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1946,runoff,2.3496124141081492e-05,2009-10-05,0.0,0.0,2.3246176224915742e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1947,storm_outflow,0.023,2009-10-05,0.0,0.0,3.2000000000000005e-05,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0 -1948,baseflow,0.0035469916903016602,2009-10-05,0.0,0.0,3.191237906242938e-07,0.0,0.0,0.0,0.0,0.0,16.86911368832221,0.0,0.0,0.0 -1949,catchment_outflow,0.02657048781444274,2009-10-05,0.0,0.0,3.232144840824679e-05,0.0,0.0,0.0,0.0,0.0,14.88256711636884,0.0,0.0,0.0 -1950,reservoir_outflow,0.0115,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1951,gw1_gw2,0.0,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1952,gw2_gw1,0.058947043749713934,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1953,urban_drainage,0.039,2009-10-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0 -1954,percolation,0.017326142226573655,2009-10-06,0.0,0.0,1.6001741144252434e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1955,runoff,1.8796899312865195e-05,2009-10-06,0.0,0.0,1.8596940979932593e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1956,storm_outflow,0.039,2009-10-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0 -1957,baseflow,0.00358143956664234,2009-10-06,0.0,0.0,3.2232641643379614e-07,0.0,0.0,0.0,0.0,0.0,16.867797448152178,0.0,0.0,0.0 -1958,catchment_outflow,0.042600236465955205,2009-10-06,0.0,0.0,1.3241861105317895e-06,0.0,0.0,0.0,0.0,0.0,14.679727010271092,0.0,0.0,0.0 -1959,reservoir_outflow,0.0195,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1960,gw1_gw2,0.0,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1961,gw2_gw1,0.05855406345804912,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1962,urban_drainage,0.04,2009-10-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 -1963,percolation,0.01697961938204218,2009-10-07,0.0,0.0,1.5681706321367387e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1964,runoff,1.5037519450292156e-05,2009-10-07,0.0,0.0,1.4877552783946074e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1965,storm_outflow,0.04,2009-10-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 -1966,baseflow,0.0036149350161808398,2009-10-07,0.0,0.0,3.254410269730535e-07,0.0,0.0,0.0,0.0,0.0,16.866534941144867,0.0,0.0,0.0 -1967,catchment_outflow,0.04362997253563113,2009-10-07,0.0,0.0,1.326928782251448e-06,0.0,0.0,0.0,0.0,0.0,14.587747058718456,0.0,0.0,0.0 -1968,reservoir_outflow,0.02,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1969,gw1_gw2,0.0,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1970,gw2_gw1,0.058163703034995254,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1971,urban_drainage,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1972,percolation,0.016640026994401338,2009-10-08,0.0,0.0,1.5368072194940039e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1973,runoff,1.2030015560233725e-05,2009-10-08,0.0,0.0,1.190204222715686e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1974,storm_outflow,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1975,baseflow,0.0036474977461263907,2009-10-08,0.0,0.0,3.284694424543559e-07,0.0,0.0,0.0,0.0,0.0,16.865323128800053,0.0,0.0,0.0 -1976,catchment_outflow,0.0036595277616866245,2009-10-08,0.0,0.0,3.296596466770716e-07,0.0,0.0,0.0,0.0,0.0,16.86269178243389,0.0,0.0,0.0 -1977,reservoir_outflow,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1978,gw1_gw2,0.0,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1979,gw2_gw1,0.05777594501476191,2009-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1980,urban_drainage,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1981,percolation,0.01630722645451331,2009-10-09,0.0,0.0,1.506071075104124e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1982,runoff,9.62401244818698e-06,2009-10-09,0.0,0.0,9.521633781725489e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1983,storm_outflow,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1984,baseflow,0.0036791470678973577,2009-10-09,0.0,0.0,3.3141344653598035e-07,0.0,0.0,0.0,0.0,0.0,16.864159196558244,0.0,0.0,0.0 -1985,catchment_outflow,0.003688771080345545,2009-10-09,0.0,0.0,3.323656099141529e-07,0.0,0.0,0.0,0.0,0.0,16.8620738445003,0.0,0.0,0.0 -1986,reservoir_outflow,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1987,gw1_gw2,0.0,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1988,gw2_gw1,0.057390772047996745,2009-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1989,urban_drainage,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1990,percolation,0.015981081925423045,2009-10-10,0.0,0.0,1.4759496536020415e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1991,runoff,7.699209958549584e-06,2009-10-10,0.0,0.0,7.617307025380388e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1992,storm_outflow,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1993,baseflow,0.0037099019050411716,2009-10-10,0.0,0.0,3.342747870536454e-07,0.0,0.0,0.0,0.0,0.0,16.863040533531098,0.0,0.0,0.0 -1994,catchment_outflow,0.003717601114999721,2009-10-10,0.0,0.0,3.3503651775618345e-07,0.0,0.0,0.0,0.0,0.0,16.861387506194564,0.0,0.0,0.0 -1995,reservoir_outflow,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1996,gw1_gw2,0.0,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1997,gw2_gw1,0.05700816690101026,2009-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1998,urban_drainage,0.02,2009-10-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1999,percolation,0.015661460286914584,2009-10-11,0.0,0.0,1.4464306605300007e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2000,runoff,6.159367966839667e-06,2009-10-11,0.0,0.0,6.093845620304312e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2001,storm_outflow,0.02,2009-10-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -2002,baseflow,0.003739780800995855,2009-10-11,0.0,0.0,3.370551767373363e-07,0.0,0.0,0.0,0.0,0.0,16.861964714394563,0.0,0.0,0.0 -2003,catchment_outflow,0.023745940168962695,2009-10-11,0.0,0.0,4.3376645612993665e-06,0.0,0.0,0.0,0.0,0.0,14.446006302542514,0.0,0.0,0.0 -2004,reservoir_outflow,0.01,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2005,gw1_gw2,0.0,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2006,gw2_gw1,0.05662811245500343,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2007,urban_drainage,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2008,percolation,0.01534823108117629,2009-10-12,0.0,0.0,1.4175020473194003e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2009,runoff,4.9274943734717335e-06,2009-10-12,0.0,0.0,4.875076496243448e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2010,storm_outflow,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2011,baseflow,0.003768801926696306,2009-10-12,0.0,0.0,3.3975629391379144e-07,0.0,0.0,0.0,0.0,0.0,16.86092948318018,0.0,0.0,0.0 -2012,catchment_outflow,0.003773729421069778,2009-10-12,0.0,0.0,3.402438015634158e-07,0.0,0.0,0.0,0.0,0.0,16.85989003732012,0.0,0.0,0.0 -2013,reservoir_outflow,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2014,gw1_gw2,0.0,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2015,gw2_gw1,0.05625059170530342,2009-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2016,urban_drainage,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2017,percolation,0.015041266459552765,2009-10-13,0.0,0.0,1.3891520063730127e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2018,runoff,3.941995498777387e-06,2009-10-13,0.0,0.0,3.900061196994759e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2019,storm_outflow,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020,baseflow,0.0037969830880284472,2009-10-13,0.0,0.0,3.423797831949395e-07,0.0,0.0,0.0,0.0,0.0,16.85993273873641,0.0,0.0,0.0 -2021,catchment_outflow,0.0038009250835272248,2009-10-13,0.0,0.0,3.4276978931463893e-07,0.0,0.0,0.0,0.0,0.0,16.859108165584356,0.0,0.0,0.0 -2022,reservoir_outflow,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2023,gw1_gw2,0.0,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2024,gw2_gw1,0.05587558776060142,2009-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2025,urban_drainage,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2026,percolation,0.01474044113036171,2009-10-14,0.0,0.0,1.3613689662455524e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2027,runoff,3.1535963990219093e-06,2009-10-14,0.0,0.0,3.1200489575958077e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2028,storm_outflow,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2029,baseflow,0.0038243417331342805,2009-10-14,0.0,0.0,3.4492725615256604e-07,0.0,0.0,0.0,0.0,0.0,16.85897252166262,0.0,0.0,0.0 -2030,catchment_outflow,0.0038274953295333023,2009-10-14,0.0,0.0,3.452392610483256e-07,0.0,0.0,0.0,0.0,0.0,16.858318233605083,0.0,0.0,0.0 -2031,reservoir_outflow,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2032,gw1_gw2,0.0,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2033,gw2_gw1,0.055503083842197404,2009-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2034,urban_drainage,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2035,percolation,0.014445632307754476,2009-10-15,0.0,0.0,1.3341415869206415e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2036,runoff,2.5228771192175275e-06,2009-10-15,0.0,0.0,2.496039166076646e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2037,storm_outflow,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2038,baseflow,0.003850894959570831,2009-10-15,0.0,0.0,3.474002919794863e-07,0.0,0.0,0.0,0.0,0.0,16.858047002544577,0.0,0.0,0.0 -2039,catchment_outflow,0.0038534178366900484,2009-10-15,0.0,0.0,3.4764989589609395e-07,0.0,0.0,0.0,0.0,0.0,16.857527699240002,0.0,0.0,0.0 -2040,reservoir_outflow,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2041,gw1_gw2,0.0,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2042,gw2_gw1,0.05513306328324923,2009-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2043,urban_drainage,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2044,percolation,0.014156719661599386,2009-10-16,0.0,0.0,1.3074587551822287e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2045,runoff,2.018301695374022e-06,2009-10-16,0.0,0.0,1.9968313328613167e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2046,storm_outflow,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2047,baseflow,0.0038766595213259023,2009-10-16,0.0,0.0,3.498004381374931e-07,0.0,0.0,0.0,0.0,0.0,16.857154471342714,0.0,0.0,0.0 -2048,catchment_outflow,0.003878677823021276,2009-10-16,0.0,0.0,3.5000012127077923e-07,0.0,0.0,0.0,0.0,0.0,16.85674219871557,0.0,0.0,0.0 -2049,reservoir_outflow,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2050,gw1_gw2,0.0,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2051,gw2_gw1,0.05476550952802786,2009-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2052,urban_drainage,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2053,percolation,0.013873585268367399,2009-10-17,0.0,0.0,1.281309580078584e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2054,runoff,1.6146413562992176e-06,2009-10-17,0.0,0.0,1.5974650662890537e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2055,storm_outflow,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2056,baseflow,0.003901651835693506,2009-10-17,0.0,0.0,3.5212921099234585e-07,0.0,0.0,0.0,0.0,0.0,16.856293327803442,0.0,0.0,0.0 -2057,catchment_outflow,0.0039032664770498053,2009-10-17,0.0,0.0,3.5228895749897474e-07,0.0,0.0,0.0,0.0,0.0,16.855965943617324,0.0,0.0,0.0 -2058,reservoir_outflow,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2059,gw1_gw2,0.0,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2060,gw2_gw1,0.05440040613117408,2009-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2061,urban_drainage,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2062,percolation,0.013596113563000053,2009-10-18,0.0,0.0,1.2556833884770123e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2063,runoff,1.291713085039374e-06,2009-10-18,0.0,0.0,1.2779720530312429e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2064,storm_outflow,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2065,baseflow,0.0039258879900117725,2009-10-18,0.0,0.0,3.5438809643605755e-07,0.0,0.0,0.0,0.0,0.0,16.855462072780295,0.0,0.0,0.0 -2066,catchment_outflow,0.003927179703096812,2009-10-18,0.0,0.0,3.545158936413607e-07,0.0,0.0,0.0,0.0,0.0,16.855202033640442,0.0,0.0,0.0 -2067,reservoir_outflow,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2068,gw1_gw2,0.0,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2069,gw2_gw1,0.054037736756966485,2009-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2070,urban_drainage,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2071,percolation,0.01332419129174005,2009-10-19,0.0,0.0,1.230569720707472e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2072,runoff,1.0333704680314992e-06,2009-10-19,0.0,0.0,1.0223776424249942e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -2073,storm_outflow,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2074,baseflow,0.003949383748266093,2009-10-19,0.0,0.0,3.5657855049673613e-07,0.0,0.0,0.0,0.0,0.0,16.854659300365785,0.0,0.0,0.0 -2075,catchment_outflow,0.003950417118734124,2009-10-19,0.0,0.0,3.566807882609786e-07,0.0,0.0,0.0,0.0,0.0,16.85445270274336,0.0,0.0,0.0 -2076,reservoir_outflow,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2077,gw1_gw2,0.0,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2078,gw2_gw1,0.053677485178586615,2009-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2079,urban_drainage,0.033,2009-10-20,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 -2080,percolation,0.013057707465905254,2009-10-20,0.0,0.0,1.2059583262933228e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2081,runoff,0.0,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2082,storm_outflow,0.033,2009-10-20,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 -2083,baseflow,0.003972154557560191,2009-10-20,0.0,0.0,3.5870199993622753e-07,0.0,0.0,0.0,0.0,0.0,16.853883690746912,0.0,0.0,0.0 -2084,catchment_outflow,0.03697215455756019,2009-10-20,0.0,0.0,9.358701999936228e-06,0.0,0.0,0.0,0.0,0.0,11.96363144663806,0.0,0.0,0.0 -2085,reservoir_outflow,0.0165,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2086,gw1_gw2,0.0,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2087,gw2_gw1,0.053319635277395964,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2088,urban_drainage,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2089,percolation,0.012796553316587144,2009-10-21,0.0,0.0,1.181839159767456e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2090,runoff,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2091,storm_outflow,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2092,baseflow,0.003994215554457759,2009-10-21,0.0,0.0,3.607598428358056e-07,0.0,0.0,0.0,0.0,0.0,16.853134003707886,0.0,0.0,0.0 -2093,catchment_outflow,0.003994215554457759,2009-10-21,0.0,0.0,3.607598428358056e-07,0.0,0.0,0.0,0.0,0.0,16.853134003707886,0.0,0.0,0.0 -2094,reservoir_outflow,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2095,gw1_gw2,0.0,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2096,gw2_gw1,0.052964171042213515,2009-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2097,urban_drainage,0.013999999999999999,2009-10-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0 -2098,percolation,0.012540622250255403,2009-10-22,0.0,0.0,1.1582023765721071e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2099,runoff,0.0,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2100,storm_outflow,0.013999999999999999,2009-10-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0 -2101,baseflow,0.004015581571197253,2009-10-22,0.0,0.0,3.6275344917014637e-07,0.0,0.0,0.0,0.0,0.0,16.852409072712693,0.0,0.0,0.0 -2102,catchment_outflow,0.018015581571197252,2009-10-22,0.0,0.0,2.362753449170146e-06,0.0,0.0,0.0,0.0,0.0,13.317484221893931,0.0,0.0,0.0 -2103,reservoir_outflow,0.006999999999999999,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2104,gw1_gw2,0.0,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2105,gw2_gw1,0.052611076568598675,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2106,urban_drainage,0.018999999999999996,2009-10-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0 -2107,percolation,0.012289809805250294,2009-10-23,0.0,0.0,1.135038329040665e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2108,runoff,0.0,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2109,storm_outflow,0.018999999999999996,2009-10-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0 -2110,baseflow,0.004036267141782385,2009-10-23,0.0,0.0,3.646841613698226e-07,0.0,0.0,0.0,0.0,0.0,16.851707799507963,0.0,0.0,0.0 -2111,catchment_outflow,0.02303626714178238,2009-10-23,0.0,0.0,1.3646841613698225e-06,0.0,0.0,0.0,0.0,0.0,13.48340328849127,0.0,0.0,0.0 -2112,reservoir_outflow,0.009499999999999998,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2113,gw1_gw2,0.0,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2114,gw2_gw1,0.052260336058141205,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2115,urban_drainage,0.007000000000000001,2009-10-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 -2116,percolation,0.012044013609145287,2009-10-24,0.0,0.0,1.1123375624598517e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2117,runoff,0.0,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2118,storm_outflow,0.007000000000000001,2009-10-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 -2119,baseflow,0.004056286507950793,2009-10-24,0.0,0.0,3.6655329487254774e-07,0.0,0.0,0.0,0.0,0.0,16.851029149193607,0.0,0.0,0.0 -2120,catchment_outflow,0.011056286507950795,2009-10-24,0.0,0.0,1.3665532948725476e-06,0.0,0.0,0.0,0.0,0.0,14.559825497213497,0.0,0.0,0.0 -2121,reservoir_outflow,0.0035000000000000005,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2122,gw1_gw2,0.0,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2123,gw2_gw1,0.05191193381775357,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2124,urban_drainage,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2125,percolation,0.011803133336962385,2009-10-25,0.0,0.0,1.0900908112106547e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2126,runoff,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2127,storm_outflow,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2128,baseflow,0.0040756536250233216,2009-10-25,0.0,0.0,3.6836213866339305e-07,0.0,0.0,0.0,0.0,0.0,16.850372145714548,0.0,0.0,0.0 -2129,catchment_outflow,0.0040756536250233216,2009-10-25,0.0,0.0,3.6836213866339305e-07,0.0,0.0,0.0,0.0,0.0,16.850372145714548,0.0,0.0,0.0 -2130,reservoir_outflow,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2131,gw1_gw2,0.0,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2132,gw2_gw1,0.051565854258968716,2009-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2133,urban_drainage,0.012999999999999998,2009-10-26,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 -2134,percolation,0.011567070670223133,2009-10-26,0.0,0.0,1.0682889949864413e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2135,runoff,0.0,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2136,storm_outflow,0.012999999999999998,2009-10-26,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 -2137,baseflow,0.004094382167636321,2009-10-26,0.0,0.0,3.701119558042007e-07,0.0,0.0,0.0,0.0,0.0,16.849735867732175,0.0,0.0,0.0 -2138,catchment_outflow,0.01709438216763632,2009-10-26,0.0,0.0,2.3701119558042e-06,0.0,0.0,0.0,0.0,0.0,14.804778631623307,0.0,0.0,0.0 -2139,reservoir_outflow,0.0065,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2140,gw1_gw2,0.0,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2141,gw2_gw1,0.05122208189724216,2009-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2142,urban_drainage,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2143,percolation,0.011335729256818671,2009-10-27,0.0,0.0,1.0469232150867128e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2144,runoff,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2145,storm_outflow,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2146,baseflow,0.004112485535359277,2009-10-27,0.0,0.0,3.7180398395240695e-07,0.0,0.0,0.0,0.0,0.0,16.84911944483876,0.0,0.0,0.0 -2147,catchment_outflow,0.004112485535359277,2009-10-27,0.0,0.0,3.7180398395240695e-07,0.0,0.0,0.0,0.0,0.0,16.84911944483876,0.0,0.0,0.0 -2148,reservoir_outflow,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2149,gw1_gw2,0.0,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2150,gw2_gw1,0.05088060135126043,2009-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2151,urban_drainage,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2152,percolation,0.011109014671682299,2009-10-28,0.0,0.0,1.0259847507849784e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2153,runoff,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2154,storm_outflow,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2155,baseflow,0.004129976858200084,2009-10-28,0.0,0.0,3.7343943586948843e-07,0.0,0.0,0.0,0.0,0.0,16.84852205408199,0.0,0.0,0.0 -2156,catchment_outflow,0.004129976858200084,2009-10-28,0.0,0.0,3.7343943586948843e-07,0.0,0.0,0.0,0.0,0.0,16.84852205408199,0.0,0.0,0.0 -2157,reservoir_outflow,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2158,gw1_gw2,0.0,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2159,gw2_gw1,0.05054139734225203,2009-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2160,urban_drainage,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2161,percolation,0.010886834378248651,2009-10-29,0.0,0.0,1.005465055769279e-06,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2162,runoff,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2163,storm_outflow,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2164,baseflow,0.004146869002000206,2009-10-29,0.0,0.0,3.750194999192379e-07,0.0,0.0,0.0,0.0,0.0,16.847942916770435,0.0,0.0,0.0 -2165,catchment_outflow,0.004146869002000206,2009-10-29,0.0,0.0,3.750194999192379e-07,0.0,0.0,0.0,0.0,0.0,16.847942916770435,0.0,0.0,0.0 -2166,reservoir_outflow,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2167,gw1_gw2,0.0,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2168,gw2_gw1,0.05020445469330373,2009-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2169,urban_drainage,0.04,2009-10-30,0.0,0.0,3.0188679245283018e-06,0.0,0.0,0.0,0.0,0.0,14.121428570000003,0.0,0.0,0.0 -2170,percolation,0.010669097690683678,2009-10-30,0.0,0.0,9.853557546538933e-07,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -2171,runoff,0.0,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2172,storm_outflow,0.04,2009-10-30,0.0,0.0,3.0188679245283018e-06,0.0,0.0,0.0,0.0,0.0,14.121428570000003,0.0,0.0,0.0 -2173,baseflow,0.004163174573721914,2009-10-30,0.0,0.0,3.7654534055607454e-07,0.0,0.0,0.0,0.0,0.0,16.847381295533783,0.0,0.0,0.0 -2174,catchment_outflow,0.04416317457372192,2009-10-30,0.0,0.0,3.395413265084376e-06,0.0,0.0,0.0,0.0,0.0,14.378398708257745,0.0,0.0,0.0 -2175,reservoir_outflow,0.0265,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2176,gw1_gw2,0.0,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2177,gw2_gw1,0.04986975832868179,2009-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2178,urban_drainage,0.04,2009-10-31,0.0,0.0,1.467505241090147e-06,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0 -2179,percolation,0.013188461310173316,2009-10-31,0.0,0.0,1.3384438219894054e-06,0.0,0.0,0.0,0.0,0.0,16.098812566960742,0.0,0.0,0.0 -2180,runoff,0.018698559566344454,2009-10-31,0.0,0.0,1.2427323983066928e-06,0.0,0.0,0.0,0.0,0.0,13.765816100569232,0.0,0.0,0.0 -2181,storm_outflow,0.04,2009-10-31,0.0,0.0,1.467505241090147e-06,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0 -2182,baseflow,0.004185737790563043,2009-10-31,0.0,0.0,3.7895008675965793e-07,0.0,0.0,0.0,0.0,0.0,16.841484802365333,0.0,0.0,0.0 -2183,catchment_outflow,0.0628842973569075,2009-10-31,0.0,0.0,3.0891877261564975e-06,0.0,0.0,0.0,0.0,0.0,14.115673837829341,0.0,0.0,0.0 -2184,reservoir_outflow,0.0205,2009-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2185,gw1_gw2,0.0,2009-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2186,gw2_gw1,0.04953729327315735,2009-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2187,urban_drainage,0.04,2009-11-01,0.0,0.0,1.2613556953179595e-06,0.0,0.0,0.0,0.0,0.0,13.84645888773148,0.0,0.0,0.0 -2188,percolation,0.017956975116473584,2009-11-01,0.0,0.0,1.983122414925215e-06,0.0,0.0,0.0,0.0,0.0,15.348409451228907,0.0,0.0,0.0 -2189,runoff,0.04171939310830235,2009-11-01,0.0,0.0,3.232344149897347e-06,0.0,0.0,0.0,0.0,0.0,13.60111717465821,0.0,0.0,0.0 -2190,storm_outflow,0.04,2009-11-01,0.0,0.0,1.2613556953179595e-06,0.0,0.0,0.0,0.0,0.0,13.84645888773148,0.0,0.0,0.0 -2191,baseflow,0.00422016588387782,2009-11-01,0.0,0.0,3.829605175800718e-07,0.0,0.0,0.0,0.0,0.0,16.82560206359089,0.0,0.0,0.0 -2192,catchment_outflow,0.08593955899218016,2009-11-01,0.0,0.0,4.876660362795379e-06,0.0,0.0,0.0,0.0,0.0,13.873652080805627,0.0,0.0,0.0 -2193,reservoir_outflow,0.017,2009-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2194,gw1_gw2,0.0,2009-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2195,gw2_gw1,0.049207044651336324,2009-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2196,urban_drainage,0.04,2009-11-02,0.0,0.0,1.1926391800605636e-06,0.0,0.0,0.0,0.0,0.0,13.661400330044094,0.0,0.0,0.0 -2197,percolation,0.023101976762910457,2009-11-02,0.0,0.0,2.6620077686199967e-06,0.0,0.0,0.0,0.0,0.0,14.854683881052152,0.0,0.0,0.0 -2198,runoff,0.05690972085187479,2009-11-02,0.0,0.0,4.981034659895499e-06,0.0,0.0,0.0,0.0,0.0,13.45621081244786,0.0,0.0,0.0 -2199,storm_outflow,0.04,2009-11-02,0.0,0.0,1.1926391800605636e-06,0.0,0.0,0.0,0.0,0.0,13.661400330044094,0.0,0.0,0.0 -2200,baseflow,0.0042673704110754015,2009-11-02,0.0,0.0,3.886581357076716e-07,0.0,0.0,0.0,0.0,0.0,16.79892749490543,0.0,0.0,0.0 -2201,catchment_outflow,0.1011770912629502,2009-11-02,0.0,0.0,6.5623319756637345e-06,0.0,0.0,0.0,0.0,0.0,13.678318314123052,0.0,0.0,0.0 -2202,reservoir_outflow,0.017,2009-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2203,gw1_gw2,0.0,2009-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2204,gw2_gw1,0.0488789976869942,2009-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2205,urban_drainage,0.038,2009-11-03,0.0,0.0,1.0596319590030281e-06,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0 -2206,percolation,0.02861013754980906,2009-11-03,0.0,0.0,3.3705934592223526e-06,0.0,0.0,0.0,0.0,0.0,14.495170681422229,0.0,0.0,0.0 -2207,runoff,0.07092629495936895,2009-11-03,0.0,0.0,6.5242472144989165e-06,0.0,0.0,0.0,0.0,0.0,13.32815155854345,0.0,0.0,0.0 -2208,storm_outflow,0.038,2009-11-03,0.0,0.0,1.0596319590030281e-06,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0 -2209,baseflow,0.004328227328922235,2009-11-03,0.0,0.0,3.961129740164583e-07,0.0,0.0,0.0,0.0,0.0,16.76085717517278,0.0,0.0,0.0 -2210,catchment_outflow,0.11325452228829119,2009-11-03,0.0,0.0,7.979992147518402e-06,0.0,0.0,0.0,0.0,0.0,13.503955325979721,0.0,0.0,0.0 -2211,reservoir_outflow,0.018,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2212,gw1_gw2,0.0,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2213,gw2_gw1,0.04855313770241435,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2214,urban_drainage,0.002000000000000001,2009-11-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 -2215,percolation,0.03045468151851425,2009-11-04,0.0,0.0,3.61092268922275e-06,0.0,0.0,0.0,0.0,0.0,14.374862376716369,0.0,0.0,0.0 -2216,runoff,0.05651821437343283,2009-11-04,0.0,0.0,6.245201435548615e-06,0.0,0.0,0.0,0.0,0.0,13.19249949591419,0.0,0.0,0.0 -2217,storm_outflow,0.002000000000000001,2009-11-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 -2218,baseflow,0.004393543464396216,2009-11-04,0.0,0.0,4.04149998304474e-07,0.0,0.0,0.0,0.0,0.0,16.719509734160376,0.0,0.0,0.0 -2219,catchment_outflow,0.06291175783782904,2009-11-04,0.0,0.0,7.649351433853089e-06,0.0,0.0,0.0,0.0,0.0,13.432580705665329,0.0,0.0,0.0 -2220,reservoir_outflow,0.0010000000000000005,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2221,gw1_gw2,0.0,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2222,gw2_gw1,0.04822945011773161,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2223,urban_drainage,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2224,percolation,0.03101048104144997,2009-11-05,0.0,0.0,3.6877268276331346e-06,0.0,0.0,0.0,0.0,0.0,14.308929842219781,0.0,0.0,0.0 -2225,runoff,0.04640104263273088,2009-11-05,0.0,0.0,5.492903122421692e-06,0.0,0.0,0.0,0.0,0.0,13.116004659590866,0.0,0.0,0.0 -2226,storm_outflow,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2227,baseflow,0.00446008580833885,2009-11-05,0.0,0.0,4.123589403777957e-07,0.0,0.0,0.0,0.0,0.0,16.6776084988197,0.0,0.0,0.0 -2228,catchment_outflow,0.05086112844106973,2009-11-05,0.0,0.0,5.905262062799487e-06,0.0,0.0,0.0,0.0,0.0,13.428326844040134,0.0,0.0,0.0 -2229,reservoir_outflow,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2230,gw1_gw2,0.0,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2231,gw2_gw1,0.04790792045027992,2009-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2232,urban_drainage,0.0009999999999999983,2009-11-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 -2233,percolation,0.03247804056779863,2009-11-06,0.0,0.0,3.880638897934973e-06,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 -2234,runoff,0.048135694858295615,2009-11-06,0.0,0.0,5.283211187452356e-06,0.0,0.0,0.0,0.0,0.0,12.871121512129013,0.0,0.0,0.0 -2235,storm_outflow,0.0009999999999999983,2009-11-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 -2236,baseflow,0.0045301306952375,2009-11-06,0.0,0.0,4.2102964027168854e-07,0.0,0.0,0.0,0.0,0.0,16.63276280278416,0.0,0.0,0.0 -2237,catchment_outflow,0.053665825553533116,2009-11-06,0.0,0.0,7.704240827724044e-06,0.0,0.0,0.0,0.0,0.0,13.174086959980404,0.0,0.0,0.0 -2238,reservoir_outflow,0.0004999999999999991,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2239,gw1_gw2,0.0,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2240,gw2_gw1,0.04758853431394475,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2241,urban_drainage,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2242,percolation,0.03182847975644265,2009-11-07,0.0,0.0,3.803026119976274e-06,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 -2243,runoff,0.03432776007428405,2009-11-07,0.0,0.0,4.226568949961885e-06,0.0,0.0,0.0,0.0,0.0,12.9441490935522,0.0,0.0,0.0 -2244,storm_outflow,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2245,baseflow,0.004598376567890513,2009-11-07,0.0,0.0,4.294846314709499e-07,0.0,0.0,0.0,0.0,0.0,16.590242296216488,0.0,0.0,0.0 -2246,catchment_outflow,0.038926136642174564,2009-11-07,0.0,0.0,4.656053581432835e-06,0.0,0.0,0.0,0.0,0.0,13.37486508526742,0.0,0.0,0.0 -2247,reservoir_outflow,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2248,gw1_gw2,0.0,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2249,gw2_gw1,0.04727127741851849,2009-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2250,urban_drainage,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2251,percolation,0.031191910161313802,2009-11-08,0.0,0.0,3.726965597576749e-06,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 -2252,runoff,0.028646097690167693,2009-11-08,0.0,0.0,3.3812551599695086e-06,0.0,0.0,0.0,0.0,0.0,12.850053241661188,0.0,0.0,0.0 -2253,storm_outflow,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2254,baseflow,0.004664860401874071,2009-11-08,0.0,0.0,4.3772833388621455e-07,0.0,0.0,0.0,0.0,0.0,16.549876874904697,0.0,0.0,0.0 -2255,catchment_outflow,0.033310958092041765,2009-11-08,0.0,0.0,3.818983493855723e-06,0.0,0.0,0.0,0.0,0.0,13.368175858037054,0.0,0.0,0.0 -2256,reservoir_outflow,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2257,gw1_gw2,0.0,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2258,gw2_gw1,0.04695613556906171,2009-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2259,urban_drainage,0.007000000000000001,2009-11-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 -2260,percolation,0.03292716584735006,2009-11-09,0.0,0.0,3.956592292143008e-06,0.0,0.0,0.0,0.0,0.0,13.952689472023808,0.0,0.0,0.0 -2261,runoff,0.03703598552431403,2009-11-09,0.0,0.0,3.7188908163682563e-06,0.0,0.0,0.0,0.0,0.0,12.088014996450653,0.0,0.0,0.0 -2262,storm_outflow,0.007000000000000001,2009-11-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 -2263,baseflow,0.004735516165487761,2009-11-09,0.0,0.0,4.4652549378185643e-07,0.0,0.0,0.0,0.0,0.0,16.504729726546003,0.0,0.0,0.0 -2264,catchment_outflow,0.048771501689801794,2009-11-09,0.0,0.0,7.165416310150112e-06,0.0,0.0,0.0,0.0,0.0,12.321744093210112,0.0,0.0,0.0 -2265,reservoir_outflow,0.0035000000000000005,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2266,gw1_gw2,0.0,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2267,gw2_gw1,0.046643094665267705,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2268,urban_drainage,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2269,percolation,0.03358728642813071,2009-11-10,0.0,0.0,4.047833259809511e-06,0.0,0.0,0.0,0.0,0.0,13.824138396464011,0.0,0.0,0.0 -2270,runoff,0.03202920767965784,2009-11-10,0.0,0.0,3.543022031459149e-06,0.0,0.0,0.0,0.0,0.0,11.913724938387073,0.0,0.0,0.0 -2271,storm_outflow,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2272,baseflow,0.004807645591144369,2009-11-10,0.0,0.0,4.5552876319692565e-07,0.0,0.0,0.0,0.0,0.0,16.45791170143717,0.0,0.0,0.0 -2273,catchment_outflow,0.03683685327080221,2009-11-10,0.0,0.0,3.998550794656075e-06,0.0,0.0,0.0,0.0,0.0,12.506795125357433,0.0,0.0,0.0 -2274,reservoir_outflow,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2275,gw1_gw2,0.0,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2276,gw2_gw1,0.04633214070083245,2009-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2277,urban_drainage,0.018999999999999996,2009-11-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 -2278,percolation,0.036136088626093826,2009-11-11,0.0,0.0,4.37763763053858e-06,0.0,0.0,0.0,0.0,0.0,13.509076181879701,0.0,0.0,0.0 -2279,runoff,0.04395718136668433,2009-11-11,0.0,0.0,4.203621078251512e-06,0.0,0.0,0.0,0.0,0.0,11.207949103261072,0.0,0.0,0.0 -2280,storm_outflow,0.018999999999999996,2009-11-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 -2281,baseflow,0.004885966698731742,2009-11-11,0.0,0.0,4.6533403536527975e-07,0.0,0.0,0.0,0.0,0.0,16.4033885188978,0.0,0.0,0.0 -2282,catchment_outflow,0.06784314806541607,2009-11-11,0.0,0.0,6.668955113616793e-06,0.0,0.0,0.0,0.0,0.0,11.292831824248108,0.0,0.0,0.0 -2283,reservoir_outflow,0.009499999999999998,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2284,gw1_gw2,0.0,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2285,gw2_gw1,0.04602325976282717,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2286,urban_drainage,0.04,2009-11-12,0.0,0.0,4.3010752688172043e-07,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 -2287,percolation,0.04563258529485325,2009-11-12,0.0,0.0,5.521027176883319e-06,0.0,0.0,0.0,0.0,0.0,12.75946805264111,0.0,0.0,0.0 -2288,runoff,0.09604657884519993,2009-11-12,0.0,0.0,7.466037859119579e-06,0.0,0.0,0.0,0.0,0.0,10.511181197266708,0.0,0.0,0.0 -2289,storm_outflow,0.04,2009-11-12,0.0,0.0,4.3010752688172043e-07,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 -2290,baseflow,0.0049878332452220455,2009-11-12,0.0,0.0,4.779732682190747e-07,0.0,0.0,0.0,0.0,0.0,16.32004495902468,0.0,0.0,0.0 -2291,catchment_outflow,0.14103441209042197,2009-11-12,0.0,0.0,8.374118654220374e-06,0.0,0.0,0.0,0.0,0.0,10.592908739689502,0.0,0.0,0.0 -2292,reservoir_outflow,0.0465,2009-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2293,gw1_gw2,0.0,2009-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2294,gw2_gw1,0.04571643803107506,2009-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2295,urban_drainage,0.04,2009-11-13,0.0,0.0,3.488649940262843e-07,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0 -2296,percolation,0.06193132600623286,2009-11-13,0.0,0.0,7.335084287701462e-06,0.0,0.0,0.0,0.0,0.0,12.01167531635391,0.0,0.0,0.0 -2297,runoff,0.1659138962714739,2009-11-13,0.0,0.0,1.2387755801815029e-05,0.0,0.0,0.0,0.0,0.0,10.238426187432633,0.0,0.0,0.0 -2298,storm_outflow,0.04,2009-11-13,0.0,0.0,3.488649940262843e-07,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0 -2299,baseflow,0.005130191977124573,2009-11-13,0.0,0.0,4.951160457677808e-07,0.0,0.0,0.0,0.0,0.0,16.190019101276395,0.0,0.0,0.0 -2300,catchment_outflow,0.2110440882485985,2009-11-13,0.0,0.0,1.3231736841609093e-05,0.0,0.0,0.0,0.0,0.0,10.338753776202825,0.0,0.0,0.0 -2301,reservoir_outflow,0.0635,2009-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2302,gw1_gw2,0.0,2009-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2303,gw2_gw1,0.045411661777534466,2009-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2304,urban_drainage,0.04,2009-11-14,0.0,0.0,5.35187344359517e-07,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0 -2305,percolation,0.06645852300040803,2009-11-14,0.0,0.0,7.823178297569095e-06,0.0,0.0,0.0,0.0,0.0,11.836056540152816,0.0,0.0,0.0 -2306,runoff,0.12386880796126094,2009-11-14,0.0,0.0,1.2026190293524227e-05,0.0,0.0,0.0,0.0,0.0,10.242871386355551,0.0,0.0,0.0 -2307,storm_outflow,0.04,2009-11-14,0.0,0.0,5.35187344359517e-07,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0 -2308,baseflow,0.005283512804682782,2009-11-14,0.0,0.0,5.134362013972841e-07,0.0,0.0,0.0,0.0,0.0,16.053103600307562,0.0,0.0,0.0 -2309,catchment_outflow,0.16915232076594372,2009-11-14,0.0,0.0,1.3074813839281028e-05,0.0,0.0,0.0,0.0,0.0,10.36317940985591,0.0,0.0,0.0 -2310,reservoir_outflow,0.013,2009-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2311,gw1_gw2,0.0,2009-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2312,gw2_gw1,0.04510891736568432,2009-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2313,urban_drainage,0.04,2009-11-15,0.0,0.0,7.308408529884297e-07,0.0,0.0,0.0,0.0,0.0,9.954288582903043,0.0,0.0,0.0 -2314,percolation,0.07018692163397812,2009-11-15,0.0,0.0,8.216611655773447e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 -2315,runoff,0.11751469872352724,2009-11-15,0.0,0.0,1.1453941982005167e-05,0.0,0.0,0.0,0.0,0.0,10.174031351159014,0.0,0.0,0.0 -2316,storm_outflow,0.04,2009-11-15,0.0,0.0,7.308408529884297e-07,0.0,0.0,0.0,0.0,0.0,9.954288582903043,0.0,0.0,0.0 -2317,baseflow,0.00544577132675602,2009-11-15,0.0,0.0,5.326941400332245e-07,0.0,0.0,0.0,0.0,0.0,15.912737143321793,0.0,0.0,0.0 -2318,catchment_outflow,0.16296047005028327,2009-11-15,0.0,0.0,1.2717476975026821e-05,0.0,0.0,0.0,0.0,0.0,10.311868267795784,0.0,0.0,0.0 -2319,reservoir_outflow,0.010500000000000002,2009-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2320,gw1_gw2,0.0,2009-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2321,gw2_gw1,0.044808191249913074,2009-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2322,urban_drainage,0.04,2009-11-16,0.0,0.0,1.2709674330081937e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2323,percolation,0.06878318320129856,2009-11-16,0.0,0.0,8.052279422657977e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 -2324,runoff,0.08236552030379894,2009-11-16,0.0,0.0,9.163153585604131e-06,0.0,0.0,0.0,0.0,0.0,10.22735669516487,0.0,0.0,0.0 -2325,storm_outflow,0.04,2009-11-16,0.0,0.0,1.2709674330081937e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2326,baseflow,0.005604114856442376,2009-11-16,0.0,0.0,5.514931032397863e-07,0.0,0.0,0.0,0.0,0.0,15.78337176744825,0.0,0.0,0.0 -2327,catchment_outflow,0.12796963516024132,2009-11-16,0.0,0.0,1.0985614121852112e-05,0.0,0.0,0.0,0.0,0.0,10.385314652092829,0.0,0.0,0.0 -2328,reservoir_outflow,0.0,2009-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2329,gw1_gw2,0.0,2009-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2330,gw2_gw1,0.044509469974913785,2009-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2331,urban_drainage,0.03499999999999996,2009-11-17,0.0,0.0,2.684031848735855e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2332,percolation,0.06740751953727259,2009-11-17,0.0,0.0,7.891233834204816e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 -2333,runoff,0.06468605607344957,2009-11-17,0.0,0.0,7.330522868483304e-06,0.0,0.0,0.0,0.0,0.0,10.236368551023812,0.0,0.0,0.0 -2334,storm_outflow,0.03499999999999996,2009-11-17,0.0,0.0,2.684031848735855e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2335,baseflow,0.005758623368144451,2009-11-17,0.0,0.0,5.698424550671989e-07,0.0,0.0,0.0,0.0,0.0,15.663780970383648,0.0,0.0,0.0 -2336,catchment_outflow,0.10544467944159398,2009-11-17,0.0,0.0,1.0584397172286357e-05,0.0,0.0,0.0,0.0,0.0,10.439144311884267,0.0,0.0,0.0 -2337,reservoir_outflow,0.0,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2338,gw1_gw2,0.0,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2339,gw2_gw1,0.04421274017508097,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2340,urban_drainage,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2341,percolation,0.06605936914652714,2009-11-18,0.0,0.0,7.73340915752072e-06,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 -2342,runoff,0.05228004997861856,2009-11-18,0.0,0.0,5.8644182947866435e-06,0.0,0.0,0.0,0.0,0.0,10.23046721270841,0.0,0.0,0.0 -2343,storm_outflow,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2344,baseflow,0.0059093752325904084,2009-11-18,0.0,0.0,5.877513718233328e-07,0.0,0.0,0.0,0.0,0.0,15.552913994754539,0.0,0.0,0.0 -2345,catchment_outflow,0.05818942521120897,2009-11-18,0.0,0.0,6.452169666609976e-06,0.0,0.0,0.0,0.0,0.0,10.770983553545978,0.0,0.0,0.0 -2346,reservoir_outflow,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2347,gw1_gw2,0.0,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2348,gw2_gw1,0.043917988573914005,2009-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2349,urban_drainage,0.025999999999999995,2009-11-19,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 -2350,percolation,0.06973753482636606,2009-11-19,0.0,0.0,8.129777085812581e-06,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 -2351,runoff,0.0750714176907385,2009-11-19,0.0,0.0,6.528321673970228e-06,0.0,0.0,0.0,0.0,0.0,9.976089862223027,0.0,0.0,0.0 -2352,storm_outflow,0.025999999999999995,2009-11-19,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 -2353,baseflow,0.006068945631574848,2009-11-19,0.0,0.0,6.06606436108306e-07,0.0,0.0,0.0,0.0,0.0,15.437949316158864,0.0,0.0,0.0 -2354,catchment_outflow,0.10714036332231335,2009-11-19,0.0,0.0,9.134928110078533e-06,0.0,0.0,0.0,0.0,0.0,10.205476190020953,0.0,0.0,0.0 -2355,reservoir_outflow,0.013,2009-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2356,gw1_gw2,0.0,2009-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2357,gw2_gw1,0.043625201983421215,2009-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2358,urban_drainage,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2359,percolation,0.06834278412983874,2009-11-20,0.0,0.0,7.967181544096329e-06,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 -2360,runoff,0.049094482428682244,2009-11-20,0.0,0.0,5.222657339176182e-06,0.0,0.0,0.0,0.0,0.0,10.051936000940021,0.0,0.0,0.0 -2361,storm_outflow,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2362,baseflow,0.006224630227820508,2009-11-20,0.0,0.0,6.25007873878276e-07,0.0,0.0,0.0,0.0,0.0,15.331257423398412,0.0,0.0,0.0 -2363,catchment_outflow,0.05531911265650275,2009-11-20,0.0,0.0,5.847665213054458e-06,0.0,0.0,0.0,0.0,0.0,10.645977049874887,0.0,0.0,0.0 -2364,reservoir_outflow,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2365,gw1_gw2,0.0,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2366,gw2_gw1,0.04333436730353153,2009-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2367,urban_drainage,0.04,2009-11-21,0.0,0.0,8.695652173913046e-07,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 -2368,percolation,0.07902488754541659,2009-11-21,0.0,0.0,9.074158761395733e-06,0.0,0.0,0.0,0.0,0.0,11.272241313768573,0.0,0.0,0.0 -2369,runoff,0.11925933637915356,2009-11-21,0.0,0.0,8.399195365278717e-06,0.0,0.0,0.0,0.0,0.0,9.830309675383404,0.0,0.0,0.0 -2370,storm_outflow,0.04,2009-11-21,0.0,0.0,8.695652173913046e-07,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 -2371,baseflow,0.006406630871114498,2009-11-21,0.0,0.0,6.461307510970697e-07,0.0,0.0,0.0,0.0,0.0,15.206088946369885,0.0,0.0,0.0 -2372,catchment_outflow,0.16566596725026808,2009-11-21,0.0,0.0,9.914891333767091e-06,0.0,0.0,0.0,0.0,0.0,10.011050069052972,0.0,0.0,0.0 -2373,reservoir_outflow,0.046,2009-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2374,gw1_gw2,0.0,2009-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2375,gw2_gw1,0.04304547152150793,2009-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2376,urban_drainage,0.04,2009-11-22,0.0,0.0,5.32608695652174e-07,0.0,0.0,0.0,0.0,0.0,9.74196428605,0.0,0.0,0.0 -2377,percolation,0.0927177065289802,2009-11-22,0.0,0.0,1.0400246896393704e-05,0.0,0.0,0.0,0.0,0.0,11.022100082921758,0.0,0.0,0.0 -2378,runoff,0.16608747034430735,2009-11-22,0.0,0.0,1.1744593992975926e-05,0.0,0.0,0.0,0.0,0.0,9.804978080392598,0.0,0.0,0.0 -2379,storm_outflow,0.04,2009-11-22,0.0,0.0,5.32608695652174e-07,0.0,0.0,0.0,0.0,0.0,9.74196428605,0.0,0.0,0.0 -2380,baseflow,0.006622408560259162,2009-11-22,0.0,0.0,6.705160414603113e-07,0.0,0.0,0.0,0.0,0.0,15.059643039253228,0.0,0.0,0.0 -2381,catchment_outflow,0.21270987890456652,2009-11-22,0.0,0.0,1.2947718730088411e-05,0.0,0.0,0.0,0.0,0.0,9.95672461232321,0.0,0.0,0.0 -2382,reservoir_outflow,0.054000000000000006,2009-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2383,gw1_gw2,0.0,2009-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2384,gw2_gw1,0.04275850171136462,2009-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2385,urban_drainage,0.04,2009-11-23,0.0,0.0,7.584893684544589e-07,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0 -2386,percolation,0.09547654307411256,2009-11-23,0.0,0.0,1.064330399138216e-05,0.0,0.0,0.0,0.0,0.0,10.9623009980495,0.0,0.0,0.0 -2387,runoff,0.12156144445109755,2009-11-23,0.0,0.0,1.0899215304101833e-05,0.0,0.0,0.0,0.0,0.0,9.818424860363576,0.0,0.0,0.0 -2388,storm_outflow,0.04,2009-11-23,0.0,0.0,7.584893684544589e-07,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0 -2389,baseflow,0.006844543896543796,2009-11-23,0.0,0.0,6.954480113351159e-07,0.0,0.0,0.0,0.0,0.0,14.916755485385723,0.0,0.0,0.0 -2390,catchment_outflow,0.16840598834764134,2009-11-23,0.0,0.0,1.2353152683891409e-05,0.0,0.0,0.0,0.0,0.0,10.008870611043438,0.0,0.0,0.0 -2391,reservoir_outflow,0.0085,2009-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2392,gw1_gw2,0.0,2009-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2393,gw2_gw1,0.04247344503328901,2009-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2394,urban_drainage,0.04,2009-11-24,0.0,0.0,6.309637152226808e-07,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0 -2395,percolation,0.1061513383687245,2009-11-24,0.0,0.0,1.1603400425464515e-05,0.0,0.0,0.0,0.0,0.0,10.82635279397619,0.0,0.0,0.0 -2396,runoff,0.17040313262689255,2009-11-24,0.0,0.0,1.2629247289648139e-05,0.0,0.0,0.0,0.0,0.0,9.821635379353532,0.0,0.0,0.0 -2397,storm_outflow,0.04,2009-11-24,0.0,0.0,6.309637152226808e-07,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0 -2398,baseflow,0.007092810882724248,2009-11-24,0.0,0.0,7.227178923704394e-07,0.0,0.0,0.0,0.0,0.0,14.763712591905461,0.0,0.0,0.0 -2399,catchment_outflow,0.21749594350961682,2009-11-24,0.0,0.0,1.3982928897241258e-05,0.0,0.0,0.0,0.0,0.0,9.97577387334893,0.0,0.0,0.0 -2400,reservoir_outflow,0.0415,2009-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2401,gw1_gw2,0.0,2009-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2402,gw2_gw1,0.04219028873306688,2009-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2403,urban_drainage,0.04,2009-11-25,0.0,0.0,7.375570122481339e-07,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0 -2404,percolation,0.11074473968556198,2009-11-25,0.0,0.0,1.1985520388960752e-05,0.0,0.0,0.0,0.0,0.0,10.766090102794985,0.0,0.0,0.0 -2405,runoff,0.14695258974831413,2009-11-25,0.0,0.0,1.2150691071736932e-05,0.0,0.0,0.0,0.0,0.0,9.744586830912661,0.0,0.0,0.0 -2406,storm_outflow,0.04,2009-11-25,0.0,0.0,7.375570122481339e-07,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0 -2407,baseflow,0.007351940704731342,2009-11-25,0.0,0.0,7.508748986119152e-07,0.0,0.0,0.0,0.0,0.0,14.613168783237102,0.0,0.0,0.0 -2408,catchment_outflow,0.19430453045304547,2009-11-25,0.0,0.0,1.363912298259698e-05,0.0,0.0,0.0,0.0,0.0,9.918784816163123,0.0,0.0,0.0 -2409,reservoir_outflow,0.017,2009-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2410,gw1_gw2,0.0,2009-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2411,gw2_gw1,0.041909020141512876,2009-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2412,urban_drainage,0.04,2009-11-26,0.0,0.0,8.118867815277774e-07,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0 -2413,percolation,0.11553705107410561,2009-11-26,0.0,0.0,1.2373414386510069e-05,0.0,0.0,0.0,0.0,0.0,10.687094499550522,0.0,0.0,0.0 -2414,runoff,0.14665298263383522,2009-11-26,0.0,0.0,1.1812567541817981e-05,0.0,0.0,0.0,0.0,0.0,9.60181674174211,0.0,0.0,0.0 -2415,storm_outflow,0.04,2009-11-26,0.0,0.0,8.118867815277774e-07,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0 -2416,baseflow,0.007622403480654778,2009-11-26,0.0,0.0,7.799312473316605e-07,0.0,0.0,0.0,0.0,0.0,14.464394500234944,0.0,0.0,0.0 -2417,catchment_outflow,0.19427538611449,2009-11-26,0.0,0.0,1.340438557067742e-05,0.0,0.0,0.0,0.0,0.0,9.774133015835726,0.0,0.0,0.0 -2418,reservoir_outflow,0.018500000000000003,2009-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2419,gw1_gw2,0.0,2009-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2420,gw2_gw1,0.041629626673902825,2009-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2421,urban_drainage,0.04,2009-11-27,0.0,0.0,9.757144558675924e-07,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0 -2422,percolation,0.11797928021433585,2009-11-27,0.0,0.0,1.2547387520685338e-05,0.0,0.0,0.0,0.0,0.0,10.621373144302098,0.0,0.0,0.0 -2423,runoff,0.13017335757912138,2009-11-27,0.0,0.0,1.0854858773139289e-05,0.0,0.0,0.0,0.0,0.0,9.49003432336498,0.0,0.0,0.0 -2424,storm_outflow,0.04,2009-11-27,0.0,0.0,9.757144558675924e-07,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0 -2425,baseflow,0.00789829567248898,2009-11-27,0.0,0.0,8.093498880150447e-07,0.0,0.0,0.0,0.0,0.0,14.320883509946073,0.0,0.0,0.0 -2426,catchment_outflow,0.17807165325161037,2009-11-27,0.0,0.0,1.2639923117021925e-05,0.0,0.0,0.0,0.0,0.0,9.676403962346486,0.0,0.0,0.0 -2427,reservoir_outflow,0.009499999999999998,2009-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2428,gw1_gw2,0.0,2009-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2429,gw2_gw1,0.04135209582941002,2009-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2430,urban_drainage,0.04,2009-11-28,0.0,0.0,1.0302698611568893e-06,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0 -2431,percolation,0.12195769893239883,2009-11-28,0.0,0.0,1.2848218648630485e-05,0.0,0.0,0.0,0.0,0.0,10.51789384151351,0.0,0.0,0.0 -2432,runoff,0.1341623081657957,2009-11-28,0.0,0.0,1.052314994637428e-05,0.0,0.0,0.0,0.0,0.0,9.198403523236594,0.0,0.0,0.0 -2433,storm_outflow,0.04,2009-11-28,0.0,0.0,1.0302698611568893e-06,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0 -2434,baseflow,0.008183444180638755,2009-11-28,0.0,0.0,8.394470599165833e-07,0.0,0.0,0.0,0.0,0.0,14.179193819521153,0.0,0.0,0.0 -2435,catchment_outflow,0.18234575234643446,2009-11-28,0.0,0.0,1.2392866867447754e-05,0.0,0.0,0.0,0.0,0.0,9.382830738521053,0.0,0.0,0.0 -2436,reservoir_outflow,0.0165,2009-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2437,gw1_gw2,0.0,2009-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2438,gw2_gw1,0.04107641519054753,2009-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2439,urban_drainage,0.04,2009-11-29,0.0,0.0,6.859990408411248e-07,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2440,percolation,0.13495723118668213,2009-11-29,0.0,0.0,1.3853653694513409e-05,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 -2441,runoff,0.19517207353732502,2009-11-29,0.0,0.0,1.262651801995119e-05,0.0,0.0,0.0,0.0,0.0,8.543998274260753,0.0,0.0,0.0 -2442,storm_outflow,0.04,2009-11-29,0.0,0.0,6.859990408411248e-07,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2443,baseflow,0.008500378648153863,2009-11-29,0.0,0.0,8.719825765030755e-07,0.0,0.0,0.0,0.0,0.0,14.023220317493983,0.0,0.0,0.0 -2444,catchment_outflow,0.2436724521854789,2009-11-29,0.0,0.0,1.418449963729539e-05,0.0,0.0,0.0,0.0,0.0,8.674135324651214,0.0,0.0,0.0 -2445,reservoir_outflow,0.05499999999999999,2009-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2446,gw1_gw2,0.0,2009-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2447,gw2_gw1,0.040802572422610345,2009-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2448,urban_drainage,0.04,2009-11-30,0.0,0.0,1.0371100265719911e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2449,percolation,0.1322580865629485,2009-11-30,0.0,0.0,1.357658062062314e-05,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 -2450,runoff,0.11280099571987748,2009-11-30,0.0,0.0,1.0101214415960954e-05,0.0,0.0,0.0,0.0,0.0,8.991739983011426,0.0,0.0,0.0 -2451,storm_outflow,0.04,2009-11-30,0.0,0.0,1.0371100265719911e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2452,baseflow,0.00880977291794085,2009-11-30,0.0,0.0,9.037440716133756e-07,0.0,0.0,0.0,0.0,0.0,13.88158837430158,0.0,0.0,0.0 -2453,catchment_outflow,0.16161076863781834,2009-11-30,0.0,0.0,1.2042068514146321e-05,0.0,0.0,0.0,0.0,0.0,9.055498962634406,0.0,0.0,0.0 -2454,reservoir_outflow,0.0,2009-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2455,gw1_gw2,0.0,2009-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2456,gw2_gw1,0.040530555273126545,2009-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2457,urban_drainage,0.04,2009-12-01,0.0,0.0,1.4161570540777927e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2458,percolation,0.13176724482048013,2009-12-01,0.0,0.0,1.348421807246863e-05,0.0,0.0,0.0,0.0,0.0,10.202769657847302,0.0,0.0,0.0 -2459,runoff,0.10498088070973248,2009-12-01,0.0,0.0,8.678201746961943e-06,0.0,0.0,0.0,0.0,0.0,8.695432054624884,0.0,0.0,0.0 -2460,storm_outflow,0.04,2009-12-01,0.0,0.0,1.4161570540777927e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2461,baseflow,0.009117166597697198,2009-12-01,0.0,0.0,9.351952566155139e-07,0.0,0.0,0.0,0.0,0.0,13.748666648766905,0.0,0.0,0.0 -2462,catchment_outflow,0.15409804730742968,2009-12-01,0.0,0.0,1.1029554057655249e-05,0.0,0.0,0.0,0.0,0.0,8.85863452864025,0.0,0.0,0.0 -2463,reservoir_outflow,0.0,2009-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2464,gw1_gw2,0.0,2009-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2465,gw2_gw1,0.040260351571305725,2009-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2466,urban_drainage,0.04,2009-12-02,0.0,0.0,1.5616350093280369e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0 -2467,percolation,0.13363519702675775,2009-12-02,0.0,0.0,1.3585466059597922e-05,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 -2468,runoff,0.10874952337202304,2009-12-02,0.0,0.0,8.179002559498434e-06,0.0,0.0,0.0,0.0,0.0,8.29376141152113,0.0,0.0,0.0 -2469,storm_outflow,0.04,2009-12-02,0.0,0.0,1.5616350093280369e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0 -2470,baseflow,0.00942846167376985,2009-12-02,0.0,0.0,9.668209336229697e-07,0.0,0.0,0.0,0.0,0.0,13.61915969536084,0.0,0.0,0.0 -2471,catchment_outflow,0.1581779850457929,2009-12-02,0.0,0.0,1.070745850244944e-05,0.0,0.0,0.0,0.0,0.0,8.501510765063989,0.0,0.0,0.0 -2472,reservoir_outflow,0.009499999999999998,2009-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2473,gw1_gw2,0.0,2009-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2474,gw2_gw1,0.03999194922749716,2009-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2475,urban_drainage,0.03199999999999992,2009-12-03,0.0,0.0,2.9520437616600425e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551955,0.0,0.0,0.0 -2476,percolation,0.1309624930862226,2009-12-03,0.0,0.0,1.3313756738405963e-05,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 -2477,runoff,0.0751571097553787,2009-12-03,0.0,0.0,6.543202047598748e-06,0.0,0.0,0.0,0.0,0.0,8.549126717154001,0.0,0.0,0.0 -2478,storm_outflow,0.03199999999999992,2009-12-03,0.0,0.0,2.9520437616600425e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551955,0.0,0.0,0.0 -2479,baseflow,0.009732296752300983,2009-12-03,0.0,0.0,9.976882731349272e-07,0.0,0.0,0.0,0.0,0.0,13.500561900267485,0.0,0.0,0.0 -2480,catchment_outflow,0.11688940650767961,2009-12-03,0.0,0.0,1.049293408239372e-05,0.0,0.0,0.0,0.0,0.0,8.772739754207631,0.0,0.0,0.0 -2481,reservoir_outflow,0.0,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2482,gw1_gw2,0.0,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2483,gw2_gw1,0.03972533623264721,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2484,urban_drainage,0.024,2009-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0 -2485,percolation,0.13308738257622246,2009-12-04,0.0,0.0,1.343825811332689e-05,0.0,0.0,0.0,0.0,0.0,9.997041759433309,0.0,0.0,0.0 -2486,runoff,0.09194692860771794,2009-12-04,0.0,0.0,6.5371500037091485e-06,0.0,0.0,0.0,0.0,0.0,8.128851626120538,0.0,0.0,0.0 -2487,storm_outflow,0.024,2009-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0 -2488,baseflow,0.010040684466860787,2009-12-04,0.0,0.0,1.0287896977354071e-06,0.0,0.0,0.0,0.0,0.0,13.384465650334114,0.0,0.0,0.0 -2489,catchment_outflow,0.12598761307457873,2009-12-04,0.0,0.0,8.565939701444555e-06,0.0,0.0,0.0,0.0,0.0,8.385727969564606,0.0,0.0,0.0 -2490,reservoir_outflow,0.012,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2491,gw1_gw2,0.0,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2492,gw2_gw1,0.03946050065776277,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2493,urban_drainage,0.04,2009-12-05,0.0,0.0,3.0303030303030305e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 -2494,percolation,0.14689979657831123,2009-12-05,0.0,0.0,1.4427596669515546e-05,0.0,0.0,0.0,0.0,0.0,9.73120769774238,0.0,0.0,0.0 -2495,runoff,0.1729586086516703,2009-12-05,0.0,0.0,9.423399064484633e-06,0.0,0.0,0.0,0.0,0.0,7.848561514762881,0.0,0.0,0.0 -2496,storm_outflow,0.04,2009-12-05,0.0,0.0,3.0303030303030305e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 -2497,baseflow,0.010382832247139413,2009-12-05,0.0,0.0,1.0622867151648576e-06,0.0,0.0,0.0,0.0,0.0,13.255246850176844,0.0,0.0,0.0 -2498,catchment_outflow,0.2233414408988097,2009-12-05,0.0,0.0,1.0788716082679793e-05,0.0,0.0,0.0,0.0,0.0,8.050276829748103,0.0,0.0,0.0 -2499,reservoir_outflow,0.066,2009-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2500,gw1_gw2,0.0,2009-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2501,gw2_gw1,0.03919743065337755,2009-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2502,urban_drainage,0.04,2009-12-06,0.0,0.0,7.985739750445634e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 -2503,percolation,0.14557767658832244,2009-12-06,0.0,0.0,1.4263271063975237e-05,0.0,0.0,0.0,0.0,0.0,9.710680511264533,0.0,0.0,0.0 -2504,runoff,0.10317961942374113,2009-12-06,0.0,0.0,7.952807011087712e-06,0.0,0.0,0.0,0.0,0.0,7.9753703915282514,0.0,0.0,0.0 -2505,storm_outflow,0.04,2009-12-06,0.0,0.0,7.985739750445634e-07,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 -2506,baseflow,0.010720819357992371,2009-12-06,0.0,0.0,1.0952891760368835e-06,0.0,0.0,0.0,0.0,0.0,13.134917956717,0.0,0.0,0.0 -2507,catchment_outflow,0.1539004387817335,2009-12-06,0.0,0.0,9.846670162169158e-06,0.0,0.0,0.0,0.0,0.0,8.229800495199115,0.0,0.0,0.0 -2508,reservoir_outflow,0.0,2009-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2509,gw1_gw2,0.0,2009-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2510,gw2_gw1,0.038936114449021814,2009-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2511,urban_drainage,0.04,2009-12-07,0.0,0.0,8.933626926706512e-07,0.0,0.0,0.0,0.0,0.0,7.8470588232352965,0.0,0.0,0.0 -2512,percolation,0.14987843848234994,2009-12-07,0.0,0.0,1.4520771029829421e-05,0.0,0.0,0.0,0.0,0.0,9.6348155118132,0.0,0.0,0.0 -2513,runoff,0.12735532475666403,2009-12-07,0.0,0.0,8.171463565982464e-06,0.0,0.0,0.0,0.0,0.0,8.045416769614135,0.0,0.0,0.0 -2514,storm_outflow,0.04,2009-12-07,0.0,0.0,8.933626926706512e-07,0.0,0.0,0.0,0.0,0.0,7.8470588232352965,0.0,0.0,0.0 -2515,baseflow,0.011068713405803265,2009-12-07,0.0,0.0,1.1288528806713647e-06,0.0,0.0,0.0,0.0,0.0,13.01643311802396,0.0,0.0,0.0 -2516,catchment_outflow,0.1784240381624673,2009-12-07,0.0,0.0,1.0193679139324478e-05,0.0,0.0,0.0,0.0,0.0,8.309329849521452,0.0,0.0,0.0 -2517,reservoir_outflow,0.02,2009-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2518,gw1_gw2,0.0,2009-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2519,gw2_gw1,0.038676540352695105,2009-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2520,urban_drainage,0.04,2009-12-08,0.0,0.0,1.4582058394578056e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2521,percolation,0.15047709452776437,2009-12-08,0.0,0.0,1.4500070534275039e-05,0.0,0.0,0.0,0.0,0.0,9.604955684505141,0.0,0.0,0.0 -2522,runoff,0.10624491260790889,2009-12-08,0.0,0.0,7.436220602926667e-06,0.0,0.0,0.0,0.0,0.0,8.110536539369098,0.0,0.0,0.0 -2523,storm_outflow,0.04,2009-12-08,0.0,0.0,1.4582058394578056e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2524,baseflow,0.011417234358608168,2009-12-08,0.0,0.0,1.162280924805374e-06,0.0,0.0,0.0,0.0,0.0,12.904026471169088,0.0,0.0,0.0 -2525,catchment_outflow,0.15766214696651706,2009-12-08,0.0,0.0,1.0056707367189847e-05,0.0,0.0,0.0,0.0,0.0,8.418627713923888,0.0,0.0,0.0 -2526,reservoir_outflow,0.005,2009-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2527,gw1_gw2,0.0,2009-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2528,gw2_gw1,0.038418696750343706,2009-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2529,urban_drainage,0.006999999999999992,2009-12-09,0.0,0.0,1.546827189796677e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2530,percolation,0.14886985807888822,2009-12-09,0.0,0.0,1.4316028278525688e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2531,runoff,0.08449598538185427,2009-12-09,0.0,0.0,6.302173665461838e-06,0.0,0.0,0.0,0.0,0.0,8.103854265119107,0.0,0.0,0.0 -2532,storm_outflow,0.006999999999999992,2009-12-09,0.0,0.0,1.546827189796677e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2533,baseflow,0.01176086591790887,2009-12-09,0.0,0.0,1.1951652931896748e-06,0.0,0.0,0.0,0.0,0.0,12.799337746683024,0.0,0.0,0.0 -2534,catchment_outflow,0.10325685129976313,2009-12-09,0.0,0.0,9.04416614844819e-06,0.0,0.0,0.0,0.0,0.0,8.628688816537252,0.0,0.0,0.0 -2535,reservoir_outflow,0.0,2009-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2536,gw1_gw2,0.0,2009-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2537,gw2_gw1,0.03816257210534122,2009-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2538,urban_drainage,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2539,percolation,0.14589246091731048,2009-12-10,0.0,0.0,1.4029707712955177e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2540,runoff,0.06405229999022578,2009-12-10,0.0,0.0,5.0417389323694696e-06,0.0,0.0,0.0,0.0,0.0,8.09731218786082,0.0,0.0,0.0 -2541,storm_outflow,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2542,baseflow,0.012096194905407373,2009-12-10,0.0,0.0,1.2272516492390885e-06,0.0,0.0,0.0,0.0,0.0,12.702743551501422,0.0,0.0,0.0 -2543,catchment_outflow,0.07614849489563316,2009-12-10,0.0,0.0,6.268990581608558e-06,0.0,0.0,0.0,0.0,0.0,8.828885352562562,0.0,0.0,0.0 -2544,reservoir_outflow,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2545,gw1_gw2,0.0,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2546,gw2_gw1,0.03790815495797215,2009-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2547,urban_drainage,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2548,percolation,0.14297461169896425,2009-12-11,0.0,0.0,1.374911355869607e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2549,runoff,0.05129511972879764,2009-12-11,0.0,0.0,4.033391145895575e-06,0.0,0.0,0.0,0.0,0.0,8.095314176063376,0.0,0.0,0.0 -2550,storm_outflow,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2551,baseflow,0.012423390947391267,2009-12-11,0.0,0.0,1.258556304012731e-06,0.0,0.0,0.0,0.0,0.0,12.613353506686268,0.0,0.0,0.0 -2552,catchment_outflow,0.0637185106761889,2009-12-11,0.0,0.0,5.291947449908306e-06,0.0,0.0,0.0,0.0,0.0,8.976209983645289,0.0,0.0,0.0 -2553,reservoir_outflow,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2554,gw1_gw2,0.0,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2555,gw2_gw1,0.03765543392491946,2009-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2556,urban_drainage,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2557,percolation,0.14011511946498498,2009-12-12,0.0,0.0,1.3474131287522151e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2558,runoff,0.04107925135043591,2009-12-12,0.0,0.0,3.22671291671646e-06,0.0,0.0,0.0,0.0,0.0,8.092779889588959,0.0,0.0,0.0 -2559,storm_outflow,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2560,baseflow,0.012742620268685253,2009-12-12,0.0,0.0,1.2890952414715046e-06,0.0,0.0,0.0,0.0,0.0,12.530403166821744,0.0,0.0,0.0 -2561,catchment_outflow,0.05382187161912116,2009-12-12,0.0,0.0,4.515808158187964e-06,0.0,0.0,0.0,0.0,0.0,9.143411289355567,0.0,0.0,0.0 -2562,reservoir_outflow,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2563,gw1_gw2,0.0,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2564,gw2_gw1,0.037404397698753124,2009-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2565,urban_drainage,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2566,percolation,0.13731281707568527,2009-12-13,0.0,0.0,1.3204648661771707e-05,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2567,runoff,0.03319484954532003,2009-12-13,0.0,0.0,2.581370333373168e-06,0.0,0.0,0.0,0.0,0.0,8.081475177354159,0.0,0.0,0.0 -2568,storm_outflow,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2569,baseflow,0.013054045760702751,2009-12-13,0.0,0.0,1.318884125022255e-06,0.0,0.0,0.0,0.0,0.0,12.4532325145376,0.0,0.0,0.0 -2570,catchment_outflow,0.04624889530602278,2009-12-13,0.0,0.0,3.900254458395423e-06,0.0,0.0,0.0,0.0,0.0,9.315431576888933,0.0,0.0,0.0 -2571,reservoir_outflow,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2572,gw1_gw2,0.0,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2573,gw2_gw1,0.03715503504742799,2009-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2574,urban_drainage,0.008999999999999998,2009-12-14,0.0,0.0,4.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 -2575,percolation,0.13673295734492974,2009-12-14,0.0,0.0,1.3113003614878504e-05,0.0,0.0,0.0,0.0,0.0,9.564143620259403,0.0,0.0,0.0 -2576,runoff,0.04089805131044878,2009-12-14,0.0,0.0,2.639922687839301e-06,0.0,0.0,0.0,0.0,0.0,7.789294065475754,0.0,0.0,0.0 -2577,storm_outflow,0.008999999999999998,2009-12-14,0.0,0.0,4.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 -2578,baseflow,0.013363243039663318,2009-12-14,0.0,0.0,1.3483694237468957e-06,0.0,0.0,0.0,0.0,0.0,12.37932948303272,0.0,0.0,0.0 -2579,catchment_outflow,0.0632612943501121,2009-12-14,0.0,0.0,8.988292111586196e-06,0.0,0.0,0.0,0.0,0.0,8.634148929816666,0.0,0.0,0.0 -2580,reservoir_outflow,0.004499999999999999,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2581,gw1_gw2,0.0,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2582,gw2_gw1,0.036907334813778725,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2583,urban_drainage,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2584,percolation,0.13519903891979232,2009-12-15,0.0,0.0,1.2946818217407988e-05,0.0,0.0,0.0,0.0,0.0,9.544761395975481,0.0,0.0,0.0 -2585,runoff,0.034852922167052956,2009-12-15,0.0,0.0,2.4321870663616285e-06,0.0,0.0,0.0,0.0,0.0,7.758511783373741,0.0,0.0,0.0 -2586,storm_outflow,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2587,baseflow,0.01366783252936364,2009-12-15,0.0,0.0,1.3773655457310485e-06,0.0,0.0,0.0,0.0,0.0,12.309232252857504,0.0,0.0,0.0 -2588,catchment_outflow,0.0485207546964166,2009-12-15,0.0,0.0,3.809552612092677e-06,0.0,0.0,0.0,0.0,0.0,9.040406215024959,0.0,0.0,0.0 -2589,reservoir_outflow,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2590,gw1_gw2,0.0,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2591,gw2_gw1,0.03666128591502016,2009-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2592,urban_drainage,0.008,2009-12-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2593,percolation,0.13460186718033165,2009-12-16,0.0,0.0,1.285593678940696e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2594,runoff,0.038926846675798946,2009-12-16,0.0,0.0,2.50593277424641e-06,0.0,0.0,0.0,0.0,0.0,7.4873429777812746,0.0,0.0,0.0 -2595,storm_outflow,0.008,2009-12-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2596,baseflow,0.013970167615991059,2009-12-16,0.0,0.0,1.406061973840238e-06,0.0,0.0,0.0,0.0,0.0,12.241742951854073,0.0,0.0,0.0 -2597,catchment_outflow,0.06089701429179001,2009-12-16,0.0,0.0,5.9119947480866476e-06,0.0,0.0,0.0,0.0,0.0,8.43518945925963,0.0,0.0,0.0 -2598,reservoir_outflow,0.004,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2599,gw1_gw2,0.0,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2600,gw2_gw1,0.03641687734225307,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2601,urban_drainage,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2602,percolation,0.13190982983672503,2009-12-17,0.0,0.0,1.259881805361882e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2603,runoff,0.025227627406786062,2009-12-17,0.0,0.0,2.0047462193971277e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 -2604,storm_outflow,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2605,baseflow,0.014265016771542894,2009-12-17,0.0,0.0,1.4340438640396846e-06,0.0,0.0,0.0,0.0,0.0,12.178530698460241,0.0,0.0,0.0 -2606,catchment_outflow,0.039492644178328956,2009-12-17,0.0,0.0,3.438790083436812e-06,0.0,0.0,0.0,0.0,0.0,9.344657326751074,0.0,0.0,0.0 -2607,reservoir_outflow,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2608,gw1_gw2,0.0,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2609,gw2_gw1,0.03617409815997128,2009-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2610,urban_drainage,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2611,percolation,0.12927163323999052,2009-12-18,0.0,0.0,1.2346841692546444e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2612,runoff,0.02018210192542885,2009-12-18,0.0,0.0,1.6037969755177024e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 -2613,storm_outflow,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2614,baseflow,0.014552533312714014,2009-12-18,0.0,0.0,1.4613258586109516e-06,0.0,0.0,0.0,0.0,0.0,12.119210408233748,0.0,0.0,0.0 -2615,catchment_outflow,0.034734635238142866,2009-12-18,0.0,0.0,3.0651228341286543e-06,0.0,0.0,0.0,0.0,0.0,9.576027978850416,0.0,0.0,0.0 -2616,reservoir_outflow,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2617,gw1_gw2,0.0,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2618,gw2_gw1,0.03593293750557134,2009-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2619,urban_drainage,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2620,percolation,0.1266862005751907,2009-12-19,0.0,0.0,1.2099904858695512e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2621,runoff,0.017288625963685023,2009-12-19,0.0,0.0,1.2830375804141618e-06,0.0,0.0,0.0,0.0,0.0,7.615820182208692,0.0,0.0,0.0 -2622,storm_outflow,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2623,baseflow,0.014832867480870204,2009-12-19,0.0,0.0,1.487922306111163e-06,0.0,0.0,0.0,0.0,0.0,12.063441849979558,0.0,0.0,0.0 -2624,catchment_outflow,0.03212149344455523,2009-12-19,0.0,0.0,2.7709598865253245e-06,0.0,0.0,0.0,0.0,0.0,9.669615810265787,0.0,0.0,0.0 -2625,reservoir_outflow,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2626,gw1_gw2,0.0,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2627,gw2_gw1,0.03569338458886797,2009-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2628,urban_drainage,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2629,percolation,0.1241524765636869,2009-12-20,0.0,0.0,1.1857906761521605e-05,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2630,runoff,0.01305735685334353,2009-12-20,0.0,0.0,1.0264300643313295e-06,0.0,0.0,0.0,0.0,0.0,7.71956676331962,0.0,0.0,0.0 -2631,storm_outflow,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2632,baseflow,0.015106166503577245,2009-12-20,0.0,0.0,1.5138472672496893e-06,0.0,0.0,0.0,0.0,0.0,12.010923299375875,0.0,0.0,0.0 -2633,catchment_outflow,0.028163523356920774,2009-12-20,0.0,0.0,2.540277331581019e-06,0.0,0.0,0.0,0.0,0.0,10.021336521965612,0.0,0.0,0.0 -2634,reservoir_outflow,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2635,gw1_gw2,0.0,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2636,gw2_gw1,0.03545542869160876,2009-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2637,urban_drainage,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2638,percolation,0.12188253822127099,2009-12-21,0.0,0.0,1.1638806200677214e-05,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 -2639,runoff,0.011791365372741544,2009-12-21,0.0,0.0,8.813359660852e-07,0.0,0.0,0.0,0.0,0.0,7.50911902814999,0.0,0.0,0.0 -2640,storm_outflow,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2641,baseflow,0.01537310743287148,2009-12-21,0.0,0.0,1.539159664583258e-06,0.0,0.0,0.0,0.0,0.0,11.961189538056397,0.0,0.0,0.0 -2642,catchment_outflow,0.027164472805613023,2009-12-21,0.0,0.0,2.420495630668458e-06,0.0,0.0,0.0,0.0,0.0,10.028665744085806,0.0,0.0,0.0 -2643,reservoir_outflow,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2644,gw1_gw2,0.0,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2645,gw2_gw1,0.03521905916699808,2009-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2646,urban_drainage,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2647,percolation,0.11944488745684556,2009-12-22,0.0,0.0,1.1406030076663669e-05,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 -2648,runoff,0.00908934075940141,2009-12-22,0.0,0.0,7.0506877286816e-07,0.0,0.0,0.0,0.0,0.0,7.581674215988696,0.0,0.0,0.0 -2649,storm_outflow,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2650,baseflow,0.015633286882931415,2009-12-22,0.0,0.0,1.5638268406134589e-06,0.0,0.0,0.0,0.0,0.0,11.914211567052625,0.0,0.0,0.0 -2651,catchment_outflow,0.024722627642332823,2009-12-22,0.0,0.0,2.2688956134816188e-06,0.0,0.0,0.0,0.0,0.0,10.321342519863496,0.0,0.0,0.0 -2652,reservoir_outflow,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2653,gw1_gw2,0.0,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2654,gw2_gw1,0.0349842654392182,2009-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2655,urban_drainage,0.024999999999999994,2009-12-23,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2656,percolation,0.11714931534498364,2009-12-23,0.0,0.0,1.118578975846428e-05,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 -2657,runoff,0.007706452195808002,2009-12-23,0.0,0.0,5.903226294074784e-07,0.0,0.0,0.0,0.0,0.0,7.470011856126202,0.0,0.0,0.0 -2658,storm_outflow,0.024999999999999994,2009-12-23,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2659,baseflow,0.015887076954086546,2009-12-23,0.0,0.0,1.587881747908086e-06,0.0,0.0,0.0,0.0,0.0,11.86968620193557,0.0,0.0,0.0 -2660,catchment_outflow,0.048593529149894545,2009-12-23,0.0,0.0,9.178204377315564e-06,0.0,0.0,0.0,0.0,0.0,7.673694705978655,0.0,0.0,0.0 -2661,reservoir_outflow,0.012499999999999997,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2662,gw1_gw2,0.0,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2663,gw2_gw1,0.034751037002956765,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2664,urban_drainage,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2665,percolation,0.11480632903808399,2009-12-24,0.0,0.0,1.0962073963294996e-05,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 -2666,runoff,0.00848731776924033,2009-12-24,0.0,0.0,4.72258103525983e-07,0.0,0.0,0.0,0.0,0.0,6.755512241232069,0.0,0.0,0.0 -2667,storm_outflow,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2668,baseflow,0.016134375084296538,2009-12-24,0.0,0.0,1.6113172284465532e-06,0.0,0.0,0.0,0.0,0.0,11.827512218987211,0.0,0.0,0.0 -2669,catchment_outflow,0.024621692853536867,2009-12-24,0.0,0.0,2.0835753319725364e-06,0.0,0.0,0.0,0.0,0.0,10.079148457288998,0.0,0.0,0.0 -2670,reservoir_outflow,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2671,gw1_gw2,0.0,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2672,gw2_gw1,0.034519363422937134,2009-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2673,urban_drainage,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2674,percolation,0.1125102024573223,2009-12-25,0.0,0.0,1.0742832484029094e-05,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 -2675,runoff,0.007293217240835875,2009-12-25,0.0,0.0,3.778064828207864e-07,0.0,0.0,0.0,0.0,0.0,6.559098354737425,0.0,0.0,0.0 -2676,storm_outflow,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2677,baseflow,0.016375314652729102,2009-12-25,0.0,0.0,1.6341460165855096e-06,0.0,0.0,0.0,0.0,0.0,11.78751424960561,0.0,0.0,0.0 -2678,catchment_outflow,0.02366853189356498,2009-12-25,0.0,0.0,2.011952499406296e-06,0.0,0.0,0.0,0.0,0.0,10.176431098433046,0.0,0.0,0.0 -2679,reservoir_outflow,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2680,gw1_gw2,0.0,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2681,gw2_gw1,0.03428923433345101,2009-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2682,urban_drainage,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2683,percolation,0.11157184347574982,2009-12-26,0.0,0.0,1.0640793659556103e-05,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 -2684,runoff,0.012753826876830607,2009-12-26,0.0,0.0,6.783046036152612e-07,0.0,0.0,0.0,0.0,0.0,5.742915953129186,0.0,0.0,0.0 -2685,storm_outflow,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2686,baseflow,0.016613305974786656,2009-12-26,0.0,0.0,1.656662635692936e-06,0.0,0.0,0.0,0.0,0.0,11.748293699716982,0.0,0.0,0.0 -2687,catchment_outflow,0.029367132851617263,2009-12-26,0.0,0.0,2.334967239308197e-06,0.0,0.0,0.0,0.0,0.0,9.140223361460112,0.0,0.0,0.0 -2688,reservoir_outflow,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2689,gw1_gw2,0.0,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2690,gw2_gw1,0.03406063943789448,2009-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2691,urban_drainage,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2692,percolation,0.10934040660623484,2009-12-27,0.0,0.0,1.0427977786364984e-05,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 -2693,runoff,0.006520689381958646,2009-12-27,0.0,0.0,5.42643682892209e-07,0.0,0.0,0.0,0.0,0.0,6.4448170535489036,0.0,0.0,0.0 -2694,storm_outflow,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2695,baseflow,0.016845123726365277,2009-12-27,0.0,0.0,1.6785909235696164e-06,0.0,0.0,0.0,0.0,0.0,11.711022951879126,0.0,0.0,0.0 -2696,catchment_outflow,0.023365813108323922,2009-12-27,0.0,0.0,2.2212346064618256e-06,0.0,0.0,0.0,0.0,0.0,10.241384693400688,0.0,0.0,0.0 -2697,reservoir_outflow,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2698,gw1_gw2,0.0,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2699,gw2_gw1,0.033833568508308785,2009-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2700,urban_drainage,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2701,percolation,0.10785795032637215,2009-12-28,0.0,0.0,1.0281202753142994e-05,0.0,0.0,0.0,0.0,0.0,9.42337367515953,0.0,0.0,0.0 -2702,runoff,0.01003580102104386,2009-12-28,0.0,0.0,6.40063354664806e-07,0.0,0.0,0.0,0.0,0.0,5.568033644121171,0.0,0.0,0.0 -2703,storm_outflow,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2704,baseflow,0.017072655792865293,2009-12-28,0.0,0.0,1.7000974531435499e-06,0.0,0.0,0.0,0.0,0.0,11.674891906269382,0.0,0.0,0.0 -2705,catchment_outflow,0.02710845681390915,2009-12-28,0.0,0.0,2.3401608078083556e-06,0.0,0.0,0.0,0.0,0.0,9.414076589360928,0.0,0.0,0.0 -2706,reservoir_outflow,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2707,gw1_gw2,0.0,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2708,gw2_gw1,0.033608011384919756,2009-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2709,urban_drainage,0.04,2009-12-29,0.0,0.0,1.610738255033557e-06,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0 -2710,percolation,0.11423769715974608,2009-12-29,0.0,0.0,1.0759866112654191e-05,0.0,0.0,0.0,0.0,0.0,9.084230831262616,0.0,0.0,0.0 -2711,runoff,0.0644619211887581,2009-12-29,0.0,0.0,2.7930087323120293e-06,0.0,0.0,0.0,0.0,0.0,4.549806490829496,0.0,0.0,0.0 -2712,storm_outflow,0.04,2009-12-29,0.0,0.0,1.610738255033557e-06,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0 -2713,baseflow,0.017315568396282496,2009-12-29,0.0,0.0,1.7227468747923265e-06,0.0,0.0,0.0,0.0,0.0,11.632162850462919,0.0,0.0,0.0 -2714,catchment_outflow,0.1217774895850406,2009-12-29,0.0,0.0,6.126493862137913e-06,0.0,0.0,0.0,0.0,0.0,5.353261765300174,0.0,0.0,0.0 -2715,reservoir_outflow,0.0745,2009-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2716,gw1_gw2,0.0,2009-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2717,gw2_gw1,0.033383957975687294,2009-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2718,urban_drainage,0.04,2009-12-30,0.0,0.0,1.573507078822319e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 -2719,percolation,0.11835901897980428,2009-12-30,0.0,0.0,1.1050940160454678e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2720,runoff,0.07143733718406813,2009-12-30,0.0,0.0,3.9219782193615354e-06,0.0,0.0,0.0,0.0,0.0,4.573241029203011,0.0,0.0,0.0 -2721,storm_outflow,0.04,2009-12-30,0.0,0.0,1.573507078822319e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 -2722,baseflow,0.0175681770227413,2009-12-30,0.0,0.0,1.7460673580064826e-06,0.0,0.0,0.0,0.0,0.0,11.585329387879021,0.0,0.0,0.0 -2723,catchment_outflow,0.12900551420680942,2009-12-30,0.0,0.0,7.241552656190337e-06,0.0,0.0,0.0,0.0,0.0,5.316671915350419,0.0,0.0,0.0 -2724,reservoir_outflow,0.013999999999999999,2009-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2725,gw1_gw2,0.0,2009-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2726,gw2_gw1,0.033161398255849406,2009-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2727,urban_drainage,0.04,2009-12-31,0.0,0.0,2.5016907356592856e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 -2728,percolation,0.11599183860020822,2009-12-31,0.0,0.0,1.0829921357245587e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2729,runoff,0.039167902692508784,2009-12-31,0.0,0.0,3.1375825754892287e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2730,storm_outflow,0.04,2009-12-31,0.0,0.0,2.5016907356592856e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 -2731,baseflow,0.01781423617668497,2009-12-31,0.0,0.0,1.76877699300458e-06,0.0,0.0,0.0,0.0,0.0,11.540828897732194,0.0,0.0,0.0 -2732,catchment_outflow,0.09698213886919375,2009-12-31,0.0,0.0,7.408050304153095e-06,0.0,0.0,0.0,0.0,0.0,5.7262640917150085,0.0,0.0,0.0 -2733,reservoir_outflow,0.0,2009-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2734,gw1_gw2,0.0,2009-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2735,gw2_gw1,0.03294032226747703,2009-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2736,urban_drainage,0.01699999999999997,2010-01-01,0.0,0.0,3.314063930484837e-06,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 -2737,percolation,0.11367200182820403,2010-01-01,0.0,0.0,1.0613322930100673e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2738,runoff,0.03133432215400703,2010-01-01,0.0,0.0,2.5100660603913826e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2739,storm_outflow,0.01699999999999997,2010-01-01,0.0,0.0,3.314063930484837e-06,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 -2740,baseflow,0.018053880590813764,2010-01-01,0.0,0.0,1.7908883578473202e-06,0.0,0.0,0.0,0.0,0.0,11.49849776325464,0.0,0.0,0.0 -2741,catchment_outflow,0.06638820274482077,2010-01-01,0.0,0.0,7.61501834872354e-06,0.0,0.0,0.0,0.0,0.0,6.462419522649449,0.0,0.0,0.0 -2742,reservoir_outflow,0.0,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2743,gw1_gw2,0.0,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2744,gw2_gw1,0.03272072011902729,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2745,urban_drainage,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2746,percolation,0.11139856179163998,2010-01-02,0.0,0.0,1.0401056471498663e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2747,runoff,0.025504458120847267,2010-01-02,0.0,0.0,2.0080528483131065e-06,0.0,0.0,0.0,0.0,0.0,4.925183549237203,0.0,0.0,0.0 -2748,storm_outflow,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2749,baseflow,0.01828724229381583,2010-01-02,0.0,0.0,1.8124137781314485e-06,0.0,0.0,0.0,0.0,0.0,11.458187292075037,0.0,0.0,0.0 -2750,catchment_outflow,0.0437917004146631,2010-01-02,0.0,0.0,3.820466626444555e-06,0.0,0.0,0.0,0.0,0.0,7.653340282600266,0.0,0.0,0.0 -2751,reservoir_outflow,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2752,gw1_gw2,0.0,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2753,gw2_gw1,0.03250258198490066,2010-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2754,urban_drainage,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2755,percolation,0.10917059055580715,2010-01-03,0.0,0.0,1.0193035342068689e-05,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2756,runoff,0.020053966178564496,2010-01-03,0.0,0.0,1.6064422786504847e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2757,storm_outflow,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2758,baseflow,0.01851445066447081,2010-01-03,0.0,0.0,1.8333653320412917e-06,0.0,0.0,0.0,0.0,0.0,11.419762052007014,0.0,0.0,0.0 -2759,catchment_outflow,0.0385684168430353,2010-01-03,0.0,0.0,3.4398076106917764e-06,0.0,0.0,0.0,0.0,0.0,8.058762158260388,0.0,0.0,0.0 -2760,reservoir_outflow,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2761,gw1_gw2,0.0,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2762,gw2_gw1,0.032285898105001286,2010-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2763,urban_drainage,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2764,percolation,0.106987178744691,2010-01-04,0.0,0.0,9.989174635227315e-06,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2765,runoff,0.0164435870033275,2010-01-04,0.0,0.0,1.285153822920388e-06,0.0,0.0,0.0,0.0,0.0,4.903043165085661,0.0,0.0,0.0 -2766,storm_outflow,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2767,baseflow,0.01873563248467136,2010-01-04,0.0,0.0,1.8537548552992567e-06,0.0,0.0,0.0,0.0,0.0,11.383098424676954,0.0,0.0,0.0 -2768,catchment_outflow,0.03517921948799886,2010-01-04,0.0,0.0,3.138908678219645e-06,0.0,0.0,0.0,0.0,0.0,8.354169585485113,0.0,0.0,0.0 -2769,reservoir_outflow,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2770,gw1_gw2,0.0,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2771,gw2_gw1,0.032070658784301286,2010-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2772,urban_drainage,0.04,2010-01-05,0.0,0.0,2.3880597014925373e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2773,percolation,0.11419798105964177,2010-01-05,0.0,0.0,1.0551033074993471e-05,0.0,0.0,0.0,0.0,0.0,8.43688645248716,0.0,0.0,0.0 -2774,runoff,0.07681195760058633,2010-01-05,0.0,0.0,3.5669294999053207e-06,0.0,0.0,0.0,0.0,0.0,3.475427863103134,0.0,0.0,0.0 -2775,storm_outflow,0.04,2010-01-05,0.0,0.0,2.3880597014925373e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2776,baseflow,0.018974288356108787,2010-01-05,0.0,0.0,1.8754980508484924e-06,0.0,0.0,0.0,0.0,0.0,11.338768506647448,0.0,0.0,0.0 -2777,catchment_outflow,0.1357862459566951,2010-01-05,0.0,0.0,7.83048725224635e-06,0.0,0.0,0.0,0.0,0.0,4.316339087095658,0.0,0.0,0.0 -2778,reservoir_outflow,0.033499999999999995,2010-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2779,gw1_gw2,0.0,2010-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2780,gw2_gw1,0.03185685439240604,2010-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2781,urban_drainage,0.023999999999999987,2010-01-06,0.0,0.0,2.6119402985074623e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2782,percolation,0.11387993774700628,2010-01-06,0.0,0.0,1.0500748208127341e-05,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2783,runoff,0.04865342604471868,2010-01-06,0.0,0.0,3.3893295820367217e-06,0.0,0.0,0.0,0.0,0.0,3.8562789077081443,0.0,0.0,0.0 -2784,storm_outflow,0.023999999999999987,2010-01-06,0.0,0.0,2.6119402985074623e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2785,baseflow,0.01921155247958603,2010-01-06,0.0,0.0,1.8970611762416894e-06,0.0,0.0,0.0,0.0,0.0,11.294545275112634,0.0,0.0,0.0 -2786,catchment_outflow,0.0918649785243047,2010-01-06,0.0,0.0,7.898331056785873e-06,0.0,0.0,0.0,0.0,0.0,5.08362313290388,0.0,0.0,0.0 -2787,reservoir_outflow,0.0,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2788,gw1_gw2,0.0,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2789,gw2_gw1,0.031644475363123446,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2790,urban_drainage,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2791,percolation,0.11160233899206615,2010-01-07,0.0,0.0,1.0290733243964793e-05,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2792,runoff,0.03379386429771895,2010-01-07,0.0,0.0,2.7114636656293777e-06,0.0,0.0,0.0,0.0,0.0,4.040432344125645,0.0,0.0,0.0 -2793,storm_outflow,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2794,baseflow,0.01944252944586723,2010-01-07,0.0,0.0,1.918045356410997e-06,0.0,0.0,0.0,0.0,0.0,11.252355988123506,0.0,0.0,0.0 -2795,catchment_outflow,0.05323639374358617,2010-01-07,0.0,0.0,4.629509022040375e-06,0.0,0.0,0.0,0.0,0.0,6.674307930911945,0.0,0.0,0.0 -2796,reservoir_outflow,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2797,gw1_gw2,0.0,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2798,gw2_gw1,0.031433512194035985,2010-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2799,urban_drainage,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2800,percolation,0.10937029221222483,2010-01-08,0.0,0.0,1.0084918579085496e-05,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2801,runoff,0.026723503414315758,2010-01-08,0.0,0.0,2.169170932503502e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 -2802,storm_outflow,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2803,baseflow,0.019667348852783123,2010-01-08,0.0,0.0,1.9384625394676836e-06,0.0,0.0,0.0,0.0,0.0,11.212069648830404,0.0,0.0,0.0 -2804,catchment_outflow,0.04639085226709888,2010-01-08,0.0,0.0,4.107633471971186e-06,0.0,0.0,0.0,0.0,0.0,7.089890892476418,0.0,0.0,0.0 -2805,reservoir_outflow,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2806,gw1_gw2,0.0,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2807,gw2_gw1,0.031223955446075813,2010-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2808,urban_drainage,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2809,percolation,0.10718288636798033,2010-01-09,0.0,0.0,9.883220207503787e-06,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2810,runoff,0.021378802731452606,2010-01-09,0.0,0.0,1.7353367460028016e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 -2811,storm_outflow,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2812,baseflow,0.019886137696571115,2010-01-09,0.0,0.0,1.958324433637774e-06,0.0,0.0,0.0,0.0,0.0,11.173566246336268,0.0,0.0,0.0 -2813,catchment_outflow,0.04126494042802372,2010-01-09,0.0,0.0,3.6936611796405752e-06,0.0,0.0,0.0,0.0,0.0,7.486127216037188,0.0,0.0,0.0 -2814,reservoir_outflow,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2815,gw1_gw2,0.0,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2816,gw2_gw1,0.031015795743102006,2010-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2817,urban_drainage,0.011,2010-01-10,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 -2818,percolation,0.10757969431326467,2010-01-10,0.0,0.0,9.900965015358926e-06,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 -2819,runoff,0.03448517573483127,2010-01-10,0.0,0.0,2.1063001034862953e-06,0.0,0.0,0.0,0.0,0.0,3.6763780285064143,0.0,0.0,0.0 -2820,storm_outflow,0.011,2010-01-10,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 -2821,baseflow,0.020105371588112847,2010-01-10,0.0,0.0,1.9781810350920766e-06,0.0,0.0,0.0,0.0,0.0,11.134417378656101,0.0,0.0,0.0 -2822,catchment_outflow,0.06559054732294411,2010-01-10,0.0,0.0,8.084481138578373e-06,0.0,0.0,0.0,0.0,0.0,5.820895360773781,0.0,0.0,0.0 -2823,reservoir_outflow,0.0055,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2824,gw1_gw2,0.0,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2825,gw2_gw1,0.030809023771481314,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2826,urban_drainage,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2827,percolation,0.10542810042699936,2010-01-11,0.0,0.0,9.702945715051746e-06,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 -2828,runoff,0.021362350540018924,2010-01-11,0.0,0.0,1.6850400827890365e-06,0.0,0.0,0.0,0.0,0.0,3.924387471079308,0.0,0.0,0.0 -2829,storm_outflow,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2830,baseflow,0.020318678410210067,2010-01-11,0.0,0.0,1.9974929467919758e-06,0.0,0.0,0.0,0.0,0.0,11.096962088057158,0.0,0.0,0.0 -2831,catchment_outflow,0.04168102895022899,2010-01-11,0.0,0.0,3.6825330295810123e-06,0.0,0.0,0.0,0.0,0.0,7.420875938041876,0.0,0.0,0.0 -2832,reservoir_outflow,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2833,gw1_gw2,0.0,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2834,gw2_gw1,0.03060363027967128,2010-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2835,urban_drainage,0.022,2010-01-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 -2836,percolation,0.1065358240314265,2010-01-12,0.0,0.0,9.781565945150204e-06,0.0,0.0,0.0,0.0,0.0,8.114873689909818,0.0,0.0,0.0 -2837,runoff,0.03837177182044543,2010-01-12,0.0,0.0,2.2569625475628626e-06,0.0,0.0,0.0,0.0,0.0,3.635299358772539,0.0,0.0,0.0 -2838,storm_outflow,0.022,2010-01-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 -2839,baseflow,0.02053422127426311,2010-01-12,0.0,0.0,2.016953129287871e-06,0.0,0.0,0.0,0.0,0.0,11.058282846148265,0.0,0.0,0.0 -2840,catchment_outflow,0.08090599309470854,2010-01-12,0.0,0.0,6.2739156768507335e-06,0.0,0.0,0.0,0.0,0.0,5.326133304681121,0.0,0.0,0.0 -2841,reservoir_outflow,0.011,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2842,gw1_gw2,0.0,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2843,gw2_gw1,0.030399606077806673,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2844,urban_drainage,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2845,percolation,0.105826553576052,2010-01-13,0.0,0.0,9.706934608562593e-06,0.0,0.0,0.0,0.0,0.0,8.058602747324542,0.0,0.0,0.0 -2846,runoff,0.03139493064537964,2010-01-13,0.0,0.0,2.208903312434935e-06,0.0,0.0,0.0,0.0,0.0,3.8346287611342476,0.0,0.0,0.0 -2847,storm_outflow,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2848,baseflow,0.020747452105017584,2010-01-13,0.0,0.0,2.036178082986058e-06,0.0,0.0,0.0,0.0,0.0,11.020031666547709,0.0,0.0,0.0 -2849,catchment_outflow,0.052142382750397225,2010-01-13,0.0,0.0,4.245081395420993e-06,0.0,0.0,0.0,0.0,0.0,6.69370030278113,0.0,0.0,0.0 -2850,reservoir_outflow,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2851,gw1_gw2,0.0,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2852,gw2_gw1,0.030196942037287757,2010-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2853,urban_drainage,0.011,2010-01-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 -2854,percolation,0.10631237169817996,2010-01-14,0.0,0.0,9.733137555790809e-06,0.0,0.0,0.0,0.0,0.0,7.964900265215151,0.0,0.0,0.0 -2855,runoff,0.03893146770020646,2010-01-14,0.0,0.0,2.5015947812795026e-06,0.0,0.0,0.0,0.0,0.0,3.9506904254899116,0.0,0.0,0.0 -2856,storm_outflow,0.011,2010-01-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 -2857,baseflow,0.02096136440400049,2010-01-14,0.0,0.0,2.05542048166807e-06,0.0,0.0,0.0,0.0,0.0,10.98129393711545,0.0,0.0,0.0 -2858,catchment_outflow,0.07089283210420694,2010-01-14,0.0,0.0,6.557015262947572e-06,0.0,0.0,0.0,0.0,0.0,5.995565973990346,0.0,0.0,0.0 -2859,reservoir_outflow,0.0055,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2860,gw1_gw2,0.0,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2861,gw2_gw1,0.029995629090372768,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2862,urban_drainage,0.04,2010-01-15,0.0,0.0,6.896551724137931e-07,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 -2863,percolation,0.11100007508532954,2010-01-15,0.0,0.0,1.0096146086109167e-05,0.0,0.0,0.0,0.0,0.0,7.755879344286624,0.0,0.0,0.0 -2864,runoff,0.07046210309438121,2010-01-15,0.0,0.0,3.8601800964708585e-06,0.0,0.0,0.0,0.0,0.0,4.232512149825626,0.0,0.0,0.0 -2865,storm_outflow,0.04,2010-01-15,0.0,0.0,6.896551724137931e-07,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 -2866,baseflow,0.02118646118070381,2010-01-15,0.0,0.0,2.0755222956791726e-06,0.0,0.0,0.0,0.0,0.0,10.939047469084326,0.0,0.0,0.0 -2867,catchment_outflow,0.131648564275085,2010-01-15,0.0,0.0,6.625357564563824e-06,0.0,0.0,0.0,0.0,0.0,5.282397018730546,0.0,0.0,0.0 -2868,reservoir_outflow,0.028999999999999998,2010-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2869,gw1_gw2,0.0,2010-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2870,gw2_gw1,0.02979565822977026,2010-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2871,urban_drainage,0.028999999999999995,2010-01-16,0.0,0.0,1.3103448275862068e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 -2872,percolation,0.1121119805940825,2010-01-16,0.0,0.0,1.0165605597206863e-05,0.0,0.0,0.0,0.0,0.0,7.671509146608003,0.0,0.0,0.0 -2873,runoff,0.06004006147026146,2010-01-16,0.0,0.0,3.99275218657629e-06,0.0,0.0,0.0,0.0,0.0,4.449700029682216,0.0,0.0,0.0 -2874,storm_outflow,0.028999999999999995,2010-01-16,0.0,0.0,1.3103448275862068e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 -2875,baseflow,0.021413774979237257,2010-01-16,0.0,0.0,2.0957475039329917e-06,0.0,0.0,0.0,0.0,0.0,10.896279415185015,0.0,0.0,0.0 -2876,catchment_outflow,0.11045383644949872,2010-01-16,0.0,0.0,7.398844518095489e-06,0.0,0.0,0.0,0.0,0.0,5.657256994434141,0.0,0.0,0.0 -2877,reservoir_outflow,0.0055,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2878,gw1_gw2,0.0,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2879,gw2_gw1,0.029597020508238536,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2880,urban_drainage,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2881,percolation,0.10986974098220087,2010-01-17,0.0,0.0,9.962293485262726e-06,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 -2882,runoff,0.039049549874819955,2010-01-17,0.0,0.0,3.1942017492610316e-06,0.0,0.0,0.0,0.0,0.0,4.432918984209197,0.0,0.0,0.0 -2883,storm_outflow,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2884,baseflow,0.02163491489424467,2010-01-17,0.0,0.0,2.1154138688863162e-06,0.0,0.0,0.0,0.0,0.0,10.855338108520813,0.0,0.0,0.0 -2885,catchment_outflow,0.060684464769064625,2010-01-17,0.0,0.0,5.309615618147348e-06,0.0,0.0,0.0,0.0,0.0,6.7226069908254065,0.0,0.0,0.0 -2886,reservoir_outflow,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2887,gw1_gw2,0.0,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2888,gw2_gw1,0.029399707038183644,2010-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2889,urban_drainage,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2890,percolation,0.10767234616255683,2010-01-18,0.0,0.0,9.76304761555747e-06,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 -2891,runoff,0.03128419979653777,2010-01-18,0.0,0.0,2.5553613994088255e-06,0.0,0.0,0.0,0.0,0.0,4.438040890899159,0.0,0.0,0.0 -2892,storm_outflow,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2893,baseflow,0.02185000847241545,2010-01-18,0.0,0.0,2.134532953252994e-06,0.0,0.0,0.0,0.0,0.0,10.816114973373951,0.0,0.0,0.0 -2894,catchment_outflow,0.05313420826895322,2010-01-18,0.0,0.0,4.6898943526618195e-06,0.0,0.0,0.0,0.0,0.0,7.0608516427664725,0.0,0.0,0.0 -2895,reservoir_outflow,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2896,gw1_gw2,0.0,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2897,gw2_gw1,0.02920370899126237,2010-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2898,urban_drainage,0.034999999999999996,2010-01-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 -2899,percolation,0.11030554518826753,2010-01-19,0.0,0.0,9.960500168743738e-06,0.0,0.0,0.0,0.0,0.0,7.597066360888079,0.0,0.0,0.0 -2900,runoff,0.05750550519600281,2010-01-19,0.0,0.0,3.3533341378517706e-06,0.0,0.0,0.0,0.0,0.0,5.238088024180862,0.0,0.0,0.0 -2901,storm_outflow,0.034999999999999996,2010-01-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 -2902,baseflow,0.022071147314205078,2010-01-19,0.0,0.0,2.15409787129172e-06,0.0,0.0,0.0,0.0,0.0,10.775895166590361,0.0,0.0,0.0 -2903,catchment_outflow,0.11457665251020789,2010-01-19,0.0,0.0,8.50743200914349e-06,0.0,0.0,0.0,0.0,0.0,6.461222697093054,0.0,0.0,0.0 -2904,reservoir_outflow,0.017499999999999998,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2905,gw1_gw2,0.0,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2906,gw2_gw1,0.029009017597987352,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2907,urban_drainage,0.031000000000000003,2010-01-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 -2908,percolation,0.113172447730304,2010-01-20,0.0,0.0,1.0170447433495705e-05,0.0,0.0,0.0,0.0,0.0,7.538491083432965,0.0,0.0,0.0 -2909,runoff,0.06727829699941315,2010-01-20,0.0,0.0,4.0465248707042324e-06,0.0,0.0,0.0,0.0,0.0,5.503639871992674,0.0,0.0,0.0 -2910,storm_outflow,0.031,2010-01-20,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 -2911,baseflow,0.02229890056524533,2010-01-20,0.0,0.0,2.1741387451972307e-06,0.0,0.0,0.0,0.0,0.0,10.73481859609858,0.0,0.0,0.0 -2912,catchment_outflow,0.12057719756465848,2010-01-20,0.0,0.0,7.220663615901463e-06,0.0,0.0,0.0,0.0,0.0,6.503185515027398,0.0,0.0,0.0 -2913,reservoir_outflow,0.015500000000000002,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2914,gw1_gw2,0.0,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2915,gw2_gw1,0.028815624147333987,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2916,urban_drainage,0.039999999999999994,2010-01-21,0.0,0.0,6.249999999999998e-07,0.0,0.0,0.0,0.0,0.0,5.507142857,0.0,0.0,0.0 -2917,percolation,0.11968122283263138,2010-01-21,0.0,0.0,1.0649191080813196e-05,0.0,0.0,0.0,0.0,0.0,7.442225220176505,0.0,0.0,0.0 -2918,runoff,0.09960308024647363,2010-01-21,0.0,0.0,5.511061883188067e-06,0.0,0.0,0.0,0.0,0.0,5.698667032488271,0.0,0.0,0.0 -2919,storm_outflow,0.039999999999999994,2010-01-21,0.0,0.0,6.25e-07,0.0,0.0,0.0,0.0,0.0,5.507142857000001,0.0,0.0,0.0 -2920,baseflow,0.022542356370913792,2010-01-21,0.0,0.0,2.1953263760362707e-06,0.0,0.0,0.0,0.0,0.0,10.691116243620753,0.0,0.0,0.0 -2921,catchment_outflow,0.1621454366173874,2010-01-21,0.0,0.0,8.331388259224337e-06,0.0,0.0,0.0,0.0,0.0,6.34549746108054,0.0,0.0,0.0 -2922,reservoir_outflow,0.032,2010-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2923,gw1_gw2,0.0,2010-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2924,gw2_gw1,0.028623519986351733,2010-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2925,urban_drainage,0.04,2010-01-22,0.0,0.0,4.910714285714285e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2926,percolation,0.12959509174066625,2010-01-22,0.0,0.0,1.1346896820953423e-05,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 -2927,runoff,0.13926784249750812,2010-01-22,0.0,0.0,7.444481379072095e-06,0.0,0.0,0.0,0.0,0.0,5.75815886520806,0.0,0.0,0.0 -2928,storm_outflow,0.04,2010-01-22,0.0,0.0,4.910714285714285e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2929,baseflow,0.02280998820933817,2010-01-22,0.0,0.0,2.2182053021485634e-06,0.0,0.0,0.0,0.0,0.0,10.643179567872199,0.0,0.0,0.0 -2930,catchment_outflow,0.2020778307068463,2010-01-22,0.0,0.0,1.0153758109792088e-05,0.0,0.0,0.0,0.0,0.0,6.240994104696659,0.0,0.0,0.0 -2931,reservoir_outflow,0.044000000000000004,2010-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2932,gw1_gw2,0.0,2010-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2933,gw2_gw1,0.028432696519776004,2010-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2934,urban_drainage,0.04,2010-01-23,0.0,0.0,1.4491758241758241e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2935,percolation,0.12700318990585294,2010-01-23,0.0,0.0,1.1119958884534356e-05,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 -2936,runoff,0.07686692420239252,2010-01-23,0.0,0.0,5.9555851032576785e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2937,storm_outflow,0.04,2010-01-23,0.0,0.0,1.4491758241758241e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2938,baseflow,0.02307047121357946,2010-01-23,0.0,0.0,2.2404596861045277e-06,0.0,0.0,0.0,0.0,0.0,10.597391771782826,0.0,0.0,0.0 -2939,catchment_outflow,0.139937395415972,2010-01-23,0.0,0.0,9.64522061353803e-06,0.0,0.0,0.0,0.0,0.0,6.548893818148493,0.0,0.0,0.0 -2940,reservoir_outflow,0.0,2010-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2941,gw1_gw2,0.0,2010-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2942,gw2_gw1,0.02824314520964446,2010-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2943,urban_drainage,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2944,percolation,0.1244631261077359,2010-01-24,0.0,0.0,1.089755970684367e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2945,runoff,0.06230079174404874,2010-01-24,0.0,0.0,4.76446808260614e-06,0.0,0.0,0.0,0.0,0.0,5.915410072948235,0.0,0.0,0.0 -2946,storm_outflow,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2947,baseflow,0.02332395285081485,2010-01-24,0.0,0.0,2.2621024361563757e-06,0.0,0.0,0.0,0.0,0.0,10.553618236185576,0.0,0.0,0.0 -2948,catchment_outflow,0.08562474459486359,2010-01-24,0.0,0.0,7.026570518762516e-06,0.0,0.0,0.0,0.0,0.0,7.178845649001349,0.0,0.0,0.0 -2949,reservoir_outflow,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2950,gw1_gw2,0.0,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2951,gw2_gw1,0.028054857574913328,2010-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2952,urban_drainage,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2953,percolation,0.12197386358558115,2010-01-25,0.0,0.0,1.0679608512706795e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2954,runoff,0.04919483148953121,2010-01-25,0.0,0.0,3.8115744660849125e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2955,storm_outflow,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2956,baseflow,0.023570577627651766,2010-01-25,0.0,0.0,2.2831462013477515e-06,0.0,0.0,0.0,0.0,0.0,10.511735326474067,0.0,0.0,0.0 -2957,catchment_outflow,0.07276540911718297,2010-01-25,0.0,0.0,6.094720667432664e-06,0.0,0.0,0.0,0.0,0.0,7.411133915705913,0.0,0.0,0.0 -2958,reservoir_outflow,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2959,gw1_gw2,0.0,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2960,gw2_gw1,0.0278678251910808,2010-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2961,urban_drainage,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2962,percolation,0.11953438631386952,2010-01-26,0.0,0.0,1.046601634245266e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2963,runoff,0.03935586519162497,2010-01-26,0.0,0.0,3.0492595728679306e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2964,storm_outflow,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2965,baseflow,0.023810487149367312,2010-01-26,0.0,0.0,2.303603376700514e-06,0.0,0.0,0.0,0.0,0.0,10.47162929414594,0.0,0.0,0.0 -2966,catchment_outflow,0.06316635234099229,2010-01-26,0.0,0.0,5.352862949568444e-06,0.0,0.0,0.0,0.0,0.0,7.639190663471635,0.0,0.0,0.0 -2967,reservoir_outflow,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2968,gw1_gw2,0.0,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2969,gw2_gw1,0.027682039689806537,2010-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2970,urban_drainage,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2971,percolation,0.11714369858759213,2010-01-27,0.0,0.0,1.0256696015603608e-05,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2972,runoff,0.03243576132604081,2010-01-27,0.0,0.0,2.4394076582943443e-06,0.0,0.0,0.0,0.0,0.0,5.895795029979936,0.0,0.0,0.0 -2973,storm_outflow,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2974,baseflow,0.02404382017796287,2010-01-27,0.0,0.0,2.3234861082977713e-06,0.0,0.0,0.0,0.0,0.0,10.433195307584425,0.0,0.0,0.0 -2975,catchment_outflow,0.05647958150400369,2010-01-27,0.0,0.0,4.762893766592116e-06,0.0,0.0,0.0,0.0,0.0,7.827403470499765,0.0,0.0,0.0 -2976,reservoir_outflow,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2977,gw1_gw2,0.0,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2978,gw2_gw1,0.027497492758541322,2010-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2979,urban_drainage,0.04,2010-01-28,0.0,0.0,3.56377229328049e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2980,percolation,0.12140770570096722,2010-01-28,0.0,0.0,1.0557927253749973e-05,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 -2981,runoff,0.0703927295682453,2010-01-28,0.0,0.0,3.6394099881636057e-06,0.0,0.0,0.0,0.0,0.0,5.495478913376556,0.0,0.0,0.0 -2982,storm_outflow,0.04,2010-01-28,0.0,0.0,3.56377229328049e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2983,baseflow,0.02428722989177038,2010-01-28,0.0,0.0,2.344072211161402e-06,0.0,0.0,0.0,0.0,0.0,10.393080062630077,0.0,0.0,0.0 -2984,catchment_outflow,0.13467995946001568,2010-01-28,0.0,0.0,9.547254492605499e-06,0.0,0.0,0.0,0.0,0.0,6.2081844392759296,0.0,0.0,0.0 -2985,reservoir_outflow,0.0305,2010-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2986,gw1_gw2,0.0,2010-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2987,gw2_gw1,0.02731417614015097,2010-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2988,urban_drainage,0.0049999999999999975,2010-01-29,0.0,0.0,2.870980453972257e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2989,percolation,0.11897955158694787,2010-01-29,0.0,0.0,1.0346768708674975e-05,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 -2990,runoff,0.03927579627062231,2010-01-29,0.0,0.0,2.9115279905308843e-06,0.0,0.0,0.0,0.0,0.0,5.74492111651429,0.0,0.0,0.0 -2991,storm_outflow,0.0049999999999999975,2010-01-29,0.0,0.0,2.870980453972257e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2992,baseflow,0.024523960696008325,2010-01-29,0.0,0.0,2.364078952405186e-06,0.0,0.0,0.0,0.0,0.0,10.354633166148314,0.0,0.0,0.0 -2993,catchment_outflow,0.06879975696663063,2010-01-29,0.0,0.0,8.146587396908326e-06,0.0,0.0,0.0,0.0,0.0,7.328225174556286,0.0,0.0,0.0 -2994,reservoir_outflow,0.0,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2995,gw1_gw2,0.0,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2996,gw2_gw1,0.027132081632550077,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2997,urban_drainage,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2998,percolation,0.11659996055520891,2010-01-30,0.0,0.0,1.0139833334501476e-05,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 -2999,runoff,0.030214842030760376,2010-01-30,0.0,0.0,2.329222392424708e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -3000,storm_outflow,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3001,baseflow,0.024754150695656327,2010-01-30,0.0,0.0,2.383518338360427e-06,0.0,0.0,0.0,0.0,0.0,10.317758319609332,0.0,0.0,0.0 -3002,catchment_outflow,0.0549689927264167,2010-01-30,0.0,0.0,4.712740730785135e-06,0.0,0.0,0.0,0.0,0.0,7.822032948455985,0.0,0.0,0.0 -3003,reservoir_outflow,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3004,gw1_gw2,0.0,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3005,gw2_gw1,0.0269512010883334,2010-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3006,urban_drainage,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3007,percolation,0.11426796134410473,2010-01-31,0.0,0.0,9.937036667811445e-06,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 -3008,runoff,0.0241718736246083,2010-01-31,0.0,0.0,1.8633779139397657e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -3009,storm_outflow,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3010,baseflow,0.02497793522227745,2010-01-31,0.0,0.0,2.4024021341840543e-06,0.0,0.0,0.0,0.0,0.0,10.282366468512391,0.0,0.0,0.0 -3011,catchment_outflow,0.049149808846885745,2010-01-31,0.0,0.0,4.2657800481238205e-06,0.0,0.0,0.0,0.0,0.0,8.066803010139079,0.0,0.0,0.0 -3012,reservoir_outflow,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3013,gw1_gw2,0.0,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3014,gw2_gw1,0.026771526414411186,2010-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3015,urban_drainage,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3016,percolation,0.11198260211722265,2010-02-01,0.0,0.0,9.738295934455217e-06,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 -3017,runoff,0.021290784003745917,2010-02-01,0.0,0.0,1.490702331151813e-06,0.0,0.0,0.0,0.0,0.0,5.702763186802649,0.0,0.0,0.0 -3018,storm_outflow,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3019,baseflow,0.02519544688951481,2010-02-01,0.0,0.0,2.4207418686847328e-06,0.0,0.0,0.0,0.0,0.0,10.248375133426316,0.0,0.0,0.0 -3020,catchment_outflow,0.046486230893260726,2010-02-01,0.0,0.0,3.911444199836546e-06,0.0,0.0,0.0,0.0,0.0,8.166476036409138,0.0,0.0,0.0 -3021,reservoir_outflow,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3022,gw1_gw2,0.0,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3023,gw2_gw1,0.026593049571648566,2010-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3024,urban_drainage,0.002999999999999999,2010-02-02,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -3025,percolation,0.11146843166386879,2010-02-02,0.0,0.0,9.682794090642919e-06,0.0,0.0,0.0,0.0,0.0,7.199284322180771,0.0,0.0,0.0 -3026,runoff,0.02727592578126396,2010-02-02,0.0,0.0,1.6567754478441405e-06,0.0,0.0,0.0,0.0,0.0,5.578035584901133,0.0,0.0,0.0 -3027,storm_outflow,0.002999999999999999,2010-02-02,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -3028,baseflow,0.025411129351450696,2010-02-02,0.0,0.0,2.438896999239628e-06,0.0,0.0,0.0,0.0,0.0,10.21493728754887,0.0,0.0,0.0 -3029,catchment_outflow,0.05568705513271466,2010-02-02,0.0,0.0,8.095672447083769e-06,0.0,0.0,0.0,0.0,0.0,7.661460573432834,0.0,0.0,0.0 -3030,reservoir_outflow,0.0014999999999999996,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3031,gw1_gw2,0.0,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3032,gw2_gw1,0.026415762574504422,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3033,urban_drainage,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3034,percolation,0.11045996093159974,2010-02-03,0.0,0.0,9.588112784018392e-06,0.0,0.0,0.0,0.0,0.0,7.1825849507588515,0.0,0.0,0.0 -3035,runoff,0.02533079548737534,2010-02-03,0.0,0.0,1.6553356089030888e-06,0.0,0.0,0.0,0.0,0.0,5.616943915722848,0.0,0.0,0.0 -3036,storm_outflow,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3037,baseflow,0.02562375143040107,2010-02-03,0.0,0.0,2.4567700387015752e-06,0.0,0.0,0.0,0.0,0.0,10.182257302968699,0.0,0.0,0.0 -3038,catchment_outflow,0.050954546917776414,2010-02-03,0.0,0.0,4.112105647604664e-06,0.0,0.0,0.0,0.0,0.0,7.912724420364314,0.0,0.0,0.0 -3039,reservoir_outflow,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3040,gw1_gw2,0.0,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3041,gw2_gw1,0.026239657490674164,2010-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3042,urban_drainage,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3043,percolation,0.10941144894062849,2010-02-04,0.0,0.0,9.490855999845095e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -3044,runoff,0.024779098751766048,2010-02-04,0.0,0.0,1.6392867254793734e-06,0.0,0.0,0.0,0.0,0.0,5.625890736640606,0.0,0.0,0.0 -3045,storm_outflow,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3046,baseflow,0.025833220674176635,2010-02-04,0.0,0.0,2.474355253604434e-06,0.0,0.0,0.0,0.0,0.0,10.150332265750547,0.0,0.0,0.0 -3047,catchment_outflow,0.05061231942594269,2010-02-04,0.0,0.0,4.113641979083808e-06,0.0,0.0,0.0,0.0,0.0,7.935227628816225,0.0,0.0,0.0 -3048,reservoir_outflow,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3049,gw1_gw2,0.0,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3050,gw2_gw1,0.026064726440736232,2010-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3051,urban_drainage,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3052,percolation,0.10722321996181591,2010-02-05,0.0,0.0,9.301038879848195e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -3053,runoff,0.017294184320000024,2010-02-05,0.0,0.0,1.3114293803834987e-06,0.0,0.0,0.0,0.0,0.0,5.7094543798847495,0.0,0.0,0.0 -3054,storm_outflow,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3055,baseflow,0.02603669567239573,2010-02-05,0.0,0.0,2.491421962670043e-06,0.0,0.0,0.0,0.0,0.0,10.11961891227052,0.0,0.0,0.0 -3056,catchment_outflow,0.04333087999239575,2010-02-05,0.0,0.0,3.8028513430535416e-06,0.0,0.0,0.0,0.0,0.0,8.359437759291604,0.0,0.0,0.0 -3057,reservoir_outflow,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3058,gw1_gw2,0.0,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3059,gw2_gw1,0.02589096159779789,2010-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3060,urban_drainage,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3061,percolation,0.10507875556257958,2010-02-06,0.0,0.0,9.115018102251228e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -3062,runoff,0.013453548354157102,2010-02-06,0.0,0.0,1.0491435043067992e-06,0.0,0.0,0.0,0.0,0.0,5.727039679564555,0.0,0.0,0.0 -3063,storm_outflow,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3064,baseflow,0.026234300822121193,2010-02-06,0.0,0.0,2.5079809530189966e-06,0.0,0.0,0.0,0.0,0.0,10.090054089646225,0.0,0.0,0.0 -3065,catchment_outflow,0.039687849176278295,2010-02-06,0.0,0.0,3.557124457325796e-06,0.0,0.0,0.0,0.0,0.0,8.611061739236815,0.0,0.0,0.0 -3066,reservoir_outflow,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3067,gw1_gw2,0.0,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3068,gw2_gw1,0.025718355187146182,2010-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3069,urban_drainage,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3070,percolation,0.10297718045132803,2010-02-07,0.0,0.0,8.932717740206207e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3071,runoff,0.01129951996385258,2010-02-07,0.0,0.0,8.393148034454392e-07,0.0,0.0,0.0,0.0,0.0,5.703008655280536,0.0,0.0,0.0 -3072,storm_outflow,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3073,baseflow,0.026426158021194208,2010-02-07,0.0,0.0,2.5240427949869644e-06,0.0,0.0,0.0,0.0,0.0,10.061578934624475,0.0,0.0,0.0 -3074,catchment_outflow,0.037725677985046786,2010-02-07,0.0,0.0,3.3633575984324035e-06,0.0,0.0,0.0,0.0,0.0,8.756108641822253,0.0,0.0,0.0 -3075,reservoir_outflow,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3076,gw1_gw2,0.0,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3077,gw2_gw1,0.0255468994858985,2010-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3078,urban_drainage,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3079,percolation,0.10091763684230146,2010-02-08,0.0,0.0,8.754063385402082e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3080,runoff,0.008881238993070127,2010-02-08,0.0,0.0,6.714518427563515e-07,0.0,0.0,0.0,0.0,0.0,5.7139416196281445,0.0,0.0,0.0 -3081,storm_outflow,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3082,baseflow,0.026612386718246974,2010-02-08,0.0,0.0,2.539617846463002e-06,0.0,0.0,0.0,0.0,0.0,10.034138515179773,0.0,0.0,0.0 -3083,catchment_outflow,0.0354936257113171,2010-02-08,0.0,0.0,3.2110696892193537e-06,0.0,0.0,0.0,0.0,0.0,8.953135930699377,0.0,0.0,0.0 -3084,reservoir_outflow,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3085,gw1_gw2,0.0,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3086,gw2_gw1,0.025376586822659065,2010-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3087,urban_drainage,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3088,percolation,0.09889928410545543,2010-02-09,0.0,0.0,8.57898211769404e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3089,runoff,0.00683281921027198,2010-02-09,0.0,0.0,5.371614742050811e-07,0.0,0.0,0.0,0.0,0.0,5.732603747487922,0.0,0.0,0.0 -3090,storm_outflow,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3091,baseflow,0.026793103961714995,2010-02-09,0.0,0.0,2.55471625714108e-06,0.0,0.0,0.0,0.0,0.0,10.007681507462033,0.0,0.0,0.0 -3092,catchment_outflow,0.033625923171986975,2010-02-09,0.0,0.0,3.091877731346161e-06,0.0,0.0,0.0,0.0,0.0,9.13898168636411,0.0,0.0,0.0 -3093,reservoir_outflow,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3094,gw1_gw2,0.0,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3095,gw2_gw1,0.025207409577174822,2010-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3096,urban_drainage,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3097,percolation,0.09692129842334632,2010-02-10,0.0,0.0,8.407402475340159e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3098,runoff,0.005428087878593857,2010-02-10,0.0,0.0,4.297291793640649e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3099,storm_outflow,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3100,baseflow,0.02696842444786907,2010-02-10,0.0,0.0,2.5693479726865774e-06,0.0,0.0,0.0,0.0,0.0,9.982159904091734,0.0,0.0,0.0 -3101,catchment_outflow,0.03239651232646293,2010-02-10,0.0,0.0,2.9990771520506423e-06,0.0,0.0,0.0,0.0,0.0,9.270649583729472,0.0,0.0,0.0 -3102,reservoir_outflow,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3103,gw1_gw2,0.0,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3104,gw2_gw1,0.025039360179993864,2010-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3105,urban_drainage,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3106,percolation,0.0949828724548794,2010-02-11,0.0,0.0,8.239254425833356e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3107,runoff,0.0043424703028750854,2010-02-11,0.0,0.0,3.437833434912519e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3108,storm_outflow,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3109,baseflow,0.0271384605678866,2010-02-11,0.0,0.0,2.5835227388194447e-06,0.0,0.0,0.0,0.0,0.0,9.957528750310253,0.0,0.0,0.0 -3110,catchment_outflow,0.03148093087076168,2010-02-11,0.0,0.0,2.9273060823106965e-06,0.0,0.0,0.0,0.0,0.0,9.375163434854379,0.0,0.0,0.0 -3111,reservoir_outflow,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3112,gw1_gw2,0.0,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3113,gw2_gw1,0.024872431112127027,2010-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3114,urban_drainage,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3115,percolation,0.09308321500578179,2010-02-12,0.0,0.0,8.074469337316687e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 -3116,runoff,0.0034739762423000677,2010-02-12,0.0,0.0,2.7502667479300146e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3117,storm_outflow,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3118,baseflow,0.027303322453981337,2010-02-12,0.0,0.0,2.5972501053156878e-06,0.0,0.0,0.0,0.0,0.0,9.933745904930765,0.0,0.0,0.0 -3119,catchment_outflow,0.030777298696281406,2010-02-12,0.0,0.0,2.872276780108689e-06,0.0,0.0,0.0,0.0,0.0,9.459886880004188,0.0,0.0,0.0 -3120,reservoir_outflow,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3121,gw1_gw2,0.0,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3122,gw2_gw1,0.024706614904713042,2010-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3123,urban_drainage,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3124,percolation,0.09122155070566615,2010-02-13,0.0,0.0,7.912979950570354e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3125,runoff,0.0027791809938400545,2010-02-13,0.0,0.0,2.2002133983440127e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3126,storm_outflow,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3127,baseflow,0.027463118024610548,2010-02-13,0.0,0.0,2.610539429928825e-06,0.0,0.0,0.0,0.0,0.0,9.91077182341208,0.0,0.0,0.0 -3128,catchment_outflow,0.030242299018450602,2010-02-13,0.0,0.0,2.830560769763226e-06,0.0,0.0,0.0,0.0,0.0,9.527089635021301,0.0,0.0,0.0 -3129,reservoir_outflow,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3130,gw1_gw2,0.0,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3131,gw2_gw1,0.02454190413868176,2010-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3132,urban_drainage,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3133,percolation,0.08939711969155283,2010-02-14,0.0,0.0,7.754720351558948e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3134,runoff,0.002223344795072044,2010-02-14,0.0,0.0,1.7601707186752103e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3135,storm_outflow,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3136,baseflow,0.0276179530287779,2010-02-14,0.0,0.0,2.6233998822329005e-06,0.0,0.0,0.0,0.0,0.0,9.888569360703048,0.0,0.0,0.0 -3137,catchment_outflow,0.029841297823849946,2010-02-14,0.0,0.0,2.7994169541004214e-06,0.0,0.0,0.0,0.0,0.0,9.57915314495748,0.0,0.0,0.0 -3138,reservoir_outflow,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3139,gw1_gw2,0.0,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3140,gw2_gw1,0.024378291444424074,2010-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3141,urban_drainage,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3142,percolation,0.08760917729772177,2010-02-15,0.0,0.0,7.599625944527769e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3143,runoff,0.001778675836057635,2010-02-15,0.0,0.0,1.408136574940168e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3144,storm_outflow,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3145,baseflow,0.02776793108945026,2010-02-15,0.0,0.0,2.6358404473886375e-06,0.0,0.0,0.0,0.0,0.0,9.86710359178685,0.0,0.0,0.0 -3146,catchment_outflow,0.029546606925507896,2010-02-15,0.0,0.0,2.7766541048826545e-06,0.0,0.0,0.0,0.0,0.0,9.618394001188955,0.0,0.0,0.0 -3147,reservoir_outflow,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3148,gw1_gw2,0.0,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3149,gw2_gw1,0.024215769501461183,2010-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3150,urban_drainage,0.005,2010-02-16,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0 -3151,percolation,0.08585699375176735,2010-02-16,0.0,0.0,7.447633425637213e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -3152,runoff,0.001422940668846108,2010-02-16,0.0,0.0,1.1265092599521345e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3153,storm_outflow,0.005,2010-02-16,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0 -3154,baseflow,0.02791315374610605,2010-02-16,0.0,0.0,2.647869929834259e-06,0.0,0.0,0.0,0.0,0.0,9.84634164809865,0.0,0.0,0.0 -3155,catchment_outflow,0.03433609441495216,2010-02-16,0.0,0.0,1.6760520855829477e-05,0.0,0.0,0.0,0.0,0.0,9.039436107205505,0.0,0.0,0.0 -3156,reservoir_outflow,0.0025,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3157,gw1_gw2,0.0,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3158,gw2_gw1,0.02405433103811827,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3159,urban_drainage,0.002000000000000001,2010-02-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0 -3160,percolation,0.084139853876732,2010-02-17,0.0,0.0,7.2986807571244694e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3161,runoff,0.0011383525350768865,2010-02-17,0.0,0.0,9.012074079617076e-08,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3162,storm_outflow,0.002000000000000001,2010-02-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0 -3163,baseflow,0.028053720496432618,2010-02-17,0.0,0.0,2.6594969569024845e-06,0.0,0.0,0.0,0.0,0.0,9.826252568202333,0.0,0.0,0.0 -3164,catchment_outflow,0.031192073031509504,2010-02-17,0.0,0.0,3.7496176976986554e-06,0.0,0.0,0.0,0.0,0.0,9.389953962974037,0.0,0.0,0.0 -3165,reservoir_outflow,0.0010000000000000005,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3166,gw1_gw2,0.0,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3167,gw2_gw1,0.0238939688311973,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3168,urban_drainage,0.04,2010-02-18,0.0,0.0,7.272727272727274e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -3169,percolation,0.08245705679919733,2010-02-18,0.0,0.0,7.152707141981979e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 -3170,runoff,0.0009106820280615092,2010-02-18,0.0,0.0,7.209659263693662e-08,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -3171,storm_outflow,0.04,2010-02-18,0.0,0.0,7.272727272727274e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -3172,baseflow,0.02818972883718953,2010-02-18,0.0,0.0,2.670729982365183e-06,0.0,0.0,0.0,0.0,0.0,9.806807161297083,0.0,0.0,0.0 -3173,catchment_outflow,0.06910041086525104,2010-02-18,0.0,0.0,3.4700993022748468e-06,0.0,0.0,0.0,0.0,0.0,7.100892423813926,0.0,0.0,0.0 -3174,reservoir_outflow,0.027499999999999997,2010-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3175,gw1_gw2,0.0,2010-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3176,gw2_gw1,0.023734675705656016,2010-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3177,urban_drainage,0.0009999999999999905,2010-02-19,0.0,0.0,1.2727272727272726e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -3178,percolation,0.0808079156632134,2010-02-19,0.0,0.0,7.00965299914234e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3179,runoff,0.0027277318292746443,2010-02-19,0.0,0.0,5.767727410954929e-08,0.0,0.0,0.0,0.0,0.0,5.269773585684978,0.0,0.0,0.0 -3180,storm_outflow,0.0009999999999999905,2010-02-19,0.0,0.0,1.2727272727272726e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -3181,baseflow,0.02832127430425459,2010-02-19,0.0,0.0,2.681577289907126e-06,0.0,0.0,0.0,0.0,0.0,9.787977882285835,0.0,0.0,0.0 -3182,catchment_outflow,0.03204900613352923,2010-02-19,0.0,0.0,4.011981836743948e-06,0.0,0.0,0.0,0.0,0.0,9.261052726387724,0.0,0.0,0.0 -3183,reservoir_outflow,0.0,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3184,gw1_gw2,0.0,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3185,gw2_gw1,0.023576444534284847,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3186,urban_drainage,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3187,percolation,0.07919175734994913,2010-02-20,0.0,0.0,6.8694599391594934e-06,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -3188,runoff,0.0031179119175073072,2010-02-20,0.0,0.0,4.614181928763943e-08,0.0,0.0,0.0,0.0,0.0,5.117188754759228,0.0,0.0,0.0 -3189,storm_outflow,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3190,baseflow,0.02844845051186883,2010-02-20,0.0,0.0,2.6920469965302566e-06,0.0,0.0,0.0,0.0,0.0,9.769738717278953,0.0,0.0,0.0 -3191,catchment_outflow,0.03156636242937613,2010-02-20,0.0,0.0,2.738188815817896e-06,0.0,0.0,0.0,0.0,0.0,9.310191279483629,0.0,0.0,0.0 -3192,reservoir_outflow,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3193,gw1_gw2,0.0,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3194,gw2_gw1,0.023419268237389625,2010-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3195,urban_drainage,0.017,2010-02-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 -3196,percolation,0.08085105733360563,2010-02-21,0.0,0.0,7.024631410914399e-06,0.0,0.0,0.0,0.0,0.0,7.108027656057285,0.0,0.0,0.0 -3197,runoff,0.022656141144957755,2010-02-21,0.0,0.0,1.012115690557098e-06,0.0,0.0,0.0,0.0,0.0,5.270929330371629,0.0,0.0,0.0 -3198,storm_outflow,0.017,2010-02-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 -3199,baseflow,0.028579457028923172,2010-02-21,0.0,0.0,2.702878457566218e-06,0.0,0.0,0.0,0.0,0.0,9.750913818558999,0.0,0.0,0.0 -3200,catchment_outflow,0.06823559817388093,2010-02-21,0.0,0.0,5.714994148123316e-06,0.0,0.0,0.0,0.0,0.0,7.042434655877015,0.0,0.0,0.0 -3201,reservoir_outflow,0.0085,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3202,gw1_gw2,0.0,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3203,gw2_gw1,0.02326313978247363,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3204,urban_drainage,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3205,percolation,0.08090013537533693,2010-02-22,0.0,0.0,7.034790497854361e-06,0.0,0.0,0.0,0.0,0.0,7.076869290474284,0.0,0.0,0.0 -3206,runoff,0.020421001733026696,2010-02-22,0.0,0.0,1.3118649363065088e-06,0.0,0.0,0.0,0.0,0.0,5.3904486280518285,0.0,0.0,0.0 -3207,storm_outflow,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3208,baseflow,0.028710258724789207,2010-02-22,0.0,0.0,2.713708237666938e-06,0.0,0.0,0.0,0.0,0.0,9.73207642611372,0.0,0.0,0.0 -3209,catchment_outflow,0.049131260457815906,2010-02-22,0.0,0.0,4.025573173973447e-06,0.0,0.0,0.0,0.0,0.0,7.927514768989075,0.0,0.0,0.0 -3210,reservoir_outflow,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3211,gw1_gw2,0.0,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3212,gw2_gw1,0.02310805218392389,2010-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3213,urban_drainage,0.007000000000000001,2010-02-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 -3214,percolation,0.08166654453115915,2010-02-23,0.0,0.0,7.108993132767962e-06,0.0,0.0,0.0,0.0,0.0,7.0303593348325935,0.0,0.0,0.0 -3215,runoff,0.027974428694381916,2010-02-23,0.0,0.0,1.7658200986141698e-06,0.0,0.0,0.0,0.0,0.0,5.291847428575876,0.0,0.0,0.0 -3216,storm_outflow,0.007000000000000001,2010-02-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 -3217,baseflow,0.028842649439305132,2010-02-23,0.0,0.0,2.7246964499046906e-06,0.0,0.0,0.0,0.0,0.0,9.712951978166416,0.0,0.0,0.0 -3218,catchment_outflow,0.06381707813368705,2010-02-23,0.0,0.0,6.4905165485188605e-06,0.0,0.0,0.0,0.0,0.0,7.214114010592429,0.0,0.0,0.0 -3219,reservoir_outflow,0.0035000000000000005,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3220,gw1_gw2,0.0,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3221,gw2_gw1,0.022953998502697283,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3222,urban_drainage,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3223,percolation,0.08162854983160829,2010-02-24,0.0,0.0,7.110933417322726e-06,0.0,0.0,0.0,0.0,0.0,6.998170100625107,0.0,0.0,0.0 -3224,runoff,0.026601915172796205,2010-02-24,0.0,0.0,1.8930565695917423e-06,0.0,0.0,0.0,0.0,0.0,5.409266782610231,0.0,0.0,0.0 -3225,storm_outflow,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3226,baseflow,0.02897461419028589,2010-02-24,0.0,0.0,2.7356620423232355e-06,0.0,0.0,0.0,0.0,0.0,9.693831472685524,0.0,0.0,0.0 -3227,catchment_outflow,0.05557652936308209,2010-02-24,0.0,0.0,4.628718611914978e-06,0.0,0.0,0.0,0.0,0.0,7.643008441021858,0.0,0.0,0.0 -3228,reservoir_outflow,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3229,gw1_gw2,0.0,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3230,gw2_gw1,0.022800971846012708,2010-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3231,urban_drainage,0.031000000000000003,2010-02-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0 -3232,percolation,0.08431633357729519,2010-02-25,0.0,0.0,7.352001434291665e-06,0.0,0.0,0.0,0.0,0.0,6.927342238119208,0.0,0.0,0.0 -3233,runoff,0.04636371738267318,2010-02-25,0.0,0.0,2.7920675400580356e-06,0.0,0.0,0.0,0.0,0.0,5.474117603764888,0.0,0.0,0.0 -3234,storm_outflow,0.031000000000000003,2010-02-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0 -3235,baseflow,0.029112968488753412,2010-02-25,0.0,0.0,2.747202890803156e-06,0.0,0.0,0.0,0.0,0.0,9.673800860792598,0.0,0.0,0.0 -3236,catchment_outflow,0.1064766858714266,2010-02-25,0.0,0.0,7.539270430861192e-06,0.0,0.0,0.0,0.0,0.0,6.563387854427391,0.0,0.0,0.0 -3237,reservoir_outflow,0.015500000000000002,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3238,gw1_gw2,0.0,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3239,gw2_gw1,0.022648965367038976,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3240,urban_drainage,0.04,2010-02-26,0.0,0.0,9.756097560975609e-07,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 -3241,percolation,0.08854015961989636,2010-02-26,0.0,0.0,7.716971093368223e-06,0.0,0.0,0.0,0.0,0.0,6.858528920498261,0.0,0.0,0.0 -3242,runoff,0.06540154934028437,2010-02-26,0.0,0.0,3.940352991254406e-06,0.0,0.0,0.0,0.0,0.0,5.681097297286526,0.0,0.0,0.0 -3243,storm_outflow,0.04,2010-02-26,0.0,0.0,9.756097560975609e-07,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 -3244,baseflow,0.029261536466581264,2010-02-26,0.0,0.0,2.759627311309569e-06,0.0,0.0,0.0,0.0,0.0,9.652504591263847,0.0,0.0,0.0 -3245,catchment_outflow,0.13466308580686565,2010-02-26,0.0,0.0,7.675590058661535e-06,0.0,0.0,0.0,0.0,0.0,6.52209467282067,0.0,0.0,0.0 -3246,reservoir_outflow,0.0205,2010-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3247,gw1_gw2,0.0,2010-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3248,gw2_gw1,0.022497972264592294,2010-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3249,urban_drainage,0.04,2010-02-27,0.0,0.0,5.058717253839205e-07,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3250,percolation,0.09734349164668038,2010-02-27,0.0,0.0,8.437185195778491e-06,0.0,0.0,0.0,0.0,0.0,6.7847527447160205,0.0,0.0,0.0 -3251,runoff,0.10808068335323479,2010-02-27,0.0,0.0,6.067460807262289e-06,0.0,0.0,0.0,0.0,0.0,5.944799116175617,0.0,0.0,0.0 -3252,storm_outflow,0.04,2010-02-27,0.0,0.0,5.058717253839205e-07,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3253,baseflow,0.02943174135453152,2010-02-27,0.0,0.0,2.7738212060207414e-06,0.0,0.0,0.0,0.0,0.0,9.628792353636069,0.0,0.0,0.0 -3254,catchment_outflow,0.17751242470776632,2010-02-27,0.0,0.0,9.347153738666951e-06,0.0,0.0,0.0,0.0,0.0,6.554237427523458,0.0,0.0,0.0 -3255,reservoir_outflow,0.04,2010-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3256,gw1_gw2,0.0,2010-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3257,gw2_gw1,0.02234798578282824,2010-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3258,urban_drainage,0.026000000000000002,2010-02-28,0.0,0.0,1.5185185185185184e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3259,percolation,0.09539662181374678,2010-02-28,0.0,0.0,8.268441491862921e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3260,runoff,0.0588366289491805,2010-02-28,0.0,0.0,4.85396864580983e-06,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3261,storm_outflow,0.026000000000000002,2010-02-28,0.0,0.0,1.5185185185185184e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3262,baseflow,0.029596653555679555,2010-02-28,0.0,0.0,2.787557756735347e-06,0.0,0.0,0.0,0.0,0.0,9.605874917169388,0.0,0.0,0.0 -3263,catchment_outflow,0.11443328250486007,2010-02-28,0.0,0.0,9.160044921063695e-06,0.0,0.0,0.0,0.0,0.0,6.896799293967715,0.0,0.0,0.0 -3264,reservoir_outflow,0.0,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3265,gw1_gw2,0.0,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3266,gw2_gw1,0.022198999210943173,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3267,urban_drainage,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3268,percolation,0.09348868937747182,2010-03-01,0.0,0.0,8.103072662025663e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3269,runoff,0.045426210888959984,2010-03-01,0.0,0.0,3.883174916647865e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3270,storm_outflow,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3271,baseflow,0.02975638364523403,2010-03-01,0.0,0.0,2.800846543998573e-06,0.0,0.0,0.0,0.0,0.0,9.583716393336248,0.0,0.0,0.0 -3272,catchment_outflow,0.07518259453419401,2010-03-01,0.0,0.0,6.684021460646437e-06,0.0,0.0,0.0,0.0,0.0,7.3856529760994984,0.0,0.0,0.0 -3273,reservoir_outflow,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3274,gw1_gw2,0.0,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3275,gw2_gw1,0.022051005882869925,2010-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3276,urban_drainage,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3277,percolation,0.09161891558992234,2010-03-02,0.0,0.0,7.941011208785147e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3278,runoff,0.03634096871116799,2010-03-02,0.0,0.0,3.106539933318292e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3279,storm_outflow,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3280,baseflow,0.029911039975095755,2010-03-02,0.0,0.0,2.8136969556605395e-06,0.0,0.0,0.0,0.0,0.0,9.56228300164578,0.0,0.0,0.0 -3281,catchment_outflow,0.06625200868626374,2010-03-02,0.0,0.0,5.920236888978832e-06,0.0,0.0,0.0,0.0,0.0,7.578554796023903,0.0,0.0,0.0 -3282,reservoir_outflow,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3283,gw1_gw2,0.0,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3284,gw2_gw1,0.02190399917698418,2010-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3285,urban_drainage,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3286,percolation,0.08978653727812391,2010-03-03,0.0,0.0,7.782190984609444e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3287,runoff,0.02907277496893439,2010-03-03,0.0,0.0,2.4852319466546336e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3288,storm_outflow,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3289,baseflow,0.030060728718353327,2010-03-03,0.0,0.0,2.826118190732912e-06,0.0,0.0,0.0,0.0,0.0,9.541542916941623,0.0,0.0,0.0 -3290,catchment_outflow,0.05913350368728772,2010-03-03,0.0,0.0,5.311350137387546e-06,0.0,0.0,0.0,0.0,0.0,7.773715808549429,0.0,0.0,0.0 -3291,reservoir_outflow,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3292,gw1_gw2,0.0,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3293,gw2_gw1,0.02175797251580427,2010-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3294,urban_drainage,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3295,percolation,0.08799080653256144,2010-03-04,0.0,0.0,7.6265471649172555e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3296,runoff,0.02325821997514751,2010-03-04,0.0,0.0,1.9881855573237067e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3297,storm_outflow,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3298,baseflow,0.030205553912888844,2010-03-04,0.0,0.0,2.838119263168373e-06,0.0,0.0,0.0,0.0,0.0,9.52146612978894,0.0,0.0,0.0 -3299,catchment_outflow,0.05346377388803636,2010-03-04,0.0,0.0,4.8263048204920795e-06,0.0,0.0,0.0,0.0,0.0,7.965958684537384,0.0,0.0,0.0 -3300,reservoir_outflow,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3301,gw1_gw2,0.0,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3302,gw2_gw1,0.02161291936569896,2010-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3303,urban_drainage,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3304,percolation,0.08623099040191022,2010-03-05,0.0,0.0,7.47401622161891e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3305,runoff,0.018606575980118008,2010-03-05,0.0,0.0,1.5905484458589655e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3306,storm_outflow,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3307,baseflow,0.030345617504111397,2010-03-05,0.0,0.0,2.849709005564499e-06,0.0,0.0,0.0,0.0,0.0,9.502024318660116,0.0,0.0,0.0 -3308,catchment_outflow,0.048952193484229405,2010-03-05,0.0,0.0,4.440257451423464e-06,0.0,0.0,0.0,0.0,0.0,8.150319963417555,0.0,0.0,0.0 -3309,reservoir_outflow,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3310,gw1_gw2,0.0,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3311,gw2_gw1,0.02146883323659452,2010-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3312,urban_drainage,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3313,percolation,0.08450637059387202,2010-03-06,0.0,0.0,7.324535897186531e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3314,runoff,0.014885260784094407,2010-03-06,0.0,0.0,1.2724387566871727e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3315,storm_outflow,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3316,baseflow,0.030481019386835798,2010-03-06,0.0,0.0,2.8608960727935544e-06,0.0,0.0,0.0,0.0,0.0,9.483190732771986,0.0,0.0,0.0 -3317,catchment_outflow,0.0453662801709302,2010-03-06,0.0,0.0,4.133334829480727e-06,0.0,0.0,0.0,0.0,0.0,8.322531946792369,0.0,0.0,0.0 -3318,reservoir_outflow,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3319,gw1_gw2,0.0,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3320,gw2_gw1,0.02132570768168396,2010-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3321,urban_drainage,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3322,percolation,0.08281624318199457,2010-03-07,0.0,0.0,7.1780451792428005e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3323,runoff,0.011908208627275525,2010-03-07,0.0,0.0,1.0179510053497379e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3324,storm_outflow,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3325,baseflow,0.030611857446323696,2010-03-07,0.0,0.0,2.8716889455596774e-06,0.0,0.0,0.0,0.0,0.0,9.464940084553216,0.0,0.0,0.0 -3326,catchment_outflow,0.04252006607359922,2010-03-07,0.0,0.0,3.8896399509094155e-06,0.0,0.0,0.0,0.0,0.0,8.479370477606388,0.0,0.0,0.0 -3327,reservoir_outflow,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3328,gw1_gw2,0.0,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3329,gw2_gw1,0.02118353629713923,2010-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3330,urban_drainage,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3331,percolation,0.08115991831835467,2010-03-08,0.0,0.0,7.034484275657944e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3332,runoff,0.00952656690182042,2010-03-08,0.0,0.0,8.143608042797905e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3333,storm_outflow,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3334,baseflow,0.03073822759850377,2010-03-08,0.0,0.0,2.882095933884923e-06,0.0,0.0,0.0,0.0,0.0,9.447248450830843,0.0,0.0,0.0 -3335,catchment_outflow,0.04026479450032419,2010-03-08,0.0,0.0,3.6964567381647137e-06,0.0,0.0,0.0,0.0,0.0,8.61881637443018,0.0,0.0,0.0 -3336,reservoir_outflow,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3337,gw1_gw2,0.0,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3338,gw2_gw1,0.021042312721824885,2010-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3339,urban_drainage,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3340,percolation,0.07953671995198758,2010-03-09,0.0,0.0,6.893794590144785e-06,0.0,0.0,0.0,0.0,0.0,6.7847527447160205,0.0,0.0,0.0 -3341,runoff,0.007621253521456335,2010-03-09,0.0,0.0,6.514886434238322e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3342,storm_outflow,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3343,baseflow,0.03086022382938748,2010-03-09,0.0,0.0,2.8921251805255726e-06,0.0,0.0,0.0,0.0,0.0,9.430093181922118,0.0,0.0,0.0 -3344,catchment_outflow,0.03848147735084382,2010-03-09,0.0,0.0,3.5436138239494046e-06,0.0,0.0,0.0,0.0,0.0,8.74003201417344,0.0,0.0,0.0 -3345,reservoir_outflow,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3346,gw1_gw2,0.0,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3347,gw2_gw1,0.020902030637012816,2010-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3348,urban_drainage,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3349,percolation,0.07794598555294784,2010-03-10,0.0,0.0,6.7559186983418894e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3350,runoff,0.006097002817165069,2010-03-10,0.0,0.0,5.211909147390658e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3351,storm_outflow,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3352,baseflow,0.03097793823369638,2010-03-10,0.0,0.0,2.901784664320113e-06,0.0,0.0,0.0,0.0,0.0,9.413452817903572,0.0,0.0,0.0 -3353,catchment_outflow,0.037074941050861454,2010-03-10,0.0,0.0,3.422975579059179e-06,0.0,0.0,0.0,0.0,0.0,8.843196962806452,0.0,0.0,0.0 -3354,reservoir_outflow,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3355,gw1_gw2,0.0,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3356,gw2_gw1,0.0207626837660996,2010-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3357,urban_drainage,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3358,percolation,0.07638706584188887,2010-03-11,0.0,0.0,6.62080032437505e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3359,runoff,0.004877602253732055,2010-03-11,0.0,0.0,4.169527317912527e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3360,storm_outflow,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3361,baseflow,0.031091461052716856,2010-03-11,0.0,0.0,2.9110822034702497e-06,0.0,0.0,0.0,0.0,0.0,9.397307011404749,0.0,0.0,0.0 -3362,catchment_outflow,0.03596906330644891,2010-03-11,0.0,0.0,3.3280349352615023e-06,0.0,0.0,0.0,0.0,0.0,8.929265661433812,0.0,0.0,0.0 -3363,reservoir_outflow,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3364,gw1_gw2,0.0,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3365,gw2_gw1,0.02062426587432551,2010-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3366,urban_drainage,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3367,percolation,0.0748593245250511,2010-03-12,0.0,0.0,6.48838431788755e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3368,runoff,0.003902081802985644,2010-03-12,0.0,0.0,3.3356218543300215e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3369,storm_outflow,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3370,baseflow,0.031200880711397698,2010-03-12,0.0,0.0,2.9200254587562935e-06,0.0,0.0,0.0,0.0,0.0,9.381636456341065,0.0,0.0,0.0 -3371,catchment_outflow,0.03510296251438334,2010-03-12,0.0,0.0,3.2535876441892955e-06,0.0,0.0,0.0,0.0,0.0,8.999706886594288,0.0,0.0,0.0 -3372,reservoir_outflow,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3373,gw1_gw2,0.0,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3374,gw2_gw1,0.0204867707684965,2010-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3375,urban_drainage,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3376,percolation,0.07336213803455008,2010-03-13,0.0,0.0,6.3586166315298e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3377,runoff,0.003121665442388515,2010-03-13,0.0,0.0,2.668497483464017e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3378,storm_outflow,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3379,baseflow,0.03130628385470558,2010-03-13,0.0,0.0,2.9286219366882276e-06,0.0,0.0,0.0,0.0,0.0,9.366422822059517,0.0,0.0,0.0 -3380,catchment_outflow,0.0344279492970941,2010-03-13,0.0,0.0,3.195471685034629e-06,0.0,0.0,0.0,0.0,0.0,9.05626796713541,0.0,0.0,0.0 -3381,reservoir_outflow,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3382,gw1_gw2,0.0,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3383,gw2_gw1,0.02035019229670656,2010-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3384,urban_drainage,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3385,percolation,0.07189489527385907,2010-03-14,0.0,0.0,6.231444298899204e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3386,runoff,0.0024973323539108122,2010-03-14,0.0,0.0,2.1347979867712138e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3387,storm_outflow,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3388,baseflow,0.03140775538325346,2010-03-14,0.0,0.0,2.9368789925937547e-06,0.0,0.0,0.0,0.0,0.0,9.351648692423591,0.0,0.0,0.0 -3389,catchment_outflow,0.033905087737164274,2010-03-14,0.0,0.0,3.150358791270876e-06,0.0,0.0,0.0,0.0,0.0,9.100786619756072,0.0,0.0,0.0 -3390,reservoir_outflow,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3391,gw1_gw2,0.0,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3392,gw2_gw1,0.02021452434806168,2010-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3393,urban_drainage,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3394,percolation,0.0704569973683819,2010-03-15,0.0,0.0,6.10681541292122e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3395,runoff,0.0019978658831286498,2010-03-15,0.0,0.0,1.707838389416971e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3396,storm_outflow,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3397,baseflow,0.03150537848821629,2010-03-15,0.0,0.0,2.944803833644574e-06,0.0,0.0,0.0,0.0,0.0,9.337297509410492,0.0,0.0,0.0 -3398,catchment_outflow,0.033503244371344935,2010-03-15,0.0,0.0,3.115587672586271e-06,0.0,0.0,0.0,0.0,0.0,9.135056536776629,0.0,0.0,0.0 -3399,reservoir_outflow,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3400,gw1_gw2,0.0,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3401,gw2_gw1,0.020079760852408236,2010-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3402,urban_drainage,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3403,percolation,0.06904785742101426,2010-03-16,0.0,0.0,5.984679104662794e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3404,runoff,0.0015982927065029198,2010-03-16,0.0,0.0,1.3662707115335769e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3405,storm_outflow,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3406,baseflow,0.03159923468554828,2010-03-16,0.0,0.0,2.9524035218221194e-06,0.0,0.0,0.0,0.0,0.0,9.32335352083551,0.0,0.0,0.0 -3407,catchment_outflow,0.0331975273920512,2010-03-16,0.0,0.0,3.089030592975477e-06,0.0,0.0,0.0,0.0,0.0,9.160742120792076,0.0,0.0,0.0 -3408,reservoir_outflow,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3409,gw1_gw2,0.0,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3410,gw2_gw1,0.019945895780058898,2010-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3411,urban_drainage,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3412,percolation,0.06766690027259398,2010-03-17,0.0,0.0,5.864985522569539e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3413,runoff,0.001278634165202336,2010-03-17,0.0,0.0,1.0930165692268616e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3414,storm_outflow,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3415,baseflow,0.031689403849515886,2010-03-17,0.0,0.0,2.9596849768239872e-06,0.0,0.0,0.0,0.0,0.0,9.309801731855403,0.0,0.0,0.0 -3416,catchment_outflow,0.032968038014718225,2010-03-17,0.0,0.0,3.0689866337466734e-06,0.0,0.0,0.0,0.0,0.0,9.179332659250854,0.0,0.0,0.0 -3417,reservoir_outflow,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3418,gw1_gw2,0.0,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3419,gw2_gw1,0.019812923141525298,2010-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3420,urban_drainage,0.0009999999999999983,2010-03-18,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0 -3421,percolation,0.0663135622671421,2010-03-18,0.0,0.0,5.747685812118148e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3422,runoff,0.0010229073321618687,2010-03-18,0.0,0.0,8.744132553814892e-08,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3423,storm_outflow,0.0009999999999999983,2010-03-18,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0 -3424,baseflow,0.03177596424555996,2010-03-18,0.0,0.0,2.9666549789122234e-06,0.0,0.0,0.0,0.0,0.0,9.296627859935871,0.0,0.0,0.0 -3425,catchment_outflow,0.03379887157772182,2010-03-18,0.0,0.0,2.1054096304450375e-05,0.0,0.0,0.0,0.0,0.0,9.16382800033901,0.0,0.0,0.0 -3426,reservoir_outflow,0.0004999999999999991,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3427,gw1_gw2,0.0,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3428,gw2_gw1,0.01968083698724854,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3429,urban_drainage,0.04,2010-03-19,0.0,0.0,5.063291139240505e-07,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0 -3430,percolation,0.06498729102179926,2010-03-19,0.0,0.0,5.632732095875785e-06,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3431,runoff,0.000818325865729495,2010-03-19,0.0,0.0,6.995306043051914e-08,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3432,storm_outflow,0.04,2010-03-19,0.0,0.0,5.063291139240505e-07,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0 -3433,baseflow,0.031858992562500556,2010-03-19,0.0,0.0,2.9733201717046327e-06,0.0,0.0,0.0,0.0,0.0,9.283818292997825,0.0,0.0,0.0 -3434,catchment_outflow,0.07267731842823005,2010-03-19,0.0,0.0,3.549602346059202e-06,0.0,0.0,0.0,0.0,0.0,8.803043129899883,0.0,0.0,0.0 -3435,reservoir_outflow,0.03950000000000001,2010-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3436,gw1_gw2,0.0,2010-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3437,gw2_gw1,0.019549631407333658,2010-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3438,urban_drainage,0.04,2010-03-20,0.0,0.0,1.148977604673807e-06,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 -3439,percolation,0.0649895810719755,2010-03-20,0.0,0.0,5.648383354083159e-06,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 -3440,runoff,0.009563327175719914,2010-03-20,0.0,0.0,4.836487820940491e-07,0.0,0.0,0.0,0.0,0.0,8.506784736105574,0.0,0.0,0.0 -3441,storm_outflow,0.04,2010-03-20,0.0,0.0,1.148977604673807e-06,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 -3442,baseflow,0.03194181903377424,2010-03-20,0.0,0.0,2.9800078296605787e-06,0.0,0.0,0.0,0.0,0.0,9.271298476219844,0.0,0.0,0.0 -3443,catchment_outflow,0.08150514620949414,2010-03-20,0.0,0.0,4.6126342164284345e-06,0.0,0.0,0.0,0.0,0.0,8.822347616089036,0.0,0.0,0.0 -3444,reservoir_outflow,0.0065,2010-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3445,gw1_gw2,0.0,2010-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3446,gw2_gw1,0.019419300531284735,2010-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3447,urban_drainage,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3448,percolation,0.063689789450536,2010-03-21,0.0,0.0,5.535415687001496e-06,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 -3449,runoff,0.003995824209032826,2010-03-21,0.0,0.0,3.869190256752393e-07,0.0,0.0,0.0,0.0,0.0,8.310457695012751,0.0,0.0,0.0 -3450,storm_outflow,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3451,baseflow,0.03202118895981614,2010-03-21,0.0,0.0,2.986396349303931e-06,0.0,0.0,0.0,0.0,0.0,9.259121722050157,0.0,0.0,0.0 -3452,catchment_outflow,0.03601701316884897,2010-03-21,0.0,0.0,3.3733153749791705e-06,0.0,0.0,0.0,0.0,0.0,9.153874386084132,0.0,0.0,0.0 -3453,reservoir_outflow,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3454,gw1_gw2,0.0,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3455,gw2_gw1,0.019289838527742555,2010-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3456,urban_drainage,0.005999999999999998,2010-03-22,0.0,0.0,2.3446932814021423e-06,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 -3457,percolation,0.06364812955356033,2010-03-22,0.0,0.0,5.5472898535300365e-06,0.0,0.0,0.0,0.0,0.0,6.86624136855303,0.0,0.0,0.0 -3458,runoff,0.011627062839045105,2010-03-22,0.0,0.0,7.181434881020896e-07,0.0,0.0,0.0,0.0,0.0,8.917040433109715,0.0,0.0,0.0 -3459,storm_outflow,0.005999999999999998,2010-03-22,0.0,0.0,2.3446932814021423e-06,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 -3460,baseflow,0.0321002563113005,2010-03-22,0.0,0.0,2.9927985830644965e-06,0.0,0.0,0.0,0.0,0.0,9.247260262341818,0.0,0.0,0.0 -3461,catchment_outflow,0.0497273191503456,2010-03-22,0.0,0.0,6.055635352568729e-06,0.0,0.0,0.0,0.0,0.0,9.165208963238095,0.0,0.0,0.0 -3462,reservoir_outflow,0.002999999999999999,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3463,gw1_gw2,0.0,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3464,gw2_gw1,0.019161239604224358,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3465,urban_drainage,0.014999999999999998,2010-03-23,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 -3466,percolation,0.06450984876123639,2010-03-23,0.0,0.0,5.64677505412596e-06,0.0,0.0,0.0,0.0,0.0,6.946555263769654,0.0,0.0,0.0 -3467,runoff,0.020448740776250543,2010-03-23,0.0,0.0,1.2759514493700836e-06,0.0,0.0,0.0,0.0,0.0,9.194124317177703,0.0,0.0,0.0 -3468,storm_outflow,0.014999999999999998,2010-03-23,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 -3469,baseflow,0.03218128029242534,2010-03-23,0.0,0.0,2.99943352424215e-06,0.0,0.0,0.0,0.0,0.0,9.235730412522804,0.0,0.0,0.0 -3470,catchment_outflow,0.06763002106867588,2010-03-23,0.0,0.0,5.275384973612233e-06,0.0,0.0,0.0,0.0,0.0,9.270674236528627,0.0,0.0,0.0 -3471,reservoir_outflow,0.0075,2010-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3472,gw1_gw2,0.0,2010-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3473,gw2_gw1,0.019033498006863072,2010-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3474,urban_drainage,0.04,2010-03-24,0.0,0.0,4.4444444444444454e-07,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 -3475,percolation,0.07165731431541995,2010-03-24,0.0,0.0,6.321374412495942e-06,0.0,0.0,0.0,0.0,0.0,7.246756798766779,0.0,0.0,0.0 -3476,runoff,0.06809827856257368,2010-03-24,0.0,0.0,3.645877357671075e-06,0.0,0.0,0.0,0.0,0.0,9.405991684624116,0.0,0.0,0.0 -3477,storm_outflow,0.04,2010-03-24,0.0,0.0,4.4444444444444454e-07,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 -3478,baseflow,0.03227997037748283,2010-03-24,0.0,0.0,3.007738376462784e-06,0.0,0.0,0.0,0.0,0.0,9.224692259006915,0.0,0.0,0.0 -3479,catchment_outflow,0.14037824894005652,2010-03-24,0.0,0.0,7.098060178578304e-06,0.0,0.0,0.0,0.0,0.0,9.375824157494247,0.0,0.0,0.0 -3480,reservoir_outflow,0.045,2010-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3481,gw1_gw2,0.0,2010-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3482,gw2_gw1,0.018906608020150453,2010-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3483,urban_drainage,0.04,2010-03-25,0.0,0.0,6.913580246913581e-07,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0 -3484,percolation,0.07720502770962177,2010-03-25,0.0,0.0,6.8317448228969566e-06,0.0,0.0,0.0,0.0,0.0,7.452259090315155,0.0,0.0,0.0 -3485,runoff,0.07855773286222835,2010-03-25,0.0,0.0,5.039361548306635e-06,0.0,0.0,0.0,0.0,0.0,9.43892167303136,0.0,0.0,0.0 -3486,storm_outflow,0.04,2010-03-25,0.0,0.0,6.913580246913581e-07,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0 -3487,baseflow,0.03239228302081318,2010-03-25,0.0,0.0,3.01729839257887e-06,0.0,0.0,0.0,0.0,0.0,9.214131043561373,0.0,0.0,0.0 -3488,catchment_outflow,0.15095001588304152,2010-03-25,0.0,0.0,8.748017965576863e-06,0.0,0.0,0.0,0.0,0.0,9.392252596624871,0.0,0.0,0.0 -3489,reservoir_outflow,0.02,2010-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3490,gw1_gw2,0.0,2010-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3491,gw2_gw1,0.018780563966682706,2010-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3492,urban_drainage,0.04,2010-03-26,0.0,0.0,1.3557800224466893e-06,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 -3493,percolation,0.07858512120397364,2010-03-26,0.0,0.0,6.961352241700918e-06,0.0,0.0,0.0,0.0,0.0,7.5292512834021394,0.0,0.0,0.0 -3494,runoff,0.06325843418540796,2010-03-26,0.0,0.0,4.91896362285164e-06,0.0,0.0,0.0,0.0,0.0,9.450463709775919,0.0,0.0,0.0 -3495,storm_outflow,0.04,2010-03-26,0.0,0.0,1.3557800224466893e-06,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 -3496,baseflow,0.03250776511627108,2010-03-26,0.0,0.0,3.0271585272016747e-06,0.0,0.0,0.0,0.0,0.0,9.203948362616323,0.0,0.0,0.0 -3497,catchment_outflow,0.13576619930167902,2010-03-26,0.0,0.0,9.301902172500003e-06,0.0,0.0,0.0,0.0,0.0,9.389632938416955,0.0,0.0,0.0 -3498,reservoir_outflow,0.0025,2010-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3499,gw1_gw2,0.0,2010-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3500,gw2_gw1,0.01865536020690506,2010-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3501,urban_drainage,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3502,percolation,0.07701341877989416,2010-03-27,0.0,0.0,6.822125196866899e-06,0.0,0.0,0.0,0.0,0.0,7.52925128340214,0.0,0.0,0.0 -3503,runoff,0.04359232714784714,2010-03-27,0.0,0.0,3.935170898281312e-06,0.0,0.0,0.0,0.0,0.0,9.452164546530089,0.0,0.0,0.0 -3504,storm_outflow,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3505,baseflow,0.03261902925043013,2010-03-27,0.0,0.0,3.0366459438758378e-06,0.0,0.0,0.0,0.0,0.0,9.194063477132701,0.0,0.0,0.0 -3506,catchment_outflow,0.07621135639827727,2010-03-27,0.0,0.0,6.97181684215715e-06,0.0,0.0,0.0,0.0,0.0,9.341695362800523,0.0,0.0,0.0 -3507,reservoir_outflow,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3508,gw1_gw2,0.0,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3509,gw2_gw1,0.018530991138859143,2010-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3510,urban_drainage,0.008,2010-03-28,0.0,0.0,2.508417508417508e-06,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 -3511,percolation,0.07850216830670914,2010-03-28,0.0,0.0,6.963585144071331e-06,0.0,0.0,0.0,0.0,0.0,7.605903911571309,0.0,0.0,0.0 -3512,runoff,0.054643646014228636,2010-03-28,0.0,0.0,4.074478222430955e-06,0.0,0.0,0.0,0.0,0.0,9.460322508457606,0.0,0.0,0.0 -3513,storm_outflow,0.008,2010-03-28,0.0,0.0,2.508417508417508e-06,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 -3514,baseflow,0.03273373709807083,2010-03-28,0.0,0.0,3.0464632918763266e-06,0.0,0.0,0.0,0.0,0.0,9.184541651902352,0.0,0.0,0.0 -3515,catchment_outflow,0.09537738311229947,2010-03-28,0.0,0.0,9.629359022724789e-06,0.0,0.0,0.0,0.0,0.0,9.363310250782986,0.0,0.0,0.0 -3516,reservoir_outflow,0.004,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3517,gw1_gw2,0.0,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3518,gw2_gw1,0.018407451197933435,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3519,urban_drainage,0.002999999999999999,2010-03-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 -3520,percolation,0.07935892977919175,2010-03-29,0.0,0.0,7.0467882924714275e-06,0.0,0.0,0.0,0.0,0.0,7.664221006374286,0.0,0.0,0.0 -3521,runoff,0.05181686457760202,2010-03-29,0.0,0.0,4.00116541554984e-06,0.0,0.0,0.0,0.0,0.0,9.467941673818121,0.0,0.0,0.0 -3522,storm_outflow,0.002999999999999999,2010-03-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 -3523,baseflow,0.03285030007977363,2010-03-29,0.0,0.0,3.0564641043778145e-06,0.0,0.0,0.0,0.0,0.0,9.175359770834499,0.0,0.0,0.0 -3524,catchment_outflow,0.08766716465737565,2010-03-29,0.0,0.0,8.057629519927654e-06,0.0,0.0,0.0,0.0,0.0,9.356959254306746,0.0,0.0,0.0 -3525,reservoir_outflow,0.0014999999999999996,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3526,gw1_gw2,0.0,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3527,gw2_gw1,0.018284734856613662,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3528,urban_drainage,0.03799999999999999,2010-03-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 -3529,percolation,0.08368521748989659,2010-03-30,0.0,0.0,7.436135946094395e-06,0.0,0.0,0.0,0.0,0.0,7.794515217553473,0.0,0.0,0.0 -3530,runoff,0.0751019668423255,2010-03-30,0.0,0.0,4.968543730681189e-06,0.0,0.0,0.0,0.0,0.0,9.470188260912154,0.0,0.0,0.0 -3531,storm_outflow,0.03799999999999999,2010-03-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 -3532,baseflow,0.03297738737329894,2010-03-30,0.0,0.0,3.0674132839821064e-06,0.0,0.0,0.0,0.0,0.0,9.166599504636558,0.0,0.0,0.0 -3533,catchment_outflow,0.14607935421562443,2010-03-30,0.0,0.0,9.035957014663294e-06,0.0,0.0,0.0,0.0,0.0,9.389898215850566,0.0,0.0,0.0 -3534,reservoir_outflow,0.018999999999999996,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3535,gw1_gw2,0.0,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3536,gw2_gw1,0.018162836624236435,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3537,urban_drainage,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3538,percolation,0.08201151314009866,2010-03-31,0.0,0.0,7.287413227172507e-06,0.0,0.0,0.0,0.0,0.0,7.794515217553472,0.0,0.0,0.0 -3539,runoff,0.046124028992496006,2010-03-31,0.0,0.0,3.974834984544951e-06,0.0,0.0,0.0,0.0,0.0,9.48365808731425,0.0,0.0,0.0 -3540,storm_outflow,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3541,baseflow,0.03309997268771594,2010-03-31,0.0,0.0,3.077963283840082e-06,0.0,0.0,0.0,0.0,0.0,9.1581005015104,0.0,0.0,0.0 -3542,catchment_outflow,0.07922400168021194,2010-03-31,0.0,0.0,7.052798268385033e-06,0.0,0.0,0.0,0.0,0.0,9.347639368619841,0.0,0.0,0.0 -3543,reservoir_outflow,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3544,gw1_gw2,0.0,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3545,gw2_gw1,0.01804175104674144,2010-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3546,urban_drainage,0.022,2010-04-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 -3547,percolation,0.08477443516048627,2010-04-01,0.0,0.0,7.535300969326054e-06,0.0,0.0,0.0,0.0,0.0,7.883244075867958,0.0,0.0,0.0 -3548,runoff,0.06491272725696522,2010-04-01,0.0,0.0,4.491988009959282e-06,0.0,0.0,0.0,0.0,0.0,9.47435628306906,0.0,0.0,0.0 -3549,storm_outflow,0.022,2010-04-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 -3550,baseflow,0.03322915884389787,2010-04-01,0.0,0.0,3.089106628053797e-06,0.0,0.0,0.0,0.0,0.0,9.149969447553973,0.0,0.0,0.0 -3551,catchment_outflow,0.1201418861008631,2010-04-01,0.0,0.0,9.581094638013079e-06,0.0,0.0,0.0,0.0,0.0,9.374290576129628,0.0,0.0,0.0 -3552,reservoir_outflow,0.011,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3553,gw1_gw2,0.0,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3554,gw2_gw1,0.017921472706429853,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3555,urban_drainage,0.018999999999999996,2010-04-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 -3556,percolation,0.08720410981062399,2010-04-02,0.0,0.0,7.749585284905053e-06,0.0,0.0,0.0,0.0,0.0,7.959711900583409,0.0,0.0,0.0 -3557,runoff,0.06779525798969797,2010-04-02,0.0,0.0,4.810224857852495e-06,0.0,0.0,0.0,0.0,0.0,9.476979962842474,0.0,0.0,0.0 -3558,storm_outflow,0.018999999999999996,2010-04-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 -3559,baseflow,0.033364096221314685,2010-04-02,0.0,0.0,3.1007578246959247e-06,0.0,0.0,0.0,0.0,0.0,9.142191974043193,0.0,0.0,0.0 -3560,catchment_outflow,0.12015935421101266,2010-04-02,0.0,0.0,8.91098268254842e-06,0.0,0.0,0.0,0.0,0.0,9.374107494184402,0.0,0.0,0.0 -3561,reservoir_outflow,0.009499999999999998,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3562,gw1_gw2,0.0,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3563,gw2_gw1,0.01780199622172063,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3564,urban_drainage,0.04,2010-04-03,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3565,percolation,0.09329046379873362,2010-04-03,0.0,0.0,8.266122179855687e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3566,runoff,0.09623346911719759,2010-04-03,0.0,0.0,6.0866085551111105e-06,0.0,0.0,0.0,0.0,0.0,9.47046065124151,0.0,0.0,0.0 -3567,storm_outflow,0.04,2010-04-03,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3568,baseflow,0.033513912140258235,2010-04-03,0.0,0.0,3.113671235583824e-06,0.0,0.0,0.0,0.0,0.0,9.134859717093654,0.0,0.0,0.0 -3569,catchment_outflow,0.1697473812574558,2010-04-03,0.0,0.0,9.941020531435676e-06,0.0,0.0,0.0,0.0,0.0,9.390122711829079,0.0,0.0,0.0 -3570,reservoir_outflow,0.027000000000000003,2010-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3571,gw1_gw2,0.0,2010-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3572,gw2_gw1,0.01768331624690891,2010-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3573,urban_drainage,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3574,percolation,0.09142465452275897,2010-04-04,0.0,0.0,8.100799736258572e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3575,runoff,0.05579782811853785,2010-04-04,0.0,0.0,4.869286844088887e-06,0.0,0.0,0.0,0.0,0.0,9.493098392121938,0.0,0.0,0.0 -3576,storm_outflow,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3577,baseflow,0.033658688996214485,2010-04-04,0.0,0.0,3.1261390568355106e-06,0.0,0.0,0.0,0.0,0.0,9.127754803106262,0.0,0.0,0.0 -3578,catchment_outflow,0.08945651711475233,2010-04-04,0.0,0.0,7.995425900924398e-06,0.0,0.0,0.0,0.0,0.0,9.355635112351441,0.0,0.0,0.0 -3579,reservoir_outflow,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3580,gw1_gw2,0.0,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3581,gw2_gw1,0.017565427471929598,2010-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3582,urban_drainage,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3583,percolation,0.0895961614323038,2010-04-05,0.0,0.0,7.9387837415334e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3584,runoff,0.04400528283863398,2010-04-05,0.0,0.0,3.89542947527111e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3585,storm_outflow,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3586,baseflow,0.03379853267730471,2010-04-05,0.0,0.0,3.138170668547256e-06,0.0,0.0,0.0,0.0,0.0,9.120867882359953,0.0,0.0,0.0 -3587,catchment_outflow,0.07780381551593869,2010-04-05,0.0,0.0,7.033600143818366e-06,0.0,0.0,0.0,0.0,0.0,9.332098101075228,0.0,0.0,0.0 -3588,reservoir_outflow,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3589,gw1_gw2,0.0,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3590,gw2_gw1,0.01744832462211665,2010-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3591,urban_drainage,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3592,percolation,0.08780423820365771,2010-04-06,0.0,0.0,7.780008066702734e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3593,runoff,0.03657240274948664,2010-04-06,0.0,0.0,3.1163435802168877e-06,0.0,0.0,0.0,0.0,0.0,9.490805719507193,0.0,0.0,0.0 -3594,storm_outflow,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3595,baseflow,0.0339335469411206,2010-04-06,0.0,0.0,3.1497752620426445e-06,0.0,0.0,0.0,0.0,0.0,9.114190103939347,0.0,0.0,0.0 -3596,catchment_outflow,0.07050594969060725,2010-04-06,0.0,0.0,6.266118842259532e-06,0.0,0.0,0.0,0.0,0.0,9.309545787179337,0.0,0.0,0.0 -3597,reservoir_outflow,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3598,gw1_gw2,0.0,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3599,gw2_gw1,0.017332002457968978,2010-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3600,urban_drainage,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3601,percolation,0.08604815343958455,2010-04-07,0.0,0.0,7.624407905368678e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3602,runoff,0.028482271453186558,2010-04-07,0.0,0.0,2.4930748641735107e-06,0.0,0.0,0.0,0.0,0.0,9.49155920801063,0.0,0.0,0.0 -3603,storm_outflow,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3604,baseflow,0.03406383345736676,2010-04-07,0.0,0.0,3.1609618436509593e-06,0.0,0.0,0.0,0.0,0.0,9.107713082867459,0.0,0.0,0.0 -3605,catchment_outflow,0.06254610491055332,2010-04-07,0.0,0.0,5.65403670782447e-06,0.0,0.0,0.0,0.0,0.0,9.282509092118817,0.0,0.0,0.0 -3606,reservoir_outflow,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3607,gw1_gw2,0.0,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3608,gw2_gw1,0.01721645577491593,2010-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3609,urban_drainage,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3610,percolation,0.08432719037079286,2010-04-08,0.0,0.0,7.471919747261305e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3611,runoff,0.022530704813380598,2010-04-08,0.0,0.0,1.9944598913388085e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3612,storm_outflow,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3613,baseflow,0.034189491849650325,2010-04-08,0.0,0.0,3.1717392384099846e-06,0.0,0.0,0.0,0.0,0.0,9.101428869805058,0.0,0.0,0.0 -3614,catchment_outflow,0.05672019666303092,2010-04-08,0.0,0.0,5.1661991297487935e-06,0.0,0.0,0.0,0.0,0.0,9.257501095613911,0.0,0.0,0.0 -3615,reservoir_outflow,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3616,gw1_gw2,0.0,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3617,gw2_gw1,0.017101679403083027,2010-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3618,urban_drainage,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3619,percolation,0.082640646563377,2010-04-09,0.0,0.0,7.322481352316079e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3620,runoff,0.01802456385070448,2010-04-09,0.0,0.0,1.595567913071047e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3621,storm_outflow,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3622,baseflow,0.034310619736434636,2010-04-09,0.0,0.0,3.18211609369475e-06,0.0,0.0,0.0,0.0,0.0,9.095329923085828,0.0,0.0,0.0 -3623,catchment_outflow,0.052335183587139116,2010-04-09,0.0,0.0,4.777684006765797e-06,0.0,0.0,0.0,0.0,0.0,9.23274968995834,0.0,0.0,0.0 -3624,reservoir_outflow,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3625,gw1_gw2,0.0,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3626,gw2_gw1,0.016987668207062434,2010-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3627,urban_drainage,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3628,percolation,0.08098783363210947,2010-04-10,0.0,0.0,7.176031725269757e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3629,runoff,0.014419651080563582,2010-04-10,0.0,0.0,1.2764543304568374e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3630,storm_outflow,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3631,baseflow,0.03442731277117383,2010-04-10,0.0,0.0,3.192100882773687e-06,0.0,0.0,0.0,0.0,0.0,9.08940908287991,0.0,0.0,0.0 -3632,catchment_outflow,0.04884696385173741,2010-04-10,0.0,0.0,4.468555213230524e-06,0.0,0.0,0.0,0.0,0.0,9.208943378804943,0.0,0.0,0.0 -3633,reservoir_outflow,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3634,gw1_gw2,0.0,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3635,gw2_gw1,0.016874417085682405,2010-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3636,urban_drainage,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3637,percolation,0.07936807695946728,2010-04-11,0.0,0.0,7.032511090764362e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3638,runoff,0.011535720864450868,2010-04-11,0.0,0.0,1.02116346436547e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3639,storm_outflow,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3640,baseflow,0.03453966468164456,2010-04-11,0.0,0.0,3.201701908293664e-06,0.0,0.0,0.0,0.0,0.0,9.083659547299238,0.0,0.0,0.0 -3641,catchment_outflow,0.04607538554609543,2010-04-11,0.0,0.0,4.222865372659134e-06,0.0,0.0,0.0,0.0,0.0,9.186478762528456,0.0,0.0,0.0 -3642,reservoir_outflow,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3643,gw1_gw2,0.0,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3644,gw2_gw1,0.016761920971777755,2010-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3645,urban_drainage,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3646,percolation,0.07778071542027792,2010-04-12,0.0,0.0,6.891860868949073e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3647,runoff,0.009228576691560695,2010-04-12,0.0,0.0,8.169307714923759e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3648,storm_outflow,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3649,baseflow,0.034647767308491145,2010-04-12,0.0,0.0,3.2109273056953025e-06,0.0,0.0,0.0,0.0,0.0,9.07807485027645,0.0,0.0,0.0 -3650,catchment_outflow,0.04387634400005184,2010-04-12,0.0,0.0,4.027858077187678e-06,0.0,0.0,0.0,0.0,0.0,9.165627422827981,0.0,0.0,0.0 -3651,reservoir_outflow,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3652,gw1_gw2,0.0,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3653,gw2_gw1,0.01665017483196607,2010-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3654,urban_drainage,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3655,percolation,0.07622510111187238,2010-04-13,0.0,0.0,6.754023651570093e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3656,runoff,0.007382861353248555,2010-04-13,0.0,0.0,6.535446171939007e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3657,storm_outflow,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3658,baseflow,0.03475171064299959,2010-04-13,0.0,0.0,3.21978504655999e-06,0.0,0.0,0.0,0.0,0.0,9.072648841065728,0.0,0.0,0.0 -3659,catchment_outflow,0.04213457199624814,2010-04-13,0.0,0.0,3.87332966375389e-06,0.0,0.0,0.0,0.0,0.0,9.146537070120715,0.0,0.0,0.0 -3660,reservoir_outflow,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3661,gw1_gw2,0.0,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3662,gw2_gw1,0.01653917366641977,2010-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3663,urban_drainage,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3664,percolation,0.07470059908963493,2010-04-14,0.0,0.0,6.618943178538691e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3665,runoff,0.005906289082598845,2010-04-14,0.0,0.0,5.228356937551205e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3666,storm_outflow,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3667,baseflow,0.03485158286411618,2010-04-14,0.0,0.0,3.2282829418899364e-06,0.0,0.0,0.0,0.0,0.0,9.067375665228457,0.0,0.0,0.0 -3668,catchment_outflow,0.04075787194671503,2010-04-14,0.0,0.0,3.751118635645057e-06,0.0,0.0,0.0,0.0,0.0,9.129247002122817,0.0,0.0,0.0 -3669,reservoir_outflow,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3670,gw1_gw2,0.0,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3671,gw2_gw1,0.0164289125086432,2010-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3672,urban_drainage,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3673,percolation,0.07320658710784224,2010-04-15,0.0,0.0,6.486564314967917e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3674,runoff,0.004725031266079075,2010-04-15,0.0,0.0,4.182685550040963e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3675,storm_outflow,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3676,baseflow,0.034947470374725495,2010-04-15,0.0,0.0,3.236428645322632e-06,0.0,0.0,0.0,0.0,0.0,9.062249746979719,0.0,0.0,0.0 -3677,catchment_outflow,0.03967250164080457,2010-04-15,0.0,0.0,3.6546972003267285e-06,0.0,0.0,0.0,0.0,0.0,9.113711471363208,0.0,0.0,0.0 -3678,reservoir_outflow,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3679,gw1_gw2,0.0,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3680,gw2_gw1,0.016319386425252526,2010-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3681,urban_drainage,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3682,percolation,0.0717424553656854,2010-04-16,0.0,0.0,6.356833028668559e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3683,runoff,0.0037800250128632606,2010-04-16,0.0,0.0,3.3461484400327717e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3684,storm_outflow,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3685,baseflow,0.03503945783720289,2010-04-16,0.0,0.0,3.2442296562809966e-06,0.0,0.0,0.0,0.0,0.0,9.057265772783351,0.0,0.0,0.0 -3686,catchment_outflow,0.03881948285006615,2010-04-16,0.0,0.0,3.578844500284274e-06,0.0,0.0,0.0,0.0,0.0,9.09982511932439,0.0,0.0,0.0 -3687,reservoir_outflow,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3688,gw1_gw2,0.0,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3689,gw2_gw1,0.01621059051575067,2010-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3690,urban_drainage,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3691,percolation,0.07030760625837168,2010-04-17,0.0,0.0,6.229696368095188e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3692,runoff,0.0030240200102906083,2010-04-17,0.0,0.0,2.6769187520262167e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3693,storm_outflow,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3694,baseflow,0.035127628208255816,2010-04-17,0.0,0.0,3.2516933230605317e-06,0.0,0.0,0.0,0.0,0.0,9.05241867609373,0.0,0.0,0.0 -3695,catchment_outflow,0.03815164821854643,2010-04-17,0.0,0.0,3.5193851982631532e-06,0.0,0.0,0.0,0.0,0.0,9.087446341694278,0.0,0.0,0.0 -3696,reservoir_outflow,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3697,gw1_gw2,0.0,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3698,gw2_gw1,0.01610251991231237,2010-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3699,urban_drainage,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3700,percolation,0.06890145413320424,2010-04-18,0.0,0.0,6.105102440733283e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3701,runoff,0.002419216008232487,2010-04-18,0.0,0.0,2.1415350016209734e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3702,storm_outflow,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3703,baseflow,0.03521206277306819,2010-04-18,0.0,0.0,3.2588268458547137e-06,0.0,0.0,0.0,0.0,0.0,9.04770362315182,0.0,0.0,0.0 -3704,catchment_outflow,0.037631278781300674,2010-04-18,0.0,0.0,3.472980346016811e-06,0.0,0.0,0.0,0.0,0.0,9.076416367105153,0.0,0.0,0.0 -3705,reservoir_outflow,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3706,gw1_gw2,0.0,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3707,gw2_gw1,0.01599516977956359,2010-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3708,urban_drainage,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3709,percolation,0.06752342505054015,2010-04-19,0.0,0.0,5.983000391918618e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3710,runoff,0.0019353728065859895,2010-04-19,0.0,0.0,1.7132280012967788e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3711,storm_outflow,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3712,baseflow,0.035292841178761865,2010-04-19,0.0,0.0,3.2656372797198738e-06,0.0,0.0,0.0,0.0,0.0,9.043115999751494,0.0,0.0,0.0 -3713,catchment_outflow,0.037228213985347855,2010-04-19,0.0,0.0,3.4369600798495516e-06,0.0,0.0,0.0,0.0,0.0,9.066573385586514,0.0,0.0,0.0 -3714,reservoir_outflow,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3715,gw1_gw2,0.0,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3716,gw2_gw1,0.015888535314366868,2010-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3717,urban_drainage,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3718,percolation,0.06617295654952936,2010-04-20,0.0,0.0,5.8633403840802456e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3719,runoff,0.0015482982452687916,2010-04-20,0.0,0.0,1.370582401037423e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3720,storm_outflow,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3721,baseflow,0.035370041467188786,2010-04-20,0.0,0.0,3.272131537480775e-06,0.0,0.0,0.0,0.0,0.0,9.038651398899635,0.0,0.0,0.0 -3722,catchment_outflow,0.03691833971245758,2010-04-20,0.0,0.0,3.409189777584517e-06,0.0,0.0,0.0,0.0,0.0,9.057762057793894,0.0,0.0,0.0 -3723,reservoir_outflow,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3724,gw1_gw2,0.0,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3725,gw2_gw1,0.015782611745604136,2010-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3726,urban_drainage,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3727,percolation,0.06484949741853878,2010-04-21,0.0,0.0,5.7460735763986414e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3728,runoff,0.001238638596215033,2010-04-21,0.0,0.0,1.0964659208299381e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3729,storm_outflow,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3730,baseflow,0.03544374010706716,2010-04-21,0.0,0.0,3.27831639257807e-06,0.0,0.0,0.0,0.0,0.0,9.034305609300384,0.0,0.0,0.0 -3731,catchment_outflow,0.0366823787032822,2010-04-21,0.0,0.0,3.387962984661064e-06,0.0,0.0,0.0,0.0,0.0,9.049839223003232,0.0,0.0,0.0 -3732,reservoir_outflow,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3733,gw1_gw2,0.0,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3734,gw2_gw1,0.01567739433396689,2010-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3735,urban_drainage,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3736,percolation,0.063552507470168,2010-04-22,0.0,0.0,5.631152104870668e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3737,runoff,0.0009909108769720267,2010-04-22,0.0,0.0,8.771727366639509e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3738,storm_outflow,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3739,baseflow,0.03551401202547491,2010-04-22,0.0,0.0,3.2841984818588013e-06,0.0,0.0,0.0,0.0,0.0,9.030074604600019,0.0,0.0,0.0 -3740,catchment_outflow,0.03650492290244694,2010-04-22,0.0,0.0,3.3719157555251964e-06,0.0,0.0,0.0,0.0,0.0,9.042676753361986,0.0,0.0,0.0 -3741,reservoir_outflow,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3742,gw1_gw2,0.0,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3743,gw2_gw1,0.015572878371740375,2010-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3744,urban_drainage,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3745,percolation,0.06228145732076462,2010-04-23,0.0,0.0,5.518529062773254e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3746,runoff,0.0007927287015776213,2010-04-23,0.0,0.0,7.017381893311606e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3747,storm_outflow,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3748,baseflow,0.035580930638713135,2010-04-23,0.0,0.0,3.2897843083110878e-06,0.0,0.0,0.0,0.0,0.0,9.025954533334478,0.0,0.0,0.0 -3749,catchment_outflow,0.03637365934029076,2010-04-23,0.0,0.0,3.3599581272442037e-06,0.0,0.0,0.0,0.0,0.0,9.036162427746193,0.0,0.0,0.0 -3750,reservoir_outflow,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3751,gw1_gw2,0.0,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3752,gw2_gw1,0.01546905918259558,2010-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3753,urban_drainage,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3754,percolation,0.061035828174349334,2010-04-24,0.0,0.0,5.40815848151779e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3755,runoff,0.0006341829612620972,2010-04-24,0.0,0.0,5.6139055146492864e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3756,storm_outflow,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3757,baseflow,0.03564456788255223,2010-04-24,0.0,0.0,3.2950802437441045e-06,0.0,0.0,0.0,0.0,0.0,9.02194170952654,0.0,0.0,0.0 -3758,catchment_outflow,0.03627875084381432,2010-04-24,0.0,0.0,3.3512192988905972e-06,0.0,0.0,0.0,0.0,0.0,9.030199536398973,0.0,0.0,0.0 -3759,reservoir_outflow,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3760,gw1_gw2,0.0,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3761,gw2_gw1,0.015365932121378024,2010-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3762,urban_drainage,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3763,percolation,0.05981511161086234,2010-04-25,0.0,0.0,5.2999953118874336e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3764,runoff,0.0005073463690096777,2010-04-25,0.0,0.0,4.4911244117194283e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3765,storm_outflow,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3766,baseflow,0.035704994241873005,2010-04-25,0.0,0.0,3.3000925314144626e-06,0.0,0.0,0.0,0.0,0.0,9.018032603884206,0.0,0.0,0.0 -3767,catchment_outflow,0.03621234061088268,2010-04-25,0.0,0.0,3.3450037755316567e-06,0.0,0.0,0.0,0.0,0.0,9.024705748490996,0.0,0.0,0.0 -3768,reservoir_outflow,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3769,gw1_gw2,0.0,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3770,gw2_gw1,0.015263492573902228,2010-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3771,urban_drainage,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3772,percolation,0.0586188093786451,2010-04-26,0.0,0.0,5.193995405649686e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3773,runoff,0.0004058770952077422,2010-04-26,0.0,0.0,3.592899529375543e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3774,storm_outflow,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3775,baseflow,0.03576227877971493,2010-04-26,0.0,0.0,3.304827288600051e-06,0.0,0.0,0.0,0.0,0.0,9.014223835555876,0.0,0.0,0.0 -3776,catchment_outflow,0.036168155874922676,2010-04-26,0.0,0.0,3.3407562838938063e-06,0.0,0.0,0.0,0.0,0.0,9.019611614818295,0.0,0.0,0.0 -3777,reservoir_outflow,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3778,gw1_gw2,0.0,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3779,gw2_gw1,0.015161735956742995,2010-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3780,urban_drainage,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3781,percolation,0.0574464331910722,2010-04-27,0.0,0.0,5.090115497536692e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3782,runoff,0.0003247016761661938,2010-04-27,0.0,0.0,2.8743196235004342e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3783,storm_outflow,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3784,baseflow,0.03581648916574333,2010-04-27,0.0,0.0,3.3092905091223925e-06,0.0,0.0,0.0,0.0,0.0,9.010512164401666,0.0,0.0,0.0 -3785,catchment_outflow,0.036141190841909525,2010-04-27,0.0,0.0,3.338033705357397e-06,0.0,0.0,0.0,0.0,0.0,9.014858950280376,0.0,0.0,0.0 -3786,reservoir_outflow,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3787,gw1_gw2,0.0,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3788,gw2_gw1,0.01506065771703149,2010-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3789,urban_drainage,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3790,percolation,0.05629750452725075,2010-04-28,0.0,0.0,4.988313187585958e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3791,runoff,0.000259761340932955,2010-04-28,0.0,0.0,2.299455698800347e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3792,storm_outflow,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3793,baseflow,0.035867691704147095,2010-04-28,0.0,0.0,3.313488065818551e-06,0.0,0.0,0.0,0.0,0.0,9.006894483743562,0.0,0.0,0.0 -3794,catchment_outflow,0.03612745304508005,2010-04-28,0.0,0.0,3.3364826228065545e-06,0.0,0.0,0.0,0.0,0.0,9.010399246390792,0.0,0.0,0.0 -3795,reservoir_outflow,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3796,gw1_gw2,0.0,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3797,gw2_gw1,0.014960253332251483,2010-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3798,urban_drainage,0.021000000000000005,2010-04-29,0.0,0.0,2.6259259259259267e-05,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 -3799,percolation,0.05517155443670574,2010-04-29,0.0,0.0,4.88854692383424e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3800,runoff,0.000207809072746364,2010-04-29,0.0,0.0,1.8395645590402777e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3801,storm_outflow,0.021000000000000005,2010-04-29,0.0,0.0,2.6259259259259267e-05,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 -3802,baseflow,0.03591595136097849,2010-04-29,0.0,0.0,3.3174257129635913e-06,0.0,0.0,0.0,0.0,0.0,9.003367813560114,0.0,0.0,0.0 -3803,catchment_outflow,0.05712376043372486,2010-04-29,0.0,0.0,2.959508061781326e-05,0.0,0.0,0.0,0.0,0.0,10.436332006676317,0.0,0.0,0.0 -3804,reservoir_outflow,0.010500000000000002,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3805,gw1_gw2,0.0,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3806,gw2_gw1,0.014860518310035965,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3807,urban_drainage,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3808,percolation,0.054068123347971626,2010-04-30,0.0,0.0,4.790775985357555e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3809,runoff,0.00016624725819709119,2010-04-30,0.0,0.0,1.471651647232222e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3810,storm_outflow,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3811,baseflow,0.035961331790945975,2010-04-30,0.0,0.0,3.3211090886445758e-06,0.0,0.0,0.0,0.0,0.0,8.999929294094207,0.0,0.0,0.0 -3812,catchment_outflow,0.036127579049143065,2010-04-30,0.0,0.0,3.335825605116898e-06,0.0,0.0,0.0,0.0,0.0,9.00220438588135,0.0,0.0,0.0 -3813,reservoir_outflow,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3814,gw1_gw2,0.0,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3815,gw2_gw1,0.014761448187969074,2010-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3816,urban_drainage,0.04,2010-05-01,0.0,0.0,4.4692737430167597e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3817,percolation,0.052986760881012195,2010-05-01,0.0,0.0,4.6949604656504036e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3818,runoff,0.00013299780655767296,2010-05-01,0.0,0.0,1.1773213177857777e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3819,storm_outflow,0.04,2010-05-01,0.0,0.0,4.4692737430167597e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3820,baseflow,0.03600389536367114,2010-05-01,0.0,0.0,3.3245437170870904e-06,0.0,0.0,0.0,0.0,0.0,8.99657617984492,0.0,0.0,0.0 -3821,catchment_outflow,0.07613689317022881,2010-05-01,0.0,0.0,3.783244304566624e-06,0.0,0.0,0.0,0.0,0.0,10.532197536870138,0.0,0.0,0.0 -3822,reservoir_outflow,0.0895,2010-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3823,gw1_gw2,0.0,2010-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3824,gw2_gw1,0.014663038533382711,2010-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3825,urban_drainage,0.04,2010-05-02,0.0,0.0,8.370729920322374e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3826,percolation,0.05192702566339194,2010-05-02,0.0,0.0,4.601061256337395e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3827,runoff,0.0013058363283198484,2010-05-02,0.0,0.0,9.418570542286223e-09,0.0,0.0,0.0,0.0,0.0,11.27097175248896,0.0,0.0,0.0 -3828,storm_outflow,0.04,2010-05-02,0.0,0.0,8.370729920322374e-07,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3829,baseflow,0.03604370318942045,2010-05-02,0.0,0.0,3.3277350109352164e-06,0.0,0.0,0.0,0.0,0.0,8.993305833916851,0.0,0.0,0.0 -3830,catchment_outflow,0.07734953951774029,2010-05-02,0.0,0.0,4.17422657350974e-06,0.0,0.0,0.0,0.0,0.0,10.544140032691379,0.0,0.0,0.0 -3831,reservoir_outflow,0.0,2010-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3832,gw1_gw2,0.0,2010-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3833,gw2_gw1,0.014565284943159895,2010-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3834,urban_drainage,0.04,2010-05-03,0.0,0.0,1.6713843899483612e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3835,percolation,0.05088848515012411,2010-05-03,0.0,0.0,4.509040031210648e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3836,runoff,0.0012303364422077457,2010-05-03,0.0,0.0,7.534856433828974e-09,0.0,0.0,0.0,0.0,0.0,10.839319400350558,0.0,0.0,0.0 -3837,storm_outflow,0.04,2010-05-03,0.0,0.0,1.6713843899483612e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3838,baseflow,0.0360808151443222,2010-05-03,0.0,0.0,3.3306882734859054e-06,0.0,0.0,0.0,0.0,0.0,8.990115722702264,0.0,0.0,0.0 -3839,catchment_outflow,0.07731115158652996,2010-05-03,0.0,0.0,5.009607519868095e-06,0.0,0.0,0.0,0.0,0.0,10.534327610840599,0.0,0.0,0.0 -3840,reservoir_outflow,0.0,2010-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3841,gw1_gw2,0.0,2010-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3842,gw2_gw1,0.01446818304353883,2010-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3843,urban_drainage,0.004999999999999987,2010-05-04,0.0,0.0,2.044615243717725e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3844,percolation,0.04987071544712163,2010-05-04,0.0,0.0,4.4188592305864355e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3845,runoff,6.809487695752876e-05,2010-05-04,0.0,0.0,6.027885147063184e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516737,0.0,0.0,0.0 -3846,storm_outflow,0.004999999999999987,2010-05-04,0.0,0.0,2.044615243717725e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3847,baseflow,0.0361152898950792,2010-05-04,0.0,0.0,3.333408700878656e-06,0.0,0.0,0.0,0.0,0.0,8.987003410873452,0.0,0.0,0.0 -3848,catchment_outflow,0.041183384772036716,2010-05-04,0.0,0.0,5.384051829743444e-06,0.0,0.0,0.0,0.0,0.0,9.343671892468194,0.0,0.0,0.0 -3849,reservoir_outflow,0.0,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3850,gw1_gw2,0.0,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3851,gw2_gw1,0.014371728489915192,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3852,urban_drainage,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3853,percolation,0.04887330113817919,2010-05-05,0.0,0.0,4.3304820459747065e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3854,runoff,0.0013573655347520481,2010-05-05,0.0,0.0,4.822308117650544e-09,0.0,0.0,0.0,0.0,0.0,10.507632404454329,0.0,0.0,0.0 -3855,storm_outflow,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3856,baseflow,0.036147184923186956,2010-05-05,0.0,0.0,3.3359013842413964e-06,0.0,0.0,0.0,0.0,0.0,8.983966556664399,0.0,0.0,0.0 -3857,catchment_outflow,0.037504550457939004,2010-05-05,0.0,0.0,3.340723692359047e-06,0.0,0.0,0.0,0.0,0.0,9.039111105339586,0.0,0.0,0.0 -3858,reservoir_outflow,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3859,gw1_gw2,0.0,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3860,gw2_gw1,0.014275916966649227,2010-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3861,urban_drainage,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3862,percolation,0.0478958351154156,2010-05-06,0.0,0.0,4.243872405055211e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3863,runoff,4.358072125281827e-05,2010-05-06,0.0,0.0,3.857846494120436e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3864,storm_outflow,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3865,baseflow,0.03617655654866753,2010-05-06,0.0,0.0,3.338171311793431e-06,0.0,0.0,0.0,0.0,0.0,8.98100290742237,0.0,0.0,0.0 -3866,catchment_outflow,0.03622013726992034,2010-05-06,0.0,0.0,3.342029158287551e-06,0.0,0.0,0.0,0.0,0.0,8.981620557587089,0.0,0.0,0.0 -3867,reservoir_outflow,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3868,gw1_gw2,0.0,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3869,gw2_gw1,0.01418074418687141,2010-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3870,urban_drainage,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3871,percolation,0.046937918413107294,2010-05-07,0.0,0.0,4.158994956954108e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3872,runoff,0.002556330084753776,2010-05-07,0.0,0.0,3.0862771952963493e-09,0.0,0.0,0.0,0.0,0.0,10.732874576091987,0.0,0.0,0.0 -3873,storm_outflow,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3874,baseflow,0.036203459953328625,2010-05-07,0.0,0.0,3.3402233709063325e-06,0.0,0.0,0.0,0.0,0.0,8.978110295411641,0.0,0.0,0.0 -3875,catchment_outflow,0.0387597900380824,2010-05-07,0.0,0.0,3.343309648101629e-06,0.0,0.0,0.0,0.0,0.0,9.093842519914073,0.0,0.0,0.0 -3876,reservoir_outflow,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3877,gw1_gw2,0.0,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3878,gw2_gw1,0.014086205892292016,2010-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3879,urban_drainage,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3880,percolation,0.04599916004484515,2010-05-08,0.0,0.0,4.075815057815026e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3881,runoff,0.0017835092209372875,2010-05-08,0.0,0.0,2.469021756237079e-09,0.0,0.0,0.0,0.0,0.0,10.828799237594923,0.0,0.0,0.0 -3882,storm_outflow,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3883,baseflow,0.03622794920355741,2010-05-08,0.0,0.0,3.3420623501236034e-06,0.0,0.0,0.0,0.0,0.0,8.975286633852791,0.0,0.0,0.0 -3884,catchment_outflow,0.038011458424494694,2010-05-08,0.0,0.0,3.3445313718798405e-06,0.0,0.0,0.0,0.0,0.0,9.062254010452248,0.0,0.0,0.0 -3885,reservoir_outflow,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3886,gw1_gw2,0.0,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3887,gw2_gw1,0.01399229785301035,2010-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3888,urban_drainage,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3889,percolation,0.04507917684394825,2010-05-09,0.0,0.0,3.994298756658726e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3890,runoff,2.2313329281442958e-05,2010-05-09,0.0,0.0,1.975217404989663e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3891,storm_outflow,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3892,baseflow,0.036250077272658394,2010-05-09,0.0,0.0,3.3436929411399417e-06,0.0,0.0,0.0,0.0,0.0,8.972529913182292,0.0,0.0,0.0 -3893,catchment_outflow,0.03627239060193984,2010-05-09,0.0,0.0,3.3456681585449314e-06,0.0,0.0,0.0,0.0,0.0,8.972850906750065,0.0,0.0,0.0 -3894,reservoir_outflow,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3895,gw1_gw2,0.0,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3896,gw2_gw1,0.013899015867323429,2010-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3897,urban_drainage,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3898,percolation,0.04417759330706929,2010-05-10,0.0,0.0,3.914412781525551e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3899,runoff,1.7850663425154365e-05,2010-05-10,0.0,0.0,1.5801739239917305e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3900,storm_outflow,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3901,baseflow,0.03626989606274442,2010-05-10,0.0,0.0,3.345119740740906e-06,0.0,0.0,0.0,0.0,0.0,8.969838197518213,0.0,0.0,0.0 -3902,catchment_outflow,0.03628774672616957,2010-05-10,0.0,0.0,3.346699914664898e-06,0.0,0.0,0.0,0.0,0.0,8.970096207811267,0.0,0.0,0.0 -3903,reservoir_outflow,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3904,gw1_gw2,0.0,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3905,gw2_gw1,0.013806355761541413,2010-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3906,urban_drainage,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3907,percolation,0.043294041440927904,2010-05-11,0.0,0.0,3.83612452589504e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3908,runoff,1.428053074012349e-05,2010-05-11,0.0,0.0,1.2641391391933842e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3909,storm_outflow,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3910,baseflow,0.03628745642618988,2010-05-11,0.0,0.0,3.346347252703792e-06,0.0,0.0,0.0,0.0,0.0,8.967209621318899,0.0,0.0,0.0 -3911,catchment_outflow,0.03630173695693,2010-05-11,0.0,0.0,3.3476113918429853e-06,0.0,0.0,0.0,0.0,0.0,8.967416984046634,0.0,0.0,0.0 -3912,reservoir_outflow,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3913,gw1_gw2,0.0,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3914,gw2_gw1,0.01371431338979825,2010-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3915,urban_drainage,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3916,percolation,0.04242816061210935,2010-05-12,0.0,0.0,3.7594020353771395e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3917,runoff,4.790682940781032e-05,2010-05-12,0.0,0.0,1.0113113113547073e-09,0.0,0.0,0.0,0.0,0.0,10.921075020280563,0.0,0.0,0.0 -3918,storm_outflow,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3919,baseflow,0.03630280818665468,2010-05-12,0.0,0.0,3.347379889660475e-06,0.0,0.0,0.0,0.0,0.0,8.964642386222444,0.0,0.0,0.0 -3920,catchment_outflow,0.03635071501606249,2010-05-12,0.0,0.0,3.3483912009718295e-06,0.0,0.0,0.0,0.0,0.0,8.96722078074388,0.0,0.0,0.0 -3921,reservoir_outflow,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3922,gw1_gw2,0.0,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3923,gw2_gw1,0.013622884633866052,2010-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3924,urban_drainage,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3925,percolation,0.041579597399867156,2010-05-13,0.0,0.0,3.6842139946695964e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3926,runoff,9.139539673679035e-06,2010-05-13,0.0,0.0,8.09049049083766e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3927,storm_outflow,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3928,baseflow,0.03631600015968771,2010-05-13,0.0,0.0,3.3482219749229977e-06,0.0,0.0,0.0,0.0,0.0,8.962134758055619,0.0,0.0,0.0 -3929,catchment_outflow,0.03632513969936139,2010-05-13,0.0,0.0,3.3490310239720813e-06,0.0,0.0,0.0,0.0,0.0,8.962268661554969,0.0,0.0,0.0 -3930,reservoir_outflow,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3931,gw1_gw2,0.0,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3932,gw2_gw1,0.013532065402973359,2010-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3933,urban_drainage,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3934,percolation,0.040748005451869816,2010-05-14,0.0,0.0,3.6105297147762045e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3935,runoff,7.311631738943228e-06,2010-05-14,0.0,0.0,6.472392392670129e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3936,storm_outflow,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3937,baseflow,0.036327080172918164,2010-05-14,0.0,0.0,3.3488777442726307e-06,0.0,0.0,0.0,0.0,0.0,8.959685064001773,0.0,0.0,0.0 -3938,catchment_outflow,0.036334391804657105,2010-05-14,0.0,0.0,3.3495249835118975e-06,0.0,0.0,0.0,0.0,0.0,8.959792652479873,0.0,0.0,0.0 -3939,reservoir_outflow,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3940,gw1_gw2,0.0,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3941,gw2_gw1,0.013441851633620418,2010-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3942,urban_drainage,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3943,percolation,0.039933045342832416,2010-05-15,0.0,0.0,3.53831912048068e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3944,runoff,5.849305391154582e-06,2010-05-15,0.0,0.0,5.177913914136102e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3945,storm_outflow,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3946,baseflow,0.03633609508584294,2010-05-15,0.0,0.0,3.34935134771315e-06,0.0,0.0,0.0,0.0,0.0,8.95729168991789,0.0,0.0,0.0 -3947,catchment_outflow,0.036341944391234095,2010-05-15,0.0,0.0,3.3498691391045635e-06,0.0,0.0,0.0,0.0,0.0,8.957378128031262,0.0,0.0,0.0 -3948,reservoir_outflow,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3949,gw1_gw2,0.0,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3950,gw2_gw1,0.013352239289396195,2010-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3951,urban_drainage,0.012,2010-05-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3952,percolation,0.03913438443597577,2010-05-16,0.0,0.0,3.4675527380710673e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3953,runoff,4.679444312923666e-06,2010-05-16,0.0,0.0,4.1423311313088826e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3954,storm_outflow,0.012,2010-05-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3955,baseflow,0.03634309080921828,2010-05-16,0.0,0.0,3.3496468511890454e-06,0.0,0.0,0.0,0.0,0.0,8.954953077791734,0.0,0.0,0.0 -3956,catchment_outflow,0.0483477702535312,2010-05-16,0.0,0.0,1.5350061084302178e-05,0.0,0.0,0.0,0.0,0.0,9.770182309388266,0.0,0.0,0.0 -3957,reservoir_outflow,0.006,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3958,gw1_gw2,0.0,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3959,gw2_gw1,0.013263224360800054,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3960,urban_drainage,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3961,percolation,0.038351696747256254,2010-05-17,0.0,0.0,3.398201683309646e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3962,runoff,3.7435554503389326e-06,2010-05-17,0.0,0.0,3.3138649050471057e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3963,storm_outflow,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3964,baseflow,0.03634811232406337,2010-05-17,0.0,0.0,3.349768238269347e-06,0.0,0.0,0.0,0.0,0.0,8.952667723330606,0.0,0.0,0.0 -3965,catchment_outflow,0.03635185587951371,2010-05-17,0.0,0.0,3.350099624759852e-06,0.0,0.0,0.0,0.0,0.0,8.95272350482116,0.0,0.0,0.0 -3966,reservoir_outflow,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3967,gw1_gw2,0.0,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3968,gw2_gw1,0.013174802865061432,2010-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3969,urban_drainage,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3970,percolation,0.037584662812311126,2010-05-18,0.0,0.0,3.3302376496434524e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3971,runoff,2.994844360271146e-06,2010-05-18,0.0,0.0,2.651091924037685e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3972,storm_outflow,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3973,baseflow,0.03635120370028399,2010-05-18,0.0,0.0,3.349719411797782e-06,0.0,0.0,0.0,0.0,0.0,8.950434173673829,0.0,0.0,0.0 -3974,catchment_outflow,0.03635419854464426,2010-05-18,0.0,0.0,3.3499845209901856e-06,0.0,0.0,0.0,0.0,0.0,8.950478979989555,0.0,0.0,0.0 -3975,reservoir_outflow,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3976,gw1_gw2,0.0,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3977,gw2_gw1,0.013086970845960978,2010-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3978,urban_drainage,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3979,percolation,0.03683296955606491,2010-05-19,0.0,0.0,3.2636328966505834e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3980,runoff,2.395875488216917e-06,2010-05-19,0.0,0.0,2.1208735392301482e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3981,storm_outflow,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3982,baseflow,0.03635240811492344,2010-05-19,0.0,0.0,3.3495041955099138e-06,0.0,0.0,0.0,0.0,0.0,8.948251025221598,0.0,0.0,0.0 -3983,catchment_outflow,0.03635480399041166,2010-05-19,0.0,0.0,3.3497162828638367e-06,0.0,0.0,0.0,0.0,0.0,8.948287013552342,0.0,0.0,0.0 -3984,reservoir_outflow,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3985,gw1_gw2,0.0,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3986,gw2_gw1,0.012999724373654509,2010-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3987,urban_drainage,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3988,percolation,0.03609631016494361,2010-05-20,0.0,0.0,3.198360238717572e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3989,runoff,1.9167003905735334e-06,2010-05-20,0.0,0.0,1.696698831384118e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3990,storm_outflow,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3991,baseflow,0.036351767870048485,2010-05-20,0.0,0.0,3.3491263356179323e-06,0.0,0.0,0.0,0.0,0.0,8.946116921573354,0.0,0.0,0.0 -3992,catchment_outflow,0.03635368457043906,2010-05-20,0.0,0.0,3.349296005501071e-06,0.0,0.0,0.0,0.0,0.0,8.946145825642304,0.0,0.0,0.0 -3993,reservoir_outflow,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3994,gw1_gw2,0.0,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3995,gw2_gw1,0.012913059544496975,2010-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3996,urban_drainage,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3997,percolation,0.03537438396164474,2010-05-21,0.0,0.0,3.1343930339432208e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3998,runoff,1.5333603124588268e-06,2010-05-21,0.0,0.0,1.3573590651072948e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3999,storm_outflow,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4000,baseflow,0.03634932441027748,2010-05-21,0.0,0.0,3.3485895023637463e-06,0.0,0.0,0.0,0.0,0.0,8.944030551569268,0.0,0.0,0.0 -4001,catchment_outflow,0.03635085777058994,2010-05-21,0.0,0.0,3.348725238270257e-06,0.0,0.0,0.0,0.0,0.0,8.944053764630338,0.0,0.0,0.0 -4002,reservoir_outflow,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4003,gw1_gw2,0.0,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4004,gw2_gw1,0.012826972480867305,2010-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4005,urban_drainage,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4006,percolation,0.03466689628241184,2010-05-22,0.0,0.0,3.0717051732643566e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4007,runoff,1.2266882499670614e-06,2010-05-22,0.0,0.0,1.0858872520858359e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -4008,storm_outflow,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4009,baseflow,0.036345118339957815,2010-05-22,0.0,0.0,3.347897291540997e-06,0.0,0.0,0.0,0.0,0.0,8.941990647428879,0.0,0.0,0.0 -4010,catchment_outflow,0.03634634502820778,2010-05-22,0.0,0.0,3.3480058802662056e-06,0.0,0.0,0.0,0.0,0.0,8.942009289030144,0.0,0.0,0.0 -4011,reservoir_outflow,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4012,gw1_gw2,0.0,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4013,gw2_gw1,0.012741459330994687,2010-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4014,urban_drainage,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4015,percolation,0.033973558356763606,2010-05-23,0.0,0.0,3.01027106979907e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4016,runoff,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4017,storm_outflow,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4018,baseflow,0.03633918943999983,2010-05-23,0.0,0.0,3.3470532259866423e-06,0.0,0.0,0.0,0.0,0.0,8.939995982981266,0.0,0.0,0.0 -4019,catchment_outflow,0.03633918943999983,2010-05-23,0.0,0.0,3.3470532259866423e-06,0.0,0.0,0.0,0.0,0.0,8.939995982981266,0.0,0.0,0.0 -4020,reservoir_outflow,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4021,gw1_gw2,0.0,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4022,gw2_gw1,0.012656516268788033,2010-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4023,urban_drainage,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4024,percolation,0.033294087189628334,2010-05-24,0.0,0.0,2.950065648403088e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4025,runoff,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4026,storm_outflow,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4027,baseflow,0.0363315766843739,2010-05-24,0.0,0.0,3.346060757042683e-06,0.0,0.0,0.0,0.0,0.0,8.938045371981586,0.0,0.0,0.0 -4028,catchment_outflow,0.0363315766843739,2010-05-24,0.0,0.0,3.346060757042683e-06,0.0,0.0,0.0,0.0,0.0,8.938045371981586,0.0,0.0,0.0 -4029,reservoir_outflow,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4030,gw1_gw2,0.0,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4031,gw2_gw1,0.012572139493662782,2010-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4032,urban_drainage,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4033,percolation,0.032628205445835765,2010-05-25,0.0,0.0,2.891064335435026e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4034,runoff,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4035,storm_outflow,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4036,baseflow,0.036322318256277554,2010-05-25,0.0,0.0,3.3449232659886644e-06,0.0,0.0,0.0,0.0,0.0,8.936137666509044,0.0,0.0,0.0 -4037,catchment_outflow,0.036322318256277554,2010-05-25,0.0,0.0,3.3449232659886644e-06,0.0,0.0,0.0,0.0,0.0,8.936137666509044,0.0,0.0,0.0 -4038,reservoir_outflow,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4039,gw1_gw2,0.0,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4040,gw2_gw1,0.0124883252303718,2010-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4041,urban_drainage,0.028999999999999998,2010-05-26,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 -4042,percolation,0.03197564133691905,2010-05-26,0.0,0.0,2.8332430487263254e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4043,runoff,0.0,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4044,storm_outflow,0.028999999999999998,2010-05-26,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 -4045,baseflow,0.03631145156397916,2010-05-26,0.0,0.0,3.343644065445509e-06,0.0,0.0,0.0,0.0,0.0,8.934271755441777,0.0,0.0,0.0 -4046,catchment_outflow,0.06531145156397916,2010-05-26,0.0,0.0,1.334364406544551e-05,0.0,0.0,0.0,0.0,0.0,12.759881401361667,0.0,0.0,0.0 -4047,reservoir_outflow,0.014499999999999999,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4048,gw1_gw2,0.0,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4049,gw2_gw1,0.012405069728835906,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4050,urban_drainage,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4051,percolation,0.031336128510180666,2010-05-27,0.0,0.0,2.776578187751799e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4052,runoff,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4053,storm_outflow,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4054,baseflow,0.03629901325634466,2010-05-27,0.0,0.0,3.342226400751274e-06,0.0,0.0,0.0,0.0,0.0,8.932446563004328,0.0,0.0,0.0 -4055,catchment_outflow,0.03629901325634466,2010-05-27,0.0,0.0,3.342226400751274e-06,0.0,0.0,0.0,0.0,0.0,8.932446563004328,0.0,0.0,0.0 -4056,reservoir_outflow,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4057,gw1_gw2,0.0,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4058,gw2_gw1,0.012322369263976896,2010-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4059,urban_drainage,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4060,percolation,0.030709405939977053,2010-05-28,0.0,0.0,2.721046623996763e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4061,runoff,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4062,storm_outflow,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4063,baseflow,0.036285039238053735,2010-05-28,0.0,0.0,3.3406734513093872e-06,0.0,0.0,0.0,0.0,0.0,8.930661047383717,0.0,0.0,0.0 -4064,catchment_outflow,0.036285039238053735,2010-05-28,0.0,0.0,3.3406734513093872e-06,0.0,0.0,0.0,0.0,0.0,8.930661047383717,0.0,0.0,0.0 -4065,reservoir_outflow,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4066,gw1_gw2,0.0,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4067,gw2_gw1,0.012240220135550395,2010-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4068,urban_drainage,0.04,2010-05-29,0.0,0.0,2.666666666666667e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 -4069,percolation,0.030095217821177515,2010-05-29,0.0,0.0,2.6666256915168283e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4070,runoff,0.0,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4071,storm_outflow,0.04,2010-05-29,0.0,0.0,2.666666666666667e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 -4072,baseflow,0.03626956468451155,2010-05-29,0.0,0.0,3.338988331909906e-06,0.0,0.0,0.0,0.0,0.0,8.928914199410375,0.0,0.0,0.0 -4073,catchment_outflow,0.07626956468451154,2010-05-29,0.0,0.0,6.005654998576572e-06,0.0,0.0,0.0,0.0,0.0,12.99513835719116,0.0,0.0,0.0 -4074,reservoir_outflow,0.0225,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4075,gw1_gw2,0.0,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4076,gw2_gw1,0.012158618667979938,2010-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4077,urban_drainage,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4078,percolation,0.029493313464753965,2010-05-30,0.0,0.0,2.613293177686492e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4079,runoff,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4080,storm_outflow,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4081,baseflow,0.03625262405646215,2010-05-30,0.0,0.0,3.3371740940243474e-06,0.0,0.0,0.0,0.0,0.0,8.927205041300377,0.0,0.0,0.0 -4082,catchment_outflow,0.03625262405646215,2010-05-30,0.0,0.0,3.3371740940243474e-06,0.0,0.0,0.0,0.0,0.0,8.927205041300377,0.0,0.0,0.0 -4083,reservoir_outflow,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4084,gw1_gw2,0.0,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4085,gw2_gw1,0.012077561210193544,2010-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4086,urban_drainage,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4087,percolation,0.02890344719545889,2010-05-31,0.0,0.0,2.5610273141327626e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4088,runoff,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4089,storm_outflow,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4090,baseflow,0.03623425111430964,2010-05-31,0.0,0.0,3.3352337270746184e-06,0.0,0.0,0.0,0.0,0.0,8.925532625455702,0.0,0.0,0.0 -4091,catchment_outflow,0.03623425111430964,2010-05-31,0.0,0.0,3.3352337270746184e-06,0.0,0.0,0.0,0.0,0.0,8.925532625455702,0.0,0.0,0.0 -4092,reservoir_outflow,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4093,gw1_gw2,0.0,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4094,gw2_gw1,0.011997044135458879,2010-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4095,urban_drainage,0.007000000000000001,2010-06-01,0.0,0.0,3.3333333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -4096,percolation,0.02832537825154971,2010-06-01,0.0,0.0,2.5098067678501066e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4097,runoff,0.0,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4098,storm_outflow,0.007000000000000001,2010-06-01,0.0,0.0,3.3333333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -4099,baseflow,0.03621447893215274,2010-06-01,0.0,0.0,3.333170159676558e-06,0.0,0.0,0.0,0.0,0.0,8.923896033319378,0.0,0.0,0.0 -4100,catchment_outflow,0.04321447893215274,2010-06-01,0.0,0.0,6.666503493009891e-06,0.0,0.0,0.0,0.0,0.0,10.040020279836162,0.0,0.0,0.0 -4101,reservoir_outflow,0.0035000000000000005,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4102,gw1_gw2,0.0,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4103,gw2_gw1,0.011917063841222486,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4104,urban_drainage,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4105,percolation,0.027758870686518715,2010-06-02,0.0,0.0,2.4596106324931046e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4106,runoff,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4107,storm_outflow,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4108,baseflow,0.036193339911538655,2010-06-02,0.0,0.0,3.3309862608585984e-06,0.0,0.0,0.0,0.0,0.0,8.922294374282647,0.0,0.0,0.0 -4109,catchment_outflow,0.036193339911538655,2010-06-02,0.0,0.0,3.3309862608585984e-06,0.0,0.0,0.0,0.0,0.0,8.922294374282647,0.0,0.0,0.0 -4110,reservoir_outflow,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4111,gw1_gw2,0.0,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4112,gw2_gw1,0.011837616748947434,2010-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4113,urban_drainage,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4114,percolation,0.02720369327278834,2010-06-03,0.0,0.0,2.4104184198432427e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4115,runoff,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4116,storm_outflow,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4117,baseflow,0.03617086579494178,2010-06-03,0.0,0.0,3.328684841256061e-06,0.0,0.0,0.0,0.0,0.0,8.92072678464134,0.0,0.0,0.0 -4118,catchment_outflow,0.03617086579494178,2010-06-03,0.0,0.0,3.328684841256061e-06,0.0,0.0,0.0,0.0,0.0,8.92072678464134,0.0,0.0,0.0 -4119,reservoir_outflow,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4120,gw1_gw2,0.0,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4121,gw2_gw1,0.011758699303954678,2010-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4122,urban_drainage,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4123,percolation,0.02665961940733257,2010-06-04,0.0,0.0,2.362210051446377e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4124,runoff,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4125,storm_outflow,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4126,baseflow,0.03614708767897276,2010-06-04,0.0,0.0,3.3262686542815366e-06,0.0,0.0,0.0,0.0,0.0,8.919192426598974,0.0,0.0,0.0 -4127,catchment_outflow,0.03614708767897276,2010-06-04,0.0,0.0,3.3262686542815366e-06,0.0,0.0,0.0,0.0,0.0,8.919192426598974,0.0,0.0,0.0 -4128,reservoir_outflow,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4129,gw1_gw2,0.0,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4130,gw2_gw1,0.011680307975261428,2010-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4131,urban_drainage,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4132,percolation,0.02612642701918593,2010-06-05,0.0,0.0,2.3149658504174507e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4133,runoff,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4134,storm_outflow,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4135,baseflow,0.03612203602732329,2010-06-05,0.0,0.0,3.3237403972718768e-06,0.0,0.0,0.0,0.0,0.0,8.917690487314044,0.0,0.0,0.0 -4136,catchment_outflow,0.03612203602732329,2010-06-05,0.0,0.0,3.3237403972718768e-06,0.0,0.0,0.0,0.0,0.0,8.917690487314044,0.0,0.0,0.0 -4137,reservoir_outflow,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4138,gw1_gw2,0.0,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4139,gw2_gw1,0.011602439255426235,2010-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4140,urban_drainage,0.002999999999999999,2010-06-06,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0 -4141,percolation,0.025603898478802213,2010-06-06,0.0,0.0,2.2686665334091017e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4142,runoff,0.0,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4143,storm_outflow,0.002999999999999999,2010-06-06,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0 -4144,baseflow,0.03609574068345199,2010-06-06,0.0,0.0,3.3211027126122197e-06,0.0,0.0,0.0,0.0,0.0,8.916220177989326,0.0,0.0,0.0 -4145,catchment_outflow,0.03909574068345199,2010-06-06,0.0,0.0,8.32110271261222e-06,0.0,0.0,0.0,0.0,0.0,9.480893952679471,0.0,0.0,0.0 -4146,reservoir_outflow,0.0014999999999999996,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4147,gw1_gw2,0.0,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4148,gw2_gw1,0.011525089660390364,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4149,urban_drainage,0.04,2010-06-07,0.0,0.0,3.669724770642202e-07,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0 -4150,percolation,0.02509182050922616,2010-06-07,0.0,0.0,2.2232932027409193e-06,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -4151,runoff,0.0,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4152,storm_outflow,0.04,2010-06-07,0.0,0.0,3.669724770642202e-07,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0 -4153,baseflow,0.03606823088301643,2010-06-07,0.0,0.0,3.3183581888375417e-06,0.0,0.0,0.0,0.0,0.0,8.91478073300098,0.0,0.0,0.0 -4154,catchment_outflow,0.07606823088301642,2010-06-07,0.0,0.0,3.685330665901762e-06,0.0,0.0,0.0,0.0,0.0,12.883701360907516,0.0,0.0,0.0 -4155,reservoir_outflow,0.0545,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4156,gw1_gw2,0.0,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4157,gw2_gw1,0.011448255729320955,2010-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4158,urban_drainage,0.04,2010-06-08,0.0,0.0,5.103211009174311e-07,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -4159,percolation,0.034240827834173294,2010-06-08,0.0,0.0,3.350741191413199e-06,0.0,0.0,0.0,0.0,0.0,10.197614841891316,0.0,0.0,0.0 -4160,runoff,0.0660330700646587,2010-06-08,0.0,0.0,3.906466380070494e-06,0.0,0.0,0.0,0.0,0.0,16.124422673124354,0.0,0.0,0.0 -4161,storm_outflow,0.04,2010-06-08,0.0,0.0,5.103211009174311e-07,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -4162,baseflow,0.03606366237539432,2010-06-08,0.0,0.0,3.3184391463439807e-06,0.0,0.0,0.0,0.0,0.0,8.91782571643923,0.0,0.0,0.0 -4163,catchment_outflow,0.14209673244005303,2010-06-08,0.0,0.0,7.735226627331906e-06,0.0,0.0,0.0,0.0,0.0,14.41491006840003,0.0,0.0,0.0 -4164,reservoir_outflow,0.029500000000000005,2010-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4165,gw1_gw2,0.0,2010-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4166,gw2_gw1,0.011371934024458775,2010-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4167,urban_drainage,0.04,2010-06-09,0.0,0.0,1.0613532110091743e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -4168,percolation,0.03502941724396841,2010-06-09,0.0,0.0,3.4634030833601106e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -4169,runoff,0.03581756709217575,2010-06-09,0.0,0.0,3.724095489973647e-06,0.0,0.0,0.0,0.0,0.0,15.72237046827733,0.0,0.0,0.0 -4170,storm_outflow,0.04,2010-06-09,0.0,0.0,1.0613532110091743e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -4171,baseflow,0.03606107676256576,2010-06-09,0.0,0.0,3.318801556186521e-06,0.0,0.0,0.0,0.0,0.0,8.921494142818284,0.0,0.0,0.0 -4172,catchment_outflow,0.1118786438547415,2010-06-09,0.0,0.0,8.104250257169343e-06,0.0,0.0,0.0,0.0,0.0,13.825809128280401,0.0,0.0,0.0 -4173,reservoir_outflow,0.0,2010-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4174,gw1_gw2,0.0,2010-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4175,gw2_gw1,0.011296121130962435,2010-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4176,urban_drainage,0.019999999999999987,2010-06-10,0.0,0.0,2.061353211009174e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -4177,percolation,0.03432882889908904,2010-06-10,0.0,0.0,3.394135021692908e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -4178,runoff,0.02451817727660774,2010-06-10,0.0,0.0,2.979276391978918e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242001,0.0,0.0,0.0 -4179,storm_outflow,0.019999999999999987,2010-06-10,0.0,0.0,2.061353211009174e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -4180,baseflow,0.03605674614290706,2010-06-10,0.0,0.0,3.3189898898502872e-06,0.0,0.0,0.0,0.0,0.0,8.925080900887956,0.0,0.0,0.0 -4181,catchment_outflow,0.08057492341951479,2010-06-10,0.0,0.0,8.35961949283838e-06,0.0,0.0,0.0,0.0,0.0,12.845327327573834,0.0,0.0,0.0 -4182,reservoir_outflow,0.0,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4183,gw1_gw2,0.0,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4184,gw2_gw1,0.011220813656756335,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4185,urban_drainage,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4186,percolation,0.03364225232110726,2010-06-11,0.0,0.0,3.3262523212590506e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -4187,runoff,0.01961454182128619,2010-06-11,0.0,0.0,2.3834211135831345e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242003,0.0,0.0,0.0 -4188,storm_outflow,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4189,baseflow,0.03605070990835256,2010-06-11,0.0,0.0,3.319008045928809e-06,0.0,0.0,0.0,0.0,0.0,8.928588144502898,0.0,0.0,0.0 -4190,catchment_outflow,0.05566525172963875,2010-06-11,0.0,0.0,5.7024291595119436e-06,0.0,0.0,0.0,0.0,0.0,11.275627444080062,0.0,0.0,0.0 -4191,reservoir_outflow,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4192,gw1_gw2,0.0,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4193,gw2_gw1,0.011146008232378081,2010-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4194,urban_drainage,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4195,percolation,0.032969407274685114,2010-06-12,0.0,0.0,3.2597272748338696e-06,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -4196,runoff,0.016421802581922,2010-06-12,0.0,0.0,1.9067368908665076e-06,0.0,0.0,0.0,0.0,0.0,15.611773758243832,0.0,0.0,0.0 -4197,storm_outflow,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4198,baseflow,0.03604300665176839,2010-06-12,0.0,0.0,3.318859844001072e-06,0.0,0.0,0.0,0.0,0.0,8.932017957435374,0.0,0.0,0.0 -4199,catchment_outflow,0.05246480923369039,2010-06-12,0.0,0.0,5.225596734867579e-06,0.0,0.0,0.0,0.0,0.0,11.022821920292154,0.0,0.0,0.0 -4200,reservoir_outflow,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4201,gw1_gw2,0.0,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4202,gw2_gw1,0.011071701510828725,2010-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4203,urban_drainage,0.031000000000000003,2010-06-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -4204,percolation,0.037224173674521646,2010-06-13,0.0,0.0,3.8019238754927757e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4205,runoff,0.046176469444198454,2010-06-13,0.0,0.0,3.5500266665451503e-06,0.0,0.0,0.0,0.0,0.0,15.607504244268139,0.0,0.0,0.0 -4206,storm_outflow,0.031000000000000003,2010-06-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -4207,baseflow,0.03604595956932528,2010-06-13,0.0,0.0,3.320067504079801e-06,0.0,0.0,0.0,0.0,0.0,8.937526965165235,0.0,0.0,0.0 -4208,catchment_outflow,0.11322242901352372,2010-06-13,0.0,0.0,9.87009417062495e-06,0.0,0.0,0.0,0.0,0.0,13.578775037745483,0.0,0.0,0.0 -4209,reservoir_outflow,0.015500000000000002,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4210,gw1_gw2,0.0,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4211,gw2_gw1,0.01099789016742303,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4212,urban_drainage,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4213,percolation,0.036479690201031215,2010-06-14,0.0,0.0,3.7258853979829204e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4214,runoff,0.023507271405603703,2010-06-14,0.0,0.0,2.84002133323612e-06,0.0,0.0,0.0,0.0,0.0,15.407599884040101,0.0,0.0,0.0 -4215,storm_outflow,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4216,baseflow,0.03604704389590454,2010-06-14,0.0,0.0,3.321082048814559e-06,0.0,0.0,0.0,0.0,0.0,8.942911692518248,0.0,0.0,0.0 -4217,catchment_outflow,0.059554315301508245,2010-06-14,0.0,0.0,6.161103382050679e-06,0.0,0.0,0.0,0.0,0.0,11.494652554642757,0.0,0.0,0.0 -4218,reservoir_outflow,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4219,gw1_gw2,0.0,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4220,gw2_gw1,0.010924570899640253,2010-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4221,urban_drainage,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4222,percolation,0.03575009639701059,2010-06-15,0.0,0.0,3.651367690023262e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4223,runoff,0.0191750789893623,2010-06-15,0.0,0.0,2.2720170665888966e-06,0.0,0.0,0.0,0.0,0.0,15.410656066993248,0.0,0.0,0.0 -4224,storm_outflow,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4225,baseflow,0.03604630152715731,2010-06-15,0.0,0.0,3.3219077629175805e-06,0.0,0.0,0.0,0.0,0.0,8.948175482806093,0.0,0.0,0.0 -4226,catchment_outflow,0.055221380516519605,2010-06-15,0.0,0.0,5.593924829506477e-06,0.0,0.0,0.0,0.0,0.0,11.192208038854533,0.0,0.0,0.0 -4227,reservoir_outflow,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4228,gw1_gw2,0.0,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4229,gw2_gw1,0.010851740426975988,2010-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4230,urban_drainage,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4231,percolation,0.03503509446907038,2010-06-16,0.0,0.0,3.5783403362227967e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4232,runoff,0.01481411682136266,2010-06-16,0.0,0.0,1.817613653271117e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 -4233,storm_outflow,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4234,baseflow,0.036043773509512086,2010-06-16,0.0,0.0,3.3225488443508433e-06,0.0,0.0,0.0,0.0,0.0,8.953321567883162,0.0,0.0,0.0 -4235,catchment_outflow,0.05085789033087475,2010-06-16,0.0,0.0,5.14016249762196e-06,0.0,0.0,0.0,0.0,0.0,10.831509520056507,0.0,0.0,0.0 -4236,reservoir_outflow,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4237,gw1_gw2,0.0,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4238,gw2_gw1,0.01077939549079634,2010-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4239,urban_drainage,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4240,percolation,0.034334392579688976,2010-06-17,0.0,0.0,3.5067735294983413e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4241,runoff,0.011851293457090128,2010-06-17,0.0,0.0,1.4540909226168935e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 -4242,storm_outflow,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4243,baseflow,0.036039500057187535,2010-06-17,0.0,0.0,3.3230094060637128e-06,0.0,0.0,0.0,0.0,0.0,8.958353072730011,0.0,0.0,0.0 -4244,catchment_outflow,0.04789079351427766,2010-06-17,0.0,0.0,4.777100328680606e-06,0.0,0.0,0.0,0.0,0.0,10.55274953330832,0.0,0.0,0.0 -4245,reservoir_outflow,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4246,gw1_gw2,0.0,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4247,gw2_gw1,0.010707532854191015,2010-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4248,urban_drainage,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4249,percolation,0.033647704728095196,2010-06-18,0.0,0.0,3.4366380589083743e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4250,runoff,0.010783094219548641,2010-06-18,0.0,0.0,1.163272738093515e-06,0.0,0.0,0.0,0.0,0.0,15.596042694244481,0.0,0.0,0.0 -4251,storm_outflow,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4252,baseflow,0.0360335205688648,2010-06-18,0.0,0.0,3.3232934776958244e-06,0.0,0.0,0.0,0.0,0.0,8.963273019811483,0.0,0.0,0.0 -4253,catchment_outflow,0.046816614788413445,2010-06-18,0.0,0.0,4.486566215789339e-06,0.0,0.0,0.0,0.0,0.0,10.490973829859731,0.0,0.0,0.0 -4254,reservoir_outflow,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4255,gw1_gw2,0.0,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4256,gw2_gw1,0.01063614930182979,2010-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4257,urban_drainage,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4258,percolation,0.03297475063353329,2010-06-19,0.0,0.0,3.3679052977302072e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4259,runoff,0.007584827812537683,2010-06-19,0.0,0.0,9.30618190474812e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4260,storm_outflow,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4261,baseflow,0.03602587364402647,2010-06-19,0.0,0.0,3.3234050072459096e-06,0.0,0.0,0.0,0.0,0.0,8.968084333222315,0.0,0.0,0.0 -4262,catchment_outflow,0.043610701456564156,2010-06-19,0.0,0.0,4.254023197720721e-06,0.0,0.0,0.0,0.0,0.0,10.086952223581163,0.0,0.0,0.0 -4263,reservoir_outflow,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4264,gw1_gw2,0.0,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4265,gw2_gw1,0.010565241639817558,2010-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4266,urban_drainage,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4267,percolation,0.032315255620862626,2010-06-20,0.0,0.0,3.3005471917756033e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -4268,runoff,0.006067862250030146,2010-06-20,0.0,0.0,7.444945523798496e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4269,storm_outflow,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4270,baseflow,0.03601659709896856,2010-06-20,0.0,0.0,3.3233478627072337e-06,0.0,0.0,0.0,0.0,0.0,8.972789842632265,0.0,0.0,0.0 -4271,catchment_outflow,0.04208445934899871,2010-06-20,0.0,0.0,4.067842415087083e-06,0.0,0.0,0.0,0.0,0.0,9.899667342048987,0.0,0.0,0.0 -4272,reservoir_outflow,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4273,gw1_gw2,0.0,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4274,gw2_gw1,0.01049480669555205,2010-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4275,urban_drainage,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4276,percolation,0.03166895050844537,2010-06-21,0.0,0.0,3.2345362479400905e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4277,runoff,0.004854289800024118,2010-06-21,0.0,0.0,5.955956419038797e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4278,storm_outflow,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4279,baseflow,0.03600572798249225,2010-06-21,0.0,0.0,3.3231258336703165e-06,0.0,0.0,0.0,0.0,0.0,8.97739228704198,0.0,0.0,0.0 -4280,catchment_outflow,0.04086001778251637,2010-06-21,0.0,0.0,3.918721475574196e-06,0.0,0.0,0.0,0.0,0.0,9.740567901002516,0.0,0.0,0.0 -4281,reservoir_outflow,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4282,gw1_gw2,0.0,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4283,gw2_gw1,0.010424841317581724,2010-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4284,urban_drainage,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4285,percolation,0.031035571498276474,2010-06-22,0.0,0.0,3.16984552298129e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4286,runoff,0.0038834318400192934,2010-06-22,0.0,0.0,4.7647651352310377e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4287,storm_outflow,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4288,baseflow,0.035993302591281716,2010-06-22,0.0,0.0,3.3227426328935935e-06,0.0,0.0,0.0,0.0,0.0,8.981894318360139,0.0,0.0,0.0 -4289,catchment_outflow,0.039876734431301006,2010-06-22,0.0,0.0,3.799219146416697e-06,0.0,0.0,0.0,0.0,0.0,9.607051125953557,0.0,0.0,0.0 -4290,reservoir_outflow,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4291,gw1_gw2,0.0,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4292,gw2_gw1,0.010355342375464894,2010-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4293,urban_drainage,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4294,percolation,0.03041486006831094,2010-06-23,0.0,0.0,3.106448612521663e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4295,runoff,0.0031067454720154347,2010-06-23,0.0,0.0,3.8118121081848304e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4296,storm_outflow,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4297,baseflow,0.03597935648497429,2010-06-23,0.0,0.0,3.3222018978426637e-06,0.0,0.0,0.0,0.0,0.0,8.986298504811735,0.0,0.0,0.0 -4298,catchment_outflow,0.03908610195698972,2010-06-23,0.0,0.0,3.7033831086611466e-06,0.0,0.0,0.0,0.0,0.0,9.496190407848582,0.0,0.0,0.0 -4299,reservoir_outflow,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4300,gw1_gw2,0.0,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4301,gw2_gw1,0.010286306759628161,2010-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4302,urban_drainage,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4303,percolation,0.02980656286694472,2010-06-24,0.0,0.0,3.0443196402712296e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4304,runoff,0.0024853963776123476,2010-06-24,0.0,0.0,3.0494496865478643e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4305,storm_outflow,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4306,baseflow,0.035963924500929216,2010-06-24,0.0,0.0,3.3215071921987352e-06,0.0,0.0,0.0,0.0,0.0,8.990607334186741,0.0,0.0,0.0 -4307,catchment_outflow,0.03844932087854156,2010-06-24,0.0,0.0,3.6264521608535217e-06,0.0,0.0,0.0,0.0,0.0,9.40499801819191,0.0,0.0,0.0 -4308,reservoir_outflow,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4309,gw1_gw2,0.0,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4310,gw2_gw1,0.0102177313812307,2010-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4311,urban_drainage,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4312,percolation,0.029210431609605823,2010-06-25,0.0,0.0,2.9834332474658047e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4313,runoff,0.001988317102089878,2010-06-25,0.0,0.0,2.4395597492382917e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4314,storm_outflow,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4315,baseflow,0.0359470407687009,2010-06-25,0.0,0.0,3.320662007336902e-06,0.0,0.0,0.0,0.0,0.0,8.99482321693782,0.0,0.0,0.0 -4316,catchment_outflow,0.037935357870790776,2010-06-25,0.0,0.0,3.564617982260731e-06,0.0,0.0,0.0,0.0,0.0,9.330606256979944,0.0,0.0,0.0 -4317,reservoir_outflow,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4318,gw1_gw2,0.0,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4319,gw2_gw1,0.010149613172022676,2010-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4320,urban_drainage,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4321,percolation,0.028626222977413705,2010-06-26,0.0,0.0,2.923764582516488e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4322,runoff,0.0015906536816719026,2010-06-26,0.0,0.0,1.9516477993906335e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -4323,storm_outflow,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4324,baseflow,0.035928738724222684,2010-06-26,0.0,0.0,3.3196697637748503e-06,0.0,0.0,0.0,0.0,0.0,8.998948489135236,0.0,0.0,0.0 -4325,catchment_outflow,0.03751939240589459,2010-06-26,0.0,0.0,3.5148345437139135e-06,0.0,0.0,0.0,0.0,0.0,9.270378203219394,0.0,0.0,0.0 -4326,reservoir_outflow,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4327,gw1_gw2,0.0,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4328,gw2_gw1,0.010081949084209363,2010-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4329,urban_drainage,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4330,percolation,0.028053698517865436,2010-06-27,0.0,0.0,2.8652892908661588e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4331,runoff,0.0012725229453375221,2010-06-27,0.0,0.0,1.5613182395125067e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -4332,storm_outflow,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4333,baseflow,0.03590905112370679,2010-06-27,0.0,0.0,3.318533812592579e-06,0.0,0.0,0.0,0.0,0.0,9.002985415286602,0.0,0.0,0.0 -4334,catchment_outflow,0.037181574069044314,2010-06-27,0.0,0.0,3.4746656365438297e-06,0.0,0.0,0.0,0.0,0.0,9.221963914324839,0.0,0.0,0.0 -4335,reservoir_outflow,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4336,gw1_gw2,0.0,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4337,gw2_gw1,0.010014736090314535,2010-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4338,urban_drainage,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4339,percolation,0.02749262454750813,2010-06-28,0.0,0.0,2.8079835050488355e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4340,runoff,0.0010180183562700177,2010-06-28,0.0,0.0,1.2490545916100054e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4341,storm_outflow,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4342,baseflow,0.035888010057266294,2010-06-28,0.0,0.0,3.3172574368237194e-06,0.0,0.0,0.0,0.0,0.0,9.006936191028618,0.0,0.0,0.0 -4343,catchment_outflow,0.03690602841353631,2010-06-28,0.0,0.0,3.44216289598472e-06,0.0,0.0,0.0,0.0,0.0,9.183317951483783,0.0,0.0,0.0 -4344,reservoir_outflow,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4345,gw1_gw2,0.0,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4346,gw2_gw1,0.009947971183045468,2010-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4347,urban_drainage,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4348,percolation,0.026942772056557963,2010-06-29,0.0,0.0,2.7518238349478586e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4349,runoff,0.0008144146850160141,2010-06-29,0.0,0.0,9.992436732880043e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4350,storm_outflow,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4351,baseflow,0.03586564696226452,2010-06-29,0.0,0.0,3.3158438528190295e-06,0.0,0.0,0.0,0.0,0.0,9.010802945697575,0.0,0.0,0.0 -4352,catchment_outflow,0.036680061647280535,2010-06-29,0.0,0.0,3.41576822014783e-06,0.0,0.0,0.0,0.0,0.0,9.152691776710222,0.0,0.0,0.0 -4353,reservoir_outflow,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4354,gw1_gw2,0.0,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4355,gw2_gw1,0.00988165137515864,2010-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4356,urban_drainage,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4357,percolation,0.02640391661542681,2010-06-30,0.0,0.0,2.6967873582489017e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4358,runoff,0.0006515317480128113,2010-06-30,0.0,0.0,7.993949386304036e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4359,storm_outflow,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4360,baseflow,0.03584199263639743,2010-06-30,0.0,0.0,3.314296211582604e-06,0.0,0.0,0.0,0.0,0.0,9.01458774478495,0.0,0.0,0.0 -4361,catchment_outflow,0.03649352438441024,2010-06-30,0.0,0.0,3.3942357054456446e-06,0.0,0.0,0.0,0.0,0.0,9.12861145195794,0.0,0.0,0.0 -4362,reservoir_outflow,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4363,gw1_gw2,0.0,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4364,gw2_gw1,0.009815773699324204,2010-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4365,urban_drainage,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4366,percolation,0.025875838283118263,2010-07-01,0.0,0.0,2.642851611083923e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4367,runoff,0.0005212253984102491,2010-07-01,0.0,0.0,6.395159509043228e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4368,storm_outflow,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4369,baseflow,0.03581707725051423,2010-07-01,0.0,0.0,3.3126176000813577e-06,0.0,0.0,0.0,0.0,0.0,9.018292592284055,0.0,0.0,0.0 -4370,catchment_outflow,0.03633830264892448,2010-07-01,0.0,0.0,3.37656919517179e-06,0.0,0.0,0.0,0.0,0.0,9.109848065362248,0.0,0.0,0.0 -4371,reservoir_outflow,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4372,gw1_gw2,0.0,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4373,gw2_gw1,0.00975033520799542,2010-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4374,urban_drainage,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4375,percolation,0.0253583215174559,2010-07-02,0.0,0.0,2.589994578862245e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4376,runoff,0.0004169803187281993,2010-07-02,0.0,0.0,5.116127607234583e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4377,storm_outflow,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4378,baseflow,0.03579093036118158,2010-07-02,0.0,0.0,3.31081104252831e-06,0.0,0.0,0.0,0.0,0.0,9.021919432933354,0.0,0.0,0.0 -4379,catchment_outflow,0.036207910679909784,2010-07-02,0.0,0.0,3.3619723186006555e-06,0.0,0.0,0.0,0.0,0.0,9.095385811434191,0.0,0.0,0.0 -4380,reservoir_outflow,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4381,gw1_gw2,0.0,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4382,gw2_gw1,0.00968533297327543,2010-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4383,urban_drainage,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4384,percolation,0.024851155087106787,2010-07-03,0.0,0.0,2.5381946872850003e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4385,runoff,0.0003335842549825594,2010-07-03,0.0,0.0,4.0929020857876665e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4386,storm_outflow,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4387,baseflow,0.03576358092299639,2010-07-03,0.0,0.0,3.308879501640201e-06,0.0,0.0,0.0,0.0,0.0,9.025470154361743,0.0,0.0,0.0 -4388,catchment_outflow,0.03609716517797895,2010-07-03,0.0,0.0,3.3498085224980777e-06,0.0,0.0,0.0,0.0,0.0,9.084390758828572,0.0,0.0,0.0 -4389,reservoir_outflow,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4390,gw1_gw2,0.0,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4391,gw2_gw1,0.009620764086787048,2010-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4392,urban_drainage,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4393,percolation,0.02435413198536464,2010-07-04,0.0,0.0,2.4874307935393003e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4394,runoff,0.00026686740398604753,2010-07-04,0.0,0.0,3.2743216686301325e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4395,storm_outflow,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4396,baseflow,0.035735057300652316,2010-07-04,0.0,0.0,3.3068258798699492e-06,0.0,0.0,0.0,0.0,0.0,9.028946589140777,0.0,0.0,0.0 -4397,catchment_outflow,0.036001924704638366,2010-07-04,0.0,0.0,3.3395690965562507e-06,0.0,0.0,0.0,0.0,0.0,9.076181999477509,0.0,0.0,0.0 -4398,reservoir_outflow,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4399,gw1_gw2,0.0,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4400,gw2_gw1,0.00955662565954185,2010-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4401,urban_drainage,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4402,percolation,0.02386704934565735,2010-07-05,0.0,0.0,2.437682177668514e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4403,runoff,0.00021349392318883802,2010-07-05,0.0,0.0,2.6194573349041062e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4404,storm_outflow,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4405,baseflow,0.03570538728076483,2010-07-05,0.0,0.0,3.304653020614446e-06,0.0,0.0,0.0,0.0,0.0,9.032350516748489,0.0,0.0,0.0 -4406,catchment_outflow,0.03591888120395367,2010-07-05,0.0,0.0,3.330847593963487e-06,0.0,0.0,0.0,0.0,0.0,9.070205978434187,0.0,0.0,0.0 -4407,reservoir_outflow,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4408,gw1_gw2,0.0,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4409,gw2_gw1,0.009492914821811561,2010-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4410,urban_drainage,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4411,percolation,0.023389708358744203,2010-07-06,0.0,0.0,2.388928534115144e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4412,runoff,0.00017079513855107042,2010-07-06,0.0,0.0,2.0955658679232848e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4413,storm_outflow,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4414,baseflow,0.03567459808345978,2010-07-06,0.0,0.0,3.302363709398198e-06,0.0,0.0,0.0,0.0,0.0,9.0356836654493,0.0,0.0,0.0 -4415,catchment_outflow,0.03584539322201085,2010-07-06,0.0,0.0,3.323319368077431e-06,0.0,0.0,0.0,0.0,0.0,9.066014240221898,0.0,0.0,0.0 -4416,reservoir_outflow,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4417,gw1_gw2,0.0,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4418,gw2_gw1,0.009429628722999794,2010-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4419,urban_drainage,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4420,percolation,0.022921914191569318,2010-07-07,0.0,0.0,2.341149963432841e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4421,runoff,0.00013663611084085633,2010-07-07,0.0,0.0,1.676452694338628e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4422,storm_outflow,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4423,baseflow,0.03564271637373005,2010-07-07,0.0,0.0,3.2999606750332845e-06,0.0,0.0,0.0,0.0,0.0,9.038947714094123,0.0,0.0,0.0 -4424,catchment_outflow,0.03577935248457091,2010-07-07,0.0,0.0,3.3167252019766707e-06,0.0,0.0,0.0,0.0,0.0,9.063244495791363,0.0,0.0,0.0 -4425,reservoir_outflow,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4426,gw1_gw2,0.0,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4427,gw2_gw1,0.009366764531513106,2010-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4428,urban_drainage,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4429,percolation,0.02246347590773793,2010-07-08,0.0,0.0,2.294326964164184e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4430,runoff,0.00010930888867268507,2010-07-08,0.0,0.0,1.3411621554709024e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4431,storm_outflow,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4432,baseflow,0.035609768272565075,2010-07-08,0.0,0.0,3.297446590756112e-06,0.0,0.0,0.0,0.0,0.0,9.04214429384464,0.0,0.0,0.0 -4433,catchment_outflow,0.03571907716123776,2010-07-08,0.0,0.0,3.310858212310821e-06,0.0,0.0,0.0,0.0,0.0,9.06160473722483,0.0,0.0,0.0 -4434,reservoir_outflow,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4435,gw1_gw2,0.0,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4436,gw2_gw1,0.009304319434635921,2010-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4437,urban_drainage,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4438,percolation,0.022014206389583166,2010-07-09,0.0,0.0,2.2484404248809e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4439,runoff,8.744711093814805e-05,2010-07-09,0.0,0.0,1.0729297243767218e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4440,storm_outflow,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4441,baseflow,0.03557577936785762,2010-07-09,0.0,0.0,3.2948240753414237e-06,0.0,0.0,0.0,0.0,0.0,9.04527498982545,0.0,0.0,0.0 -4442,catchment_outflow,0.035663226478795766,2010-07-09,0.0,0.0,3.305553372585191e-06,0.0,0.0,0.0,0.0,0.0,9.060860048932843,0.0,0.0,0.0 -4443,reservoir_outflow,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4444,gw1_gw2,0.0,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4445,gw2_gw1,0.00924229063840496,2010-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4446,urban_drainage,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4447,percolation,0.021573922261791507,2010-07-10,0.0,0.0,2.2034716163832825e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4448,runoff,6.995768875051845e-05,2010-07-10,0.0,0.0,8.583437795013776e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4449,storm_outflow,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4450,baseflow,0.035540774725092455,2010-07-10,0.0,0.0,3.2920956941940278e-06,0.0,0.0,0.0,0.0,0.0,9.048341342707602,0.0,0.0,0.0 -4451,catchment_outflow,0.03561073241384297,2010-07-10,0.0,0.0,3.3006791319890416e-06,0.0,0.0,0.0,0.0,0.0,9.060821745356456,0.0,0.0,0.0 -4452,reservoir_outflow,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4453,gw1_gw2,0.0,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4454,gw2_gw1,0.009180675367482571,2010-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4455,urban_drainage,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4456,percolation,0.021142443816555678,2010-07-11,0.0,0.0,2.159402184055617e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4457,runoff,5.5966151000414754e-05,2010-07-11,0.0,0.0,6.86675023601102e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4458,storm_outflow,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4459,baseflow,0.03550477889782112,2010-07-11,0.0,0.0,3.289263960418682e-06,0.0,0.0,0.0,0.0,0.0,9.05134485022683,0.0,0.0,0.0 -4460,catchment_outflow,0.035560745048821535,2010-07-11,0.0,0.0,3.2961307106546933e-06,0.0,0.0,0.0,0.0,0.0,9.061338480227354,0.0,0.0,0.0 -4461,reservoir_outflow,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4462,gw1_gw2,0.0,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4463,gw2_gw1,0.009119470865032753,2010-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4464,urban_drainage,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4465,percolation,0.020719594940224562,2010-07-12,0.0,0.0,2.116214140374504e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4466,runoff,4.47729208003318e-05,2010-07-12,0.0,0.0,5.4934001888088156e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4467,storm_outflow,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4468,baseflow,0.03546781593792713,2010-07-12,0.0,0.0,3.2863313358685713e-06,0.0,0.0,0.0,0.0,0.0,9.05428696863962,0.0,0.0,0.0 -4469,catchment_outflow,0.03551258885872746,2010-07-12,0.0,0.0,3.29182473605738e-06,0.0,0.0,0.0,0.0,0.0,9.062289004670971,0.0,0.0,0.0 -4470,reservoir_outflow,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4471,gw1_gw2,0.0,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4472,gw2_gw1,0.009058674392599466,2010-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4473,urban_drainage,0.005999999999999998,2010-07-13,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 -4474,percolation,0.020305203041420073,2010-07-13,0.0,0.0,2.073889857567014e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4475,runoff,3.581833664026544e-05,2010-07-13,0.0,0.0,4.3947201510470534e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4476,storm_outflow,0.005999999999999998,2010-07-13,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 -4477,baseflow,0.03542990940568586,2010-07-13,0.0,0.0,3.283300232172817e-06,0.0,0.0,0.0,0.0,0.0,9.05716911412007,0.0,0.0,0.0 -4478,catchment_outflow,0.041465727742326125,2010-07-13,0.0,0.0,3.328769495232387e-05,0.0,0.0,0.0,0.0,0.0,10.407301465395987,0.0,0.0,0.0 -4479,reservoir_outflow,0.002999999999999999,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4480,gw1_gw2,0.0,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4481,gw2_gw1,0.008998283229982107,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4482,urban_drainage,0.018,2010-07-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0 -4483,percolation,0.01989909898059167,2010-07-14,0.0,0.0,2.0324120604156737e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4484,runoff,2.865466931221235e-05,2010-07-14,0.0,0.0,3.5157761208376425e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4485,storm_outflow,0.018,2010-07-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0 -4486,baseflow,0.03539108237962313,2010-07-14,0.0,0.0,3.2801730117434243e-06,0.0,0.0,0.0,0.0,0.0,9.059992664100365,0.0,0.0,0.0 -4487,catchment_outflow,0.05341973704893534,2010-07-14,0.0,0.0,4.283688787864262e-06,0.0,0.0,0.0,0.0,0.0,12.279342830197773,0.0,0.0,0.0 -4488,reservoir_outflow,0.009,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4489,gw1_gw2,0.0,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4490,gw2_gw1,0.00893829467511562,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4491,urban_drainage,0.04,2010-07-15,0.0,0.0,8.51063829787234e-07,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0 -4492,percolation,0.019501117000979836,2010-07-15,0.0,0.0,1.9917638192073603e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4493,runoff,2.2923735449769885e-05,2010-07-15,0.0,0.0,2.812620896670114e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4494,storm_outflow,0.04,2010-07-15,0.0,0.0,8.51063829787234e-07,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0 -4495,baseflow,0.035351357466176514,2010-07-15,0.0,0.0,3.276951988762084e-06,0.0,0.0,0.0,0.0,0.0,9.06275895855748,0.0,0.0,0.0 -4496,catchment_outflow,0.07537428120162629,2010-07-15,0.0,0.0,4.130828439445988e-06,0.0,0.0,0.0,0.0,0.0,14.263051034093484,0.0,0.0,0.0 -4497,reservoir_outflow,0.0235,2010-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4498,gw1_gw2,0.0,2010-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4499,gw2_gw1,0.00887870604394827,2010-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4500,urban_drainage,0.022,2010-07-16,0.0,0.0,1.148936170212766e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4501,percolation,0.01911109466096024,2010-07-16,0.0,0.0,1.9519285428232126e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4502,runoff,1.8338988359815912e-05,2010-07-16,0.0,0.0,2.250096717336092e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4503,storm_outflow,0.022,2010-07-16,0.0,0.0,1.148936170212766e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4504,baseflow,0.03531075680916348,2010-07-16,0.0,0.0,3.2736394301472367e-06,0.0,0.0,0.0,0.0,0.0,9.065469301248664,0.0,0.0,0.0 -4505,catchment_outflow,0.057329095797523294,2010-07-16,0.0,0.0,4.424825697077339e-06,0.0,0.0,0.0,0.0,0.0,12.892002718971511,0.0,0.0,0.0 -4506,reservoir_outflow,0.0075,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4507,gw1_gw2,0.0,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4508,gw2_gw1,0.008819514670321915,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4509,urban_drainage,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4510,percolation,0.018728872767741035,2010-07-17,0.0,0.0,1.9128899719667484e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4511,runoff,1.4671190687852728e-05,2010-07-17,0.0,0.0,1.8000773738688734e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4512,storm_outflow,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4513,baseflow,0.035269302099059915,2010-07-17,0.0,0.0,3.2702375565017848e-06,0.0,0.0,0.0,0.0,0.0,9.068124960898054,0.0,0.0,0.0 -4514,catchment_outflow,0.03528397328974777,2010-07-17,0.0,0.0,3.2720376338756536e-06,0.0,0.0,0.0,0.0,0.0,9.070758303610628,0.0,0.0,0.0 -4515,reservoir_outflow,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4516,gw1_gw2,0.0,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4517,gw2_gw1,0.008760717905853,2010-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4518,urban_drainage,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4519,percolation,0.018354295312386214,2010-07-18,0.0,0.0,1.8746321725274136e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4520,runoff,1.1736952550282183e-05,2010-07-18,0.0,0.0,1.4400618990950986e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4521,storm_outflow,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4522,baseflow,0.035227014582093236,2010-07-18,0.0,0.0,3.26674854304185e-06,0.0,0.0,0.0,0.0,0.0,9.070727172336674,0.0,0.0,0.0 -4523,catchment_outflow,0.035238751534643516,2010-07-18,0.0,0.0,3.268188604940945e-06,0.0,0.0,0.0,0.0,0.0,9.07283568327644,0.0,0.0,0.0 -4524,reservoir_outflow,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4525,gw1_gw2,0.0,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4526,gw2_gw1,0.008702313119814065,2010-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4527,urban_drainage,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4528,percolation,0.01798720940613849,2010-07-19,0.0,0.0,1.8371395290768658e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4529,runoff,9.389562040225746e-06,2010-07-19,0.0,0.0,1.1520495192760787e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4530,storm_outflow,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4531,baseflow,0.035183915069153346,2010-07-19,0.0,0.0,3.2631745205069368e-06,0.0,0.0,0.0,0.0,0.0,9.073277137597977,0.0,0.0,0.0 -4532,catchment_outflow,0.03519330463119357,2010-07-19,0.0,0.0,3.264326570026213e-06,0.0,0.0,0.0,0.0,0.0,9.074965444281796,0.0,0.0,0.0 -4533,reservoir_outflow,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4534,gw1_gw2,0.0,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4535,gw2_gw1,0.008644297699015447,2010-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4536,urban_drainage,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4537,percolation,0.017627465218015722,2010-07-20,0.0,0.0,1.8003967384953285e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4538,runoff,7.511649632180596e-06,2010-07-20,0.0,0.0,9.216396154208631e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4539,storm_outflow,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4540,baseflow,0.035140023944525506,2010-07-20,0.0,0.0,3.2595175760519084e-06,0.0,0.0,0.0,0.0,0.0,9.075776026970905,0.0,0.0,0.0 -4541,catchment_outflow,0.03514753559415769,2010-07-20,0.0,0.0,3.260439215667329e-06,0.0,0.0,0.0,0.0,0.0,9.077127897068278,0.0,0.0,0.0 -4542,reservoir_outflow,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4543,gw1_gw2,0.0,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4544,gw2_gw1,0.008586669047688567,2010-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4545,urban_drainage,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4546,percolation,0.017274915913655407,2010-07-21,0.0,0.0,1.7643888037254218e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4547,runoff,6.009319705744478e-06,2010-07-21,0.0,0.0,7.373116923366906e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4548,storm_outflow,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4549,baseflow,0.03509536117444833,2010-07-21,0.0,0.0,3.2557797541210913e-06,0.0,0.0,0.0,0.0,0.0,9.078224980012441,0.0,0.0,0.0 -4550,catchment_outflow,0.03510137049415407,2010-07-21,0.0,0.0,3.256517065813428e-06,0.0,0.0,0.0,0.0,0.0,9.079307479208804,0.0,0.0,0.0 -4551,reservoir_outflow,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4552,gw1_gw2,0.0,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4553,gw2_gw1,0.00852942458737047,2010-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4554,urban_drainage,0.04,2010-07-22,0.0,0.0,5.853658536585365e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4555,percolation,0.016929417595382298,2010-07-22,0.0,0.0,1.729101027650913e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4556,runoff,4.807455764595582e-06,2010-07-22,0.0,0.0,5.898493538693525e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4557,storm_outflow,0.04,2010-07-22,0.0,0.0,5.853658536585365e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4558,baseflow,0.035049946315500666,2010-07-22,0.0,0.0,3.2519630573049163e-06,0.0,0.0,0.0,0.0,0.0,9.080625106521428,0.0,0.0,0.0 -4559,catchment_outflow,0.07505475377126526,2010-07-22,0.0,0.0,9.10621144324415e-06,0.0,0.0,0.0,0.0,0.0,14.93375711870198,0.0,0.0,0.0 -4560,reservoir_outflow,0.0205,2010-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4561,gw1_gw2,0.0,2010-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4562,gw2_gw1,0.00847256175678801,2010-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4563,urban_drainage,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4564,percolation,0.016590829243474655,2010-07-23,0.0,0.0,1.694519007097895e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4565,runoff,3.845964611676466e-06,2010-07-23,0.0,0.0,4.718794830954819e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4566,storm_outflow,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4567,baseflow,0.035003798522820595,2010-07-23,0.0,0.0,3.248069447179399e-06,0.0,0.0,0.0,0.0,0.0,9.082977487475402,0.0,0.0,0.0 -4568,catchment_outflow,0.03500764448743227,2010-07-23,0.0,0.0,3.2485413266624946e-06,0.0,0.0,0.0,0.0,0.0,9.083671619680096,0.0,0.0,0.0 -4569,reservoir_outflow,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4570,gw1_gw2,0.0,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4571,gw2_gw1,0.008416078011742911,2010-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4572,urban_drainage,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4573,percolation,0.01625901265860516,2010-07-24,0.0,0.0,1.660628626955937e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4574,runoff,3.0767716893411726e-06,2010-07-24,0.0,0.0,3.7750358647638555e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4575,storm_outflow,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4576,baseflow,0.034956936558160054,2010-07-24,0.0,0.0,3.24410084512884e-06,0.0,0.0,0.0,0.0,0.0,9.085283175932092,0.0,0.0,0.0 -4577,catchment_outflow,0.034960013329849396,2010-07-24,0.0,0.0,3.2444783487153166e-06,0.0,0.0,0.0,0.0,0.0,9.085839035350654,0.0,0.0,0.0 -4578,reservoir_outflow,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4579,gw1_gw2,0.0,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4580,gw2_gw1,0.008359970824998087,2010-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4581,urban_drainage,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4582,percolation,0.015933832405433057,2010-07-25,0.0,0.0,1.6274160544168186e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4583,runoff,2.461417351472938e-06,2010-07-25,0.0,0.0,3.020028691811084e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4584,storm_outflow,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4585,baseflow,0.034909378797778244,2010-07-25,0.0,0.0,3.2400591331520606e-06,0.0,0.0,0.0,0.0,0.0,9.087543197897096,0.0,0.0,0.0 -4586,catchment_outflow,0.03491184021512972,2010-07-25,0.0,0.0,3.240361136021242e-06,0.0,0.0,0.0,0.0,0.0,9.087988339694057,0.0,0.0,0.0 -4587,reservoir_outflow,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4588,gw1_gw2,0.0,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4589,gw2_gw1,0.00830423768616484,2010-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4590,urban_drainage,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4591,percolation,0.015615155757324393,2010-07-26,0.0,0.0,1.594867733328482e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4592,runoff,1.9691338811783503e-06,2010-07-26,0.0,0.0,2.416022953448867e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4593,storm_outflow,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4594,baseflow,0.034861143240177105,2010-07-26,0.0,0.0,3.235946154652502e-06,0.0,0.0,0.0,0.0,0.0,9.089758553159278,0.0,0.0,0.0 -4595,catchment_outflow,0.034863112374058286,2010-07-26,0.0,0.0,3.236187756947847e-06,0.0,0.0,0.0,0.0,0.0,9.090115039205804,0.0,0.0,0.0 -4596,reservoir_outflow,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4597,gw1_gw2,0.0,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4598,gw2_gw1,0.008248876101590419,2010-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4599,urban_drainage,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4600,percolation,0.01530285264217791,2010-07-27,0.0,0.0,1.562970378661913e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4601,runoff,1.5753071049426807e-06,2010-07-27,0.0,0.0,1.9328183627590943e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -4602,storm_outflow,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4603,baseflow,0.03481224751368211,2010-07-27,0.0,0.0,3.231763715212525e-06,0.0,0.0,0.0,0.0,0.0,9.091930216095227,0.0,0.0,0.0 -4604,catchment_outflow,0.03481382282078705,2010-07-27,0.0,0.0,3.231956997048801e-06,0.0,0.0,0.0,0.0,0.0,9.092215710437374,0.0,0.0,0.0 -4605,reservoir_outflow,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4606,gw1_gw2,0.0,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4607,gw2_gw1,0.008193883594246111,2010-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4608,urban_drainage,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4609,percolation,0.014996795589334349,2010-07-28,0.0,0.0,1.5317109710886744e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4610,runoff,1.260245683954144e-06,2010-07-28,0.0,0.0,1.5462546902072747e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -4611,storm_outflow,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4612,baseflow,0.034762708883871236,2010-07-28,0.0,0.0,3.227513583352215e-06,0.0,0.0,0.0,0.0,0.0,9.094059136444157,0.0,0.0,0.0 -4613,catchment_outflow,0.03476396912955519,2010-07-28,0.0,0.0,3.227668208821236e-06,0.0,0.0,0.0,0.0,0.0,9.094287782274636,0.0,0.0,0.0 -4614,reservoir_outflow,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4615,gw1_gw2,0.0,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4616,gw2_gw1,0.008139257703617985,2010-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4617,urban_drainage,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4618,percolation,0.014696859677547662,2010-07-29,0.0,0.0,1.5010767516669006e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4619,runoff,1.0081965471633154e-06,2010-07-29,0.0,0.0,1.23700375216582e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -4620,storm_outflow,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4621,baseflow,0.03471254426085543,2010-07-29,0.0,0.0,3.223197491273002e-06,0.0,0.0,0.0,0.0,0.0,9.096146240054505,0.0,0.0,0.0 -4622,catchment_outflow,0.0347135524574026,2010-07-29,0.0,0.0,3.2233211916482187e-06,0.0,0.0,0.0,0.0,0.0,9.096329361763845,0.0,0.0,0.0 -4623,reservoir_outflow,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4624,gw1_gw2,0.0,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4625,gw2_gw1,0.008084995985594113,2010-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4626,urban_drainage,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4627,percolation,0.014402922483996706,2010-07-30,0.0,0.0,1.4710552166335624e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4628,runoff,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4629,storm_outflow,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4630,baseflow,0.034661770206413284,2010-07-30,0.0,0.0,3.2188171355864035e-06,0.0,0.0,0.0,0.0,0.0,9.098192429603424,0.0,0.0,0.0 -4631,catchment_outflow,0.034661770206413284,2010-07-30,0.0,0.0,3.2188171355864035e-06,0.0,0.0,0.0,0.0,0.0,9.098192429603424,0.0,0.0,0.0 -4632,reservoir_outflow,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4633,gw1_gw2,0.0,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4634,gw2_gw1,0.00803109601235672,2010-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4635,urban_drainage,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4636,percolation,0.014114864034316775,2010-07-31,0.0,0.0,1.4416341123008913e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4637,runoff,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4638,storm_outflow,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4639,baseflow,0.03461040294098304,2010-07-31,0.0,0.0,3.21437417802819e-06,0.0,0.0,0.0,0.0,0.0,9.100198585290336,0.0,0.0,0.0 -4640,catchment_outflow,0.03461040294098304,2010-07-31,0.0,0.0,3.21437417802819e-06,0.0,0.0,0.0,0.0,0.0,9.100198585290336,0.0,0.0,0.0 -4641,reservoir_outflow,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4642,gw1_gw2,0.0,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4643,gw2_gw1,0.00797755537227438,2010-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4644,urban_drainage,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4645,percolation,0.013832566753630437,2010-08-01,0.0,0.0,1.4128014300548733e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4646,runoff,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4647,storm_outflow,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4648,baseflow,0.03455845835051466,2010-08-01,0.0,0.0,3.209870246158256e-06,0.0,0.0,0.0,0.0,0.0,9.10216556550563,0.0,0.0,0.0 -4649,catchment_outflow,0.03455845835051466,2010-08-01,0.0,0.0,3.209870246158256e-06,0.0,0.0,0.0,0.0,0.0,9.10216556550563,0.0,0.0,0.0 -4650,reservoir_outflow,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4651,gw1_gw2,0.0,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4652,gw2_gw1,0.007924371669792407,2010-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4653,urban_drainage,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4654,percolation,0.01355591541855783,2010-08-02,0.0,0.0,1.3845454014537764e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348998,0.0,0.0,0.0 -4655,runoff,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4656,storm_outflow,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4657,baseflow,0.034505951993184764,2010-08-02,0.0,0.0,3.205306934046495e-06,0.0,0.0,0.0,0.0,0.0,9.104094207475546,0.0,0.0,0.0 -4658,catchment_outflow,0.034505951993184764,2010-08-02,0.0,0.0,3.205306934046495e-06,0.0,0.0,0.0,0.0,0.0,9.104094207475546,0.0,0.0,0.0 -4659,reservoir_outflow,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4660,gw1_gw2,0.0,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4661,gw2_gw1,0.007871542525327157,2010-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4662,urban_drainage,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4663,percolation,0.013284797110186675,2010-08-03,0.0,0.0,1.356854493424701e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4664,runoff,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4665,storm_outflow,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4666,baseflow,0.03445289910597727,2010-08-03,0.0,0.0,3.2006858029449403e-06,0.0,0.0,0.0,0.0,0.0,9.105985327884248,0.0,0.0,0.0 -4667,catchment_outflow,0.03445289910597727,2010-08-03,0.0,0.0,3.2006858029449403e-06,0.0,0.0,0.0,0.0,0.0,9.105985327884248,0.0,0.0,0.0 -4668,reservoir_outflow,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4669,gw1_gw2,0.0,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4670,gw2_gw1,0.007819065575158213,2010-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4671,urban_drainage,0.016,2010-08-04,0.0,0.0,1.3146341463414636e-05,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4672,percolation,0.01301910116798294,2010-08-04,0.0,0.0,1.3297174035562068e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4673,runoff,0.0,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4674,storm_outflow,0.016,2010-08-04,0.0,0.0,1.3146341463414636e-05,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4675,baseflow,0.034399314611132284,2010-08-04,0.0,0.0,3.1960083819464685e-06,0.0,0.0,0.0,0.0,0.0,9.10783972347401,0.0,0.0,0.0 -4676,catchment_outflow,0.050399314611132284,2010-08-04,0.0,0.0,1.6342349845361106e-05,0.0,0.0,0.0,0.0,0.0,12.370701417789448,0.0,0.0,0.0 -4677,reservoir_outflow,0.008,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4678,gw1_gw2,0.0,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4679,gw2_gw1,0.007766938471323925,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4680,urban_drainage,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4681,percolation,0.012758719144623284,2010-08-05,0.0,0.0,1.3031230554850828e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4682,runoff,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4683,storm_outflow,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4684,baseflow,0.03434521312246601,2010-08-05,0.0,0.0,3.191276168630315e-06,0.0,0.0,0.0,0.0,0.0,9.10965817162443,0.0,0.0,0.0 -4685,catchment_outflow,0.03434521312246601,2010-08-05,0.0,0.0,3.191276168630315e-06,0.0,0.0,0.0,0.0,0.0,9.10965817162443,0.0,0.0,0.0 -4686,reservoir_outflow,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4687,gw1_gw2,0.0,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4688,gw2_gw1,0.007715158881514839,2010-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4689,urban_drainage,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4690,percolation,0.012503544761730816,2010-08-06,0.0,0.0,1.2770605943753809e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4691,runoff,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4692,storm_outflow,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4693,baseflow,0.034290608951564175,2010-08-06,0.0,0.0,3.186490629694678e-06,0.0,0.0,0.0,0.0,0.0,9.111441430911528,0.0,0.0,0.0 -4694,catchment_outflow,0.034290608951564175,2010-08-06,0.0,0.0,3.186490629694678e-06,0.0,0.0,0.0,0.0,0.0,9.111441430911528,0.0,0.0,0.0 -4695,reservoir_outflow,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4696,gw1_gw2,0.0,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4697,gw2_gw1,0.007663724488971547,2010-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4698,urban_drainage,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4699,percolation,0.0122534738664962,2010-08-07,0.0,0.0,1.2515193824878734e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4700,runoff,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4701,storm_outflow,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4702,baseflow,0.034235516113851505,2010-08-07,0.0,0.0,3.181653201576661e-06,0.0,0.0,0.0,0.0,0.0,9.113190241647546,0.0,0.0,0.0 -4703,catchment_outflow,0.034235516113851505,2010-08-07,0.0,0.0,3.181653201576661e-06,0.0,0.0,0.0,0.0,0.0,9.113190241647546,0.0,0.0,0.0 -4704,reservoir_outflow,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4705,gw1_gw2,0.0,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4706,gw2_gw1,0.007612632992378465,2010-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4707,urban_drainage,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4708,percolation,0.01200840438916628,2010-08-08,0.0,0.0,1.2264889948381161e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4709,runoff,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4710,storm_outflow,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4711,baseflow,0.034179948334539786,2010-08-08,0.0,0.0,3.176765291059814e-06,0.0,0.0,0.0,0.0,0.0,9.114905326402218,0.0,0.0,0.0 -4712,catchment_outflow,0.034179948334539786,2010-08-08,0.0,0.0,3.176765291059814e-06,0.0,0.0,0.0,0.0,0.0,9.114905326402218,0.0,0.0,0.0 -4713,reservoir_outflow,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4714,gw1_gw2,0.0,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4715,gw2_gw1,0.007561882105762585,2010-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4716,urban_drainage,0.022,2010-08-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0 -4717,percolation,0.011768236301382951,2010-08-09,0.0,0.0,1.2019592149413536e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4718,runoff,0.0,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4719,storm_outflow,0.022,2010-08-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0 -4720,baseflow,0.0341239190544569,2010-08-09,0.0,0.0,3.1718282758695183e-06,0.0,0.0,0.0,0.0,0.0,9.116587390506275,0.0,0.0,0.0 -4721,catchment_outflow,0.0561239190544569,2010-08-09,0.0,0.0,8.171828275869519e-06,0.0,0.0,0.0,0.0,0.0,12.476997108969886,0.0,0.0,0.0 -4722,reservoir_outflow,0.011,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4723,gw1_gw2,0.0,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4724,gw2_gw1,0.007511469558390438,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4725,urban_drainage,0.039999999999999994,2010-08-10,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4726,percolation,0.011532871575355293,2010-08-10,0.0,0.0,1.1779200306425266e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4727,runoff,0.0,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4728,storm_outflow,0.039999999999999994,2010-08-10,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4729,baseflow,0.03406744143575915,2010-08-10,0.0,0.0,3.166843505256451e-06,0.0,0.0,0.0,0.0,0.0,9.11823712253788,0.0,0.0,0.0 -4730,catchment_outflow,0.07406744143575913,2010-08-10,0.0,0.0,3.7465536501839875e-06,0.0,0.0,0.0,0.0,0.0,13.563787133659446,0.0,0.0,0.0 -4731,reservoir_outflow,0.0345,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4732,gw1_gw2,0.0,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4733,gw2_gw1,0.0074613930946680895,2010-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4734,urban_drainage,0.009000000000000011,2010-08-11,0.0,0.0,1.4202898550724638e-06,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4735,percolation,0.011302214143848186,2010-08-11,0.0,0.0,1.154361630029676e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348998,0.0,0.0,0.0 -4736,runoff,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4737,storm_outflow,0.009000000000000011,2010-08-11,0.0,0.0,1.4202898550724638e-06,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4738,baseflow,0.034010528367529366,2010-08-11,0.0,0.0,3.161812300568384e-06,0.0,0.0,0.0,0.0,0.0,9.11985519479267,0.0,0.0,0.0 -4739,catchment_outflow,0.043010528367529374,2010-08-11,0.0,0.0,4.582102155640848e-06,0.0,0.0,0.0,0.0,0.0,10.842021977165562,0.0,0.0,0.0 -4740,reservoir_outflow,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4741,gw1_gw2,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4742,gw2_gw1,0.007411650474036691,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4743,urban_drainage,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4744,percolation,0.011076169860971223,2010-08-12,0.0,0.0,1.1312743974290826e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4745,runoff,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4746,storm_outflow,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4747,baseflow,0.033953192471262966,2010-08-12,0.0,0.0,3.1567359558105354e-06,0.0,0.0,0.0,0.0,0.0,9.121442263738059,0.0,0.0,0.0 -4748,catchment_outflow,0.033953192471262966,2010-08-12,0.0,0.0,3.1567359558105354e-06,0.0,0.0,0.0,0.0,0.0,9.121442263738059,0.0,0.0,0.0 -4749,reservoir_outflow,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4750,gw1_gw2,0.0,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4751,gw2_gw1,0.007362239470876908,2010-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4752,urban_drainage,0.03799999999999999,2010-08-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0 -4753,percolation,0.010854646463751798,2010-08-13,0.0,0.0,1.108648909480501e-06,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4754,runoff,0.0,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4755,storm_outflow,0.03799999999999999,2010-08-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0 -4756,baseflow,0.0338954461062442,2010-08-13,0.0,0.0,3.151615738194711e-06,0.0,0.0,0.0,0.0,0.0,9.122998970452418,0.0,0.0,0.0 -4757,catchment_outflow,0.07189544610624418,2010-08-13,0.0,0.0,5.151615738194711e-06,0.0,0.0,0.0,0.0,0.0,13.324104063207042,0.0,0.0,0.0 -4758,reservoir_outflow,0.018999999999999996,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4759,gw1_gw2,0.0,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4760,gw2_gw1,0.007313157874404475,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4761,urban_drainage,0.018,2010-08-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4762,percolation,0.011942548349369182,2010-08-14,0.0,0.0,1.3022296805535283e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4763,runoff,0.008929718448606915,2010-08-14,0.0,0.0,7.192781245089642e-07,0.0,0.0,0.0,0.0,0.0,16.546771760971783,0.0,0.0,0.0 -4764,storm_outflow,0.018,2010-08-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4765,baseflow,0.033840563861852004,2010-08-14,0.0,0.0,3.1469922730506084e-06,0.0,0.0,0.0,0.0,0.0,9.125197702570146,0.0,0.0,0.0 -4766,catchment_outflow,0.06077028231045892,2010-08-14,0.0,0.0,4.866270397559572e-06,0.0,0.0,0.0,0.0,0.0,12.541888986313186,0.0,0.0,0.0 -4767,reservoir_outflow,0.009,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4768,gw1_gw2,0.0,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4769,gw2_gw1,0.0072644034885748,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4770,urban_drainage,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4771,percolation,0.011703697382381799,2010-08-15,0.0,0.0,1.2761850869424576e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4772,runoff,0.0034806314188366356,2010-08-15,0.0,0.0,5.754224996071714e-07,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 -4773,storm_outflow,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4774,baseflow,0.033785221695653324,2010-08-15,0.0,0.0,3.1423152550853372e-06,0.0,0.0,0.0,0.0,0.0,9.127354085481295,0.0,0.0,0.0 -4775,catchment_outflow,0.03726585311448996,2010-08-15,0.0,0.0,3.7177377546925087e-06,0.0,0.0,0.0,0.0,0.0,9.77788297890201,0.0,0.0,0.0 -4776,reservoir_outflow,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4777,gw1_gw2,0.0,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4778,gw2_gw1,0.007215974131984382,2010-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4779,urban_drainage,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4780,percolation,0.011469623434734164,2010-08-16,0.0,0.0,1.2506613852036087e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4781,runoff,0.004073262481869353,2010-08-16,0.0,0.0,4.6033799968573707e-07,0.0,0.0,0.0,0.0,0.0,16.313972885493733,0.0,0.0,0.0 -4782,storm_outflow,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4783,baseflow,0.03372943270000103,2010-08-16,0.0,0.0,3.137586120410634e-06,0.0,0.0,0.0,0.0,0.0,9.1294690029068,0.0,0.0,0.0 -4784,catchment_outflow,0.037802695181870384,2010-08-16,0.0,0.0,3.597924120096371e-06,0.0,0.0,0.0,0.0,0.0,9.903603491863048,0.0,0.0,0.0 -4785,reservoir_outflow,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4786,gw1_gw2,0.0,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4787,gw2_gw1,0.007167867637770798,2010-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4788,urban_drainage,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4789,percolation,0.011240230966039481,2010-08-17,0.0,0.0,1.2256481574995365e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4790,runoff,0.0025531852403099355,2010-08-17,0.0,0.0,3.6827039974858963e-07,0.0,0.0,0.0,0.0,0.0,16.169819876077586,0.0,0.0,0.0 -4791,storm_outflow,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4792,baseflow,0.033673209695666124,2010-08-17,0.0,0.0,3.132806275503356e-06,0.0,0.0,0.0,0.0,0.0,9.13154331764842,0.0,0.0,0.0 -4793,catchment_outflow,0.03622639493597606,2010-08-17,0.0,0.0,3.5010766752519457e-06,0.0,0.0,0.0,0.0,0.0,9.627591126379034,0.0,0.0,0.0 -4794,reservoir_outflow,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4795,gw1_gw2,0.0,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4796,gw2_gw1,0.007120081853519089,2010-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4797,urban_drainage,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4798,percolation,0.011015426346718694,2010-08-18,0.0,0.0,1.2011351943495457e-06,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4799,runoff,0.0025981568159106705,2010-08-18,0.0,0.0,2.9461631979887173e-07,0.0,0.0,0.0,0.0,0.0,16.305632930936174,0.0,0.0,0.0 -4800,storm_outflow,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4801,baseflow,0.033616565237293755,2010-08-18,0.0,0.0,3.127977097800471e-06,0.0,0.0,0.0,0.0,0.0,9.133577872173195,0.0,0.0,0.0 -4802,catchment_outflow,0.036214722053204425,2010-08-18,0.0,0.0,3.4225934175993425e-06,0.0,0.0,0.0,0.0,0.0,9.648123412730857,0.0,0.0,0.0 -4803,reservoir_outflow,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4804,gw1_gw2,0.0,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4805,gw2_gw1,0.0070726146411622896,2010-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4806,urban_drainage,0.021000000000000005,2010-08-19,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 -4807,percolation,0.011785175370352197,2010-08-19,0.0,0.0,1.343225063830581e-06,0.0,0.0,0.0,0.0,0.0,11.968273197789067,0.0,0.0,0.0 -4808,runoff,0.008199744606725179,2010-08-19,0.0,0.0,7.894016337325175e-07,0.0,0.0,0.0,0.0,0.0,16.300148419994997,0.0,0.0,0.0 -4809,storm_outflow,0.021000000000000005,2010-08-19,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 -4810,baseflow,0.03356198676262641,2010-08-19,0.0,0.0,3.1235152177155466e-06,0.0,0.0,0.0,0.0,0.0,9.136066355778931,0.0,0.0,0.0 -4811,catchment_outflow,0.06276173136935159,2010-08-19,0.0,0.0,8.912916851448064e-06,0.0,0.0,0.0,0.0,0.0,12.65072799630457,0.0,0.0,0.0 -4812,reservoir_outflow,0.010500000000000002,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4813,gw1_gw2,0.0,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4814,gw2_gw1,0.007025463876887628,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4815,urban_drainage,0.0039999999999999975,2010-08-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 -4816,percolation,0.013250908261620647,2010-08-20,0.0,0.0,1.6004550571885217e-06,0.0,0.0,0.0,0.0,0.0,12.46908293542639,0.0,0.0,0.0 -4817,runoff,0.015422093709811405,2010-08-20,0.0,0.0,1.578502955767857e-06,0.0,0.0,0.0,0.0,0.0,16.281389794005836,0.0,0.0,0.0 -4818,storm_outflow,0.0039999999999999975,2010-08-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 -4819,baseflow,0.03351120906637389,2010-08-20,0.0,0.0,3.1197075673142293e-06,0.0,0.0,0.0,0.0,0.0,9.139361185938885,0.0,0.0,0.0 -4820,catchment_outflow,0.0529333027761853,2010-08-20,0.0,0.0,5.698210523082086e-06,0.0,0.0,0.0,0.0,0.0,11.807714097247356,0.0,0.0,0.0 -4821,reservoir_outflow,0.0019999999999999987,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4822,gw1_gw2,0.0,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4823,gw2_gw1,0.006978627451041853,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4824,urban_drainage,0.024,2010-08-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 -4825,percolation,0.016241523030397473,2010-08-21,0.0,0.0,2.1027358115022077e-06,0.0,0.0,0.0,0.0,0.0,13.165160365544303,0.0,0.0,0.0 -4826,runoff,0.029837096379700435,2010-08-21,0.0,0.0,3.043768549472473e-06,0.0,0.0,0.0,0.0,0.0,16.326164841762676,0.0,0.0,0.0 -4827,storm_outflow,0.024,2010-08-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 -4828,baseflow,0.03346803485128395,2010-08-21,0.0,0.0,3.117165137924699e-06,0.0,0.0,0.0,0.0,0.0,9.144245332138524,0.0,0.0,0.0 -4829,catchment_outflow,0.08730513123098438,2010-08-21,0.0,0.0,7.160933687397172e-06,0.0,0.0,0.0,0.0,0.0,13.754316629365348,0.0,0.0,0.0 -4830,reservoir_outflow,0.012,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4831,gw1_gw2,0.0,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4832,gw2_gw1,0.00693210326803495,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4833,urban_drainage,0.04,2010-08-22,0.0,0.0,1.4336917562724012e-07,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 -4834,percolation,0.04245832588540559,2010-08-22,0.0,0.0,5.763905915885732e-06,0.0,0.0,0.0,0.0,0.0,15.028959457364785,0.0,0.0,0.0 -4835,runoff,0.19633170734321276,2010-08-22,0.0,0.0,1.477909757495654e-05,0.0,0.0,0.0,0.0,0.0,16.561308223014187,0.0,0.0,0.0 -4836,storm_outflow,0.04,2010-08-22,0.0,0.0,1.4336917562724012e-07,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 -4837,baseflow,0.03349051057886925,2010-08-22,0.0,0.0,3.1237819898696016e-06,0.0,0.0,0.0,0.0,0.0,9.162896519127962,0.0,0.0,0.0 -4838,catchment_outflow,0.269822217922082,2010-08-22,0.0,0.0,1.804624874045338e-05,0.0,0.0,0.0,0.0,0.0,15.716517895101962,0.0,0.0,0.0 -4839,reservoir_outflow,0.1,2010-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4840,gw1_gw2,0.0,2010-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4841,gw2_gw1,0.006885889246248134,2010-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4842,urban_drainage,0.04,2010-08-23,0.0,0.0,2.614972992074309e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 -4843,percolation,0.050604026811180036,2010-08-23,0.0,0.0,6.8706760055758725e-06,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 -4844,runoff,0.14410636539140584,2010-08-23,0.0,0.0,1.5896772086658088e-05,0.0,0.0,0.0,0.0,0.0,16.331912686036453,0.0,0.0,0.0 -4845,storm_outflow,0.04,2010-08-23,0.0,0.0,2.614972992074309e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 -4846,baseflow,0.03353329436945003,2010-08-23,0.0,0.0,3.133149224908867e-06,0.0,0.0,0.0,0.0,0.0,9.185741261665326,0.0,0.0,0.0 -4847,catchment_outflow,0.21763965976085586,2010-08-23,0.0,0.0,1.9291418610774386e-05,0.0,0.0,0.0,0.0,0.0,15.366221290581901,0.0,0.0,0.0 -4848,reservoir_outflow,0.062000000000000006,2010-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4849,gw1_gw2,0.0,2010-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4850,gw2_gw1,0.006839983317939869,2010-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4851,urban_drainage,0.04,2010-08-24,0.0,0.0,4.6135707114050287e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 -4852,percolation,0.04959194627495643,2010-08-24,0.0,0.0,6.733262485464355e-06,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 -4853,runoff,0.09051817865641333,2010-08-24,0.0,0.0,1.271741766932647e-05,0.0,0.0,0.0,0.0,0.0,16.11431704187229,0.0,0.0,0.0 -4854,storm_outflow,0.04,2010-08-24,0.0,0.0,4.6135707114050287e-07,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 -4855,baseflow,0.0335734409992138,2010-08-24,0.0,0.0,3.142149508060256e-06,0.0,0.0,0.0,0.0,0.0,9.208017977319221,0.0,0.0,0.0 -4856,catchment_outflow,0.16409161965562713,2010-08-24,0.0,0.0,1.632092424852723e-05,0.0,0.0,0.0,0.0,0.0,14.933863856271628,0.0,0.0,0.0 -4857,reservoir_outflow,0.0,2010-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4858,gw1_gw2,0.0,2010-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4859,gw2_gw1,0.0067943834291535055,2010-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4860,urban_drainage,0.04,2010-08-25,0.0,0.0,2.4387365400971403e-07,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0 -4861,percolation,0.09601529819088278,2010-08-25,0.0,0.0,1.2056264873751756e-05,0.0,0.0,0.0,0.0,0.0,15.740952706241456,0.0,0.0,0.0 -4862,runoff,0.39644880008541483,2010-08-25,0.0,0.0,2.8366159595450136e-05,0.0,0.0,0.0,0.0,0.0,16.486745203032157,0.0,0.0,0.0 -4863,storm_outflow,0.04,2010-08-25,0.0,0.0,2.4387365400971403e-07,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0 -4864,baseflow,0.03372954564219297,2010-08-25,0.0,0.0,3.1644347964744847e-06,0.0,0.0,0.0,0.0,0.0,9.25450998188942,0.0,0.0,0.0 -4865,catchment_outflow,0.4701783457276078,2010-08-25,0.0,0.0,3.177446804593433e-05,0.0,0.0,0.0,0.0,0.0,16.005513638138794,0.0,0.0,0.0 -4866,reservoir_outflow,0.1,2010-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4867,gw1_gw2,0.0,2010-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4868,gw2_gw1,0.006749087539625798,2010-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4869,urban_drainage,0.04,2010-08-26,0.0,0.0,3.044933698641966e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4870,percolation,0.1018987121236057,2010-08-26,0.0,0.0,1.2694385965616054e-05,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 -4871,runoff,0.23745764050732734,2010-08-26,0.0,0.0,2.5623748974157876e-05,0.0,0.0,0.0,0.0,0.0,16.224479261058995,0.0,0.0,0.0 -4872,storm_outflow,0.04,2010-08-26,0.0,0.0,3.044933698641966e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4873,baseflow,0.033899968558396505,2010-08-26,0.0,0.0,3.1882596743973386e-06,0.0,0.0,0.0,0.0,0.0,9.303366396538431,0.0,0.0,0.0 -4874,catchment_outflow,0.31135760906572385,2010-08-26,0.0,0.0,2.9116502018419413e-05,0.0,0.0,0.0,0.0,0.0,15.557397590698148,0.0,0.0,0.0 -4875,reservoir_outflow,0.08299999999999998,2010-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4876,gw1_gw2,0.0,2010-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4877,gw2_gw1,0.0067040936226950626,2010-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4878,urban_drainage,0.04,2010-08-27,0.0,0.0,4.0578844514609863e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4879,percolation,0.09986073788113355,2010-08-27,0.0,0.0,1.2440498246303729e-05,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 -4880,runoff,0.1685366679298627,2010-08-27,0.0,0.0,2.04989991793263e-05,0.0,0.0,0.0,0.0,0.0,16.188458830519906,0.0,0.0,0.0 -4881,storm_outflow,0.04,2010-08-27,0.0,0.0,4.0578844514609863e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4882,baseflow,0.03406487048170335,2010-08-27,0.0,0.0,3.2113902708271043e-06,0.0,0.0,0.0,0.0,0.0,9.350655852956312,0.0,0.0,0.0 -4883,catchment_outflow,0.24260153841156604,2010-08-27,0.0,0.0,2.4116177895299502e-05,0.0,0.0,0.0,0.0,0.0,15.345251065364383,0.0,0.0,0.0 -4884,reservoir_outflow,0.0,2010-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4885,gw1_gw2,0.0,2010-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4886,gw2_gw1,0.0066593996652102305,2010-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4887,urban_drainage,0.04,2010-08-28,0.0,0.0,5.2853275357192e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4888,percolation,0.09786352312351088,2010-08-28,0.0,0.0,1.2191688281377655e-05,0.0,0.0,0.0,0.0,0.0,15.755989288000574,0.0,0.0,0.0 -4889,runoff,0.13444874699912474,2010-08-28,0.0,0.0,1.639919934346104e-05,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 -4890,storm_outflow,0.04,2010-08-28,0.0,0.0,5.2853275357192e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4891,baseflow,0.03422436711330787,2010-08-28,0.0,0.0,3.2338410158534806e-06,0.0,0.0,0.0,0.0,0.0,9.396445486893072,0.0,0.0,0.0 -4892,catchment_outflow,0.2086731141124326,2010-08-28,0.0,0.0,2.016157311288644e-05,0.0,0.0,0.0,0.0,0.0,15.21050654255134,0.0,0.0,0.0 -4893,reservoir_outflow,0.0,2010-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4894,gw1_gw2,0.0,2010-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4895,gw2_gw1,0.006615003667442033,2010-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4896,urban_drainage,0.04,2010-08-29,0.0,0.0,6.590190357356146e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4897,percolation,0.09734799031066098,2010-08-29,0.0,0.0,1.2114848141750284e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 -4898,runoff,0.11742351835985987,2010-08-29,0.0,0.0,1.367600489476943e-05,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4899,storm_outflow,0.04,2010-08-29,0.0,0.0,6.590190357356146e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4900,baseflow,0.034382176171301244,2010-08-29,0.0,0.0,3.2560435336682227e-06,0.0,0.0,0.0,0.0,0.0,9.441382994674656,0.0,0.0,0.0 -4901,catchment_outflow,0.19180569453116111,2010-08-29,0.0,0.0,1.7591067464173267e-05,0.0,0.0,0.0,0.0,0.0,15.078065803901968,0.0,0.0,0.0 -4902,reservoir_outflow,0.0,2010-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4903,gw1_gw2,0.0,2010-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4904,gw2_gw1,0.006570903642992398,2010-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4905,urban_drainage,0.04,2010-08-30,0.0,0.0,8.469355753635731e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4906,percolation,0.09540103050444775,2010-08-30,0.0,0.0,1.1872551178915274e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 -4907,runoff,0.08989183181176068,2010-08-30,0.0,0.0,1.0940803915815545e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4908,storm_outflow,0.04,2010-08-30,0.0,0.0,8.469355753635731e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4909,baseflow,0.03453472330713411,2010-08-30,0.0,0.0,3.27758480278134e-06,0.0,0.0,0.0,0.0,0.0,9.484916877900343,0.0,0.0,0.0 -4910,catchment_outflow,0.16442655511889478,2010-08-30,0.0,0.0,1.5065324293960459e-05,0.0,0.0,0.0,0.0,0.0,14.925622628192256,0.0,0.0,0.0 -4911,reservoir_outflow,0.0,2010-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4912,gw1_gw2,0.0,2010-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4913,gw2_gw1,0.006527097618705824,2010-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4914,urban_drainage,0.04,2010-08-31,0.0,0.0,1.10226612023923e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4915,percolation,0.09349300989435881,2010-08-31,0.0,0.0,1.1635100155336972e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522486,0.0,0.0,0.0 -4916,runoff,0.07191346544940855,2010-08-31,0.0,0.0,8.752643132652438e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4917,storm_outflow,0.04,2010-08-31,0.0,0.0,1.10226612023923e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4918,baseflow,0.03468211902360218,2010-08-31,0.0,0.0,3.298478591162729e-06,0.0,0.0,0.0,0.0,0.0,9.527105381838547,0.0,0.0,0.0 -4919,catchment_outflow,0.14659558447301074,2010-08-31,0.0,0.0,1.3153387844054398e-05,0.0,0.0,0.0,0.0,0.0,14.781405190509282,0.0,0.0,0.0 -4920,reservoir_outflow,0.0,2010-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4921,gw1_gw2,0.0,2010-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4922,gw2_gw1,0.006483583634581436,2010-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4923,urban_drainage,0.04,2010-09-01,0.0,0.0,1.4829122699618347e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4924,percolation,0.09162314969647163,2010-09-01,0.0,0.0,1.140239815223023e-05,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 -4925,runoff,0.057530772359526826,2010-09-01,0.0,0.0,7.0021145061219475e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4926,storm_outflow,0.04,2010-09-01,0.0,0.0,1.4829122699618347e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4927,baseflow,0.03482447160028435,2010-09-01,0.0,0.0,3.3187383900653975e-06,0.0,0.0,0.0,0.0,0.0,9.568003615357508,0.0,0.0,0.0 -4928,catchment_outflow,0.1323552439598112,2010-09-01,0.0,0.0,1.180376516614918e-05,0.0,0.0,0.0,0.0,0.0,14.639059107540184,0.0,0.0,0.0 -4929,reservoir_outflow,0.0,2010-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4930,gw1_gw2,0.0,2010-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4931,gw2_gw1,0.006440359743684176,2010-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4932,urban_drainage,0.04,2010-09-02,0.0,0.0,2.159205914614618e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4933,percolation,0.0897906867025422,2010-09-02,0.0,0.0,1.1174350189185626e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 -4934,runoff,0.04602461788762147,2010-09-02,0.0,0.0,5.601691604897559e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4935,storm_outflow,0.04,2010-09-02,0.0,0.0,2.159205914614618e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4936,baseflow,0.03496188713804,2010-09-02,0.0,0.0,3.338377419563198e-06,0.0,0.0,0.0,0.0,0.0,9.607663759490833,0.0,0.0,0.0 -4937,catchment_outflow,0.12098650502566147,2010-09-02,0.0,0.0,1.1099274939075375e-05,0.0,0.0,0.0,0.0,0.0,14.502173247545594,0.0,0.0,0.0 -4938,reservoir_outflow,0.0,2010-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4939,gw1_gw2,0.0,2010-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4940,gw2_gw1,0.006397424012059539,2010-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4941,urban_drainage,0.04,2010-09-03,0.0,0.0,4.093720293505137e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4942,percolation,0.08799487296849134,2010-09-03,0.0,0.0,1.0950863185401911e-05,0.0,0.0,0.0,0.0,0.0,15.745007195522492,0.0,0.0,0.0 -4943,runoff,0.036819694310097184,2010-09-03,0.0,0.0,4.481353283918047e-06,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4944,storm_outflow,0.04,2010-09-03,0.0,0.0,4.093720293505137e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4945,baseflow,0.03509446960261613,2010-09-03,0.0,0.0,3.357408633977795e-06,0.0,0.0,0.0,0.0,0.0,9.646135259568538,0.0,0.0,0.0 -4946,catchment_outflow,0.11191416391271332,2010-09-03,0.0,0.0,1.193248221140098e-05,0.0,0.0,0.0,0.0,0.0,14.373863412741256,0.0,0.0,0.0 -4947,reservoir_outflow,0.0,2010-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4948,gw1_gw2,0.0,2010-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4949,gw2_gw1,0.0063547745186459895,2010-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4950,urban_drainage,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4951,percolation,0.08623497550912154,2010-09-04,0.0,0.0,1.0731845921693876e-05,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 -4952,runoff,0.030125016402246907,2010-09-04,0.0,0.0,3.585082627134438e-06,0.0,0.0,0.0,0.0,0.0,16.11565393294171,0.0,0.0,0.0 -4953,storm_outflow,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4954,baseflow,0.03522232086738239,2010-09-04,0.0,0.0,3.375844727197085e-06,0.0,0.0,0.0,0.0,0.0,9.6834650024048,0.0,0.0,0.0 -4955,catchment_outflow,0.0653473372696293,2010-09-04,0.0,0.0,6.960927354331523e-06,0.0,0.0,0.0,0.0,0.0,12.648693657939194,0.0,0.0,0.0 -4956,reservoir_outflow,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4957,gw1_gw2,0.0,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4958,gw2_gw1,0.0063124093551882865,2010-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4959,urban_drainage,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4960,percolation,0.08614718598945256,2010-09-05,0.0,0.0,1.0720250135998034e-05,0.0,0.0,0.0,0.0,0.0,15.71905178520973,0.0,0.0,0.0 -4961,runoff,0.034764514819870036,2010-09-05,0.0,0.0,3.544869877501002e-06,0.0,0.0,0.0,0.0,0.0,15.708571053283858,0.0,0.0,0.0 -4962,storm_outflow,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4963,baseflow,0.035349633030187566,2010-09-05,0.0,0.0,3.394205740719087e-06,0.0,0.0,0.0,0.0,0.0,9.720236870495325,0.0,0.0,0.0 -4964,catchment_outflow,0.0701141478500576,2010-09-05,0.0,0.0,6.939075618220089e-06,0.0,0.0,0.0,0.0,0.0,12.689416969340602,0.0,0.0,0.0 -4965,reservoir_outflow,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4966,gw1_gw2,0.0,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4967,gw2_gw1,0.006270326626153811,2010-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4968,urban_drainage,0.04,2010-09-06,0.0,0.0,1.5381530334943667e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4969,percolation,0.09322237316328505,2010-09-06,0.0,0.0,1.154051406692481e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4970,runoff,0.08341451448800563,2010-09-06,0.0,0.0,6.2847923474899245e-06,0.0,0.0,0.0,0.0,0.0,15.160616237966915,0.0,0.0,0.0 -4971,storm_outflow,0.04,2010-09-06,0.0,0.0,1.5381530334943667e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4972,baseflow,0.03549431488052031,2010-09-06,0.0,0.0,3.414571511534602e-06,0.0,0.0,0.0,0.0,0.0,9.758870778447983,0.0,0.0,0.0 -4973,catchment_outflow,0.15890882936852596,2010-09-06,0.0,0.0,1.1237516892518894e-05,0.0,0.0,0.0,0.0,0.0,13.989152672959158,0.0,0.0,0.0 -4974,reservoir_outflow,0.043,2010-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4975,gw1_gw2,0.0,2010-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4976,gw2_gw1,0.006228524448645878,2010-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4977,urban_drainage,0.030999999999999993,2010-09-07,0.0,0.0,2.768875988518521e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4978,percolation,0.09135792570001934,2010-09-07,0.0,0.0,1.1309703785586315e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4979,runoff,0.04405523065659248,2010-09-07,0.0,0.0,5.02783387799194e-06,0.0,0.0,0.0,0.0,0.0,15.09001812585737,0.0,0.0,0.0 -4980,storm_outflow,0.030999999999999993,2010-09-07,0.0,0.0,2.768875988518521e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4981,baseflow,0.035633973907569054,2010-09-07,0.0,0.0,3.4343093422197306e-06,0.0,0.0,0.0,0.0,0.0,9.796335997210567,0.0,0.0,0.0 -4982,catchment_outflow,0.11068920456416154,2010-09-07,0.0,0.0,1.123101920873019e-05,0.0,0.0,0.0,0.0,0.0,13.444640932427696,0.0,0.0,0.0 -4983,reservoir_outflow,0.0,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4984,gw1_gw2,0.0,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4985,gw2_gw1,0.0061870009523214975,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4986,urban_drainage,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4987,percolation,0.08953076718601896,2010-09-08,0.0,0.0,1.108350970987459e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4988,runoff,0.03362808305506822,2010-09-08,0.0,0.0,4.022267102393551e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4989,storm_outflow,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4990,baseflow,0.03576871589076518,2010-09-08,0.0,0.0,3.4534323431388685e-06,0.0,0.0,0.0,0.0,0.0,9.832679158502524,0.0,0.0,0.0 -4991,catchment_outflow,0.0693967989458334,2010-09-08,0.0,0.0,7.475699445532419e-06,0.0,0.0,0.0,0.0,0.0,12.374791756927696,0.0,0.0,0.0 -4992,reservoir_outflow,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4993,gw1_gw2,0.0,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4994,gw2_gw1,0.006145754279306105,2010-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4995,urban_drainage,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4996,percolation,0.08774015184229858,2010-09-09,0.0,0.0,1.0861839515677097e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4997,runoff,0.02835642221045755,2010-09-09,0.0,0.0,3.2178136819148416e-06,0.0,0.0,0.0,0.0,0.0,15.093916621816792,0.0,0.0,0.0 -4998,storm_outflow,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4999,baseflow,0.03589864448064402,2010-09-09,0.0,0.0,3.471953361070214e-06,0.0,0.0,0.0,0.0,0.0,9.8679444833831,0.0,0.0,0.0 -5000,catchment_outflow,0.06425506669110156,2010-09-09,0.0,0.0,6.689767042985056e-06,0.0,0.0,0.0,0.0,0.0,12.174219771056807,0.0,0.0,0.0 -5001,reservoir_outflow,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5002,gw1_gw2,0.0,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5003,gw2_gw1,0.006104782584110602,2010-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5004,urban_drainage,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5005,percolation,0.08598534880545261,2010-09-10,0.0,0.0,1.0644602725363556e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -5006,runoff,0.024953329866313264,2010-09-10,0.0,0.0,2.5742509455318726e-06,0.0,0.0,0.0,0.0,0.0,15.122904136465596,0.0,0.0,0.0 -5007,storm_outflow,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5008,baseflow,0.03602386124145604,2010-09-10,0.0,0.0,3.489884984480948e-06,0.0,0.0,0.0,0.0,0.0,9.9021739362382,0.0,0.0,0.0 -5009,catchment_outflow,0.06097719110776931,2010-09-10,0.0,0.0,6.0641359300128205e-06,0.0,0.0,0.0,0.0,0.0,12.038622015636516,0.0,0.0,0.0 -5010,reservoir_outflow,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5011,gw1_gw2,0.0,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5012,gw2_gw1,0.006064084033550188,2010-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5013,urban_drainage,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5014,percolation,0.08426564182934354,2010-09-11,0.0,0.0,1.0431710670856284e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -5015,runoff,0.017559501166351164,2010-09-11,0.0,0.0,2.0594007564254984e-06,0.0,0.0,0.0,0.0,0.0,15.085468085253943,0.0,0.0,0.0 -5016,storm_outflow,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5017,baseflow,0.03614446569292576,2010-09-11,0.0,0.0,3.5072395486968857e-06,0.0,0.0,0.0,0.0,0.0,9.935407367103993,0.0,0.0,0.0 -5018,catchment_outflow,0.05370396685927692,2010-09-11,0.0,0.0,5.566640305122384e-06,0.0,0.0,0.0,0.0,0.0,11.619314580589693,0.0,0.0,0.0 -5019,reservoir_outflow,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5020,gw1_gw2,0.0,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5021,gw2_gw1,0.006023656806659971,2010-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5022,urban_drainage,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5023,percolation,0.08258032899275668,2010-09-12,0.0,0.0,1.022307645743916e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -5024,runoff,0.013774062819355943,2010-09-12,0.0,0.0,1.6475206051403989e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -5025,storm_outflow,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5026,baseflow,0.03626055535117534,2010-09-12,0.0,0.0,3.5240291409687417e-06,0.0,0.0,0.0,0.0,0.0,9.967682643345096,0.0,0.0,0.0 -5027,catchment_outflow,0.05003461817053128,2010-09-12,0.0,0.0,5.17154974610914e-06,0.0,0.0,0.0,0.0,0.0,11.374704937657155,0.0,0.0,0.0 -5028,reservoir_outflow,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5029,gw1_gw2,0.0,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5030,gw2_gw1,0.005983499094615575,2010-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5031,urban_drainage,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5032,percolation,0.08092872241290154,2010-09-13,0.0,0.0,1.0018614928290377e-05,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -5033,runoff,0.01257821468497357,2010-09-13,0.0,0.0,1.3180164841123191e-06,0.0,0.0,0.0,0.0,0.0,15.127840272164477,0.0,0.0,0.0 -5034,storm_outflow,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5035,baseflow,0.036372225768829654,2010-09-13,0.0,0.0,3.5402656054370464e-06,0.0,0.0,0.0,0.0,0.0,9.999035771604866,0.0,0.0,0.0 -5036,catchment_outflow,0.04895044045380322,2010-09-13,0.0,0.0,4.8582820895493655e-06,0.0,0.0,0.0,0.0,0.0,11.316923894515215,0.0,0.0,0.0 -5037,reservoir_outflow,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5038,gw1_gw2,0.0,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5039,gw2_gw1,0.005943609100651593,2010-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5040,urban_drainage,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5041,percolation,0.08066367250894078,2010-09-14,0.0,0.0,9.988099147707158e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -5042,runoff,0.018076357612737636,2010-09-14,0.0,0.0,1.6206015805651482e-06,0.0,0.0,0.0,0.0,0.0,15.09358278196015,0.0,0.0,0.0 -5043,storm_outflow,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5044,baseflow,0.03648295438567993,2010-09-14,0.0,0.0,3.5563851892927218e-06,0.0,0.0,0.0,0.0,0.0,10.029933719998455,0.0,0.0,0.0 -5045,catchment_outflow,0.05455931199841757,2010-09-14,0.0,0.0,5.17698676985787e-06,0.0,0.0,0.0,0.0,0.0,11.707600243214102,0.0,0.0,0.0 -5046,reservoir_outflow,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5047,gw1_gw2,0.0,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5048,gw2_gw1,0.0059039850399805974,2010-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5049,urban_drainage,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5050,percolation,0.07905039905876196,2010-09-15,0.0,0.0,9.788337164753014e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -5051,runoff,0.0111422307741807,2010-09-15,0.0,0.0,1.2964812644521185e-06,0.0,0.0,0.0,0.0,0.0,14.963131088202434,0.0,0.0,0.0 -5052,storm_outflow,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5053,baseflow,0.03658937299736264,2010-09-15,0.0,0.0,3.571965069231373e-06,0.0,0.0,0.0,0.0,0.0,10.05995875582566,0.0,0.0,0.0 -5054,catchment_outflow,0.04773160377154334,2010-09-15,0.0,0.0,4.868446333683491e-06,0.0,0.0,0.0,0.0,0.0,11.204531184491685,0.0,0.0,0.0 -5055,reservoir_outflow,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5056,gw1_gw2,0.0,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5057,gw2_gw1,0.005864625139713731,2010-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5058,urban_drainage,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5059,percolation,0.07746939107758673,2010-09-16,0.0,0.0,9.592570421457955e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601504,0.0,0.0,0.0 -5060,runoff,0.008913379801366075,2010-09-16,0.0,0.0,1.037185011561695e-06,0.0,0.0,0.0,0.0,0.0,14.953730916705391,0.0,0.0,0.0 -5061,storm_outflow,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5062,baseflow,0.0366915730425632,2010-09-16,0.0,0.0,3.5870165826119397e-06,0.0,0.0,0.0,0.0,0.0,10.089142847663021,0.0,0.0,0.0 -5063,catchment_outflow,0.04560495284392928,2010-09-16,0.0,0.0,4.624201594173634e-06,0.0,0.0,0.0,0.0,0.0,11.039915040870989,0.0,0.0,0.0 -5064,reservoir_outflow,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5065,gw1_gw2,0.0,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5066,gw2_gw1,0.0058255276387825464,2010-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5067,urban_drainage,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5068,percolation,0.075920003256035,2010-09-17,0.0,0.0,9.400719013028796e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601508,0.0,0.0,0.0 -5069,runoff,0.006823500126913918,2010-09-17,0.0,0.0,8.29748009249356e-07,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -5070,storm_outflow,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5071,baseflow,0.036789644118096876,2010-09-17,0.0,0.0,3.6015508386879815e-06,0.0,0.0,0.0,0.0,0.0,10.117516454332485,0.0,0.0,0.0 -5072,catchment_outflow,0.043613144245010796,2010-09-17,0.0,0.0,4.431298847937338e-06,0.0,0.0,0.0,0.0,0.0,10.87338828438141,0.0,0.0,0.0 -5073,reservoir_outflow,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5074,gw1_gw2,0.0,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5075,gw2_gw1,0.0057866907878572965,2010-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5076,urban_drainage,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5077,percolation,0.0744016031909143,2010-09-18,0.0,0.0,9.21270463276822e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -5078,runoff,0.005512149526095796,2010-09-18,0.0,0.0,6.637984073994848e-07,0.0,0.0,0.0,0.0,0.0,14.945654694209425,0.0,0.0,0.0 -5079,storm_outflow,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5080,baseflow,0.036883674015778925,2010-09-18,0.0,0.0,3.615578723173182e-06,0.0,0.0,0.0,0.0,0.0,10.145108613098595,0.0,0.0,0.0 -5081,catchment_outflow,0.042395823541874725,2010-09-18,0.0,0.0,4.279377130572667e-06,0.0,0.0,0.0,0.0,0.0,10.769258012622817,0.0,0.0,0.0 -5082,reservoir_outflow,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5083,gw1_gw2,0.0,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5084,gw2_gw1,0.0057481128492717914,2010-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5085,urban_drainage,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5086,percolation,0.07291357112709601,2010-09-19,0.0,0.0,9.028450540112854e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -5087,runoff,0.004367040081224908,2010-09-19,0.0,0.0,5.310387259195878e-07,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -5088,storm_outflow,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5089,baseflow,0.03697374875855721,2010-09-19,0.0,0.0,3.6291109027155316e-06,0.0,0.0,0.0,0.0,0.0,10.171947021747322,0.0,0.0,0.0 -5090,catchment_outflow,0.04134078883978212,2010-09-19,0.0,0.0,4.160149628635119e-06,0.0,0.0,0.0,0.0,0.0,10.676545658950069,0.0,0.0,0.0 -5091,reservoir_outflow,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5092,gw1_gw2,0.0,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5093,gw2_gw1,0.0057097920969431115,2010-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5094,urban_drainage,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5095,percolation,0.07145529970455408,2010-09-20,0.0,0.0,8.847881529310597e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -5096,runoff,0.0034936320649799264,2010-09-20,0.0,0.0,4.248309807356703e-07,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -5097,storm_outflow,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5098,baseflow,0.037059952635922204,2010-09-20,0.0,0.0,3.6421578292820186e-06,0.0,0.0,0.0,0.0,0.0,10.198058115036105,0.0,0.0,0.0 -5099,catchment_outflow,0.04055358470090213,2010-09-20,0.0,0.0,4.066988810017689e-06,0.0,0.0,0.0,0.0,0.0,10.607323587797577,0.0,0.0,0.0 -5100,reservoir_outflow,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5101,gw1_gw2,0.0,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5102,gw2_gw1,0.005671726816296996,2010-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5103,urban_drainage,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5104,percolation,0.07002619371046301,2010-09-21,0.0,0.0,8.670923898724386e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601508,0.0,0.0,0.0 -5105,runoff,0.002794905651983941,2010-09-21,0.0,0.0,3.3986478458853624e-07,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 -5106,storm_outflow,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5107,baseflow,0.03714236823860856,2010-09-21,0.0,0.0,3.6547297444556248e-06,0.0,0.0,0.0,0.0,0.0,10.223467135960377,0.0,0.0,0.0 -5108,catchment_outflow,0.0399372738905925,2010-09-21,0.0,0.0,3.994594529044161e-06,0.0,0.0,0.0,0.0,0.0,10.554153948280534,0.0,0.0,0.0 -5109,reservoir_outflow,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5110,gw1_gw2,0.0,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5111,gw2_gw1,0.0056339153041884416,2010-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5112,urban_drainage,0.033,2010-09-22,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0 -5113,percolation,0.06862566983625375,2010-09-22,0.0,0.0,8.497505420749898e-06,0.0,0.0,0.0,0.0,0.0,15.588904949601503,0.0,0.0,0.0 -5114,runoff,0.0022359245215871526,2010-09-22,0.0,0.0,2.7189182767082896e-07,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 -5115,storm_outflow,0.033,2010-09-22,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0 -5116,baseflow,0.03722107649260267,2010-09-22,0.0,0.0,3.6668366836463602e-06,0.0,0.0,0.0,0.0,0.0,10.248198202242074,0.0,0.0,0.0 -5117,catchment_outflow,0.07245700101418984,2010-09-22,0.0,0.0,1.893872851131719e-05,0.0,0.0,0.0,0.0,0.0,11.98812042646286,0.0,0.0,0.0 -5118,reservoir_outflow,0.0165,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5119,gw1_gw2,0.0,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5120,gw2_gw1,0.005596355868827097,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5121,urban_drainage,0.012,2010-09-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -5122,percolation,0.06813301743485357,2010-09-23,0.0,0.0,8.443095538408084e-06,0.0,0.0,0.0,0.0,0.0,15.55865990938685,0.0,0.0,0.0 -5123,runoff,0.007808841164229584,2010-09-23,0.0,0.0,6.026475490472796e-07,0.0,0.0,0.0,0.0,0.0,13.74666368065079,0.0,0.0,0.0 -5124,storm_outflow,0.012,2010-09-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -5125,baseflow,0.037298356344958296,2010-09-23,0.0,0.0,3.678777330783264e-06,0.0,0.0,0.0,0.0,0.0,10.272449792361336,0.0,0.0,0.0 -5126,catchment_outflow,0.057107197509187885,2010-09-23,0.0,0.0,5.281424879830544e-06,0.0,0.0,0.0,0.0,0.0,11.430976034263372,0.0,0.0,0.0 -5127,reservoir_outflow,0.006,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5128,gw1_gw2,0.0,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5129,gw2_gw1,0.005559046829701764,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5130,urban_drainage,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5131,percolation,0.0667703570861565,2010-09-24,0.0,0.0,8.274233627639923e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -5132,runoff,0.0039868110856390295,2010-09-24,0.0,0.0,4.821180392378236e-07,0.0,0.0,0.0,0.0,0.0,13.860507849398072,0.0,0.0,0.0 -5133,storm_outflow,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5134,baseflow,0.03737203634681129,2010-09-24,0.0,0.0,3.690265971525406e-06,0.0,0.0,0.0,0.0,0.0,10.296061172128738,0.0,0.0,0.0 -5135,catchment_outflow,0.04135884743245032,2010-09-24,0.0,0.0,4.1723840107632295e-06,0.0,0.0,0.0,0.0,0.0,10.639658163082522,0.0,0.0,0.0 -5136,reservoir_outflow,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5137,gw1_gw2,0.0,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5138,gw2_gw1,0.005521986517503664,2010-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5139,urban_drainage,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5140,percolation,0.06543494994443337,2010-09-25,0.0,0.0,8.108748955087125e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -5141,runoff,0.0030218301450790816,2010-09-25,0.0,0.0,3.8569443139025893e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 -5142,storm_outflow,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5143,baseflow,0.037442193630805344,2010-09-25,0.0,0.0,3.7013121789843094e-06,0.0,0.0,0.0,0.0,0.0,10.31905380767953,0.0,0.0,0.0 -5144,catchment_outflow,0.04046402377588443,2010-09-25,0.0,0.0,4.087006610374568e-06,0.0,0.0,0.0,0.0,0.0,10.585849424711096,0.0,0.0,0.0 -5145,reservoir_outflow,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5146,gw1_gw2,0.0,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5147,gw2_gw1,0.0054851732740534235,2010-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5148,urban_drainage,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5149,percolation,0.0641262509455447,2010-09-26,0.0,0.0,7.946573975985381e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -5150,runoff,0.0026254867480906743,2010-09-26,0.0,0.0,3.0855554511220713e-07,0.0,0.0,0.0,0.0,0.0,13.809070829400728,0.0,0.0,0.0 -5151,storm_outflow,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5152,baseflow,0.037508903774092196,2010-09-26,0.0,0.0,3.711925333476813e-06,0.0,0.0,0.0,0.0,0.0,10.341448243528516,0.0,0.0,0.0 -5153,catchment_outflow,0.04013439052218287,2010-09-26,0.0,0.0,4.02048087858902e-06,0.0,0.0,0.0,0.0,0.0,10.568291034166021,0.0,0.0,0.0 -5154,reservoir_outflow,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5155,gw1_gw2,0.0,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5156,gw2_gw1,0.005448605452226474,2010-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5157,urban_drainage,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5158,percolation,0.0628437259266338,2010-09-27,0.0,0.0,7.787642496465673e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -5159,runoff,0.0019494497337004559,2010-09-27,0.0,0.0,2.468444360897657e-07,0.0,0.0,0.0,0.0,0.0,13.881542141612014,0.0,0.0,0.0 -5160,storm_outflow,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5161,baseflow,0.037572240829473545,2010-09-27,0.0,0.0,3.7221146263842855e-06,0.0,0.0,0.0,0.0,0.0,10.36326415154945,0.0,0.0,0.0 -5162,catchment_outflow,0.039521690563174,2010-09-27,0.0,0.0,3.968959062474051e-06,0.0,0.0,0.0,0.0,0.0,10.536806983171196,0.0,0.0,0.0 -5163,reservoir_outflow,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5164,gw1_gw2,0.0,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5165,gw2_gw1,0.005412281415878262,2010-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5166,urban_drainage,0.018,2010-09-28,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0 -5167,percolation,0.06158685140810111,2010-09-28,0.0,0.0,7.631889646536358e-06,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -5168,runoff,0.0015471770342804897,2010-09-28,0.0,0.0,1.9747554887181254e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 -5169,storm_outflow,0.018,2010-09-28,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0 -5170,baseflow,0.03763227735592012,2010-09-28,0.0,0.0,3.7318890639346657e-06,0.0,0.0,0.0,0.0,0.0,10.384520376858246,0.0,0.0,0.0 -5171,catchment_outflow,0.057179454390200606,2010-09-28,0.0,0.0,8.929364612806478e-06,0.0,0.0,0.0,0.0,0.0,11.113885581103295,0.0,0.0,0.0 -5172,reservoir_outflow,0.009,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5173,gw1_gw2,0.0,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5174,gw2_gw1,0.005376199539772308,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5175,urban_drainage,0.023,2010-09-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0 -5176,percolation,0.06260694445321285,2010-09-29,0.0,0.0,7.778287570956313e-06,0.0,0.0,0.0,0.0,0.0,15.4340898401978,0.0,0.0,0.0 -5177,runoff,0.016645000023507987,2010-09-29,0.0,0.0,1.1547661635997208e-06,0.0,0.0,0.0,0.0,0.0,12.459961954145822,0.0,0.0,0.0 -5178,storm_outflow,0.023,2010-09-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0 -5179,baseflow,0.03769471402366335,2010-09-29,0.0,0.0,3.74200506020222e-06,0.0,0.0,0.0,0.0,0.0,10.405487382650191,0.0,0.0,0.0 -5180,catchment_outflow,0.07733971404717134,2010-09-29,0.0,0.0,5.896771223801941e-06,0.0,0.0,0.0,0.0,0.0,11.494963938233198,0.0,0.0,0.0 -5181,reservoir_outflow,0.0115,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5182,gw1_gw2,0.0,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5183,gw2_gw1,0.005340358209507201,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5184,urban_drainage,0.04,2010-09-30,0.0,0.0,6.779661016949151e-07,0.0,0.0,0.0,0.0,0.0,12.764285710000001,0.0,0.0,0.0 -5185,percolation,0.06767782172175668,2010-09-30,0.0,0.0,8.431426220996166e-06,0.0,0.0,0.0,0.0,0.0,15.13399360342495,0.0,0.0,0.0 -5186,runoff,0.050257815628338885,2010-09-30,0.0,0.0,3.6194942690763783e-06,0.0,0.0,0.0,0.0,0.0,12.479158314040358,0.0,0.0,0.0 -5187,storm_outflow,0.04,2010-09-30,0.0,0.0,6.779661016949151e-07,0.0,0.0,0.0,0.0,0.0,12.764285710000001,0.0,0.0,0.0 -5188,baseflow,0.037769671792908584,2010-09-30,0.0,0.0,3.7537286131042046e-06,0.0,0.0,0.0,0.0,0.0,10.426669390980477,0.0,0.0,0.0 -5189,catchment_outflow,0.12802748742124748,2010-09-30,0.0,0.0,8.051188983875498e-06,0.0,0.0,0.0,0.0,0.0,11.962732205273392,0.0,0.0,0.0 -5190,reservoir_outflow,0.029500000000000005,2010-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5191,gw1_gw2,0.0,2010-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5192,gw2_gw1,0.005304755821443941,2010-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5193,urban_drainage,0.04,2010-10-01,0.0,0.0,4.3345373714920804e-07,0.0,0.0,0.0,0.0,0.0,12.918062059016394,0.0,0.0,0.0 -5194,percolation,0.07941804247008427,2010-10-01,0.0,0.0,9.836761732329464e-06,0.0,0.0,0.0,0.0,0.0,14.681514840832817,0.0,0.0,0.0 -5195,runoff,0.11204643699495472,2010-10-01,0.0,0.0,8.142142201105169e-06,0.0,0.0,0.0,0.0,0.0,12.590689216107315,0.0,0.0,0.0 -5196,storm_outflow,0.04,2010-10-01,0.0,0.0,4.3345373714920804e-07,0.0,0.0,0.0,0.0,0.0,12.918062059016394,0.0,0.0,0.0 -5197,baseflow,0.03787379271960153,2010-10-01,0.0,0.0,3.7689361959022677e-06,0.0,0.0,0.0,0.0,0.0,10.44897449118141,0.0,0.0,0.0 -5198,catchment_outflow,0.18992022971455624,2010-10-01,0.0,0.0,1.2344532134156644e-05,0.0,0.0,0.0,0.0,0.0,12.232539134137475,0.0,0.0,0.0 -5199,reservoir_outflow,0.051500000000000004,2010-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5200,gw1_gw2,0.0,2010-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5201,gw2_gw1,0.005269390782634354,2010-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5202,urban_drainage,0.04,2010-10-02,0.0,0.0,4.2202908629181603e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 -5203,percolation,0.09193553486929412,2010-10-02,0.0,0.0,1.1241459545516488e-05,0.0,0.0,0.0,0.0,0.0,14.353861106841407,0.0,0.0,0.0 -5204,runoff,0.14939642008221754,2010-10-02,0.0,0.0,1.185182392032951e-05,0.0,0.0,0.0,0.0,0.0,12.667308054402678,0.0,0.0,0.0 -5205,storm_outflow,0.04,2010-10-02,0.0,0.0,4.2202908629181603e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 -5206,baseflow,0.03800894707497576,2010-10-02,0.0,0.0,3.7876175042763033e-06,0.0,0.0,0.0,0.0,0.0,10.472587210504212,0.0,0.0,0.0 -5207,catchment_outflow,0.2274053671571933,2010-10-02,0.0,0.0,1.606147051089763e-05,0.0,0.0,0.0,0.0,0.0,12.364650853938988,0.0,0.0,0.0 -5208,reservoir_outflow,0.0485,2010-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5209,gw1_gw2,0.0,2010-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5210,gw2_gw1,0.005234261510750038,2010-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5211,urban_drainage,0.04,2010-10-03,0.0,0.0,7.531453663707056e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 -5212,percolation,0.09159023634942778,2010-10-03,0.0,0.0,1.118695646869055e-05,0.0,0.0,0.0,0.0,0.0,14.326328153467053,0.0,0.0,0.0 -5213,runoff,0.09013984184568237,2010-10-03,0.0,0.0,1.0049212849878251e-05,0.0,0.0,0.0,0.0,0.0,12.501981337245448,0.0,0.0,0.0 -5214,storm_outflow,0.04,2010-10-03,0.0,0.0,7.531453663707056e-07,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 -5215,baseflow,0.03814290029816189,2010-10-03,0.0,0.0,3.8061158516873387e-06,0.0,0.0,0.0,0.0,0.0,10.495721597312524,0.0,0.0,0.0 -5216,catchment_outflow,0.16828274214384426,2010-10-03,0.0,0.0,1.4608474067936296e-05,0.0,0.0,0.0,0.0,0.0,12.173258740765327,0.0,0.0,0.0 -5217,reservoir_outflow,0.0,2010-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5218,gw1_gw2,0.0,2010-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5219,gw2_gw1,0.005199366434011843,2010-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5220,urban_drainage,0.04,2010-10-04,0.0,0.0,1.2920979564254076e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0 -5221,percolation,0.09132251000771388,2010-10-04,0.0,0.0,1.1142312943407217e-05,0.0,0.0,0.0,0.0,0.0,14.300482045860853,0.0,0.0,0.0 -5222,runoff,0.07862142824591417,2010-10-04,0.0,0.0,8.636355626870867e-06,0.0,0.0,0.0,0.0,0.0,12.548931870087346,0.0,0.0,0.0 -5223,storm_outflow,0.04,2010-10-04,0.0,0.0,1.2920979564254076e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0 -5224,baseflow,0.038275849322435766,2010-10-04,0.0,0.0,3.824456344416639e-06,0.0,0.0,0.0,0.0,0.0,10.518416082235152,0.0,0.0,0.0 -5225,catchment_outflow,0.15689727756834995,2010-10-04,0.0,0.0,1.3752909927712915e-05,0.0,0.0,0.0,0.0,0.0,12.176767908614288,0.0,0.0,0.0 -5226,reservoir_outflow,0.0,2010-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5227,gw1_gw2,0.0,2010-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5228,gw2_gw1,0.005164703991118458,2010-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5229,urban_drainage,0.04,2010-10-05,0.0,0.0,1.3451709733710823e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -5230,percolation,0.09504788797871921,2010-10-05,0.0,0.0,1.1544414327136686e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5231,runoff,0.09649293987933313,2010-10-05,0.0,0.0,8.992243310155404e-06,0.0,0.0,0.0,0.0,0.0,12.8174301439984,0.0,0.0,0.0 -5232,storm_outflow,0.04,2010-10-05,0.0,0.0,1.3451709733710823e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -5233,baseflow,0.03841777941907648,2010-10-05,0.0,0.0,3.843756239373439e-06,0.0,0.0,0.0,0.0,0.0,10.541334378406901,0.0,0.0,0.0 -5234,catchment_outflow,0.17491071929840962,2010-10-05,0.0,0.0,1.4181170522899925e-05,0.0,0.0,0.0,0.0,0.0,12.423776852030109,0.0,0.0,0.0 -5235,reservoir_outflow,0.013999999999999999,2010-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5236,gw1_gw2,0.0,2010-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5237,gw2_gw1,0.005130272631177846,2010-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5238,urban_drainage,0.01299999999999998,2010-10-06,0.0,0.0,2.076136778696865e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -5239,percolation,0.09314693021914483,2010-10-06,0.0,0.0,1.1313526040593955e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 -5240,runoff,0.062013949352664965,2010-10-06,0.0,0.0,7.193794648124323e-06,0.0,0.0,0.0,0.0,0.0,12.606459348679058,0.0,0.0,0.0 -5241,storm_outflow,0.01299999999999998,2010-10-06,0.0,0.0,2.076136778696865e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -5242,baseflow,0.03855460229607665,2010-10-06,0.0,0.0,3.86243066387649e-06,0.0,0.0,0.0,0.0,0.0,10.563576177638202,0.0,0.0,0.0 -5243,catchment_outflow,0.1135685516487416,2010-10-06,0.0,0.0,1.3132362090697678e-05,0.0,0.0,0.0,0.0,0.0,11.990279003464334,0.0,0.0,0.0 -5244,reservoir_outflow,0.0,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5245,gw1_gw2,0.0,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5246,gw2_gw1,0.005096070813636722,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5247,urban_drainage,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5248,percolation,0.0912839916147619,2010-10-07,0.0,0.0,1.1087255519782071e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5249,runoff,0.0511935008843607,2010-10-07,0.0,0.0,5.755035718499459e-06,0.0,0.0,0.0,0.0,0.0,12.62853803236064,0.0,0.0,0.0 -5250,storm_outflow,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5251,baseflow,0.03868642576937337,2010-10-07,0.0,0.0,3.880492726016254e-06,0.0,0.0,0.0,0.0,0.0,10.585167664370033,0.0,0.0,0.0 -5252,catchment_outflow,0.08987992665373407,2010-10-07,0.0,0.0,9.635528444515714e-06,0.0,0.0,0.0,0.0,0.0,11.749023562292683,0.0,0.0,0.0 -5253,reservoir_outflow,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5254,gw1_gw2,0.0,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5255,gw2_gw1,0.005062097008212341,2010-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5256,urban_drainage,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5257,percolation,0.08945831178246669,2010-10-08,0.0,0.0,1.0865510409386431e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5258,runoff,0.03943057460897744,2010-10-08,0.0,0.0,4.604028574799567e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -5259,storm_outflow,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5260,baseflow,0.0388133554844061,2010-10-08,0.0,0.0,3.89795527022468e-06,0.0,0.0,0.0,0.0,0.0,10.60613371187331,0.0,0.0,0.0 -5261,catchment_outflow,0.07824393009338354,2010-10-08,0.0,0.0,8.501983845024247e-06,0.0,0.0,0.0,0.0,0.0,11.611188666649538,0.0,0.0,0.0 -5262,reservoir_outflow,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5263,gw1_gw2,0.0,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5264,gw2_gw1,0.005028349694824463,2010-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5265,urban_drainage,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5266,percolation,0.08766914554681736,2010-10-09,0.0,0.0,1.0648200201198703e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 -5267,runoff,0.03154445968718195,2010-10-09,0.0,0.0,3.6832228598396538e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -5268,storm_outflow,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5269,baseflow,0.038935494959562125,2010-10-09,0.0,0.0,3.914830882552115e-06,0.0,0.0,0.0,0.0,0.0,10.626497963410344,0.0,0.0,0.0 -5270,catchment_outflow,0.07047995464674407,2010-10-09,0.0,0.0,7.598053742391768e-06,0.0,0.0,0.0,0.0,0.0,11.50999995624857,0.0,0.0,0.0 -5271,reservoir_outflow,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5272,gw1_gw2,0.0,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5273,gw2_gw1,0.004994827363525545,2010-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5274,urban_drainage,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5275,percolation,0.08591576263588101,2010-10-10,0.0,0.0,1.0435236197174728e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5276,runoff,0.025235567749745558,2010-10-10,0.0,0.0,2.9465782878717227e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -5277,storm_outflow,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5278,baseflow,0.03905294562875292,2010-10-10,0.0,0.0,3.931131895838671e-06,0.0,0.0,0.0,0.0,0.0,10.646282907436225,0.0,0.0,0.0 -5279,catchment_outflow,0.06428851337849847,2010-10-10,0.0,0.0,6.877710183710393e-06,0.0,0.0,0.0,0.0,0.0,11.413388217877904,0.0,0.0,0.0 -5280,reservoir_outflow,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5281,gw1_gw2,0.0,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5282,gw2_gw1,0.004961528514435188,2010-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5283,urban_drainage,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5284,percolation,0.0841974473831634,2010-10-11,0.0,0.0,1.0226531473231234e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5285,runoff,0.020188454199796445,2010-10-11,0.0,0.0,2.357262630297378e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 -5286,storm_outflow,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5287,baseflow,0.039165806883138955,2010-10-11,0.0,0.0,3.946870394782153e-06,0.0,0.0,0.0,0.0,0.0,10.66550994734459,0.0,0.0,0.0 -5288,catchment_outflow,0.0593542610829354,2010-10-11,0.0,0.0,6.304133025079531e-06,0.0,0.0,0.0,0.0,0.0,11.32367135114448,0.0,0.0,0.0 -5289,reservoir_outflow,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5290,gw1_gw2,0.0,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5291,gw2_gw1,0.004928451657672283,2010-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5292,urban_drainage,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5293,percolation,0.08251349843550011,2010-10-12,0.0,0.0,1.0022000843766609e-05,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5294,runoff,0.016150763359837155,2010-10-12,0.0,0.0,1.8858101042379024e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 -5295,storm_outflow,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5296,baseflow,0.03927417611201986,2010-10-12,0.0,0.0,3.9620582209046145e-06,0.0,0.0,0.0,0.0,0.0,10.684199466214029,0.0,0.0,0.0 -5297,catchment_outflow,0.05542493947185702,2010-10-12,0.0,0.0,5.847868325142517e-06,0.0,0.0,0.0,0.0,0.0,11.242610487227877,0.0,0.0,0.0 -5298,reservoir_outflow,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5299,gw1_gw2,0.0,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5300,gw2_gw1,0.004895595313287516,2010-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5301,urban_drainage,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5302,percolation,0.08086322846679012,2010-10-13,0.0,0.0,9.821560826891276e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 -5303,runoff,0.012920610687869724,2010-10-13,0.0,0.0,1.5086480833903218e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 -5304,storm_outflow,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5305,baseflow,0.03937814874290678,2010-10-13,0.0,0.0,3.976706977419581e-06,0.0,0.0,0.0,0.0,0.0,10.702370886968284,0.0,0.0,0.0 -5306,catchment_outflow,0.052298759430776505,2010-10-13,0.0,0.0,5.4853550608099025e-06,0.0,0.0,0.0,0.0,0.0,11.171313784387083,0.0,0.0,0.0 -5307,reservoir_outflow,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5308,gw1_gw2,0.0,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5309,gw2_gw1,0.0048629580111988705,2010-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5310,urban_drainage,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5311,percolation,0.07924596389745432,2010-10-14,0.0,0.0,9.625129610353452e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398815,0.0,0.0,0.0 -5312,runoff,0.010336488550295779,2010-10-14,0.0,0.0,1.2069184667122576e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5313,storm_outflow,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5314,baseflow,0.03947781828079315,2010-10-14,0.0,0.0,3.990828034001915e-06,0.0,0.0,0.0,0.0,0.0,10.720042728324856,0.0,0.0,0.0 -5315,catchment_outflow,0.04981430683108893,2010-10-14,0.0,0.0,5.197746500714172e-06,0.0,0.0,0.0,0.0,0.0,11.110240682963983,0.0,0.0,0.0 -5316,reservoir_outflow,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5317,gw1_gw2,0.0,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5318,gw2_gw1,0.0048305382911243205,2010-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5319,urban_drainage,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5320,percolation,0.07766104461950522,2010-10-15,0.0,0.0,9.432627018146382e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -5321,runoff,0.008269190840236623,2010-10-15,0.0,0.0,9.65534773369806e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5322,storm_outflow,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5323,baseflow,0.03957327634663993,2010-10-15,0.0,0.0,4.004432531462276e-06,0.0,0.0,0.0,0.0,0.0,10.737232656872028,0.0,0.0,0.0 -5324,catchment_outflow,0.047842467186876556,2010-10-15,0.0,0.0,4.969967304832083e-06,0.0,0.0,0.0,0.0,0.0,11.059285565429915,0.0,0.0,0.0 -5325,reservoir_outflow,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5326,gw1_gw2,0.0,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5327,gw2_gw1,0.004798334702516805,2010-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5328,urban_drainage,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5329,percolation,0.07610782372711512,2010-10-16,0.0,0.0,9.243974477783456e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5330,runoff,0.006615352672189298,2010-10-16,0.0,0.0,7.724278186958448e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5331,storm_outflow,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5332,baseflow,0.03966461271509111,2010-10-16,0.0,0.0,4.01753138632808e-06,0.0,0.0,0.0,0.0,0.0,10.753957535583346,0.0,0.0,0.0 -5333,catchment_outflow,0.04627996538728041,2010-10-16,0.0,0.0,4.7899592050239245e-06,0.0,0.0,0.0,0.0,0.0,11.017907681068493,0.0,0.0,0.0 -5334,reservoir_outflow,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5335,gw1_gw2,0.0,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5336,gw2_gw1,0.004766345804500105,2010-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5337,urban_drainage,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5338,percolation,0.07458566725257282,2010-10-17,0.0,0.0,9.059094988227786e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -5339,runoff,0.0052922821377514384,2010-10-17,0.0,0.0,6.17942254956676e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5340,storm_outflow,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5341,baseflow,0.03975191535143482,2010-10-17,0.0,0.0,4.030135295332829e-06,0.0,0.0,0.0,0.0,0.0,10.770233469050691,0.0,0.0,0.0 -5342,catchment_outflow,0.045044197489186255,2010-10-17,0.0,0.0,4.648077550289505e-06,0.0,0.0,0.0,0.0,0.0,10.98527439741837,0.0,0.0,0.0 -5343,reservoir_outflow,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5344,gw1_gw2,0.0,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5345,gw2_gw1,0.00473457016580312,2010-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5346,urban_drainage,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5347,percolation,0.07309395390752135,2010-10-18,0.0,0.0,8.877913088463229e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -5348,runoff,0.004233825710201151,2010-10-18,0.0,0.0,4.943538039653407e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5349,storm_outflow,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5350,baseflow,0.03983527044782503,2010-10-18,0.0,0.0,4.042254739815655e-06,0.0,0.0,0.0,0.0,0.0,10.786075845692022,0.0,0.0,0.0 -5351,catchment_outflow,0.044069096158026184,2010-10-18,0.0,0.0,4.536608543780996e-06,0.0,0.0,0.0,0.0,0.0,10.960393080323744,0.0,0.0,0.0 -5352,reservoir_outflow,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5353,gw1_gw2,0.0,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5354,gw2_gw1,0.004703006364697871,2010-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5355,urban_drainage,0.011,2010-10-19,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 -5356,percolation,0.07163207482937092,2010-10-19,0.0,0.0,8.700354826693965e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -5357,runoff,0.0033870605681609206,2010-10-19,0.0,0.0,3.954830431722726e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5358,storm_outflow,0.011,2010-10-19,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 -5359,baseflow,0.0399147624587789,2010-10-19,0.0,0.0,4.053899990032851e-06,0.0,0.0,0.0,0.0,0.0,10.801499377167273,0.0,0.0,0.0 -5360,catchment_outflow,0.054301823026939824,2010-10-19,0.0,0.0,1.7449383033205128e-05,0.0,0.0,0.0,0.0,0.0,10.726029881380747,0.0,0.0,0.0 -5361,reservoir_outflow,0.0055,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5362,gw1_gw2,0.0,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5363,gw2_gw1,0.004671652988933239,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5364,urban_drainage,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5365,percolation,0.07019943333278351,2010-10-20,0.0,0.0,8.526347730160087e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -5366,runoff,0.0027096484545287365,2010-10-20,0.0,0.0,3.1638643453781804e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5367,storm_outflow,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5368,baseflow,0.03999047413596391,2010-10-20,0.0,0.0,4.065081109383169e-06,0.0,0.0,0.0,0.0,0.0,10.816518135215555,0.0,0.0,0.0 -5369,catchment_outflow,0.04270012259049265,2010-10-20,0.0,0.0,4.381467543920987e-06,0.0,0.0,0.0,0.0,0.0,10.92972610062566,0.0,0.0,0.0 -5370,reservoir_outflow,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5371,gw1_gw2,0.0,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5372,gw2_gw1,0.004640508635673868,2010-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5373,urban_drainage,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5374,percolation,0.06879544466612784,2010-10-21,0.0,0.0,8.355820775556885e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -5375,runoff,0.0021677187636229894,2010-10-21,0.0,0.0,2.5310914763025445e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5376,storm_outflow,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5377,baseflow,0.04006248656228933,2010-10-21,0.0,0.0,4.075807958548603e-06,0.0,0.0,0.0,0.0,0.0,10.83114558610834,0.0,0.0,0.0 -5378,catchment_outflow,0.04223020532591232,2010-10-21,0.0,0.0,4.328917106178858e-06,0.0,0.0,0.0,0.0,0.0,10.921968895434464,0.0,0.0,0.0 -5379,reservoir_outflow,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5380,gw1_gw2,0.0,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5381,gw2_gw1,0.004609571911436206,2010-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5382,urban_drainage,0.032,2010-10-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 -5383,percolation,0.0674195357728053,2010-10-22,0.0,0.0,8.188704360045748e-06,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -5384,runoff,0.0017341750108983913,2010-10-22,0.0,0.0,2.0248731810420352e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -5385,storm_outflow,0.032,2010-10-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 -5386,baseflow,0.04013087918531562,2010-10-22,0.0,0.0,4.086090199552345e-06,0.0,0.0,0.0,0.0,0.0,10.845394622896785,0.0,0.0,0.0 -5387,catchment_outflow,0.073865054196214,2010-10-22,0.0,0.0,7.288577517656549e-06,0.0,0.0,0.0,0.0,0.0,9.974186898113901,0.0,0.0,0.0 -5388,reservoir_outflow,0.016,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5389,gw1_gw2,0.0,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5390,gw2_gw1,0.004578841432026692,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5391,urban_drainage,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5392,percolation,0.06665263296900076,2010-10-23,0.0,0.0,8.09965636895113e-06,0.0,0.0,0.0,0.0,0.0,14.177874882313494,0.0,0.0,0.0 -5393,runoff,0.005365941509492616,2010-10-23,0.0,0.0,4.110768415043569e-07,0.0,0.0,0.0,0.0,0.0,9.673636267650082,0.0,0.0,0.0 -5394,storm_outflow,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5395,baseflow,0.04019718356977482,2010-10-23,0.0,0.0,4.096124114975843e-06,0.0,0.0,0.0,0.0,0.0,10.85920893548549,0.0,0.0,0.0 -5396,catchment_outflow,0.045563125079267436,2010-10-23,0.0,0.0,4.507200956480199e-06,0.0,0.0,0.0,0.0,0.0,10.719584763969813,0.0,0.0,0.0 -5397,reservoir_outflow,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5398,gw1_gw2,0.0,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5399,gw2_gw1,0.0045483158224799425,2010-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5400,urban_drainage,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5401,percolation,0.06531958030962075,2010-10-24,0.0,0.0,7.937663241572108e-06,0.0,0.0,0.0,0.0,0.0,14.177874882313493,0.0,0.0,0.0 -5402,runoff,0.00280385304055727,2010-10-24,0.0,0.0,3.2886147320348547e-07,0.0,0.0,0.0,0.0,0.0,10.351468808135987,0.0,0.0,0.0 -5403,storm_outflow,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5404,baseflow,0.04025998956162444,2010-10-24,0.0,0.0,4.105727962792333e-06,0.0,0.0,0.0,0.0,0.0,10.87266980999111,0.0,0.0,0.0 -5405,catchment_outflow,0.043063842602181705,2010-10-24,0.0,0.0,4.434589435995818e-06,0.0,0.0,0.0,0.0,0.0,10.838734821251418,0.0,0.0,0.0 -5406,reservoir_outflow,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5407,gw1_gw2,0.0,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5408,gw2_gw1,0.004517993716996571,2010-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5409,urban_drainage,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5410,percolation,0.06401318870342833,2010-10-25,0.0,0.0,7.778909976740667e-06,0.0,0.0,0.0,0.0,0.0,14.17787488231349,0.0,0.0,0.0 -5411,runoff,0.0026251898686693695,2010-10-25,0.0,0.0,2.6308917856278843e-07,0.0,0.0,0.0,0.0,0.0,9.934963481033437,0.0,0.0,0.0 -5412,storm_outflow,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5413,baseflow,0.04031937255947895,2010-10-25,0.0,0.0,4.114910917827204e-06,0.0,0.0,0.0,0.0,0.0,10.885788610121619,0.0,0.0,0.0 -5414,catchment_outflow,0.04294456242814832,2010-10-25,0.0,0.0,4.378000096389992e-06,0.0,0.0,0.0,0.0,0.0,10.827664918677915,0.0,0.0,0.0 -5415,reservoir_outflow,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5416,gw1_gw2,0.0,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5417,gw2_gw1,0.004487873758883154,2010-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5418,urban_drainage,0.034,2010-10-26,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -5419,percolation,0.0634046142924804,2010-10-26,0.0,0.0,7.709183701853314e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342851,0.0,0.0,0.0 -5420,runoff,0.00629849344696424,2010-10-26,0.0,0.0,4.966444250084291e-07,0.0,0.0,0.0,0.0,0.0,8.369749999595145,0.0,0.0,0.0 -5421,storm_outflow,0.034,2010-10-26,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -5422,baseflow,0.04037708566381145,2010-10-26,0.0,0.0,4.1238965997872685e-06,0.0,0.0,0.0,0.0,0.0,10.898454462603954,0.0,0.0,0.0 -5423,catchment_outflow,0.08067557911077569,2010-10-26,0.0,0.0,8.620541024795697e-06,0.0,0.0,0.0,0.0,0.0,9.152889301866297,0.0,0.0,0.0 -5424,reservoir_outflow,0.017,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5425,gw1_gw2,0.0,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5426,gw2_gw1,0.0044579546004909435,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5427,urban_drainage,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5428,percolation,0.062136522006630786,2010-10-27,0.0,0.0,7.5550000278162466e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 -5429,runoff,0.005255012329338032,2010-10-27,0.0,0.0,3.9731554000674326e-07,0.0,0.0,0.0,0.0,0.0,8.521188216958523,0.0,0.0,0.0 -5430,storm_outflow,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5431,baseflow,0.040431484254668505,2010-10-27,0.0,0.0,4.132474358357341e-06,0.0,0.0,0.0,0.0,0.0,10.910801634260393,0.0,0.0,0.0 -5432,catchment_outflow,0.04568649658400654,2010-10-27,0.0,0.0,4.529789898364084e-06,0.0,0.0,0.0,0.0,0.0,10.63594037526272,0.0,0.0,0.0 -5433,reservoir_outflow,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5434,gw1_gw2,0.0,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5435,gw2_gw1,0.004428234903154227,2010-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5436,urban_drainage,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5437,percolation,0.06089379156649817,2010-10-28,0.0,0.0,7.403900027259921e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 -5438,runoff,0.003094132558361937,2010-10-28,0.0,0.0,3.1785243200539463e-07,0.0,0.0,0.0,0.0,0.0,8.899749919201192,0.0,0.0,0.0 -5439,storm_outflow,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5440,baseflow,0.04048264002294808,2010-10-28,0.0,0.0,4.140652922529597e-06,0.0,0.0,0.0,0.0,0.0,10.92284014067621,0.0,0.0,0.0 -5441,catchment_outflow,0.04357677258131002,2010-10-28,0.0,0.0,4.458505354534992e-06,0.0,0.0,0.0,0.0,0.0,10.779192299131967,0.0,0.0,0.0 -5442,reservoir_outflow,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5443,gw1_gw2,0.0,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5444,gw2_gw1,0.004398713337133132,2010-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5445,urban_drainage,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5446,percolation,0.05967591573516821,2010-10-29,0.0,0.0,7.255822026714723e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 -5447,runoff,0.002508213612170032,2010-10-29,0.0,0.0,2.542819456043157e-07,0.0,0.0,0.0,0.0,0.0,8.987798572285575,0.0,0.0,0.0 -5448,storm_outflow,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5449,baseflow,0.04053062321222864,2010-10-29,0.0,0.0,4.148440845290061e-06,0.0,0.0,0.0,0.0,0.0,10.934579597197391,0.0,0.0,0.0 -5450,catchment_outflow,0.04303883682439867,2010-10-29,0.0,0.0,4.402722790894377e-06,0.0,0.0,0.0,0.0,0.0,10.82112526090757,0.0,0.0,0.0 -5451,reservoir_outflow,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5452,gw1_gw2,0.0,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5453,gw2_gw1,0.004369388581552336,2010-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5454,urban_drainage,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5455,percolation,0.05848239742046484,2010-10-30,0.0,0.0,7.110705586180428e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342855,0.0,0.0,0.0 -5456,runoff,0.002799921428457474,2010-10-30,0.0,0.0,2.0342555648345262e-07,0.0,0.0,0.0,0.0,0.0,9.120472906389272,0.0,0.0,0.0 -5457,storm_outflow,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5458,baseflow,0.040575502647749236,2010-10-30,0.0,0.0,4.1558465071422875e-06,0.0,0.0,0.0,0.0,0.0,10.946029238729267,0.0,0.0,0.0 -5459,catchment_outflow,0.04337542407620671,2010-10-30,0.0,0.0,4.35927206362574e-06,0.0,0.0,0.0,0.0,0.0,10.828187986392582,0.0,0.0,0.0 -5460,reservoir_outflow,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5461,gw1_gw2,0.0,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5462,gw2_gw1,0.004340259324341922,2010-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5463,urban_drainage,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5464,percolation,0.05731274947205555,2010-10-31,0.0,0.0,6.96849147445682e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -5465,runoff,0.0016322656601499444,2010-10-31,0.0,0.0,1.627404451867621e-07,0.0,0.0,0.0,0.0,0.0,9.190481625418736,0.0,0.0,0.0 -5466,storm_outflow,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5467,baseflow,0.04061734576481,2010-10-31,0.0,0.0,4.1628781195605735e-06,0.0,0.0,0.0,0.0,0.0,10.957197938368624,0.0,0.0,0.0 -5468,catchment_outflow,0.04224961142495994,2010-10-31,0.0,0.0,4.325618564747336e-06,0.0,0.0,0.0,0.0,0.0,10.8889428640237,0.0,0.0,0.0 -5469,reservoir_outflow,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5470,gw1_gw2,0.0,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5471,gw2_gw1,0.004311324262179639,2010-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5472,urban_drainage,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5473,percolation,0.05616649448261444,2010-11-01,0.0,0.0,6.829121644967684e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -5474,runoff,0.0013655303546112705,2010-11-01,0.0,0.0,1.3019235614940965e-07,0.0,0.0,0.0,0.0,0.0,9.33385996467966,0.0,0.0,0.0 -5475,storm_outflow,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5476,baseflow,0.040656218636604506,2010-11-01,0.0,0.0,4.169543728374092e-06,0.0,0.0,0.0,0.0,0.0,10.968094224948745,0.0,0.0,0.0 -5477,catchment_outflow,0.042021748991215774,2010-11-01,0.0,0.0,4.299736084523502e-06,0.0,0.0,0.0,0.0,0.0,10.914988475128345,0.0,0.0,0.0 -5478,reservoir_outflow,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5479,gw1_gw2,0.0,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5480,gw2_gw1,0.004282582100431753,2010-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5481,urban_drainage,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5482,percolation,0.05504316459296214,2010-11-02,0.0,0.0,6.6925392120683295e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342858,0.0,0.0,0.0 -5483,runoff,0.0010298993804124129,2010-11-02,0.0,0.0,1.041538849195277e-07,0.0,0.0,0.0,0.0,0.0,9.379038258263094,0.0,0.0,0.0 -5484,storm_outflow,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5485,baseflow,0.0406921860014954,2010-11-02,0.0,0.0,4.175851217083327e-06,0.0,0.0,0.0,0.0,0.0,10.978726299570706,0.0,0.0,0.0 -5486,catchment_outflow,0.04172208538190781,2010-11-02,0.0,0.0,4.280005102002855e-06,0.0,0.0,0.0,0.0,0.0,10.939238395082828,0.0,0.0,0.0 -5487,reservoir_outflow,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5488,gw1_gw2,0.0,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5489,gw2_gw1,0.004254031553095672,2010-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5490,urban_drainage,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5491,percolation,0.0539423013011029,2010-11-03,0.0,0.0,6.558688427826964e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -5492,runoff,0.0006613056212210211,2010-11-03,0.0,0.0,8.332310793562215e-08,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -5493,storm_outflow,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5494,baseflow,0.040725311289744416,2010-11-03,0.0,0.0,4.1818083101101865e-06,0.0,0.0,0.0,0.0,0.0,10.989102051188627,0.0,0.0,0.0 -5495,catchment_outflow,0.041386616910965436,2010-11-03,0.0,0.0,4.265131418045809e-06,0.0,0.0,0.0,0.0,0.0,10.958185028958932,0.0,0.0,0.0 -5496,reservoir_outflow,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5497,gw1_gw2,0.0,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5498,gw2_gw1,0.004225671342741677,2010-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5499,urban_drainage,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5500,percolation,0.05286345527508086,2010-11-04,0.0,0.0,6.427514659270427e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -5501,runoff,0.0005290444969768169,2010-11-04,0.0,0.0,6.665848634849773e-08,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -5502,storm_outflow,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5503,baseflow,0.040755656649707754,2010-11-04,0.0,0.0,4.187422575983088e-06,0.0,0.0,0.0,0.0,0.0,10.99922907131146,0.0,0.0,0.0 -5504,catchment_outflow,0.041284701146684574,2010-11-04,0.0,0.0,4.254081062331585e-06,0.0,0.0,0.0,0.0,0.0,10.974304622793609,0.0,0.0,0.0 -5505,reservoir_outflow,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5506,gw1_gw2,0.0,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5507,gw2_gw1,0.004197500200456616,2010-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5508,urban_drainage,0.04,2010-11-05,0.0,0.0,4.210526315789474e-06,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -5509,percolation,0.05180618616957923,2010-11-05,0.0,0.0,6.2989643660850166e-06,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -5510,runoff,0.0004232355975814535,2010-11-05,0.0,0.0,5.3326789078798185e-08,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -5511,storm_outflow,0.04,2010-11-05,0.0,0.0,4.210526315789474e-06,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -5512,baseflow,0.04078328297350743,2010-11-05,0.0,0.0,4.192701430458342e-06,0.0,0.0,0.0,0.0,0.0,11.009114667879247,0.0,0.0,0.0 -5513,catchment_outflow,0.08120651857108888,2010-11-05,0.0,0.0,8.456554535326615e-06,0.0,0.0,0.0,0.0,0.0,10.292522325267699,0.0,0.0,0.0 -5514,reservoir_outflow,0.0475,2010-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5515,gw1_gw2,0.0,2010-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5516,gw2_gw1,0.00416951686578706,2010-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5517,urban_drainage,0.04,2010-11-06,0.0,0.0,3.1950464396284835e-06,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0 -5518,percolation,0.05694658780717322,2010-11-06,0.0,0.0,6.962801414391518e-06,0.0,0.0,0.0,0.0,0.0,13.629970905946246,0.0,0.0,0.0 -5519,runoff,0.04259902515849276,2010-11-06,0.0,0.0,2.6753825500237096e-06,0.0,0.0,0.0,0.0,0.0,9.42445352689905,0.0,0.0,0.0 -5520,storm_outflow,0.04,2010-11-06,0.0,0.0,3.1950464396284835e-06,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0 -5521,baseflow,0.04082369123559159,2010-11-06,0.0,0.0,4.199626680418176e-06,0.0,0.0,0.0,0.0,0.0,11.018254508947866,0.0,0.0,0.0 -5522,catchment_outflow,0.12342271639408436,2010-11-06,0.0,0.0,1.0070055670070369e-05,0.0,0.0,0.0,0.0,0.0,9.957520553628951,0.0,0.0,0.0 -5523,reservoir_outflow,0.015,2010-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5524,gw1_gw2,0.0,2010-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5525,gw2_gw1,0.004141720086681922,2010-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5526,urban_drainage,0.04,2010-11-07,0.0,0.0,1.2501842842400117e-06,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0 -5527,percolation,0.07068188929382513,2010-11-07,0.0,0.0,8.614507127616985e-06,0.0,0.0,0.0,0.0,0.0,12.72398330435917,0.0,0.0,0.0 -5528,runoff,0.118512674634382,2010-11-07,0.0,0.0,8.110178511729956e-06,0.0,0.0,0.0,0.0,0.0,9.151590484252889,0.0,0.0,0.0 -5529,storm_outflow,0.04,2010-11-07,0.0,0.0,1.2501842842400117e-06,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0 -5530,baseflow,0.04089833673073718,2010-11-07,0.0,0.0,4.210663881536173e-06,0.0,0.0,0.0,0.0,0.0,11.02562425448766,0.0,0.0,0.0 -5531,catchment_outflow,0.19941101136511918,2010-11-07,0.0,0.0,1.357102667750614e-05,0.0,0.0,0.0,0.0,0.0,9.508362507687135,0.0,0.0,0.0 -5532,reservoir_outflow,0.051000000000000004,2010-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5533,gw1_gw2,0.0,2010-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5534,gw2_gw1,0.004114108619437041,2010-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5535,urban_drainage,0.04,2010-11-08,0.0,0.0,1.306539236193092e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 -5536,percolation,0.07503775919699102,2010-11-08,0.0,0.0,9.125962648199352e-06,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 -5537,runoff,0.09253348496854556,2010-11-08,0.0,0.0,8.767295019832985e-06,0.0,0.0,0.0,0.0,0.0,9.118562403044265,0.0,0.0,0.0 -5538,storm_outflow,0.04,2010-11-08,0.0,0.0,1.306539236193092e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 -5539,baseflow,0.040983685286902806,2010-11-08,0.0,0.0,4.22295212845283e-06,0.0,0.0,0.0,0.0,0.0,11.03209532697629,0.0,0.0,0.0 -5540,catchment_outflow,0.17351717025544836,2010-11-08,0.0,0.0,1.4296786384478907e-05,0.0,0.0,0.0,0.0,0.0,9.521020229942325,0.0,0.0,0.0 -5541,reservoir_outflow,0.013,2010-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5542,gw1_gw2,0.0,2010-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5543,gw2_gw1,0.0040866812286409985,2010-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5544,urban_drainage,0.04,2010-11-09,0.0,0.0,2.1534419862127684e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 -5545,percolation,0.0735370040130512,2010-11-09,0.0,0.0,8.943443395235366e-06,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 -5546,runoff,0.058697865987687135,2010-11-09,0.0,0.0,7.01383601586639e-06,0.0,0.0,0.0,0.0,0.0,9.287623415902955,0.0,0.0,0.0 -5547,storm_outflow,0.04,2010-11-09,0.0,0.0,2.1534419862127684e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 -5548,baseflow,0.04106506858371819,2010-11-09,0.0,0.0,4.234753356619787e-06,0.0,0.0,0.0,0.0,0.0,11.03839543996988,0.0,0.0,0.0 -5549,catchment_outflow,0.13976293457140532,2010-11-09,0.0,0.0,1.3402031358698946e-05,0.0,0.0,0.0,0.0,0.0,9.69218593479797,0.0,0.0,0.0 -5550,reservoir_outflow,0.0,2010-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5551,gw1_gw2,0.0,2010-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5552,gw2_gw1,0.004059436687116858,2010-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5553,urban_drainage,0.04,2010-11-10,0.0,0.0,1.9891460261628773e-06,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0 -5554,percolation,0.07719645393059511,2010-11-10,0.0,0.0,9.370205338021278e-06,0.0,0.0,0.0,0.0,0.0,12.169789571889762,0.0,0.0,0.0 -5555,runoff,0.08136664292279017,2010-11-10,0.0,0.0,7.629838181661845e-06,0.0,0.0,0.0,0.0,0.0,8.766089497489158,0.0,0.0,0.0 -5556,storm_outflow,0.04,2010-11-10,0.0,0.0,1.9891460261628773e-06,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0 -5557,baseflow,0.04115539704708537,2010-11-10,0.0,0.0,4.247591986573291e-06,0.0,0.0,0.0,0.0,0.0,11.043700917577238,0.0,0.0,0.0 -5558,catchment_outflow,0.16252203996987555,2010-11-10,0.0,0.0,1.3866576194398013e-05,0.0,0.0,0.0,0.0,0.0,9.263434918667114,0.0,0.0,0.0 -5559,reservoir_outflow,0.0115,2010-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5560,gw1_gw2,0.0,2010-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5561,gw2_gw1,0.004032373775869401,2010-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5562,urban_drainage,0.028999999999999967,2010-11-11,0.0,0.0,1.8951157117732932e-06,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0 -5563,percolation,0.07929757487195305,2010-11-11,0.0,0.0,9.610081667582625e-06,0.0,0.0,0.0,0.0,0.0,11.9825521142086,0.0,0.0,0.0 -5564,runoff,0.0756325969371698,2010-11-11,0.0,0.0,7.52813866640205e-06,0.0,0.0,0.0,0.0,0.0,8.624143476734899,0.0,0.0,0.0 -5565,storm_outflow,0.028999999999999967,2010-11-11,0.0,0.0,1.8951157117732932e-06,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0 -5566,baseflow,0.04125075249164754,2010-11-11,0.0,0.0,4.260998210775814e-06,0.0,0.0,0.0,0.0,0.0,11.048212873030268,0.0,0.0,0.0 -5567,catchment_outflow,0.1458833494288173,2010-11-11,0.0,0.0,1.3684252588951157e-05,0.0,0.0,0.0,0.0,0.0,9.195792741981649,0.0,0.0,0.0 -5568,reservoir_outflow,0.0055,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5569,gw1_gw2,0.0,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5570,gw2_gw1,0.00400549128403025,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5571,urban_drainage,0.008999999999999998,2010-11-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -5572,percolation,0.08103873939755496,2010-11-12,0.0,0.0,9.805614615377974e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -5573,runoff,0.07303883624782023,2010-11-12,0.0,0.0,7.314959536944992e-06,0.0,0.0,0.0,0.0,0.0,8.423743926466049,0.0,0.0,0.0 -5574,storm_outflow,0.008999999999999998,2010-11-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -5575,baseflow,0.0413502224589123,2010-11-12,0.0,0.0,4.274859751787319e-06,0.0,0.0,0.0,0.0,0.0,11.0519517331324,0.0,0.0,0.0 -5576,catchment_outflow,0.12338905870673253,2010-11-12,0.0,0.0,1.2589819288732311e-05,0.0,0.0,0.0,0.0,0.0,9.206393749788187,0.0,0.0,0.0 -5577,reservoir_outflow,0.004499999999999999,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5578,gw1_gw2,0.0,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5579,gw2_gw1,0.003978788008803491,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5580,urban_drainage,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5581,percolation,0.07941796460960386,2010-11-13,0.0,0.0,9.609502323070417e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -5582,runoff,0.0530128201861446,2010-11-13,0.0,0.0,5.851967629555994e-06,0.0,0.0,0.0,0.0,0.0,8.536662633106332,0.0,0.0,0.0 -5583,storm_outflow,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5584,baseflow,0.04144539181428903,2010-11-13,0.0,0.0,4.288196358215527e-06,0.0,0.0,0.0,0.0,0.0,11.055589491270965,0.0,0.0,0.0 -5585,catchment_outflow,0.09445821200043364,2010-11-13,0.0,0.0,1.014016398777152e-05,0.0,0.0,0.0,0.0,0.0,9.64189116090961,0.0,0.0,0.0 -5586,reservoir_outflow,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5587,gw1_gw2,0.0,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5588,gw2_gw1,0.003952262755411518,2010-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5589,urban_drainage,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5590,percolation,0.07782960531741179,2010-11-14,0.0,0.0,9.417312276609009e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -5591,runoff,0.04083788473020405,2010-11-14,0.0,0.0,4.681574103644795e-06,0.0,0.0,0.0,0.0,0.0,8.592867617009663,0.0,0.0,0.0 -5592,storm_outflow,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5593,baseflow,0.04153635234804684,2010-11-14,0.0,0.0,4.30101914801151e-06,0.0,0.0,0.0,0.0,0.0,11.059129646427545,0.0,0.0,0.0 -5594,catchment_outflow,0.0823742370782509,2010-11-14,0.0,0.0,8.982593251656306e-06,0.0,0.0,0.0,0.0,0.0,9.836454596021055,0.0,0.0,0.0 -5595,reservoir_outflow,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5596,gw1_gw2,0.0,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5597,gw2_gw1,0.003925914337041903,2010-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5598,urban_drainage,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5599,percolation,0.07627301321106356,2010-11-15,0.0,0.0,9.228966031076829e-06,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -5600,runoff,0.03216764926749016,2010-11-15,0.0,0.0,3.745259282915835e-06,0.0,0.0,0.0,0.0,0.0,8.619177932758282,0.0,0.0,0.0 -5601,storm_outflow,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5602,baseflow,0.04162319400020438,2010-11-15,0.0,0.0,4.313339015219174e-06,0.0,0.0,0.0,0.0,0.0,11.062575542087503,0.0,0.0,0.0 -5603,catchment_outflow,0.07379084326769454,2010-11-15,0.0,0.0,8.058598298135008e-06,0.0,0.0,0.0,0.0,0.0,9.997424991730037,0.0,0.0,0.0 -5604,reservoir_outflow,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5605,gw1_gw2,0.0,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5606,gw2_gw1,0.0038997415747946463,2010-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5607,urban_drainage,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5608,percolation,0.075941567918803,2010-11-16,0.0,0.0,9.187764755158687e-06,0.0,0.0,0.0,0.0,0.0,11.730663775861334,0.0,0.0,0.0 -5609,runoff,0.033304575650917004,2010-11-16,0.0,0.0,3.474134242010652e-06,0.0,0.0,0.0,0.0,0.0,8.072336277894257,0.0,0.0,0.0 -5610,storm_outflow,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5611,baseflow,0.04170898993500088,2010-11-16,0.0,0.0,4.325525079569022e-06,0.0,0.0,0.0,0.0,0.0,11.06561659319303,0.0,0.0,0.0 -5612,catchment_outflow,0.07501356558591787,2010-11-16,0.0,0.0,7.799659321579674e-06,0.0,0.0,0.0,0.0,0.0,9.736657891835376,0.0,0.0,0.0 -5613,reservoir_outflow,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5614,gw1_gw2,0.0,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5615,gw2_gw1,0.0038737432976295953,2010-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5616,urban_drainage,0.024,2010-11-17,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5617,percolation,0.07851038724452097,2010-11-17,0.0,0.0,9.487339778906863e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5618,runoff,0.05126017580639956,2010-11-17,0.0,0.0,4.39040845644635e-06,0.0,0.0,0.0,0.0,0.0,7.162387153116985,0.0,0.0,0.0 -5619,storm_outflow,0.024,2010-11-17,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5620,baseflow,0.04180099342827468,2010-11-17,0.0,0.0,4.338429616317367e-06,0.0,0.0,0.0,0.0,0.0,11.067432945593382,0.0,0.0,0.0 -5621,catchment_outflow,0.11706116923467424,2010-11-17,0.0,0.0,1.3728838072763715e-05,0.0,0.0,0.0,0.0,0.0,8.293618089860313,0.0,0.0,0.0 -5622,reservoir_outflow,0.012,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5623,gw1_gw2,0.0,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5624,gw2_gw1,0.0038479183423119068,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5625,urban_drainage,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5626,percolation,0.07694017949963056,2010-11-18,0.0,0.0,9.297592983328726e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5627,runoff,0.03126137096760716,2010-11-18,0.0,0.0,3.51232676515708e-06,0.0,0.0,0.0,0.0,0.0,7.569763478176624,0.0,0.0,0.0 -5628,storm_outflow,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5629,baseflow,0.041888841393453065,2010-11-18,0.0,0.0,4.350827524734895e-06,0.0,0.0,0.0,0.0,0.0,11.069200897377023,0.0,0.0,0.0 -5630,catchment_outflow,0.07315021236106023,2010-11-18,0.0,0.0,7.863154289891975e-06,0.0,0.0,0.0,0.0,0.0,9.573686286980832,0.0,0.0,0.0 -5631,reservoir_outflow,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5632,gw1_gw2,0.0,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5633,gw2_gw1,0.0038222655533632025,2010-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5634,urban_drainage,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5635,percolation,0.07540137590963794,2010-11-19,0.0,0.0,9.111641123662151e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5636,runoff,0.026565883638017943,2010-11-19,0.0,0.0,2.8098614121256643e-06,0.0,0.0,0.0,0.0,0.0,7.492414650958526,0.0,0.0,0.0 -5637,storm_outflow,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5638,baseflow,0.04197262272974353,2010-11-19,0.0,0.0,4.362729558732214e-06,0.0,0.0,0.0,0.0,0.0,11.0709220916491,0.0,0.0,0.0 -5639,catchment_outflow,0.06853850636776147,2010-11-19,0.0,0.0,7.172590970857878e-06,0.0,0.0,0.0,0.0,0.0,9.683873886118265,0.0,0.0,0.0 -5640,reservoir_outflow,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5641,gw1_gw2,0.0,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5642,gw2_gw1,0.003796783783007385,2010-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5643,urban_drainage,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5644,percolation,0.07389334839144518,2010-11-20,0.0,0.0,8.929408301188909e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5645,runoff,0.019866166820644297,2010-11-20,0.0,0.0,2.2478891297005305e-06,0.0,0.0,0.0,0.0,0.0,7.59334563943792,0.0,0.0,0.0 -5646,storm_outflow,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5647,baseflow,0.04205242454389777,2010-11-20,0.0,0.0,4.374146255588355e-06,0.0,0.0,0.0,0.0,0.0,11.07259810000806,0.0,0.0,0.0 -5648,catchment_outflow,0.06191859136454207,2010-11-20,0.0,0.0,6.622035385288885e-06,0.0,0.0,0.0,0.0,0.0,9.956303167103545,0.0,0.0,0.0 -5649,reservoir_outflow,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5650,gw1_gw2,0.0,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5651,gw2_gw1,0.003771471891120726,2010-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5652,urban_drainage,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5653,percolation,0.07241548142361628,2010-11-21,0.0,0.0,8.75082013516513e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5654,runoff,0.015412724336448518,2010-11-21,0.0,0.0,1.7983113037604245e-06,0.0,0.0,0.0,0.0,0.0,7.637184706269561,0.0,0.0,0.0 -5655,storm_outflow,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5656,baseflow,0.04212833218609707,2010-11-21,0.0,0.0,4.385087940287298e-06,0.0,0.0,0.0,0.0,0.0,11.074230426397456,0.0,0.0,0.0 -5657,catchment_outflow,0.05754105652254559,2010-11-21,0.0,0.0,6.183399244047722e-06,0.0,0.0,0.0,0.0,0.0,10.153596683856682,0.0,0.0,0.0 -5658,reservoir_outflow,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5659,gw1_gw2,0.0,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5660,gw2_gw1,0.003746328745179639,2010-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5661,urban_drainage,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5662,percolation,0.07096717179514395,2010-11-22,0.0,0.0,8.575803732461826e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5663,runoff,0.012097140105911416,2010-11-22,0.0,0.0,1.4386490430083399e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5664,storm_outflow,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5665,baseflow,0.04220042928511969,2010-11-22,0.0,0.0,4.395564729767735e-06,0.0,0.0,0.0,0.0,0.0,11.075820510711043,0.0,0.0,0.0 -5666,catchment_outflow,0.05429756939103111,2010-11-22,0.0,0.0,5.834213772776075e-06,0.0,0.0,0.0,0.0,0.0,10.31505566875221,0.0,0.0,0.0 -5667,reservoir_outflow,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5668,gw1_gw2,0.0,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5669,gw2_gw1,0.0037213532202118316,2010-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5670,urban_drainage,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5671,percolation,0.06954782835924107,2010-11-23,0.0,0.0,8.404287657812591e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 -5672,runoff,0.009677712084729133,2010-11-23,0.0,0.0,1.150919234406672e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5673,storm_outflow,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5674,baseflow,0.04226879778280499,2010-11-23,0.0,0.0,4.405586537087847e-06,0.0,0.0,0.0,0.0,0.0,11.077369732169373,0.0,0.0,0.0 -5675,catchment_outflow,0.05194650986753412,2010-11-23,0.0,0.0,5.556505771494519e-06,0.0,0.0,0.0,0.0,0.0,10.440923925882295,0.0,0.0,0.0 -5676,reservoir_outflow,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5677,gw1_gw2,0.0,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5678,gw2_gw1,0.003696544198743901,2010-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5679,urban_drainage,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5680,percolation,0.06815687179205625,2010-11-24,0.0,0.0,8.23620190465634e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 -5681,runoff,0.007742169667783305,2010-11-24,0.0,0.0,9.207353875253373e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5682,storm_outflow,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5683,baseflow,0.04233351796782812,2010-11-24,0.0,0.0,4.415163075506768e-06,0.0,0.0,0.0,0.0,0.0,11.078879412484625,0.0,0.0,0.0 -5684,catchment_outflow,0.050075687635611425,2010-11-24,0.0,0.0,5.335898463032105e-06,0.0,0.0,0.0,0.0,0.0,10.550467319996828,0.0,0.0,0.0 -5685,reservoir_outflow,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5686,gw1_gw2,0.0,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5687,gw2_gw1,0.0036719005707519514,2010-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5688,urban_drainage,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5689,percolation,0.06679373435621512,2010-11-25,0.0,0.0,8.071477866563212e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5690,runoff,0.006193735734226645,2010-11-25,0.0,0.0,7.3658831002027e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5691,storm_outflow,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5692,baseflow,0.04239466850879908,2010-11-25,0.0,0.0,4.42430386248441e-06,0.0,0.0,0.0,0.0,0.0,11.080350818828999,0.0,0.0,0.0 -5693,catchment_outflow,0.048588404243025726,2010-11-25,0.0,0.0,5.16089217250468e-06,0.0,0.0,0.0,0.0,0.0,10.644493890802114,0.0,0.0,0.0 -5694,reservoir_outflow,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5695,gw1_gw2,0.0,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5696,gw2_gw1,0.0036474212336138124,2010-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5697,urban_drainage,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5698,percolation,0.06545785966909082,2010-11-26,0.0,0.0,7.910048309231948e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5699,runoff,0.004954988587381315,2010-11-26,0.0,0.0,5.892706480162159e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5700,storm_outflow,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5701,baseflow,0.04245232648669981,2010-11-26,0.0,0.0,4.433018223601278e-06,0.0,0.0,0.0,0.0,0.0,11.08178516662078,0.0,0.0,0.0 -5702,catchment_outflow,0.04740731507408113,2010-11-26,0.0,0.0,5.022288871617494e-06,0.0,0.0,0.0,0.0,0.0,10.724262677964166,0.0,0.0,0.0 -5703,reservoir_outflow,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5704,gw1_gw2,0.0,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5705,gw2_gw1,0.003623105092056456,2010-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5706,urban_drainage,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5707,percolation,0.064148702475709,2010-11-27,0.0,0.0,7.751847343047308e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5708,runoff,0.003963990869905053,2010-11-27,0.0,0.0,4.7141651841297286e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5709,storm_outflow,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5710,baseflow,0.04250656742667234,2010-11-27,0.0,0.0,4.441315296399893e-06,0.0,0.0,0.0,0.0,0.0,11.083183622140984,0.0,0.0,0.0 -5711,catchment_outflow,0.04647055829657739,2010-11-27,0.0,0.0,4.912731814812866e-06,0.0,0.0,0.0,0.0,0.0,10.791280770641048,0.0,0.0,0.0 -5712,reservoir_outflow,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5713,gw1_gw2,0.0,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5714,gw2_gw1,0.003598951058109279,2010-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5715,urban_drainage,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5716,percolation,0.06286572842619483,2010-11-28,0.0,0.0,7.596810396186362e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5717,runoff,0.0031711926959240425,2010-11-28,0.0,0.0,3.771332147303783e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5718,storm_outflow,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5719,baseflow,0.042557465329171144,2010-11-28,0.0,0.0,4.4492040341493596e-06,0.0,0.0,0.0,0.0,0.0,11.084547304992494,0.0,0.0,0.0 -5720,catchment_outflow,0.04572865802509519,2010-11-28,0.0,0.0,4.826337248879738e-06,0.0,0.0,0.0,0.0,0.0,10.847141797111801,0.0,0.0,0.0 -5721,reservoir_outflow,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5722,gw1_gw2,0.0,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5723,gw2_gw1,0.003574958051055255,2010-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5724,urban_drainage,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5725,percolation,0.06160841385767092,2010-11-29,0.0,0.0,7.444874188262634e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5726,runoff,0.0025369541567392337,2010-11-29,0.0,0.0,3.017065717843026e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5727,storm_outflow,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5728,baseflow,0.04260509270049239,2010-11-29,0.0,0.0,4.456693209534642e-06,0.0,0.0,0.0,0.0,0.0,11.085877290412649,0.0,0.0,0.0 -5729,catchment_outflow,0.045142046857231624,2010-11-29,0.0,0.0,4.758399781318945e-06,0.0,0.0,0.0,0.0,0.0,10.893410113059383,0.0,0.0,0.0 -5730,reservoir_outflow,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5731,gw1_gw2,0.0,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5732,gw2_gw1,0.00355112499738155,2010-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5733,urban_drainage,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5734,percolation,0.06037624558051751,2010-11-30,0.0,0.0,7.2959767044973814e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5735,runoff,0.0020295633253913873,2010-11-30,0.0,0.0,2.4136525742744215e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5736,storm_outflow,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5737,baseflow,0.04264952058269245,2010-11-30,0.0,0.0,4.4637914182720496e-06,0.0,0.0,0.0,0.0,0.0,11.087174611449365,0.0,0.0,0.0 -5738,catchment_outflow,0.04467908390808384,2010-11-30,0.0,0.0,4.705156675699492e-06,0.0,0.0,0.0,0.0,0.0,10.931546468304123,0.0,0.0,0.0 -5739,reservoir_outflow,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5740,gw1_gw2,0.0,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5741,gw2_gw1,0.003527450830732271,2010-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5742,urban_drainage,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5743,percolation,0.05916872066890716,2010-12-01,0.0,0.0,7.1500571704074345e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5744,runoff,0.0016236506603131099,2010-12-01,0.0,0.0,1.9309220594195373e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5745,storm_outflow,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5746,baseflow,0.04269081858290799,2010-12-01,0.0,0.0,4.470507082652388e-06,0.0,0.0,0.0,0.0,0.0,11.088440261010115,0.0,0.0,0.0 -5747,catchment_outflow,0.0443144692432211,2010-12-01,0.0,0.0,4.6635992885943415e-06,0.0,0.0,0.0,0.0,0.0,10.962866980756223,0.0,0.0,0.0 -5748,reservoir_outflow,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5749,gw1_gw2,0.0,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5750,gw2_gw1,0.003503934491860683,2010-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5751,urban_drainage,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5752,percolation,0.057985346255529015,2010-12-02,0.0,0.0,7.007056026999285e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5753,runoff,0.0012989205282504877,2010-12-02,0.0,0.0,1.5447376475356297e-07,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 -5754,storm_outflow,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5755,baseflow,0.04272905490208953,2010-12-02,0.0,0.0,4.4768484550132546e-06,0.0,0.0,0.0,0.0,0.0,11.089675193792333,0.0,0.0,0.0 -5756,catchment_outflow,0.04402797543034002,2010-12-02,0.0,0.0,4.6313222197668175e-06,0.0,0.0,0.0,0.0,0.0,10.988526443515296,0.0,0.0,0.0 -5757,reservoir_outflow,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5758,gw1_gw2,0.0,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5759,gw2_gw1,0.003480574928581781,2010-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5760,urban_drainage,0.002000000000000001,2010-12-03,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0 -5761,percolation,0.056825639330418426,2010-12-03,0.0,0.0,6.8669149064592985e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5762,runoff,0.0010391364226003904,2010-12-03,0.0,0.0,1.235790118028504e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5763,storm_outflow,0.002000000000000001,2010-12-03,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0 -5764,baseflow,0.04276429636316036,2010-12-03,0.0,0.0,4.48282362114187e-06,0.0,0.0,0.0,0.0,0.0,11.09088032810318,0.0,0.0,0.0 -5765,catchment_outflow,0.04580343278576075,2010-12-03,0.0,0.0,2.0606402632944725e-05,0.0,0.0,0.0,0.0,0.0,10.594754104484567,0.0,0.0,0.0 -5766,reservoir_outflow,0.0010000000000000005,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5767,gw1_gw2,0.0,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5768,gw2_gw1,0.003457371095724504,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5769,urban_drainage,0.002000000000000001,2010-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5770,percolation,0.055689126543810065,2010-12-04,0.0,0.0,6.729576608330113e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5771,runoff,0.0008313091380803123,2010-12-04,0.0,0.0,9.886320944228031e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5772,storm_outflow,0.002000000000000001,2010-12-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5773,baseflow,0.042796608438611994,2010-12-04,0.0,0.0,4.488440503609841e-06,0.0,0.0,0.0,0.0,0.0,11.092056547576025,0.0,0.0,0.0 -5774,catchment_outflow,0.04562791757669231,2010-12-04,0.0,0.0,5.587303713052121e-06,0.0,0.0,0.0,0.0,0.0,10.610823077424971,0.0,0.0,0.0 -5775,reservoir_outflow,0.0010000000000000005,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5776,gw1_gw2,0.0,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5777,gw2_gw1,0.0034343219550864394,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5778,urban_drainage,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5779,percolation,0.05457534401293386,2010-12-05,0.0,0.0,6.594985076163511e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5780,runoff,0.0006650473104642498,2010-12-05,0.0,0.0,7.909056755382424e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5781,storm_outflow,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5782,baseflow,0.042826055277547806,2010-12-05,0.0,0.0,4.493706865041226e-06,0.0,0.0,0.0,0.0,0.0,11.093204702790372,0.0,0.0,0.0 -5783,catchment_outflow,0.04349110258801205,2010-12-05,0.0,0.0,4.57279743259505e-06,0.0,0.0,0.0,0.0,0.0,11.04072327562593,0.0,0.0,0.0 -5784,reservoir_outflow,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5785,gw1_gw2,0.0,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5786,gw2_gw1,0.0034114264753858595,2010-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5787,urban_drainage,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5788,percolation,0.05348383713267518,2010-12-06,0.0,0.0,6.463085374640241e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5789,runoff,0.0005320378483713998,2010-12-06,0.0,0.0,6.32724540430594e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5790,storm_outflow,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5791,baseflow,0.04285269973218561,2010-12-06,0.0,0.0,4.498630311315222e-06,0.0,0.0,0.0,0.0,0.0,11.094325612801581,0.0,0.0,0.0 -5792,catchment_outflow,0.04338473758055701,2010-12-06,0.0,0.0,4.5619027653582815e-06,0.0,0.0,0.0,0.0,0.0,11.052223791409249,0.0,0.0,0.0 -5793,reservoir_outflow,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5794,gw1_gw2,0.0,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5795,gw2_gw1,0.003388683632216427,2010-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5796,urban_drainage,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5797,percolation,0.052414160390021676,2010-12-07,0.0,0.0,6.333823667147436e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5798,runoff,0.00042563027869711983,2010-12-07,0.0,0.0,5.0617963234447525e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5799,storm_outflow,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5800,baseflow,0.04287660338383021,2010-12-07,0.0,0.0,4.503218294704803e-06,0.0,0.0,0.0,0.0,0.0,11.09542006658612,0.0,0.0,0.0 -5801,catchment_outflow,0.04330223366252733,2010-12-07,0.0,0.0,4.553836257939251e-06,0.0,0.0,0.0,0.0,0.0,11.061663678352733,0.0,0.0,0.0 -5802,reservoir_outflow,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5803,gw1_gw2,0.0,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5804,gw2_gw1,0.003366092408001542,2010-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5805,urban_drainage,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5806,percolation,0.051365877182221256,2010-12-08,0.0,0.0,6.207147193804489e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5807,runoff,0.00034050422295769586,2010-12-08,0.0,0.0,4.049437058755802e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5808,storm_outflow,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5809,baseflow,0.042897826568326185,2010-12-08,0.0,0.0,4.507478116952552e-06,0.0,0.0,0.0,0.0,0.0,11.096488824407801,0.0,0.0,0.0 -5810,catchment_outflow,0.04323833079128388,2010-12-08,0.0,0.0,4.547972487540111e-06,0.0,0.0,0.0,0.0,0.0,11.069435385853335,0.0,0.0,0.0 -5811,reservoir_outflow,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5812,gw1_gw2,0.0,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5813,gw2_gw1,0.0033436517919481546,2010-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5814,urban_drainage,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5815,percolation,0.05033855963857683,2010-12-09,0.0,0.0,6.0830042499283995e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5816,runoff,0.0002724033783661567,2010-12-09,0.0,0.0,3.2395496470046415e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5817,storm_outflow,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5818,baseflow,0.04291642840100181,2010-12-09,0.0,0.0,4.511416932284992e-06,0.0,0.0,0.0,0.0,0.0,11.097532619109975,0.0,0.0,0.0 -5819,catchment_outflow,0.04318883177936796,2010-12-09,0.0,0.0,4.543812428755039e-06,0.0,0.0,0.0,0.0,0.0,11.075858479874327,0.0,0.0,0.0 -5820,reservoir_outflow,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5821,gw1_gw2,0.0,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5822,gw2_gw1,0.003321360780002003,2010-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5823,urban_drainage,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5824,percolation,0.0493317884458053,2010-12-10,0.0,0.0,5.961344164929831e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5825,runoff,0.00021792270269292534,2010-12-10,0.0,0.0,2.591639717603712e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5826,storm_outflow,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5827,baseflow,0.04293246680111382,2010-12-10,0.0,0.0,4.515041750366604e-06,0.0,0.0,0.0,0.0,0.0,11.098552157338313,0.0,0.0,0.0 -5828,catchment_outflow,0.043150389503806744,2010-12-10,0.0,0.0,4.540958147542642e-06,0.0,0.0,0.0,0.0,0.0,11.081192249539823,0.0,0.0,0.0 -5829,reservoir_outflow,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5830,gw1_gw2,0.0,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5831,gw2_gw1,0.00329921837480196,2010-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5832,urban_drainage,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5833,percolation,0.04834515267688918,2010-12-11,0.0,0.0,5.842117281631233e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5834,runoff,0.00017433816215434026,2010-12-11,0.0,0.0,2.0733117740829695e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5835,storm_outflow,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5836,baseflow,0.042945998515803246,2010-12-11,0.0,0.0,4.518359439194766e-06,0.0,0.0,0.0,0.0,0.0,11.099548120698527,0.0,0.0,0.0 -5837,catchment_outflow,0.04312033667795759,2010-12-11,0.0,0.0,4.539092556935595e-06,0.0,0.0,0.0,0.0,0.0,11.085646488494152,0.0,0.0,0.0 -5838,reservoir_outflow,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5839,gw1_gw2,0.0,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5840,gw2_gw1,0.003277223585636513,2010-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5841,urban_drainage,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5842,percolation,0.047378249623351396,2010-12-12,0.0,0.0,5.725274935998608e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5843,runoff,0.00013947052972347222,2010-12-12,0.0,0.0,1.658649419266376e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5844,storm_outflow,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5845,baseflow,0.04295707914357211,2010-12-12,0.0,0.0,4.521376727936776e-06,0.0,0.0,0.0,0.0,0.0,11.100521166853,0.0,0.0,0.0 -5846,catchment_outflow,0.04309654967329558,2010-12-12,0.0,0.0,4.5379632221294396e-06,0.0,0.0,0.0,0.0,0.0,11.089390573714578,0.0,0.0,0.0 -5847,reservoir_outflow,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5848,gw1_gw2,0.0,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5849,gw2_gw1,0.003255375428398821,2010-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5850,urban_drainage,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5851,percolation,0.046430684630884365,2010-12-13,0.0,0.0,5.610769437278636e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5852,runoff,0.00011157642377877778,2010-12-13,0.0,0.0,1.326919535413101e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5853,storm_outflow,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5854,baseflow,0.042965763157290386,2010-12-13,0.0,0.0,4.52410020971013e-06,0.0,0.0,0.0,0.0,0.0,11.101471930560075,0.0,0.0,0.0 -5855,catchment_outflow,0.043077339581069164,2010-12-13,0.0,0.0,4.537369405064261e-06,0.0,0.0,0.0,0.0,0.0,11.092561022537112,0.0,0.0,0.0 -5856,reservoir_outflow,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5857,gw1_gw2,0.0,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5858,gw2_gw1,0.0032336729255426633,2010-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5859,urban_drainage,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5860,percolation,0.04550207093826668,2010-12-14,0.0,0.0,5.4985540485330644e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5861,runoff,8.926113902302222e-05,2010-12-14,0.0,0.0,1.0615356283304806e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5862,storm_outflow,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5863,baseflow,0.042972103926742826,2010-12-14,0.0,0.0,4.526536344307188e-06,0.0,0.0,0.0,0.0,0.0,11.102401024659484,0.0,0.0,0.0 -5864,catchment_outflow,0.04306136506576585,2010-12-14,0.0,0.0,4.537151700590493e-06,0.0,0.0,0.0,0.0,0.0,11.095267727788073,0.0,0.0,0.0 -5865,reservoir_outflow,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5866,gw1_gw2,0.0,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5867,gw2_gw1,0.003212115106039271,2010-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5868,urban_drainage,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5869,percolation,0.04459202951950134,2010-12-15,0.0,0.0,5.388582967562403e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5870,runoff,7.140891121841777e-05,2010-12-15,0.0,0.0,8.492285026643846e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5871,storm_outflow,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5872,baseflow,0.04297615374072472,2010-12-15,0.0,0.0,4.528691460865325e-06,0.0,0.0,0.0,0.0,0.0,11.103309041007114,0.0,0.0,0.0 -5873,catchment_outflow,0.043047562651943136,2010-12-15,0.0,0.0,4.537183745891969e-06,0.0,0.0,0.0,0.0,0.0,11.097599067529453,0.0,0.0,0.0 -5874,reservoir_outflow,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5875,gw1_gw2,0.0,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5876,gw2_gw1,0.0031907010053320306,2010-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5877,urban_drainage,0.016,2010-12-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0 -5878,percolation,0.04370018892911132,2010-12-16,0.0,0.0,5.2808113082111546e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5879,runoff,5.712712897473421e-05,2010-12-16,0.0,0.0,6.793828021315076e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5880,storm_outflow,0.016,2010-12-16,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0 -5881,baseflow,0.04297796382869569,2010-12-16,0.0,0.0,4.53057176048369e-06,0.0,0.0,0.0,0.0,0.0,11.104196551362161,0.0,0.0,0.0 -5882,catchment_outflow,0.05903509095767043,2010-12-16,0.0,0.0,1.6537365588505006e-05,0.0,0.0,0.0,0.0,0.0,8.738903940029497,0.0,0.0,0.0 -5883,reservoir_outflow,0.008,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5884,gw1_gw2,0.0,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5885,gw2_gw1,0.0031694296652965193,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5886,urban_drainage,0.018,2010-12-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0 -5887,percolation,0.04282618515052909,2010-12-17,0.0,0.0,5.175195082046931e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5888,runoff,4.5701703179787376e-05,2010-12-17,0.0,0.0,5.4350624170520615e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5889,storm_outflow,0.018,2010-12-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0 -5890,baseflow,0.042977584382000264,2010-12-17,0.0,0.0,4.532183318787598e-06,0.0,0.0,0.0,0.0,0.0,11.105064108229477,0.0,0.0,0.0 -5891,catchment_outflow,0.061023286085180053,2010-12-17,0.0,0.0,5.53761838120465e-06,0.0,0.0,0.0,0.0,0.0,8.40834220550798,0.0,0.0,0.0 -5892,reservoir_outflow,0.009,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5893,gw1_gw2,0.0,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5894,gw2_gw1,0.003148300134194315,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5895,urban_drainage,0.028999999999999998,2010-12-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5896,percolation,0.041969661447518514,2010-12-18,0.0,0.0,5.071691180405992e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5897,runoff,3.65613625438299e-05,2010-12-18,0.0,0.0,4.3480499336416486e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5898,storm_outflow,0.028999999999999998,2010-12-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5899,baseflow,0.04297506457466405,2010-12-18,0.0,0.0,4.533532088441644e-06,0.0,0.0,0.0,0.0,0.0,11.105912245659695,0.0,0.0,0.0 -5900,catchment_outflow,0.07201162593720788,2010-12-18,0.0,0.0,5.537880138375285e-06,0.0,0.0,0.0,0.0,0.0,7.2573138411839455,0.0,0.0,0.0 -5901,reservoir_outflow,0.014499999999999999,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5902,gw1_gw2,0.0,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5903,gw2_gw1,0.003127311466633387,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5904,urban_drainage,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5905,percolation,0.04113026821856814,2010-12-19,0.0,0.0,4.970257356797873e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5906,runoff,2.924909003506392e-05,2010-12-19,0.0,0.0,3.4784399469133187e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5907,storm_outflow,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5908,baseflow,0.04297045258377381,2010-12-19,0.0,0.0,4.534623901612535e-06,0.0,0.0,0.0,0.0,0.0,11.106741480009639,0.0,0.0,0.0 -5909,catchment_outflow,0.04299970167380888,2010-12-19,0.0,0.0,4.538102341559449e-06,0.0,0.0,0.0,0.0,0.0,11.104397736857093,0.0,0.0,0.0 -5910,reservoir_outflow,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5911,gw1_gw2,0.0,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5912,gw2_gw1,0.0031064627235220855,2010-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5913,urban_drainage,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5914,percolation,0.04030766285419678,2010-12-20,0.0,0.0,4.870852209661915e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5915,runoff,2.3399272028051137e-05,2010-12-20,0.0,0.0,2.782751957530655e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5916,storm_outflow,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5917,baseflow,0.04296379560944987,2010-12-20,0.0,0.0,4.535464472382658e-06,0.0,0.0,0.0,0.0,0.0,11.107552310665268,0.0,0.0,0.0 -5918,catchment_outflow,0.042987194881477925,2010-12-20,0.0,0.0,4.538247224340189e-06,0.0,0.0,0.0,0.0,0.0,11.105676329267622,0.0,0.0,0.0 -5919,reservoir_outflow,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5920,gw1_gw2,0.0,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5921,gw2_gw1,0.0030857529720321967,2010-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5922,urban_drainage,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5923,percolation,0.03950150959711284,2010-12-21,0.0,0.0,4.773435165468677e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5924,runoff,1.871941762244091e-05,2010-12-21,0.0,0.0,2.2262015660245243e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5925,storm_outflow,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5926,baseflow,0.042955139894419035,2010-12-21,0.0,0.0,4.536059399115374e-06,0.0,0.0,0.0,0.0,0.0,11.108345220729289,0.0,0.0,0.0 -5927,catchment_outflow,0.04297385931204148,2010-12-21,0.0,0.0,4.538285600681399e-06,0.0,0.0,0.0,0.0,0.0,11.10684362449857,0.0,0.0,0.0 -5928,reservoir_outflow,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5929,gw1_gw2,0.0,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5930,gw2_gw1,0.0030651812855518657,2010-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5931,urban_drainage,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5932,percolation,0.03871147940517059,2010-12-22,0.0,0.0,4.677966462159304e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5933,runoff,1.4975534097952727e-05,2010-12-22,0.0,0.0,1.7809612528196192e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5934,storm_outflow,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5935,baseflow,0.0429445307431959,2010-12-22,0.0,0.0,4.536414166772983e-06,0.0,0.0,0.0,0.0,0.0,11.109120677675469,0.0,0.0,0.0 -5936,catchment_outflow,0.042959506277293856,2010-12-22,0.0,0.0,4.5381951280258025e-06,0.0,0.0,0.0,0.0,0.0,11.107918729015292,0.0,0.0,0.0 -5937,reservoir_outflow,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5938,gw1_gw2,0.0,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5939,gw2_gw1,0.0030447467436486523,2010-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5940,urban_drainage,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5941,percolation,0.03793724981706718,2010-12-23,0.0,0.0,4.5844071329161175e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5942,runoff,1.1980427278362183e-05,2010-12-23,0.0,0.0,1.4247690022556954e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5943,storm_outflow,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5944,baseflow,0.04293201254088058,2010-12-23,0.0,0.0,4.536534149188341e-06,0.0,0.0,0.0,0.0,0.0,11.109879133971482,0.0,0.0,0.0 -5945,catchment_outflow,0.04294399296815894,2010-12-23,0.0,0.0,4.537958918190597e-06,0.0,0.0,0.0,0.0,0.0,11.108917016092258,0.0,0.0,0.0 -5946,reservoir_outflow,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5947,gw1_gw2,0.0,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5948,gw2_gw1,0.0030244484320242297,2010-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5949,urban_drainage,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5950,percolation,0.037178504820725836,2010-12-24,0.0,0.0,4.492718990257796e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5951,runoff,9.584341822689747e-06,2010-12-24,0.0,0.0,1.1398152018045566e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5952,storm_outflow,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5953,baseflow,0.042917628771580195,2010-12-24,0.0,0.0,4.536424611291015e-06,0.0,0.0,0.0,0.0,0.0,11.110621027672082,0.0,0.0,0.0 -5954,catchment_outflow,0.04292721311340288,2010-12-24,0.0,0.0,4.53756442649282e-06,0.0,0.0,0.0,0.0,0.0,11.109850866859931,0.0,0.0,0.0 -5955,reservoir_outflow,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5956,gw1_gw2,0.0,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5957,gw2_gw1,0.003004285442477439,2010-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5958,urban_drainage,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5959,percolation,0.03643493472431132,2010-12-25,0.0,0.0,4.402864610452639e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5960,runoff,7.667473458151797e-06,2010-12-25,0.0,0.0,9.118521614436451e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5961,storm_outflow,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5962,baseflow,0.04290142203646202,2010-12-25,0.0,0.0,4.536090711288918e-06,0.0,0.0,0.0,0.0,0.0,11.111346782984198,0.0,0.0,0.0 -5963,catchment_outflow,0.04290908950992017,2010-12-25,0.0,0.0,4.5370025634503615e-06,0.0,0.0,0.0,0.0,0.0,11.110730264412876,0.0,0.0,0.0 -5964,reservoir_outflow,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5965,gw1_gw2,0.0,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5966,gw2_gw1,0.002984256872860769,2010-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5967,urban_drainage,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5968,percolation,0.03570623602982509,2010-12-26,0.0,0.0,4.314807318243587e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5969,runoff,6.133978766521439e-06,2010-12-26,0.0,0.0,7.294817291549163e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5970,storm_outflow,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5971,baseflow,0.04288343407144543,2010-12-26,0.0,0.0,4.535537502806305e-06,0.0,0.0,0.0,0.0,0.0,11.112056810805537,0.0,0.0,0.0 -5972,catchment_outflow,0.042889568050211956,2010-12-26,0.0,0.0,4.53626698453546e-06,0.0,0.0,0.0,0.0,0.0,11.111563269911864,0.0,0.0,0.0 -5973,reservoir_outflow,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5974,gw1_gw2,0.0,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5975,gw2_gw1,0.0029643618270416283,2010-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5976,urban_drainage,0.04,2010-12-27,0.0,0.0,8.571428571428573e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5977,percolation,0.034992111309228593,2010-12-27,0.0,0.0,4.228511171878716e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5978,runoff,4.90718301321715e-06,2010-12-27,0.0,0.0,5.83585383323933e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5979,storm_outflow,0.04,2010-12-27,0.0,0.0,8.571428571428573e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5980,baseflow,0.04286370576453989,2010-12-27,0.0,0.0,4.534769936978987e-06,0.0,0.0,0.0,0.0,0.0,11.112751509238104,0.0,0.0,0.0 -5981,catchment_outflow,0.0828686129475531,2010-12-27,0.0,0.0,1.3106782093790883e-05,0.0,0.0,0.0,0.0,0.0,6.570813042603665,0.0,0.0,0.0 -5982,reservoir_outflow,0.020999999999999998,2010-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5983,gw1_gw2,0.0,2010-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5984,gw2_gw1,0.0029445994148614933,2010-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5985,urban_drainage,0.0009999999999999944,2010-12-28,0.0,0.0,1.4285714285714276e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5986,percolation,0.034292269083044016,2010-12-28,0.0,0.0,4.143940948441141e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5987,runoff,3.92574641057372e-06,2010-12-28,0.0,0.0,4.668683066591464e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5988,storm_outflow,0.0009999999999999944,2010-12-28,0.0,0.0,1.4285714285714276e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5989,baseflow,0.04284227717283615,2010-12-28,0.0,0.0,4.533792864507641e-06,0.0,0.0,0.0,0.0,0.0,11.113431264078002,0.0,0.0,0.0 -5990,catchment_outflow,0.04384620291924672,2010-12-28,0.0,0.0,5.9628311613857275e-06,0.0,0.0,0.0,0.0,0.0,10.89851156825246,0.0,0.0,0.0 -5991,reservoir_outflow,0.0,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5992,gw1_gw2,0.0,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5993,gw2_gw1,0.00292496875209558,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5994,urban_drainage,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5995,percolation,0.033606423701383135,2010-12-29,0.0,0.0,4.0610621294723176e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5996,runoff,3.140597128458977e-06,2010-12-29,0.0,0.0,3.7349464532731726e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5997,storm_outflow,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5998,baseflow,0.04281918753915751,2010-12-29,0.0,0.0,4.532611037670053e-06,0.0,0.0,0.0,0.0,0.0,11.114096449282796,0.0,0.0,0.0 -5999,catchment_outflow,0.04282232813628597,2010-12-29,0.0,0.0,4.53298453231538e-06,0.0,0.0,0.0,0.0,0.0,11.113843209977603,0.0,0.0,0.0 -6000,reservoir_outflow,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6001,gw1_gw2,0.0,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6002,gw2_gw1,0.0029054689604150145,2010-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6003,urban_drainage,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6004,percolation,0.03293429522735548,2010-12-30,0.0,0.0,3.979840886882872e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -6005,runoff,2.512477702767181e-06,2010-12-30,0.0,0.0,2.9879571626185377e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -6006,storm_outflow,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6007,baseflow,0.04279447530837801,2010-12-30,0.0,0.0,4.531229112293085e-06,0.0,0.0,0.0,0.0,0.0,11.114747427417617,0.0,0.0,0.0 -6008,catchment_outflow,0.04279698778608078,2010-12-30,0.0,0.0,4.531527908009347e-06,0.0,0.0,0.0,0.0,0.0,11.11454467780097,0.0,0.0,0.0 -6009,reservoir_outflow,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6010,gw1_gw2,0.0,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6011,gw2_gw1,0.0028860991673452575,2010-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6012,urban_drainage,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6013,percolation,0.03227560932280837,2010-12-31,0.0,0.0,3.900244069145214e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -6014,runoff,2.0099821622137446e-06,2010-12-31,0.0,0.0,2.3903657300948294e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -6015,storm_outflow,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6016,baseflow,0.04276817814341409,2010-12-31,0.0,0.0,4.529651649685215e-06,0.0,0.0,0.0,0.0,0.0,11.115384550081139,0.0,0.0,0.0 -6017,catchment_outflow,0.04277018812557631,2010-12-31,0.0,0.0,4.529890686258225e-06,0.0,0.0,0.0,0.0,0.0,11.115222218812482,0.0,0.0,0.0 -6018,reservoir_outflow,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6019,gw1_gw2,0.0,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6020,gw2_gw1,0.0028668585062293418,2010-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6021,urban_drainage,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6022,percolation,0.0316300971363522,2011-01-01,0.0,0.0,3.82223918776231e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926794,0.0,0.0,0.0 -6023,runoff,1.6079857297709958e-06,2011-01-01,0.0,0.0,1.9122925840758642e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -6024,storm_outflow,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6025,baseflow,0.042740332940896436,2011-01-01,0.0,0.0,4.527883118530408e-06,0.0,0.0,0.0,0.0,0.0,11.116008158312473,0.0,0.0,0.0 -6026,catchment_outflow,0.042741940926626205,2011-01-01,0.0,0.0,4.528074347788816e-06,0.0,0.0,0.0,0.0,0.0,11.115878184012011,0.0,0.0,0.0 -6027,reservoir_outflow,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6028,gw1_gw2,0.0,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6029,gw2_gw1,0.0028477461161878995,2011-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6030,urban_drainage,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6031,percolation,0.030997495193625157,2011-01-02,0.0,0.0,3.7457944040070632e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -6032,runoff,1.2863885838167967e-06,2011-01-02,0.0,0.0,1.5298340672606912e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -6033,storm_outflow,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6034,baseflow,0.04271097584652825,2011-01-02,0.0,0.0,4.5259278967440995e-06,0.0,0.0,0.0,0.0,0.0,11.11661858297999,0.0,0.0,0.0 -6035,catchment_outflow,0.04271226223511206,2011-01-02,0.0,0.0,4.526080880150826e-06,0.0,0.0,0.0,0.0,0.0,11.116514512904828,0.0,0.0,0.0 -6036,reservoir_outflow,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6037,gw1_gw2,0.0,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6038,gw2_gw1,0.002828761142080083,2011-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6039,urban_drainage,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6040,percolation,0.03037754528975265,2011-01-03,0.0,0.0,3.6708785159269217e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -6041,runoff,1.0291108670534374e-06,2011-01-03,0.0,0.0,1.223867253808553e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -6042,storm_outflow,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6043,baseflow,0.042680142270136306,2011-01-03,0.0,0.0,4.523790273292056e-06,0.0,0.0,0.0,0.0,0.0,11.117216145152977,0.0,0.0,0.0 -6044,catchment_outflow,0.04268117138100336,2011-01-03,0.0,0.0,4.523912660017437e-06,0.0,0.0,0.0,0.0,0.0,11.117132814037275,0.0,0.0,0.0 -6045,reservoir_outflow,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6046,gw1_gw2,0.0,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6047,gw2_gw1,0.0028099027344659078,2011-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6048,urban_drainage,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6049,percolation,0.029769994383957603,2011-01-04,0.0,0.0,3.5974609456083835e-06,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -6050,runoff,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6051,storm_outflow,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6052,baseflow,0.04264786690042086,2011-01-04,0.0,0.0,4.521474449972847e-06,0.0,0.0,0.0,0.0,0.0,11.117801156457038,0.0,0.0,0.0 -6053,catchment_outflow,0.04264786690042086,2011-01-04,0.0,0.0,4.521474449972847e-06,0.0,0.0,0.0,0.0,0.0,11.117801156457038,0.0,0.0,0.0 -6054,reservoir_outflow,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6055,gw1_gw2,0.0,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6056,gw2_gw1,0.0027911700495698356,2011-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6057,urban_drainage,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6058,percolation,0.029174594496278454,2011-01-05,0.0,0.0,3.525511726696216e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -6059,runoff,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6060,storm_outflow,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6061,baseflow,0.04261418371941051,2011-01-05,0.0,0.0,4.518984543164656e-06,0.0,0.0,0.0,0.0,0.0,11.118373919414037,0.0,0.0,0.0 -6062,catchment_outflow,0.04261418371941051,2011-01-05,0.0,0.0,4.518984543164656e-06,0.0,0.0,0.0,0.0,0.0,11.118373919414037,0.0,0.0,0.0 -6063,reservoir_outflow,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6064,gw1_gw2,0.0,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6065,gw2_gw1,0.00277256224923903,2011-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6066,urban_drainage,0.04,2011-01-06,0.0,0.0,4.186046511627907e-06,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0 -6067,percolation,0.028591102606352885,2011-01-06,0.0,0.0,3.455001492162292e-06,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -6068,runoff,0.0,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6069,storm_outflow,0.04,2011-01-06,0.0,0.0,4.186046511627907e-06,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0 -6070,baseflow,0.04257912601662786,2011-01-06,0.0,0.0,4.51632458553715e-06,0.0,0.0,0.0,0.0,0.0,11.11893472776739,0.0,0.0,0.0 -6071,catchment_outflow,0.08257912601662787,2011-01-06,0.0,0.0,8.702371097165057e-06,0.0,0.0,0.0,0.0,0.0,7.731185273330628,0.0,0.0,0.0 -6072,reservoir_outflow,0.043,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6073,gw1_gw2,0.0,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6074,gw2_gw1,0.002754078500911028,2011-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6075,urban_drainage,0.04,2011-01-07,0.0,0.0,3.0599755201958387e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -6076,percolation,0.030387788963486703,2011-01-07,0.0,0.0,3.7427982348211236e-06,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 -6077,runoff,0.016206407141531196,2011-01-07,0.0,0.0,1.1897538177205634e-06,0.0,0.0,0.0,0.0,0.0,4.650035359665765,0.0,0.0,0.0 -6078,storm_outflow,0.04,2011-01-07,0.0,0.0,3.0599755201958387e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -6079,baseflow,0.042548647673995015,2011-01-07,0.0,0.0,4.514390769660361e-06,0.0,0.0,0.0,0.0,0.0,11.118620131524594,0.0,0.0,0.0 -6080,catchment_outflow,0.09875505481552621,2011-01-07,0.0,0.0,8.764120107576763e-06,0.0,0.0,0.0,0.0,0.0,7.268333995282195,0.0,0.0,0.0 -6081,reservoir_outflow,0.015,2011-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6082,gw1_gw2,0.0,2011-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6083,gw2_gw1,0.002735717977571639,2011-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6084,urban_drainage,0.015999999999999983,2011-01-08,0.0,0.0,3.7539779681762537e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -6085,percolation,0.02978003318421697,2011-01-08,0.0,0.0,3.6679422701247013e-06,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 -6086,runoff,0.006316681055650576,2011-01-08,0.0,0.0,9.518030541764507e-07,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 -6087,storm_outflow,0.015999999999999983,2011-01-08,0.0,0.0,3.7539779681762537e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -6088,baseflow,0.04251672613777057,2011-01-08,0.0,0.0,4.512274648411521e-06,0.0,0.0,0.0,0.0,0.0,11.118312146614338,0.0,0.0,0.0 -6089,catchment_outflow,0.06483340719342112,2011-01-08,0.0,0.0,9.218055670764225e-06,0.0,0.0,0.0,0.0,0.0,8.814687304152423,0.0,0.0,0.0 -6090,reservoir_outflow,0.0,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6091,gw1_gw2,0.0,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6092,gw2_gw1,0.0027174798577211945,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6093,urban_drainage,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6094,percolation,0.029184432520532624,2011-01-09,0.0,0.0,3.594583424722207e-06,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 -6095,runoff,0.0053017193547274565,2011-01-09,0.0,0.0,7.614424433411606e-07,0.0,0.0,0.0,0.0,0.0,4.9149268934490085,0.0,0.0,0.0 -6096,storm_outflow,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6097,baseflow,0.04248339540372748,2011-01-09,0.0,0.0,4.509980420352298e-06,0.0,0.0,0.0,0.0,0.0,11.118010613536566,0.0,0.0,0.0 -6098,catchment_outflow,0.04778511475845494,2011-01-09,0.0,0.0,5.271422863693458e-06,0.0,0.0,0.0,0.0,0.0,10.429783554042812,0.0,0.0,0.0 -6099,reservoir_outflow,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6100,gw1_gw2,0.0,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6101,gw2_gw1,0.002699363325336357,2011-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6102,urban_drainage,0.04,2011-01-10,0.0,0.0,1.4285714285714286e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -6103,percolation,0.032830312053485064,2011-01-10,0.0,0.0,4.1497580943721205e-06,0.0,0.0,0.0,0.0,0.0,10.25712617259147,0.0,0.0,0.0 -6104,runoff,0.03298182660389015,2011-01-10,0.0,0.0,2.699375081820786e-06,0.0,0.0,0.0,0.0,0.0,5.356040999698479,0.0,0.0,0.0 -6105,storm_outflow,0.04,2011-01-10,0.0,0.0,1.4285714285714286e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -6106,baseflow,0.04245926269535187,2011-01-10,0.0,0.0,4.509079864537347e-06,0.0,0.0,0.0,0.0,0.0,11.116346482847286,0.0,0.0,0.0 -6107,catchment_outflow,0.11544108929924203,2011-01-10,0.0,0.0,8.637026374929563e-06,0.0,0.0,0.0,0.0,0.0,7.42927753254297,0.0,0.0,0.0 -6108,reservoir_outflow,0.028,2011-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6109,gw1_gw2,0.0,2011-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6110,gw2_gw1,0.002681367569834059,2011-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6111,urban_drainage,0.04,2011-01-11,0.0,0.0,9.67032967032967e-07,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0 -6112,percolation,0.03929726628631597,2011-01-11,0.0,0.0,5.0903884413392396e-06,0.0,0.0,0.0,0.0,0.0,9.459751678356323,0.0,0.0,0.0 -6113,runoff,0.06325313980036021,2011-01-11,0.0,0.0,5.571585094971836e-06,0.0,0.0,0.0,0.0,0.0,5.6261065041825695,0.0,0.0,0.0 -6114,storm_outflow,0.04,2011-01-11,0.0,0.0,9.67032967032967e-07,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0 -6115,baseflow,0.04245135770432928,2011-01-11,0.0,0.0,4.510533135979353e-06,0.0,0.0,0.0,0.0,0.0,11.112512703983603,0.0,0.0,0.0 -6116,catchment_outflow,0.1457044975046895,2011-01-11,0.0,0.0,1.1049151197984156e-05,0.0,0.0,0.0,0.0,0.0,7.171380970516471,0.0,0.0,0.0 -6117,reservoir_outflow,0.0245,2011-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6118,gw1_gw2,0.0,2011-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6119,gw2_gw1,0.002663491786035444,2011-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6120,urban_drainage,0.04,2011-01-12,0.0,0.0,6.230662541342152e-07,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0 -6121,percolation,0.04934864098906472,2011-01-12,0.0,0.0,6.473122233821975e-06,0.0,0.0,0.0,0.0,0.0,8.71905448134368,0.0,0.0,0.0 -6122,runoff,0.10475663702065977,2011-01-12,0.0,0.0,9.405739947009204e-06,0.0,0.0,0.0,0.0,0.0,5.838502419981955,0.0,0.0,0.0 -6123,storm_outflow,0.04,2011-01-12,0.0,0.0,6.230662541342152e-07,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0 -6124,baseflow,0.042468600912541114,2011-01-12,0.0,0.0,4.51543960872396e-06,0.0,0.0,0.0,0.0,0.0,11.105559689991297,0.0,0.0,0.0 -6125,catchment_outflow,0.1872252379332009,2011-01-12,0.0,0.0,1.454424580986738e-05,0.0,0.0,0.0,0.0,0.0,6.990921134874436,0.0,0.0,0.0 -6126,reservoir_outflow,0.039,2011-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6127,gw1_gw2,0.0,2011-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6128,gw2_gw1,0.0026457351741283833,2011-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6129,urban_drainage,0.04,2011-01-13,0.0,0.0,7.925317401045556e-07,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -6130,percolation,0.055111291664240225,2011-01-13,0.0,0.0,7.24702453347992e-06,0.0,0.0,0.0,0.0,0.0,8.420444500933675,0.0,0.0,0.0 -6131,runoff,0.09956639660735489,2011-01-13,0.0,0.0,1.0535807772055313e-05,0.0,0.0,0.0,0.0,0.0,5.996624687015764,0.0,0.0,0.0 -6132,storm_outflow,0.04,2011-01-13,0.0,0.0,7.925317401045556e-07,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -6133,baseflow,0.04250020763942036,2011-01-13,0.0,0.0,4.522268571035849e-06,0.0,0.0,0.0,0.0,0.0,11.096855016852302,0.0,0.0,0.0 -6134,catchment_outflow,0.18206660424677526,2011-01-13,0.0,0.0,1.5850608083195717e-05,0.0,0.0,0.0,0.0,0.0,7.131188927094177,0.0,0.0,0.0 -6135,reservoir_outflow,0.018500000000000003,2011-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6136,gw1_gw2,0.0,2011-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6137,gw2_gw1,0.002628096939634084,2011-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6138,urban_drainage,0.04,2011-01-14,0.0,0.0,1.6836904693514104e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -6139,percolation,0.055427503481067675,2011-01-14,0.0,0.0,7.292642789091205e-06,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 -6140,runoff,0.07041190543238719,2011-01-14,0.0,0.0,9.063842038580529e-06,0.0,0.0,0.0,0.0,0.0,6.059421888938696,0.0,0.0,0.0 -6141,storm_outflow,0.04,2011-01-14,0.0,0.0,1.6836904693514104e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -6142,baseflow,0.04253252587902447,2011-01-14,0.0,0.0,4.5291945065809875e-06,0.0,0.0,0.0,0.0,0.0,11.087972835755744,0.0,0.0,0.0 -6143,catchment_outflow,0.15294443131141167,2011-01-14,0.0,0.0,1.5276727014512926e-05,0.0,0.0,0.0,0.0,0.0,7.3747394453977755,0.0,0.0,0.0 -6144,reservoir_outflow,0.0,2011-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6145,gw1_gw2,0.0,2011-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6146,gw2_gw1,0.0026105762933696045,2011-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6147,urban_drainage,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6148,percolation,0.05431895341144631,2011-01-15,0.0,0.0,7.14678993330938e-06,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 -6149,runoff,0.053936370370550143,2011-01-15,0.0,0.0,7.251073630864423e-06,0.0,0.0,0.0,0.0,0.0,6.062771010075118,0.0,0.0,0.0 -6150,storm_outflow,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6151,baseflow,0.04256199194785553,2011-01-15,0.0,0.0,4.535738495147808e-06,0.0,0.0,0.0,0.0,0.0,11.079302663812108,0.0,0.0,0.0 -6152,catchment_outflow,0.09649836231840567,2011-01-15,0.0,0.0,1.178681212601223e-05,0.0,0.0,0.0,0.0,0.0,8.275384516903426,0.0,0.0,0.0 -6153,reservoir_outflow,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6154,gw1_gw2,0.0,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6155,gw2_gw1,0.00259317245141375,2011-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6156,urban_drainage,0.04,2011-01-16,0.0,0.0,2.385816324576594e-06,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 -6157,percolation,0.0599694330912807,2011-01-16,0.0,0.0,7.892905061395146e-06,0.0,0.0,0.0,0.0,0.0,8.196212197381252,0.0,0.0,0.0 -6158,runoff,0.08797265267901411,2011-01-16,0.0,0.0,8.764361993864711e-06,0.0,0.0,0.0,0.0,0.0,6.378971588562326,0.0,0.0,0.0 -6159,storm_outflow,0.04,2011-01-16,0.0,0.0,2.385816324576594e-06,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 -6160,baseflow,0.042605510550714085,2011-01-16,0.0,0.0,4.544131411563426e-06,0.0,0.0,0.0,0.0,0.0,11.069157420944,0.0,0.0,0.0 -6161,catchment_outflow,0.17057816322972819,2011-01-16,0.0,0.0,1.5694309730004732e-05,0.0,0.0,0.0,0.0,0.0,7.58720050814736,0.0,0.0,0.0 -6162,reservoir_outflow,0.020999999999999998,2011-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6163,gw1_gw2,0.0,2011-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6164,gw2_gw1,0.0025758846350708354,2011-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6165,urban_drainage,0.04,2011-01-17,0.0,0.0,9.327423468573579e-07,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -6166,percolation,0.0661735592258868,2011-01-17,0.0,0.0,8.684524632006908e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6167,runoff,0.10212326900142606,2011-01-17,0.0,0.0,1.0176415167890654e-05,0.0,0.0,0.0,0.0,0.0,6.59150412835554,0.0,0.0,0.0 -6168,storm_outflow,0.04,2011-01-17,0.0,0.0,9.327423468573579e-07,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -6169,baseflow,0.04266443067240202,2011-01-17,0.0,0.0,4.554482394614535e-06,0.0,0.0,0.0,0.0,0.0,11.057496523358662,0.0,0.0,0.0 -6170,catchment_outflow,0.18478769967382808,2011-01-17,0.0,0.0,1.5663639909362548e-05,0.0,0.0,0.0,0.0,0.0,7.6535223566102575,0.0,0.0,0.0 -6171,reservoir_outflow,0.023,2011-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6172,gw1_gw2,0.0,2011-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6173,gw2_gw1,0.0025587120708371104,2011-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6174,urban_drainage,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6175,percolation,0.06485008804136906,2011-01-18,0.0,0.0,8.51083413936677e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6176,runoff,0.06091681928133252,2011-01-18,0.0,0.0,8.141132134312524e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -6177,storm_outflow,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6178,baseflow,0.04271989481582443,2011-01-18,0.0,0.0,4.564373273976415e-06,0.0,0.0,0.0,0.0,0.0,11.046127934508393,0.0,0.0,0.0 -6179,catchment_outflow,0.10363671409715694,2011-01-18,0.0,0.0,1.2705505408288938e-05,0.0,0.0,0.0,0.0,0.0,8.397386094135298,0.0,0.0,0.0 -6180,reservoir_outflow,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6181,gw1_gw2,0.0,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6182,gw2_gw1,0.0025416539903648783,2011-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6183,urban_drainage,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6184,percolation,0.06355308628054168,2011-01-19,0.0,0.0,8.340617456579435e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6185,runoff,0.04911129709170614,2011-01-19,0.0,0.0,6.512905707450018e-06,0.0,0.0,0.0,0.0,0.0,6.5418713211101975,0.0,0.0,0.0 -6186,storm_outflow,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6187,baseflow,0.04277197779448622,2011-01-19,0.0,0.0,4.573813884432923e-06,0.0,0.0,0.0,0.0,0.0,11.035042514248005,0.0,0.0,0.0 -6188,catchment_outflow,0.09188327488619236,2011-01-19,0.0,0.0,1.1086719591882941e-05,0.0,0.0,0.0,0.0,0.0,8.633457833865148,0.0,0.0,0.0 -6189,reservoir_outflow,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6190,gw1_gw2,0.0,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6191,gw2_gw1,0.002524709630429278,2011-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6192,urban_drainage,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6193,percolation,0.06228202455493084,2011-01-20,0.0,0.0,8.173805107447845e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6194,runoff,0.038986764340052805,2011-01-20,0.0,0.0,5.210324565960015e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 -6195,storm_outflow,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6196,baseflow,0.04282075291138734,2011-01-20,0.0,0.0,4.58281386249046e-06,0.0,0.0,0.0,0.0,0.0,11.02423148560609,0.0,0.0,0.0 -6197,catchment_outflow,0.08180751725144014,2011-01-20,0.0,0.0,9.793138428450475e-06,0.0,0.0,0.0,0.0,0.0,8.887132711427665,0.0,0.0,0.0 -6198,reservoir_outflow,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6199,gw1_gw2,0.0,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6200,gw2_gw1,0.0025078782328927574,2011-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6201,urban_drainage,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6202,percolation,0.06103638406383222,2011-01-21,0.0,0.0,8.010329005298889e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6203,runoff,0.031189411472042246,2011-01-21,0.0,0.0,4.1682596527680125e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 -6204,storm_outflow,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6205,baseflow,0.042866291989268446,2011-01-21,0.0,0.0,4.591382650347482e-06,0.0,0.0,0.0,0.0,0.0,11.01368641692271,0.0,0.0,0.0 -6206,catchment_outflow,0.07405570346131068,2011-01-21,0.0,0.0,8.759642303115495e-06,0.0,0.0,0.0,0.0,0.0,9.129487160669099,0.0,0.0,0.0 -6207,reservoir_outflow,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6208,gw1_gw2,0.0,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6209,gw2_gw1,0.002491159044673452,2011-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6210,urban_drainage,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6211,percolation,0.0598156563825556,2011-01-22,0.0,0.0,7.850122425192914e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6212,runoff,0.025218174052438317,2011-01-22,0.0,0.0,3.3346077222144104e-06,0.0,0.0,0.0,0.0,0.0,6.537862396017194,0.0,0.0,0.0 -6213,storm_outflow,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6214,baseflow,0.04290866540025165,2011-01-22,0.0,0.0,4.599529499784594e-06,0.0,0.0,0.0,0.0,0.0,11.003399205033588,0.0,0.0,0.0 -6215,catchment_outflow,0.06812683945268996,2011-01-22,0.0,0.0,7.934137221999004e-06,0.0,0.0,0.0,0.0,0.0,9.350413606522912,0.0,0.0,0.0 -6216,reservoir_outflow,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6217,gw1_gw2,0.0,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6218,gw2_gw1,0.0024745513177091283,2011-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6219,urban_drainage,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6220,percolation,0.05861934325490447,2011-01-23,0.0,0.0,7.693119976689053e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6221,runoff,0.01996122334210704,2011-01-23,0.0,0.0,2.6676861777715285e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -6222,storm_outflow,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6223,baseflow,0.04294794209488829,2011-01-23,0.0,0.0,4.607263475976856e-06,0.0,0.0,0.0,0.0,0.0,10.993362059429959,0.0,0.0,0.0 -6224,catchment_outflow,0.06290916543699533,2011-01-23,0.0,0.0,7.274949653748384e-06,0.0,0.0,0.0,0.0,0.0,9.580258750420974,0.0,0.0,0.0 -6225,reservoir_outflow,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6226,gw1_gw2,0.0,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6227,gw2_gw1,0.002458054308924318,2011-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6228,urban_drainage,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6229,percolation,0.057446956389806396,2011-01-24,0.0,0.0,7.539257577155273e-06,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -6230,runoff,0.01596897867368563,2011-01-24,0.0,0.0,2.1341489422172223e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -6231,storm_outflow,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6232,baseflow,0.042984189630625586,2011-01-24,0.0,0.0,4.6145934612298015e-06,0.0,0.0,0.0,0.0,0.0,10.983567487328624,0.0,0.0,0.0 -6233,catchment_outflow,0.058953168304311215,2011-01-24,0.0,0.0,6.748742403447024e-06,0.0,0.0,0.0,0.0,0.0,9.779877972330736,0.0,0.0,0.0 -6234,reservoir_outflow,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6235,gw1_gw2,0.0,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6236,gw2_gw1,0.00244166728019799,2011-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6237,urban_drainage,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6238,percolation,0.05664457931032434,2011-01-25,0.0,0.0,7.436544075210985e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6239,runoff,0.015146396953729102,2011-01-25,0.0,0.0,1.8675579857698374e-06,0.0,0.0,0.0,0.0,0.0,6.495321646248307,0.0,0.0,0.0 -6240,storm_outflow,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6241,baseflow,0.043018340604824824,2011-01-25,0.0,0.0,4.621648337764755e-06,0.0,0.0,0.0,0.0,0.0,10.97392077609062,0.0,0.0,0.0 -6242,catchment_outflow,0.058164737558553926,2011-01-25,0.0,0.0,6.489206323534592e-06,0.0,0.0,0.0,0.0,0.0,9.807670517522379,0.0,0.0,0.0 -6243,reservoir_outflow,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6244,gw1_gw2,0.0,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6245,gw2_gw1,0.0024253894983297998,2011-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6246,urban_drainage,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6247,percolation,0.05551168772411786,2011-01-26,0.0,0.0,7.287813193706766e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6248,runoff,0.011473305015097955,2011-01-26,0.0,0.0,1.4940463886158698e-06,0.0,0.0,0.0,0.0,0.0,6.517872089997276,0.0,0.0,0.0 -6249,storm_outflow,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6250,baseflow,0.04304957397262306,2011-01-26,0.0,0.0,4.62831374990461e-06,0.0,0.0,0.0,0.0,0.0,10.96450495616262,0.0,0.0,0.0 -6251,catchment_outflow,0.05452287898772101,2011-01-26,0.0,0.0,6.12236013852048e-06,0.0,0.0,0.0,0.0,0.0,10.028795468496648,0.0,0.0,0.0 -6252,reservoir_outflow,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6253,gw1_gw2,0.0,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6254,gw2_gw1,0.0024092202350077586,2011-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6255,urban_drainage,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6256,percolation,0.054401453969635506,2011-01-27,0.0,0.0,7.14205692983263e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6257,runoff,0.008915449450663762,2011-01-27,0.0,0.0,1.1952371108926958e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6258,storm_outflow,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6259,baseflow,0.04307795367261558,2011-01-27,0.0,0.0,4.634598107854431e-06,0.0,0.0,0.0,0.0,0.0,10.955313258872483,0.0,0.0,0.0 -6260,catchment_outflow,0.051993403123279346,2011-01-27,0.0,0.0,5.829835218747126e-06,0.0,0.0,0.0,0.0,0.0,10.199457293390424,0.0,0.0,0.0 -6261,reservoir_outflow,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6262,gw1_gw2,0.0,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6263,gw2_gw1,0.0023931587667744836,2011-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6264,urban_drainage,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6265,percolation,0.05331342489024281,2011-01-28,0.0,0.0,6.999215791235979e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6266,runoff,0.00713235956053101,2011-01-28,0.0,0.0,9.561896887141565e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6267,storm_outflow,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6268,baseflow,0.043103542350659656,2011-01-28,0.0,0.0,4.640509652062884e-06,0.0,0.0,0.0,0.0,0.0,10.94633916540861,0.0,0.0,0.0 -6269,catchment_outflow,0.050235901911190664,2011-01-28,0.0,0.0,5.596699340777041e-06,0.0,0.0,0.0,0.0,0.0,10.321773636012749,0.0,0.0,0.0 -6270,reservoir_outflow,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6271,gw1_gw2,0.0,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6272,gw2_gw1,0.002377204374995756,2011-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6273,urban_drainage,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6274,percolation,0.05224715639243795,2011-01-29,0.0,0.0,6.859231475411259e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6275,runoff,0.005705887648424808,2011-01-29,0.0,0.0,7.649517509713253e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6276,storm_outflow,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6277,baseflow,0.04312640138576409,2011-01-29,0.0,0.0,4.6460564566212545e-06,0.0,0.0,0.0,0.0,0.0,10.937576395411106,0.0,0.0,0.0 -6278,catchment_outflow,0.048832289034188896,2011-01-29,0.0,0.0,5.411008207592579e-06,0.0,0.0,0.0,0.0,0.0,10.424586092236096,0.0,0.0,0.0 -6279,reservoir_outflow,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6280,gw1_gw2,0.0,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6281,gw2_gw1,0.002361356345828902,2011-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6282,urban_drainage,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6283,percolation,0.05120221326458917,2011-01-30,0.0,0.0,6.722046845903032e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6284,runoff,0.0045647101187398465,2011-01-30,0.0,0.0,6.119614007770601e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6285,storm_outflow,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6286,baseflow,0.04314659091546116,2011-01-30,0.0,0.0,4.651246432594459e-06,0.0,0.0,0.0,0.0,0.0,10.929018896184386,0.0,0.0,0.0 -6287,catchment_outflow,0.047711301034201,2011-01-30,0.0,0.0,5.2632078333715194e-06,0.0,0.0,0.0,0.0,0.0,10.509803119874833,0.0,0.0,0.0 -6288,reservoir_outflow,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6289,gw1_gw2,0.0,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6290,gw2_gw1,0.0023456139701902856,2011-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6291,urban_drainage,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6292,percolation,0.0501781689992974,2011-01-31,0.0,0.0,6.5876059089849715e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6293,runoff,0.0036517680949918773,2011-01-31,0.0,0.0,4.895691206216481e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6294,storm_outflow,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6295,baseflow,0.043164169860670745,2011-01-31,0.0,0.0,4.656087331285436e-06,0.0,0.0,0.0,0.0,0.0,10.920660832492084,0.0,0.0,0.0 -6296,catchment_outflow,0.04681593795566262,2011-01-31,0.0,0.0,5.145656451907084e-06,0.0,0.0,0.0,0.0,0.0,10.579526102131013,0.0,0.0,0.0 -6297,reservoir_outflow,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6298,gw1_gw2,0.0,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6299,gw2_gw1,0.0023299765437222674,2011-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6300,urban_drainage,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6301,percolation,0.04917460561931146,2011-02-01,0.0,0.0,6.455853790805273e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6302,runoff,0.0029214144759935018,2011-02-01,0.0,0.0,3.9165529649731844e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6303,storm_outflow,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6304,baseflow,0.043179195950067334,2011-02-01,0.0,0.0,4.660586747434234e-06,0.0,0.0,0.0,0.0,0.0,10.912496576897897,0.0,0.0,0.0 -6305,catchment_outflow,0.04610061042606083,2011-02-01,0.0,0.0,5.052242043931552e-06,0.0,0.0,0.0,0.0,0.0,10.63587154732569,0.0,0.0,0.0 -6306,reservoir_outflow,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6307,gw1_gw2,0.0,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6308,gw2_gw1,0.0023144433667642516,2011-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6309,urban_drainage,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6310,percolation,0.04819111350692522,2011-02-02,0.0,0.0,6.326736714989167e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6311,runoff,0.0023371315807948012,2011-02-02,0.0,0.0,3.133242371978548e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6312,storm_outflow,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6313,baseflow,0.043191725743959485,2011-02-02,0.0,0.0,4.6647521223531225e-06,0.0,0.0,0.0,0.0,0.0,10.904520700618534,0.0,0.0,0.0 -6314,catchment_outflow,0.045528857324754285,2011-02-02,0.0,0.0,4.978076359550977e-06,0.0,0.0,0.0,0.0,0.0,10.68085100838466,0.0,0.0,0.0 -6315,reservoir_outflow,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6316,gw1_gw2,0.0,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6317,gw2_gw1,0.0022990137443192893,2011-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6318,urban_drainage,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6319,percolation,0.04722729123678671,2011-02-03,0.0,0.0,6.2002019806893835e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6320,runoff,0.0018697052646358407,2011-02-03,0.0,0.0,2.506593897582838e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6321,storm_outflow,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6322,baseflow,0.043201814657691545,2011-02-03,0.0,0.0,4.6685907469989625e-06,0.0,0.0,0.0,0.0,0.0,10.89672796485738,0.0,0.0,0.0 -6323,catchment_outflow,0.045071519922327385,2011-02-03,0.0,0.0,4.919250136757247e-06,0.0,0.0,0.0,0.0,0.0,10.7162998297644,0.0,0.0,0.0 -6324,reservoir_outflow,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6325,gw1_gw2,0.0,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6326,gw2_gw1,0.0022836869860235255,2011-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6327,urban_drainage,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6328,percolation,0.04628274541205098,2011-02-04,0.0,0.0,6.0761979410755956e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6329,runoff,0.0014957642117086728,2011-02-04,0.0,0.0,2.0052751180662707e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508526,0.0,0.0,0.0 -6330,storm_outflow,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6331,baseflow,0.04320951698457745,2011-02-04,0.0,0.0,4.672109764984155e-06,0.0,0.0,0.0,0.0,0.0,10.88911331258961,0.0,0.0,0.0 -6332,catchment_outflow,0.044705281196286126,2011-02-04,0.0,0.0,4.872637276790782e-06,0.0,0.0,0.0,0.0,0.0,10.74384308208928,0.0,0.0,0.0 -6333,reservoir_outflow,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6334,gw1_gw2,0.0,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6335,gw2_gw1,0.002268462406116889,2011-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6336,urban_drainage,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6337,percolation,0.04535709050380996,2011-02-05,0.0,0.0,5.954673982254084e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6338,runoff,0.0011966113693669383,2011-02-05,0.0,0.0,1.6042200944530167e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6339,storm_outflow,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6340,baseflow,0.04321488591837553,2011-02-05,0.0,0.0,4.67531617552733e-06,0.0,0.0,0.0,0.0,0.0,10.88167186077152,0.0,0.0,0.0 -6341,catchment_outflow,0.04441149728774247,2011-02-05,0.0,0.0,4.835738184972632e-06,0.0,0.0,0.0,0.0,0.0,10.764887401924765,0.0,0.0,0.0 -6342,reservoir_outflow,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6343,gw1_gw2,0.0,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6344,gw2_gw1,0.00225333932340952,2011-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6345,urban_drainage,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6346,percolation,0.04444994869373376,2011-02-06,0.0,0.0,5.835580502609003e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6347,runoff,0.0009572890954935506,2011-02-06,0.0,0.0,1.2833760755624135e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6348,storm_outflow,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6349,baseflow,0.04321797357531393,2011-02-06,0.0,0.0,4.678216836345034e-06,0.0,0.0,0.0,0.0,0.0,10.874398892948735,0.0,0.0,0.0 -6350,catchment_outflow,0.04417526267080748,2011-02-06,0.0,0.0,4.806554443901275e-06,0.0,0.0,0.0,0.0,0.0,10.78062931335533,0.0,0.0,0.0 -6351,reservoir_outflow,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6352,gw1_gw2,0.0,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6353,gw2_gw1,0.0022383170612533475,2011-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6354,urban_drainage,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6355,percolation,0.043560949719859084,2011-02-07,0.0,0.0,5.718868892556822e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6356,runoff,0.0007658312763948407,2011-02-07,0.0,0.0,1.026700860449931e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508526,0.0,0.0,0.0 -6357,storm_outflow,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6358,baseflow,0.043218831015675294,2011-02-07,0.0,0.0,4.680818466485563e-06,0.0,0.0,0.0,0.0,0.0,10.867289852239603,0.0,0.0,0.0 -6359,catchment_outflow,0.04398466229207013,2011-02-07,0.0,0.0,4.783488552530556e-06,0.0,0.0,0.0,0.0,0.0,10.792072898212151,0.0,0.0,0.0 -6360,reservoir_outflow,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6361,gw1_gw2,0.0,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6362,gw2_gw1,0.0022233949475115367,2011-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6363,urban_drainage,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6364,percolation,0.0426897307254619,2011-02-08,0.0,0.0,5.604491514705686e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6365,runoff,0.0006126650211158723,2011-02-08,0.0,0.0,8.213606883599444e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6366,storm_outflow,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6367,baseflow,0.043217508264949765,2011-02-08,0.0,0.0,4.683127649106114e-06,0.0,0.0,0.0,0.0,0.0,10.860340334671756,0.0,0.0,0.0 -6368,catchment_outflow,0.043830173286065637,2011-02-08,0.0,0.0,4.7652637179421085e-06,0.0,0.0,0.0,0.0,0.0,10.800051818045215,0.0,0.0,0.0 -6369,reservoir_outflow,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6370,gw1_gw2,0.0,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6371,gw2_gw1,0.00220857231452829,2011-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6372,urban_drainage,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6373,percolation,0.04183593611095266,2011-02-09,0.0,0.0,5.4924016844115715e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6374,runoff,0.0004901320168926979,2011-02-09,0.0,0.0,6.570885506879557e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6375,storm_outflow,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6376,baseflow,0.04321405433456477,2011-02-09,0.0,0.0,4.685150834194378e-06,0.0,0.0,0.0,0.0,0.0,10.853546082851231,0.0,0.0,0.0 -6377,catchment_outflow,0.04370418635145747,2011-02-09,0.0,0.0,4.7508596892631735e-06,0.0,0.0,0.0,0.0,0.0,10.805252429529334,0.0,0.0,0.0 -6378,reservoir_outflow,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6379,gw1_gw2,0.0,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6380,gw2_gw1,0.0021938484990981165,2011-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6381,urban_drainage,0.029999999999999995,2011-02-10,0.0,0.0,2.4186548469371474e-05,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 -6382,percolation,0.040999217388733605,2011-02-10,0.0,0.0,5.382553650723339e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6383,runoff,0.0003921056135141583,2011-02-10,0.0,0.0,5.2567084055036446e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6384,storm_outflow,0.029999999999999995,2011-02-10,0.0,0.0,2.4186548469371474e-05,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 -6385,baseflow,0.04320851724220019,2011-02-10,0.0,0.0,4.6868943412357e-06,0.0,0.0,0.0,0.0,0.0,10.846902979944906,0.0,0.0,0.0 -6386,catchment_outflow,0.07360062285571435,2011-02-10,0.0,0.0,2.892600989466221e-05,0.0,0.0,0.0,0.0,0.0,9.327309964011329,0.0,0.0,0.0 -6387,reservoir_outflow,0.015,2011-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6388,gw1_gw2,0.0,2011-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6389,gw2_gw1,0.002179222842437412,2011-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6390,urban_drainage,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6391,percolation,0.04017923304095894,2011-02-11,0.0,0.0,5.274902577708874e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6392,runoff,0.00031368449081132664,2011-02-11,0.0,0.0,4.2053667244029163e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6393,storm_outflow,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6394,baseflow,0.043200944031697094,2011-02-11,0.0,0.0,4.688364361826883e-06,0.0,0.0,0.0,0.0,0.0,10.840407043958301,0.0,0.0,0.0 -6395,catchment_outflow,0.04351462852250842,2011-02-11,0.0,0.0,4.7304180290709125e-06,0.0,0.0,0.0,0.0,0.0,10.809459180662694,0.0,0.0,0.0 -6396,reservoir_outflow,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6397,gw1_gw2,0.0,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6398,gw2_gw1,0.002164694690154789,2011-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6399,urban_drainage,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6400,percolation,0.03937564838013976,2011-02-12,0.0,0.0,5.169404526154697e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6401,runoff,0.0002509475926490613,2011-02-12,0.0,0.0,3.364293379522333e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6402,storm_outflow,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6403,baseflow,0.04319138079256821,2011-02-12,0.0,0.0,4.689566962237703e-06,0.0,0.0,0.0,0.0,0.0,10.834054422291944,0.0,0.0,0.0 -6404,catchment_outflow,0.04344232838521727,2011-02-12,0.0,0.0,4.723209896032926e-06,0.0,0.0,0.0,0.0,0.0,10.8092916233175,0.0,0.0,0.0 -6405,reservoir_outflow,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6406,gw1_gw2,0.0,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6407,gw2_gw1,0.0021502633922199977,2011-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6408,urban_drainage,0.04,2011-02-13,0.0,0.0,1.3483146067415747e-06,0.0,0.0,0.0,0.0,0.0,7.249999999999999,0.0,0.0,0.0 -6409,percolation,0.038588135412536965,2011-02-13,0.0,0.0,5.0660164356316035e-06,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -6410,runoff,0.00020075807411924903,2011-02-13,0.0,0.0,2.6914347036178667e-08,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -6411,storm_outflow,0.04,2011-02-13,0.0,0.0,1.3483146067415747e-06,0.0,0.0,0.0,0.0,0.0,7.249999999999999,0.0,0.0,0.0 -6412,baseflow,0.043179872679118124,2011-02-13,0.0,0.0,4.690508085921188e-06,0.0,0.0,0.0,0.0,0.0,10.82784138656057,0.0,0.0,0.0 -6413,catchment_outflow,0.08338063075323737,2011-02-13,0.0,0.0,6.0657370396989415e-06,0.0,0.0,0.0,0.0,0.0,9.101145273080128,0.0,0.0,0.0 -6414,reservoir_outflow,0.0445,2011-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6415,gw1_gw2,0.0,2011-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6416,gw2_gw1,0.002135928302938872,2011-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6417,urban_drainage,0.039999999999999994,2011-02-14,0.0,0.0,2.6516853932584287e-06,0.0,0.0,0.0,0.0,0.0,7.250000000000001,0.0,0.0,0.0 -6418,percolation,0.03859526489046099,2011-02-14,0.0,0.0,5.081363889399739e-06,0.0,0.0,0.0,0.0,0.0,8.044710711081628,0.0,0.0,0.0 -6419,runoff,0.005489868785754283,2011-02-14,0.0,0.0,4.104240858981702e-07,0.0,0.0,0.0,0.0,0.0,7.424736251476646,0.0,0.0,0.0 -6420,storm_outflow,0.039999999999999994,2011-02-14,0.0,0.0,2.6516853932584287e-06,0.0,0.0,0.0,0.0,0.0,7.250000000000001,0.0,0.0,0.0 -6421,baseflow,0.04316841115964648,2011-02-14,0.0,0.0,4.6914852254298844e-06,0.0,0.0,0.0,0.0,0.0,10.82162065346203,0.0,0.0,0.0 -6422,catchment_outflow,0.08865827994540076,2011-02-14,0.0,0.0,7.753594704586483e-06,0.0,0.0,0.0,0.0,0.0,8.99987004105197,0.0,0.0,0.0 -6423,reservoir_outflow,0.0,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6424,gw1_gw2,0.0,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6425,gw2_gw1,0.0021216887809192286,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6426,urban_drainage,0.025999999999999995,2011-02-15,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 -6427,percolation,0.04075110887677586,2011-02-15,0.0,0.0,5.410339126088895e-06,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 -6428,runoff,0.0222374997833479,2011-02-15,0.0,0.0,1.7636809836423717e-06,0.0,0.0,0.0,0.0,0.0,7.403767791273777,0.0,0.0,0.0 -6429,storm_outflow,0.025999999999999995,2011-02-15,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 -6430,baseflow,0.0431623679039393,2011-02-15,0.0,0.0,4.693282360181532e-06,0.0,0.0,0.0,0.0,0.0,10.814999113295896,0.0,0.0,0.0 -6431,catchment_outflow,0.0913998676872872,2011-02-15,0.0,0.0,7.4569633438239035e-06,0.0,0.0,0.0,0.0,0.0,8.938043631072905,0.0,0.0,0.0 -6432,reservoir_outflow,0.013,2011-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6433,gw1_gw2,0.0,2011-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6434,gw2_gw1,0.002107544189046351,2011-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6435,urban_drainage,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6436,percolation,0.039936086699240335,2011-02-16,0.0,0.0,5.302132343567115e-06,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 -6437,runoff,0.009873526347084681,2011-02-16,0.0,0.0,1.410944786913897e-06,0.0,0.0,0.0,0.0,0.0,7.615465657913542,0.0,0.0,0.0 -6438,storm_outflow,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6439,baseflow,0.04315430220092755,2011-02-16,0.0,0.0,4.6948044851399955e-06,0.0,0.0,0.0,0.0,0.0,10.808524110447275,0.0,0.0,0.0 -6440,catchment_outflow,0.05302782854801223,2011-02-16,0.0,0.0,6.105749272053892e-06,0.0,0.0,0.0,0.0,0.0,10.213992001135493,0.0,0.0,0.0 -6441,reservoir_outflow,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6442,gw1_gw2,0.0,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6443,gw2_gw1,0.0020934938944527914,2011-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6444,urban_drainage,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6445,percolation,0.039137364965255536,2011-02-17,0.0,0.0,5.196089696695776e-06,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 -6446,runoff,0.007657404977695567,2011-02-17,0.0,0.0,1.1287558295311179e-06,0.0,0.0,0.0,0.0,0.0,7.63506657622233,0.0,0.0,0.0 -6447,storm_outflow,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6448,baseflow,0.04314425985783837,2011-02-17,0.0,0.0,4.696057698168886e-06,0.0,0.0,0.0,0.0,0.0,10.802191814804383,0.0,0.0,0.0 -6449,catchment_outflow,0.05080166483553394,2011-02-17,0.0,0.0,5.824813527700004e-06,0.0,0.0,0.0,0.0,0.0,10.324806661278073,0.0,0.0,0.0 -6450,reservoir_outflow,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6451,gw1_gw2,0.0,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6452,gw2_gw1,0.0020795372684897723,2011-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6453,urban_drainage,0.04,2011-02-18,0.0,0.0,2.0338983050847454e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -6454,percolation,0.042893580554158116,2011-02-18,0.0,0.0,5.74801316907719e-06,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 -6455,runoff,0.03718198584884065,2011-02-18,0.0,0.0,3.089155551342658e-06,0.0,0.0,0.0,0.0,0.0,7.101170385001212,0.0,0.0,0.0 -6456,storm_outflow,0.04,2011-02-18,0.0,0.0,2.0338983050847454e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -6457,baseflow,0.04314363315957916,2011-02-18,0.0,0.0,4.698687586846156e-06,0.0,0.0,0.0,0.0,0.0,10.795077476360593,0.0,0.0,0.0 -6458,catchment_outflow,0.12032561900841982,2011-02-18,0.0,0.0,9.82174144327356e-06,0.0,0.0,0.0,0.0,0.0,8.29644166854279,0.0,0.0,0.0 -6459,reservoir_outflow,0.029500000000000005,2011-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6460,gw1_gw2,0.0,2011-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6461,gw2_gw1,0.002065673686699654,2011-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6462,urban_drainage,0.0040000000000000105,2011-02-19,0.0,0.0,1.966101694915255e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -6463,percolation,0.042035708943074956,2011-02-19,0.0,0.0,5.633052905695645e-06,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 -6464,runoff,0.018843954896722127,2011-02-19,0.0,0.0,2.4713244410741272e-06,0.0,0.0,0.0,0.0,0.0,7.312298494511777,0.0,0.0,0.0 -6465,storm_outflow,0.0040000000000000105,2011-02-19,0.0,0.0,1.966101694915255e-06,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -6466,baseflow,0.0431408633490379,2011-02-19,0.0,0.0,4.7010235001432795e-06,0.0,0.0,0.0,0.0,0.0,10.788122307272895,0.0,0.0,0.0 -6467,catchment_outflow,0.06598481824576004,2011-02-19,0.0,0.0,9.138449636132661e-06,0.0,0.0,0.0,0.0,0.0,9.548431745709953,0.0,0.0,0.0 -6468,reservoir_outflow,0.0,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6469,gw1_gw2,0.0,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6470,gw2_gw1,0.0020519025287883963,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6471,urban_drainage,0.0009999999999999983,2011-02-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 -6472,percolation,0.043297837545316624,2011-02-20,0.0,0.0,5.825935292656396e-06,0.0,0.0,0.0,0.0,0.0,7.8978234960199725,0.0,0.0,0.0 -6473,runoff,0.02799158383693603,2011-02-20,0.0,0.0,2.995537703108178e-06,0.0,0.0,0.0,0.0,0.0,7.059355804968571,0.0,0.0,0.0 -6474,storm_outflow,0.0009999999999999983,2011-02-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 -6475,baseflow,0.0431412557845286,2011-02-20,0.0,0.0,4.703835779624563e-06,0.0,0.0,0.0,0.0,0.0,10.780870334299966,0.0,0.0,0.0 -6476,catchment_outflow,0.07213283962146463,2011-02-20,0.0,0.0,8.699373482732741e-06,0.0,0.0,0.0,0.0,0.0,9.27641401659578,0.0,0.0,0.0 -6477,reservoir_outflow,0.0004999999999999991,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6478,gw1_gw2,0.0,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6479,gw2_gw1,0.0020382231785966098,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6480,urban_drainage,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6481,percolation,0.04435990941717596,2011-02-21,0.0,0.0,5.989121868395398e-06,0.0,0.0,0.0,0.0,0.0,7.856790098377519,0.0,0.0,0.0 -6482,runoff,0.029682325278357746,2011-02-21,0.0,0.0,3.3287811011269844e-06,0.0,0.0,0.0,0.0,0.0,6.9861886901340835,0.0,0.0,0.0 -6483,storm_outflow,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6484,baseflow,0.0431443024186102,2011-02-21,0.0,0.0,4.70704899484649e-06,0.0,0.0,0.0,0.0,0.0,10.773354166050478,0.0,0.0,0.0 -6485,catchment_outflow,0.07282662769696795,2011-02-21,0.0,0.0,8.035830095973474e-06,0.0,0.0,0.0,0.0,0.0,9.229799547444994,0.0,0.0,0.0 -6486,reservoir_outflow,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6487,gw1_gw2,0.0,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6488,gw2_gw1,0.002024635024072552,2011-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6489,urban_drainage,0.005999999999999998,2011-02-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 -6490,percolation,0.045880978682306915,2011-02-22,0.0,0.0,6.216870064135169e-06,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 -6491,runoff,0.03481146947202885,2011-02-22,0.0,0.0,3.821460324593846e-06,0.0,0.0,0.0,0.0,0.0,6.855455836322598,0.0,0.0,0.0 -6492,storm_outflow,0.005999999999999998,2011-02-22,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 -6493,baseflow,0.04315114410926944,2011-02-22,0.0,0.0,4.710823547519712e-06,0.0,0.0,0.0,0.0,0.0,10.765458296536108,0.0,0.0,0.0 -6494,catchment_outflow,0.08396261358129829,2011-02-22,0.0,0.0,1.0532283872113558e-05,0.0,0.0,0.0,0.0,0.0,8.814522349313727,0.0,0.0,0.0 -6495,reservoir_outflow,0.002999999999999999,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6496,gw1_gw2,0.0,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6497,gw2_gw1,0.002011137457245482,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6498,urban_drainage,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6499,percolation,0.04496335910866077,2011-02-23,0.0,0.0,6.092532662852465e-06,0.0,0.0,0.0,0.0,0.0,7.802922295869454,0.0,0.0,0.0 -6500,runoff,0.02301795614095107,2011-02-23,0.0,0.0,3.0571682596750767e-06,0.0,0.0,0.0,0.0,0.0,6.993946598304078,0.0,0.0,0.0 -6501,storm_outflow,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6502,baseflow,0.04315567464676792,2011-02-23,0.0,0.0,4.714277820308044e-06,0.0,0.0,0.0,0.0,0.0,10.757741723271955,0.0,0.0,0.0 -6503,catchment_outflow,0.06617363078771898,2011-02-23,0.0,0.0,7.771446079983121e-06,0.0,0.0,0.0,0.0,0.0,9.4485363785032,0.0,0.0,0.0 -6504,reservoir_outflow,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6505,gw1_gw2,0.0,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6506,gw2_gw1,0.001997729874196885,2011-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6507,urban_drainage,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6508,percolation,0.04406409192648755,2011-02-24,0.0,0.0,5.970682009595414e-06,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 -6509,runoff,0.016871301268331258,2011-02-24,0.0,0.0,2.4457346077400616e-06,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 -6510,storm_outflow,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6511,baseflow,0.04315794568996721,2011-02-24,0.0,0.0,4.717418830781262e-06,0.0,0.0,0.0,0.0,0.0,10.750199575887871,0.0,0.0,0.0 -6512,catchment_outflow,0.06002924695829847,2011-02-24,0.0,0.0,7.163153438521324e-06,0.0,0.0,0.0,0.0,0.0,9.7191311331362,0.0,0.0,0.0 -6513,reservoir_outflow,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6514,gw1_gw2,0.0,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6515,gw2_gw1,0.0019844116750356022,2011-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6516,urban_drainage,0.04,2011-02-25,0.0,0.0,1.3043478260869566e-06,0.0,0.0,0.0,0.0,0.0,5.807142857,0.0,0.0,0.0 -6517,percolation,0.051374708203121545,2011-02-25,0.0,0.0,6.987009225984231e-06,0.0,0.0,0.0,0.0,0.0,7.591176375240516,0.0,0.0,0.0 -6518,runoff,0.06954687022368006,2011-02-25,0.0,0.0,5.7423905414611296e-06,0.0,0.0,0.0,0.0,0.0,6.3166891894345865,0.0,0.0,0.0 -6519,storm_outflow,0.04,2011-02-25,0.0,0.0,1.3043478260869566e-06,0.0,0.0,0.0,0.0,0.0,5.807142857,0.0,0.0,0.0 -6520,baseflow,0.0431784875962501,2011-02-25,0.0,0.0,4.7230928067692695e-06,0.0,0.0,0.0,0.0,0.0,10.740802888777285,0.0,0.0,0.0 -6521,catchment_outflow,0.15272535781993016,2011-02-25,0.0,0.0,1.1769831174317356e-05,0.0,0.0,0.0,0.0,0.0,7.434019589768517,0.0,0.0,0.0 -6522,reservoir_outflow,0.046,2011-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6523,gw1_gw2,0.0,2011-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6524,gw2_gw1,0.0019711822638686983,2011-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6525,urban_drainage,0.04,2011-02-26,0.0,0.0,2.246376811594203e-06,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0 -6526,percolation,0.05222126392324346,2011-02-26,0.0,0.0,7.107397683604216e-06,0.0,0.0,0.0,0.0,0.0,7.548870210768758,0.0,0.0,0.0 -6527,runoff,0.045465141028166796,2011-02-26,0.0,0.0,5.461007906967806e-06,0.0,0.0,0.0,0.0,0.0,6.497312749983242,0.0,0.0,0.0 -6528,storm_outflow,0.04,2011-02-26,0.0,0.0,2.246376811594203e-06,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0 -6529,baseflow,0.04320109453706758,2011-02-26,0.0,0.0,4.729053568961357e-06,0.0,0.0,0.0,0.0,0.0,10.731156908704921,0.0,0.0,0.0 -6530,catchment_outflow,0.12866623556523438,2011-02-26,0.0,0.0,1.2436438287523368e-05,0.0,0.0,0.0,0.0,0.0,7.704310882434852,0.0,0.0,0.0 -6531,reservoir_outflow,0.0,2011-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6532,gw1_gw2,0.0,2011-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6533,gw2_gw1,0.001958041048776593,2011-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6534,urban_drainage,0.028000000000000008,2011-02-27,0.0,0.0,1.4492753623188408e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6535,percolation,0.05567566219422692,2011-02-27,0.0,0.0,7.581433569063903e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6536,runoff,0.06189304620525887,2011-02-27,0.0,0.0,6.422752456013478e-06,0.0,0.0,0.0,0.0,0.0,6.285497770260332,0.0,0.0,0.0 -6537,storm_outflow,0.028000000000000004,2011-02-27,0.0,0.0,1.4492753623188406e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6538,baseflow,0.04323228095621048,2011-02-27,0.0,0.0,4.736184518961614e-06,0.0,0.0,0.0,0.0,0.0,10.720588509148394,0.0,0.0,0.0 -6539,catchment_outflow,0.13312532716146935,2011-02-27,0.0,0.0,1.2608212337293932e-05,0.0,0.0,0.0,0.0,0.0,7.590837080696988,0.0,0.0,0.0 -6540,reservoir_outflow,0.01,2011-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6541,gw1_gw2,0.0,2011-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6542,gw2_gw1,0.0019449874417846404,2011-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6543,urban_drainage,0.0,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6544,percolation,0.05456214895034239,2011-02-28,0.0,0.0,7.429804897682626e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6545,runoff,0.03727686179053698,2011-02-28,0.0,0.0,5.138201964810783e-06,0.0,0.0,0.0,0.0,0.0,6.516375913825358,0.0,0.0,0.0 -6546,storm_outflow,3.469446951953614e-18,2011-02-28,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6547,baseflow,0.043260605626195804,2011-02-28,0.0,0.0,4.742918569908416e-06,0.0,0.0,0.0,0.0,0.0,10.710271582106568,0.0,0.0,0.0 -6548,catchment_outflow,0.08053746741673279,2011-02-28,0.0,0.0,9.881120534719198e-06,0.0,0.0,0.0,0.0,0.0,8.769122025198977,0.0,0.0,0.0 -6549,reservoir_outflow,0.0,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6550,gw1_gw2,0.0,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6551,gw2_gw1,0.0019320208588395006,2011-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6552,urban_drainage,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6553,percolation,0.05347090597133553,2011-03-01,0.0,0.0,7.281208799728973e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6554,runoff,0.02950892826734138,2011-03-01,0.0,0.0,4.110561571848626e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6555,storm_outflow,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6556,baseflow,0.043286131377058654,2011-03-01,0.0,0.0,4.749264295482967e-06,0.0,0.0,0.0,0.0,0.0,10.70019881678128,0.0,0.0,0.0 -6557,catchment_outflow,0.07279505964440003,2011-03-01,0.0,0.0,8.859825867331593e-06,0.0,0.0,0.0,0.0,0.0,9.00872019186579,0.0,0.0,0.0 -6558,reservoir_outflow,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6559,gw1_gw2,0.0,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6560,gw2_gw1,0.0019191407197803657,2011-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6561,urban_drainage,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6562,percolation,0.05240148785190882,2011-03-02,0.0,0.0,7.135584623734393e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6563,runoff,0.023607142613873103,2011-03-02,0.0,0.0,3.288449257478901e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6564,storm_outflow,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6565,baseflow,0.04330891976824578,2011-03-02,0.0,0.0,4.755230096303596e-06,0.0,0.0,0.0,0.0,0.0,10.690363169646886,0.0,0.0,0.0 -6566,catchment_outflow,0.06691606238211889,2011-03-02,0.0,0.0,8.043679353782497e-06,0.0,0.0,0.0,0.0,0.0,9.221764526998426,0.0,0.0,0.0 -6567,reservoir_outflow,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6568,gw1_gw2,0.0,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6569,gw2_gw1,0.0019063464483153325,2011-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6570,urban_drainage,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6571,percolation,0.05135345809487066,2011-03-03,0.0,0.0,6.992872931259708e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6572,runoff,0.01888571409109848,2011-03-03,0.0,0.0,2.63075940598312e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6573,storm_outflow,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6574,baseflow,0.04332903111406233,2011-03-03,0.0,0.0,4.760824203390987e-06,0.0,0.0,0.0,0.0,0.0,10.68075785236592,0.0,0.0,0.0 -6575,catchment_outflow,0.062214745205160814,2011-03-03,0.0,0.0,7.391583609374107e-06,0.0,0.0,0.0,0.0,0.0,9.420013841054299,0.0,0.0,0.0 -6576,reservoir_outflow,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6577,gw1_gw2,0.0,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6578,gw2_gw1,0.0018936374719929817,2011-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6579,urban_drainage,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6580,percolation,0.05032638893297324,2011-03-04,0.0,0.0,6.853015472634514e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6581,runoff,0.015108571272878785,2011-03-04,0.0,0.0,2.1046075247864967e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6582,storm_outflow,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6583,baseflow,0.04334652450860961,2011-03-04,0.0,0.0,4.766054681564095e-06,0.0,0.0,0.0,0.0,0.0,10.671376320356659,0.0,0.0,0.0 -6584,catchment_outflow,0.05845509578148839,2011-03-04,0.0,0.0,6.870662206350592e-06,0.0,0.0,0.0,0.0,0.0,9.600336207187196,0.0,0.0,0.0 -6585,reservoir_outflow,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6586,gw1_gw2,0.0,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6587,gw2_gw1,0.001881013222179817,2011-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6588,urban_drainage,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6589,percolation,0.04931986115431377,2011-03-05,0.0,0.0,6.715955163181821e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6590,runoff,0.012442367079421642,2011-03-05,0.0,0.0,1.683686019829197e-06,0.0,0.0,0.0,0.0,0.0,6.495915908802238,0.0,0.0,0.0 -6591,storm_outflow,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6592,baseflow,0.04336145785022387,2011-03-05,0.0,0.0,4.77092943276814e-06,0.0,0.0,0.0,0.0,0.0,10.662212261971984,0.0,0.0,0.0 -6593,catchment_outflow,0.055803824929645515,2011-03-05,0.0,0.0,6.454615452597337e-06,0.0,0.0,0.0,0.0,0.0,9.733268974425851,0.0,0.0,0.0 -6594,reservoir_outflow,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6595,gw1_gw2,0.0,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6596,gw2_gw1,0.0018684731340318451,2011-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6597,urban_drainage,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6598,percolation,0.04833346393122749,2011-03-06,0.0,0.0,6.581636059918185e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6599,runoff,0.009669485614642422,2011-03-06,0.0,0.0,1.3469488158633575e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6600,storm_outflow,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6601,baseflow,0.04337388786542637,2011-03-06,0.0,0.0,4.775456199336013e-06,0.0,0.0,0.0,0.0,0.0,10.653259588251618,0.0,0.0,0.0 -6602,catchment_outflow,0.053043373480068795,2011-03-06,0.0,0.0,6.1224050151993705e-06,0.0,0.0,0.0,0.0,0.0,9.90116221135224,0.0,0.0,0.0 -6603,reservoir_outflow,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6604,gw1_gw2,0.0,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6605,gw2_gw1,0.0018560166464714812,2011-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6606,urban_drainage,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6607,percolation,0.04736679465260294,2011-03-07,0.0,0.0,6.450003338719821e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6608,runoff,0.007735588491713937,2011-03-07,0.0,0.0,1.077559052690686e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6609,storm_outflow,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6610,baseflow,0.04338387013239433,2011-03-07,0.0,0.0,4.779642567184474e-06,0.0,0.0,0.0,0.0,0.0,10.644512423212639,0.0,0.0,0.0 -6611,catchment_outflow,0.051119458624108265,2011-03-07,0.0,0.0,5.85720161987516e-06,0.0,0.0,0.0,0.0,0.0,10.021513627196967,0.0,0.0,0.0 -6612,reservoir_outflow,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6613,gw1_gw2,0.0,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6614,gw2_gw1,0.0018436432021617932,2011-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6615,urban_drainage,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6616,percolation,0.04641945875955088,2011-03-08,0.0,0.0,6.321003271945424e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6617,runoff,0.006188470793371151,2011-03-08,0.0,0.0,8.620472421525489e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6618,storm_outflow,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6619,baseflow,0.04339145910396222,2011-03-08,0.0,0.0,4.783495968946376e-06,0.0,0.0,0.0,0.0,0.0,10.635965094645497,0.0,0.0,0.0 -6620,catchment_outflow,0.04957992989733337,2011-03-08,0.0,0.0,5.645543211098925e-06,0.0,0.0,0.0,0.0,0.0,10.123156905927138,0.0,0.0,0.0 -6621,reservoir_outflow,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6622,gw1_gw2,0.0,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6623,gw2_gw1,0.0018313522474807443,2011-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6624,urban_drainage,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6625,percolation,0.04549106958435986,2011-03-09,0.0,0.0,6.194583206506516e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6626,runoff,0.0049507766346969205,2011-03-09,0.0,0.0,6.896377937220392e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6627,storm_outflow,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6628,baseflow,0.04339670813016322,2011-03-09,0.0,0.0,4.7870236870402765e-06,0.0,0.0,0.0,0.0,0.0,10.627612125385108,0.0,0.0,0.0 -6629,catchment_outflow,0.048347484764860144,2011-03-09,0.0,0.0,5.476661480762316e-06,0.0,0.0,0.0,0.0,0.0,10.207763158026692,0.0,0.0,0.0 -6630,reservoir_outflow,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6631,gw1_gw2,0.0,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6632,gw2_gw1,0.0018191432324972112,2011-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6633,urban_drainage,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6634,percolation,0.044581248192672666,2011-03-10,0.0,0.0,6.070691542376385e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6635,runoff,0.003960621307757537,2011-03-10,0.0,0.0,5.517102349776313e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6636,storm_outflow,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6637,baseflow,0.043399669480319494,2011-03-10,0.0,0.0,4.790232856678617e-06,0.0,0.0,0.0,0.0,0.0,10.619448225028576,0.0,0.0,0.0 -6638,catchment_outflow,0.047360290788077034,2011-03-10,0.0,0.0,5.3419430916562474e-06,0.0,0.0,0.0,0.0,0.0,10.277250597967214,0.0,0.0,0.0 -6639,reservoir_outflow,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6640,gw1_gw2,0.0,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6641,gw2_gw1,0.0018070156109471825,2011-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6642,urban_drainage,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6643,percolation,0.04368962322881921,2011-03-11,0.0,0.0,5.949277711528858e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6644,runoff,0.003168497046206029,2011-03-11,0.0,0.0,4.41368187982105e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6645,storm_outflow,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6646,baseflow,0.043400394364690745,2011-03-11,0.0,0.0,4.793130468815743e-06,0.0,0.0,0.0,0.0,0.0,10.611468282073128,0.0,0.0,0.0 -6647,catchment_outflow,0.046568891410896776,2011-03-11,0.0,0.0,5.234498656797847e-06,0.0,0.0,0.0,0.0,0.0,10.333600837047761,0.0,0.0,0.0 -6648,reservoir_outflow,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6649,gw1_gw2,0.0,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6650,gw2_gw1,0.001794968840207467,2011-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6651,urban_drainage,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6652,percolation,0.04281583076424283,2011-03-12,0.0,0.0,5.830292157298281e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6653,runoff,0.0025347976369648234,2011-03-12,0.0,0.0,3.53094550385684e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6654,storm_outflow,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6655,baseflow,0.04339893295568961,2011-03-12,0.0,0.0,4.795723373036948e-06,0.0,0.0,0.0,0.0,0.0,10.603667356449526,0.0,0.0,0.0 -6656,catchment_outflow,0.04593373059265444,2011-03-12,0.0,0.0,5.148817923422632e-06,0.0,0.0,0.0,0.0,0.0,10.378730056603406,0.0,0.0,0.0 -6657,reservoir_outflow,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6658,gw1_gw2,0.0,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6659,gw2_gw1,0.0017830023812726026,2011-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6660,urban_drainage,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6661,percolation,0.04195951414895797,2011-03-13,0.0,0.0,5.713686314152316e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6662,runoff,0.0020278381095718587,2011-03-13,0.0,0.0,2.824756403085472e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6663,storm_outflow,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6664,baseflow,0.04339533440867279,2011-03-13,0.0,0.0,4.798018280389737e-06,0.0,0.0,0.0,0.0,0.0,10.596040672427948,0.0,0.0,0.0 -6665,catchment_outflow,0.045423172518244646,2011-03-13,0.0,0.0,5.080493920698284e-06,0.0,0.0,0.0,0.0,0.0,10.414408669923628,0.0,0.0,0.0 -6666,reservoir_outflow,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6667,gw1_gw2,0.0,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6668,gw2_gw1,0.0017711156987308741,2011-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6669,urban_drainage,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6670,percolation,0.04112032386597881,2011-03-14,0.0,0.0,5.599412587869269e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6671,runoff,0.001622270487657487,2011-03-14,0.0,0.0,2.2598051224683776e-07,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6672,storm_outflow,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6673,baseflow,0.04338964688231606,2011-03-14,0.0,0.0,4.800021766158436e-06,0.0,0.0,0.0,0.0,0.0,10.588583611874776,0.0,0.0,0.0 -6674,catchment_outflow,0.04501191736997354,2011-03-14,0.0,0.0,5.026002278405274e-06,0.0,0.0,0.0,0.0,0.0,10.442219172336257,0.0,0.0,0.0 -6675,reservoir_outflow,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6676,gw1_gw2,0.0,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6677,gw2_gw1,0.001759308260739445,2011-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6678,urban_drainage,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6679,percolation,0.04029791738865923,2011-03-15,0.0,0.0,5.487424336111884e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6680,runoff,0.0012978163901259895,2011-03-15,0.0,0.0,1.8078440979747018e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6681,storm_outflow,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6682,baseflow,0.043381917558581916,2011-03-15,0.0,0.0,4.801740272583319e-06,0.0,0.0,0.0,0.0,0.0,10.581291707840194,0.0,0.0,0.0 -6683,catchment_outflow,0.0446797339487079,2011-03-15,0.0,0.0,4.982524682380789e-06,0.0,0.0,0.0,0.0,0.0,10.463541416394936,0.0,0.0,0.0 -6684,reservoir_outflow,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6685,gw1_gw2,0.0,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6686,gw2_gw1,0.001747579539001265,2011-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6687,urban_drainage,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6688,percolation,0.03949195904088605,2011-03-16,0.0,0.0,5.377675849389646e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6689,runoff,0.0010382531121007916,2011-03-16,0.0,0.0,1.4462752783797617e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6690,storm_outflow,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6691,baseflow,0.04337219266228768,2011-03-16,0.0,0.0,4.803180111525335e-06,0.0,0.0,0.0,0.0,0.0,10.574160638457801,0.0,0.0,0.0 -6692,catchment_outflow,0.04441044577438847,2011-03-16,0.0,0.0,4.947807639363312e-06,0.0,0.0,0.0,0.0,0.0,10.479555924925075,0.0,0.0,0.0 -6693,reservoir_outflow,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6694,gw1_gw2,0.0,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6695,gw2_gw1,0.0017359290087410884,2011-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6696,urban_drainage,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6697,percolation,0.03870211986006833,2011-03-17,0.0,0.0,5.270122332401854e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6698,runoff,0.0008306024896806332,2011-03-17,0.0,0.0,1.1570202227038092e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6699,storm_outflow,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6700,baseflow,0.04336051748028213,2011-03-17,0.0,0.0,4.804347467077527e-06,0.0,0.0,0.0,0.0,0.0,10.567186221138613,0.0,0.0,0.0 -6701,catchment_outflow,0.044191119969962764,2011-03-17,0.0,0.0,4.9200494893479075e-06,0.0,0.0,0.0,0.0,0.0,10.491257911691632,0.0,0.0,0.0 -6702,reservoir_outflow,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6703,gw1_gw2,0.0,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6704,gw2_gw1,0.0017243561486827376,2011-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6705,urban_drainage,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6706,percolation,0.037928077462866965,2011-03-18,0.0,0.0,5.164719885753818e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6707,runoff,0.0006644819917445066,2011-03-18,0.0,0.0,9.256161781630477e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6708,storm_outflow,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6709,baseflow,0.04334693638023859,2011-03-18,0.0,0.0,4.805248398124218e-06,0.0,0.0,0.0,0.0,0.0,10.560364407042986,0.0,0.0,0.0 -6710,catchment_outflow,0.0440114183719831,2011-03-18,0.0,0.0,4.897810015940523e-06,0.0,0.0,0.0,0.0,0.0,10.499476738523793,0.0,0.0,0.0 -6711,reservoir_outflow,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6712,gw1_gw2,0.0,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6713,gw2_gw1,0.0017128604410251214,2011-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6714,urban_drainage,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6715,percolation,0.037169515913609626,2011-03-19,0.0,0.0,5.061425488038741e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6716,runoff,0.0005315855933956052,2011-03-19,0.0,0.0,7.40492942530438e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6717,storm_outflow,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6718,baseflow,0.043331492829072026,2011-03-19,0.0,0.0,4.805888840849004e-06,0.0,0.0,0.0,0.0,0.0,10.55369127581507,0.0,0.0,0.0 -6719,catchment_outflow,0.04386307842246763,2011-03-19,0.0,0.0,4.879938135102048e-06,0.0,0.0,0.0,0.0,0.0,10.504897281894333,0.0,0.0,0.0 -6720,reservoir_outflow,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6721,gw1_gw2,0.0,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6722,gw2_gw1,0.0017014413714179,2011-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6723,urban_drainage,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6724,percolation,0.03642612559533743,2011-03-20,0.0,0.0,4.960196978277967e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6725,runoff,0.0004252684747164842,2011-03-20,0.0,0.0,5.923943540243504e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6726,storm_outflow,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6727,baseflow,0.043314229410987684,2011-03-20,0.0,0.0,4.806274611192576e-06,0.0,0.0,0.0,0.0,0.0,10.547163030565285,0.0,0.0,0.0 -6728,catchment_outflow,0.043739497885704165,2011-03-20,0.0,0.0,4.865514046595011e-06,0.0,0.0,0.0,0.0,0.0,10.508081018854053,0.0,0.0,0.0 -6729,reservoir_outflow,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6730,gw1_gw2,0.0,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6731,gw2_gw1,0.0016900984289417666,2011-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6732,urban_drainage,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6733,percolation,0.03569760308343068,2011-03-21,0.0,0.0,4.860993038712407e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6734,runoff,0.00034021477977318735,2011-03-21,0.0,0.0,4.739154832194803e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6735,storm_outflow,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6736,baseflow,0.043295187845168795,2011-03-21,0.0,0.0,4.8064114072613756e-06,0.0,0.0,0.0,0.0,0.0,10.540775993087312,0.0,0.0,0.0 -6737,catchment_outflow,0.043635402624941984,2011-03-21,0.0,0.0,4.8538029555833235e-06,0.0,0.0,0.0,0.0,0.0,10.50948559565299,0.0,0.0,0.0 -6738,reservoir_outflow,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6739,gw1_gw2,0.0,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6740,gw2_gw1,0.0016788311060823347,2011-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6741,urban_drainage,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6742,percolation,0.03498365102176207,2011-03-22,0.0,0.0,4.763773177938159e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6743,runoff,0.00027217182381854987,2011-03-22,0.0,0.0,3.791323865755842e-08,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -6744,storm_outflow,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6745,baseflow,0.043274409003110276,2011-03-22,0.0,0.0,4.806304811688068e-06,0.0,0.0,0.0,0.0,0.0,10.534526599296854,0.0,0.0,0.0 -6746,catchment_outflow,0.043546580826928825,2011-03-22,0.0,0.0,4.844218050345627e-06,0.0,0.0,0.0,0.0,0.0,10.50948228255241,0.0,0.0,0.0 -6747,reservoir_outflow,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6748,gw1_gw2,0.0,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6749,gw2_gw1,0.0016676388987084678,2011-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6750,urban_drainage,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6751,percolation,0.03428397800132683,2011-03-23,0.0,0.0,4.668497714379396e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6752,runoff,0.00021773745905483987,2011-03-23,0.0,0.0,3.033059092604674e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6753,storm_outflow,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6754,baseflow,0.043251932925605814,2011-03-23,0.0,0.0,4.805960293944797e-06,0.0,0.0,0.0,0.0,0.0,10.528411394880244,0.0,0.0,0.0 -6755,catchment_outflow,0.04346967038466065,2011-03-23,0.0,0.0,4.836290884870843e-06,0.0,0.0,0.0,0.0,0.0,10.50837112372305,0.0,0.0,0.0 -6756,reservoir_outflow,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6757,gw1_gw2,0.0,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6758,gw2_gw1,0.0016565213060504291,2011-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6759,urban_drainage,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6760,percolation,0.03359829844130029,2011-03-24,0.0,0.0,4.575127760091807e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6761,runoff,0.0001741899672438719,2011-03-24,0.0,0.0,2.426447274083739e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6762,storm_outflow,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6763,baseflow,0.04322779883939505,2011-03-24,0.0,0.0,4.805383212610164e-06,0.0,0.0,0.0,0.0,0.0,10.522427031141714,0.0,0.0,0.0 -6764,catchment_outflow,0.043401988806638925,2011-03-24,0.0,0.0,4.8296476853510015e-06,0.0,0.0,0.0,0.0,0.0,10.506393831090108,0.0,0.0,0.0 -6765,reservoir_outflow,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6766,gw1_gw2,0.0,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6767,gw2_gw1,0.0016454778306767893,2011-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6768,urban_drainage,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6769,percolation,0.032926332472474285,2011-03-25,0.0,0.0,4.483625204889972e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6770,runoff,0.00013935197379509752,2011-03-25,0.0,0.0,1.9411578192669916e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6771,storm_outflow,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6772,baseflow,0.04320204517347775,2011-03-25,0.0,0.0,4.804578817590864e-06,0.0,0.0,0.0,0.0,0.0,10.516570261038764,0.0,0.0,0.0 -6773,catchment_outflow,0.043341397147272843,2011-03-25,0.0,0.0,4.823990395783534e-06,0.0,0.0,0.0,0.0,0.0,10.50374460013594,0.0,0.0,0.0 -6774,reservoir_outflow,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6775,gw1_gw2,0.0,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6776,gw2_gw1,0.0016345079784722218,2011-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6777,urban_drainage,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6778,percolation,0.0322678058230248,2011-03-26,0.0,0.0,4.393952700792172e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6779,runoff,0.00011148157903607802,2011-03-26,0.0,0.0,1.552926255413593e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6780,storm_outflow,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6781,baseflow,0.04317470957510162,2011-03-26,0.0,0.0,4.803552252298867e-06,0.0,0.0,0.0,0.0,0.0,10.510837935395772,0.0,0.0,0.0 -6782,catchment_outflow,0.0432861911541377,2011-03-26,0.0,0.0,4.8190815148530035e-06,0.0,0.0,0.0,0.0,0.0,10.5005790840222,0.0,0.0,0.0 -6783,reservoir_outflow,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6784,gw1_gw2,0.0,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6785,gw2_gw1,0.001623611258616009,2011-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6786,urban_drainage,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6787,percolation,0.031622449706564304,2011-03-27,0.0,0.0,4.306073646776329e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6788,runoff,8.918526322886242e-05,2011-03-27,0.0,0.0,1.2423410043308745e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6789,storm_outflow,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6790,baseflow,0.04314582892543028,2011-03-27,0.0,0.0,4.802308555785061e-06,0.0,0.0,0.0,0.0,0.0,10.505226999286524,0.0,0.0,0.0 -6791,catchment_outflow,0.04323501418865914,2011-03-27,0.0,0.0,4.81473196582837e-06,0.0,0.0,0.0,0.0,0.0,10.497021777775535,0.0,0.0,0.0 -6792,reservoir_outflow,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6793,gw1_gw2,0.0,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6794,gw2_gw1,0.001612787183558595,2011-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6795,urban_drainage,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6796,percolation,0.03099000071243302,2011-03-28,0.0,0.0,4.2199521738408025e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6797,runoff,7.134821058308994e-05,2011-03-28,0.0,0.0,9.938728034646996e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6798,storm_outflow,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6799,baseflow,0.04311543935489778,2011-03-28,0.0,0.0,4.800852664830201e-06,0.0,0.0,0.0,0.0,0.0,10.49973448857691,0.0,0.0,0.0 -6800,catchment_outflow,0.043186787565480875,2011-03-28,0.0,0.0,4.810791392864848e-06,0.0,0.0,0.0,0.0,0.0,10.493172055251243,0.0,0.0,0.0 -6801,reservoir_outflow,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6802,gw1_gw2,0.0,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6803,gw2_gw1,0.0016020352690016893,2011-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6804,urban_drainage,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6805,percolation,0.030370200698184358,2011-03-29,0.0,0.0,4.135553130363987e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6806,runoff,5.7078568466471945e-05,2011-03-29,0.0,0.0,7.950982427717595e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6807,storm_outflow,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6808,baseflow,0.04308357625825599,2011-03-29,0.0,0.0,4.7991894159940355e-06,0.0,0.0,0.0,0.0,0.0,10.49435752661957,0.0,0.0,0.0 -6809,catchment_outflow,0.04314065482672246,2011-03-29,0.0,0.0,4.807140398421753e-06,0.0,0.0,0.0,0.0,0.0,10.489109080049234,0.0,0.0,0.0 -6810,reservoir_outflow,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6811,gw1_gw2,0.0,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6812,gw2_gw1,0.0015913550338749972,2011-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6813,urban_drainage,0.032,2011-03-30,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6814,percolation,0.02976279668422067,2011-03-30,0.0,0.0,4.052842067756707e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6815,runoff,4.566285477317756e-05,2011-03-30,0.0,0.0,6.360785942174076e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809226,0.0,0.0,0.0 -6816,storm_outflow,0.032,2011-03-30,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6817,baseflow,0.04305027430932091,2011-03-30,0.0,0.0,4.797323547623442e-06,0.0,0.0,0.0,0.0,0.0,10.489093321092698,0.0,0.0,0.0 -6818,catchment_outflow,0.07509593716409409,2011-03-30,0.0,0.0,3.580368433356562e-05,0.0,0.0,0.0,0.0,0.0,10.39393279625375,0.0,0.0,0.0 -6819,reservoir_outflow,0.016,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6820,gw1_gw2,0.0,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6821,gw2_gw1,0.0015807460003157915,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6822,urban_drainage,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6823,percolation,0.029167540750536257,2011-03-31,0.0,0.0,3.971785226401572e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6824,runoff,3.6530283818542064e-05,2011-03-31,0.0,0.0,5.088628753739262e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6825,storm_outflow,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6826,baseflow,0.04301556747542395,2011-03-31,0.0,0.0,4.795259701820388e-06,0.0,0.0,0.0,0.0,0.0,10.483939160975735,0.0,0.0,0.0 -6827,catchment_outflow,0.04305209775924249,2011-03-31,0.0,0.0,4.800348330574127e-06,0.0,0.0,0.0,0.0,0.0,10.480582085904748,0.0,0.0,0.0 -6828,reservoir_outflow,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6829,gw1_gw2,0.0,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6830,gw2_gw1,0.0015702076936467081,2011-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6831,urban_drainage,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6832,percolation,0.028584189935525528,2011-04-01,0.0,0.0,3.8923495218735395e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6833,runoff,2.9224227054833644e-05,2011-04-01,0.0,0.0,4.070903002991409e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6834,storm_outflow,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6835,baseflow,0.0429794890315742,2011-04-01,0.0,0.0,4.793002426370521e-06,0.0,0.0,0.0,0.0,0.0,10.478892413655034,0.0,0.0,0.0 -6836,catchment_outflow,0.04300871325862903,2011-04-01,0.0,0.0,4.797073329373512e-06,0.0,0.0,0.0,0.0,0.0,10.4762074737144,0.0,0.0,0.0 -6837,reservoir_outflow,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6838,gw1_gw2,0.0,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6839,gw2_gw1,0.001559739642355673,2011-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6840,urban_drainage,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6841,percolation,0.028012506136815017,2011-04-02,0.0,0.0,3.814502531436069e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6842,runoff,2.3379381643866914e-05,2011-04-02,0.0,0.0,3.256722402393127e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6843,storm_outflow,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6844,baseflow,0.0429420715743373,2011-04-02,0.0,0.0,4.790556176633184e-06,0.0,0.0,0.0,0.0,0.0,10.473950522153018,0.0,0.0,0.0 -6845,catchment_outflow,0.042965450955981165,2011-04-02,0.0,0.0,4.793812899035577e-06,0.0,0.0,0.0,0.0,0.0,10.471803096507566,0.0,0.0,0.0 -6846,reservoir_outflow,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6847,gw1_gw2,0.0,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6848,gw2_gw1,0.0015493413780735211,2011-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6849,urban_drainage,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6850,percolation,0.02745225601407872,2011-04-03,0.0,0.0,3.738212480807348e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6851,runoff,1.8703505315093534e-05,2011-04-03,0.0,0.0,2.6053779219145015e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6852,storm_outflow,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6853,baseflow,0.042903347035436655,2011-04-03,0.0,0.0,4.78792531739362e-06,0.0,0.0,0.0,0.0,0.0,10.469111002474701,0.0,0.0,0.0 -6854,catchment_outflow,0.042922050540751745,2011-04-03,0.0,0.0,4.790530695315534e-06,0.0,0.0,0.0,0.0,0.0,10.467393433717147,0.0,0.0,0.0 -6855,reservoir_outflow,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6856,gw1_gw2,0.0,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6857,gw2_gw1,0.0015390124355532109,2011-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6858,urban_drainage,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6859,percolation,0.026903210893797155,2011-04-04,0.0,0.0,3.663448231191202e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6860,runoff,1.496280425207482e-05,2011-04-04,0.0,0.0,2.0843023375316004e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6861,storm_outflow,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6862,baseflow,0.04286334669508255,2011-04-04,0.0,0.0,4.785114124678114e-06,0.0,0.0,0.0,0.0,0.0,10.4643714410658,0.0,0.0,0.0 -6863,catchment_outflow,0.042878309499334626,2011-04-04,0.0,0.0,4.787198427015646e-06,0.0,0.0,0.0,0.0,0.0,10.462997638274288,0.0,0.0,0.0 -6864,reservoir_outflow,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6865,gw1_gw2,0.0,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6866,gw2_gw1,0.0015287523526493986,2011-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6867,urban_drainage,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6868,percolation,0.026365146675921203,2011-04-05,0.0,0.0,3.5901792665673773e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6869,runoff,1.1970243401659861e-05,2011-04-05,0.0,0.0,1.6674418700252812e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6870,storm_outflow,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6871,baseflow,0.04282210119503465,2011-04-05,0.0,0.0,4.782126787532838e-06,0.0,0.0,0.0,0.0,0.0,10.459729492376951,0.0,0.0,0.0 -6872,catchment_outflow,0.04283407143843631,2011-04-05,0.0,0.0,4.783794229402863e-06,0.0,0.0,0.0,0.0,0.0,10.45863061229873,0.0,0.0,0.0 -6873,reservoir_outflow,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6874,gw1_gw2,0.0,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6875,gw2_gw1,0.0015185606702981858,2011-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6876,urban_drainage,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6877,percolation,0.025837843742402777,2011-04-06,0.0,0.0,3.5183756812360294e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6878,runoff,9.576194721327891e-06,2011-04-06,0.0,0.0,1.333953496020225e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6879,storm_outflow,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6880,baseflow,0.04277964055140306,2011-04-06,0.0,0.0,4.778967409767096e-06,0.0,0.0,0.0,0.0,0.0,10.455182876528925,0.0,0.0,0.0 -6881,catchment_outflow,0.04278921674612439,2011-04-06,0.0,0.0,4.780301363263116e-06,0.0,0.0,0.0,0.0,0.0,10.454303868456337,0.0,0.0,0.0 -6882,reservoir_outflow,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6883,gw1_gw2,0.0,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6884,gw2_gw1,0.00150843693249616,2011-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6885,urban_drainage,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6886,percolation,0.025321086867554733,2011-04-07,0.0,0.0,3.4480081676113104e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6887,runoff,7.660955777062312e-06,2011-04-07,0.0,0.0,1.0671627968161799e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6888,storm_outflow,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6889,baseflow,0.042735994167193446,2011-04-07,0.0,0.0,4.775640011661706e-06,0.0,0.0,0.0,0.0,0.0,10.450729377073921,0.0,0.0,0.0 -6890,catchment_outflow,0.04274365512297051,2011-04-07,0.0,0.0,4.776707174458523e-06,0.0,0.0,0.0,0.0,0.0,10.450026219250784,0.0,0.0,0.0 -6891,reservoir_outflow,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6892,gw1_gw2,0.0,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6893,gw2_gw1,0.0014983806862792549,2011-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6894,urban_drainage,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6895,percolation,0.024814665130203632,2011-04-08,0.0,0.0,3.379048004259083e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6896,runoff,6.12876462164985e-06,2011-04-08,0.0,0.0,8.53730237452944e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6897,storm_outflow,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6898,baseflow,0.04269119084460096,2011-04-08,0.0,0.0,4.772148531643199e-06,0.0,0.0,0.0,0.0,0.0,10.446366838848366,0.0,0.0,0.0 -6899,catchment_outflow,0.042697319609222614,2011-04-08,0.0,0.0,4.773002261880652e-06,0.0,0.0,0.0,0.0,0.0,10.445804328329174,0.0,0.0,0.0 -6900,reservoir_outflow,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6901,gw1_gw2,0.0,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6902,gw2_gw1,0.0014883914817044543,2011-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6903,urban_drainage,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6904,percolation,0.02431837182759956,2011-04-09,0.0,0.0,3.3114670441739012e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6905,runoff,4.903011697319879e-06,2011-04-09,0.0,0.0,6.829841899623551e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6906,storm_outflow,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6907,baseflow,0.042645258797058466,2011-04-09,0.0,0.0,4.768496827924527e-06,0.0,0.0,0.0,0.0,0.0,10.442093165912869,0.0,0.0,0.0 -6908,catchment_outflow,0.042650161808755783,2011-04-09,0.0,0.0,4.769179812114489e-06,0.0,0.0,0.0,0.0,0.0,10.441643151224653,0.0,0.0,0.0 -6909,reservoir_outflow,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6910,gw1_gw2,0.0,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6911,gw2_gw1,0.001478468871826344,2011-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6912,urban_drainage,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6913,percolation,0.023832004391047566,2011-04-10,0.0,0.0,3.2452377032904234e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6914,runoff,3.922409357855904e-06,2011-04-10,0.0,0.0,5.463873519698841e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6915,storm_outflow,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6916,baseflow,0.04259822566104344,2011-04-10,0.0,0.0,4.764688680112942e-06,0.0,0.0,0.0,0.0,0.0,10.437906319575186,0.0,0.0,0.0 -6917,catchment_outflow,0.042602148070401295,2011-04-10,0.0,0.0,4.765235067464912e-06,0.0,0.0,0.0,0.0,0.0,10.437546287567775,0.0,0.0,0.0 -6918,reservoir_outflow,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6919,gw1_gw2,0.0,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6920,gw2_gw1,0.0014686124126809476,2011-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6921,urban_drainage,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6922,percolation,0.023355364303226614,2011-04-11,0.0,0.0,3.1803329492246148e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6923,runoff,3.137927486284723e-06,2011-04-11,0.0,0.0,4.371098815759072e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6924,storm_outflow,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6925,baseflow,0.0425501185076489,2011-04-11,0.0,0.0,4.760727790785721e-06,0.0,0.0,0.0,0.0,0.0,10.43380431649231,0.0,0.0,0.0 -6926,catchment_outflow,0.04255325643513518,2011-04-11,0.0,0.0,4.761164900667296e-06,0.0,0.0,0.0,0.0,0.0,10.433516262445442,0.0,0.0,0.0 -6927,reservoir_outflow,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6928,gw1_gw2,0.0,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6929,gw2_gw1,0.0014588216632628105,2011-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6930,urban_drainage,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6931,percolation,0.02288825701716208,2011-04-12,0.0,0.0,3.1167262902401224e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6932,runoff,2.5103419890277785e-06,2011-04-12,0.0,0.0,3.4968790526072586e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6933,storm_outflow,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6934,baseflow,0.042500963853922685,2011-04-12,0.0,0.0,4.756617787034357e-06,0.0,0.0,0.0,0.0,0.0,10.429785226848034,0.0,0.0,0.0 -6935,catchment_outflow,0.04250347419591171,2011-04-12,0.0,0.0,4.756967474939618e-06,0.0,0.0,0.0,0.0,0.0,10.429554751079296,0.0,0.0,0.0 -6936,reservoir_outflow,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6937,gw1_gw2,0.0,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6938,gw2_gw1,0.0014490961855079477,2011-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6939,urban_drainage,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6940,percolation,0.02243049187681884,2011-04-13,0.0,0.0,3.05439176443532e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6941,runoff,2.008273591222223e-06,2011-04-13,0.0,0.0,2.797503242085807e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6942,storm_outflow,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6943,baseflow,0.042450787673979924,2011-04-13,0.0,0.0,4.752362221977859e-06,0.0,0.0,0.0,0.0,0.0,10.425847172602422,0.0,0.0,0.0 -6944,catchment_outflow,0.04245279594757115,2011-04-13,0.0,0.0,4.752641972302068e-06,0.0,0.0,0.0,0.0,0.0,10.425662758175848,0.0,0.0,0.0 -6945,reservoir_outflow,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6946,gw1_gw2,0.0,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6947,gw2_gw1,0.0014394355442709284,2011-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6948,urban_drainage,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6949,percolation,0.021981882039282464,2011-04-14,0.0,0.0,2.9933039291466137e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6950,runoff,1.6066188729777783e-06,2011-04-14,0.0,0.0,2.2380025936686455e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6951,storm_outflow,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6952,baseflow,0.04239961540989318,2011-04-14,0.0,0.0,4.7479645762457805e-06,0.0,0.0,0.0,0.0,0.0,10.421988325809945,0.0,0.0,0.0 -6953,catchment_outflow,0.04240122202876615,2011-04-14,0.0,0.0,4.7481883765051475e-06,0.0,0.0,0.0,0.0,0.0,10.421840761036538,0.0,0.0,0.0 -6954,reservoir_outflow,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6955,gw1_gw2,0.0,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6956,gw2_gw1,0.0014298393073092443,2011-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6957,urban_drainage,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6958,percolation,0.021542244398496814,2011-04-15,0.0,0.0,2.9334378505636814e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6959,runoff,1.2852950983822226e-06,2011-04-15,0.0,0.0,1.7904020749349162e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6960,storm_outflow,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6961,baseflow,0.04234747198236469,2011-04-15,0.0,0.0,4.7434282594315755e-06,0.0,0.0,0.0,0.0,0.0,10.4182069070031,0.0,0.0,0.0 -6962,catchment_outflow,0.04234875727746307,2011-04-15,0.0,0.0,4.743607299639069e-06,0.0,0.0,0.0,0.0,0.0,10.418088823700092,0.0,0.0,0.0 -6963,reservoir_outflow,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6964,gw1_gw2,0.0,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6965,gw2_gw1,0.0014203070452602164,2011-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6966,urban_drainage,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6967,percolation,0.021111399510526877,2011-04-16,0.0,0.0,2.8747690935524074e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6968,runoff,1.028236078705778e-06,2011-04-16,0.0,0.0,1.4323216599479331e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6969,storm_outflow,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6970,baseflow,0.042294381801185096,2011-04-16,0.0,0.0,4.738756611516878e-06,0.0,0.0,0.0,0.0,0.0,10.414501183638567,0.0,0.0,0.0 -6971,catchment_outflow,0.0422954100372638,2011-04-16,0.0,0.0,4.738899843682873e-06,0.0,0.0,0.0,0.0,0.0,10.414406687934468,0.0,0.0,0.0 -6972,reservoir_outflow,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6973,gw1_gw2,0.0,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6974,gw2_gw1,0.0014108383316253637,2011-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6975,urban_drainage,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6976,percolation,0.020689171520316338,2011-04-17,0.0,0.0,2.817273711681359e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6977,runoff,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6978,storm_outflow,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6979,baseflow,0.04224036877548293,2011-04-17,0.0,0.0,4.733952904267289e-06,0.0,0.0,0.0,0.0,0.0,10.410869468603071,0.0,0.0,0.0 -6980,catchment_outflow,0.04224036877548293,2011-04-17,0.0,0.0,4.733952904267289e-06,0.0,0.0,0.0,0.0,0.0,10.410869468603071,0.0,0.0,0.0 -6981,reservoir_outflow,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6982,gw1_gw2,0.0,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6983,gw2_gw1,0.0014014327427474883,2011-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6984,urban_drainage,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6985,percolation,0.020275388089910012,2011-04-18,0.0,0.0,2.760928237447732e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6986,runoff,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6987,storm_outflow,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6988,baseflow,0.042185456323768994,2011-04-18,0.0,0.0,4.72902034260024e-06,0.0,0.0,0.0,0.0,0.0,10.40731011877627,0.0,0.0,0.0 -6989,catchment_outflow,0.042185456323768994,2011-04-18,0.0,0.0,4.72902034260024e-06,0.0,0.0,0.0,0.0,0.0,10.40731011877627,0.0,0.0,0.0 -6990,reservoir_outflow,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6991,gw1_gw2,0.0,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6992,gw2_gw1,0.0013920898577962863,2011-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6993,urban_drainage,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6994,percolation,0.01986988032811181,2011-04-19,0.0,0.0,2.705709672698777e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6995,runoff,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6996,storm_outflow,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6997,baseflow,0.04212966738377985,2011-04-19,0.0,0.0,4.723962065925487e-06,0.0,0.0,0.0,0.0,0.0,10.403821533648127,0.0,0.0,0.0 -6998,catchment_outflow,0.04212966738377985,2011-04-19,0.0,0.0,4.723962065925487e-06,0.0,0.0,0.0,0.0,0.0,10.403821533648127,0.0,0.0,0.0 -6999,reservoir_outflow,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7000,gw1_gw2,0.0,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7001,gw2_gw1,0.001382809258744011,2011-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7002,urban_drainage,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7003,percolation,0.019472482721549576,2011-04-20,0.0,0.0,2.651595479244801e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7004,runoff,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7005,storm_outflow,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7006,baseflow,0.04207302442212428,2011-04-20,0.0,0.0,4.718781149458785e-06,0.0,0.0,0.0,0.0,0.0,10.400402153988384,0.0,0.0,0.0 -7007,catchment_outflow,0.04207302442212428,2011-04-20,0.0,0.0,4.718781149458785e-06,0.0,0.0,0.0,0.0,0.0,10.400402153988384,0.0,0.0,0.0 -7008,reservoir_outflow,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7009,gw1_gw2,0.0,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7010,gw2_gw1,0.0013735905303523313,2011-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7011,urban_drainage,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7012,percolation,0.019083033067118584,2011-04-21,0.0,0.0,2.598563569659905e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7013,runoff,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7014,storm_outflow,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7015,baseflow,0.04201554944373677,2011-04-21,0.0,0.0,4.7134806055092876e-06,0.0,0.0,0.0,0.0,0.0,10.397050460565811,0.0,0.0,0.0 -7016,catchment_outflow,0.04201554944373677,2011-04-21,0.0,0.0,4.7134806055092876e-06,0.0,0.0,0.0,0.0,0.0,10.397050460565811,0.0,0.0,0.0 -7017,reservoir_outflow,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7018,gw1_gw2,0.0,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7019,gw2_gw1,0.0013644332601497667,2011-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7020,urban_drainage,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7021,percolation,0.018701372405776212,2011-04-22,0.0,0.0,2.5465922982667067e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7022,runoff,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7023,storm_outflow,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7024,baseflow,0.041957264001141865,2011-04-22,0.0,0.0,4.708063384741181e-06,0.0,0.0,0.0,0.0,0.0,10.393764972915067,0.0,0.0,0.0 -7025,catchment_outflow,0.041957264001141865,2011-04-22,0.0,0.0,4.708063384741181e-06,0.0,0.0,0.0,0.0,0.0,10.393764972915067,0.0,0.0,0.0 -7026,reservoir_outflow,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7027,gw1_gw2,0.0,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7028,gw2_gw1,0.0013553370384155273,2011-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7029,urban_drainage,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7030,percolation,0.01832734495766069,2011-04-23,0.0,0.0,2.4956604523013724e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -7031,runoff,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7032,storm_outflow,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7033,baseflow,0.04189818920353317,2011-04-23,0.0,0.0,4.702532377410081e-06,0.0,0.0,0.0,0.0,0.0,10.390544248149116,0.0,0.0,0.0 -7034,catchment_outflow,0.04189818920353317,2011-04-23,0.0,0.0,4.702532377410081e-06,0.0,0.0,0.0,0.0,0.0,10.390544248149116,0.0,0.0,0.0 -7035,reservoir_outflow,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7036,gw1_gw2,0.0,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7037,gw2_gw1,0.0013463014581592604,2011-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7038,urban_drainage,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7039,percolation,0.017960798058507477,2011-04-24,0.0,0.0,2.445747243255345e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7040,runoff,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7041,storm_outflow,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7042,baseflow,0.041838345725670606,2011-04-24,0.0,0.0,4.696890414574694e-06,0.0,0.0,0.0,0.0,0.0,10.387386879815237,0.0,0.0,0.0 -7043,catchment_outflow,0.041838345725670606,2011-04-24,0.0,0.0,4.696890414574694e-06,0.0,0.0,0.0,0.0,0.0,10.387386879815237,0.0,0.0,0.0 -7044,reservoir_outflow,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7045,gw1_gw2,0.0,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7046,gw2_gw1,0.001337326115104709,2011-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7047,urban_drainage,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7048,percolation,0.017601582097337327,2011-04-25,0.0,0.0,2.3968322983902384e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7049,runoff,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7050,storm_outflow,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7051,baseflow,0.04177775381659977,2011-04-25,0.0,0.0,4.691140269284233e-06,0.0,0.0,0.0,0.0,0.0,10.384291496792725,0.0,0.0,0.0 -7052,catchment_outflow,0.04177775381659977,2011-04-25,0.0,0.0,4.691140269284233e-06,0.0,0.0,0.0,0.0,0.0,10.384291496792725,0.0,0.0,0.0 -7053,reservoir_outflow,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7054,gw1_gw2,0.0,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7055,gw2_gw1,0.0013284106076708825,2011-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7056,urban_drainage,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7057,percolation,0.017249550455390582,2011-04-26,0.0,0.0,2.3488956524224335e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7058,runoff,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7059,storm_outflow,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7060,baseflow,0.04171643330819674,2011-04-26,0.0,0.0,4.685284657742078e-06,0.0,0.0,0.0,0.0,0.0,10.381256762230555,0.0,0.0,0.0 -7061,catchment_outflow,0.04171643330819674,2011-04-26,0.0,0.0,4.685284657742078e-06,0.0,0.0,0.0,0.0,0.0,10.381256762230555,0.0,0.0,0.0 -7062,reservoir_outflow,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7063,gw1_gw2,0.0,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7064,gw2_gw1,0.0013195545369528716,2011-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7065,urban_drainage,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7066,percolation,0.01690455944628277,2011-04-27,0.0,0.0,2.3019177393739845e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7067,runoff,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7068,storm_outflow,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7069,baseflow,0.04165440362354196,2011-04-27,0.0,0.0,4.679326240446158e-06,0.0,0.0,0.0,0.0,0.0,10.378281372523274,0.0,0.0,0.0 -7070,catchment_outflow,0.04165440362354196,2011-04-27,0.0,0.0,4.679326240446158e-06,0.0,0.0,0.0,0.0,0.0,10.378281372523274,0.0,0.0,0.0 -7071,reservoir_outflow,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7072,gw1_gw2,0.0,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7073,gw2_gw1,0.0013107575067063948,2011-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7074,urban_drainage,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7075,percolation,0.016566468257357116,2011-04-28,0.0,0.0,2.255879384586505e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7076,runoff,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7077,storm_outflow,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7078,baseflow,0.04159168378512649,2011-04-28,0.0,0.0,4.673267623306509e-06,0.0,0.0,0.0,0.0,0.0,10.375364056323544,0.0,0.0,0.0 -7079,catchment_outflow,0.04159168378512649,2011-04-28,0.0,0.0,4.673267623306509e-06,0.0,0.0,0.0,0.0,0.0,10.375364056323544,0.0,0.0,0.0 -7080,reservoir_outflow,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7081,gw1_gw2,0.0,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7082,gw2_gw1,0.0013020191233282575,2011-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7083,urban_drainage,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7084,percolation,0.016235138892209972,2011-04-29,0.0,0.0,2.2107617968947747e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7085,runoff,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7086,storm_outflow,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7087,baseflow,0.0415282924228942,2011-04-29,0.0,0.0,4.667111358740479e-06,0.0,0.0,0.0,0.0,0.0,10.372503573589773,0.0,0.0,0.0 -7088,catchment_outflow,0.0415282924228942,2011-04-29,0.0,0.0,4.667111358740479e-06,0.0,0.0,0.0,0.0,0.0,10.372503573589773,0.0,0.0,0.0 -7089,reservoir_outflow,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7090,gw1_gw2,0.0,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7091,gw2_gw1,0.001293338995839477,2011-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7092,urban_drainage,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7093,percolation,0.015910436114365774,2011-04-30,0.0,0.0,2.166546560956879e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7094,runoff,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7095,storm_outflow,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7096,baseflow,0.04146424778212288,2011-04-30,0.0,0.0,4.660859946746021e-06,0.0,0.0,0.0,0.0,0.0,10.36969871466742,0.0,0.0,0.0 -7097,catchment_outflow,0.04146424778212288,2011-04-30,0.0,0.0,4.660859946746021e-06,0.0,0.0,0.0,0.0,0.0,10.36969871466742,0.0,0.0,0.0 -7098,reservoir_outflow,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7099,gw1_gw2,0.0,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7100,gw2_gw1,0.0012847167358675195,2011-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7101,urban_drainage,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7102,percolation,0.015592227392078457,2011-05-01,0.0,0.0,2.1232156297377417e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7103,runoff,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7104,storm_outflow,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7105,baseflow,0.04139956773114777,2011-05-01,0.0,0.0,4.6545158359535e-06,0.0,0.0,0.0,0.0,0.0,10.366948299402518,0.0,0.0,0.0 -7106,catchment_outflow,0.04139956773114777,2011-05-01,0.0,0.0,4.6545158359535e-06,0.0,0.0,0.0,0.0,0.0,10.366948299402518,0.0,0.0,0.0 -7107,reservoir_outflow,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7108,gw1_gw2,0.0,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7109,gw2_gw1,0.00127615195762818,2011-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7110,urban_drainage,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7111,percolation,0.015280382844236889,2011-05-02,0.0,0.0,2.0807513171429867e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7112,runoff,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7113,storm_outflow,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7114,baseflow,0.04133426976893049,2011-05-02,0.0,0.0,4.6480814246564725e-06,0.0,0.0,0.0,0.0,0.0,10.364251176286162,0.0,0.0,0.0 -7115,catchment_outflow,0.04133426976893049,2011-05-02,0.0,0.0,4.6480814246564725e-06,0.0,0.0,0.0,0.0,0.0,10.364251176286162,0.0,0.0,0.0 -7116,reservoir_outflow,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7117,gw1_gw2,0.0,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7118,gw2_gw1,0.0012676442779104846,2011-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7119,urban_drainage,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7120,percolation,0.014974775187352149,2011-05-03,0.0,0.0,2.0391362908001266e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7121,runoff,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7122,storm_outflow,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7123,baseflow,0.04126837103247654,2011-05-03,0.0,0.0,4.641559061821833e-06,0.0,0.0,0.0,0.0,0.0,10.361606221628637,0.0,0.0,0.0 -7124,catchment_outflow,0.04126837103247654,2011-05-03,0.0,0.0,4.641559061821833e-06,0.0,0.0,0.0,0.0,0.0,10.361606221628637,0.0,0.0,0.0 -7125,reservoir_outflow,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7126,gw1_gw2,0.0,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7127,gw2_gw1,0.0012591933160578607,2011-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7128,urban_drainage,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7129,percolation,0.014675279683605108,2011-05-04,0.0,0.0,1.9983535649841247e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7130,runoff,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7131,storm_outflow,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7132,baseflow,0.04120188830410435,2011-05-04,0.0,0.0,4.634951048079738e-06,0.0,0.0,0.0,0.0,0.0,10.359012338762025,0.0,0.0,0.0 -7133,catchment_outflow,0.04120188830410435,2011-05-04,0.0,0.0,4.634951048079738e-06,0.0,0.0,0.0,0.0,0.0,10.359012338762025,0.0,0.0,0.0 -7134,reservoir_outflow,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7135,gw1_gw2,0.0,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7136,gw2_gw1,0.0012507986939507276,2011-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7137,urban_drainage,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7138,percolation,0.014381774089933002,2011-05-05,0.0,0.0,1.9583864936844418e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -7139,runoff,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7140,storm_outflow,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7141,baseflow,0.04113483801856893,2011-05-05,0.0,0.0,4.62825963669375e-06,0.0,0.0,0.0,0.0,0.0,10.356468457270125,0.0,0.0,0.0 -7142,catchment_outflow,0.04113483801856893,2011-05-05,0.0,0.0,4.62825963669375e-06,0.0,0.0,0.0,0.0,0.0,10.356468457270125,0.0,0.0,0.0 -7143,reservoir_outflow,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7144,gw1_gw2,0.0,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7145,gw2_gw1,0.0012424600359910443,2011-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7146,urban_drainage,0.04,2011-05-06,0.0,0.0,2.0845070422535202e-05,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0 -7147,percolation,0.014094138608134344,2011-05-06,0.0,0.0,1.9192187638107534e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -7148,runoff,0.0,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7149,storm_outflow,0.04,2011-05-06,0.0,0.0,2.0845070422535202e-05,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0 -7150,baseflow,0.04106723627004285,2011-05-06,0.0,0.0,4.6214870345115434e-06,0.0,0.0,0.0,0.0,0.0,10.353973532244591,0.0,0.0,0.0 -7151,catchment_outflow,0.08106723627004285,2011-05-06,0.0,0.0,2.5466557457046747e-05,0.0,0.0,0.0,0.0,0.0,12.270173785979159,0.0,0.0,0.0 -7152,reservoir_outflow,0.035500000000000004,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7153,gw1_gw2,0.0,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7154,gw2_gw1,0.0012341769690843664,2011-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7155,urban_drainage,0.04,2011-05-07,0.0,0.0,3.8122065727699536e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833332,0.0,0.0,0.0 -7156,percolation,0.01381225583597166,2011-05-07,0.0,0.0,1.8808343885345386e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -7157,runoff,0.0,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7158,storm_outflow,0.04,2011-05-07,0.0,0.0,3.8122065727699536e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833332,0.0,0.0,0.0 -7159,baseflow,0.04099909881895767,2011-05-07,0.0,0.0,4.6146354028966e-06,0.0,0.0,0.0,0.0,0.0,10.351526543566235,0.0,0.0,0.0 -7160,catchment_outflow,0.08099909881895767,2011-05-07,0.0,0.0,8.426841975666553e-06,0.0,0.0,0.0,0.0,0.0,12.456203062396641,0.0,0.0,0.0 -7161,reservoir_outflow,0.0745,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7162,gw1_gw2,0.0,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7163,gw2_gw1,0.0012259491226238595,2011-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7164,urban_drainage,0.04,2011-05-08,0.0,0.0,4.589671361502348e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 -7165,percolation,0.013536010719252221,2011-05-08,0.0,0.0,1.8432177007638474e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -7166,runoff,0.0,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7167,storm_outflow,0.04,2011-05-08,0.0,0.0,4.589671361502348e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 -7168,baseflow,0.040930441098708414,2011-05-08,0.0,0.0,4.607706858641269e-06,0.0,0.0,0.0,0.0,0.0,10.349126495210518,0.0,0.0,0.0 -7169,catchment_outflow,0.08093044109870842,2011-05-08,0.0,0.0,9.197378220143617e-06,0.0,0.0,0.0,0.0,0.0,12.456774754001913,0.0,0.0,0.0 -7170,reservoir_outflow,0.0,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7171,gw1_gw2,0.0,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7172,gw2_gw1,0.0012177761284730693,2011-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7173,urban_drainage,0.04,2011-05-09,0.0,0.0,6.058057263770417e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 -7174,percolation,0.013265290504867177,2011-05-09,0.0,0.0,1.8063533467485704e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -7175,runoff,0.0,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7176,storm_outflow,0.04,2011-05-09,0.0,0.0,6.058057263770417e-06,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 -7177,baseflow,0.04086127822222381,2011-05-09,0.0,0.0,4.600703474861538e-06,0.0,0.0,0.0,0.0,0.0,10.346772414576261,0.0,0.0,0.0 -7178,catchment_outflow,0.0808612782222238,2011-05-09,0.0,0.0,1.0658760738631955e-05,0.0,0.0,0.0,0.0,0.0,12.457387906224238,0.0,0.0,0.0 -7179,reservoir_outflow,0.0,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7180,gw1_gw2,0.0,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7181,gw2_gw1,0.0012096576209495778,2011-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7182,urban_drainage,0.011999999999999993,2011-05-10,0.0,0.0,5.694994379422072e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -7183,percolation,0.012999984694769835,2011-05-10,0.0,0.0,1.7702262798135994e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7184,runoff,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7185,storm_outflow,0.011999999999999993,2011-05-10,0.0,0.0,5.694994379422072e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -7186,baseflow,0.040791624988405176,2011-05-10,0.0,0.0,4.593627281873918e-06,0.0,0.0,0.0,0.0,0.0,10.344463351836666,0.0,0.0,0.0 -7187,catchment_outflow,0.05279162498840517,2011-05-10,0.0,0.0,1.028862166129599e-05,0.0,0.0,0.0,0.0,0.0,11.314841299308663,0.0,0.0,0.0 -7188,reservoir_outflow,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7189,gw1_gw2,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7190,gw2_gw1,0.0012015932368099058,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7191,urban_drainage,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7192,percolation,0.012739985000874438,2011-05-11,0.0,0.0,1.7348217542173273e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -7193,runoff,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7194,storm_outflow,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7195,baseflow,0.04072149588843635,2011-05-11,0.0,0.0,4.586480268054776e-06,0.0,0.0,0.0,0.0,0.0,10.342198379311778,0.0,0.0,0.0 -7196,catchment_outflow,0.04072149588843635,2011-05-11,0.0,0.0,4.586480268054776e-06,0.0,0.0,0.0,0.0,0.0,10.342198379311778,0.0,0.0,0.0 -7197,reservoir_outflow,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7198,gw1_gw2,0.0,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7199,gw2_gw1,0.001193582615231037,2011-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7200,urban_drainage,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7201,percolation,0.01248518530085695,2011-05-12,0.0,0.0,1.7001253191329807e-06,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -7202,runoff,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7203,storm_outflow,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7204,baseflow,0.040650905111967395,2011-05-12,0.0,0.0,4.579264380682472e-06,0.0,0.0,0.0,0.0,0.0,10.33997659086157,0.0,0.0,0.0 -7205,catchment_outflow,0.040650905111967395,2011-05-12,0.0,0.0,4.579264380682472e-06,0.0,0.0,0.0,0.0,0.0,10.33997659086157,0.0,0.0,0.0 -7206,reservoir_outflow,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7207,gw1_gw2,0.0,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7208,gw2_gw1,0.0011856253977962083,2011-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7209,urban_drainage,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7210,percolation,0.012235481594839814,2011-05-13,0.0,0.0,1.6661228127503217e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7211,runoff,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7212,storm_outflow,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7213,baseflow,0.040579866553174575,2011-05-13,0.0,0.0,4.571981526762642e-06,0.0,0.0,0.0,0.0,0.0,10.337797101298838,0.0,0.0,0.0 -7214,catchment_outflow,0.040579866553174575,2011-05-13,0.0,0.0,4.571981526762642e-06,0.0,0.0,0.0,0.0,0.0,10.337797101298838,0.0,0.0,0.0 -7215,reservoir_outflow,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7216,gw1_gw2,0.0,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7217,gw2_gw1,0.001177721228477502,2011-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7218,urban_drainage,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7219,percolation,0.011990771962943014,2011-05-14,0.0,0.0,1.6328003564953147e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7220,runoff,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7221,storm_outflow,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7222,baseflow,0.040508393816699,2011-05-14,0.0,0.0,4.564633573836973e-06,0.0,0.0,0.0,0.0,0.0,10.335659045821163,0.0,0.0,0.0 -7223,catchment_outflow,0.040508393816699,2011-05-14,0.0,0.0,4.564633573836973e-06,0.0,0.0,0.0,0.0,0.0,10.335659045821163,0.0,0.0,0.0 -7224,reservoir_outflow,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7225,gw1_gw2,0.0,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7226,gw2_gw1,0.0011698697536207448,2011-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7227,urban_drainage,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7228,percolation,0.011750956523684155,2011-05-15,0.0,0.0,1.6001443493654085e-06,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7229,runoff,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7230,storm_outflow,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7231,baseflow,0.04043650022346647,2011-05-15,0.0,0.0,4.557222350775795e-06,0.0,0.0,0.0,0.0,0.0,10.333561579461199,0.0,0.0,0.0 -7232,catchment_outflow,0.04043650022346647,2011-05-15,0.0,0.0,4.557222350775795e-06,0.0,0.0,0.0,0.0,0.0,10.333561579461199,0.0,0.0,0.0 -7233,reservoir_outflow,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7234,gw1_gw2,0.0,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7235,gw2_gw1,0.001162070621930056,2011-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7236,urban_drainage,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7237,percolation,0.011515937393210472,2011-05-16,0.0,0.0,1.5681414623781002e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7238,runoff,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7239,storm_outflow,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7240,baseflow,0.04036419881639082,2011-05-16,0.0,0.0,4.5497496485548e-06,0.0,0.0,0.0,0.0,0.0,10.331503876554612,0.0,0.0,0.0 -7241,catchment_outflow,0.04036419881639082,2011-05-16,0.0,0.0,4.5497496485548e-06,0.0,0.0,0.0,0.0,0.0,10.331503876554612,0.0,0.0,0.0 -7242,reservoir_outflow,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7243,gw1_gw2,0.0,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7244,gw2_gw1,0.0011543234844507923,2011-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7245,urban_drainage,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7246,percolation,0.011285618645346263,2011-05-17,0.0,0.0,1.536778633130538e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7247,runoff,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7248,storm_outflow,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7249,baseflow,0.04029150236596321,2011-05-17,0.0,0.0,4.542217221016239e-06,0.0,0.0,0.0,0.0,0.0,10.32948513022499,0.0,0.0,0.0 -7250,catchment_outflow,0.04029150236596321,2011-05-17,0.0,0.0,4.542217221016239e-06,0.0,0.0,0.0,0.0,0.0,10.32948513022499,0.0,0.0,0.0 -7251,reservoir_outflow,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7252,gw1_gw2,0.0,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7253,gw2_gw1,0.0011466279945540948,2011-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7254,urban_drainage,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7255,percolation,0.011059906272439336,2011-05-18,0.0,0.0,1.506043060467927e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7256,runoff,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7257,storm_outflow,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7258,baseflow,0.040218423375729395,2011-05-18,0.0,0.0,4.534626785614869e-06,0.0,0.0,0.0,0.0,0.0,10.327504551885086,0.0,0.0,0.0 -7259,catchment_outflow,0.040218423375729395,2011-05-18,0.0,0.0,4.534626785614869e-06,0.0,0.0,0.0,0.0,0.0,10.327504551885086,0.0,0.0,0.0 -7260,reservoir_outflow,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7261,gw1_gw2,0.0,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7262,gw2_gw1,0.0011389838079237438,2011-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7263,urban_drainage,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7264,percolation,0.01083870814699055,2011-05-19,0.0,0.0,1.4759221992585688e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7265,runoff,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7266,storm_outflow,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7267,baseflow,0.04014497408765755,2011-05-19,0.0,0.0,4.526980024148978e-06,0.0,0.0,0.0,0.0,0.0,10.325561370753816,0.0,0.0,0.0 -7268,catchment_outflow,0.04014497408765755,2011-05-19,0.0,0.0,4.526980024148978e-06,0.0,0.0,0.0,0.0,0.0,10.325561370753816,0.0,0.0,0.0 -7269,reservoir_outflow,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7270,gw1_gw2,0.0,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7271,gw2_gw1,0.001131390582537506,2011-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7272,urban_drainage,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7273,percolation,0.01062193398405074,2011-05-20,0.0,0.0,1.4464037552733975e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7274,runoff,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7275,storm_outflow,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7276,baseflow,0.04007116648739854,2011-05-20,0.0,0.0,4.519278583476789e-06,0.0,0.0,0.0,0.0,0.0,10.323654833388376,0.0,0.0,0.0 -7277,catchment_outflow,0.04007116648739854,2011-05-20,0.0,0.0,4.519278583476789e-06,0.0,0.0,0.0,0.0,0.0,10.323654833388376,0.0,0.0,0.0 -7278,reservoir_outflow,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7279,gw1_gw2,0.0,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7280,gw2_gw1,0.0011238479786538137,2011-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7281,urban_drainage,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7282,percolation,0.010409495304369725,2011-05-21,0.0,0.0,1.4174756801679296e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7283,runoff,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7284,storm_outflow,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7285,baseflow,0.039997012309440964,2011-05-21,0.0,0.0,4.511524076218516e-06,0.0,0.0,0.0,0.0,0.0,10.32178420323098,0.0,0.0,0.0 -7286,catchment_outflow,0.039997012309440964,2011-05-21,0.0,0.0,4.511524076218516e-06,0.0,0.0,0.0,0.0,0.0,10.32178420323098,0.0,0.0,0.0 -7287,reservoir_outflow,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7288,gw1_gw2,0.0,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7289,gw2_gw1,0.0011163556587963086,2011-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7290,urban_drainage,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7291,percolation,0.01020130539828233,2011-05-22,0.0,0.0,1.389126166564571e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7292,runoff,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7293,storm_outflow,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7294,baseflow,0.039922523042163066,2011-05-22,0.0,0.0,4.503718081444381e-06,0.0,0.0,0.0,0.0,0.0,10.319948760169625,0.0,0.0,0.0 -7295,catchment_outflow,0.039922523042163066,2011-05-22,0.0,0.0,4.503718081444381e-06,0.0,0.0,0.0,0.0,0.0,10.319948760169625,0.0,0.0,0.0 -7296,reservoir_outflow,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7297,gw1_gw2,0.0,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7298,gw2_gw1,0.0011089132877376785,2011-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7299,urban_drainage,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7300,percolation,0.009997279290316683,2011-05-23,0.0,0.0,1.3613436432332797e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7301,runoff,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7302,storm_outflow,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7303,baseflow,0.03984770993278346,2011-05-23,0.0,0.0,4.495862145348854e-06,0.0,0.0,0.0,0.0,0.0,10.318147800112447,0.0,0.0,0.0 -7304,catchment_outflow,0.03984770993278346,2011-05-23,0.0,0.0,4.495862145348854e-06,0.0,0.0,0.0,0.0,0.0,10.318147800112447,0.0,0.0,0.0 -7305,reservoir_outflow,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7306,gw1_gw2,0.0,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7307,gw2_gw1,0.0011015205324861556,2011-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7308,urban_drainage,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7309,percolation,0.00979733370451035,2011-05-24,0.0,0.0,1.3341167703686138e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7310,runoff,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7311,storm_outflow,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7312,baseflow,0.03977258399221277,2011-05-24,0.0,0.0,4.4879577819114025e-06,0.0,0.0,0.0,0.0,0.0,10.31638063457508,0.0,0.0,0.0 -7313,catchment_outflow,0.03977258399221277,2011-05-24,0.0,0.0,4.4879577819114025e-06,0.0,0.0,0.0,0.0,0.0,10.31638063457508,0.0,0.0,0.0 -7314,reservoir_outflow,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7315,gw1_gw2,0.0,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7316,gw2_gw1,0.00109417706226953,2011-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7317,urban_drainage,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7318,percolation,0.009601387030420142,2011-05-25,0.0,0.0,1.3074344349612417e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7319,runoff,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7320,storm_outflow,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7321,baseflow,0.039697155999808297,2011-05-25,0.0,0.0,4.480006473544028e-06,0.0,0.0,0.0,0.0,0.0,10.314646590280635,0.0,0.0,0.0 -7322,catchment_outflow,0.039697155999808297,2011-05-25,0.0,0.0,4.480006473544028e-06,0.0,0.0,0.0,0.0,0.0,10.314646590280635,0.0,0.0,0.0 -7323,reservoir_outflow,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7324,gw1_gw2,0.0,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7325,gw2_gw1,0.0010868825485212952,2011-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7326,urban_drainage,0.008999999999999998,2011-05-26,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 -7327,percolation,0.00940935928981174,2011-05-26,0.0,0.0,1.2812857462620168e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7328,runoff,0.0,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7329,storm_outflow,0.008999999999999998,2011-05-26,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 -7330,baseflow,0.0396214365080333,2011-05-26,0.0,0.0,4.472009671725823e-06,0.0,0.0,0.0,0.0,0.0,10.312945008771804,0.0,0.0,0.0 -7331,catchment_outflow,0.0486214365080333,2011-05-26,0.0,0.0,2.0472009671725826e-05,0.0,0.0,0.0,0.0,0.0,10.97295508037369,0.0,0.0,0.0 -7332,reservoir_outflow,0.004499999999999999,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7333,gw1_gw2,0.0,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7334,gw2_gw1,0.001079636664864303,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7335,urban_drainage,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7336,percolation,0.009221172104015504,2011-05-27,0.0,0.0,1.2556600313367763e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7337,runoff,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7338,storm_outflow,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7339,baseflow,0.039545435847023254,2011-05-27,0.0,0.0,4.4639687976248504e-06,0.0,0.0,0.0,0.0,0.0,10.311275246034668,0.0,0.0,0.0 -7340,catchment_outflow,0.039545435847023254,2011-05-27,0.0,0.0,4.4639687976248504e-06,0.0,0.0,0.0,0.0,0.0,10.311275246034668,0.0,0.0,0.0 -7341,reservoir_outflow,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7342,gw1_gw2,0.0,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7343,gw2_gw1,0.001072439087098509,2011-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7344,urban_drainage,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7345,percolation,0.009036748661935195,2011-05-28,0.0,0.0,1.2305468307100408e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7346,runoff,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7347,storm_outflow,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7348,baseflow,0.039469164129060534,2011-05-28,0.0,0.0,4.4558852427075635e-06,0.0,0.0,0.0,0.0,0.0,10.30963667213378,0.0,0.0,0.0 -7349,catchment_outflow,0.039469164129060534,2011-05-28,0.0,0.0,4.4558852427075635e-06,0.0,0.0,0.0,0.0,0.0,10.30963667213378,0.0,0.0,0.0 -7350,reservoir_outflow,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7351,gw1_gw2,0.0,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7352,gw2_gw1,0.0010652894931842739,2011-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7353,urban_drainage,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7354,percolation,0.00885601368869649,2011-05-29,0.0,0.0,1.20593589409584e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7355,runoff,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7356,storm_outflow,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7357,baseflow,0.03939263125295962,2011-05-29,0.0,0.0,4.447760369336035e-06,0.0,0.0,0.0,0.0,0.0,10.30802867085816,0.0,0.0,0.0 -7358,catchment_outflow,0.03939263125295962,2011-05-29,0.0,0.0,4.447760369336035e-06,0.0,0.0,0.0,0.0,0.0,10.30802867085816,0.0,0.0,0.0 -7359,reservoir_outflow,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7360,gw1_gw2,0.0,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7361,gw2_gw1,0.0010581875632299288,2011-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7362,urban_drainage,0.029999999999999995,2011-05-30,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -7363,percolation,0.00867889341492256,2011-05-30,0.0,0.0,1.181817176213923e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7364,runoff,0.0,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7365,storm_outflow,0.029999999999999995,2011-05-30,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -7366,baseflow,0.03931584690836453,2011-05-30,0.0,0.0,4.43959551135323e-06,0.0,0.0,0.0,0.0,0.0,10.306450639377772,0.0,0.0,0.0 -7367,catchment_outflow,0.06931584690836452,2011-05-30,0.0,0.0,8.439595511353229e-06,0.0,0.0,0.0,0.0,0.0,11.790640966802775,0.0,0.0,0.0 -7368,reservoir_outflow,0.015,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7369,gw1_gw2,0.0,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7370,gw2_gw1,0.0010511329794752557,2011-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7371,urban_drainage,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7372,percolation,0.00850531554662411,2011-05-31,0.0,0.0,1.1581808326896446e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7373,runoff,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7374,storm_outflow,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7375,baseflow,0.03923882057996018,2011-05-31,0.0,0.0,4.4313919746565695e-06,0.0,0.0,0.0,0.0,0.0,10.304901987910164,0.0,0.0,0.0 -7376,catchment_outflow,0.03923882057996018,2011-05-31,0.0,0.0,4.4313919746565695e-06,0.0,0.0,0.0,0.0,0.0,10.304901987910164,0.0,0.0,0.0 -7377,reservoir_outflow,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7378,gw1_gw2,0.0,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7379,gw2_gw1,0.0010441254262788747,2011-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7380,urban_drainage,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7381,percolation,0.008335209235691627,2011-06-01,0.0,0.0,1.1350172160358516e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7382,runoff,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7383,storm_outflow,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7384,baseflow,0.03916156155159951,2011-06-01,0.0,0.0,4.4231510377600185e-06,0.0,0.0,0.0,0.0,0.0,10.30338213939689,0.0,0.0,0.0 -7385,catchment_outflow,0.03916156155159951,2011-06-01,0.0,0.0,4.4231510377600185e-06,0.0,0.0,0.0,0.0,0.0,10.30338213939689,0.0,0.0,0.0 -7386,reservoir_outflow,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7387,gw1_gw2,0.0,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7388,gw2_gw1,0.001037164590103501,2011-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7389,urban_drainage,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7390,percolation,0.008168505050977794,2011-06-02,0.0,0.0,1.1123168717151347e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7391,runoff,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7392,storm_outflow,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7393,baseflow,0.03908407891034795,2011-06-02,0.0,0.0,4.414873952344907e-06,0.0,0.0,0.0,0.0,0.0,10.301890529189372,0.0,0.0,0.0 -7394,catchment_outflow,0.03908407891034795,2011-06-02,0.0,0.0,4.414873952344907e-06,0.0,0.0,0.0,0.0,0.0,10.301890529189372,0.0,0.0,0.0 -7395,reservoir_outflow,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7396,gw1_gw2,0.0,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7397,gw2_gw1,0.0010302501595026215,2011-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7398,urban_drainage,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7399,percolation,0.00800513494995824,2011-06-03,0.0,0.0,1.090070534280832e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7400,runoff,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7401,storm_outflow,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7402,baseflow,0.03900638155044698,2011-06-03,0.0,0.0,4.4065619437997465e-06,0.0,0.0,0.0,0.0,0.0,10.300426604743917,0.0,0.0,0.0 -7403,catchment_outflow,0.03900638155044698,2011-06-03,0.0,0.0,4.4065619437997465e-06,0.0,0.0,0.0,0.0,0.0,10.300426604743917,0.0,0.0,0.0 -7404,reservoir_outflow,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7405,gw1_gw2,0.0,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7406,gw2_gw1,0.0010233818251061068,2011-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7407,urban_drainage,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7408,percolation,0.007845032250959075,2011-06-04,0.0,0.0,1.0682691235952153e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7409,runoff,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7410,storm_outflow,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7411,baseflow,0.03892847817719826,2011-06-04,0.0,0.0,4.3982162117492355e-06,0.0,0.0,0.0,0.0,0.0,10.298989825325517,0.0,0.0,0.0 -7412,catchment_outflow,0.03892847817719826,2011-06-04,0.0,0.0,4.3982162117492355e-06,0.0,0.0,0.0,0.0,0.0,10.298989825325517,0.0,0.0,0.0 -7413,reservoir_outflow,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7414,gw1_gw2,0.0,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7415,gw2_gw1,0.0010165592796052892,2011-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7416,urban_drainage,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7417,percolation,0.007688131605939893,2011-06-05,0.0,0.0,1.046903741123311e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7418,runoff,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7419,storm_outflow,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7420,baseflow,0.038850377310770116,2011-06-05,0.0,0.0,4.3898379305726705e-06,0.0,0.0,0.0,0.0,0.0,10.297579661720192,0.0,0.0,0.0 -7421,catchment_outflow,0.038850377310770116,2011-06-05,0.0,0.0,4.3898379305726705e-06,0.0,0.0,0.0,0.0,0.0,10.297579661720192,0.0,0.0,0.0 -7422,reservoir_outflow,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7423,gw1_gw2,0.0,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7424,gw2_gw1,0.0010097822177414174,2011-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7425,urban_drainage,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7426,percolation,0.007534368973821095,2011-06-06,0.0,0.0,1.025965666300845e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7427,runoff,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7428,storm_outflow,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7429,baseflow,0.038772087289927745,2011-06-06,0.0,0.0,4.381428249911991e-06,0.0,0.0,0.0,0.0,0.0,10.296195595955549,0.0,0.0,0.0 -7430,catchment_outflow,0.038772087289927745,2011-06-06,0.0,0.0,4.381428249911991e-06,0.0,0.0,0.0,0.0,0.0,10.296195595955549,0.0,0.0,0.0 -7431,reservoir_outflow,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7432,gw1_gw2,0.0,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7433,gw2_gw1,0.0010030503362896681,2011-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7434,urban_drainage,0.0009999999999999983,2011-06-07,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 -7435,percolation,0.007383681594344673,2011-06-07,0.0,0.0,1.0054463529748277e-06,0.0,0.0,0.0,0.0,0.0,7.448602191769714,0.0,0.0,0.0 -7436,runoff,0.0,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7437,storm_outflow,0.0009999999999999983,2011-06-07,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 -7438,baseflow,0.038693616275688784,2011-06-07,0.0,0.0,4.372988295169648e-06,0.0,0.0,0.0,0.0,0.0,10.294837121029294,0.0,0.0,0.0 -7439,catchment_outflow,0.039693616275688785,2011-06-07,0.0,0.0,1.2372988295169648e-05,0.0,0.0,0.0,0.0,0.0,10.423451325477515,0.0,0.0,0.0 -7440,reservoir_outflow,0.0004999999999999991,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7441,gw1_gw2,0.0,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7442,gw2_gw1,0.0009963633340476009,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7443,urban_drainage,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7444,percolation,0.007236007962457782,2011-06-08,0.0,0.0,9.853374259153318e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7445,runoff,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7446,storm_outflow,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7447,baseflow,0.03861497225490571,2011-06-08,0.0,0.0,4.364519167996512e-06,0.0,0.0,0.0,0.0,0.0,10.293503740645438,0.0,0.0,0.0 -7448,catchment_outflow,0.03861497225490571,2011-06-08,0.0,0.0,4.364519167996512e-06,0.0,0.0,0.0,0.0,0.0,10.293503740645438,0.0,0.0,0.0 -7449,reservoir_outflow,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7450,gw1_gw2,0.0,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7451,gw2_gw1,0.0009897209118209461,2011-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7452,urban_drainage,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7453,percolation,0.0070912878032086245,2011-06-09,0.0,0.0,9.656306773970248e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7454,runoff,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7455,storm_outflow,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7456,baseflow,0.03853616304377647,2011-06-09,0.0,0.0,4.356021946770013e-06,0.0,0.0,0.0,0.0,0.0,10.292194968957922,0.0,0.0,0.0 -7457,catchment_outflow,0.03853616304377647,2011-06-09,0.0,0.0,4.356021946770013e-06,0.0,0.0,0.0,0.0,0.0,10.292194968957922,0.0,0.0,0.0 -7458,reservoir_outflow,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7459,gw1_gw2,0.0,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7460,gw2_gw1,0.0009831227724085068,2011-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7461,urban_drainage,0.017,2011-06-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0 -7462,percolation,0.006949462047144454,2011-06-10,0.0,0.0,9.463180638490845e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7463,runoff,0.0,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7464,storm_outflow,0.017,2011-06-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0 -7465,baseflow,0.038457196291284884,2011-06-10,0.0,0.0,4.34749768706271e-06,0.0,0.0,0.0,0.0,0.0,10.290910330321443,0.0,0.0,0.0 -7466,catchment_outflow,0.055457196291284885,2011-06-10,0.0,0.0,7.34749768706271e-06,0.0,0.0,0.0,0.0,0.0,11.827505116811345,0.0,0.0,0.0 -7467,reservoir_outflow,0.0085,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7468,gw1_gw2,0.0,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7469,gw2_gw1,0.0009765686205923886,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7470,urban_drainage,0.018999999999999996,2011-06-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0 -7471,percolation,0.006810472806201563,2011-06-11,0.0,0.0,9.273917025721027e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7472,runoff,0.0,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7473,storm_outflow,0.018999999999999996,2011-06-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0 -7474,baseflow,0.03837807948257218,2011-06-11,0.0,0.0,4.338947422101484e-06,0.0,0.0,0.0,0.0,0.0,10.289649359049209,0.0,0.0,0.0 -7475,catchment_outflow,0.057378079482572175,2011-06-11,0.0,0.0,5.338947422101484e-06,0.0,0.0,0.0,0.0,0.0,11.939300338336775,0.0,0.0,0.0 -7476,reservoir_outflow,0.009499999999999998,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7477,gw1_gw2,0.0,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7478,gw2_gw1,0.0009700581631216566,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7479,urban_drainage,0.04,2011-06-12,0.0,0.0,2.61437908496732e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 -7480,percolation,0.006674263350077531,2011-06-12,0.0,0.0,9.088438685206604e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -7481,runoff,0.0,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7482,storm_outflow,0.04,2011-06-12,0.0,0.0,2.61437908496732e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 -7483,baseflow,0.03829881994224094,2011-06-12,0.0,0.0,4.3303721632175325e-06,0.0,0.0,0.0,0.0,0.0,10.288411599177428,0.0,0.0,0.0 -7484,catchment_outflow,0.07829881994224094,2011-06-12,0.0,0.0,4.591810071714264e-06,0.0,0.0,0.0,0.0,0.0,12.817631893672138,0.0,0.0,0.0 -7485,reservoir_outflow,0.0765,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7486,gw1_gw2,0.0,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7487,gw2_gw1,0.0009635911087006122,2011-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7488,urban_drainage,0.04,2011-06-13,0.0,0.0,7.477686415067821e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 -7489,percolation,0.006540778083075981,2011-06-13,0.0,0.0,8.906669911502474e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7490,runoff,0.0,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7491,storm_outflow,0.04,2011-06-13,0.0,0.0,7.477686415067821e-07,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 -7492,baseflow,0.03821942483759303,2011-06-13,0.0,0.0,4.321772900287364e-06,0.0,0.0,0.0,0.0,0.0,10.287196604236307,0.0,0.0,0.0 -7493,catchment_outflow,0.07821942483759303,2011-06-13,0.0,0.0,5.069541541794146e-06,0.0,0.0,0.0,0.0,0.0,12.819605461011061,0.0,0.0,0.0 -7494,reservoir_outflow,0.0,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7495,gw1_gw2,0.0,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7496,gw2_gw1,0.000957167167976003,2011-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7497,urban_drainage,0.03299999999999999,2011-06-14,0.0,0.0,1.990793449996486e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -7498,percolation,0.006409962521414462,2011-06-14,0.0,0.0,8.728536513272424e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7499,runoff,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7500,storm_outflow,0.03299999999999999,2011-06-14,0.0,0.0,1.990793449996486e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -7501,baseflow,0.03813990118180259,2011-06-14,0.0,0.0,4.313150602164964e-06,0.0,0.0,0.0,0.0,0.0,10.286003937027319,0.0,0.0,0.0 -7502,catchment_outflow,0.07113990118180258,2011-06-14,0.0,0.0,6.30394405216145e-06,0.0,0.0,0.0,0.0,0.0,12.583706011287587,0.0,0.0,0.0 -7503,reservoir_outflow,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7504,gw1_gw2,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7505,gw2_gw1,0.0009507860535226343,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7506,urban_drainage,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7507,percolation,0.006281763270986173,2011-06-15,0.0,0.0,8.553965783006976e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7508,runoff,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7509,storm_outflow,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7510,baseflow,0.03806025583702555,2011-06-15,0.0,0.0,4.304506217105302e-06,0.0,0.0,0.0,0.0,0.0,10.28483316940658,0.0,0.0,0.0 -7511,catchment_outflow,0.03806025583702555,2011-06-15,0.0,0.0,4.304506217105302e-06,0.0,0.0,0.0,0.0,0.0,10.28483316940658,0.0,0.0,0.0 -7512,reservoir_outflow,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7513,gw1_gw2,0.0,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7514,gw2_gw1,0.0009444474798327107,2011-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7515,urban_drainage,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7516,percolation,0.0061561280055664495,2011-06-16,0.0,0.0,8.382886467346836e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7517,runoff,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7518,storm_outflow,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7519,baseflow,0.037980495517446894,2011-06-16,0.0,0.0,4.295840673179375e-06,0.0,0.0,0.0,0.0,0.0,10.283683882074108,0.0,0.0,0.0 -7520,catchment_outflow,0.037980495517446894,2011-06-16,0.0,0.0,4.295840673179375e-06,0.0,0.0,0.0,0.0,0.0,10.283683882074108,0.0,0.0,0.0 -7521,reservoir_outflow,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7522,gw1_gw2,0.0,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7523,gw2_gw1,0.0009381511633005602,2011-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7524,urban_drainage,0.018999999999999996,2011-06-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -7525,percolation,0.006033005445455122,2011-06-17,0.0,0.0,8.215228737999902e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7526,runoff,0.0,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7527,storm_outflow,0.018999999999999996,2011-06-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -7528,baseflow,0.03790062679226692,2011-06-17,0.0,0.0,4.287154878680928e-06,0.0,0.0,0.0,0.0,0.0,10.282555664368788,0.0,0.0,0.0 -7529,catchment_outflow,0.056900626792266915,2011-06-17,0.0,0.0,7.287154878680928e-06,0.0,0.0,0.0,0.0,0.0,12.066480518967898,0.0,0.0,0.0 -7530,reservoir_outflow,0.009499999999999998,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7531,gw1_gw2,0.0,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7532,gw2_gw1,0.0009318968222116197,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7533,urban_drainage,0.012999999999999998,2011-06-18,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 -7534,percolation,0.005912345336546018,2011-06-18,0.0,0.0,8.050924163239903e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7535,runoff,0.0,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7536,storm_outflow,0.012999999999999998,2011-06-18,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 -7537,baseflow,0.03782065608862761,2011-06-18,0.0,0.0,4.278449722525035e-06,0.0,0.0,0.0,0.0,0.0,10.281448114068862,0.0,0.0,0.0 -7538,catchment_outflow,0.05082065608862761,2011-06-18,0.0,0.0,5.278449722525035e-06,0.0,0.0,0.0,0.0,0.0,11.686706920499066,0.0,0.0,0.0 -7539,reservoir_outflow,0.0065,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7540,gw1_gw2,0.0,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7541,gw2_gw1,0.0009256841767300017,2011-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7542,urban_drainage,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7543,percolation,0.005794098429815098,2011-06-19,0.0,0.0,7.889905679975104e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7544,runoff,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7545,storm_outflow,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7546,baseflow,0.03774058969448058,2011-06-19,0.0,0.0,4.2697260746387165e-06,0.0,0.0,0.0,0.0,0.0,10.280360837197781,0.0,0.0,0.0 -7547,catchment_outflow,0.03774058969448058,2011-06-19,0.0,0.0,4.2697260746387165e-06,0.0,0.0,0.0,0.0,0.0,10.280360837197781,0.0,0.0,0.0 -7548,reservoir_outflow,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7549,gw1_gw2,0.0,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7550,gw2_gw1,0.0009195129488853483,2011-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7551,urban_drainage,0.029999999999999995,2011-06-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 -7552,percolation,0.005678216461218796,2011-06-20,0.0,0.0,7.732107566375602e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7553,runoff,0.0,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7554,storm_outflow,0.029999999999999995,2011-06-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 -7555,baseflow,0.037660433761397424,2011-06-20,0.0,0.0,4.260984786343713e-06,0.0,0.0,0.0,0.0,0.0,10.279293447835212,0.0,0.0,0.0 -7556,catchment_outflow,0.06766043376139742,2011-06-20,0.0,0.0,6.260984786343714e-06,0.0,0.0,0.0,0.0,0.0,12.849055225864825,0.0,0.0,0.0 -7557,reservoir_outflow,0.015,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7558,gw1_gw2,0.0,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7559,gw2_gw1,0.0009133828625595086,2011-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7560,urban_drainage,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7561,percolation,0.0055646521319944195,2011-06-21,0.0,0.0,7.577465415048091e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7562,runoff,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7563,storm_outflow,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7564,baseflow,0.03758019430732392,2011-06-21,0.0,0.0,4.252226690731616e-06,0.0,0.0,0.0,0.0,0.0,10.278245567933084,0.0,0.0,0.0 -7565,catchment_outflow,0.03758019430732392,2011-06-21,0.0,0.0,4.252226690731616e-06,0.0,0.0,0.0,0.0,0.0,10.278245567933084,0.0,0.0,0.0 -7566,reservoir_outflow,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7567,gw1_gw2,0.0,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7568,gw2_gw1,0.0009072936434755263,2011-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7569,urban_drainage,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7570,percolation,0.005453359089354531,2011-06-22,0.0,0.0,7.425916106747128e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7571,runoff,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7572,storm_outflow,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7573,baseflow,0.037499877219279,2011-06-22,0.0,0.0,4.243452603031474e-06,0.0,0.0,0.0,0.0,0.0,10.277216827136492,0.0,0.0,0.0 -7574,catchment_outflow,0.037499877219279,2011-06-22,0.0,0.0,4.243452603031474e-06,0.0,0.0,0.0,0.0,0.0,10.277216827136492,0.0,0.0,0.0 -7575,reservoir_outflow,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7576,gw1_gw2,0.0,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7577,gw2_gw1,0.0009012450191857369,2011-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7578,urban_drainage,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7579,percolation,0.0053442919075674415,2011-06-23,0.0,0.0,7.277397784612186e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7580,runoff,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7581,storm_outflow,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7582,baseflow,0.037419488255999715,2011-06-23,0.0,0.0,4.234663320970047e-06,0.0,0.0,0.0,0.0,0.0,10.27620686260932,0.0,0.0,0.0 -7583,catchment_outflow,0.037419488255999715,2011-06-23,0.0,0.0,4.234663320970047e-06,0.0,0.0,0.0,0.0,0.0,10.27620686260932,0.0,0.0,0.0 -7584,reservoir_outflow,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7585,gw1_gw2,0.0,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7586,gw2_gw1,0.0008952367190579125,2011-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7587,urban_drainage,0.04,2011-06-24,0.0,0.0,3.3333333333333337e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -7588,percolation,0.005237406069416092,2011-06-24,0.0,0.0,7.131849828919943e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7589,runoff,0.0,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7590,storm_outflow,0.04,2011-06-24,0.0,0.0,3.3333333333333337e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -7591,baseflow,0.03733903305053326,2011-06-24,0.0,0.0,4.225859625124853e-06,0.0,0.0,0.0,0.0,0.0,10.275215318864404,0.0,0.0,0.0 -7592,catchment_outflow,0.07733903305053326,2011-06-24,0.0,0.0,7.559192958458187e-06,0.0,0.0,0.0,0.0,0.0,13.801321892594622,0.0,0.0,0.0 -7593,reservoir_outflow,0.023999999999999997,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7594,gw1_gw2,0.0,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7595,gw2_gw1,0.0008892684742644264,2011-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7596,urban_drainage,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7597,percolation,0.00513265794802777,2011-06-25,0.0,0.0,6.989212832341543e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7598,runoff,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7599,storm_outflow,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7600,baseflow,0.037258517112776994,2011-06-25,0.0,0.0,4.217042279270126e-06,0.0,0.0,0.0,0.0,0.0,10.274241847598166,0.0,0.0,0.0 -7601,catchment_outflow,0.037258517112776994,2011-06-25,0.0,0.0,4.217042279270126e-06,0.0,0.0,0.0,0.0,0.0,10.274241847598166,0.0,0.0,0.0 -7602,reservoir_outflow,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7603,gw1_gw2,0.0,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7604,gw2_gw1,0.0008833400177691076,2011-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7605,urban_drainage,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7606,percolation,0.0050300047890672155,2011-06-26,0.0,0.0,6.849428575694713e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7607,runoff,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7608,storm_outflow,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7609,baseflow,0.03717794583196772,2011-06-26,0.0,0.0,4.2082120307158746e-06,0.0,0.0,0.0,0.0,0.0,10.273286107529495,0.0,0.0,0.0 -7610,catchment_outflow,0.03717794583196772,2011-06-26,0.0,0.0,4.2082120307158746e-06,0.0,0.0,0.0,0.0,0.0,10.273286107529495,0.0,0.0,0.0 -7611,reservoir_outflow,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7612,gw1_gw2,0.0,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7613,gw2_gw1,0.000877451084317471,2011-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7614,urban_drainage,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7615,percolation,0.004929404693285871,2011-06-27,0.0,0.0,6.712440004180818e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7616,runoff,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7617,storm_outflow,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7618,baseflow,0.037097324479121015,2011-06-27,0.0,0.0,4.1993696106401295e-06,0.0,0.0,0.0,0.0,0.0,10.272347764242824,0.0,0.0,0.0 -7619,catchment_outflow,0.037097324479121015,2011-06-27,0.0,0.0,4.1993696106401295e-06,0.0,0.0,0.0,0.0,0.0,10.272347764242824,0.0,0.0,0.0 -7620,reservoir_outflow,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7621,gw1_gw2,0.0,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7622,gw2_gw1,0.0008716014104219738,2011-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7623,urban_drainage,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7624,percolation,0.004830816599420153,2011-06-28,0.0,0.0,6.578191204097202e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -7625,runoff,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7626,storm_outflow,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7627,baseflow,0.037016658209421766,2011-06-28,0.0,0.0,4.190515734414554e-06,0.0,0.0,0.0,0.0,0.0,10.27142649003522,0.0,0.0,0.0 -7628,catchment_outflow,0.037016658209421766,2011-06-28,0.0,0.0,4.190515734414554e-06,0.0,0.0,0.0,0.0,0.0,10.27142649003522,0.0,0.0,0.0 -7629,reservoir_outflow,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7630,gw1_gw2,0.0,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7631,gw2_gw1,0.000865790734352423,2011-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7632,urban_drainage,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7633,percolation,0.00473420026743175,2011-06-29,0.0,0.0,6.446627380015256e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7634,runoff,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7635,storm_outflow,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7636,baseflow,0.036935952064566784,2011-06-29,0.0,0.0,4.1816511019235205e-06,0.0,0.0,0.0,0.0,0.0,10.270521963767399,0.0,0.0,0.0 -7637,catchment_outflow,0.036935952064566784,2011-06-29,0.0,0.0,4.1816511019235205e-06,0.0,0.0,0.0,0.0,0.0,10.270521963767399,0.0,0.0,0.0 -7638,reservoir_outflow,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7639,gw1_gw2,0.0,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7640,gw2_gw1,0.0008600187961235406,2011-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7641,urban_drainage,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7642,percolation,0.004639516262083116,2011-06-30,0.0,0.0,6.317694832414952e-07,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -7643,runoff,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7644,storm_outflow,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7645,baseflow,0.03685521097506057,2011-06-30,0.0,0.0,4.172776397876816e-06,0.0,0.0,0.0,0.0,0.0,10.26963387071854,0.0,0.0,0.0 -7646,catchment_outflow,0.03685521097506057,2011-06-30,0.0,0.0,4.172776397876816e-06,0.0,0.0,0.0,0.0,0.0,10.26963387071854,0.0,0.0,0.0 -7647,reservoir_outflow,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7648,gw1_gw2,0.0,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7649,gw2_gw1,0.0008542853374828852,2011-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7650,urban_drainage,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7651,percolation,0.004546725936841454,2011-07-01,0.0,0.0,6.191340935766653e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7652,runoff,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7653,storm_outflow,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7654,baseflow,0.03677443976246503,2011-07-01,0.0,0.0,4.163892292116066e-06,0.0,0.0,0.0,0.0,0.0,10.268761902444774,0.0,0.0,0.0 -7655,catchment_outflow,0.03677443976246503,2011-07-01,0.0,0.0,4.163892292116066e-06,0.0,0.0,0.0,0.0,0.0,10.268761902444774,0.0,0.0,0.0 -7656,reservoir_outflow,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7657,gw1_gw2,0.0,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7658,gw2_gw1,0.00084859010189966,2011-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7659,urban_drainage,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7660,percolation,0.0044557914181046245,2011-07-02,0.0,0.0,6.067514117051319e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7661,runoff,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7662,storm_outflow,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7663,baseflow,0.03669364314160412,2011-07-02,0.0,0.0,4.154999439915039e-06,0.0,0.0,0.0,0.0,0.0,10.267905756641262,0.0,0.0,0.0 -7664,catchment_outflow,0.03669364314160412,2011-07-02,0.0,0.0,4.154999439915039e-06,0.0,0.0,0.0,0.0,0.0,10.267905756641262,0.0,0.0,0.0 -7665,reservoir_outflow,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7666,gw1_gw2,0.0,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7667,gw2_gw1,0.0008429328345535225,2011-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7668,urban_drainage,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7669,percolation,0.004366675589742532,2011-07-03,0.0,0.0,5.946163834710293e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7670,runoff,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7671,storm_outflow,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7672,baseflow,0.03661282572272447,2011-07-03,0.0,0.0,4.146098482273929e-06,0.0,0.0,0.0,0.0,0.0,10.26706513700772,0.0,0.0,0.0 -7673,catchment_outflow,0.03661282572272447,2011-07-03,0.0,0.0,4.146098482273929e-06,0.0,0.0,0.0,0.0,0.0,10.26706513700772,0.0,0.0,0.0 -7674,reservoir_outflow,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7675,gw1_gw2,0.0,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7676,gw2_gw1,0.0008373132823233931,2011-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7677,urban_drainage,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7678,percolation,0.0042793420779476815,2011-07-04,0.0,0.0,5.827240558016088e-07,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -7679,runoff,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7680,storm_outflow,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7681,baseflow,0.036531992013612534,2011-07-04,0.0,0.0,4.137190046207748e-06,0.0,0.0,0.0,0.0,0.0,10.26623975311733,0.0,0.0,0.0 -7682,catchment_outflow,0.036531992013612534,2011-07-04,0.0,0.0,4.137190046207748e-06,0.0,0.0,0.0,0.0,0.0,10.26623975311733,0.0,0.0,0.0 -7683,reservoir_outflow,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7684,gw1_gw2,0.0,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7685,gw2_gw1,0.0008317311937746652,2011-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7686,urban_drainage,0.005999999999999998,2011-07-05,0.0,0.0,1.1666666666666668e-05,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0 -7687,percolation,0.004193755236388728,2011-07-05,0.0,0.0,5.710695746855766e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7688,runoff,0.0,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7689,storm_outflow,0.005999999999999998,2011-07-05,0.0,0.0,1.1666666666666668e-05,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0 -7690,baseflow,0.036451146421669474,2011-07-05,0.0,0.0,4.128274745028943e-06,0.0,0.0,0.0,0.0,0.0,10.265429320288932,0.0,0.0,0.0 -7691,catchment_outflow,0.04245114642166947,2011-07-05,0.0,0.0,1.5794941411695613e-05,0.0,0.0,0.0,0.0,0.0,11.35509186129051,0.0,0.0,0.0 -7692,reservoir_outflow,0.002999999999999999,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7693,gw1_gw2,0.0,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7694,gw2_gw1,0.0008261863191494356,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7695,urban_drainage,0.021000000000000005,2011-07-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0 -7696,percolation,0.004109880131660953,2011-07-06,0.0,0.0,5.59648183191865e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7697,runoff,0.0,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7698,storm_outflow,0.021000000000000005,2011-07-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0 -7699,baseflow,0.03637029325594445,2011-07-06,0.0,0.0,4.11935317862435e-06,0.0,0.0,0.0,0.0,0.0,10.264633559462345,0.0,0.0,0.0 -7700,catchment_outflow,0.057370293255944456,2011-07-06,0.0,0.0,5.1193531786243495e-06,0.0,0.0,0.0,0.0,0.0,13.041204607141026,0.0,0.0,0.0 -7701,reservoir_outflow,0.010500000000000002,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7702,gw1_gw2,0.0,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7703,gw2_gw1,0.000820678410354958,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7704,urban_drainage,0.013999999999999999,2011-07-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0 -7705,percolation,0.004027682529027734,2011-07-07,0.0,0.0,5.484552195280277e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7706,runoff,0.0,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7707,storm_outflow,0.013999999999999999,2011-07-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0 -7708,baseflow,0.03628943672912716,2011-07-07,0.0,0.0,4.110425933726609e-06,0.0,0.0,0.0,0.0,0.0,10.263852197076819,0.0,0.0,0.0 -7709,catchment_outflow,0.05028943672912716,2011-07-07,0.0,0.0,5.110425933726609e-06,0.0,0.0,0.0,0.0,0.0,12.340949815082642,0.0,0.0,0.0 -7710,reservoir_outflow,0.006999999999999999,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7711,gw1_gw2,0.0,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7712,gw2_gw1,0.0008152072209522744,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7713,urban_drainage,0.04,2011-07-08,0.0,0.0,4.166666666666667e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -7714,percolation,0.003947128878447179,2011-07-08,0.0,0.0,5.374861151374672e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7715,runoff,0.0,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7716,storm_outflow,0.04,2011-07-08,0.0,0.0,4.166666666666667e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -7717,baseflow,0.03620858095950046,2011-07-08,0.0,0.0,4.101493584180137e-06,0.0,0.0,0.0,0.0,0.0,10.263084964952448,0.0,0.0,0.0 -7718,catchment_outflow,0.07620858095950046,2011-07-08,0.0,0.0,4.518160250846803e-06,0.0,0.0,0.0,0.0,0.0,14.114050272361393,0.0,0.0,0.0 -7719,reservoir_outflow,0.047999999999999994,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7720,gw1_gw2,0.0,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7721,gw2_gw1,0.0008097725061459116,2011-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7722,urban_drainage,0.04,2011-07-09,0.0,0.0,1.4393939393939399e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -7723,percolation,0.0038681863008782355,2011-07-09,0.0,0.0,5.267363928347178e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7724,runoff,0.0032398518235033777,2011-07-09,0.0,0.0,1.1458573279583466e-10,0.0,0.0,0.0,0.0,0.0,17.472220466914788,0.0,0.0,0.0 -7725,storm_outflow,0.04,2011-07-09,0.0,0.0,1.4393939393939399e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -7726,baseflow,0.036127729972853906,2011-07-09,0.0,0.0,4.0925566912017735e-06,0.0,0.0,0.0,0.0,0.0,10.262331600174514,0.0,0.0,0.0 -7727,catchment_outflow,0.07936758179635728,2011-07-09,0.0,0.0,5.532065216328509e-06,0.0,0.0,0.0,0.0,0.0,14.25471363341076,0.0,0.0,0.0 -7728,reservoir_outflow,0.0,2011-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7729,gw1_gw2,0.0,2011-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7730,gw2_gw1,0.0008043740227718033,2011-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7731,urban_drainage,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7732,percolation,0.0037908225748606713,2011-07-10,0.0,0.0,5.162016649780234e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7733,runoff,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7734,storm_outflow,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7735,baseflow,0.03604688770435892,2011-07-10,0.0,0.0,4.083615803636213e-06,0.0,0.0,0.0,0.0,0.0,10.261591844980638,0.0,0.0,0.0 -7736,catchment_outflow,0.03604688770435892,2011-07-10,0.0,0.0,4.083615803636213e-06,0.0,0.0,0.0,0.0,0.0,10.261591844980638,0.0,0.0,0.0 -7737,reservoir_outflow,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7738,gw1_gw2,0.0,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7739,gw2_gw1,0.0007990115292862755,2011-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7740,urban_drainage,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7741,percolation,0.0037150061233634578,2011-07-11,0.0,0.0,5.058776316784629e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7742,runoff,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7743,storm_outflow,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7744,baseflow,0.03596605800040643,2011-07-11,0.0,0.0,4.074671458206319e-06,0.0,0.0,0.0,0.0,0.0,10.260865446650682,0.0,0.0,0.0 -7745,catchment_outflow,0.03596605800040643,2011-07-11,0.0,0.0,4.074671458206319e-06,0.0,0.0,0.0,0.0,0.0,10.260865446650682,0.0,0.0,0.0 -7746,reservoir_outflow,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7747,gw1_gw2,0.0,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7748,gw2_gw1,0.0007936847857576979,2011-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7749,urban_drainage,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7750,percolation,0.003640706000896189,2011-07-12,0.0,0.0,4.957600790448937e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7751,runoff,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7752,storm_outflow,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7753,baseflow,0.03588524462040765,2011-07-12,0.0,0.0,4.065724179758416e-06,0.0,0.0,0.0,0.0,0.0,10.260152157399316,0.0,0.0,0.0 -7754,catchment_outflow,0.03588524462040765,2011-07-12,0.0,0.0,4.065724179758416e-06,0.0,0.0,0.0,0.0,0.0,10.260152157399316,0.0,0.0,0.0 -7755,reservoir_outflow,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7756,gw1_gw2,0.0,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7757,gw2_gw1,0.0007883935538526288,2011-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7758,urban_drainage,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7759,percolation,0.003567891880878265,2011-07-13,0.0,0.0,4.858448774639958e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7760,runoff,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7761,storm_outflow,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7762,baseflow,0.035804451238558826,2011-07-13,0.0,0.0,4.056774481502679e-06,0.0,0.0,0.0,0.0,0.0,10.259451734271183,0.0,0.0,0.0 -7763,catchment_outflow,0.035804451238558826,2011-07-13,0.0,0.0,4.056774481502679e-06,0.0,0.0,0.0,0.0,0.0,10.259451734271183,0.0,0.0,0.0 -7764,reservoir_outflow,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7765,gw1_gw2,0.0,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7766,gw2_gw1,0.0007831375968269328,2011-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7767,urban_drainage,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7768,percolation,0.003496534043260699,2011-07-14,0.0,0.0,4.761279799147158e-07,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -7769,runoff,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7770,storm_outflow,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7771,baseflow,0.03572368144557059,2011-07-14,0.0,0.0,4.04782286524871e-06,0.0,0.0,0.0,0.0,0.0,10.25876393903857,0.0,0.0,0.0 -7772,catchment_outflow,0.03572368144557059,2011-07-14,0.0,0.0,4.04782286524871e-06,0.0,0.0,0.0,0.0,0.0,10.25876393903857,0.0,0.0,0.0 -7773,reservoir_outflow,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7774,gw1_gw2,0.0,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7775,gw2_gw1,0.0007779166795144121,2011-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7776,urban_drainage,0.033,2011-07-15,0.0,0.0,6.143939393939392e-06,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0 -7777,percolation,0.006373622196208833,2011-07-15,0.0,0.0,1.1310709924406088e-06,0.0,0.0,0.0,0.0,0.0,11.36059014416983,0.0,0.0,0.0 -7778,runoff,0.020164471144550108,2011-07-15,0.0,0.0,2.2149769090001944e-06,0.0,0.0,0.0,0.0,0.0,16.327237852092,0.0,0.0,0.0 -7779,storm_outflow,0.033,2011-07-15,0.0,0.0,6.143939393939392e-06,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0 -7780,baseflow,0.035650306297447185,2011-07-15,0.0,0.0,4.04053098556669e-06,0.0,0.0,0.0,0.0,0.0,10.259256404930643,0.0,0.0,0.0 -7781,catchment_outflow,0.0888147774419973,2011-07-15,0.0,0.0,1.2399447288506277e-05,0.0,0.0,0.0,0.0,0.0,14.039338786530871,0.0,0.0,0.0 -7782,reservoir_outflow,0.0165,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7783,gw1_gw2,0.0,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7784,gw2_gw1,0.0007727305683177477,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7785,urban_drainage,0.04,2011-07-16,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 -7786,percolation,0.01396743038140194,2011-07-16,0.0,0.0,2.7743344370425106e-06,0.0,0.0,0.0,0.0,0.0,13.825710805336893,0.0,0.0,0.0 -7787,runoff,0.06068905817784371,2011-07-16,0.0,0.0,7.324931075369203e-06,0.0,0.0,0.0,0.0,0.0,16.179617236866054,0.0,0.0,0.0 -7788,storm_outflow,0.04,2011-07-16,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 -7789,baseflow,0.03559609910765707,2011-07-16,0.0,0.0,4.037365494195378e-06,0.0,0.0,0.0,0.0,0.0,10.262754976740116,0.0,0.0,0.0 -7790,catchment_outflow,0.13628515728550078,2011-07-16,0.0,0.0,1.1959311494937717e-05,0.0,0.0,0.0,0.0,0.0,14.757584869200004,0.0,0.0,0.0 -7791,reservoir_outflow,0.033499999999999995,2011-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7792,gw1_gw2,0.0,2011-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7793,gw2_gw1,0.0007675790311957088,2011-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7794,urban_drainage,0.03799999999999999,2011-07-17,0.0,0.0,1.4029850746268656e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7795,percolation,0.017111134141689095,2011-07-17,0.0,0.0,3.450331927682818e-06,0.0,0.0,0.0,0.0,0.0,14.198142703816604,0.0,0.0,0.0 -7796,runoff,0.05029836097785671,2011-07-17,0.0,0.0,8.298225458232554e-06,0.0,0.0,0.0,0.0,0.0,15.957352233426928,0.0,0.0,0.0 -7797,storm_outflow,0.03799999999999999,2011-07-17,0.0,0.0,1.4029850746268656e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7798,baseflow,0.03554988669524215,2011-07-17,0.0,0.0,4.035897910279097e-06,0.0,0.0,0.0,0.0,0.0,10.267490501488396,0.0,0.0,0.0 -7799,catchment_outflow,0.12384824767309885,2011-07-17,0.0,0.0,1.3737108443138517e-05,0.0,0.0,0.0,0.0,0.0,14.510191469188173,0.0,0.0,0.0 -7800,reservoir_outflow,0.0055,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7801,gw1_gw2,0.0,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7802,gw2_gw1,0.0007624618376542713,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7803,urban_drainage,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7804,percolation,0.01795799465084058,2011-07-18,0.0,0.0,3.63608908655052e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7805,runoff,0.0387659530982121,2011-07-18,0.0,0.0,7.4877930246572415e-06,0.0,0.0,0.0,0.0,0.0,15.831443132587296,0.0,0.0,0.0 -7806,storm_outflow,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7807,baseflow,0.03550590696513115,2011-07-18,0.0,0.0,4.034898388219776e-06,0.0,0.0,0.0,0.0,0.0,10.272575209925977,0.0,0.0,0.0 -7808,catchment_outflow,0.07427186006334324,2011-07-18,0.0,0.0,1.1522691412877017e-05,0.0,0.0,0.0,0.0,0.0,13.174008040411955,0.0,0.0,0.0 -7809,reservoir_outflow,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7810,gw1_gw2,0.0,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7811,gw2_gw1,0.0007573787587364933,2011-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7812,urban_drainage,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7813,percolation,0.01759883475782377,2011-07-19,0.0,0.0,3.5633673048195095e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7814,runoff,0.028389434727681486,2011-07-19,0.0,0.0,5.990234419725793e-06,0.0,0.0,0.0,0.0,0.0,15.780380093172521,0.0,0.0,0.0 -7815,storm_outflow,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7816,baseflow,0.035461139284612885,2011-07-19,0.0,0.0,4.033719560511276e-06,0.0,0.0,0.0,0.0,0.0,10.277558206305699,0.0,0.0,0.0 -7817,catchment_outflow,0.06385057401229437,2011-07-19,0.0,0.0,1.002395398023707e-05,0.0,0.0,0.0,0.0,0.0,12.72423946472606,0.0,0.0,0.0 -7818,reservoir_outflow,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7819,gw1_gw2,0.0,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7820,gw2_gw1,0.0007523295670113228,2011-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7821,urban_drainage,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7822,percolation,0.017246858062667295,2011-07-20,0.0,0.0,3.4920999587231193e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7823,runoff,0.02411302559827607,2011-07-20,0.0,0.0,4.792187535780633e-06,0.0,0.0,0.0,0.0,0.0,15.811482082046412,0.0,0.0,0.0 -7824,storm_outflow,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7825,baseflow,0.03541560358155802,2011-07-20,0.0,0.0,4.032365511506804e-06,0.0,0.0,0.0,0.0,0.0,10.282441754912346,0.0,0.0,0.0 -7826,catchment_outflow,0.05952862917983409,2011-07-20,0.0,0.0,8.824553047287437e-06,0.0,0.0,0.0,0.0,0.0,12.522068179692317,0.0,0.0,0.0 -7827,reservoir_outflow,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7828,gw1_gw2,0.0,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7829,gw2_gw1,0.0007473140365647169,2011-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7830,urban_drainage,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7831,percolation,0.016901920901413948,2011-07-21,0.0,0.0,3.422257959548657e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7832,runoff,0.02020923742606175,2011-07-21,0.0,0.0,3.833750028624506e-06,0.0,0.0,0.0,0.0,0.0,15.841149277168467,0.0,0.0,0.0 -7833,storm_outflow,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7834,baseflow,0.03536931937485766,2011-07-21,0.0,0.0,4.030840242626909e-06,0.0,0.0,0.0,0.0,0.0,10.287228061086887,0.0,0.0,0.0 -7835,catchment_outflow,0.055578556800919415,2011-07-21,0.0,0.0,7.864590271251415e-06,0.0,0.0,0.0,0.0,0.0,12.306721170695258,0.0,0.0,0.0 -7836,reservoir_outflow,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7837,gw1_gw2,0.0,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7838,gw2_gw1,0.0007423319429872067,2011-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7839,urban_drainage,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7840,percolation,0.016563882483385667,2011-07-22,0.0,0.0,3.353812800357683e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7841,runoff,0.014472216066592927,2011-07-22,0.0,0.0,3.067000022899605e-06,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7842,storm_outflow,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7843,baseflow,0.03532230578262898,2011-07-22,0.0,0.0,4.029147674021236e-06,0.0,0.0,0.0,0.0,0.0,10.291919273075317,0.0,0.0,0.0 -7844,catchment_outflow,0.04979452184922191,2011-07-22,0.0,0.0,7.096147696920841e-06,0.0,0.0,0.0,0.0,0.0,11.887686486107192,0.0,0.0,0.0 -7845,reservoir_outflow,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7846,gw1_gw2,0.0,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7847,gw2_gw1,0.0007373830633673252,2011-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7848,urban_drainage,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7849,percolation,0.016232604833717953,2011-07-23,0.0,0.0,3.28673654435053e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7850,runoff,0.011335673895959918,2011-07-23,0.0,0.0,2.453600018319684e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7851,storm_outflow,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7852,baseflow,0.035274581530256706,2011-07-23,0.0,0.0,4.02729164619706e-06,0.0,0.0,0.0,0.0,0.0,10.296517483808003,0.0,0.0,0.0 -7853,catchment_outflow,0.04661025542621662,2011-07-23,0.0,0.0,6.480891664516744e-06,0.0,0.0,0.0,0.0,0.0,11.627408394610706,0.0,0.0,0.0 -7854,reservoir_outflow,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7855,gw1_gw2,0.0,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7856,gw2_gw1,0.0007324671762782842,2011-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7857,urban_drainage,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7858,percolation,0.015907952737043596,2011-07-24,0.0,0.0,3.2210018134635196e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7859,runoff,0.009068539116767934,2011-07-24,0.0,0.0,1.962880014655747e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7860,storm_outflow,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7861,baseflow,0.03522616495827367,2011-07-24,0.0,0.0,4.025275921615226e-06,0.0,0.0,0.0,0.0,0.0,10.301024732612587,0.0,0.0,0.0 -7862,catchment_outflow,0.04429470407504161,2011-07-24,0.0,0.0,5.988155936270973e-06,0.0,0.0,0.0,0.0,0.0,11.420473639900841,0.0,0.0,0.0 -7863,reservoir_outflow,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7864,gw1_gw2,0.0,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7865,gw2_gw1,0.0007275840617694485,2011-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7866,urban_drainage,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7867,percolation,0.015589793682302724,2011-07-25,0.0,0.0,3.156581777194249e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7868,runoff,0.007254831293414346,2011-07-25,0.0,0.0,1.5703040117245976e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7869,storm_outflow,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7870,baseflow,0.035177074030083744,2011-07-25,0.0,0.0,4.023104186254174e-06,0.0,0.0,0.0,0.0,0.0,10.305443006863314,0.0,0.0,0.0 -7871,catchment_outflow,0.04243190532349809,2011-07-25,0.0,0.0,5.593408197978771e-06,0.0,0.0,0.0,0.0,0.0,11.239562564396415,0.0,0.0,0.0 -7872,reservoir_outflow,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7873,gw1_gw2,0.0,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7874,gw2_gw1,0.0007227335013574532,2011-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7875,urban_drainage,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7876,percolation,0.01527799780865667,2011-07-26,0.0,0.0,3.093450141650364e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7877,runoff,0.005803865034731478,2011-07-26,0.0,0.0,1.2562432093796786e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7878,storm_outflow,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7879,baseflow,0.035127326339530175,2011-07-26,0.0,0.0,4.0207800511426635e-06,0.0,0.0,0.0,0.0,0.0,10.309774243569562,0.0,0.0,0.0 -7880,catchment_outflow,0.040931191374261655,2011-07-26,0.0,0.0,5.277023260522342e-06,0.0,0.0,0.0,0.0,0.0,11.083854819379653,0.0,0.0,0.0 -7881,reservoir_outflow,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7882,gw1_gw2,0.0,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7883,gw2_gw1,0.0007179152780153686,2011-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7884,urban_drainage,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7885,percolation,0.014972437852483535,2011-07-27,0.0,0.0,3.031581138817357e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7886,runoff,0.004643092027785183,2011-07-27,0.0,0.0,1.0049945675037428e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7887,storm_outflow,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7888,baseflow,0.035076939118312556,2011-07-27,0.0,0.0,4.01830705386185e-06,0.0,0.0,0.0,0.0,0.0,10.314020330906203,0.0,0.0,0.0 -7889,catchment_outflow,0.03972003114609774,2011-07-27,0.0,0.0,5.0233016213655935e-06,0.0,0.0,0.0,0.0,0.0,10.951671320721486,0.0,0.0,0.0 -7890,reservoir_outflow,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7891,gw1_gw2,0.0,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7892,gw2_gw1,0.0007131291761618641,2011-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7893,urban_drainage,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7894,percolation,0.014672989095433865,2011-07-28,0.0,0.0,2.97094951604101e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7895,runoff,0.003714473622228146,2011-07-28,0.0,0.0,8.039956540029941e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7896,storm_outflow,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7897,baseflow,0.03502592924325536,2011-07-28,0.0,0.0,4.0156886600172976e-06,0.0,0.0,0.0,0.0,0.0,10.318183109688254,0.0,0.0,0.0 -7898,catchment_outflow,0.038740402865483504,2011-07-28,0.0,0.0,4.819684314020292e-06,0.0,0.0,0.0,0.0,0.0,10.840804190294012,0.0,0.0,0.0 -7899,reservoir_outflow,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7900,gw1_gw2,0.0,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7901,gw2_gw1,0.000708374981654103,2011-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7902,urban_drainage,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7903,percolation,0.014379529313525184,2011-07-29,0.0,0.0,2.911530525720189e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7904,runoff,0.0029715788977825166,2011-07-29,0.0,0.0,6.431965232023953e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7905,storm_outflow,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7906,baseflow,0.03497431324343103,2011-07-29,0.0,0.0,4.012928264681556e-06,0.0,0.0,0.0,0.0,0.0,10.322264374792208,0.0,0.0,0.0 -7907,catchment_outflow,0.03794589214121355,2011-07-29,0.0,0.0,4.656124787883951e-06,0.0,0.0,0.0,0.0,0.0,10.748795739648196,0.0,0.0,0.0 -7908,reservoir_outflow,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7909,gw1_gw2,0.0,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7910,gw2_gw1,0.0007036524817763735,2011-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7911,urban_drainage,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7912,percolation,0.014091938727254684,2011-07-30,0.0,0.0,2.8532999152057855e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7913,runoff,0.0023772631182260133,2011-07-30,0.0,0.0,5.145572185619163e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7914,storm_outflow,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7915,baseflow,0.03492210730714059,2011-07-30,0.0,0.0,4.010029193807866e-06,0.0,0.0,0.0,0.0,0.0,10.326265876526287,0.0,0.0,0.0 -7916,catchment_outflow,0.0372993704253666,2011-07-30,0.0,0.0,4.5245864123697825e-06,0.0,0.0,0.0,0.0,0.0,10.673150495823956,0.0,0.0,0.0 -7917,reservoir_outflow,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7918,gw1_gw2,0.0,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7919,gw2_gw1,0.0006989614652313848,2011-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7920,urban_drainage,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7921,percolation,0.01381009995270959,2011-07-31,0.0,0.0,2.7962339169016698e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7922,runoff,0.0019018104945808106,2011-07-31,0.0,0.0,4.1164577484953305e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7923,storm_outflow,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7924,baseflow,0.03486932728875451,2011-07-31,0.0,0.0,4.0069947056156e-06,0.0,0.0,0.0,0.0,0.0,10.330189321951778,0.0,0.0,0.0 -7925,catchment_outflow,0.03677113778333532,2011-07-31,0.0,0.0,4.4186404804651336e-06,0.0,0.0,0.0,0.0,0.0,10.611480609137331,0.0,0.0,0.0 -7926,reservoir_outflow,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7927,gw1_gw2,0.0,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7928,gw2_gw1,0.0006943017221297866,2011-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7929,urban_drainage,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7930,percolation,0.013533897953655399,2011-08-01,0.0,0.0,2.740309238563636e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7931,runoff,0.0015214483956646485,2011-08-01,0.0,0.0,3.2931661987962646e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7932,storm_outflow,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7933,baseflow,0.03481598871541677,2011-08-01,0.0,0.0,4.0038279919479714e-06,0.0,0.0,0.0,0.0,0.0,10.334036376157474,0.0,0.0,0.0 -7934,catchment_outflow,0.036337437111081415,2011-08-01,0.0,0.0,4.333144611827598e-06,0.0,0.0,0.0,0.0,0.0,10.561594181705363,0.0,0.0,0.0 -7935,reservoir_outflow,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7936,gw1_gw2,0.0,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7937,gw2_gw1,0.0006896730439821752,2011-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7938,urban_drainage,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7939,percolation,0.01326321999458229,2011-08-02,0.0,0.0,2.6855030537923632e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7940,runoff,0.0012171587165317188,2011-08-02,0.0,0.0,2.634532959037012e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7941,storm_outflow,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7942,baseflow,0.03476210679361468,2011-08-02,0.0,0.0,4.000532179602582e-06,0.0,0.0,0.0,0.0,0.0,10.337808663489188,0.0,0.0,0.0 -7943,catchment_outflow,0.0359792655101464,2011-08-02,0.0,0.0,4.263985475506283e-06,0.0,0.0,0.0,0.0,0.0,10.521539553835307,0.0,0.0,0.0 -7944,reservoir_outflow,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7945,gw1_gw2,0.0,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7946,gw2_gw1,0.0006850752236887914,2011-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7947,urban_drainage,0.023,2011-08-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0 -7948,percolation,0.012997955594690644,2011-08-03,0.0,0.0,2.631792992716516e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7949,runoff,0.0009737269732253748,2011-08-03,0.0,0.0,2.107626367229609e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7950,storm_outflow,0.023,2011-08-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0 -7951,baseflow,0.03470769641561737,2011-08-03,0.0,0.0,3.997110331635367e-06,0.0,0.0,0.0,0.0,0.0,10.341507768736166,0.0,0.0,0.0 -7952,catchment_outflow,0.058681423388842746,2011-08-03,0.0,0.0,2.1207872968358332e-05,0.0,0.0,0.0,0.0,0.0,13.787440955113208,0.0,0.0,0.0 -7953,reservoir_outflow,0.0115,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7954,gw1_gw2,0.0,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7955,gw2_gw1,0.0006805080555306376,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7956,urban_drainage,0.031000000000000003,2011-08-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 -7957,percolation,0.012737996482796832,2011-08-04,0.0,0.0,2.579157132862186e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7958,runoff,0.0007789815785803001,2011-08-04,0.0,0.0,1.6861010937836874e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7959,storm_outflow,0.031000000000000003,2011-08-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 -7960,baseflow,0.034652772165785314,2011-08-04,0.0,0.0,3.993565448638434e-06,0.0,0.0,0.0,0.0,0.0,10.345135238276198,0.0,0.0,0.0 -7961,catchment_outflow,0.06643175374436562,2011-08-04,0.0,0.0,5.1621755580168025e-06,0.0,0.0,0.0,0.0,0.0,14.182490662893754,0.0,0.0,0.0 -7962,reservoir_outflow,0.015500000000000002,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7963,gw1_gw2,0.0,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7964,gw2_gw1,0.0006759713351604191,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7965,urban_drainage,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7966,percolation,0.012483236553140894,2011-08-05,0.0,0.0,2.5275739902049418e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7967,runoff,0.0006231852628642401,2011-08-05,0.0,0.0,1.34888087502695e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7968,storm_outflow,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7969,baseflow,0.03459734832675371,2011-08-05,0.0,0.0,3.98990046999235e-06,0.0,0.0,0.0,0.0,0.0,10.348692581181082,0.0,0.0,0.0 -7970,catchment_outflow,0.03522053358961795,2011-08-05,0.0,0.0,4.124788557495046e-06,0.0,0.0,0.0,0.0,0.0,10.4445967095845,0.0,0.0,0.0 -7971,reservoir_outflow,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7972,gw1_gw2,0.0,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7973,gw2_gw1,0.0006714648595925965,2011-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7974,urban_drainage,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7975,percolation,0.012233571822078076,2011-08-06,0.0,0.0,2.477022510400843e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7976,runoff,0.0006285804270724826,2011-08-06,0.0,0.0,1.07910470002156e-07,0.0,0.0,0.0,0.0,0.0,16.124791641780657,0.0,0.0,0.0 -7977,storm_outflow,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7978,baseflow,0.034541438885492014,2011-08-06,0.0,0.0,3.986118275093371e-06,0.0,0.0,0.0,0.0,0.0,10.352181270284063,0.0,0.0,0.0 -7979,catchment_outflow,0.0351700193125645,2011-08-06,0.0,0.0,4.094028745095527e-06,0.0,0.0,0.0,0.0,0.0,10.455352947853829,0.0,0.0,0.0 -7980,reservoir_outflow,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7981,gw1_gw2,0.0,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7982,gw2_gw1,0.0006669884271953919,2011-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7983,urban_drainage,0.013999999999999999,2011-08-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7984,percolation,0.011988900385636516,2011-08-07,0.0,0.0,2.4274820601928264e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7985,runoff,0.00039883856823311366,2011-08-07,0.0,0.0,8.632837600172482e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7986,storm_outflow,0.013999999999999999,2011-08-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7987,baseflow,0.03448505753924238,2011-08-07,0.0,0.0,3.9822216845561195e-06,0.0,0.0,0.0,0.0,0.0,10.355602743210786,0.0,0.0,0.0 -7988,catchment_outflow,0.04888389610747549,2011-08-07,0.0,0.0,7.068550060557845e-06,0.0,0.0,0.0,0.0,0.0,12.307791534272535,0.0,0.0,0.0 -7989,reservoir_outflow,0.006999999999999999,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7990,gw1_gw2,0.0,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7991,gw2_gw1,0.0006625418376806635,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7992,urban_drainage,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7993,percolation,0.011749122377923787,2011-08-08,0.0,0.0,2.3789324189889697e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970243,0.0,0.0,0.0 -7994,runoff,0.00031907085458649095,2011-08-08,0.0,0.0,6.906270080137984e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7995,storm_outflow,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7996,baseflow,0.034428217701339074,2011-08-08,0.0,0.0,3.9782134613922016e-06,0.0,0.0,0.0,0.0,0.0,10.358958403375189,0.0,0.0,0.0 -7997,catchment_outflow,0.034747288555925564,2011-08-08,0.0,0.0,4.047276162193582e-06,0.0,0.0,0.0,0.0,0.0,10.408635813322698,0.0,0.0,0.0 -7998,reservoir_outflow,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7999,gw1_gw2,0.0,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8000,gw2_gw1,0.0006581248920959127,2011-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8001,urban_drainage,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8002,percolation,0.01151413993036531,2011-08-09,0.0,0.0,2.3313537706091904e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8003,runoff,0.00025525668366919275,2011-08-09,0.0,0.0,5.525016064110387e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -8004,storm_outflow,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8005,baseflow,0.034370932506911644,2011-08-09,0.0,0.0,3.974096312165244e-06,0.0,0.0,0.0,0.0,0.0,10.362249620941773,0.0,0.0,0.0 -8006,catchment_outflow,0.03462618919058084,2011-08-09,0.0,0.0,4.029346472806348e-06,0.0,0.0,0.0,0.0,0.0,10.40210627757957,0.0,0.0,0.0 -8007,reservoir_outflow,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8008,gw1_gw2,0.0,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8009,gw2_gw1,0.0006537373928154011,2011-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8010,urban_drainage,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8011,percolation,0.011283857131758003,2011-08-10,0.0,0.0,2.2847266951970066e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8012,runoff,0.00024383679146745162,2011-08-10,0.0,0.0,4.42001285128831e-08,0.0,0.0,0.0,0.0,0.0,15.834325643030722,0.0,0.0,0.0 -8013,storm_outflow,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8014,baseflow,0.034313214818473756,2011-08-10,0.0,0.0,3.969872888122823e-06,0.0,0.0,0.0,0.0,0.0,10.365477733755558,0.0,0.0,0.0 -8015,catchment_outflow,0.03455705160994121,2011-08-10,0.0,0.0,4.0140730166357065e-06,0.0,0.0,0.0,0.0,0.0,10.40406627835343,0.0,0.0,0.0 -8016,reservoir_outflow,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8017,gw1_gw2,0.0,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8018,gw2_gw1,0.0006493791435296715,2011-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8019,urban_drainage,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8020,percolation,0.011058179989122842,2011-08-11,0.0,0.0,2.2390321612930664e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970243,0.0,0.0,0.0 -8021,runoff,0.00016336427754828336,2011-08-11,0.0,0.0,3.536010281030648e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -8022,storm_outflow,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8023,baseflow,0.03425507723140038,2011-08-11,0.0,0.0,3.9655457863057495e-06,0.0,0.0,0.0,0.0,0.0,10.368644048240997,0.0,0.0,0.0 -8024,catchment_outflow,0.03441844150894866,2011-08-11,0.0,0.0,4.000905889116056e-06,0.0,0.0,0.0,0.0,0.0,10.394275924223846,0.0,0.0,0.0 -8025,reservoir_outflow,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8026,gw1_gw2,0.0,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8027,gw2_gw1,0.000645049949239862,2011-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8028,urban_drainage,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8029,percolation,0.010837016389340386,2011-08-12,0.0,0.0,2.194251518067205e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8030,runoff,0.0001306914220386267,2011-08-12,0.0,0.0,2.8288082248245185e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -8031,storm_outflow,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8032,baseflow,0.03419653207929523,2011-08-12,0.0,0.0,3.961117550635153e-06,0.0,0.0,0.0,0.0,0.0,10.371749840271066,0.0,0.0,0.0 -8033,catchment_outflow,0.03432722350133386,2011-08-12,0.0,0.0,3.989405632883398e-06,0.0,0.0,0.0,0.0,0.0,10.392298006044506,0.0,0.0,0.0 -8034,reservoir_outflow,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8035,gw1_gw2,0.0,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8036,gw2_gw1,0.0006407496162447402,2011-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8037,urban_drainage,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8038,percolation,0.010620276061553578,2011-08-13,0.0,0.0,2.150366487705861e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8039,runoff,0.00010455313763090135,2011-08-13,0.0,0.0,2.263046579859614e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 -8040,storm_outflow,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8041,baseflow,0.034137591439250874,2011-08-13,0.0,0.0,3.95659067297783e-06,0.0,0.0,0.0,0.0,0.0,10.374796356007694,0.0,0.0,0.0 -8042,catchment_outflow,0.034242144576881774,2011-08-13,0.0,0.0,3.979221138776426e-06,0.0,0.0,0.0,0.0,0.0,10.391266430164194,0.0,0.0,0.0 -8043,reservoir_outflow,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8044,gw1_gw2,0.0,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8045,gw2_gw1,0.0006364779521362608,2011-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8046,urban_drainage,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8047,percolation,0.010407870540322503,2011-08-14,0.0,0.0,2.107359157951743e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8048,runoff,8.364251010472109e-05,2011-08-14,0.0,0.0,1.8104372638876917e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 -8049,storm_outflow,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8050,baseflow,0.03407826713700356,2011-08-14,0.0,0.0,3.951967594190265e-06,0.0,0.0,0.0,0.0,0.0,10.377784812714626,0.0,0.0,0.0 -8051,catchment_outflow,0.03416190964710828,2011-08-14,0.0,0.0,3.970071966829142e-06,0.0,0.0,0.0,0.0,0.0,10.390984501227496,0.0,0.0,0.0 -8052,reservoir_outflow,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8053,gw1_gw2,0.0,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8054,gw2_gw1,0.0006322347657889083,2011-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8055,urban_drainage,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8056,percolation,0.010199713129516055,2011-08-15,0.0,0.0,2.0652119747927087e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8057,runoff,6.691400808377687e-05,2011-08-15,0.0,0.0,1.4483498111101534e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -8058,storm_outflow,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8059,baseflow,0.03401857075198484,2011-08-15,0.0,0.0,3.947250705141771e-06,0.0,0.0,0.0,0.0,0.0,10.380716399543795,0.0,0.0,0.0 -8060,catchment_outflow,0.03408548476006862,2011-08-15,0.0,0.0,3.9617342032528726e-06,0.0,0.0,0.0,0.0,0.0,10.391294071869433,0.0,0.0,0.0 -8061,reservoir_outflow,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8062,gw1_gw2,0.0,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8063,gw2_gw1,0.0006280198673502824,2011-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8064,urban_drainage,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8065,percolation,0.009995718866925733,2011-08-16,0.0,0.0,2.0239077352968546e-06,0.0,0.0,0.0,0.0,0.0,14.28881221897024,0.0,0.0,0.0 -8066,runoff,5.35312064670215e-05,2011-08-16,0.0,0.0,1.1586798488881229e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -8067,storm_outflow,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8068,baseflow,0.033958513622272195,2011-08-16,0.0,0.0,3.942442347717159e-06,0.0,0.0,0.0,0.0,0.0,10.383592278296215,0.0,0.0,0.0 -8069,catchment_outflow,0.034012044828739214,2011-08-16,0.0,0.0,3.95402914620604e-06,0.0,0.0,0.0,0.0,0.0,10.392068161568579,0.0,0.0,0.0 -8070,reservoir_outflow,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8071,gw1_gw2,0.0,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8072,gw2_gw1,0.0006238330682345251,2011-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8073,urban_drainage,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8074,percolation,0.009795804489587218,2011-08-17,0.0,0.0,1.983429580590917e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8075,runoff,4.282496517361719e-05,2011-08-17,0.0,0.0,9.26943879110498e-09,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -8076,storm_outflow,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8077,baseflow,0.03389810684944048,2011-08-17,0.0,0.0,3.937544815799343e-06,0.0,0.0,0.0,0.0,0.0,10.386413584158339,0.0,0.0,0.0 -8078,catchment_outflow,0.0339409318146141,2011-08-17,0.0,0.0,3.9468142545904475e-06,0.0,0.0,0.0,0.0,0.0,10.393204937925287,0.0,0.0,0.0 -8079,reservoir_outflow,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8080,gw1_gw2,0.0,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8081,gw2_gw1,0.0006196741811130835,2011-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8082,urban_drainage,0.04,2011-08-18,0.0,0.0,6.111111111111112e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -8083,percolation,0.009599888399795474,2011-08-18,0.0,0.0,1.943760988979099e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8084,runoff,3.4259972138893756e-05,2011-08-18,0.0,0.0,7.415551032883985e-09,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -8085,storm_outflow,0.04,2011-08-18,0.0,0.0,6.111111111111112e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -8086,baseflow,0.03383736130331637,2011-08-18,0.0,0.0,3.932560356232293e-06,0.0,0.0,0.0,0.0,0.0,10.389181426414853,0.0,0.0,0.0 -8087,catchment_outflow,0.07387162127545527,2011-08-18,0.0,0.0,1.0051087018376289e-05,0.0,0.0,0.0,0.0,0.0,13.650281727964027,0.0,0.0,0.0 -8088,reservoir_outflow,0.036,2011-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8089,gw1_gw2,0.0,2011-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8090,gw2_gw1,0.0006155430199056511,2011-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8091,urban_drainage,0.011999999999999993,2011-08-19,0.0,0.0,5.888888888888889e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -8092,percolation,0.009407890631799564,2011-08-19,0.0,0.0,1.904885769199517e-06,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -8093,runoff,2.7407977711115e-05,2011-08-19,0.0,0.0,5.932440826307187e-09,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -8094,storm_outflow,0.011999999999999993,2011-08-19,0.0,0.0,5.888888888888889e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -8095,baseflow,0.03377628762663758,2011-08-19,0.0,0.0,3.927491169764711e-06,0.0,0.0,0.0,0.0,0.0,10.391896889138753,0.0,0.0,0.0 -8096,catchment_outflow,0.04580369560434869,2011-08-19,0.0,0.0,9.822312499479908e-06,0.0,0.0,0.0,0.0,0.0,11.971034195196042,0.0,0.0,0.0 -8097,reservoir_outflow,0.0,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8098,gw1_gw2,0.0,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8099,gw2_gw1,0.0006114393997727063,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8100,urban_drainage,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8101,percolation,0.009219732819163573,2011-08-20,0.0,0.0,1.8667880538155267e-06,0.0,0.0,0.0,0.0,0.0,14.28881221897024,0.0,0.0,0.0 -8102,runoff,0.0011404708309148356,2011-08-20,0.0,0.0,4.745952661045751e-09,0.0,0.0,0.0,0.0,0.0,16.05860674137259,0.0,0.0,0.0 -8103,storm_outflow,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8104,baseflow,0.033714896239618895,2011-08-20,0.0,0.0,3.922339411974838e-06,0.0,0.0,0.0,0.0,0.0,10.39456103185957,0.0,0.0,0.0 -8105,catchment_outflow,0.03485536707053373,2011-08-20,0.0,0.0,3.927085364635884e-06,0.0,0.0,0.0,0.0,0.0,10.579889130788958,0.0,0.0,0.0 -8106,reservoir_outflow,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8107,gw1_gw2,0.0,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8108,gw2_gw1,0.0006073631371075194,2011-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8109,urban_drainage,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8110,percolation,0.009035338162780302,2011-08-21,0.0,0.0,1.8294522927392164e-06,0.0,0.0,0.0,0.0,0.0,14.28881221897024,0.0,0.0,0.0 -8111,runoff,1.7541105735113604e-05,2011-08-21,0.0,0.0,3.796762128836601e-09,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -8112,storm_outflow,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8113,baseflow,0.033653197344426795,2011-08-21,0.0,0.0,3.9171071941767485e-06,0.0,0.0,0.0,0.0,0.0,10.39717489021055,0.0,0.0,0.0 -8114,catchment_outflow,0.033670738450161906,2011-08-21,0.0,0.0,3.920903956305585e-06,0.0,0.0,0.0,0.0,0.0,10.399973344773306,0.0,0.0,0.0 -8115,reservoir_outflow,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8116,gw1_gw2,0.0,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8117,gw2_gw1,0.0006033140495263823,2011-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8118,urban_drainage,0.018,2011-08-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 -8119,percolation,0.010903990830229937,2011-08-22,0.0,0.0,2.2805818756419136e-06,0.0,0.0,0.0,0.0,0.0,14.438160431827765,0.0,0.0,0.0 -8120,runoff,0.01403596583151869,2011-08-22,0.0,0.0,1.628766172228007e-06,0.0,0.0,0.0,0.0,0.0,15.410975066627792,0.0,0.0,0.0 -8121,storm_outflow,0.018,2011-08-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 -8122,baseflow,0.0335963243281413,2011-08-22,0.0,0.0,3.913015880880412e-06,0.0,0.0,0.0,0.0,0.0,10.400453736198322,0.0,0.0,0.0 -8123,catchment_outflow,0.06563229015965999,2011-08-22,0.0,0.0,8.541782053108418e-06,0.0,0.0,0.0,0.0,0.0,12.931297209683086,0.0,0.0,0.0 -8124,reservoir_outflow,0.009,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8125,gw1_gw2,0.0,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8126,gw2_gw1,0.0005992919558632792,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8127,urban_drainage,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8128,percolation,0.010685911013625338,2011-08-23,0.0,0.0,2.234970238129075e-06,0.0,0.0,0.0,0.0,0.0,14.438160431827763,0.0,0.0,0.0 -8129,runoff,0.0057435991508558715,2011-08-23,0.0,0.0,1.3030129377824057e-06,0.0,0.0,0.0,0.0,0.0,15.106508520519228,0.0,0.0,0.0 -8130,storm_outflow,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8131,baseflow,0.03353904829485502,2011-08-23,0.0,0.0,3.908820766773533e-06,0.0,0.0,0.0,0.0,0.0,10.40366988100879,0.0,0.0,0.0 -8132,catchment_outflow,0.03928264744571089,2011-08-23,0.0,0.0,5.211833704555939e-06,0.0,0.0,0.0,0.0,0.0,11.091281887145447,0.0,0.0,0.0 -8133,reservoir_outflow,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8134,gw1_gw2,0.0,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8135,gw2_gw1,0.0005952966761576307,2011-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8136,urban_drainage,0.04,2011-08-24,0.0,0.0,1.0666666666666667e-06,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 -8137,percolation,0.0163717088035097,2011-08-24,0.0,0.0,3.53717996133126e-06,0.0,0.0,0.0,0.0,0.0,14.57465306743835,0.0,0.0,0.0 -8138,runoff,0.04474605737481945,2011-08-24,0.0,0.0,5.532107443441814e-06,0.0,0.0,0.0,0.0,0.0,15.1723796630932,0.0,0.0,0.0 -8139,storm_outflow,0.04,2011-08-24,0.0,0.0,1.0666666666666667e-06,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 -8140,baseflow,0.03349612994612665,2011-08-24,0.0,0.0,3.907891664759927e-06,0.0,0.0,0.0,0.0,0.0,10.408766449049814,0.0,0.0,0.0 -8141,catchment_outflow,0.1182421873209461,2011-08-24,0.0,0.0,1.0506665774868408e-05,0.0,0.0,0.0,0.0,0.0,13.943419510656394,0.0,0.0,0.0 -8142,reservoir_outflow,0.0375,2011-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8143,gw1_gw2,0.0,2011-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8144,gw2_gw1,0.0005913280316498515,2011-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8145,urban_drainage,0.03799999999999999,2011-08-25,0.0,0.0,1.933333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0 -8146,percolation,0.018619941610874147,2011-08-25,0.0,0.0,4.051617331743386e-06,0.0,0.0,0.0,0.0,0.0,14.599509006487983,0.0,0.0,0.0 -8147,runoff,0.03685978558256455,2011-08-25,0.0,0.0,6.3762891868826225e-06,0.0,0.0,0.0,0.0,0.0,14.997059911459907,0.0,0.0,0.0 -8148,storm_outflow,0.03799999999999999,2011-08-25,0.0,0.0,1.933333333333333e-06,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0 -8149,baseflow,0.033458939475288524,2011-08-25,0.0,0.0,3.908250978927387e-06,0.0,0.0,0.0,0.0,0.0,10.414596832719278,0.0,0.0,0.0 -8150,catchment_outflow,0.10831872505785306,2011-08-25,0.0,0.0,1.2217873499143343e-05,0.0,0.0,0.0,0.0,0.0,13.767436845515713,0.0,0.0,0.0 -8151,reservoir_outflow,0.0014999999999999996,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8152,gw1_gw2,0.0,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8153,gw2_gw1,0.0005873858447721148,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8154,urban_drainage,0.04,2011-08-26,0.0,0.0,4.878048780487804e-07,0.0,0.0,0.0,0.0,0.0,15.485714290000002,0.0,0.0,0.0 -8155,percolation,0.029281250057263654,2011-08-26,0.0,0.0,6.3505365543258195e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -8156,runoff,0.09775167269951103,2011-08-26,0.0,0.0,1.3034203246897103e-05,0.0,0.0,0.0,0.0,0.0,15.065624437317059,0.0,0.0,0.0 -8157,storm_outflow,0.04,2011-08-26,0.0,0.0,4.878048780487804e-07,0.0,0.0,0.0,0.0,0.0,15.485714290000002,0.0,0.0,0.0 -8158,baseflow,0.033448495251743454,2011-08-26,0.0,0.0,3.914356692865881e-06,0.0,0.0,0.0,0.0,0.0,10.423892282932346,0.0,0.0,0.0 -8159,catchment_outflow,0.17120016795125448,2011-08-26,0.0,0.0,1.7436364817811764e-05,0.0,0.0,0.0,0.0,0.0,14.25689064064283,0.0,0.0,0.0 -8160,reservoir_outflow,0.041,2011-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8161,gw1_gw2,0.0,2011-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8162,gw2_gw1,0.0005834699391403575,2011-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8163,urban_drainage,0.029000000000000005,2011-08-27,0.0,0.0,1.5121951219512194e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -8164,percolation,0.028695625056118383,2011-08-27,0.0,0.0,6.223525823239304e-06,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 -8165,runoff,0.05013048729470505,2011-08-27,0.0,0.0,1.0427362597517684e-05,0.0,0.0,0.0,0.0,0.0,14.829152707694778,0.0,0.0,0.0 -8166,storm_outflow,0.029,2011-08-27,0.0,0.0,1.5121951219512191e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -8167,baseflow,0.033436613076254396,2011-08-27,0.0,0.0,3.920129615691815e-06,0.0,0.0,0.0,0.0,0.0,10.432985117732626,0.0,0.0,0.0 -8168,catchment_outflow,0.11256710037095945,2011-08-27,0.0,0.0,1.585968733516072e-05,0.0,0.0,0.0,0.0,0.0,13.69247362103961,0.0,0.0,0.0 -8169,reservoir_outflow,0.0,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8170,gw1_gw2,0.0,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8171,gw2_gw1,0.0005795801395459321,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8172,urban_drainage,0.0,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8173,percolation,0.028121712554996018,2011-08-28,0.0,0.0,6.099055306774518e-06,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 -8174,runoff,0.03941347084946644,2011-08-28,0.0,0.0,8.341890078014147e-06,0.0,0.0,0.0,0.0,0.0,14.817132686186193,0.0,0.0,0.0 -8175,storm_outflow,3.469446951953614e-18,2011-08-28,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -8176,baseflow,0.03342332582495125,2011-08-28,0.0,0.0,3.925576929919522e-06,0.0,0.0,0.0,0.0,0.0,10.44188051202535,0.0,0.0,0.0 -8177,catchment_outflow,0.0728367966744177,2011-08-28,0.0,0.0,1.2267467007933668e-05,0.0,0.0,0.0,0.0,0.0,12.809418376110468,0.0,0.0,0.0 -8178,reservoir_outflow,0.0,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8179,gw1_gw2,0.0,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8180,gw2_gw1,0.0005757162719488562,2011-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8181,urban_drainage,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8182,percolation,0.0275592783038961,2011-08-29,0.0,0.0,5.9770742006390266e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -8183,runoff,0.030226898083038137,2011-08-29,0.0,0.0,6.6735120624113154e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -8184,storm_outflow,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8185,baseflow,0.03340866570614861,2011-08-29,0.0,0.0,3.930705673096321e-06,0.0,0.0,0.0,0.0,0.0,10.450583478928952,0.0,0.0,0.0 -8186,catchment_outflow,0.06363556378918675,2011-08-29,0.0,0.0,1.0604217735507637e-05,0.0,0.0,0.0,0.0,0.0,12.511873759537238,0.0,0.0,0.0 -8187,reservoir_outflow,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8188,gw1_gw2,0.0,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8189,gw2_gw1,0.0005718781634689307,2011-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8190,urban_drainage,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8191,percolation,0.027008092737818176,2011-08-30,0.0,0.0,5.857532716626245e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -8192,runoff,0.02418151846643051,2011-08-30,0.0,0.0,5.338809649929052e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -8193,storm_outflow,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8194,baseflow,0.03339266427372778,2011-08-30,0.0,0.0,3.935522740705145e-06,0.0,0.0,0.0,0.0,0.0,10.459098875994052,0.0,0.0,0.0 -8195,catchment_outflow,0.05757418274015829,2011-08-30,0.0,0.0,9.274332390634198e-06,0.0,0.0,0.0,0.0,0.0,12.278163864776154,0.0,0.0,0.0 -8196,reservoir_outflow,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8197,gw1_gw2,0.0,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8198,gw2_gw1,0.0005680656423795227,2011-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8199,urban_drainage,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8200,percolation,0.026467930883061812,2011-08-31,0.0,0.0,5.740382062293722e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -8201,runoff,0.01934521477314441,2011-08-31,0.0,0.0,4.271047719943243e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -8202,storm_outflow,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8203,baseflow,0.03337535244025111,2011-08-31,0.0,0.0,3.940034889009117e-06,0.0,0.0,0.0,0.0,0.0,10.467431411136287,0.0,0.0,0.0 -8204,catchment_outflow,0.05272056721339552,2011-08-31,0.0,0.0,8.21108260895236e-06,0.0,0.0,0.0,0.0,0.0,12.05360079060975,0.0,0.0,0.0 -8205,reservoir_outflow,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8206,gw1_gw2,0.0,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8207,gw2_gw1,0.0005642785380969073,2011-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8208,urban_drainage,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8209,percolation,0.025938572265400577,2011-09-01,0.0,0.0,5.6255744210478475e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -8210,runoff,0.015476171818515525,2011-09-01,0.0,0.0,3.4168381759545936e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -8211,storm_outflow,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8212,baseflow,0.03335676048981399,2011-09-01,0.0,0.0,3.9442487378392135e-06,0.0,0.0,0.0,0.0,0.0,10.475585648298248,0.0,0.0,0.0 -8213,catchment_outflow,0.04883293230832951,2011-09-01,0.0,0.0,7.361086913793807e-06,0.0,0.0,0.0,0.0,0.0,11.842958033575457,0.0,0.0,0.0 -8214,reservoir_outflow,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8215,gw1_gw2,0.0,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8216,gw2_gw1,0.0005605166811765372,2011-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8217,urban_drainage,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8218,percolation,0.025419800820092566,2011-09-02,0.0,0.0,5.513062932626891e-06,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -8219,runoff,0.012380937454812422,2011-09-02,0.0,0.0,2.733470540763675e-06,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -8220,storm_outflow,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8221,baseflow,0.03333691809063968,2011-09-02,0.0,0.0,3.9481707733261826e-06,0.0,0.0,0.0,0.0,0.0,10.483566012854874,0.0,0.0,0.0 -8222,catchment_outflow,0.0457178555454521,2011-09-02,0.0,0.0,6.681641314089858e-06,0.0,0.0,0.0,0.0,0.0,11.649837647292435,0.0,0.0,0.0 -8223,reservoir_outflow,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8224,gw1_gw2,0.0,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8225,gw2_gw1,0.0005567799033020294,2011-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8226,urban_drainage,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8227,percolation,0.025822115950666493,2011-09-03,0.0,0.0,5.610655987808998e-06,0.0,0.0,0.0,0.0,0.0,14.660590867944983,0.0,0.0,0.0 -8228,runoff,0.01613593149578948,2011-09-03,0.0,0.0,2.8796241453930895e-06,0.0,0.0,0.0,0.0,0.0,14.876767875734526,0.0,0.0,0.0 -8229,storm_outflow,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8230,baseflow,0.03331813108528975,2011-09-03,0.0,0.0,3.95232698636239e-06,0.0,0.0,0.0,0.0,0.0,10.491659175393076,0.0,0.0,0.0 -8231,catchment_outflow,0.04945406258107923,2011-09-03,0.0,0.0,6.8319511317554795e-06,0.0,0.0,0.0,0.0,0.0,11.922437758533613,0.0,0.0,0.0 -8232,reservoir_outflow,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8233,gw1_gw2,0.0,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8234,gw2_gw1,0.0005530680372798358,2011-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8235,urban_drainage,0.008999999999999998,2011-09-04,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0 -8236,percolation,0.02686120199739945,2011-09-04,0.0,0.0,5.85022468639756e-06,0.0,0.0,0.0,0.0,0.0,14.658611005197633,0.0,0.0,0.0 -8237,runoff,0.020995451847946003,2011-09-04,0.0,0.0,3.476305377463606e-06,0.0,0.0,0.0,0.0,0.0,14.88434581978501,0.0,0.0,0.0 -8238,storm_outflow,0.008999999999999998,2011-09-04,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0 -8239,baseflow,0.03330198876257002,2011-09-04,0.0,0.0,3.957071730612478e-06,0.0,0.0,0.0,0.0,0.0,10.500061776782127,0.0,0.0,0.0 -8240,catchment_outflow,0.06329744061051602,2011-09-04,0.0,0.0,1.5433377108076082e-05,0.0,0.0,0.0,0.0,0.0,12.64847019503582,0.0,0.0,0.0 -8241,reservoir_outflow,0.004499999999999999,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8242,gw1_gw2,0.0,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8243,gw2_gw1,0.0005493809170312502,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8244,urban_drainage,0.014999999999999998,2011-09-05,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0 -8245,percolation,0.028690060516169975,2011-09-05,0.0,0.0,6.261514325043975e-06,0.0,0.0,0.0,0.0,0.0,14.655985460958293,0.0,0.0,0.0 -8246,runoff,0.028618951993809743,2011-09-05,0.0,0.0,4.542024743218771e-06,0.0,0.0,0.0,0.0,0.0,14.880783727278658,0.0,0.0,0.0 -8247,storm_outflow,0.014999999999999998,2011-09-05,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0 -8248,baseflow,0.03329045894195402,2011-09-05,0.0,0.0,3.962832837098556e-06,0.0,0.0,0.0,0.0,0.0,10.509015821408507,0.0,0.0,0.0 -8249,catchment_outflow,0.07690941093576376,2011-09-05,0.0,0.0,9.504857580317326e-06,0.0,0.0,0.0,0.0,0.0,13.085537310053823,0.0,0.0,0.0 -8250,reservoir_outflow,0.0075,2011-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8251,gw1_gw2,0.0,2011-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8252,gw2_gw1,0.0005457183775842367,2011-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8253,urban_drainage,0.0020000000000000026,2011-09-06,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 -8254,percolation,0.029875903050552738,2011-09-06,0.0,0.0,6.527424812882782e-06,0.0,0.0,0.0,0.0,0.0,14.653740710031727,0.0,0.0,0.0 -8255,runoff,0.028293194069441488,2011-09-06,0.0,0.0,4.937422375707303e-06,0.0,0.0,0.0,0.0,0.0,14.817276017088812,0.0,0.0,0.0 -8256,storm_outflow,0.0020000000000000026,2011-09-06,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 -8257,baseflow,0.033281922552225514,2011-09-06,0.0,0.0,3.969244317038017e-06,0.0,0.0,0.0,0.0,0.0,10.518317222097531,0.0,0.0,0.0 -8258,catchment_outflow,0.06357511662166701,2011-09-06,0.0,0.0,9.906666692745321e-06,0.0,0.0,0.0,0.0,0.0,12.584292843041371,0.0,0.0,0.0 -8259,reservoir_outflow,0.0010000000000000005,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8260,gw1_gw2,0.0,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8261,gw2_gw1,0.0005420802550672122,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8262,urban_drainage,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8263,percolation,0.029278384989541675,2011-09-07,0.0,0.0,6.396876316625124e-06,0.0,0.0,0.0,0.0,0.0,14.653740710031729,0.0,0.0,0.0 -8264,runoff,0.020485000893456545,2011-09-07,0.0,0.0,3.9499379005658425e-06,0.0,0.0,0.0,0.0,0.0,14.749511039229125,0.0,0.0,0.0 -8265,storm_outflow,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8266,baseflow,0.03327191370831881,2011-09-07,0.0,0.0,3.975313397036985e-06,0.0,0.0,0.0,0.0,0.0,10.527414874402412,0.0,0.0,0.0 -8267,catchment_outflow,0.053756914601775355,2011-09-07,0.0,0.0,7.925251297602827e-06,0.0,0.0,0.0,0.0,0.0,12.13631754951759,0.0,0.0,0.0 -8268,reservoir_outflow,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8269,gw1_gw2,0.0,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8270,gw2_gw1,0.0005384663867001649,2011-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8271,urban_drainage,0.005999999999999998,2011-09-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -8272,percolation,0.03075011411890395,2011-09-08,0.0,0.0,6.72447718167573e-06,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 -8273,runoff,0.02823240497720263,2011-09-08,0.0,0.0,4.678411625063034e-06,0.0,0.0,0.0,0.0,0.0,14.785384806850878,0.0,0.0,0.0 -8274,storm_outflow,0.005999999999999998,2011-09-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -8275,baseflow,0.03326560920934527,2011-09-08,0.0,0.0,3.982186306498581e-06,0.0,0.0,0.0,0.0,0.0,10.536936613302979,0.0,0.0,0.0 -8276,catchment_outflow,0.06749801418654791,2011-09-08,0.0,0.0,1.0660597931561615e-05,0.0,0.0,0.0,0.0,0.0,12.731934589030368,0.0,0.0,0.0 -8277,reservoir_outflow,0.002999999999999999,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8278,gw1_gw2,0.0,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8279,gw2_gw1,0.0005348766107889702,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8280,urban_drainage,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8281,percolation,0.030135111836525872,2011-09-09,0.0,0.0,6.589987638042215e-06,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 -8282,runoff,0.017096116571446014,2011-09-09,0.0,0.0,3.7427293000504266e-06,0.0,0.0,0.0,0.0,0.0,14.638499287713,0.0,0.0,0.0 -8283,storm_outflow,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8284,baseflow,0.033257782965913224,2011-09-09,0.0,0.0,3.98870580982744e-06,0.0,0.0,0.0,0.0,0.0,10.546248543987154,0.0,0.0,0.0 -8285,catchment_outflow,0.050353899537359234,2011-09-09,0.0,0.0,7.731435109877867e-06,0.0,0.0,0.0,0.0,0.0,11.935646314509713,0.0,0.0,0.0 -8286,reservoir_outflow,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8287,gw1_gw2,0.0,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8288,gw2_gw1,0.0005313107667168637,2011-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8289,urban_drainage,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8290,percolation,0.02953240959979535,2011-09-10,0.0,0.0,6.458187885281371e-06,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 -8291,runoff,0.014165526590852528,2011-09-10,0.0,0.0,2.9941834400403413e-06,0.0,0.0,0.0,0.0,0.0,14.653449315655227,0.0,0.0,0.0 -8292,storm_outflow,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8293,baseflow,0.03324846953249793,2011-09-10,0.0,0.0,3.994879515016075e-06,0.0,0.0,0.0,0.0,0.0,10.555356114385855,0.0,0.0,0.0 -8294,catchment_outflow,0.047413996123350455,2011-09-10,0.0,0.0,6.989062955056416e-06,0.0,0.0,0.0,0.0,0.0,11.779712906910753,0.0,0.0,0.0 -8295,reservoir_outflow,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8296,gw1_gw2,0.0,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8297,gw2_gw1,0.0005277686949391125,2011-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8298,urban_drainage,0.005,2011-09-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -8299,percolation,0.030343241432157442,2011-09-11,0.0,0.0,6.642400970601955e-06,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 -8300,runoff,0.020348149492088064,2011-09-11,0.0,0.0,3.4399362287863087e-06,0.0,0.0,0.0,0.0,0.0,14.672426008150268,0.0,0.0,0.0 -8301,storm_outflow,0.005,2011-09-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -8302,baseflow,0.033241206462247076,2011-09-11,0.0,0.0,4.00149831865504e-06,0.0,0.0,0.0,0.0,0.0,10.564667730885366,0.0,0.0,0.0 -8303,catchment_outflow,0.05858935595433514,2011-09-11,0.0,0.0,1.0441434547441349e-05,0.0,0.0,0.0,0.0,0.0,12.372854739824195,0.0,0.0,0.0 -8304,reservoir_outflow,0.0025,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8305,gw1_gw2,0.0,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8306,gw2_gw1,0.0005242502369725343,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8307,urban_drainage,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8308,percolation,0.029736376603514292,2011-09-12,0.0,0.0,6.509552951189916e-06,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 -8309,runoff,0.012572612996589634,2011-09-12,0.0,0.0,2.7519489830290462e-06,0.0,0.0,0.0,0.0,0.0,14.56411210514201,0.0,0.0,0.0 -8310,storm_outflow,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8311,baseflow,0.03323244438760024,2011-09-12,0.0,0.0,4.007768455236376e-06,0.0,0.0,0.0,0.0,0.0,10.573774690980114,0.0,0.0,0.0 -8312,catchment_outflow,0.04580505738418988,2011-09-12,0.0,0.0,6.759717438265422e-06,0.0,0.0,0.0,0.0,0.0,11.669046062725762,0.0,0.0,0.0 -8313,reservoir_outflow,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8314,gw1_gw2,0.0,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8315,gw2_gw1,0.0005207552353928335,2011-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8316,urban_drainage,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8317,percolation,0.030117378485010976,2011-09-13,0.0,0.0,6.598723900946724e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 -8318,runoff,0.016551675818327515,2011-09-13,0.0,0.0,2.932765882358591e-06,0.0,0.0,0.0,0.0,0.0,14.571455559273975,0.0,0.0,0.0 -8319,storm_outflow,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8320,baseflow,0.033224656722843776,2011-09-13,0.0,0.0,4.014245843850653e-06,0.0,0.0,0.0,0.0,0.0,10.582953049337966,0.0,0.0,0.0 -8321,catchment_outflow,0.049776332541171295,2011-09-13,0.0,0.0,6.947011726209244e-06,0.0,0.0,0.0,0.0,0.0,11.90921388806976,0.0,0.0,0.0 -8322,reservoir_outflow,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8323,gw1_gw2,0.0,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8324,gw2_gw1,0.0005172835338234094,2011-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8325,urban_drainage,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8326,percolation,0.029515030915310752,2011-09-14,0.0,0.0,6.466749422927788e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 -8327,runoff,0.010502451072719635,2011-09-14,0.0,0.0,2.346212705886873e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 -8328,storm_outflow,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8329,baseflow,0.03321538265832494,2011-09-14,0.0,0.0,4.020377102798345e-06,0.0,0.0,0.0,0.0,0.0,10.591929962349777,0.0,0.0,0.0 -8330,catchment_outflow,0.04371783373104457,2011-09-14,0.0,0.0,6.366589808685219e-06,0.0,0.0,0.0,0.0,0.0,11.527358880900747,0.0,0.0,0.0 -8331,reservoir_outflow,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8332,gw1_gw2,0.0,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8333,gw2_gw1,0.0005138349769312711,2011-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8334,urban_drainage,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8335,percolation,0.02892473029700454,2011-09-15,0.0,0.0,6.3374144344692335e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 -8336,runoff,0.008401960858175708,2011-09-15,0.0,0.0,1.8769701647094987e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 -8337,storm_outflow,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8338,baseflow,0.03320465602742164,2011-09-15,0.0,0.0,4.026169696127523e-06,0.0,0.0,0.0,0.0,0.0,10.60071062948128,0.0,0.0,0.0 -8339,catchment_outflow,0.041606616885597345,2011-09-15,0.0,0.0,5.903139860837022e-06,0.0,0.0,0.0,0.0,0.0,11.38525329035044,0.0,0.0,0.0 -8340,reservoir_outflow,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8341,gw1_gw2,0.0,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8342,gw2_gw1,0.0005104094104183332,2011-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8343,urban_drainage,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8344,percolation,0.028346235691064446,2011-09-16,0.0,0.0,6.210666145779848e-06,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 -8345,runoff,0.007006010893576018,2011-09-16,0.0,0.0,1.5015761317675991e-06,0.0,0.0,0.0,0.0,0.0,14.494328296042504,0.0,0.0,0.0 -8346,storm_outflow,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8347,baseflow,0.03319250997658075,2011-09-16,0.0,0.0,4.031630937251654e-06,0.0,0.0,0.0,0.0,0.0,10.60930008548229,0.0,0.0,0.0 -8348,catchment_outflow,0.04019852087015677,2011-09-16,0.0,0.0,5.533207069019253e-06,0.0,0.0,0.0,0.0,0.0,11.286403356345224,0.0,0.0,0.0 -8349,reservoir_outflow,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8350,gw1_gw2,0.0,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8351,gw2_gw1,0.0005070066810155538,2011-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8352,urban_drainage,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8353,percolation,0.02787176979195597,2011-09-17,0.0,0.0,6.107649787293742e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -8354,runoff,0.006009867892004353,2011-09-17,0.0,0.0,1.271917453512387e-06,0.0,0.0,0.0,0.0,0.0,14.470508134493299,0.0,0.0,0.0 -8355,storm_outflow,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8356,baseflow,0.03317920812611918,2011-09-17,0.0,0.0,4.0368209843767585e-06,0.0,0.0,0.0,0.0,0.0,10.617727032928851,0.0,0.0,0.0 -8357,catchment_outflow,0.039189076018123534,2011-09-17,0.0,0.0,5.308738437889145e-06,0.0,0.0,0.0,0.0,0.0,11.2085729468898,0.0,0.0,0.0 -8358,reservoir_outflow,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8359,gw1_gw2,0.0,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8360,gw2_gw1,0.0005036266364756514,2011-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8361,urban_drainage,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8362,percolation,0.027314334396116854,2011-09-18,0.0,0.0,5.985496791547868e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -8363,runoff,0.005345991824981417,2011-09-18,0.0,0.0,1.0175339628099094e-06,0.0,0.0,0.0,0.0,0.0,14.476293497947033,0.0,0.0,0.0 -8364,storm_outflow,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8365,baseflow,0.033164545941794174,2011-09-18,0.0,0.0,4.041692673894687e-06,0.0,0.0,0.0,0.0,0.0,10.625971741409469,0.0,0.0,0.0 -8366,catchment_outflow,0.03851053776677559,2011-09-18,0.0,0.0,5.059226636704596e-06,0.0,0.0,0.0,0.0,0.0,11.160469305651645,0.0,0.0,0.0 -8367,reservoir_outflow,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8368,gw1_gw2,0.0,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8369,gw2_gw1,0.0005002691255656444,2011-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8370,urban_drainage,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8371,percolation,0.02676804770819452,2011-09-19,0.0,0.0,5.865786855716912e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -8372,runoff,0.003721038075897012,2011-09-19,0.0,0.0,8.140271702479277e-07,0.0,0.0,0.0,0.0,0.0,14.462183105432777,0.0,0.0,0.0 -8373,storm_outflow,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8374,baseflow,0.033148554696210177,2011-09-19,0.0,0.0,4.046252909349242e-06,0.0,0.0,0.0,0.0,0.0,10.634038809144224,0.0,0.0,0.0 -8375,catchment_outflow,0.03686959277210719,2011-09-19,0.0,0.0,4.860280079597169e-06,0.0,0.0,0.0,0.0,0.0,11.020391616851233,0.0,0.0,0.0 -8376,reservoir_outflow,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8377,gw1_gw2,0.0,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8378,gw2_gw1,0.0004969339980616993,2011-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8379,urban_drainage,0.04,2011-09-20,0.0,0.0,4.8e-06,0.0,0.0,0.0,0.0,0.0,14.424999999999999,0.0,0.0,0.0 -8380,percolation,0.026232686754030624,2011-09-20,0.0,0.0,5.748471118602573e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -8381,runoff,0.0029109509111168884,2011-09-20,0.0,0.0,6.512217361983421e-07,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 -8382,storm_outflow,0.04,2011-09-20,0.0,0.0,4.8e-06,0.0,0.0,0.0,0.0,0.0,14.424999999999999,0.0,0.0,0.0 -8383,baseflow,0.03313126502635473,2011-09-20,0.0,0.0,4.050508454872375e-06,0.0,0.0,0.0,0.0,0.0,10.641932692790455,0.0,0.0,0.0 -8384,catchment_outflow,0.07604221593747162,2011-09-20,0.0,0.0,9.501730191070717e-06,0.0,0.0,0.0,0.0,0.0,12.778130736384407,0.0,0.0,0.0 -8385,reservoir_outflow,0.0375,2011-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8386,gw1_gw2,0.0,2011-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8387,gw2_gw1,0.0004936211047414929,2011-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8388,urban_drainage,0.022999999999999993,2011-09-21,0.0,0.0,5.199999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 -8389,percolation,0.025708033018950017,2011-09-21,0.0,0.0,5.6335016962305214e-06,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -8390,runoff,0.005706763276254984,2011-09-21,0.0,0.0,5.209773889586738e-07,0.0,0.0,0.0,0.0,0.0,14.474419267302414,0.0,0.0,0.0 -8391,storm_outflow,0.022999999999999993,2011-09-21,0.0,0.0,5.199999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 -8392,baseflow,0.03311270694633621,2011-09-21,0.0,0.0,4.0544659379757696e-06,0.0,0.0,0.0,0.0,0.0,10.64965771279586,0.0,0.0,0.0 -8393,catchment_outflow,0.06181947022259118,2011-09-21,0.0,0.0,9.775443326934442e-06,0.0,0.0,0.0,0.0,0.0,12.40735445452039,0.0,0.0,0.0 -8394,reservoir_outflow,0.0,2011-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8395,gw1_gw2,0.0,2011-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8396,gw2_gw1,0.0004903302973765733,2011-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8397,urban_drainage,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8398,percolation,0.025193872358571016,2011-09-22,0.0,0.0,5.5208316623059115e-06,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 -8399,runoff,0.0018630085831148084,2011-09-22,0.0,0.0,4.167819111669389e-07,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 -8400,storm_outflow,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8401,baseflow,0.0330929098598668,2011-09-22,0.0,0.0,4.058131852286595e-06,0.0,0.0,0.0,0.0,0.0,10.657218058509219,0.0,0.0,0.0 -8402,catchment_outflow,0.034955918442981605,2011-09-22,0.0,0.0,4.474913763453535e-06,0.0,0.0,0.0,0.0,0.0,10.859970254702226,0.0,0.0,0.0 -8403,reservoir_outflow,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8404,gw1_gw2,0.0,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8405,gw2_gw1,0.00048706142872720907,2011-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8406,urban_drainage,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8407,percolation,0.024689994911399595,2011-09-23,0.0,0.0,5.410415029059793e-06,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 -8408,runoff,0.001490406866491847,2011-09-23,0.0,0.0,3.334255289335512e-07,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 -8409,storm_outflow,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8410,baseflow,0.03307190257249563,2011-09-23,0.0,0.0,4.0615125602285285e-06,0.0,0.0,0.0,0.0,0.0,10.66461779306148,0.0,0.0,0.0 -8411,catchment_outflow,0.03456230943898748,2011-09-23,0.0,0.0,4.394938089162079e-06,0.0,0.0,0.0,0.0,0.0,10.828347672924082,0.0,0.0,0.0 -8412,reservoir_outflow,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8413,gw1_gw2,0.0,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8414,gw2_gw1,0.00048381435253563865,2011-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8415,urban_drainage,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8416,percolation,0.02419619501317161,2011-09-24,0.0,0.0,5.302206728478598e-06,0.0,0.0,0.0,0.0,0.0,14.621954398923533,0.0,0.0,0.0 -8417,runoff,0.0019296803287435827,2011-09-24,0.0,0.0,2.6674042314684096e-07,0.0,0.0,0.0,0.0,0.0,14.53670560442132,0.0,0.0,0.0 -8418,storm_outflow,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8419,baseflow,0.033049713303597315,2011-09-24,0.0,0.0,4.064614295649153e-06,0.0,0.0,0.0,0.0,0.0,10.67186085802914,0.0,0.0,0.0 -8420,catchment_outflow,0.0349793936323409,2011-09-24,0.0,0.0,4.331354718795994e-06,0.0,0.0,0.0,0.0,0.0,10.885069667740055,0.0,0.0,0.0 -8421,reservoir_outflow,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8422,gw1_gw2,0.0,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8423,gw2_gw1,0.0004805889235187877,2011-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8424,urban_drainage,0.034999999999999996,2011-09-25,0.0,0.0,4.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -8425,percolation,0.029078188628643,2011-09-25,0.0,0.0,6.386517546342851e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -8426,runoff,0.037668032870635214,2011-09-25,0.0,0.0,4.181242179963559e-06,0.0,0.0,0.0,0.0,0.0,14.372486959256795,0.0,0.0,0.0 -8427,storm_outflow,0.034999999999999996,2011-09-25,0.0,0.0,4.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -8428,baseflow,0.03303978449190993,2011-09-25,0.0,0.0,4.070419053775888e-06,0.0,0.0,0.0,0.0,0.0,10.680301699459047,0.0,0.0,0.0 -8429,catchment_outflow,0.10570781736254514,2011-09-25,0.0,0.0,1.2251661233739446e-05,0.0,0.0,0.0,0.0,0.0,13.332424661547607,0.0,0.0,0.0 -8430,reservoir_outflow,0.017499999999999998,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8431,gw1_gw2,0.0,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8432,gw2_gw1,0.0004773849973620514,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8433,urban_drainage,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8434,percolation,0.02849662485607014,2011-09-26,0.0,0.0,6.258787195415994e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -8435,runoff,0.015072201690936708,2011-09-26,0.0,0.0,3.3449937439708476e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8436,storm_outflow,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8437,baseflow,0.03302842659282033,2011-09-26,0.0,0.0,4.075889974129987e-06,0.0,0.0,0.0,0.0,0.0,10.688558361962889,0.0,0.0,0.0 -8438,catchment_outflow,0.04810062828375704,2011-09-26,0.0,0.0,7.420883718100835e-06,0.0,0.0,0.0,0.0,0.0,11.735131026846934,0.0,0.0,0.0 -8439,reservoir_outflow,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8440,gw1_gw2,0.0,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8441,gw2_gw1,0.0004742024307130777,2011-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8442,urban_drainage,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8443,percolation,0.027926692358948735,2011-09-27,0.0,0.0,6.1336114515076744e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -8444,runoff,0.012390429639787575,2011-09-27,0.0,0.0,2.675994995176678e-06,0.0,0.0,0.0,0.0,0.0,14.052184582596151,0.0,0.0,0.0 -8445,storm_outflow,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8446,baseflow,0.03301567225723565,2011-09-27,0.0,0.0,4.081034277823431e-06,0.0,0.0,0.0,0.0,0.0,10.69663555708161,0.0,0.0,0.0 -8447,catchment_outflow,0.045406101897023224,2011-09-27,0.0,0.0,6.757029273000109e-06,0.0,0.0,0.0,0.0,0.0,11.612298702924603,0.0,0.0,0.0 -8448,reservoir_outflow,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8449,gw1_gw2,0.0,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8450,gw2_gw1,0.00047104108117501653,2011-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8451,urban_drainage,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8452,percolation,0.027368158511769762,2011-09-28,0.0,0.0,6.0109392224775204e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -8453,runoff,0.009646209082199495,2011-09-28,0.0,0.0,2.140795996141343e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8454,storm_outflow,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8455,baseflow,0.033001553472871994,2011-09-28,0.0,0.0,4.085859040185067e-06,0.0,0.0,0.0,0.0,0.0,10.704537848759639,0.0,0.0,0.0 -8456,catchment_outflow,0.04264776255507149,2011-09-28,0.0,0.0,6.22665503632641e-06,0.0,0.0,0.0,0.0,0.0,11.456370309659928,0.0,0.0,0.0 -8457,reservoir_outflow,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8458,gw1_gw2,0.0,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8459,gw2_gw1,0.00046790080730030326,2011-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8460,urban_drainage,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8461,percolation,0.026820795341534375,2011-09-29,0.0,0.0,5.8907204380279724e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -8462,runoff,0.007716967265759594,2011-09-29,0.0,0.0,1.712636796913074e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8463,storm_outflow,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8464,baseflow,0.03298610157754365,2011-09-29,0.0,0.0,4.090371193679674e-06,0.0,0.0,0.0,0.0,0.0,10.712269659030524,0.0,0.0,0.0 -8465,catchment_outflow,0.04070306884330324,2011-09-29,0.0,0.0,5.803007990592748e-06,0.0,0.0,0.0,0.0,0.0,11.341006322368907,0.0,0.0,0.0 -8466,reservoir_outflow,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8467,gw1_gw2,0.0,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8468,gw2_gw1,0.0004647814685853291,2011-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8469,urban_drainage,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8470,percolation,0.02628437943470368,2011-09-30,0.0,0.0,5.772906029267412e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -8471,runoff,0.006173573812607676,2011-09-30,0.0,0.0,1.3701094375304593e-06,0.0,0.0,0.0,0.0,0.0,14.02853507921978,0.0,0.0,0.0 -8472,storm_outflow,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8473,baseflow,0.03296934727218655,2011-09-30,0.0,0.0,4.094577530768644e-06,0.0,0.0,0.0,0.0,0.0,10.71983527344041,0.0,0.0,0.0 -8474,catchment_outflow,0.039142921084794224,2011-09-30,0.0,0.0,5.464686968299103e-06,0.0,0.0,0.0,0.0,0.0,11.241679374714565,0.0,0.0,0.0 -8475,reservoir_outflow,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8476,gw1_gw2,0.0,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8477,gw2_gw1,0.0004616829254612043,2011-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8478,urban_drainage,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8479,percolation,0.025758691846009603,2011-10-01,0.0,0.0,5.657447908682062e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -8480,runoff,0.004938859050086143,2011-10-01,0.0,0.0,1.0960875500243678e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219784,0.0,0.0,0.0 -8481,storm_outflow,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8482,baseflow,0.032951320633621106,2011-10-01,0.0,0.0,4.098484706713426e-06,0.0,0.0,0.0,0.0,0.0,10.727238846223361,0.0,0.0,0.0 -8483,catchment_outflow,0.03789017968370725,2011-10-01,0.0,0.0,5.194572256737794e-06,0.0,0.0,0.0,0.0,0.0,11.157551843244082,0.0,0.0,0.0 -8484,reservoir_outflow,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8485,gw1_gw2,0.0,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8486,gw2_gw1,0.0004586050392916263,2011-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8487,urban_drainage,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8488,percolation,0.025243518009089423,2011-10-02,0.0,0.0,5.544298950508423e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -8489,runoff,0.003951087240068913,2011-10-02,0.0,0.0,8.76870040019494e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8490,storm_outflow,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8491,baseflow,0.032932051127059776,2011-10-02,0.0,0.0,4.102099242322914e-06,0.0,0.0,0.0,0.0,0.0,10.7344844052417,0.0,0.0,0.0 -8492,catchment_outflow,0.03688313836712869,2011-10-02,0.0,0.0,4.978969282342408e-06,0.0,0.0,0.0,0.0,0.0,11.087357890587366,0.0,0.0,0.0 -8493,reservoir_outflow,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8494,gw1_gw2,0.0,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8495,gw2_gw1,0.0004555476723631102,2011-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8496,urban_drainage,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8497,percolation,0.02473864764890763,2011-10-03,0.0,0.0,5.433412971498254e-06,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -8498,runoff,0.003160869792055131,2011-10-03,0.0,0.0,7.014960320155952e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8499,storm_outflow,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8500,baseflow,0.0329115676183644,2011-10-03,0.0,0.0,4.105427526645852e-06,0.0,0.0,0.0,0.0,0.0,10.741575856703774,0.0,0.0,0.0 -8501,catchment_outflow,0.03607243741041953,2011-10-03,0.0,0.0,4.806923558661448e-06,0.0,0.0,0.0,0.0,0.0,11.02959770551754,0.0,0.0,0.0 -8502,reservoir_outflow,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8503,gw1_gw2,0.0,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8504,gw2_gw1,0.00045251068788090267,2011-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8505,urban_drainage,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8506,percolation,0.02424387469592948,2011-10-04,0.0,0.0,5.324744712068289e-06,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 -8507,runoff,0.0025286958336441048,2011-10-04,0.0,0.0,5.611968256124762e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8508,storm_outflow,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8509,baseflow,0.03288989838605831,2011-10-04,0.0,0.0,4.108475819609408e-06,0.0,0.0,0.0,0.0,0.0,10.748516989670769,0.0,0.0,0.0 -8510,catchment_outflow,0.035418594219702414,2011-10-04,0.0,0.0,4.669672645221885e-06,0.0,0.0,0.0,0.0,0.0,10.982692519785571,0.0,0.0,0.0 -8511,reservoir_outflow,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8512,gw1_gw2,0.0,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8513,gw2_gw1,0.00044949394996187666,2011-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8514,urban_drainage,0.022,2011-10-05,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -8515,percolation,0.023758997202010888,2011-10-05,0.0,0.0,5.218249817826922e-06,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 -8516,runoff,0.0020229566669152836,2011-10-05,0.0,0.0,4.4895746048998094e-07,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -8517,storm_outflow,0.022,2011-10-05,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -8518,baseflow,0.03286707113309819,2011-10-05,0.0,0.0,4.111250254604952e-06,0.0,0.0,0.0,0.0,0.0,10.755311480363538,0.0,0.0,0.0 -8519,catchment_outflow,0.05689002780001347,2011-10-05,0.0,0.0,1.4560207715094934e-05,0.0,0.0,0.0,0.0,0.0,12.775583096289619,0.0,0.0,0.0 -8520,reservoir_outflow,0.011,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8521,gw1_gw2,0.0,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8522,gw2_gw1,0.0004464973236283143,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8523,urban_drainage,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8524,percolation,0.02328381725797067,2011-10-06,0.0,0.0,5.113884821470385e-06,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 -8525,runoff,0.0019372608859432583,2011-10-06,0.0,0.0,3.5916596839198476e-07,0.0,0.0,0.0,0.0,0.0,14.271931024738793,0.0,0.0,0.0 -8526,storm_outflow,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8527,baseflow,0.03284311299841037,2011-10-06,0.0,0.0,4.113756841022115e-06,0.0,0.0,0.0,0.0,0.0,10.761962896279732,0.0,0.0,0.0 -8528,catchment_outflow,0.03478037388435363,2011-10-06,0.0,0.0,4.4729228094141e-06,0.0,0.0,0.0,0.0,0.0,10.957467521640591,0.0,0.0,0.0 -8529,reservoir_outflow,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8530,gw1_gw2,0.0,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8531,gw2_gw1,0.00044352067480399885,2011-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8532,urban_drainage,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8533,percolation,0.022974671967450733,2011-10-07,0.0,0.0,5.048848356534159e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8534,runoff,0.002365694219622184,2011-10-07,0.0,0.0,4.114702130241948e-07,0.0,0.0,0.0,0.0,0.0,14.48933362531317,0.0,0.0,0.0 -8535,storm_outflow,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8536,baseflow,0.03281844189583297,2011-10-07,0.0,0.0,4.116094569810895e-06,0.0,0.0,0.0,0.0,0.0,10.76852207821207,0.0,0.0,0.0 -8537,catchment_outflow,0.03518413611545515,2011-10-07,0.0,0.0,4.52756478283509e-06,0.0,0.0,0.0,0.0,0.0,11.018700236356873,0.0,0.0,0.0 -8538,reservoir_outflow,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8539,gw1_gw2,0.0,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8540,gw2_gw1,0.0004405638703053328,2011-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8541,urban_drainage,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8542,percolation,0.022515178528101715,2011-10-08,0.0,0.0,4.947871389403476e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8543,runoff,0.0015071409763384965,2011-10-08,0.0,0.0,3.2917617041935586e-07,0.0,0.0,0.0,0.0,0.0,14.266753604192921,0.0,0.0,0.0 -8544,storm_outflow,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8545,baseflow,0.03279268373741364,2011-10-08,0.0,0.0,4.118174011859877e-06,0.0,0.0,0.0,0.0,0.0,10.77494386690475,0.0,0.0,0.0 -8546,catchment_outflow,0.03429982471375213,2011-10-08,0.0,0.0,4.447350182279233e-06,0.0,0.0,0.0,0.0,0.0,10.928374666641016,0.0,0.0,0.0 -8547,reservoir_outflow,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8548,gw1_gw2,0.0,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8549,gw2_gw1,0.0004376267778365417,2011-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8550,urban_drainage,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8551,percolation,0.02206487495753968,2011-10-09,0.0,0.0,4.8489139616154054e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8552,runoff,0.001162535967332712,2011-10-09,0.0,0.0,2.633409363354847e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -8553,storm_outflow,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8554,baseflow,0.03276586421546396,2011-10-09,0.0,0.0,4.120000861734266e-06,0.0,0.0,0.0,0.0,0.0,10.781231559811273,0.0,0.0,0.0 -8555,catchment_outflow,0.03392840018279667,2011-10-09,0.0,0.0,4.38334179806975e-06,0.0,0.0,0.0,0.0,0.0,10.899518662749985,0.0,0.0,0.0 -8556,reservoir_outflow,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8557,gw1_gw2,0.0,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8558,gw2_gw1,0.00043470926598434547,2011-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8559,urban_drainage,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8560,percolation,0.02162357745838889,2011-10-10,0.0,0.0,4.7519356823830976e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 -8561,runoff,0.0009300287738661696,2011-10-10,0.0,0.0,2.1067274906838776e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -8562,storm_outflow,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8563,baseflow,0.03273800849857127,2011-10-10,0.0,0.0,4.121580698785887e-06,0.0,0.0,0.0,0.0,0.0,10.78738835924322,0.0,0.0,0.0 -8564,catchment_outflow,0.03366803727243744,2011-10-10,0.0,0.0,4.3322534478542745e-06,0.0,0.0,0.0,0.0,0.0,10.88257976304898,0.0,0.0,0.0 -8565,reservoir_outflow,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8566,gw1_gw2,0.0,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8567,gw2_gw1,0.00043181120421120767,2011-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8568,urban_drainage,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8569,percolation,0.021191105909221113,2011-10-11,0.0,0.0,4.656896968735436e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 -8570,runoff,0.0007440230190929357,2011-10-11,0.0,0.0,1.6853819925471022e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -8571,storm_outflow,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8572,baseflow,0.032709141242097894,2011-10-11,0.0,0.0,4.1229189894607615e-06,0.0,0.0,0.0,0.0,0.0,10.793417375723749,0.0,0.0,0.0 -8573,catchment_outflow,0.03345316426119083,2011-10-11,0.0,0.0,4.291457188715471e-06,0.0,0.0,0.0,0.0,0.0,10.869925548106224,0.0,0.0,0.0 -8574,reservoir_outflow,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8575,gw1_gw2,0.0,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8576,gw2_gw1,0.00042893246284947395,2011-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8577,urban_drainage,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8578,percolation,0.020767283791036692,2011-10-12,0.0,0.0,4.5637590293607265e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8579,runoff,0.0005952184152743486,2011-10-12,0.0,0.0,1.3483055940376815e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -8580,storm_outflow,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8581,baseflow,0.03267928659847024,2011-10-12,0.0,0.0,4.124021089560512e-06,0.0,0.0,0.0,0.0,0.0,10.79932163119941,0.0,0.0,0.0 -8582,catchment_outflow,0.03327450501374459,2011-10-12,0.0,0.0,4.25885164896428e-06,0.0,0.0,0.0,0.0,0.0,10.860751186469896,0.0,0.0,0.0 -8583,reservoir_outflow,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8584,gw1_gw2,0.0,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8585,gw2_gw1,0.00042607291309728625,2011-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8586,urban_drainage,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8587,percolation,0.02035193811521596,2011-10-13,0.0,0.0,4.472483848773512e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8588,runoff,0.00047617473221947884,2011-10-13,0.0,0.0,1.0786444752301452e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -8589,storm_outflow,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8590,baseflow,0.032648468227262105,2011-10-13,0.0,0.0,4.124892246458544e-06,0.0,0.0,0.0,0.0,0.0,10.80510406211726,0.0,0.0,0.0 -8591,catchment_outflow,0.03312464295948159,2011-10-13,0.0,0.0,4.232756693981559e-06,0.0,0.0,0.0,0.0,0.0,10.854386917493994,0.0,0.0,0.0 -8592,reservoir_outflow,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8593,gw1_gw2,0.0,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8594,gw2_gw1,0.000423232427009701,2011-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8595,urban_drainage,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8596,percolation,0.01994489935291164,2011-10-14,0.0,0.0,4.383034171798042e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8597,runoff,0.00038093978577558306,2011-10-14,0.0,0.0,8.629155801841161e-08,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 -8598,storm_outflow,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8599,baseflow,0.03261670930507623,2011-10-14,0.0,0.0,4.1255376012718926e-06,0.0,0.0,0.0,0.0,0.0,10.81076752237382,0.0,0.0,0.0 -8600,catchment_outflow,0.03299764909085181,2011-10-14,0.0,0.0,4.211829159290304e-06,0.0,0.0,0.0,0.0,0.0,10.850280160070396,0.0,0.0,0.0 -8601,reservoir_outflow,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8602,gw1_gw2,0.0,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8603,gw2_gw1,0.0004204108774965576,2011-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8604,urban_drainage,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8605,percolation,0.019546001365853403,2011-10-15,0.0,0.0,4.29537348836208e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8606,runoff,0.00030475182862046643,2011-10-15,0.0,0.0,6.903324641472929e-08,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 -8607,storm_outflow,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8608,baseflow,0.032584032535228166,2011-10-15,0.0,0.0,4.125962190989617e-06,0.0,0.0,0.0,0.0,0.0,10.81631478614211,0.0,0.0,0.0 -8609,catchment_outflow,0.032888784363848636,2011-10-15,0.0,0.0,4.194995437404346e-06,0.0,0.0,0.0,0.0,0.0,10.84797812682368,0.0,0.0,0.0 -8610,reservoir_outflow,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8611,gw1_gw2,0.0,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8612,gw2_gw1,0.00041760813831306367,2011-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8613,urban_drainage,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8614,percolation,0.01915508133853634,2011-10-16,0.0,0.0,4.209466018594839e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 -8615,runoff,0.00024380146289637315,2011-10-16,0.0,0.0,5.5226597131783433e-08,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 -8616,storm_outflow,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8617,baseflow,0.032550460157236435,2011-10-16,0.0,0.0,4.12617095055863e-06,0.0,0.0,0.0,0.0,0.0,10.821748550582585,0.0,0.0,0.0 -8618,catchment_outflow,0.03279426162013281,2011-10-16,0.0,0.0,4.181397547690414e-06,0.0,0.0,0.0,0.0,0.0,10.847111837521233,0.0,0.0,0.0 -8619,reservoir_outflow,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8620,gw1_gw2,0.0,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8621,gw2_gw1,0.0004148240840576634,2011-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8622,urban_drainage,0.033,2011-10-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -8623,percolation,0.01877197971176561,2011-10-17,0.0,0.0,4.1252766982229426e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240503,0.0,0.0,0.0 -8624,runoff,0.00019504117031709852,2011-10-17,0.0,0.0,4.418127770542674e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8625,storm_outflow,0.033,2011-10-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -8626,baseflow,0.03251601395612276,2011-10-17,0.0,0.0,4.126168714927792e-06,0.0,0.0,0.0,0.0,0.0,10.827071438443593,0.0,0.0,0.0 -8627,catchment_outflow,0.06571105512643986,2011-10-17,0.0,0.0,1.617034999263322e-05,0.0,0.0,0.0,0.0,0.0,11.15360302284331,0.0,0.0,0.0 -8628,reservoir_outflow,0.0165,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8629,gw1_gw2,0.0,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8630,gw2_gw1,0.0004120585901640439,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8631,urban_drainage,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8632,percolation,0.018396540117530297,2011-10-18,0.0,0.0,4.042771164258484e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -8633,runoff,0.00015603293625367885,2011-10-18,0.0,0.0,3.53450221643414e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8634,storm_outflow,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8635,baseflow,0.032480715271526274,2011-10-18,0.0,0.0,4.125960221051118e-06,0.0,0.0,0.0,0.0,0.0,10.832286000556522,0.0,0.0,0.0 -8636,catchment_outflow,0.03263674820777995,2011-10-18,0.0,0.0,4.16130524321546e-06,0.0,0.0,0.0,0.0,0.0,10.848546468005834,0.0,0.0,0.0 -8637,reservoir_outflow,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8638,gw1_gw2,0.0,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8639,gw2_gw1,0.0004093115328963393,2011-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8640,urban_drainage,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8641,percolation,0.018028609315179692,2011-10-19,0.0,0.0,3.961915740973315e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -8642,runoff,0.00012482634900294306,2011-10-19,0.0,0.0,2.827601773147312e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8643,storm_outflow,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8644,baseflow,0.032444585006635406,2011-10-19,0.0,0.0,4.125550109850924e-06,0.0,0.0,0.0,0.0,0.0,10.837394718230643,0.0,0.0,0.0 -8645,catchment_outflow,0.03256941135563835,2011-10-19,0.0,0.0,4.153826127582397e-06,0.0,0.0,0.0,0.0,0.0,10.850410407040702,0.0,0.0,0.0 -8646,reservoir_outflow,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8647,gw1_gw2,0.0,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8648,gw2_gw1,0.0004065827893438012,2011-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8649,urban_drainage,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8650,percolation,0.0176680371288761,2011-10-20,0.0,0.0,3.882677426153848e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8651,runoff,9.986107920235444e-05,2011-10-20,0.0,0.0,2.2620814185178493e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8652,storm_outflow,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8653,baseflow,0.032407643636941014,2011-10-20,0.0,0.0,4.1249429281416815e-06,0.0,0.0,0.0,0.0,0.0,10.842400005552337,0.0,0.0,0.0 -8654,catchment_outflow,0.032507504716143366,2011-10-20,0.0,0.0,4.14756374232686e-06,0.0,0.0,0.0,0.0,0.0,10.852817010115093,0.0,0.0,0.0 -8655,reservoir_outflow,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8656,gw1_gw2,0.0,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8657,gw2_gw1,0.000403872237414582,2011-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8658,urban_drainage,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8659,percolation,0.017314676386298574,2011-10-21,0.0,0.0,3.8050238776307703e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240508,0.0,0.0,0.0 -8660,runoff,7.988886336188355e-05,2011-10-21,0.0,0.0,1.8096651348142795e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8661,storm_outflow,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8662,baseflow,0.032369911218814405,2011-10-21,0.0,0.0,4.124143130515404e-06,0.0,0.0,0.0,0.0,0.0,10.847304211593153,0.0,0.0,0.0 -8663,catchment_outflow,0.03244980008217629,2011-10-21,0.0,0.0,4.142239781863547e-06,0.0,0.0,0.0,0.0,0.0,10.85564056090286,0.0,0.0,0.0 -8664,reservoir_outflow,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8665,gw1_gw2,0.0,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8666,gw2_gw1,0.00040117975583200407,2011-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8667,urban_drainage,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8668,percolation,0.016968382858572603,2011-10-22,0.0,0.0,3.7289234000781546e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8669,runoff,6.391109068950684e-05,2011-10-22,0.0,0.0,1.4477321078514236e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8670,storm_outflow,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8671,baseflow,0.0323314073979138,2011-10-22,0.0,0.0,4.123155081189311e-06,0.0,0.0,0.0,0.0,0.0,10.852109622530907,0.0,0.0,0.0 -8672,catchment_outflow,0.0323953184886033,2011-10-22,0.0,0.0,4.137632402267825e-06,0.0,0.0,0.0,0.0,0.0,10.85878043750789,0.0,0.0,0.0 -8673,reservoir_outflow,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8674,gw1_gw2,0.0,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8675,gw2_gw1,0.00039850522412621103,2011-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8676,urban_drainage,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8677,percolation,0.016629015201401153,2011-10-23,0.0,0.0,3.6543449320765924e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -8678,runoff,5.1128872551605475e-05,2011-10-23,0.0,0.0,1.1581856862811389e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825027,0.0,0.0,0.0 -8679,storm_outflow,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8680,baseflow,0.03229215141742252,2011-10-23,0.0,0.0,4.1219830558165285e-06,0.0,0.0,0.0,0.0,0.0,10.85681846368781,0.0,0.0,0.0 -8681,catchment_outflow,0.03234328028997412,2011-10-23,0.0,0.0,4.13356491267934e-06,0.0,0.0,0.0,0.0,0.0,10.862156258163791,0.0,0.0,0.0 -8682,reservoir_outflow,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8683,gw1_gw2,0.0,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8684,gw2_gw1,0.00039584852263185866,2011-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8685,urban_drainage,0.002999999999999999,2011-10-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0 -8686,percolation,0.01629643489737313,2011-10-24,0.0,0.0,3.5812580334350603e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -8687,runoff,4.090309804128438e-05,2011-10-24,0.0,0.0,9.26548549024911e-09,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8688,storm_outflow,0.002999999999999999,2011-10-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0 -8689,baseflow,0.03225216212612239,2011-10-24,0.0,0.0,4.120631243260574e-06,0.0,0.0,0.0,0.0,0.0,10.86143290148941,0.0,0.0,0.0 -8690,catchment_outflow,0.03529306522416367,2011-10-24,0.0,0.0,1.1129896728750823e-05,0.0,0.0,0.0,0.0,0.0,10.885316111453458,0.0,0.0,0.0 -8691,reservoir_outflow,0.0014999999999999996,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8692,gw1_gw2,0.0,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8693,gw2_gw1,0.00039320953248065397,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8694,urban_drainage,0.02700000000000001,2011-10-25,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 -8695,percolation,0.015970506199425666,2011-10-25,0.0,0.0,3.509632872766358e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8696,runoff,3.2722478433027505e-05,2011-10-25,0.0,0.0,7.412388392199288e-09,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8697,storm_outflow,0.02700000000000001,2011-10-25,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 -8698,baseflow,0.032211457986305654,2011-10-25,0.0,0.0,4.119103747334339e-06,0.0,0.0,0.0,0.0,0.0,10.865955045347949,0.0,0.0,0.0 -8699,catchment_outflow,0.05924418046473869,2011-10-25,0.0,0.0,5.126516135726539e-06,0.0,0.0,0.0,0.0,0.0,10.985872402450598,0.0,0.0,0.0 -8700,reservoir_outflow,0.013500000000000002,2011-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8701,gw1_gw2,0.0,2011-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8702,gw2_gw1,0.0003905881355974472,2011-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8703,urban_drainage,0.04,2011-10-26,0.0,0.0,6.153846153846153e-07,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0 -8704,percolation,0.015651096075437153,2011-10-26,0.0,0.0,3.4394402153110313e-06,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -8705,runoff,2.6177982746422004e-05,2011-10-26,0.0,0.0,5.929910713759431e-09,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -8706,storm_outflow,0.04,2011-10-26,0.0,0.0,6.153846153846153e-07,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0 -8707,baseflow,0.03217005708152848,2011-10-26,0.0,0.0,4.11740458850428e-06,0.0,0.0,0.0,0.0,0.0,10.870386949473511,0.0,0.0,0.0 -8708,catchment_outflow,0.0721962350642749,2011-10-26,0.0,0.0,4.738719114602654e-06,0.0,0.0,0.0,0.0,0.0,11.11161028477342,0.0,0.0,0.0 -8709,reservoir_outflow,0.0325,2011-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8710,gw1_gw2,0.0,2011-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8711,gw2_gw1,0.0003879842146936596,2011-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8712,urban_drainage,0.04,2011-10-27,0.0,0.0,9.079445145018915e-07,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -8713,percolation,0.01934427868395165,2011-10-27,0.0,0.0,4.330720848158253e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -8714,runoff,0.02743181548635615,2011-10-27,0.0,0.0,3.2049753857491487e-06,0.0,0.0,0.0,0.0,0.0,11.303444270576048,0.0,0.0,0.0 -8715,storm_outflow,0.04,2011-10-27,0.0,0.0,9.079445145018915e-07,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -8716,baseflow,0.03213799263553454,2011-10-27,0.0,0.0,4.117937879153416e-06,0.0,0.0,0.0,0.0,0.0,10.87480416651732,0.0,0.0,0.0 -8717,catchment_outflow,0.0995698081218907,2011-10-27,0.0,0.0,8.230857779404456e-06,0.0,0.0,0.0,0.0,0.0,11.207480548212715,0.0,0.0,0.0 -8718,reservoir_outflow,0.018,2011-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8719,gw1_gw2,0.0,2011-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8720,gw2_gw1,0.00038539765326230937,2011-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8721,urban_drainage,0.0009999999999999974,2011-10-28,0.0,0.0,1.4766708701134929e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -8722,percolation,0.018957393110272617,2011-10-28,0.0,0.0,4.2441064311950885e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -8723,runoff,0.010699965989019684,2011-10-28,0.0,0.0,2.5639803085993187e-06,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 -8724,storm_outflow,0.0009999999999999974,2011-10-28,0.0,0.0,1.4766708701134929e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -8725,baseflow,0.032105041136721385,2011-10-28,0.0,0.0,4.11825330053352e-06,0.0,0.0,0.0,0.0,0.0,10.879130961526103,0.0,0.0,0.0 -8726,catchment_outflow,0.04380500712574106,2011-10-28,0.0,0.0,8.15890447924633e-06,0.0,0.0,0.0,0.0,0.0,10.948995401813463,0.0,0.0,0.0 -8727,reservoir_outflow,0.0,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8728,gw1_gw2,0.0,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8729,gw2_gw1,0.0003828283355741036,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8730,urban_drainage,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8731,percolation,0.018578245248067164,2011-10-29,0.0,0.0,4.159224302571187e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -8732,runoff,0.010010264123959039,2011-10-29,0.0,0.0,2.051184246879455e-06,0.0,0.0,0.0,0.0,0.0,11.220477843311329,0.0,0.0,0.0 -8733,storm_outflow,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8734,baseflow,0.03207122414699974,2011-10-29,0.0,0.0,4.1183557280386134e-06,0.0,0.0,0.0,0.0,0.0,10.88336942563468,0.0,0.0,0.0 -8735,catchment_outflow,0.04208148827095878,2011-10-29,0.0,0.0,6.169539974918069e-06,0.0,0.0,0.0,0.0,0.0,10.963560132712926,0.0,0.0,0.0 -8736,reservoir_outflow,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8737,gw1_gw2,0.0,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8738,gw2_gw1,0.0003802761466703331,2011-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8739,urban_drainage,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8740,percolation,0.01820668034310582,2011-10-30,0.0,0.0,4.076039816519763e-06,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -8741,runoff,0.0073785191788271025,2011-10-30,0.0,0.0,1.6409473975035642e-06,0.0,0.0,0.0,0.0,0.0,11.180507901492943,0.0,0.0,0.0 -8742,storm_outflow,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8743,baseflow,0.03203656278749001,2011-10-30,0.0,0.0,4.1182499382598175e-06,0.0,0.0,0.0,0.0,0.0,10.887521592575787,0.0,0.0,0.0 -8744,catchment_outflow,0.039415081966317114,2011-10-30,0.0,0.0,5.759197335763382e-06,0.0,0.0,0.0,0.0,0.0,10.94236874731027,0.0,0.0,0.0 -8745,reservoir_outflow,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8746,gw1_gw2,0.0,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8747,gw2_gw1,0.00037774097235967476,2011-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8748,urban_drainage,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8749,percolation,0.01891404448483464,2011-10-31,0.0,0.0,4.25686356997438e-06,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 -8750,runoff,0.012809682971473932,2011-10-31,0.0,0.0,2.187239750619562e-06,0.0,0.0,0.0,0.0,0.0,11.59852664514566,0.0,0.0,0.0 -8751,storm_outflow,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8752,baseflow,0.03200375649173337,2011-10-31,0.0,0.0,4.118596472339104e-06,0.0,0.0,0.0,0.0,0.0,10.891657928813547,0.0,0.0,0.0 -8753,catchment_outflow,0.0448134394632073,2011-10-31,0.0,0.0,6.305836222958666e-06,0.0,0.0,0.0,0.0,0.0,11.093712586236155,0.0,0.0,0.0 -8754,reservoir_outflow,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8755,gw1_gw2,0.0,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8756,gw2_gw1,0.0003752226992105534,2011-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8757,urban_drainage,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8758,percolation,0.018535763595137943,2011-11-01,0.0,0.0,4.171726298574892e-06,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 -8759,runoff,0.007458103379252294,2011-11-01,0.0,0.0,1.7497918004956492e-06,0.0,0.0,0.0,0.0,0.0,11.380107595823091,0.0,0.0,0.0 -8760,storm_outflow,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8761,baseflow,0.03197008650949188,2011-11-01,0.0,0.0,4.1187292969046935e-06,0.0,0.0,0.0,0.0,0.0,10.89570981201229,0.0,0.0,0.0 -8762,catchment_outflow,0.03942818988874418,2011-11-01,0.0,0.0,5.868521097400343e-06,0.0,0.0,0.0,0.0,0.0,10.98733686257017,0.0,0.0,0.0 -8763,reservoir_outflow,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8764,gw1_gw2,0.0,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8765,gw2_gw1,0.00037272121454900997,2011-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8766,urban_drainage,0.04,2011-11-02,0.0,0.0,4.444444444444444e-06,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 -8767,percolation,0.021116522034257512,2011-11-02,0.0,0.0,4.794031687089354e-06,0.0,0.0,0.0,0.0,0.0,13.452102943441123,0.0,0.0,0.0 -8768,runoff,0.02598632053120066,2011-11-02,0.0,0.0,3.7522998220163795e-06,0.0,0.0,0.0,0.0,0.0,11.769109804342849,0.0,0.0,0.0 -8769,storm_outflow,0.04,2011-11-02,0.0,0.0,4.444444444444444e-06,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 -8770,baseflow,0.03194295259830379,2011-11-02,0.0,0.0,4.120417552880155e-06,0.0,0.0,0.0,0.0,0.0,10.89993469790237,0.0,0.0,0.0 -8771,catchment_outflow,0.09792927312950445,2011-11-02,0.0,0.0,1.2317161819340978e-05,0.0,0.0,0.0,0.0,0.0,11.489463552275273,0.0,0.0,0.0 -8772,reservoir_outflow,0.0225,2011-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8773,gw1_gw2,0.0,2011-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8774,gw2_gw1,0.00037023640645195144,2011-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8775,urban_drainage,0.025000000000000005,2011-11-03,0.0,0.0,1.5555555555555558e-06,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0 -8776,percolation,0.024539817349521435,2011-11-03,0.0,0.0,5.603470986063156e-06,0.0,0.0,0.0,0.0,0.0,13.158313255682367,0.0,0.0,0.0 -8777,runoff,0.038816394162795,2011-11-03,0.0,0.0,6.019572966665066e-06,0.0,0.0,0.0,0.0,0.0,11.499725514704641,0.0,0.0,0.0 -8778,storm_outflow,0.025000000000000005,2011-11-03,0.0,0.0,1.5555555555555558e-06,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0 -8779,baseflow,0.03192444476018184,2011-11-03,0.0,0.0,4.124125186463112e-06,0.0,0.0,0.0,0.0,0.0,10.904274647878816,0.0,0.0,0.0 -8780,catchment_outflow,0.09574083892297683,2011-11-03,0.0,0.0,1.1699253708683734e-05,0.0,0.0,0.0,0.0,0.0,11.249394912919538,0.0,0.0,0.0 -8781,reservoir_outflow,0.01,2011-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8782,gw1_gw2,0.0,2011-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8783,gw2_gw1,0.000367768163742177,2011-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8784,urban_drainage,0.020999999999999998,2011-11-04,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -8785,percolation,0.02811512443929793,2011-11-04,0.0,0.0,6.4333373269682704e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -8786,runoff,0.04807908409141585,2011-11-04,0.0,0.0,7.95544424208665e-06,0.0,0.0,0.0,0.0,0.0,11.179928944945438,0.0,0.0,0.0 -8787,storm_outflow,0.020999999999999998,2011-11-04,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -8788,baseflow,0.03191492145937963,2011-11-04,0.0,0.0,4.129898216814376e-06,0.0,0.0,0.0,0.0,0.0,10.90857510729382,0.0,0.0,0.0 -8789,catchment_outflow,0.10099400555079548,2011-11-04,0.0,0.0,1.3085342458901024e-05,0.0,0.0,0.0,0.0,0.0,10.97062202563947,0.0,0.0,0.0 -8790,reservoir_outflow,0.010500000000000002,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8791,gw1_gw2,0.0,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8792,gw2_gw1,0.0003653163759839373,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8793,urban_drainage,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8794,percolation,0.027552821950511976,2011-11-05,0.0,0.0,6.304670580428906e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -8795,runoff,0.027049643590979895,2011-11-05,0.0,0.0,6.36435539366932e-06,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -8796,storm_outflow,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8797,baseflow,0.031904016210607455,2011-11-05,0.0,0.0,4.135335147723412e-06,0.0,0.0,0.0,0.0,0.0,10.912781713214917,0.0,0.0,0.0 -8798,catchment_outflow,0.05895365980158735,2011-11-05,0.0,0.0,1.0499690541392733e-05,0.0,0.0,0.0,0.0,0.0,11.150398511048014,0.0,0.0,0.0 -8799,reservoir_outflow,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8800,gw1_gw2,0.0,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8801,gw2_gw1,0.0003628809334776051,2011-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8802,urban_drainage,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8803,percolation,0.02700176551150174,2011-11-06,0.0,0.0,6.1785771688203275e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -8804,runoff,0.021639714872783915,2011-11-06,0.0,0.0,5.0914843149354555e-06,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -8805,storm_outflow,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8806,baseflow,0.031891760583859695,2011-11-06,0.0,0.0,4.140443252776154e-06,0.0,0.0,0.0,0.0,0.0,10.916896867228335,0.0,0.0,0.0 -8807,catchment_outflow,0.05353147545664361,2011-11-06,0.0,0.0,9.23192756771161e-06,0.0,0.0,0.0,0.0,0.0,11.124581281598203,0.0,0.0,0.0 -8808,reservoir_outflow,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8809,gw1_gw2,0.0,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8810,gw2_gw1,0.00036046172725399115,2011-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8811,urban_drainage,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8812,percolation,0.026461730201271703,2011-11-07,0.0,0.0,6.055005625443921e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -8813,runoff,0.01924407442410011,2011-11-07,0.0,0.0,4.073187451948365e-06,0.0,0.0,0.0,0.0,0.0,11.16615469869939,0.0,0.0,0.0 -8814,storm_outflow,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8815,baseflow,0.03187818550790322,2011-11-07,0.0,0.0,4.1452296587078234e-06,0.0,0.0,0.0,0.0,0.0,10.920922895659611,0.0,0.0,0.0 -8816,catchment_outflow,0.05112225993200333,2011-11-07,0.0,0.0,8.218417110656188e-06,0.0,0.0,0.0,0.0,0.0,11.013236089073416,0.0,0.0,0.0 -8817,reservoir_outflow,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8818,gw1_gw2,0.0,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8819,gw2_gw1,0.00035805864907221266,2011-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8820,urban_drainage,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8821,percolation,0.02593249559724627,2011-11-08,0.0,0.0,5.933905512935042e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -8822,runoff,0.01618988978767769,2011-11-08,0.0,0.0,3.2585499615586916e-06,0.0,0.0,0.0,0.0,0.0,10.963622091287462,0.0,0.0,0.0 -8823,storm_outflow,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8824,baseflow,0.03186332128312658,2011-11-08,0.0,0.0,4.149701348343391e-06,0.0,0.0,0.0,0.0,0.0,10.924862052473859,0.0,0.0,0.0 -8825,catchment_outflow,0.048053211070804264,2011-11-08,0.0,0.0,7.408251309902083e-06,0.0,0.0,0.0,0.0,0.0,10.937920924973218,0.0,0.0,0.0 -8826,reservoir_outflow,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8827,gw1_gw2,0.0,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8828,gw2_gw1,0.00035567159141205453,2011-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8829,urban_drainage,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8830,percolation,0.02541384568530134,2011-11-09,0.0,0.0,5.8152274026763405e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -8831,runoff,0.013108353768113966,2011-11-09,0.0,0.0,2.606839969246954e-06,0.0,0.0,0.0,0.0,0.0,10.978729776720268,0.0,0.0,0.0 -8832,storm_outflow,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8833,baseflow,0.03184719759413202,2011-11-09,0.0,0.0,4.153865163479224e-06,0.0,0.0,0.0,0.0,0.0,10.928716522042256,0.0,0.0,0.0 -8834,catchment_outflow,0.044955551362245987,2011-11-09,0.0,0.0,6.760705132726178e-06,0.0,0.0,0.0,0.0,0.0,10.943299625030617,0.0,0.0,0.0 -8835,reservoir_outflow,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8836,gw1_gw2,0.0,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8837,gw2_gw1,0.00035330044746917366,2011-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8838,urban_drainage,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8839,percolation,0.02490556877159532,2011-11-10,0.0,0.0,5.698922854622815e-06,0.0,0.0,0.0,0.0,0.0,12.856943571900874,0.0,0.0,0.0 -8840,runoff,0.009347026463349265,2011-11-10,0.0,0.0,2.085471975397563e-06,0.0,0.0,0.0,0.0,0.0,11.295717118814876,0.0,0.0,0.0 -8841,storm_outflow,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8842,baseflow,0.03182984352207568,2011-11-10,0.0,0.0,4.157727807707083e-06,0.0,0.0,0.0,0.0,0.0,10.9324884217819,0.0,0.0,0.0 -8843,catchment_outflow,0.04117686998542494,2011-11-10,0.0,0.0,6.243199783104646e-06,0.0,0.0,0.0,0.0,0.0,11.014940250796997,0.0,0.0,0.0 -8844,reservoir_outflow,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8845,gw1_gw2,0.0,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8846,gw2_gw1,0.0003509451111529671,2011-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8847,urban_drainage,0.037000000000000005,2011-11-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -8848,percolation,0.027553846312059153,2011-11-11,0.0,0.0,6.322644920598363e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8849,runoff,0.02861882593090575,2011-11-11,0.0,0.0,4.127379323878066e-06,0.0,0.0,0.0,0.0,0.0,9.638088566770623,0.0,0.0,0.0 -8850,storm_outflow,0.037000000000000005,2011-11-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -8851,baseflow,0.03181915352905064,2011-11-11,0.0,0.0,4.163140100489311e-06,0.0,0.0,0.0,0.0,0.0,10.935690956459299,0.0,0.0,0.0 -8852,catchment_outflow,0.0974379794599564,2011-11-11,0.0,0.0,1.5290519424367373e-05,0.0,0.0,0.0,0.0,0.0,9.869708911534943,0.0,0.0,0.0 -8853,reservoir_outflow,0.018500000000000003,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8854,gw1_gw2,0.0,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8855,gw2_gw1,0.00034860547707840086,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8856,urban_drainage,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8857,percolation,0.027002769385817967,2011-11-12,0.0,0.0,6.196192022186395e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279378,0.0,0.0,0.0 -8858,runoff,0.01406309185799971,2011-11-12,0.0,0.0,3.3019034591024525e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8859,storm_outflow,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8860,baseflow,0.03180711256869256,2011-11-12,0.0,0.0,4.168222730293553e-06,0.0,0.0,0.0,0.0,0.0,10.938823831543514,0.0,0.0,0.0 -8861,catchment_outflow,0.04587020442669226,2011-11-12,0.0,0.0,7.4701261893960056e-06,0.0,0.0,0.0,0.0,0.0,10.637454720218377,0.0,0.0,0.0 -8862,reservoir_outflow,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8863,gw1_gw2,0.0,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8864,gw2_gw1,0.00034628144056458865,2011-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8865,urban_drainage,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8866,percolation,0.02646271399810161,2011-11-13,0.0,0.0,6.072268181742668e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 -8867,runoff,0.011250473486399768,2011-11-13,0.0,0.0,2.641522767281962e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8868,storm_outflow,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8869,baseflow,0.03179375157226608,2011-11-13,0.0,0.0,4.172982843922175e-06,0.0,0.0,0.0,0.0,0.0,10.941888820432704,0.0,0.0,0.0 -8870,catchment_outflow,0.04304422505866584,2011-11-13,0.0,0.0,6.814505611204137e-06,0.0,0.0,0.0,0.0,0.0,10.684163823487957,0.0,0.0,0.0 -8871,reservoir_outflow,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8872,gw1_gw2,0.0,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8873,gw2_gw1,0.0003439728976276868,2011-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8874,urban_drainage,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8875,percolation,0.025933459718139578,2011-11-14,0.0,0.0,5.950822818107814e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8876,runoff,0.009224285756236267,2011-11-14,0.0,0.0,2.1132182138255694e-06,0.0,0.0,0.0,0.0,0.0,9.95846745774964,0.0,0.0,0.0 -8877,storm_outflow,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8878,baseflow,0.03177910084263076,2011-11-14,0.0,0.0,4.17742744385764e-06,0.0,0.0,0.0,0.0,0.0,10.94488764130764,0.0,0.0,0.0 -8879,catchment_outflow,0.04100338659886703,2011-11-14,0.0,0.0,6.2906456576832095e-06,0.0,0.0,0.0,0.0,0.0,10.722978613697968,0.0,0.0,0.0 -8880,reservoir_outflow,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8881,gw1_gw2,0.0,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8882,gw2_gw1,0.00034167974497680833,2011-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8883,urban_drainage,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8884,percolation,0.02541479052377679,2011-11-15,0.0,0.0,5.831806361745658e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8885,runoff,0.007200303031295851,2011-11-15,0.0,0.0,1.6905745710604556e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8886,storm_outflow,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8887,baseflow,0.03176319006683363,2011-11-15,0.0,0.0,4.18156339115236e-06,0.0,0.0,0.0,0.0,0.0,10.947821959245061,0.0,0.0,0.0 -8888,catchment_outflow,0.038963493098129486,2011-11-15,0.0,0.0,5.872137962212816e-06,0.0,0.0,0.0,0.0,0.0,10.764506593928697,0.0,0.0,0.0 -8889,reservoir_outflow,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8890,gw1_gw2,0.0,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8891,gw2_gw1,0.00033940188001047034,2011-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8892,urban_drainage,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8893,percolation,0.024906494713301253,2011-11-16,0.0,0.0,5.715170234510745e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8894,runoff,0.006389181032099554,2011-11-16,0.0,0.0,1.3524596568483646e-06,0.0,0.0,0.0,0.0,0.0,9.983737306183073,0.0,0.0,0.0 -8895,storm_outflow,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8896,baseflow,0.0317460483284498,2011-11-16,0.0,0.0,4.185397408260756e-06,0.0,0.0,0.0,0.0,0.0,10.950693388234175,0.0,0.0,0.0 -8897,catchment_outflow,0.038135229360549354,2011-11-16,0.0,0.0,5.537857065109121e-06,0.0,0.0,0.0,0.0,0.0,10.788689446946611,0.0,0.0,0.0 -8898,reservoir_outflow,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8899,gw1_gw2,0.0,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8900,gw2_gw1,0.00033713920081037687,2011-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8901,urban_drainage,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8902,percolation,0.02440836481903523,2011-11-17,0.0,0.0,5.600866829820531e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8903,runoff,0.004608193940029344,2011-11-17,0.0,0.0,1.0819677254786917e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8904,storm_outflow,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8905,baseflow,0.031727704119676264,2011-11-17,0.0,0.0,4.188936081814656e-06,0.0,0.0,0.0,0.0,0.0,10.95350349310148,0.0,0.0,0.0 -8906,catchment_outflow,0.03633589805970561,2011-11-17,0.0,0.0,5.2709038072933476e-06,0.0,0.0,0.0,0.0,0.0,10.826977101378468,0.0,0.0,0.0 -8907,reservoir_outflow,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8908,gw1_gw2,0.0,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8909,gw2_gw1,0.00033489160613822124,2011-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8910,urban_drainage,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8911,percolation,0.023920197522654525,2011-11-18,0.0,0.0,5.48884949322412e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8912,runoff,0.0036865551520234756,2011-11-18,0.0,0.0,8.655741803829534e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8913,storm_outflow,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8914,baseflow,0.031708185353183704,2011-11-18,0.0,0.0,4.192185865343179e-06,0.0,0.0,0.0,0.0,0.0,10.956253791348747,0.0,0.0,0.0 -8915,catchment_outflow,0.03539474050520718,2011-11-18,0.0,0.0,5.0577600457261324e-06,0.0,0.0,0.0,0.0,0.0,10.85205471739768,0.0,0.0,0.0 -8916,reservoir_outflow,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8917,gw1_gw2,0.0,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8918,gw2_gw1,0.0003326589954303572,2011-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8919,urban_drainage,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8920,percolation,0.023441793572201435,2011-11-19,0.0,0.0,5.379072503359638e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8921,runoff,0.0029492441216187803,2011-11-19,0.0,0.0,6.924593443063626e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8922,storm_outflow,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8923,baseflow,0.03168751937373125,2011-11-19,0.0,0.0,4.195153081938221e-06,0.0,0.0,0.0,0.0,0.0,10.9589457549087,0.0,0.0,0.0 -8924,catchment_outflow,0.03463676349535003,2011-11-19,0.0,0.0,4.887612426244584e-06,0.0,0.0,0.0,0.0,0.0,10.873533080459291,0.0,0.0,0.0 -8925,reservoir_outflow,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8926,gw1_gw2,0.0,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8927,gw2_gw1,0.000330441268794246,2011-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8928,urban_drainage,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8929,percolation,0.022972957700757406,2011-11-20,0.0,0.0,5.271491053292446e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279378,0.0,0.0,0.0 -8930,runoff,0.0023593952972950243,2011-11-20,0.0,0.0,5.539674754450902e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8931,storm_outflow,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8932,baseflow,0.03166573296954882,2011-11-20,0.0,0.0,4.197843926866606e-06,0.0,0.0,0.0,0.0,0.0,10.961580811822685,0.0,0.0,0.0 -8933,catchment_outflow,0.03402512826684384,2011-11-20,0.0,0.0,4.751811402311697e-06,0.0,0.0,0.0,0.0,0.0,10.891839648591542,0.0,0.0,0.0 -8934,reservoir_outflow,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8935,gw1_gw2,0.0,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8936,gw2_gw1,0.0003282383270022393,2011-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8937,urban_drainage,0.017,2011-11-21,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -8938,percolation,0.02251349854674226,2011-11-21,0.0,0.0,5.166061232226597e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8939,runoff,0.0018875162378360192,2011-11-21,0.0,0.0,4.431739803560721e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8940,storm_outflow,0.017,2011-11-21,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -8941,baseflow,0.0316428523834918,2011-11-21,0.0,0.0,4.200264470130006e-06,0.0,0.0,0.0,0.0,0.0,10.964160347844329,0.0,0.0,0.0 -8942,catchment_outflow,0.05053036862132782,2011-11-21,0.0,0.0,1.464343845048608e-05,0.0,0.0,0.0,0.0,0.0,10.45433201510302,0.0,0.0,0.0 -8943,reservoir_outflow,0.0085,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8944,gw1_gw2,0.0,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8945,gw2_gw1,0.00032605007148891476,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8946,urban_drainage,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8947,percolation,0.022063228575807413,2011-11-22,0.0,0.0,5.062740007582065e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 -8948,runoff,0.0015100129902688158,2011-11-22,0.0,0.0,3.545391842848577e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8949,storm_outflow,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8950,baseflow,0.03161890332397259,2011-11-22,0.0,0.0,4.2024206589736355e-06,0.0,0.0,0.0,0.0,0.0,10.96668570797303,0.0,0.0,0.0 -8951,catchment_outflow,0.033128916314241405,2011-11-22,0.0,0.0,4.556959843258493e-06,0.0,0.0,0.0,0.0,0.0,10.920611223053257,0.0,0.0,0.0 -8952,reservoir_outflow,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8953,gw1_gw2,0.0,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8954,gw2_gw1,0.0003238764043457465,2011-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8955,urban_drainage,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8956,percolation,0.021621964004291266,2011-11-23,0.0,0.0,4.961485207430423e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8957,runoff,0.0012080103922150526,2011-11-23,0.0,0.0,2.8363134742788613e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8958,storm_outflow,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8959,baseflow,0.03159391097567339,2011-11-23,0.0,0.0,4.204318320344778e-06,0.0,0.0,0.0,0.0,0.0,10.96915819792079,0.0,0.0,0.0 -8960,catchment_outflow,0.03280192136788845,2011-11-23,0.0,0.0,4.487949667772664e-06,0.0,0.0,0.0,0.0,0.0,10.931840109631821,0.0,0.0,0.0 -8961,reservoir_outflow,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8962,gw1_gw2,0.0,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8963,gw2_gw1,0.00032171722831666474,2011-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8964,urban_drainage,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8965,percolation,0.021189524724205443,2011-11-24,0.0,0.0,4.862255503281815e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8966,runoff,0.0009664083137720421,2011-11-24,0.0,0.0,2.2690507794230895e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8967,storm_outflow,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8968,baseflow,0.03156790001004472,2011-11-24,0.0,0.0,4.20596316330212e-06,0.0,0.0,0.0,0.0,0.0,10.971579085515792,0.0,0.0,0.0 -8969,catchment_outflow,0.03253430832381676,2011-11-24,0.0,0.0,4.432868241244429e-06,0.0,0.0,0.0,0.0,0.0,10.941407134286584,0.0,0.0,0.0 -8970,reservoir_outflow,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8971,gw1_gw2,0.0,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8972,gw2_gw1,0.00031957244679468036,2011-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8973,urban_drainage,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8974,percolation,0.02076573422972133,2011-11-25,0.0,0.0,4.765010393216178e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279378,0.0,0.0,0.0 -8975,runoff,0.0007731266510176336,2011-11-25,0.0,0.0,1.8152406235384716e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8976,storm_outflow,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8977,baseflow,0.031540894595593914,2011-11-25,0.0,0.0,4.207360781376906e-06,0.0,0.0,0.0,0.0,0.0,10.97394960204589,0.0,0.0,0.0 -8978,catchment_outflow,0.03231402124661155,2011-11-25,0.0,0.0,4.388884843730753e-06,0.0,0.0,0.0,0.0,0.0,10.949590777908321,0.0,0.0,0.0 -8979,reservoir_outflow,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8980,gw1_gw2,0.0,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8981,gw2_gw1,0.0003174419638160231,2011-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8982,urban_drainage,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8983,percolation,0.020350419545126903,2011-11-26,0.0,0.0,4.6697101853518545e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8984,runoff,0.0006185013208141068,2011-11-26,0.0,0.0,1.452192498830777e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8985,storm_outflow,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8986,baseflow,0.031512918407967744,2011-11-26,0.0,0.0,4.208516654886843e-06,0.0,0.0,0.0,0.0,0.0,10.97627094354498,0.0,0.0,0.0 -8987,catchment_outflow,0.03213141972878185,2011-11-26,0.0,0.0,4.35373590476992e-06,0.0,0.0,0.0,0.0,0.0,10.956628456325626,0.0,0.0,0.0 -8988,reservoir_outflow,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8989,gw1_gw2,0.0,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8990,gw2_gw1,0.0003153256840571217,2011-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8991,urban_drainage,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8992,percolation,0.019943411154224364,2011-11-27,0.0,0.0,4.576315981644817e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8993,runoff,0.0004948010566512855,2011-11-27,0.0,0.0,1.1617539990646217e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8994,storm_outflow,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8995,baseflow,0.03148399463983339,2011-11-27,0.0,0.0,4.209436153203738e-06,0.0,0.0,0.0,0.0,0.0,10.978544272025106,0.0,0.0,0.0 -8996,catchment_outflow,0.03197879569648467,2011-11-27,0.0,0.0,4.3256115531102e-06,0.0,0.0,0.0,0.0,0.0,10.962720109938866,0.0,0.0,0.0 -8997,reservoir_outflow,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8998,gw1_gw2,0.0,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8999,gw2_gw1,0.00031322351282980776,2011-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9000,urban_drainage,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9001,percolation,0.019544542931139875,2011-11-28,0.0,0.0,4.48478966201192e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9002,runoff,0.0003958408453210283,2011-11-28,0.0,0.0,9.294031992516973e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9003,storm_outflow,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9004,baseflow,0.03145414601056165,2011-11-28,0.0,0.0,4.210124536975758e-06,0.0,0.0,0.0,0.0,0.0,10.980770716656934,0.0,0.0,0.0 -9005,catchment_outflow,0.03184998685588268,2011-11-28,0.0,0.0,4.303064856900928e-06,0.0,0.0,0.0,0.0,0.0,10.968032518782627,0.0,0.0,0.0 -9006,reservoir_outflow,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9007,gw1_gw2,0.0,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9008,gw2_gw1,0.000311135356077763,2011-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9009,urban_drainage,0.018,2011-11-29,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0 -9010,percolation,0.01915365207251708,2011-11-29,0.0,0.0,4.3950938687716824e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9011,runoff,0.00031667267625682267,2011-11-29,0.0,0.0,7.435225594013579e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9012,storm_outflow,0.018,2011-11-29,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0 -9013,baseflow,0.03142339477571655,2011-11-29,0.0,0.0,4.210586960305248e-06,0.0,0.0,0.0,0.0,0.0,10.982951374901143,0.0,0.0,0.0 -9014,catchment_outflow,0.04974006745197337,2011-11-29,0.0,0.0,1.2284939216245382e-05,0.0,0.0,0.0,0.0,0.0,10.141207754601064,0.0,0.0,0.0 -9015,reservoir_outflow,0.009,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9016,gw1_gw2,0.0,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9017,gw2_gw1,0.000309061120370302,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9018,urban_drainage,0.002000000000000001,2011-11-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -9019,percolation,0.01877057903106674,2011-11-30,0.0,0.0,4.307191991396249e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9020,runoff,0.00025333814100545816,2011-11-30,0.0,0.0,5.948180475210864e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9021,storm_outflow,0.002000000000000001,2011-11-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -9022,baseflow,0.03139176273635492,2011-11-30,0.0,0.0,4.210828472882976e-06,0.0,0.0,0.0,0.0,0.0,10.985087313593068,0.0,0.0,0.0 -9023,catchment_outflow,0.033645100877360376,2011-11-30,0.0,0.0,5.270310277635085e-06,0.0,0.0,0.0,0.0,0.0,10.810294450715972,0.0,0.0,0.0 -9024,reservoir_outflow,0.0010000000000000005,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9025,gw1_gw2,0.0,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9026,gw2_gw1,0.00030700071290112874,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9027,urban_drainage,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9028,percolation,0.018395167450445404,2011-12-01,0.0,0.0,4.221048151568324e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9029,runoff,0.00020267051280436653,2011-12-01,0.0,0.0,4.758544380168691e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9030,storm_outflow,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9031,baseflow,0.03135927124814014,2011-12-01,0.0,0.0,4.210854022079689e-06,0.0,0.0,0.0,0.0,0.0,10.987179569982883,0.0,0.0,0.0 -9032,catchment_outflow,0.031561941760944505,2011-12-01,0.0,0.0,4.258439465881376e-06,0.0,0.0,0.0,0.0,0.0,10.980556937515473,0.0,0.0,0.0 -9033,reservoir_outflow,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9034,gw1_gw2,0.0,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9035,gw2_gw1,0.0003049540414817642,2011-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9036,urban_drainage,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9037,percolation,0.018027264101436496,2011-12-02,0.0,0.0,4.136627188536958e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9038,runoff,0.00016213641024349318,2011-12-02,0.0,0.0,3.806835504134951e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9039,storm_outflow,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9040,baseflow,0.03132594123027338,2011-12-02,0.0,0.0,4.2106684549958315e-06,0.0,0.0,0.0,0.0,0.0,10.989229152733412,0.0,0.0,0.0 -9041,catchment_outflow,0.03148807764051687,2011-12-02,0.0,0.0,4.248736810037181e-06,0.0,0.0,0.0,0.0,0.0,10.983908064984107,0.0,0.0,0.0 -9042,reservoir_outflow,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9043,gw1_gw2,0.0,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9044,gw2_gw1,0.0003029210145385264,2011-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9045,urban_drainage,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9046,percolation,0.017666718819407765,2011-12-03,0.0,0.0,4.053894644766218e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9047,runoff,0.00012970912819479456,2011-12-03,0.0,0.0,3.0454684033079617e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9048,storm_outflow,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9049,baseflow,0.03129179317424622,2011-12-03,0.0,0.0,4.210276520470258e-06,0.0,0.0,0.0,0.0,0.0,10.991237042877597,0.0,0.0,0.0 -9050,catchment_outflow,0.031421502302441014,2011-12-03,0.0,0.0,4.2407312045033375e-06,0.0,0.0,0.0,0.0,0.0,10.986962864649797,0.0,0.0,0.0 -9051,reservoir_outflow,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9052,gw1_gw2,0.0,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9053,gw2_gw1,0.0003009015411082672,2011-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9054,urban_drainage,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9055,percolation,0.01731338444301961,2011-12-04,0.0,0.0,3.9728167518708945e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9056,runoff,0.00010376730255583565,2011-12-04,0.0,0.0,2.43637472264637e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9057,storm_outflow,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9058,baseflow,0.03125684715241815,2011-12-04,0.0,0.0,4.209682871048759e-06,0.0,0.0,0.0,0.0,0.0,10.993204194737526,0.0,0.0,0.0 -9059,catchment_outflow,0.031360614454973984,2011-12-04,0.0,0.0,4.234046618275223e-06,0.0,0.0,0.0,0.0,0.0,10.989771704375535,0.0,0.0,0.0 -9060,reservoir_outflow,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9061,gw1_gw2,0.0,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9062,gw2_gw1,0.00029889553083428666,2011-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9063,urban_drainage,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9064,percolation,0.01696711675415922,2011-12-05,0.0,0.0,3.8933604168334764e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9065,runoff,8.301384204466852e-05,2011-12-05,0.0,0.0,1.949099778117096e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9066,storm_outflow,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9067,baseflow,0.031221122826422507,2011-12-05,0.0,0.0,4.2088920649132214e-06,0.0,0.0,0.0,0.0,0.0,10.995131536806785,0.0,0.0,0.0 -9068,catchment_outflow,0.031304136668467174,2011-12-05,0.0,0.0,4.228383062694392e-06,0.0,0.0,0.0,0.0,0.0,10.992375479277579,0.0,0.0,0.0 -9069,reservoir_outflow,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9070,gw1_gw2,0.0,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9071,gw2_gw1,0.0002969028939622476,2011-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9072,urban_drainage,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9073,percolation,0.016627774419076032,2011-12-06,0.0,0.0,3.815493208496806e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9074,runoff,6.641107363573481e-05,2011-12-06,0.0,0.0,1.5592798224936767e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9075,storm_outflow,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9076,baseflow,0.031184639455404138,2011-12-06,0.0,0.0,4.20790856777218e-06,0.0,0.0,0.0,0.0,0.0,10.997019972597899,0.0,0.0,0.0 -9077,catchment_outflow,0.03125105052903987,2011-12-06,0.0,0.0,4.223501365997117e-06,0.0,0.0,0.0,0.0,0.0,10.994807368121373,0.0,0.0,0.0 -9078,reservoir_outflow,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9079,gw1_gw2,0.0,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9080,gw2_gw1,0.00029492354133555667,2011-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9081,urban_drainage,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9082,percolation,0.01629521893069451,2011-12-07,0.0,0.0,3.73918334432687e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9083,runoff,5.3128858908587845e-05,2011-12-07,0.0,0.0,1.2474238579949413e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9084,storm_outflow,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9085,baseflow,0.031147415904092368,2011-12-07,0.0,0.0,4.206736754713567e-06,0.0,0.0,0.0,0.0,0.0,10.998870381456397,0.0,0.0,0.0 -9086,catchment_outflow,0.031200544763000954,2011-12-07,0.0,0.0,4.219210993293516e-06,0.0,0.0,0.0,0.0,0.0,10.997094281648863,0.0,0.0,0.0 -9087,reservoir_outflow,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9088,gw1_gw2,0.0,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9089,gw2_gw1,0.0002929573843934108,2011-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9090,urban_drainage,0.034999999999999996,2011-12-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 -9091,percolation,0.015969314552080623,2011-12-08,0.0,0.0,3.6643996774403335e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9092,runoff,4.2503087126870276e-05,2011-12-08,0.0,0.0,9.97939086395953e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9093,storm_outflow,0.034999999999999996,2011-12-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 -9094,baseflow,0.03110947065071234,2011-12-08,0.0,0.0,4.205380912020384e-06,0.0,0.0,0.0,0.0,0.0,11.000683619343109,0.0,0.0,0.0 -9095,catchment_outflow,0.06615197373783921,2011-12-08,0.0,0.0,1.2215360302884342e-05,0.0,0.0,0.0,0.0,0.0,7.9630820995941205,0.0,0.0,0.0 -9096,reservoir_outflow,0.017499999999999998,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9097,gw1_gw2,0.0,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9098,gw2_gw1,0.0002910043351640468,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9099,urban_drainage,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9100,percolation,0.01564992826103901,2011-12-09,0.0,0.0,3.5911116838915267e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9101,runoff,3.400246970149622e-05,2011-12-09,0.0,0.0,7.983512691167624e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9102,storm_outflow,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9103,baseflow,0.031070821794738152,2011-12-09,0.0,0.0,4.20384523895006e-06,0.0,0.0,0.0,0.0,0.0,11.00246051958606,0.0,0.0,0.0 -9104,catchment_outflow,0.031104824264439647,2011-12-09,0.0,0.0,4.211828751641228e-06,0.0,0.0,0.0,0.0,0.0,11.001316393084927,0.0,0.0,0.0 -9105,reservoir_outflow,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9106,gw1_gw2,0.0,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9107,gw2_gw1,0.000289064306262965,2011-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9108,urban_drainage,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9109,percolation,0.015336929695818227,2011-12-10,0.0,0.0,3.5192894502136962e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -9110,runoff,2.7201975761196976e-05,2011-12-10,0.0,0.0,6.386810152934099e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9111,storm_outflow,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9112,baseflow,0.031031487064490857,2011-12-10,0.0,0.0,4.202133849478221e-06,0.0,0.0,0.0,0.0,0.0,11.004201893603438,0.0,0.0,0.0 -9113,catchment_outflow,0.031058689040252056,2011-12-10,0.0,0.0,4.208520659631155e-06,0.0,0.0,0.0,0.0,0.0,11.003283707656179,0.0,0.0,0.0 -9114,reservoir_outflow,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9115,gw1_gw2,0.0,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9116,gw2_gw1,0.0002871372108877779,2011-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9117,urban_drainage,0.04,2011-12-11,0.0,0.0,2.6086956521739132e-06,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0 -9118,percolation,0.015030191101901862,2011-12-11,0.0,0.0,3.4489036612094223e-06,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 -9119,runoff,2.176158060895758e-05,2011-12-11,0.0,0.0,5.109448122347279e-09,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -9120,storm_outflow,0.04,2011-12-11,0.0,0.0,2.6086956521739132e-06,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0 -9121,baseflow,0.030991483824584384,2011-12-11,0.0,0.0,4.200250774007549e-06,0.0,0.0,0.0,0.0,0.0,11.005908531598815,0.0,0.0,0.0 -9122,catchment_outflow,0.07101324540519334,2011-12-11,0.0,0.0,6.81405587430381e-06,0.0,0.0,0.0,0.0,0.0,7.841882402635067,0.0,0.0,0.0 -9123,reservoir_outflow,0.023,2011-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9124,gw1_gw2,0.0,2011-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9125,gw2_gw1,0.00028522296281519033,2011-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9126,urban_drainage,0.04,2011-12-12,0.0,0.0,3.198400799600199e-07,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0 -9127,percolation,0.029031790287964515,2011-12-12,0.0,0.0,6.67696689263793e-06,0.0,0.0,0.0,0.0,0.0,9.242459664443473,0.0,0.0,0.0 -9128,runoff,0.09787458774096558,2011-12-12,0.0,0.0,1.0994225240673528e-05,0.0,0.0,0.0,0.0,0.0,5.6990302218120625,0.0,0.0,0.0 -9129,storm_outflow,0.04,2011-12-12,0.0,0.0,3.198400799600199e-07,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0 -9130,baseflow,0.030986584590742834,2011-12-12,0.0,0.0,4.206442564304125e-06,0.0,0.0,0.0,0.0,0.0,11.001778028159102,0.0,0.0,0.0 -9131,catchment_outflow,0.16886117233170841,2011-12-12,0.0,0.0,1.5520507884937672e-05,0.0,0.0,0.0,0.0,0.0,6.608531402284073,0.0,0.0,0.0 -9132,reservoir_outflow,0.08400000000000002,2011-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9133,gw1_gw2,0.0,2011-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9134,gw2_gw1,0.0002833214763965586,2011-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9135,urban_drainage,0.04,2011-12-13,0.0,0.0,3.7492565934227454e-07,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0 -9136,percolation,0.04256332064844225,2011-12-13,0.0,0.0,9.629443749063779e-06,0.0,0.0,0.0,0.0,0.0,8.180408753151177,0.0,0.0,0.0 -9137,runoff,0.13471006183376072,2011-12-13,0.0,0.0,1.9082100840134187e-05,0.0,0.0,0.0,0.0,0.0,5.81501965947053,0.0,0.0,0.0 -9138,storm_outflow,0.04,2011-12-13,0.0,0.0,3.7492565934227454e-07,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0 -9139,baseflow,0.031015526430887085,2011-12-13,0.0,0.0,4.220000067266024e-06,0.0,0.0,0.0,0.0,0.0,10.992098453205939,0.0,0.0,0.0 -9140,catchment_outflow,0.20572558826464782,2011-12-13,0.0,0.0,2.3677026566742486e-05,0.0,0.0,0.0,0.0,0.0,6.5241864937927145,0.0,0.0,0.0 -9141,reservoir_outflow,0.0435,2011-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9142,gw1_gw2,0.0,2011-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9143,gw2_gw1,0.0002814326665539824,2011-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9144,urban_drainage,0.04,2011-12-14,0.0,0.0,4.2802200135298287e-07,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0 -9145,percolation,0.053661867360134057,2011-12-14,0.0,0.0,1.1938264721628707e-05,0.0,0.0,0.0,0.0,0.0,7.7094157315362155,0.0,0.0,0.0 -9146,runoff,0.14991683073051257,2011-12-14,0.0,0.0,2.3603713497261355e-05,0.0,0.0,0.0,0.0,0.0,5.772567669586662,0.0,0.0,0.0 -9147,storm_outflow,0.04,2011-12-14,0.0,0.0,4.2802200135298287e-07,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0 -9148,baseflow,0.031072142283210202,2011-12-14,0.0,0.0,4.239295728901931e-06,0.0,0.0,0.0,0.0,0.0,10.97792539722624,0.0,0.0,0.0 -9149,catchment_outflow,0.22098897301372278,2011-12-14,0.0,0.0,2.8271031227516267e-05,0.0,0.0,0.0,0.0,0.0,6.428199282548706,0.0,0.0,0.0 -9150,reservoir_outflow,0.035500000000000004,2011-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9151,gw1_gw2,0.0,2011-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9152,gw2_gw1,0.0002795564487771074,2011-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9153,urban_drainage,0.04,2011-12-15,0.0,0.0,4.952297889652741e-07,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0 -9154,percolation,0.06198204721465508,2011-12-15,0.0,0.0,1.360222511039289e-05,0.0,0.0,0.0,0.0,0.0,7.419661036505669,0.0,0.0,0.0 -9155,runoff,0.150660878772595,2011-12-15,0.0,0.0,2.522538974179829e-05,0.0,0.0,0.0,0.0,0.0,5.699210940140556,0.0,0.0,0.0 -9156,storm_outflow,0.04,2011-12-15,0.0,0.0,4.952297889652741e-07,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0 -9157,baseflow,0.031149417045538814,2011-12-15,0.0,0.0,4.2627030523556585e-06,0.0,0.0,0.0,0.0,0.0,10.960224543524388,0.0,0.0,0.0 -9158,catchment_outflow,0.22181029581813383,2011-12-15,0.0,0.0,2.9983322583119224e-05,0.0,0.0,0.0,0.0,0.0,6.3533256995587335,0.0,0.0,0.0 -9159,reservoir_outflow,0.026,2011-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9160,gw1_gw2,0.0,2011-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9161,gw2_gw1,0.0002776927391185069,2011-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9162,urban_drainage,0.04,2011-12-16,0.0,0.0,6.562237944705278e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -9163,percolation,0.06410161487480259,2011-12-16,0.0,0.0,1.4006469410478132e-05,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 -9164,runoff,0.117145275008533,2011-12-16,0.0,0.0,2.2434607801082294e-05,0.0,0.0,0.0,0.0,0.0,5.7644214298928365,0.0,0.0,0.0 -9165,storm_outflow,0.04,2011-12-16,0.0,0.0,6.562237944705278e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -9166,baseflow,0.03123179754011197,2011-12-16,0.0,0.0,4.287062468250964e-06,0.0,0.0,0.0,0.0,0.0,10.941545089823638,0.0,0.0,0.0 -9167,catchment_outflow,0.18837707254864497,2011-12-16,0.0,0.0,2.7377894063803785e-05,0.0,0.0,0.0,0.0,0.0,6.504371541690911,0.0,0.0,0.0 -9168,reservoir_outflow,0.002999999999999999,2011-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9169,gw1_gw2,0.0,2011-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9170,gw2_gw1,0.0002758414541906618,2011-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9171,urban_drainage,0.04,2011-12-17,0.0,0.0,9.410429768537159e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -9172,percolation,0.06281958257730653,2011-12-17,0.0,0.0,1.3726340022268566e-05,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 -9173,runoff,0.08650465844893215,2011-12-17,0.0,0.0,1.7947686240865836e-05,0.0,0.0,0.0,0.0,0.0,5.871786862015751,0.0,0.0,0.0 -9174,storm_outflow,0.04,2011-12-17,0.0,0.0,9.410429768537159e-07,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -9175,baseflow,0.03131076700270496,2011-12-17,0.0,0.0,4.310660662136008e-06,0.0,0.0,0.0,0.0,0.0,10.92337908740475,0.0,0.0,0.0 -9176,catchment_outflow,0.15781542545163713,2011-12-17,0.0,0.0,2.319938987985556e-05,0.0,0.0,0.0,0.0,0.0,6.705503638470638,0.0,0.0,0.0 -9177,reservoir_outflow,0.0,2011-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9178,gw1_gw2,0.0,2011-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9179,gw2_gw1,0.0002740025111629407,2011-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9180,urban_drainage,0.04,2011-12-18,0.0,0.0,1.3920066822937638e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -9181,percolation,0.0615631909257604,2011-12-18,0.0,0.0,1.3451813221823197e-05,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 -9182,runoff,0.06960841100701042,2011-12-18,0.0,0.0,1.4358148992692667e-05,0.0,0.0,0.0,0.0,0.0,5.849248327667147,0.0,0.0,0.0 -9183,storm_outflow,0.04,2011-12-18,0.0,0.0,1.3920066822937638e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -9184,baseflow,0.0313863980625126,2011-12-18,0.0,0.0,4.333513543535226e-06,0.0,0.0,0.0,0.0,0.0,10.905708383492394,0.0,0.0,0.0 -9185,catchment_outflow,0.140994809069523,2011-12-18,0.0,0.0,2.0083669218521657e-05,0.0,0.0,0.0,0.0,0.0,6.792614618749888,0.0,0.0,0.0 -9186,reservoir_outflow,0.0,2011-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9187,gw1_gw2,0.0,2011-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9188,gw2_gw1,0.00027217582775520557,2011-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9189,urban_drainage,0.04,2011-12-19,0.0,0.0,1.483926809642168e-06,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0 -9190,percolation,0.06544389618468839,2011-12-19,0.0,0.0,1.420884311964002e-05,0.0,0.0,0.0,0.0,0.0,7.103656958524625,0.0,0.0,0.0 -9191,runoff,0.08892022254310798,2011-12-19,0.0,0.0,1.4906739734998416e-05,0.0,0.0,0.0,0.0,0.0,5.120166486242403,0.0,0.0,0.0 -9192,storm_outflow,0.04,2011-12-19,0.0,0.0,1.483926809642168e-06,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0 -9193,baseflow,0.03147154180781804,2011-12-19,0.0,0.0,4.358201867475489e-06,0.0,0.0,0.0,0.0,0.0,10.885942823525244,0.0,0.0,0.0 -9194,catchment_outflow,0.160391764350926,2011-12-19,0.0,0.0,2.0748868412116074e-05,0.0,0.0,0.0,0.0,0.0,6.167875211055827,0.0,0.0,0.0 -9195,reservoir_outflow,0.011,2011-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9196,gw1_gw2,0.0,2011-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9197,gw2_gw1,0.00027036132223656756,2011-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9198,urban_drainage,0.04,2011-12-20,0.0,0.0,1.5172811746875222e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -9199,percolation,0.06952047406931978,2011-12-20,0.0,0.0,1.498682014352778e-05,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 -9200,runoff,0.09363464668108117,2011-12-20,0.0,0.0,1.5465904742267272e-05,0.0,0.0,0.0,0.0,0.0,4.924298295943825,0.0,0.0,0.0 -9201,storm_outflow,0.04,2011-12-20,0.0,0.0,1.5172811746875222e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -9202,baseflow,0.0315666641384718,2011-12-20,0.0,0.0,4.3847734131656194e-06,0.0,0.0,0.0,0.0,0.0,10.863897770708597,0.0,0.0,0.0 -9203,catchment_outflow,0.16520131081955297,2011-12-20,0.0,0.0,2.1367959330120416e-05,0.0,0.0,0.0,0.0,0.0,5.9404767869547666,0.0,0.0,0.0 -9204,reservoir_outflow,0.012499999999999997,2011-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9205,gw1_gw2,0.0,2011-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9206,gw2_gw1,0.0002685589134218347,2011-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9207,urban_drainage,0.027999999999999966,2011-12-21,0.0,0.0,2.782805380257837e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -9208,percolation,0.0681300645879334,2011-12-21,0.0,0.0,1.4687083740657226e-05,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 -9209,runoff,0.06020503002939261,2011-12-21,0.0,0.0,1.2372723793813817e-05,0.0,0.0,0.0,0.0,0.0,5.258816555668013,0.0,0.0,0.0 -9210,storm_outflow,0.027999999999999966,2011-12-21,0.0,0.0,2.782805380257837e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -9211,baseflow,0.03165807263959545,2011-12-21,0.0,0.0,4.410529188984348e-06,0.0,0.0,0.0,0.0,0.0,10.842474603759847,0.0,0.0,0.0 -9212,catchment_outflow,0.11986310266898803,2011-12-21,0.0,0.0,1.9566058363056e-05,0.0,0.0,0.0,0.0,0.0,6.540844229659835,0.0,0.0,0.0 -9213,reservoir_outflow,0.0,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9214,gw1_gw2,0.0,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9215,gw2_gw1,0.0002667685206652948,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9216,urban_drainage,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9217,percolation,0.06676746329617474,2011-12-22,0.0,0.0,1.4393342065844082e-05,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 -9218,runoff,0.04783251872737228,2011-12-22,0.0,0.0,9.898179035051054e-06,0.0,0.0,0.0,0.0,0.0,5.268395603987982,0.0,0.0,0.0 -9219,storm_outflow,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9220,baseflow,0.031745846116236896,2011-12-22,0.0,0.0,4.435486221176498e-06,0.0,0.0,0.0,0.0,0.0,10.821650590337043,0.0,0.0,0.0 -9221,catchment_outflow,0.07957836484360917,2011-12-22,0.0,0.0,1.4333665256227552e-05,0.0,0.0,0.0,0.0,0.0,7.48373112372781,0.0,0.0,0.0 -9222,reservoir_outflow,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9223,gw1_gw2,0.0,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9224,gw2_gw1,0.0002649900638610703,2011-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9225,urban_drainage,0.04,2011-12-23,0.0,0.0,1.5384615384615385e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -9226,percolation,0.072952396340516,2011-12-23,0.0,0.0,1.5565701741614047e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -9227,runoff,0.08972057815739351,2011-12-23,0.0,0.0,1.2785964951663664e-05,0.0,0.0,0.0,0.0,0.0,4.958410946950448,0.0,0.0,0.0 -9228,storm_outflow,0.04,2011-12-23,0.0,0.0,1.5384615384615385e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -9229,baseflow,0.031848862491797594,2011-12-23,0.0,0.0,4.463311759977591e-06,0.0,0.0,0.0,0.0,0.0,10.797958335196226,0.0,0.0,0.0 -9230,catchment_outflow,0.1615694406491911,2011-12-23,0.0,0.0,1.8787738250102795e-05,0.0,0.0,0.0,0.0,0.0,5.9968488876304,0.0,0.0,0.0 -9231,reservoir_outflow,0.026,2011-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9232,gw1_gw2,0.0,2011-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9233,gw2_gw1,0.00026322346343565783,2011-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9234,urban_drainage,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9235,percolation,0.07149334841370568,2011-12-24,0.0,0.0,1.5254387706781766e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -9236,runoff,0.05184313696423035,2011-12-24,0.0,0.0,1.022877196133093e-05,0.0,0.0,0.0,0.0,0.0,5.140494162162675,0.0,0.0,0.0 -9237,storm_outflow,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9238,baseflow,0.031947973706602364,2011-12-24,0.0,0.0,4.490289449844602e-06,0.0,0.0,0.0,0.0,0.0,10.774944501558391,0.0,0.0,0.0 -9239,catchment_outflow,0.08379111067083272,2011-12-24,0.0,0.0,1.4719061411175532e-05,0.0,0.0,0.0,0.0,0.0,7.2888040467436825,0.0,0.0,0.0 -9240,reservoir_outflow,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9241,gw1_gw2,0.0,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9242,gw2_gw1,0.0002614686403457967,2011-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9243,urban_drainage,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9244,percolation,0.07006348144543156,2011-12-25,0.0,0.0,1.4949299952646131e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -9245,runoff,0.043142930022033954,2011-12-25,0.0,0.0,8.183017569064743e-06,0.0,0.0,0.0,0.0,0.0,5.146922450378,0.0,0.0,0.0 -9246,storm_outflow,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9247,baseflow,0.03204326247594944,2011-12-25,0.0,0.0,4.516436976101606e-06,0.0,0.0,0.0,0.0,0.0,10.752583814278706,0.0,0.0,0.0 -9248,catchment_outflow,0.07518619249798339,2011-12-25,0.0,0.0,1.269945454516635e-05,0.0,0.0,0.0,0.0,0.0,7.535973850202201,0.0,0.0,0.0 -9249,reservoir_outflow,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9250,gw1_gw2,0.0,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9251,gw2_gw1,0.0002597255160768697,2011-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9252,urban_drainage,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9253,percolation,0.06866221181652293,2011-12-26,0.0,0.0,1.4650313953593207e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -9254,runoff,0.03315267840206656,2011-12-26,0.0,0.0,6.5464140552517945e-06,0.0,0.0,0.0,0.0,0.0,5.154477796985465,0.0,0.0,0.0 -9255,storm_outflow,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9256,baseflow,0.03213480984930087,2011-12-26,0.0,0.0,4.541771668545335e-06,0.0,0.0,0.0,0.0,0.0,10.730852213815792,0.0,0.0,0.0 -9257,catchment_outflow,0.06528748825136743,2011-12-26,0.0,0.0,1.108818572379713e-05,0.0,0.0,0.0,0.0,0.0,7.899195603304127,0.0,0.0,0.0 -9258,reservoir_outflow,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9259,gw1_gw2,0.0,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9260,gw2_gw1,0.0002579940126365088,2011-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9261,urban_drainage,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9262,percolation,0.06728896758019247,2011-12-27,0.0,0.0,1.4357307674521343e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -9263,runoff,0.026612564336613898,2011-12-27,0.0,0.0,5.237131244201436e-06,0.0,0.0,0.0,0.0,0.0,5.163360845372488,0.0,0.0,0.0 -9264,storm_outflow,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9265,baseflow,0.032222695243628106,2011-12-27,0.0,0.0,4.566310508560274e-06,0.0,0.0,0.0,0.0,0.0,10.709726783926067,0.0,0.0,0.0 -9266,catchment_outflow,0.05883525958024201,2011-12-27,0.0,0.0,9.803441752761711e-06,0.0,0.0,0.0,0.0,0.0,8.200975714801372,0.0,0.0,0.0 -9267,reservoir_outflow,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9268,gw1_gw2,0.0,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9269,gw2_gw1,0.0002562740525521079,2011-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9270,urban_drainage,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9271,percolation,0.06594318822858862,2011-12-28,0.0,0.0,1.4070161521030916e-05,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -9272,runoff,0.021056539720324983,2011-12-28,0.0,0.0,4.189704995361147e-06,0.0,0.0,0.0,0.0,0.0,5.161295673902048,0.0,0.0,0.0 -9273,storm_outflow,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9274,baseflow,0.032306996476090505,2011-12-28,0.0,0.0,4.590070136091451e-06,0.0,0.0,0.0,0.0,0.0,10.689185684463764,0.0,0.0,0.0 -9275,catchment_outflow,0.053363536196415484,2011-12-28,0.0,0.0,8.779775131452598e-06,0.0,0.0,0.0,0.0,0.0,8.507954006927388,0.0,0.0,0.0 -9276,reservoir_outflow,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9277,gw1_gw2,0.0,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9278,gw2_gw1,0.00025456555886851364,2011-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9279,urban_drainage,0.008999999999999998,2011-12-29,0.0,0.0,6.46153846153846e-06,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 -9280,percolation,0.06677921013131272,2011-12-29,0.0,0.0,1.42201575382661e-05,0.0,0.0,0.0,0.0,0.0,6.681290821266299,0.0,0.0,0.0 -9281,runoff,0.031346483750263304,2011-12-29,0.0,0.0,4.789761488474928e-06,0.0,0.0,0.0,0.0,0.0,5.776544881859261,0.0,0.0,0.0 -9282,storm_outflow,0.008999999999999998,2011-12-29,0.0,0.0,6.46153846153846e-06,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 -9283,baseflow,0.032393177010228556,2011-12-29,0.0,0.0,4.6141453545968884e-06,0.0,0.0,0.0,0.0,0.0,10.668529787299898,0.0,0.0,0.0 -9284,catchment_outflow,0.07273966076049185,2011-12-29,0.0,0.0,1.586544530461028e-05,0.0,0.0,0.0,0.0,0.0,8.03017140856707,0.0,0.0,0.0 -9285,reservoir_outflow,0.004499999999999999,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9286,gw1_gw2,0.0,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9287,gw2_gw1,0.0002528684551426963,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9288,urban_drainage,0.04,2011-12-30,0.0,0.0,9.30232558139535e-07,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 -9289,percolation,0.07047044589774171,2011-12-30,0.0,0.0,1.491284773520979e-05,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 -9290,runoff,0.05342241649431954,2011-12-30,0.0,0.0,7.088787016476653e-06,0.0,0.0,0.0,0.0,0.0,6.350208679425454,0.0,0.0,0.0 -9291,storm_outflow,0.04,2011-12-30,0.0,0.0,9.30232558139535e-07,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 -9292,baseflow,0.032488370182447344,2011-12-30,0.0,0.0,4.639892110548421e-06,0.0,0.0,0.0,0.0,0.0,10.64697559967172,0.0,0.0,0.0 -9293,catchment_outflow,0.1259107866767669,2011-12-30,0.0,0.0,1.2658911685164609e-05,0.0,0.0,0.0,0.0,0.0,7.568954728479819,0.0,0.0,0.0 -9294,reservoir_outflow,0.0215,2011-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9295,gw1_gw2,0.0,2011-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9296,gw2_gw1,0.00025118266544144063,2011-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9297,urban_drainage,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9298,percolation,0.06906103697978687,2011-12-31,0.0,0.0,1.4614590780505594e-05,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 -9299,runoff,0.031087246002991554,2011-12-31,0.0,0.0,5.671029613181322e-06,0.0,0.0,0.0,0.0,0.0,6.245156837632266,0.0,0.0,0.0 -9300,storm_outflow,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9301,baseflow,0.03257980184944069,2011-12-31,0.0,0.0,4.664828857223312e-06,0.0,0.0,0.0,0.0,0.0,10.626025999213889,0.0,0.0,0.0 -9302,catchment_outflow,0.06366704785243224,2011-12-31,0.0,0.0,1.0335858470404635e-05,0.0,0.0,0.0,0.0,0.0,8.486942094323764,0.0,0.0,0.0 -9303,reservoir_outflow,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9304,gw1_gw2,0.0,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9305,gw2_gw1,0.000249508114338326,2011-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9306,urban_drainage,0.016,2012-01-01,0.0,0.0,2.0697674418604652e-06,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 -9307,percolation,0.07116949411234665,2012-01-01,0.0,0.0,1.4995779063422731e-05,0.0,0.0,0.0,0.0,0.0,6.728261964850857,0.0,0.0,0.0 -9308,runoff,0.04677879241779573,2012-01-01,0.0,0.0,6.7817573523025605e-06,0.0,0.0,0.0,0.0,0.0,6.781748533948404,0.0,0.0,0.0 -9309,storm_outflow,0.016,2012-01-01,0.0,0.0,2.0697674418604652e-06,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 -9310,baseflow,0.03267627608009796,2012-01-01,0.0,0.0,4.690656232738812e-06,0.0,0.0,0.0,0.0,0.0,10.604802505614515,0.0,0.0,0.0 -9311,catchment_outflow,0.09545506849789369,2012-01-01,0.0,0.0,1.3542181026901836e-05,0.0,0.0,0.0,0.0,0.0,8.18123968653241,0.0,0.0,0.0 -9312,reservoir_outflow,0.008,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9313,gw1_gw2,0.0,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9314,gw2_gw1,0.00024784472690964066,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9315,urban_drainage,0.04,2012-01-02,0.0,0.0,6.153846153846154e-07,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 -9316,percolation,0.07811482013262055,2012-01-02,0.0,0.0,1.6244585028323927e-05,0.0,0.0,0.0,0.0,0.0,6.828707645462627,0.0,0.0,0.0 -9317,runoff,0.08488708204718828,2012-01-02,0.0,0.0,1.0587811035740891e-05,0.0,0.0,0.0,0.0,0.0,7.305513472672865,0.0,0.0,0.0 -9318,storm_outflow,0.04,2012-01-02,0.0,0.0,6.153846153846154e-07,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 -9319,baseflow,0.03278987244022927,2012-01-02,0.0,0.0,4.7195410547277745e-06,0.0,0.0,0.0,0.0,0.0,10.5823131705811,0.0,0.0,0.0 -9320,catchment_outflow,0.15767695448741756,2012-01-02,0.0,0.0,1.592273670585328e-05,0.0,0.0,0.0,0.0,0.0,8.070951721223697,0.0,0.0,0.0 -9321,reservoir_outflow,0.0325,2012-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9322,gw1_gw2,0.0,2012-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9323,gw2_gw1,0.00024619242873011874,2012-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9324,urban_drainage,0.04,2012-01-03,0.0,0.0,6.672845227062094e-07,0.0,0.0,0.0,0.0,0.0,7.855622490060242,0.0,0.0,0.0 -9325,percolation,0.08530128825920669,2012-01-03,0.0,0.0,1.7479858341542763e-05,0.0,0.0,0.0,0.0,0.0,6.9423053143813584,0.0,0.0,0.0 -9326,runoff,0.10427850111142956,2012-01-03,0.0,0.0,1.367079887454376e-05,0.0,0.0,0.0,0.0,0.0,7.597041717038713,0.0,0.0,0.0 -9327,storm_outflow,0.04,2012-01-03,0.0,0.0,6.672845227062094e-07,0.0,0.0,0.0,0.0,0.0,7.855622490060242,0.0,0.0,0.0 -9328,baseflow,0.03292115097977671,2012-01-03,0.0,0.0,4.751441847944812e-06,0.0,0.0,0.0,0.0,0.0,10.55873430485446,0.0,0.0,0.0 -9329,catchment_outflow,0.17719965209120628,2012-01-03,0.0,0.0,1.908952524519478e-05,0.0,0.0,0.0,0.0,0.0,8.205652165689704,0.0,0.0,0.0 -9330,reservoir_outflow,0.028999999999999998,2012-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9331,gw1_gw2,0.0,2012-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9332,gw2_gw1,0.0002445511458718741,2012-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9333,urban_drainage,0.04,2012-01-04,0.0,0.0,9.038583483732501e-07,0.0,0.0,0.0,0.0,0.0,7.912109717244611,0.0,0.0,0.0 -9334,percolation,0.08977135477259976,2012-01-04,0.0,0.0,1.8207680414089184e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -9335,runoff,0.10112233885347607,2012-01-04,0.0,0.0,1.4528036564225933e-05,0.0,0.0,0.0,0.0,0.0,7.717170264427972,0.0,0.0,0.0 -9336,storm_outflow,0.04,2012-01-04,0.0,0.0,9.038583483732501e-07,0.0,0.0,0.0,0.0,0.0,7.912109717244611,0.0,0.0,0.0 -9337,baseflow,0.03306327648925877,2012-01-04,0.0,0.0,4.785082444360172e-06,0.0,0.0,0.0,0.0,0.0,10.534773419260748,0.0,0.0,0.0 -9338,catchment_outflow,0.17418561534273486,2012-01-04,0.0,0.0,2.0216977356959356e-05,0.0,0.0,0.0,0.0,0.0,8.29676330406711,0.0,0.0,0.0 -9339,reservoir_outflow,0.0165,2012-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9340,gw1_gw2,0.0,2012-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9341,gw2_gw1,0.00024292080489942693,2012-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9342,urban_drainage,0.018999999999999982,2012-01-05,0.0,0.0,1.8134725135359247e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -9343,percolation,0.08797592767714778,2012-01-05,0.0,0.0,1.78435268058074e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -9344,runoff,0.06478588530891835,2012-01-05,0.0,0.0,1.1622429251380747e-05,0.0,0.0,0.0,0.0,0.0,7.651059438306372,0.0,0.0,0.0 -9345,storm_outflow,0.018999999999999982,2012-01-05,0.0,0.0,1.8134725135359247e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -9346,baseflow,0.03320055811722849,2012-01-05,0.0,0.0,4.817728555263791e-06,0.0,0.0,0.0,0.0,0.0,10.511547577031282,0.0,0.0,0.0 -9347,catchment_outflow,0.11698644342614684,2012-01-05,0.0,0.0,1.8253630320180463e-05,0.0,0.0,0.0,0.0,0.0,8.505258908489349,0.0,0.0,0.0 -9348,reservoir_outflow,0.0,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9349,gw1_gw2,0.0,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9350,gw2_gw1,0.00024130133286650592,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9351,urban_drainage,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9352,percolation,0.08621640912360481,2012-01-06,0.0,0.0,1.748665626969125e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9353,runoff,0.05280619969446678,2012-01-06,0.0,0.0,9.297943401104597e-06,0.0,0.0,0.0,0.0,0.0,7.659238900515375,0.0,0.0,0.0 -9354,storm_outflow,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9355,baseflow,0.03333309774474443,2012-01-06,0.0,0.0,4.84940087454986e-06,0.0,0.0,0.0,0.0,0.0,10.48902694032885,0.0,0.0,0.0 -9356,catchment_outflow,0.08613929743921121,2012-01-06,0.0,0.0,1.4147344275654458e-05,0.0,0.0,0.0,0.0,0.0,8.754274547800254,0.0,0.0,0.0 -9357,reservoir_outflow,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9358,gw1_gw2,0.0,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9359,gw2_gw1,0.00023969265731391687,2012-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9360,urban_drainage,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9361,percolation,0.08449208094113272,2012-01-07,0.0,0.0,1.7136923144297424e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643465,0.0,0.0,0.0 -9362,runoff,0.04067934189076383,2012-01-07,0.0,0.0,7.438354720883678e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -9363,storm_outflow,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9364,baseflow,0.0334609952027354,2012-01-07,0.0,0.0,4.880119680224229e-06,0.0,0.0,0.0,0.0,0.0,10.467183241726634,0.0,0.0,0.0 -9365,catchment_outflow,0.07414033709349924,2012-01-07,0.0,0.0,1.2318474401107907e-05,0.0,0.0,0.0,0.0,0.0,8.918116999091634,0.0,0.0,0.0 -9366,reservoir_outflow,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9367,gw1_gw2,0.0,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9368,gw2_gw1,0.00023809470626510177,2012-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9369,urban_drainage,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9370,percolation,0.08280223932231007,2012-01-08,0.0,0.0,1.6794184681411476e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -9371,runoff,0.03254347351261107,2012-01-08,0.0,0.0,5.950683776706943e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -9372,storm_outflow,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9373,baseflow,0.033584348313034335,2012-01-08,0.0,0.0,4.909904842727196e-06,0.0,0.0,0.0,0.0,0.0,10.44598968210406,0.0,0.0,0.0 -9374,catchment_outflow,0.0661278218256454,2012-01-08,0.0,0.0,1.086058861943414e-05,0.0,0.0,0.0,0.0,0.0,9.067010000578913,0.0,0.0,0.0 -9375,reservoir_outflow,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9376,gw1_gw2,0.0,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9377,gw2_gw1,0.00023650740822347418,2012-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9378,urban_drainage,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9379,percolation,0.08114619453586386,2012-01-09,0.0,0.0,1.6458300987783248e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643465,0.0,0.0,0.0 -9380,runoff,0.02695843545036535,2012-01-09,0.0,0.0,4.760547021365554e-06,0.0,0.0,0.0,0.0,0.0,7.6617535826337,0.0,0.0,0.0 -9381,storm_outflow,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9382,baseflow,0.03370325292859141,2012-01-09,0.0,0.0,4.938775833089837e-06,0.0,0.0,0.0,0.0,0.0,10.42542083641195,0.0,0.0,0.0 -9383,catchment_outflow,0.06066168837895676,2012-01-09,0.0,0.0,9.699322854455391e-06,0.0,0.0,0.0,0.0,0.0,9.19722974483141,0.0,0.0,0.0 -9384,reservoir_outflow,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9385,gw1_gw2,0.0,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9386,gw2_gw1,0.00023493069216851126,2012-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9387,urban_drainage,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9388,percolation,0.07952327064514658,2012-01-10,0.0,0.0,1.6129134968027583e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -9389,runoff,0.020827823048071088,2012-01-10,0.0,0.0,3.808437617092444e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -9390,storm_outflow,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9391,baseflow,0.033817802972882796,2012-01-10,0.0,0.0,4.966751730927181e-06,0.0,0.0,0.0,0.0,0.0,10.405452566608364,0.0,0.0,0.0 -9392,catchment_outflow,0.05464562602095388,2012-01-10,0.0,0.0,8.775189348019626e-06,0.0,0.0,0.0,0.0,0.0,9.35291433371461,0.0,0.0,0.0 -9393,reservoir_outflow,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9394,gw1_gw2,0.0,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9395,gw2_gw1,0.00023336448755415518,2012-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9396,urban_drainage,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9397,percolation,0.07793280523224365,2012-01-11,0.0,0.0,1.5806552268667034e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643465,0.0,0.0,0.0 -9398,runoff,0.016662258438456867,2012-01-11,0.0,0.0,3.0467500936739544e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -9399,storm_outflow,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9400,baseflow,0.0339280904785312,2012-01-11,0.0,0.0,4.9938512322715315e-06,0.0,0.0,0.0,0.0,0.0,10.386061941136493,0.0,0.0,0.0 -9401,catchment_outflow,0.05059034891698807,2012-01-11,0.0,0.0,8.040601325945486e-06,0.0,0.0,0.0,0.0,0.0,9.482921364263817,0.0,0.0,0.0 -9402,reservoir_outflow,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9403,gw1_gw2,0.0,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9404,gw2_gw1,0.00023180872430383914,2012-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9405,urban_drainage,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9406,percolation,0.07637414912759877,2012-01-12,0.0,0.0,1.549042122329369e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -9407,runoff,0.013329806750765495,2012-01-12,0.0,0.0,2.4374000749391637e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -9408,storm_outflow,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9409,baseflow,0.03403420562515387,2012-01-12,0.0,0.0,5.0200926572490865e-06,0.0,0.0,0.0,0.0,0.0,10.3672271603782,0.0,0.0,0.0 -9410,catchment_outflow,0.04736401237591936,2012-01-12,0.0,0.0,7.45749273218825e-06,0.0,0.0,0.0,0.0,0.0,9.600799408264491,0.0,0.0,0.0 -9411,reservoir_outflow,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9412,gw1_gw2,0.0,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9413,gw2_gw1,0.0002302633328085335,2012-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9414,urban_drainage,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9415,percolation,0.0748466661450468,2012-01-13,0.0,0.0,1.5180612798827817e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9416,runoff,0.010742778013475509,2012-01-13,0.0,0.0,1.949920059951331e-06,0.0,0.0,0.0,0.0,0.0,7.6291826326879555,0.0,0.0,0.0 -9417,storm_outflow,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9418,baseflow,0.0341362367764536,2012-01-13,0.0,0.0,5.045493957603032e-06,0.0,0.0,0.0,0.0,0.0,10.348927487572135,0.0,0.0,0.0 -9419,catchment_outflow,0.04487901478992911,2012-01-13,0.0,0.0,6.995414017554362e-06,0.0,0.0,0.0,0.0,0.0,9.697896813969441,0.0,0.0,0.0 -9420,reservoir_outflow,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9421,gw1_gw2,0.0,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9422,gw2_gw1,0.00022872824392319304,2012-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9423,urban_drainage,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9424,percolation,0.07334973282214587,2012-01-14,0.0,0.0,1.4877000542851261e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 -9425,runoff,0.008531076320489916,2012-01-14,0.0,0.0,1.5599360479610646e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -9426,storm_outflow,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9427,baseflow,0.03423427051656784,2012-01-14,0.0,0.0,5.070072724066154e-06,0.0,0.0,0.0,0.0,0.0,10.33114318473471,0.0,0.0,0.0 -9428,catchment_outflow,0.04276534683705776,2012-01-14,0.0,0.0,6.630008772027219e-06,0.0,0.0,0.0,0.0,0.0,9.795081480372593,0.0,0.0,0.0 -9429,reservoir_outflow,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9430,gw1_gw2,0.0,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9431,gw2_gw1,0.00022720338896355943,2012-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9432,urban_drainage,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9433,percolation,0.07188273816570295,2012-01-15,0.0,0.0,1.4579460531994235e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9434,runoff,0.0068248610563919326,2012-01-15,0.0,0.0,1.2479488383688516e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -9435,storm_outflow,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9436,baseflow,0.03432839168569068,2012-01-15,0.0,0.0,5.093846193585973e-06,0.0,0.0,0.0,0.0,0.0,10.313855453166271,0.0,0.0,0.0 -9437,catchment_outflow,0.04115325274208261,2012-01-15,0.0,0.0,6.341795031954824e-06,0.0,0.0,0.0,0.0,0.0,9.871073797029528,0.0,0.0,0.0 -9438,reservoir_outflow,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9439,gw1_gw2,0.0,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9440,gw2_gw1,0.00022568869970349681,2012-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9441,urban_drainage,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9442,percolation,0.07044508340238889,2012-01-16,0.0,0.0,1.428787132135435e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9443,runoff,0.005459888845113547,2012-01-16,0.0,0.0,9.983590706950816e-07,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -9444,storm_outflow,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9445,baseflow,0.03441868341498242,2012-01-16,0.0,0.0,5.116831256405394e-06,0.0,0.0,0.0,0.0,0.0,10.297046378164193,0.0,0.0,0.0 -9446,catchment_outflow,0.03987857226009597,2012-01-16,0.0,0.0,6.1151903271004756e-06,0.0,0.0,0.0,0.0,0.0,9.933799957302805,0.0,0.0,0.0 -9447,reservoir_outflow,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9448,gw1_gw2,0.0,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9449,gw2_gw1,0.00022418410837232727,2012-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9450,urban_drainage,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9451,percolation,0.06903618173434112,2012-01-17,0.0,0.0,1.4002113894927265e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9452,runoff,0.004367911076090837,2012-01-17,0.0,0.0,7.986872565560652e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9453,storm_outflow,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9454,baseflow,0.034505227160780826,2012-01-17,0.0,0.0,5.1390444630016994e-06,0.0,0.0,0.0,0.0,0.0,10.280698877599844,0.0,0.0,0.0 -9455,catchment_outflow,0.03887313823687166,2012-01-17,0.0,0.0,5.937731719557765e-06,0.0,0.0,0.0,0.0,0.0,9.984422451058904,0.0,0.0,0.0 -9456,reservoir_outflow,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9457,gw1_gw2,0.0,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9458,gw2_gw1,0.0002226895476496793,2012-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9459,urban_drainage,0.022,2012-01-18,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -9460,percolation,0.06765545809965429,2012-01-18,0.0,0.0,1.3722071617028717e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9461,runoff,0.0034943288608726706,2012-01-18,0.0,0.0,6.389498052448522e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9462,storm_outflow,0.022,2012-01-18,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -9463,baseflow,0.03458810273812801,2012-01-18,0.0,0.0,5.160502030886766e-06,0.0,0.0,0.0,0.0,0.0,10.264796654048011,0.0,0.0,0.0 -9464,catchment_outflow,0.06008243159900068,2012-01-18,0.0,0.0,1.879945183613162e-05,0.0,0.0,0.0,0.0,0.0,7.749773370918069,0.0,0.0,0.0 -9465,reservoir_outflow,0.011,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9466,gw1_gw2,0.0,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9467,gw2_gw1,0.00022120495066548786,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9468,urban_drainage,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9469,percolation,0.06630234893766121,2012-01-19,0.0,0.0,1.3447630184688145e-05,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -9470,runoff,0.002795463088698136,2012-01-19,0.0,0.0,5.111598441958817e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9471,storm_outflow,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9472,baseflow,0.03466738835362684,2012-01-19,0.0,0.0,5.18121985127127e-06,0.0,0.0,0.0,0.0,0.0,10.249324150185664,0.0,0.0,0.0 -9473,catchment_outflow,0.03746285144232498,2012-01-19,0.0,0.0,5.692379695467151e-06,0.0,0.0,0.0,0.0,0.0,10.054910289581114,0.0,0.0,0.0 -9474,reservoir_outflow,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9475,gw1_gw2,0.0,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9476,gw2_gw1,0.00021973025099430998,2012-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9477,urban_drainage,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9478,percolation,0.06497630195890798,2012-01-20,0.0,0.0,1.3178677580994381e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 -9479,runoff,0.002236370470958509,2012-01-20,0.0,0.0,4.0892787535670534e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9480,storm_outflow,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9481,baseflow,0.03474316063764004,2012-01-20,0.0,0.0,5.201213495595577e-06,0.0,0.0,0.0,0.0,0.0,10.234266507202527,0.0,0.0,0.0 -9482,catchment_outflow,0.03697953110859855,2012-01-20,0.0,0.0,5.610141370952282e-06,0.0,0.0,0.0,0.0,0.0,10.077613260913825,0.0,0.0,0.0 -9483,reservoir_outflow,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9484,gw1_gw2,0.0,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9485,gw2_gw1,0.00021826538265443674,2012-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9486,urban_drainage,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9487,percolation,0.06367677591972982,2012-01-21,0.0,0.0,1.2915104029374493e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 -9488,runoff,0.001789096376766807,2012-01-21,0.0,0.0,3.271423002853642e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9489,storm_outflow,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9490,baseflow,0.034815494675845264,2012-01-21,0.0,0.0,5.220498221930025e-06,0.0,0.0,0.0,0.0,0.0,10.219609525988746,0.0,0.0,0.0 -9491,catchment_outflow,0.03660459105261207,2012-01-21,0.0,0.0,5.547640522215389e-06,0.0,0.0,0.0,0.0,0.0,10.093719631005092,0.0,0.0,0.0 -9492,reservoir_outflow,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9493,gw1_gw2,0.0,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9494,gw2_gw1,0.00021681028010345216,2012-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9495,urban_drainage,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9496,percolation,0.06240324040133522,2012-01-22,0.0,0.0,1.2656801948787002e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 -9497,runoff,0.001431277101413446,2012-01-22,0.0,0.0,2.6171384022829146e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9498,storm_outflow,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9499,baseflow,0.03488446404015899,2012-01-22,0.0,0.0,5.239088981247168e-06,0.0,0.0,0.0,0.0,0.0,10.205339630885716,0.0,0.0,0.0 -9500,catchment_outflow,0.03631574114157244,2012-01-22,0.0,0.0,5.500802821475459e-06,0.0,0.0,0.0,0.0,0.0,10.10438907309773,0.0,0.0,0.0 -9501,reservoir_outflow,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9502,gw1_gw2,0.0,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9503,gw2_gw1,0.0002153648782359241,2012-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9504,urban_drainage,0.04,2012-01-23,0.0,0.0,2.9850746268656716e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 -9505,percolation,0.061155175593308526,2012-01-23,0.0,0.0,1.2403665909811264e-05,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 -9506,runoff,0.0011450216811307566,2012-01-23,0.0,0.0,2.0937107218263314e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -9507,storm_outflow,0.04,2012-01-23,0.0,0.0,2.9850746268656716e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 -9508,baseflow,0.03495014081904187,2012-01-23,0.0,0.0,5.257000423568579e-06,0.0,0.0,0.0,0.0,0.0,10.19144383580467,0.0,0.0,0.0 -9509,catchment_outflow,0.07609516250017262,2012-01-23,0.0,0.0,8.451446122616883e-06,0.0,0.0,0.0,0.0,0.0,7.7691516446958735,0.0,0.0,0.0 -9510,reservoir_outflow,0.033499999999999995,2012-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9511,gw1_gw2,0.0,2012-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9512,gw2_gw1,0.00021392911238127255,2012-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9513,urban_drainage,0.023999999999999987,2012-01-24,0.0,0.0,3.0149253731343277e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 -9514,percolation,0.061290990973037404,2012-01-24,0.0,0.0,1.2415126116258566e-05,0.0,0.0,0.0,0.0,0.0,7.011035885784654,0.0,0.0,0.0 -9515,runoff,0.010213883445291838,2012-01-24,0.0,0.0,1.0326086065578677e-06,0.0,0.0,0.0,0.0,0.0,6.260727334261514,0.0,0.0,0.0 -9516,storm_outflow,0.023999999999999987,2012-01-24,0.0,0.0,3.0149253731343277e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 -9517,baseflow,0.03501599294442685,2012-01-24,0.0,0.0,5.274895737800303e-06,0.0,0.0,0.0,0.0,0.0,10.177526598382288,0.0,0.0,0.0 -9518,catchment_outflow,0.06922987638971867,2012-01-24,0.0,0.0,9.322429717492499e-06,0.0,0.0,0.0,0.0,0.0,8.032262483111307,0.0,0.0,0.0 -9519,reservoir_outflow,0.0,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9520,gw1_gw2,0.0,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9521,gw2_gw1,0.00021250291829879588,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9522,urban_drainage,0.02,2012-01-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 -9523,percolation,0.06312132629753298,2012-01-25,0.0,0.0,1.2741673351943546e-05,0.0,0.0,0.0,0.0,0.0,6.987877609016408,0.0,0.0,0.0 -9524,runoff,0.02526713278233438,2012-01-25,0.0,0.0,2.7422527452801273e-06,0.0,0.0,0.0,0.0,0.0,6.190743153683396,0.0,0.0,0.0 -9525,storm_outflow,0.02,2012-01-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 -9526,baseflow,0.03508625627780962,2012-01-25,0.0,0.0,5.293562681835661e-06,0.0,0.0,0.0,0.0,0.0,10.16318089040491,0.0,0.0,0.0 -9527,catchment_outflow,0.080353389060144,2012-01-25,0.0,0.0,9.035815427115788e-06,0.0,0.0,0.0,0.0,0.0,7.816493299539795,0.0,0.0,0.0 -9528,reservoir_outflow,0.01,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9529,gw1_gw2,0.0,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9530,gw2_gw1,0.00021108623217660496,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9531,urban_drainage,0.014999999999999998,2012-01-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -9532,percolation,0.06492654487585858,2012-01-26,0.0,0.0,1.3057009890321234e-05,0.0,0.0,0.0,0.0,0.0,6.958592335172325,0.0,0.0,0.0 -9533,runoff,0.032624175833494445,2012-01-26,0.0,0.0,4.094368880945965e-06,0.0,0.0,0.0,0.0,0.0,6.127487375546989,0.0,0.0,0.0 -9534,storm_outflow,0.014999999999999998,2012-01-26,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -9535,baseflow,0.03516085699930474,2012-01-26,0.0,0.0,5.312971299856875e-06,0.0,0.0,0.0,0.0,0.0,10.148387247672872,0.0,0.0,0.0 -9536,catchment_outflow,0.08278503283279919,2012-01-26,0.0,0.0,1.0407340180802839e-05,0.0,0.0,0.0,0.0,0.0,7.718331917459856,0.0,0.0,0.0 -9537,reservoir_outflow,0.0075,2012-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9538,gw1_gw2,0.0,2012-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9539,gw2_gw1,0.0002096789906286034,2012-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9540,urban_drainage,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9541,percolation,0.06491177393890295,2012-01-27,0.0,0.0,1.3034757987312581e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -9542,runoff,0.02627202782354631,2012-01-27,0.0,0.0,4.071789420749345e-06,0.0,0.0,0.0,0.0,0.0,6.186376687594011,0.0,0.0,0.0 -9543,storm_outflow,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9544,baseflow,0.03523523429165373,2012-01-27,0.0,0.0,5.332275766575514e-06,0.0,0.0,0.0,0.0,0.0,10.133623170371216,0.0,0.0,0.0 -9545,catchment_outflow,0.061507262115200044,2012-01-27,0.0,0.0,9.40406518732486e-06,0.0,0.0,0.0,0.0,0.0,8.447608123437588,0.0,0.0,0.0 -9546,reservoir_outflow,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9547,gw1_gw2,0.0,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9548,gw2_gw1,0.0002082811306912902,2012-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9549,urban_drainage,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9550,percolation,0.06361353846012488,2012-01-28,0.0,0.0,1.277406282756633e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -9551,runoff,0.017414085527436264,2012-01-28,0.0,0.0,3.2574315365994753e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -9552,storm_outflow,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9553,baseflow,0.03530618005207491,2012-01-28,0.0,0.0,5.350880234227991e-06,0.0,0.0,0.0,0.0,0.0,10.119249952435409,0.0,0.0,0.0 -9554,catchment_outflow,0.05272026557951118,2012-01-28,0.0,0.0,8.608311770827467e-06,0.0,0.0,0.0,0.0,0.0,8.886867008481216,0.0,0.0,0.0 -9555,reservoir_outflow,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9556,gw1_gw2,0.0,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9557,gw2_gw1,0.00020689258981967387,2012-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9558,urban_drainage,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9559,percolation,0.06234126769092239,2012-01-29,0.0,0.0,1.2518581571015007e-05,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 -9560,runoff,0.01443667402506289,2012-01-29,0.0,0.0,2.60594522927958e-06,0.0,0.0,0.0,0.0,0.0,6.328043663758067,0.0,0.0,0.0 -9561,storm_outflow,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9562,baseflow,0.03537376777117203,2012-01-29,0.0,0.0,5.368799487569958e-06,0.0,0.0,0.0,0.0,0.0,10.105254439048279,0.0,0.0,0.0 -9563,catchment_outflow,0.04981044179623492,2012-01-29,0.0,0.0,7.974744716849539e-06,0.0,0.0,0.0,0.0,0.0,9.01049681955369,0.0,0.0,0.0 -9564,reservoir_outflow,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9565,gw1_gw2,0.0,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9566,gw2_gw1,0.00020551330588780559,2012-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9567,urban_drainage,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9568,percolation,0.06109444233710395,2012-01-30,0.0,0.0,1.2268209939594709e-05,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 -9569,runoff,0.01114501473755921,2012-01-30,0.0,0.0,2.0847561834236646e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -9570,storm_outflow,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9571,baseflow,0.03543806945758686,2012-01-30,0.0,0.0,5.3860480137000195e-06,0.0,0.0,0.0,0.0,0.0,10.09162404250676,0.0,0.0,0.0 -9572,catchment_outflow,0.04658308419514607,2012-01-30,0.0,0.0,7.470804197123684e-06,0.0,0.0,0.0,0.0,0.0,9.205596304231772,0.0,0.0,0.0 -9573,reservoir_outflow,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9574,gw1_gw2,0.0,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9575,gw2_gw1,0.00020414321718167374,2012-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9576,urban_drainage,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9577,percolation,0.05987255349036185,2012-01-31,0.0,0.0,1.2022845740802811e-05,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 -9578,runoff,0.008916011790047366,2012-01-31,0.0,0.0,1.6678049467389315e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -9579,storm_outflow,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9580,baseflow,0.03549915566766879,2012-01-31,0.0,0.0,5.402640008017777e-06,0.0,0.0,0.0,0.0,0.0,10.07834671195888,0.0,0.0,0.0 -9581,catchment_outflow,0.04441516745771616,2012-01-31,0.0,0.0,7.070444954756708e-06,0.0,0.0,0.0,0.0,0.0,9.337592036640912,0.0,0.0,0.0 -9582,reservoir_outflow,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9583,gw1_gw2,0.0,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9584,gw2_gw1,0.00020278226240080246,2012-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9585,urban_drainage,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9586,percolation,0.0586751024205546,2012-02-01,0.0,0.0,1.1782388825986752e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -9587,runoff,0.007132809432037892,2012-02-01,0.0,0.0,1.3342439573911452e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -9588,storm_outflow,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9589,baseflow,0.03555709553455101,2012-02-01,0.0,0.0,5.4185893800627e-06,0.0,0.0,0.0,0.0,0.0,10.065410905061507,0.0,0.0,0.0 -9590,catchment_outflow,0.04268990496658891,2012-02-01,0.0,0.0,6.752833337453845e-06,0.0,0.0,0.0,0.0,0.0,9.451019148168493,0.0,0.0,0.0 -9591,reservoir_outflow,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9592,gw1_gw2,0.0,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9593,gw2_gw1,0.0002014303806511464,2012-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9594,urban_drainage,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9595,percolation,0.05750160037214353,2012-02-02,0.0,0.0,1.1546741049467024e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -9596,runoff,0.005706247545630315,2012-02-02,0.0,0.0,1.0673951659129163e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 -9597,storm_outflow,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9598,baseflow,0.03561195679664499,2012-02-02,0.0,0.0,5.4339097592362105e-06,0.0,0.0,0.0,0.0,0.0,10.052805561418086,0.0,0.0,0.0 -9599,catchment_outflow,0.04131820434227531,2012-02-02,0.0,0.0,6.501304925149127e-06,0.0,0.0,0.0,0.0,0.0,9.546715529364286,0.0,0.0,0.0 -9600,reservoir_outflow,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9601,gw1_gw2,0.0,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9602,gw2_gw1,0.0002000875114470446,2012-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9603,urban_drainage,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9604,percolation,0.05635156836470065,2012-02-03,0.0,0.0,1.131580622847768e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -9605,runoff,0.004564998036504252,2012-02-03,0.0,0.0,8.53916132730333e-07,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 -9606,storm_outflow,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9607,baseflow,0.03566380582556513,2012-02-03,0.0,0.0,5.448614500409314e-06,0.0,0.0,0.0,0.0,0.0,10.040520077667294,0.0,0.0,0.0 -9608,catchment_outflow,0.04022880386206938,2012-02-03,0.0,0.0,6.302530633139647e-06,0.0,0.0,0.0,0.0,0.0,9.626078178376567,0.0,0.0,0.0 -9609,reservoir_outflow,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9610,gw1_gw2,0.0,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9611,gw2_gw1,0.00019875359470375998,2012-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9612,urban_drainage,0.04,2012-02-04,0.0,0.0,4.444444444444445e-06,0.0,0.0,0.0,0.0,0.0,3.296428570999999,0.0,0.0,0.0 -9613,percolation,0.055224536997406655,2012-02-04,0.0,0.0,1.1089490103908129e-05,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -9614,runoff,0.003651998429203401,2012-02-04,0.0,0.0,6.831329061842664e-07,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 -9615,storm_outflow,0.04,2012-02-04,0.0,0.0,4.444444444444445e-06,0.0,0.0,0.0,0.0,0.0,3.296428570999999,0.0,0.0,0.0 -9616,baseflow,0.035712707653494734,2012-02-04,0.0,0.0,5.462716689418061e-06,0.0,0.0,0.0,0.0,0.0,10.02854428410406,0.0,0.0,0.0 -9617,catchment_outflow,0.07936470608269813,2012-02-04,0.0,0.0,1.0590294040046772e-05,0.0,0.0,0.0,0.0,0.0,6.468033467703309,0.0,0.0,0.0 -9618,reservoir_outflow,0.040499999999999994,2012-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9619,gw1_gw2,0.0,2012-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9620,gw2_gw1,0.00019742857073925537,2012-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9621,urban_drainage,0.03399999999999999,2012-02-05,0.0,0.0,5.555555555555555e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 -9622,percolation,0.05553245681996641,2012-02-05,0.0,0.0,1.1134365360687143e-05,0.0,0.0,0.0,0.0,0.0,6.874709055479213,0.0,0.0,0.0 -9623,runoff,0.012585460486837837,2012-02-05,0.0,0.0,1.4353898544713468e-06,0.0,0.0,0.0,0.0,0.0,4.296480192589978,0.0,0.0,0.0 -9624,storm_outflow,0.03399999999999999,2012-02-05,0.0,0.0,5.555555555555555e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 -9625,baseflow,0.035762257026410914,2012-02-05,0.0,0.0,5.476895811096234e-06,0.0,0.0,0.0,0.0,0.0,10.01630091405323,0.0,0.0,0.0 -9626,catchment_outflow,0.08234771751324874,2012-02-05,0.0,0.0,1.2467841221123136e-05,0.0,0.0,0.0,0.0,0.0,6.367599451292698,0.0,0.0,0.0 -9627,reservoir_outflow,0.0,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9628,gw1_gw2,0.0,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9629,gw2_gw1,0.00019611238026762123,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9630,urban_drainage,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9631,percolation,0.05442180768356709,2012-02-06,0.0,0.0,1.09116780534734e-05,0.0,0.0,0.0,0.0,0.0,6.8747090554792125,0.0,0.0,0.0 -9632,runoff,0.008990415555916302,2012-02-06,0.0,0.0,1.1483118835770773e-06,0.0,0.0,0.0,0.0,0.0,4.374712136408567,0.0,0.0,0.0 -9633,storm_outflow,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9634,baseflow,0.0358089059030538,2012-02-06,0.0,0.0,5.4904827667021765e-06,0.0,0.0,0.0,0.0,0.0,10.004364560258281,0.0,0.0,0.0 -9635,catchment_outflow,0.0447993214589701,2012-02-06,0.0,0.0,6.638794650279254e-06,0.0,0.0,0.0,0.0,0.0,8.874594887917715,0.0,0.0,0.0 -9636,reservoir_outflow,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9637,gw1_gw2,0.0,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9638,gw2_gw1,0.00019480496439925333,2012-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9639,urban_drainage,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9640,percolation,0.05333337152989574,2012-02-07,0.0,0.0,1.0693444492403932e-05,0.0,0.0,0.0,0.0,0.0,6.874709055479212,0.0,0.0,0.0 -9641,runoff,0.004882965729102331,2012-02-07,0.0,0.0,9.18649506861662e-07,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 -9642,storm_outflow,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9643,baseflow,0.035852717067120905,2012-02-07,0.0,0.0,5.5034901710164315e-06,0.0,0.0,0.0,0.0,0.0,9.99272561811866,0.0,0.0,0.0 -9644,catchment_outflow,0.040735682796223235,2012-02-07,0.0,0.0,6.422139677878093e-06,0.0,0.0,0.0,0.0,0.0,9.403913160937753,0.0,0.0,0.0 -9645,reservoir_outflow,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9646,gw1_gw2,0.0,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9647,gw2_gw1,0.00019350626463641163,2012-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9648,urban_drainage,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9649,percolation,0.052266704099297845,2012-02-08,0.0,0.0,1.0479575602555856e-05,0.0,0.0,0.0,0.0,0.0,6.874709055479211,0.0,0.0,0.0 -9650,runoff,0.003906372583281865,2012-02-08,0.0,0.0,7.349196054893296e-07,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 -9651,storm_outflow,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9652,baseflow,0.03589375203470135,2012-02-08,0.0,0.0,5.515930384595279e-06,0.0,0.0,0.0,0.0,0.0,9.98137486486649,0.0,0.0,0.0 -9653,catchment_outflow,0.03980012461798321,2012-02-08,0.0,0.0,6.250849990084608e-06,0.0,0.0,0.0,0.0,0.0,9.500366277627167,0.0,0.0,0.0 -9654,reservoir_outflow,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9655,gw1_gw2,0.0,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9656,gw2_gw1,0.00019221622287233232,2012-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9657,urban_drainage,0.024,2012-02-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -9658,percolation,0.054630911745471515,2012-02-09,0.0,0.0,1.0918084155758943e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 -9659,runoff,0.02645354146982303,2012-02-09,0.0,0.0,2.748269235238816e-06,0.0,0.0,0.0,0.0,0.0,3.599654049179957,0.0,0.0,0.0 -9660,storm_outflow,0.024,2012-02-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -9661,baseflow,0.035940594933978276,2012-02-09,0.0,0.0,5.52943576902319e-06,0.0,0.0,0.0,0.0,0.0,9.96884655987413,0.0,0.0,0.0 -9662,catchment_outflow,0.08639413640380131,2012-02-09,0.0,0.0,1.2277705004262005e-05,0.0,0.0,0.0,0.0,0.0,6.081710882352183,0.0,0.0,0.0 -9663,reservoir_outflow,0.012,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9664,gw1_gw2,0.0,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9665,gw2_gw1,0.0001909347813864315,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9666,urban_drainage,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9667,percolation,0.05353829351056208,2012-02-10,0.0,0.0,1.0699722472643763e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 -9668,runoff,0.011909189341372734,2012-02-10,0.0,0.0,2.198615388191053e-06,0.0,0.0,0.0,0.0,0.0,4.072648468191999,0.0,0.0,0.0 -9669,storm_outflow,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9670,baseflow,0.03598458918041973,2012-02-10,0.0,0.0,5.5423614857822405e-06,0.0,0.0,0.0,0.0,0.0,9.956630430967884,0.0,0.0,0.0 -9671,catchment_outflow,0.04789377852179247,2012-02-10,0.0,0.0,7.740976873973293e-06,0.0,0.0,0.0,0.0,0.0,8.493529012815307,0.0,0.0,0.0 -9672,reservoir_outflow,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9673,gw1_gw2,0.0,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9674,gw2_gw1,0.0001896618828437724,2012-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9675,urban_drainage,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9676,percolation,0.05246752764035084,2012-02-11,0.0,0.0,1.048572802319089e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 -9677,runoff,0.009550733570749925,2012-02-11,0.0,0.0,1.7588923105528422e-06,0.0,0.0,0.0,0.0,0.0,4.075068019373735,0.0,0.0,0.0 -9678,storm_outflow,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9679,baseflow,0.036025796526569565,2012-02-11,0.0,0.0,5.554719902125763e-06,0.0,0.0,0.0,0.0,0.0,9.944716796887766,0.0,0.0,0.0 -9680,catchment_outflow,0.04557653009731949,2012-02-11,0.0,0.0,7.313612212678605e-06,0.0,0.0,0.0,0.0,0.0,8.714709784326457,0.0,0.0,0.0 -9681,reservoir_outflow,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9682,gw1_gw2,0.0,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9683,gw2_gw1,0.00018839747029133493,2012-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9684,urban_drainage,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9685,percolation,0.05141817708754382,2012-02-12,0.0,0.0,1.0276013462727074e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 -9686,runoff,0.007877554360069506,2012-02-12,0.0,0.0,1.407113848442274e-06,0.0,0.0,0.0,0.0,0.0,4.061645279424695,0.0,0.0,0.0 -9687,storm_outflow,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9688,baseflow,0.036064277477972,2012-02-12,0.0,0.0,5.566523136027266e-06,0.0,0.0,0.0,0.0,0.0,9.933096357492971,0.0,0.0,0.0 -9689,catchment_outflow,0.043941831838041505,2012-02-12,0.0,0.0,6.97363698446954e-06,0.0,0.0,0.0,0.0,0.0,8.880507671376124,0.0,0.0,0.0 -9690,reservoir_outflow,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9691,gw1_gw2,0.0,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9692,gw2_gw1,0.00018714148715570644,2012-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9693,urban_drainage,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9694,percolation,0.05038981354579296,2012-02-13,0.0,0.0,1.0070493193472534e-05,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9695,runoff,0.007189754600241287,2012-02-13,0.0,0.0,1.1256910787538188e-06,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -9696,storm_outflow,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9697,baseflow,0.036100091318141556,2012-02-13,0.0,0.0,5.577783061170879e-06,0.0,0.0,0.0,0.0,0.0,9.92176017519104,0.0,0.0,0.0 -9698,catchment_outflow,0.04328984591838284,2012-02-13,0.0,0.0,6.703474139924698e-06,0.0,0.0,0.0,0.0,0.0,8.941189244450133,0.0,0.0,0.0 -9699,reservoir_outflow,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9700,gw1_gw2,0.0,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9701,gw2_gw1,0.00018589387724130547,2012-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9702,urban_drainage,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9703,percolation,0.04938201727487709,2012-02-14,0.0,0.0,9.869083329603082e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9704,runoff,0.004748160912749678,2012-02-14,0.0,0.0,9.005528630030554e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9705,storm_outflow,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9706,baseflow,0.03613329613303339,2012-02-14,0.0,0.0,5.588511311841961e-06,0.0,0.0,0.0,0.0,0.0,9.910699657445143,0.0,0.0,0.0 -9707,catchment_outflow,0.04088145704578307,2012-02-14,0.0,0.0,6.489064174845016e-06,0.0,0.0,0.0,0.0,0.0,9.235549199879822,0.0,0.0,0.0 -9708,reservoir_outflow,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9709,gw1_gw2,0.0,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9710,gw2_gw1,0.00018465458472629594,2012-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9711,urban_drainage,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9712,percolation,0.048394376929379555,2012-02-15,0.0,0.0,9.671701663011021e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9713,runoff,0.0037985287301997425,2012-02-15,0.0,0.0,7.204422904024442e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9714,storm_outflow,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9715,baseflow,0.03616394883502425,2012-02-15,0.0,0.0,5.598719287719883e-06,0.0,0.0,0.0,0.0,0.0,9.89990654028712,0.0,0.0,0.0 -9716,catchment_outflow,0.039962477565223996,2012-02-15,0.0,0.0,6.3191615781223265e-06,0.0,0.0,0.0,0.0,0.0,9.348391446090751,0.0,0.0,0.0 -9717,reservoir_outflow,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9718,gw1_gw2,0.0,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9719,gw2_gw1,0.0001834235541616991,2012-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9720,urban_drainage,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9721,percolation,0.04742648939079195,2012-02-16,0.0,0.0,9.4782676297508e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9722,runoff,0.003038822984159794,2012-02-16,0.0,0.0,5.763538323219554e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9723,storm_outflow,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9724,baseflow,0.03619210518641367,2012-02-16,0.0,0.0,5.60841815857496e-06,0.0,0.0,0.0,0.0,0.0,9.889372872769435,0.0,0.0,0.0 -9725,catchment_outflow,0.03923092817057346,2012-02-16,0.0,0.0,6.1847719908969155e-06,0.0,0.0,0.0,0.0,0.0,9.440749336882638,0.0,0.0,0.0 -9726,reservoir_outflow,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9727,gw1_gw2,0.0,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9728,gw2_gw1,0.00018220073046713026,2012-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9729,urban_drainage,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9730,percolation,0.046477959602976106,2012-02-17,0.0,0.0,9.288702277155784e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9731,runoff,0.0024310583873278354,2012-02-17,0.0,0.0,4.6108306585756437e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9732,storm_outflow,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9733,baseflow,0.03621781982245508,2012-02-17,0.0,0.0,5.617618868871413e-06,0.0,0.0,0.0,0.0,0.0,9.879091002294214,0.0,0.0,0.0 -9734,catchment_outflow,0.03864887820978292,2012-02-17,0.0,0.0,6.078701934728977e-06,0.0,0.0,0.0,0.0,0.0,9.515433918488116,0.0,0.0,0.0 -9735,reservoir_outflow,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9736,gw1_gw2,0.0,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9737,gw2_gw1,0.0001809860589304435,2012-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9738,urban_drainage,0.007000000000000001,2012-02-18,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -9739,percolation,0.04554840041091659,2012-02-18,0.0,0.0,9.102928231612668e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9740,runoff,0.0019448467098622689,2012-02-18,0.0,0.0,3.688664526860516e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9741,storm_outflow,0.007000000000000001,2012-02-18,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -9742,baseflow,0.03624114627392623,2012-02-18,0.0,0.0,5.626332142278265e-06,0.0,0.0,0.0,0.0,0.0,9.869053560762142,0.0,0.0,0.0 -9743,catchment_outflow,0.0451859929837885,2012-02-18,0.0,0.0,1.4995198594964317e-05,0.0,0.0,0.0,0.0,0.0,8.881849310765526,0.0,0.0,0.0 -9744,reservoir_outflow,0.0035000000000000005,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9745,gw1_gw2,0.0,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9746,gw2_gw1,0.00017977948520453424,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9747,urban_drainage,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9748,percolation,0.044637432402698254,2012-02-19,0.0,0.0,8.920869666980414e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9749,runoff,0.0015558773678898147,2012-02-19,0.0,0.0,2.950931621488412e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9750,storm_outflow,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9751,baseflow,0.03626213698924816,2012-02-19,0.0,0.0,5.634568486090021e-06,0.0,0.0,0.0,0.0,0.0,9.85925345148825,0.0,0.0,0.0 -9752,catchment_outflow,0.037818014357137976,2012-02-19,0.0,0.0,5.9296616482388616e-06,0.0,0.0,0.0,0.0,0.0,9.62221573560012,0.0,0.0,0.0 -9753,reservoir_outflow,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9754,gw1_gw2,0.0,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9755,gw2_gw1,0.00017858095530307594,2012-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9756,urban_drainage,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9757,percolation,0.04374468375464429,2012-02-20,0.0,0.0,8.742452273640807e-06,0.0,0.0,0.0,0.0,0.0,6.6845253666364055,0.0,0.0,0.0 -9758,runoff,0.0012447018943118518,2012-02-20,0.0,0.0,2.3607452971907296e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9759,storm_outflow,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9760,baseflow,0.036280843356161656,2012-02-20,0.0,0.0,5.642338195558898e-06,0.0,0.0,0.0,0.0,0.0,9.84968383683545,0.0,0.0,0.0 -9761,catchment_outflow,0.03752554525047351,2012-02-20,0.0,0.0,5.878412725277971e-06,0.0,0.0,0.0,0.0,0.0,9.658893130695452,0.0,0.0,0.0 -9762,reservoir_outflow,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9763,gw1_gw2,0.0,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9764,gw2_gw1,0.0001773904156006978,2012-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9765,urban_drainage,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9766,percolation,0.042869790079551405,2012-02-21,0.0,0.0,8.567603228167991e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9767,runoff,0.0009957615154494814,2012-02-21,0.0,0.0,1.8885962377525841e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9768,storm_outflow,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9769,baseflow,0.03629731572297013,2012-02-21,0.0,0.0,5.6496513581404205e-06,0.0,0.0,0.0,0.0,0.0,9.840338126520287,0.0,0.0,0.0 -9770,catchment_outflow,0.03729307723841961,2012-02-21,0.0,0.0,5.838510981915679e-06,0.0,0.0,0.0,0.0,0.0,9.687003659480286,0.0,0.0,0.0 -9771,reservoir_outflow,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9772,gw1_gw2,0.0,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9773,gw2_gw1,0.00017620781283014255,2012-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9774,urban_drainage,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9775,percolation,0.04201239427796037,2012-02-22,0.0,0.0,8.396251163604631e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 -9776,runoff,0.0007966092123595852,2012-02-22,0.0,0.0,1.5108769902020671e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9777,storm_outflow,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9778,baseflow,0.0363116034193576,2012-02-22,0.0,0.0,5.6565178576540795e-06,0.0,0.0,0.0,0.0,0.0,9.831209966548634,0.0,0.0,0.0 -9779,catchment_outflow,0.03710821263171719,2012-02-22,0.0,0.0,5.807605556674286e-06,0.0,0.0,0.0,0.0,0.0,9.708127247175657,0.0,0.0,0.0 -9780,reservoir_outflow,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9781,gw1_gw2,0.0,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9782,gw2_gw1,0.00017503309407782553,2012-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9783,urban_drainage,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9784,percolation,0.04117214639240117,2012-02-23,0.0,0.0,8.228326140332538e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9785,runoff,0.0006372873698876682,2012-02-23,0.0,0.0,1.2087015921616537e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9786,storm_outflow,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9787,baseflow,0.036323754776790215,2012-02-23,0.0,0.0,5.662947378360777e-06,0.0,0.0,0.0,0.0,0.0,9.822293228742037,0.0,0.0,0.0 -9788,catchment_outflow,0.036961042146677885,2012-02-23,0.0,0.0,5.783817537576942e-06,0.0,0.0,0.0,0.0,0.0,9.723588726889426,0.0,0.0,0.0 -9789,reservoir_outflow,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9790,gw1_gw2,0.0,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9791,gw2_gw1,0.0001738662067838348,2012-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9792,urban_drainage,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9793,percolation,0.04034870346455314,2012-02-24,0.0,0.0,8.063759617525886e-06,0.0,0.0,0.0,0.0,0.0,6.6845253666364055,0.0,0.0,0.0 -9794,runoff,0.0005098298959101345,2012-02-24,0.0,0.0,9.669612737293229e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9795,storm_outflow,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9796,baseflow,0.036333817148509626,2012-02-24,0.0,0.0,5.66894940895869e-06,0.0,0.0,0.0,0.0,0.0,9.813582000818254,0.0,0.0,0.0 -9797,catchment_outflow,0.03684364704441976,2012-02-24,0.0,0.0,5.765645536331622e-06,0.0,0.0,0.0,0.0,0.0,9.734487340224694,0.0,0.0,0.0 -9798,reservoir_outflow,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9799,gw1_gw2,0.0,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9800,gw2_gw1,0.0001727070987383783,2012-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9801,urban_drainage,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9802,percolation,0.03954172939526208,2012-02-25,0.0,0.0,7.902484425175368e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9803,runoff,0.00040786391672810766,2012-02-25,0.0,0.0,7.735690189834584e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9804,storm_outflow,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9805,baseflow,0.03634183692912651,2012-02-25,0.0,0.0,5.674533246499233e-06,0.0,0.0,0.0,0.0,0.0,9.805070576992007,0.0,0.0,0.0 -9806,catchment_outflow,0.03674970084585461,2012-02-25,0.0,0.0,5.751890148397579e-06,0.0,0.0,0.0,0.0,0.0,9.741727555139635,0.0,0.0,0.0 -9807,reservoir_outflow,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9808,gw1_gw2,0.0,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9809,gw2_gw1,0.00017155571808036285,2012-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9810,urban_drainage,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9811,percolation,0.038750894807356835,2012-02-26,0.0,0.0,7.74443473667186e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 -9812,runoff,0.00032629113338248614,2012-02-26,0.0,0.0,6.188552151867668e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9813,storm_outflow,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9814,baseflow,0.03634785957382208,2012-02-26,0.0,0.0,5.679708000224665e-06,0.0,0.0,0.0,0.0,0.0,9.796753449064399,0.0,0.0,0.0 -9815,catchment_outflow,0.03667415070720457,2012-02-26,0.0,0.0,5.741593521743342e-06,0.0,0.0,0.0,0.0,0.0,9.746048638126966,0.0,0.0,0.0 -9816,reservoir_outflow,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9817,gw1_gw2,0.0,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9818,gw2_gw1,0.0001704120132934861,2012-02-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9819,urban_drainage,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9820,percolation,0.0379758769112097,2012-02-27,0.0,0.0,7.589546041938424e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9821,runoff,0.0002610329067059889,2012-02-27,0.0,0.0,4.9508417214941327e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9822,storm_outflow,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9823,baseflow,0.036351929617165546,2012-02-27,0.0,0.0,5.684482595328949e-06,0.0,0.0,0.0,0.0,0.0,9.788625297971555,0.0,0.0,0.0 -9824,catchment_outflow,0.036612962523871535,2012-02-27,0.0,0.0,5.73399101254389e-06,0.0,0.0,0.0,0.0,0.0,9.748051608081115,0.0,0.0,0.0 -9825,reservoir_outflow,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9826,gw1_gw2,0.0,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9827,gw2_gw1,0.0001692759332048155,2012-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9828,urban_drainage,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9829,percolation,0.0372163593729855,2012-02-28,0.0,0.0,7.437755121099655e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9830,runoff,0.0002088263253647911,2012-02-28,0.0,0.0,3.960673377195306e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9831,storm_outflow,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9832,baseflow,0.0363540906915551,2012-02-28,0.0,0.0,5.688865776643376e-06,0.0,0.0,0.0,0.0,0.0,9.780680985765098,0.0,0.0,0.0 -9833,catchment_outflow,0.03656291701691989,2012-02-28,0.0,0.0,5.728472510415329e-06,0.0,0.0,0.0,0.0,0.0,9.748222978985815,0.0,0.0,0.0 -9834,reservoir_outflow,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9835,gw1_gw2,0.0,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9836,gw2_gw1,0.00016814742698336718,2012-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9837,urban_drainage,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9838,percolation,0.03647203218552579,2012-02-29,0.0,0.0,7.289000018677661e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9839,runoff,0.0001670610602918329,2012-02-29,0.0,0.0,3.168538701756246e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9840,storm_outflow,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9841,baseflow,0.036354385545290024,2012-02-29,0.0,0.0,5.692866112248461e-06,0.0,0.0,0.0,0.0,0.0,9.772915547998892,0.0,0.0,0.0 -9842,catchment_outflow,0.036521446605581855,2012-02-29,0.0,0.0,5.724551499266023e-06,0.0,0.0,0.0,0.0,0.0,9.746955179158721,0.0,0.0,0.0 -9843,reservoir_outflow,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9844,gw1_gw2,0.0,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9845,gw2_gw1,0.00016702644413690848,2012-02-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9846,urban_drainage,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9847,percolation,0.03574259154181528,2012-03-01,0.0,0.0,7.1432200183041094e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9848,runoff,0.00013364884823346631,2012-03-01,0.0,0.0,2.5348309614049966e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9849,storm_outflow,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9850,baseflow,0.03635285606028134,2012-03-01,0.0,0.0,5.6964919970136e-06,0.0,0.0,0.0,0.0,0.0,9.76532418649822,0.0,0.0,0.0 -9851,catchment_outflow,0.03648650490851481,2012-03-01,0.0,0.0,5.72184030662765e-06,0.0,0.0,0.0,0.0,0.0,9.744563809346605,0.0,0.0,0.0 -9852,reservoir_outflow,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9853,gw1_gw2,0.0,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9854,gw2_gw1,0.00016591293450929356,2012-03-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9855,urban_drainage,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9856,percolation,0.03502773971097897,2012-03-02,0.0,0.0,7.0003556179380265e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9857,runoff,0.00010691907858677305,2012-03-02,0.0,0.0,2.027864769123997e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9858,storm_outflow,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9859,baseflow,0.036349543269408084,2012-03-02,0.0,0.0,5.699751656065911e-06,0.0,0.0,0.0,0.0,0.0,9.757902262489146,0.0,0.0,0.0 -9860,catchment_outflow,0.03645646234799486,2012-03-02,0.0,0.0,5.720030303757151e-06,0.0,0.0,0.0,0.0,0.0,9.741302041348028,0.0,0.0,0.0 -9861,reservoir_outflow,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9862,gw1_gw2,0.0,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9863,gw2_gw1,0.00016480684827904215,2012-03-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9864,urban_drainage,0.04,2012-03-03,0.0,0.0,1.3333333333333338e-05,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0 -9865,percolation,0.03432718491675939,2012-03-03,0.0,0.0,6.860348505579265e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9866,runoff,8.553526286941844e-05,2012-03-03,0.0,0.0,1.622291815299198e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9867,storm_outflow,0.04,2012-03-03,0.0,0.0,1.3333333333333338e-05,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0 -9868,baseflow,0.03634448737352646,2012-03-03,0.0,0.0,5.702653148189694e-06,0.0,0.0,0.0,0.0,0.0,9.750645290067267,0.0,0.0,0.0 -9869,catchment_outflow,0.07643002263639588,2012-03-03,0.0,0.0,1.9052209399676025e-05,0.0,0.0,0.0,0.0,0.0,8.51736894271263,0.0,0.0,0.0 -9870,reservoir_outflow,0.020999999999999998,2012-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9871,gw1_gw2,0.0,2012-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9872,gw2_gw1,0.0001637081359572079,2012-03-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9873,urban_drainage,0.04,2012-03-04,0.0,0.0,1.0928961748633867e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -9874,percolation,0.0336406412184242,2012-03-04,0.0,0.0,6.723141535467681e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9875,runoff,6.842821029553475e-05,2012-03-04,0.0,0.0,1.297833452239358e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9876,storm_outflow,0.04,2012-03-04,0.0,0.0,1.0928961748633867e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -9877,baseflow,0.036337727758138705,2012-03-04,0.0,0.0,5.705204369157889e-06,0.0,0.0,0.0,0.0,0.0,9.743548929986407,0.0,0.0,0.0 -9878,catchment_outflow,0.07640615596843424,2012-03-04,0.0,0.0,6.811078878543669e-06,0.0,0.0,0.0,0.0,0.0,8.39145078813232,0.0,0.0,0.0 -9879,reservoir_outflow,0.029500000000000005,2012-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9880,gw1_gw2,0.0,2012-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9881,gw2_gw1,0.0001626167483843588,2012-03-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9882,urban_drainage,0.0010000000000000044,2012-03-05,0.0,0.0,1.573770491803278e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -9883,percolation,0.032967828394055716,2012-03-05,0.0,0.0,6.588678704758327e-06,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -9884,runoff,5.474256823642781e-05,2012-03-05,0.0,0.0,1.0382667617914869e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -9885,storm_outflow,0.0010000000000000044,2012-03-05,0.0,0.0,1.573770491803278e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -9886,baseflow,0.036329303009728496,2012-03-05,0.0,0.0,5.70741305499689e-06,0.0,0.0,0.0,0.0,0.0,9.736608983749143,0.0,0.0,0.0 -9887,catchment_outflow,0.03738404557796493,2012-03-05,0.0,0.0,7.291566214418083e-06,0.0,0.0,0.0,0.0,0.0,9.65970969744118,0.0,0.0,0.0 -9888,reservoir_outflow,0.0,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9889,gw1_gw2,0.0,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9890,gw2_gw1,0.0001615326367282677,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9891,urban_drainage,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9892,percolation,0.03245887430016816,2012-03-06,0.0,0.0,6.4888733735910474e-06,0.0,0.0,0.0,0.0,0.0,6.68778201659618,0.0,0.0,0.0 -9893,runoff,0.0010728636134924269,2012-03-06,0.0,0.0,1.1486694385395287e-07,0.0,0.0,0.0,0.0,0.0,6.90267259588467,0.0,0.0,0.0 -9894,storm_outflow,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9895,baseflow,0.0363196269379546,2012-03-06,0.0,0.0,5.709366705793375e-06,0.0,0.0,0.0,0.0,0.0,9.729797137122882,0.0,0.0,0.0 -9896,catchment_outflow,0.03739249055144702,2012-03-06,0.0,0.0,5.824233649647328e-06,0.0,0.0,0.0,0.0,0.0,9.648681410238288,0.0,0.0,0.0 -9897,reservoir_outflow,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9898,gw1_gw2,0.0,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9899,gw2_gw1,0.00016045575248302413,2012-03-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9900,urban_drainage,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9901,percolation,0.032064531526172384,2012-03-07,0.0,0.0,6.413182359623936e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 -9902,runoff,0.0021797144319165855,2012-03-07,0.0,0.0,2.721817334321939e-07,0.0,0.0,0.0,0.0,0.0,7.107565515544522,0.0,0.0,0.0 -9903,storm_outflow,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9904,baseflow,0.03630898919942514,2012-03-07,0.0,0.0,5.711126244927951e-06,0.0,0.0,0.0,0.0,0.0,9.723089733962304,0.0,0.0,0.0 -9905,catchment_outflow,0.03848870363134173,2012-03-07,0.0,0.0,5.983307978360145e-06,0.0,0.0,0.0,0.0,0.0,9.574965859993473,0.0,0.0,0.0 -9906,reservoir_outflow,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9907,gw1_gw2,0.0,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9908,gw2_gw1,0.00015938604746637,2012-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9909,urban_drainage,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9910,percolation,0.031423240895648935,2012-03-08,0.0,0.0,6.284918712431458e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 -9911,runoff,0.001028446038143544,2012-03-08,0.0,0.0,2.177453867457551e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9912,storm_outflow,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9913,baseflow,0.0362967748286657,2012-03-08,0.0,0.0,5.712560726096709e-06,0.0,0.0,0.0,0.0,0.0,9.71652878388902,0.0,0.0,0.0 -9914,catchment_outflow,0.03732522086680925,2012-03-08,0.0,0.0,5.930306112842465e-06,0.0,0.0,0.0,0.0,0.0,9.646087775786723,0.0,0.0,0.0 -9915,reservoir_outflow,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9916,gw1_gw2,0.0,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9917,gw2_gw1,0.0001583234738165018,2012-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9918,urban_drainage,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9919,percolation,0.030794776077735952,2012-03-09,0.0,0.0,6.159220338182828e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 -9920,runoff,0.0008227568305148352,2012-03-09,0.0,0.0,1.7419630939660408e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9921,storm_outflow,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9922,baseflow,0.03628301983178838,2012-03-09,0.0,0.0,5.713677375126924e-06,0.0,0.0,0.0,0.0,0.0,9.710110536606093,0.0,0.0,0.0 -9923,catchment_outflow,0.03710577666230322,2012-03-09,0.0,0.0,5.887873684523528e-06,0.0,0.0,0.0,0.0,0.0,9.653566772256358,0.0,0.0,0.0 -9924,reservoir_outflow,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9925,gw1_gw2,0.0,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9926,gw2_gw1,0.00015726798399082754,2012-03-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9927,urban_drainage,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9928,percolation,0.03017888055618123,2012-03-10,0.0,0.0,6.036035931419172e-06,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 -9929,runoff,0.0006582054644118682,2012-03-10,0.0,0.0,1.3935704751728327e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9930,storm_outflow,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9931,baseflow,0.036267759483599366,2012-03-10,0.0,0.0,5.714483271517656e-06,0.0,0.0,0.0,0.0,0.0,9.703831359451785,0.0,0.0,0.0 -9932,catchment_outflow,0.03692596494801123,2012-03-10,0.0,0.0,5.853840319034939e-06,0.0,0.0,0.0,0.0,0.0,9.65848800154826,0.0,0.0,0.0 -9933,reservoir_outflow,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9934,gw1_gw2,0.0,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9935,gw2_gw1,0.00015621953076436768,2012-03-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9936,urban_drainage,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9937,percolation,0.02957530294505761,2012-03-11,0.0,0.0,5.915315212790789e-06,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 -9938,runoff,0.0005265643715294945,2012-03-11,0.0,0.0,1.1148563801382662e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9939,storm_outflow,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9940,baseflow,0.036251028342253,2012-03-11,0.0,0.0,5.714985351370837e-06,0.0,0.0,0.0,0.0,0.0,9.697687732861871,0.0,0.0,0.0 -9941,catchment_outflow,0.036777592713782496,2012-03-11,0.0,0.0,5.826470989384664e-06,0.0,0.0,0.0,0.0,0.0,9.661354664757562,0.0,0.0,0.0 -9942,reservoir_outflow,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9943,gw1_gw2,0.0,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9944,gw2_gw1,0.00015517806722584738,2012-03-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9945,urban_drainage,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9946,percolation,0.028983796886156456,2012-03-12,0.0,0.0,5.797008908534974e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -9947,runoff,0.0004212514972235957,2012-03-12,0.0,0.0,8.918851041106129e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -9948,storm_outflow,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9949,baseflow,0.03623286026361276,2012-03-12,0.0,0.0,5.715190410263747e-06,0.0,0.0,0.0,0.0,0.0,9.691676246041489,0.0,0.0,0.0 -9950,catchment_outflow,0.036654111760836355,2012-03-12,0.0,0.0,5.804378920674809e-06,0.0,0.0,0.0,0.0,0.0,9.662580959712884,0.0,0.0,0.0 -9951,reservoir_outflow,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9952,gw1_gw2,0.0,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9953,gw2_gw1,0.0001541435467776964,2012-03-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9954,urban_drainage,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9955,percolation,0.02840412094843333,2012-03-13,0.0,0.0,5.6810687303642745e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -9956,runoff,0.00033700119777887647,2012-03-13,0.0,0.0,7.135080832884903e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9957,storm_outflow,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9958,baseflow,0.03621328841532481,2012-03-13,0.0,0.0,5.715105106063999e-06,0.0,0.0,0.0,0.0,0.0,9.685793592835278,0.0,0.0,0.0 -9959,catchment_outflow,0.036550289613103686,2012-03-13,0.0,0.0,5.7864559143928475e-06,0.0,0.0,0.0,0.0,0.0,9.662505486249113,0.0,0.0,0.0 -9960,reservoir_outflow,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9961,gw1_gw2,0.0,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9962,gw2_gw1,0.00015311592313285163,2012-03-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9963,urban_drainage,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9964,percolation,0.027836038529464664,2012-03-14,0.0,0.0,5.5674473557569885e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 -9965,runoff,0.0002696009582231012,2012-03-14,0.0,0.0,5.708064666307923e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9966,storm_outflow,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9967,baseflow,0.03619234529061016,2012-03-14,0.0,0.0,5.714735961688233e-06,0.0,0.0,0.0,0.0,0.0,9.680036567785272,0.0,0.0,0.0 -9968,catchment_outflow,0.03646194624883326,2012-03-14,0.0,0.0,5.7718166083513125e-06,0.0,0.0,0.0,0.0,0.0,9.661403510512201,0.0,0.0,0.0 -9969,reservoir_outflow,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9970,gw1_gw2,0.0,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9971,gw2_gw1,0.00015209515031191503,2012-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9972,urban_drainage,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9973,percolation,0.02727931775887537,2012-03-15,0.0,0.0,5.456098408641849e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -9974,runoff,0.00021568076657848095,2012-03-15,0.0,0.0,4.5664517330463387e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9975,storm_outflow,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9976,baseflow,0.036170062721780825,2012-03-15,0.0,0.0,5.7140893678056166e-06,0.0,0.0,0.0,0.0,0.0,9.67440206236664,0.0,0.0,0.0 -9977,catchment_outflow,0.03638574348835931,2012-03-15,0.0,0.0,5.75975388513608e-06,0.0,0.0,0.0,0.0,0.0,9.659497797131019,0.0,0.0,0.0 -9978,reservoir_outflow,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9979,gw1_gw2,0.0,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9980,gw2_gw1,0.0001510811826429759,2012-03-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9981,urban_drainage,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9982,percolation,0.026733731403697863,2012-03-16,0.0,0.0,5.346976440469012e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 -9983,runoff,0.00017254461326278477,2012-03-16,0.0,0.0,3.653161386437071e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -9984,storm_outflow,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9985,baseflow,0.036146471893485625,2012-03-16,0.0,0.0,5.7131715854872755e-06,0.0,0.0,0.0,0.0,0.0,9.668887061391954,0.0,0.0,0.0 -9986,catchment_outflow,0.03631901650674841,2012-03-16,0.0,0.0,5.749703199351646e-06,0.0,0.0,0.0,0.0,0.0,9.656967943659076,0.0,0.0,0.0 -9987,reservoir_outflow,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9988,gw1_gw2,0.0,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9989,gw2_gw1,0.00015007397475876874,2012-03-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9990,urban_drainage,0.016,2012-03-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -9991,percolation,0.026199056775623904,2012-03-17,0.0,0.0,5.240036911659632e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9992,runoff,0.0001380356906102278,2012-03-17,0.0,0.0,2.9225291091496564e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -9993,storm_outflow,0.016,2012-03-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -9994,baseflow,0.03612160335569097,2012-03-17,0.0,0.0,5.711988748802707e-06,0.0,0.0,0.0,0.0,0.0,9.66348863957523,0.0,0.0,0.0 -9995,catchment_outflow,0.052259639046301196,2012-03-17,0.0,0.0,1.7741214039894205e-05,0.0,0.0,0.0,0.0,0.0,9.415469598460433,0.0,0.0,0.0 -9996,reservoir_outflow,0.008,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9997,gw1_gw2,0.0,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9998,gw2_gw1,0.0001490734815936534,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9999,urban_drainage,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10000,percolation,0.025675075640111428,2012-03-18,0.0,0.0,5.135236173426439e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10001,runoff,0.00011042855248818225,2012-03-18,0.0,0.0,2.3380232873197252e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10002,storm_outflow,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10003,baseflow,0.03609548703640202,2012-03-18,0.0,0.0,5.710546867364266e-06,0.0,0.0,0.0,0.0,0.0,9.658203958247487,0.0,0.0,0.0 -10004,catchment_outflow,0.036205915588890206,2012-03-18,0.0,0.0,5.733927100237463e-06,0.0,0.0,0.0,0.0,0.0,9.650584477246776,0.0,0.0,0.0 -10005,reservoir_outflow,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10006,gw1_gw2,0.0,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10007,gw2_gw1,0.00014807965838325998,2012-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10008,urban_drainage,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10009,percolation,0.025161574127309193,2012-03-19,0.0,0.0,5.032531449957909e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10010,runoff,8.83428419905458e-05,2012-03-19,0.0,0.0,1.8704186298557802e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10011,storm_outflow,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10012,baseflow,0.03606815225412929,2012-03-19,0.0,0.0,5.708851828820751e-06,0.0,0.0,0.0,0.0,0.0,9.653030262216076,0.0,0.0,0.0 -10013,catchment_outflow,0.03615649509611984,2012-03-19,0.0,0.0,5.727556015119309e-06,0.0,0.0,0.0,0.0,0.0,9.646938986799091,0.0,0.0,0.0 -10014,reservoir_outflow,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10015,gw1_gw2,0.0,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10016,gw2_gw1,0.00014709246066058057,2012-03-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10017,urban_drainage,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10018,percolation,0.02465834264476302,2012-03-20,0.0,0.0,4.931880820958753e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10019,runoff,7.067427359243662e-05,2012-03-20,0.0,0.0,1.496334903884624e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10020,storm_outflow,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10021,baseflow,0.036039627730105876,2012-03-20,0.0,0.0,5.7069094013010966e-06,0.0,0.0,0.0,0.0,0.0,9.647964876760453,0.0,0.0,0.0 -10022,catchment_outflow,0.03611030200369831,2012-03-20,0.0,0.0,5.721872750339943e-06,0.0,0.0,0.0,0.0,0.0,9.643095536610955,0.0,0.0,0.0 -10023,reservoir_outflow,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10024,gw1_gw2,0.0,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10025,gw2_gw1,0.0001461118442561471,2012-03-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10026,urban_drainage,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10027,percolation,0.024165175791867752,2012-03-21,0.0,0.0,4.833243204539577e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10028,runoff,5.653941887394931e-05,2012-03-21,0.0,0.0,1.1970679231076994e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10029,storm_outflow,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10030,baseflow,0.03600994160026028,2012-03-21,0.0,0.0,5.7047252358091925e-06,0.0,0.0,0.0,0.0,0.0,9.643005204757504,0.0,0.0,0.0 -10031,catchment_outflow,0.03606648101913423,2012-03-21,0.0,0.0,5.716695915040269e-06,0.0,0.0,0.0,0.0,0.0,9.639112774618884,0.0,0.0,0.0 -10032,reservoir_outflow,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10033,gw1_gw2,0.0,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10034,gw2_gw1,0.00014513776529465617,2012-03-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10035,urban_drainage,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10036,percolation,0.0236818722760304,2012-03-22,0.0,0.0,4.7365783404487855e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10037,runoff,4.523153509915945e-05,2012-03-22,0.0,0.0,9.576543384861596e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10038,storm_outflow,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10039,baseflow,0.03597912142694971,2012-03-22,0.0,0.0,5.702304868570791e-06,0.0,0.0,0.0,0.0,0.0,9.638148723929964,0.0,0.0,0.0 -10040,catchment_outflow,0.03602435296204887,2012-03-22,0.0,0.0,5.711881411955652e-06,0.0,0.0,0.0,0.0,0.0,9.635037235981649,0.0,0.0,0.0 -10041,reservoir_outflow,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10042,gw1_gw2,0.0,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10043,gw2_gw1,0.0001441701801926598,2012-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10044,urban_drainage,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10045,percolation,0.02320823483050979,2012-03-23,0.0,0.0,4.64184677363981e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10046,runoff,3.618522807932756e-05,2012-03-23,0.0,0.0,7.661234707889277e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10047,storm_outflow,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10048,baseflow,0.035947194210458604,2012-03-23,0.0,0.0,5.699653723333463e-06,0.0,0.0,0.0,0.0,0.0,9.633392984211754,0.0,0.0,0.0 -10049,catchment_outflow,0.03598337943853793,2012-03-23,0.0,0.0,5.707314958041352e-06,0.0,0.0,0.0,0.0,0.0,9.63090574188099,0.0,0.0,0.0 -10050,reservoir_outflow,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10051,gw1_gw2,0.0,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10052,gw2_gw1,0.0001432090456580326,2012-03-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10053,urban_drainage,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10054,percolation,0.022744070133899594,2012-03-24,0.0,0.0,4.549009838167014e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10055,runoff,2.8948182463462045e-05,2012-03-24,0.0,0.0,6.128987766311421e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10056,storm_outflow,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10057,baseflow,0.0359141864002672,2012-03-24,0.0,0.0,5.696777113620547e-06,0.0,0.0,0.0,0.0,0.0,9.628735605224488,0.0,0.0,0.0 -10058,catchment_outflow,0.035943134582730664,2012-03-24,0.0,0.0,5.702906101386859e-06,0.0,0.0,0.0,0.0,0.0,9.626747334423746,0.0,0.0,0.0 -10059,reservoir_outflow,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10060,gw1_gw2,0.0,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10061,gw2_gw1,0.0001422543186873071,2012-03-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10062,urban_drainage,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10063,percolation,0.022289188731221602,2012-03-25,0.0,0.0,4.458029641403674e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10064,runoff,2.315854597076964e-05,2012-03-25,0.0,0.0,4.903190213049137e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10065,storm_outflow,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10066,baseflow,0.03588012390609459,2012-03-25,0.0,0.0,5.693680244940005e-06,0.0,0.0,0.0,0.0,0.0,9.624174273859692,0.0,0.0,0.0 -10067,catchment_outflow,0.03590328245206536,2012-03-25,0.0,0.0,5.698583435153054e-06,0.0,0.0,0.0,0.0,0.0,9.622584833834077,0.0,0.0,0.0 -10068,reservoir_outflow,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10069,gw1_gw2,0.0,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10070,gw2_gw1,0.00014130595656247635,2012-03-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10071,urban_drainage,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10072,percolation,0.02184340495659717,2012-03-26,0.0,0.0,4.3688690485756006e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10073,runoff,1.8526836776615712e-05,2012-03-26,0.0,0.0,3.92255217043931e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10074,storm_outflow,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10075,baseflow,0.035845032108720844,2012-03-26,0.0,0.0,5.690368216949093e-06,0.0,0.0,0.0,0.0,0.0,9.619706741961586,0.0,0.0,0.0 -10076,catchment_outflow,0.03586355894549746,2012-03-26,0.0,0.0,5.694290769119533e-06,0.0,0.0,0.0,0.0,0.0,9.61843608942598,0.0,0.0,0.0 -10077,reservoir_outflow,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10078,gw1_gw2,0.0,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10079,gw2_gw1,0.00014036391685223748,2012-03-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10080,urban_drainage,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10081,percolation,0.021406536857465228,2012-03-27,0.0,0.0,4.281491667604089e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10082,runoff,1.482146942129257e-05,2012-03-27,0.0,0.0,3.1380417363514477e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10083,storm_outflow,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10084,baseflow,0.03580893587059271,2012-03-27,0.0,0.0,5.686846025575732e-06,0.0,0.0,0.0,0.0,0.0,9.615330824105543,0.0,0.0,0.0 -10085,catchment_outflow,0.035823757340014,2012-03-27,0.0,0.0,5.689984067312083e-06,0.0,0.0,0.0,0.0,0.0,9.614314983142522,0.0,0.0,0.0 -10086,reservoir_outflow,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10087,gw1_gw2,0.0,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10088,gw2_gw1,0.00013942815740666247,2012-03-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10089,urban_drainage,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10090,percolation,0.020978406120315922,2012-03-28,0.0,0.0,4.195861834252007e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10091,runoff,1.1857175537034056e-05,2012-03-28,0.0,0.0,2.510433389081158e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10092,storm_outflow,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10093,baseflow,0.03577185954621701,2012-03-28,0.0,0.0,5.683118565097423e-06,0.0,0.0,0.0,0.0,0.0,9.611044395467651,0.0,0.0,0.0 -10094,catchment_outflow,0.035783716721754046,2012-03-28,0.0,0.0,5.685628998486504e-06,0.0,0.0,0.0,0.0,0.0,9.610232233684306,0.0,0.0,0.0 -10095,reservoir_outflow,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10096,gw1_gw2,0.0,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10097,gw2_gw1,0.00013849863635719827,2012-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10098,urban_drainage,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10099,percolation,0.020558837997909602,2012-03-29,0.0,0.0,4.111944597566966e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 -10100,runoff,9.485740429627245e-06,2012-03-29,0.0,0.0,2.0083467112649263e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10101,storm_outflow,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10102,baseflow,0.03573382699234624,2012-03-29,0.0,0.0,5.679190630178598e-06,0.0,0.0,0.0,0.0,0.0,9.606845389781022,0.0,0.0,0.0 -10103,catchment_outflow,0.03574331273277587,2012-03-29,0.0,0.0,5.681198976889863e-06,0.0,0.0,0.0,0.0,0.0,9.606196040258066,0.0,0.0,0.0 -10104,reservoir_outflow,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10105,gw1_gw2,0.0,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10106,gw2_gw1,0.00013757531211453511,2012-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10107,urban_drainage,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10108,percolation,0.02014766123795141,2012-03-30,0.0,0.0,4.0297057056156265e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 -10109,runoff,7.588592343701796e-06,2012-03-30,0.0,0.0,1.6066773690119414e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -10110,storm_outflow,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10111,baseflow,0.03569486157796026,2012-03-30,0.0,0.0,5.67506691786719e-06,0.0,0.0,0.0,0.0,0.0,9.60273179737473,0.0,0.0,0.0 -10112,catchment_outflow,0.03570245017030396,2012-03-30,0.0,0.0,5.676673595236202e-06,0.0,0.0,0.0,0.0,0.0,9.602212597544094,0.0,0.0,0.0 -10113,reservoir_outflow,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10114,gw1_gw2,0.0,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10115,gw2_gw1,0.0001366581433671854,2012-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10116,urban_drainage,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10117,percolation,0.01974470801319238,2012-03-31,0.0,0.0,3.949111591503314e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10118,runoff,6.070873874961437e-06,2012-03-31,0.0,0.0,1.2853418952095533e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -10119,storm_outflow,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10120,baseflow,0.03565498619404833,2012-03-31,0.0,0.0,5.670752029551281e-06,0.0,0.0,0.0,0.0,0.0,9.5987016632915,0.0,0.0,0.0 -10121,catchment_outflow,0.035661057067923295,2012-03-31,0.0,0.0,5.67203737144649e-06,0.0,0.0,0.0,0.0,0.0,9.598286507386238,0.0,0.0,0.0 -10122,reservoir_outflow,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10123,gw1_gw2,0.0,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10124,gw2_gw1,0.0001357470890779311,2012-03-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10125,urban_drainage,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10126,percolation,0.019349813852928534,2012-04-01,0.0,0.0,3.870129359673248e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10127,runoff,4.8566990999691495e-06,2012-04-01,0.0,0.0,1.0282735161676424e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -10128,storm_outflow,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10129,baseflow,0.035614223263195535,2012-04-01,0.0,0.0,5.666250472876586e-06,0.0,0.0,0.0,0.0,0.0,9.594753085480445,0.0,0.0,0.0 -10130,catchment_outflow,0.035619079962295505,2012-04-01,0.0,0.0,5.667278746392754e-06,0.0,0.0,0.0,0.0,0.0,9.594421107739809,0.0,0.0,0.0 -10131,reservoir_outflow,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10132,gw1_gw2,0.0,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10133,gw2_gw1,0.00013484210848400125,2012-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10134,urban_drainage,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10135,percolation,0.018962817575869963,2012-04-02,0.0,0.0,3.792726772479783e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10136,runoff,3.88535927997532e-06,2012-04-02,0.0,0.0,8.226188129341139e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -10137,storm_outflow,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10138,baseflow,0.03557259474897722,2012-04-02,0.0,0.0,5.661566663625593e-06,0.0,0.0,0.0,0.0,0.0,9.59088421306139,0.0,0.0,0.0 -10139,catchment_outflow,0.035576480108257195,2012-04-02,0.0,0.0,5.662389282438528e-06,0.0,0.0,0.0,0.0,0.0,9.590618735381659,0.0,0.0,0.0 -10140,reservoir_outflow,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10141,gw1_gw2,0.0,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10142,gw2_gw1,0.00013394316109440748,2012-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10143,urban_drainage,0.002000000000000001,2012-04-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 -10144,percolation,0.018583561224352566,2012-04-03,0.0,0.0,3.7168722370301873e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10145,runoff,3.1082874239802557e-06,2012-04-03,0.0,0.0,6.580950503472911e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -10146,storm_outflow,0.002000000000000001,2012-04-03,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 -10147,baseflow,0.035530122165165656,2012-04-03,0.0,0.0,5.656704927559106e-06,0.0,0.0,0.0,0.0,0.0,9.587093244657462,0.0,0.0,0.0 -10148,catchment_outflow,0.03753323045258964,2012-04-03,0.0,0.0,2.2657363022609457e-05,0.0,0.0,0.0,0.0,0.0,9.623548126597855,0.0,0.0,0.0 -10149,reservoir_outflow,0.0010000000000000005,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10150,gw1_gw2,0.0,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10151,gw2_gw1,0.00013305020668710199,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10152,urban_drainage,0.008,2012-04-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 -10153,percolation,0.018211889999865515,2012-04-04,0.0,0.0,3.642534792289584e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10154,runoff,2.4866299391842046e-06,2012-04-04,0.0,0.0,5.26476040277833e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -10155,storm_outflow,0.008,2012-04-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 -10156,baseflow,0.035486826584752405,2012-04-04,0.0,0.0,5.651669502220933e-06,0.0,0.0,0.0,0.0,0.0,9.583378426792816,0.0,0.0,0.0 -10157,catchment_outflow,0.043489313214691586,2012-04-04,0.0,0.0,6.652195978261211e-06,0.0,0.0,0.0,0.0,0.0,9.695355447410245,0.0,0.0,0.0 -10158,reservoir_outflow,0.004,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10159,gw1_gw2,0.0,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10160,gw2_gw1,0.00013216320530915482,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10161,urban_drainage,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10162,percolation,0.017847652199868204,2012-04-05,0.0,0.0,3.569684096443792e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10163,runoff,1.9893039513473638e-06,2012-04-05,0.0,0.0,4.211808322222664e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -10164,storm_outflow,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10165,baseflow,0.035442728648790195,2012-04-05,0.0,0.0,5.64646453870649e-06,0.0,0.0,0.0,0.0,0.0,9.579738052352546,0.0,0.0,0.0 -10166,catchment_outflow,0.03544471795274154,2012-04-05,0.0,0.0,5.646885719538712e-06,0.0,0.0,0.0,0.0,0.0,9.57960224806324,0.0,0.0,0.0 -10167,reservoir_outflow,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10168,gw1_gw2,0.0,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10169,gw2_gw1,0.0001312821172737344,2012-04-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10170,urban_drainage,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10171,percolation,0.01749069915587084,2012-04-06,0.0,0.0,3.498290414514916e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10172,runoff,1.591443161077891e-06,2012-04-06,0.0,0.0,3.3694466577781305e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -10173,storm_outflow,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10174,baseflow,0.03539784857505789,2012-04-06,0.0,0.0,5.64109410339601e-06,0.0,0.0,0.0,0.0,0.0,9.576170459101958,0.0,0.0,0.0 -10175,catchment_outflow,0.03539944001821897,2012-04-06,0.0,0.0,5.641431048061788e-06,0.0,0.0,0.0,0.0,0.0,9.576061837096605,0.0,0.0,0.0 -10176,reservoir_outflow,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10177,gw1_gw2,0.0,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10178,gw2_gw1,0.00013040690315904157,2012-04-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10179,urban_drainage,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10180,percolation,0.01714088517275342,2012-04-07,0.0,0.0,3.428324606224618e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10181,runoff,1.2731545288623127e-06,2012-04-07,0.0,0.0,2.695557326222505e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -10182,storm_outflow,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10183,baseflow,0.03535220616655214,2012-04-07,0.0,0.0,5.635562179653083e-06,0.0,0.0,0.0,0.0,0.0,9.57267402826252,0.0,0.0,0.0 -10184,catchment_outflow,0.035353479321081,2012-04-07,0.0,0.0,5.635831735385705e-06,0.0,0.0,0.0,0.0,0.0,9.572587143602433,0.0,0.0,0.0 -10185,reservoir_outflow,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10186,gw1_gw2,0.0,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10187,gw2_gw1,0.00012953752380440164,2012-04-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10188,urban_drainage,0.0009999999999999983,2012-04-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0 -10189,percolation,0.016798067469298354,2012-04-08,0.0,0.0,3.3597581141001255e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10190,runoff,1.0185236230898502e-06,2012-04-08,0.0,0.0,2.156445860978004e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -10191,storm_outflow,0.0009999999999999983,2012-04-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0 -10192,baseflow,0.03530582081980901,2012-04-08,0.0,0.0,5.6298726694892004e-06,0.0,0.0,0.0,0.0,0.0,9.569247183142,0.0,0.0,0.0 -10193,catchment_outflow,0.036306839343432096,2012-04-08,0.0,0.0,9.630088314075299e-06,0.0,0.0,0.0,0.0,0.0,9.5773058488492,0.0,0.0,0.0 -10194,reservoir_outflow,0.0004999999999999991,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10195,gw1_gw2,0.0,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10196,gw2_gw1,0.00012867394031221835,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10197,urban_drainage,0.04,2012-04-09,0.0,0.0,5.263157894736843e-07,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -10198,percolation,0.016462106119912386,2012-04-09,0.0,0.0,3.2925629518181233e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10199,runoff,0.0,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10200,storm_outflow,0.04,2012-04-09,0.0,0.0,5.263157894736843e-07,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -10201,baseflow,0.03525871153305926,2012-04-09,0.0,0.0,5.624029395195023e-06,0.0,0.0,0.0,0.0,0.0,9.565888387816337,0.0,0.0,0.0 -10202,catchment_outflow,0.07525871153305927,2012-04-09,0.0,0.0,6.150345184668708e-06,0.0,0.0,0.0,0.0,0.0,9.680827623303337,0.0,0.0,0.0 -10203,reservoir_outflow,0.03799999999999999,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10204,gw1_gw2,0.0,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10205,gw2_gw1,0.000127816114043533,2012-04-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10206,urban_drainage,0.02999999999999998,2012-04-10,0.0,0.0,1.4736842105263154e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -10207,percolation,0.016132863997514138,2012-04-10,0.0,0.0,3.2267116927817606e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10208,runoff,0.0,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10209,storm_outflow,0.02999999999999998,2012-04-10,0.0,0.0,1.4736842105263154e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -10210,baseflow,0.0352108969142204,2012-04-10,0.0,0.0,5.61803610093899e-06,0.0,0.0,0.0,0.0,0.0,9.562596145860999,0.0,0.0,0.0 -10211,catchment_outflow,0.06521089691422038,2012-04-10,0.0,0.0,7.091720311465306e-06,0.0,0.0,0.0,0.0,0.0,9.663597690784293,0.0,0.0,0.0 -10212,reservoir_outflow,0.0,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10213,gw1_gw2,0.0,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10214,gw2_gw1,0.00012696400661624808,2012-04-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10215,urban_drainage,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10216,percolation,0.015810206717563856,2012-04-11,0.0,0.0,3.1621774589261252e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10217,runoff,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10218,storm_outflow,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10219,baseflow,0.03516239518872876,2012-04-11,0.0,0.0,5.611896454333958e-06,0.0,0.0,0.0,0.0,0.0,9.559368999129664,0.0,0.0,0.0 -10220,catchment_outflow,0.03516239518872876,2012-04-11,0.0,0.0,5.611896454333958e-06,0.0,0.0,0.0,0.0,0.0,9.559368999129664,0.0,0.0,0.0 -10221,reservoir_outflow,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10222,gw1_gw2,0.0,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10223,gw2_gw1,0.0001261175799056602,2012-04-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10224,urban_drainage,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10225,percolation,0.015494002583212577,2012-04-12,0.0,0.0,3.0989339097476025e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10226,runoff,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10227,storm_outflow,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10228,baseflow,0.035113224207214966,2012-04-12,0.0,0.0,5.605614047972492e-06,0.0,0.0,0.0,0.0,0.0,9.556205526578118,0.0,0.0,0.0 -10229,catchment_outflow,0.035113224207214966,2012-04-12,0.0,0.0,5.605614047972492e-06,0.0,0.0,0.0,0.0,0.0,9.556205526578118,0.0,0.0,0.0 -10230,reservoir_outflow,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10231,gw1_gw2,0.0,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10232,gw2_gw1,0.0001252767960396639,2012-04-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10233,urban_drainage,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10234,percolation,0.015184122531548326,2012-04-13,0.0,0.0,3.0369552315526503e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10235,runoff,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10236,storm_outflow,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10237,baseflow,0.0350634014530258,2012-04-13,0.0,0.0,5.599192400931443e-06,0.0,0.0,0.0,0.0,0.0,9.553104343131475,0.0,0.0,0.0 -10238,catchment_outflow,0.0350634014530258,2012-04-13,0.0,0.0,5.599192400931443e-06,0.0,0.0,0.0,0.0,0.0,9.553104343131475,0.0,0.0,0.0 -10239,reservoir_outflow,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10240,gw1_gw2,0.0,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10241,gw2_gw1,0.00012444161739946224,2012-04-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10242,urban_drainage,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10243,percolation,0.01488044008091736,2012-04-14,0.0,0.0,2.9762161269215975e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10244,runoff,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10245,storm_outflow,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10246,baseflow,0.035012944049595526,2012-04-14,0.0,0.0,5.592634960246419e-06,0.0,0.0,0.0,0.0,0.0,9.550064098592802,0.0,0.0,0.0 -10247,catchment_outflow,0.035012944049595526,2012-04-14,0.0,0.0,5.592634960246419e-06,0.0,0.0,0.0,0.0,0.0,9.550064098592802,0.0,0.0,0.0 -10248,reservoir_outflow,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10249,gw1_gw2,0.0,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10250,gw2_gw1,0.0001236120066169022,2012-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10251,urban_drainage,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10252,percolation,0.014582831279299014,2012-04-15,0.0,0.0,2.916691804383166e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10253,runoff,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10254,storm_outflow,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10255,baseflow,0.03496186876766978,2012-04-15,0.0,0.0,5.5859451023567615e-06,0.0,0.0,0.0,0.0,0.0,9.547083476591428,0.0,0.0,0.0 -10256,catchment_outflow,0.03496186876766978,2012-04-15,0.0,0.0,5.5859451023567615e-06,0.0,0.0,0.0,0.0,0.0,9.547083476591428,0.0,0.0,0.0 -10257,reservoir_outflow,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10258,gw1_gw2,0.0,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10259,gw2_gw1,0.00012278792657252068,2012-04-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10260,urban_drainage,0.02700000000000001,2012-04-16,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0 -10261,percolation,0.014291174653713032,2012-04-16,0.0,0.0,2.8583579682955023e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10262,runoff,0.0,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10263,storm_outflow,0.02700000000000001,2012-04-16,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0 -10264,baseflow,0.03491019203238489,2012-04-16,0.0,0.0,5.579126134521608e-06,0.0,0.0,0.0,0.0,0.0,9.5441611935692,0.0,0.0,0.0 -10265,catchment_outflow,0.0619101920323849,2012-04-16,0.0,0.0,1.1579126134521609e-05,0.0,0.0,0.0,0.0,0.0,9.565398256344645,0.0,0.0,0.0 -10266,reservoir_outflow,0.013500000000000002,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10267,gw1_gw2,0.0,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10268,gw2_gw1,0.00012196934039554463,2012-04-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10269,urban_drainage,0.01799999999999999,2012-04-17,0.0,0.0,9.999999999999983e-07,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -10270,percolation,0.014005351160638772,2012-04-17,0.0,0.0,2.801190808929592e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -10271,runoff,0.0,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10272,storm_outflow,0.01799999999999999,2012-04-17,0.0,0.0,9.999999999999983e-07,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -10273,baseflow,0.034857929930205526,2012-04-17,0.0,0.0,5.572181296207627e-06,0.0,0.0,0.0,0.0,0.0,9.541295997803143,0.0,0.0,0.0 -10274,catchment_outflow,0.05285792993020552,2012-04-17,0.0,0.0,6.572181296207625e-06,0.0,0.0,0.0,0.0,0.0,9.552773406024471,0.0,0.0,0.0 -10275,reservoir_outflow,0.009,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10276,gw1_gw2,0.0,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10277,gw2_gw1,0.00012115621145945,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10278,urban_drainage,0.04,2012-04-18,0.0,0.0,5.128205128205127e-07,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0 -10279,percolation,0.013725244137425999,2012-04-18,0.0,0.0,2.7451669927510007e-06,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -10280,runoff,0.0,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10281,storm_outflow,0.04,2012-04-18,0.0,0.0,5.128205128205127e-07,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0 -10282,baseflow,0.03480509821572358,2012-04-18,0.0,0.0,5.565113760448985e-06,0.0,0.0,0.0,0.0,0.0,9.538486668462939,0.0,0.0,0.0 -10283,catchment_outflow,0.07480509821572358,2012-04-18,0.0,0.0,6.077934273269498e-06,0.0,0.0,0.0,0.0,0.0,9.607664025420071,0.0,0.0,0.0 -10284,reservoir_outflow,0.039,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10285,gw1_gw2,0.0,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10286,gw2_gw1,0.00012034850338338288,2012-04-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10287,urban_drainage,0.04,2012-04-19,0.0,0.0,1.2656846699399893e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042553,0.0,0.0,0.0 -10288,percolation,0.01682058293387428,2012-04-19,0.0,0.0,3.4582803581882324e-06,0.0,0.0,0.0,0.0,0.0,7.2956606799455095,0.0,0.0,0.0 -10289,runoff,0.02305763999235028,2012-04-19,0.0,0.0,2.560228199976384e-06,0.0,0.0,0.0,0.0,0.0,9.734175780969188,0.0,0.0,0.0 -10290,storm_outflow,0.04,2012-04-19,0.0,0.0,1.2656846699399893e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042553,0.0,0.0,0.0 -10291,baseflow,0.034760136927518955,2012-04-19,0.0,0.0,5.559846676943334e-06,0.0,0.0,0.0,0.0,0.0,9.53577338509579,0.0,0.0,0.0 -10292,catchment_outflow,0.09781777691986923,2012-04-19,0.0,0.0,9.385759546859708e-06,0.0,0.0,0.0,0.0,0.0,9.643824169609093,0.0,0.0,0.0 -10293,reservoir_outflow,0.004499999999999999,2012-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10294,gw1_gw2,0.0,2012-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10295,gw2_gw1,0.00011954618002718576,2012-04-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10296,urban_drainage,0.004999999999999998,2012-04-20,0.0,0.0,1.221494817239498e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0 -10297,percolation,0.018521033827644133,2012-04-20,0.0,0.0,3.8524823189867675e-06,0.0,0.0,0.0,0.0,0.0,7.569335049122665,0.0,0.0,0.0 -10298,runoff,0.02292332965673942,2012-04-20,0.0,0.0,3.592741119855441e-06,0.0,0.0,0.0,0.0,0.0,9.77525391713784,0.0,0.0,0.0 -10299,storm_outflow,0.004999999999999998,2012-04-20,0.0,0.0,1.221494817239498e-06,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0 -10300,baseflow,0.03471953916976927,2012-04-20,0.0,0.0,5.555578266048442e-06,0.0,0.0,0.0,0.0,0.0,9.533150908544298,0.0,0.0,0.0 -10301,catchment_outflow,0.06264286882650869,2012-04-20,0.0,0.0,1.0369814203143382e-05,0.0,0.0,0.0,0.0,0.0,9.63391647280751,0.0,0.0,0.0 -10302,reservoir_outflow,0.0,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10303,gw1_gw2,0.0,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10304,gw2_gw1,0.00011874920549370671,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10305,urban_drainage,0.0009999999999999983,2012-04-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0 -10306,percolation,0.02042984501456678,2012-04-21,0.0,0.0,4.292028567346997e-06,0.0,0.0,0.0,0.0,0.0,7.825307329068979,0.0,0.0,0.0 -10307,runoff,0.0282158991352842,2012-04-21,0.0,0.0,4.596179211684235e-06,0.0,0.0,0.0,0.0,0.0,9.831725609983907,0.0,0.0,0.0 -10308,storm_outflow,0.0009999999999999983,2012-04-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0 -10309,baseflow,0.03468381493438126,2012-04-21,0.0,0.0,5.552419391801688e-06,0.0,0.0,0.0,0.0,0.0,9.530635976168504,0.0,0.0,0.0 -10310,catchment_outflow,0.06389971406966546,2012-04-21,0.0,0.0,1.1148598603485923e-05,0.0,0.0,0.0,0.0,0.0,9.6700936789609,0.0,0.0,0.0 -10311,reservoir_outflow,0.0004999999999999991,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10312,gw1_gw2,0.0,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10313,gw2_gw1,0.00011795754412382565,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10314,urban_drainage,0.008,2012-04-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 -10315,percolation,0.022944708481829598,2012-04-22,0.0,0.0,4.863528182174632e-06,0.0,0.0,0.0,0.0,0.0,8.095234728637555,0.0,0.0,0.0 -10316,runoff,0.03617749904840341,2012-04-22,0.0,0.0,5.8680773232626384e-06,0.0,0.0,0.0,0.0,0.0,9.90048804868733,0.0,0.0,0.0 -10317,storm_outflow,0.008,2012-04-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 -10318,baseflow,0.03465446716824989,2012-04-22,0.0,0.0,5.550697163777622e-06,0.0,0.0,0.0,0.0,0.0,9.528260029727086,0.0,0.0,0.0 -10319,catchment_outflow,0.0788319662166533,2012-04-22,0.0,0.0,1.2418774487040261e-05,0.0,0.0,0.0,0.0,0.0,9.750942338521234,0.0,0.0,0.0 -10320,reservoir_outflow,0.004,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10321,gw1_gw2,0.0,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10322,gw2_gw1,0.00011717116049592136,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10323,urban_drainage,0.024,2012-04-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 -10324,percolation,0.026981088015395574,2012-04-23,0.0,0.0,5.759255304817269e-06,0.0,0.0,0.0,0.0,0.0,8.41669587850042,0.0,0.0,0.0 -10325,runoff,0.051492930562237374,2012-04-23,0.0,0.0,8.00445414623054e-06,0.0,0.0,0.0,0.0,0.0,9.985465601714546,0.0,0.0,0.0 -10326,storm_outflow,0.024,2012-04-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 -10327,baseflow,0.03463528372036775,2012-04-23,0.0,0.0,5.551218559130221e-06,0.0,0.0,0.0,0.0,0.0,9.526095242335627,0.0,0.0,0.0 -10328,catchment_outflow,0.11012821428260514,2012-04-23,0.0,0.0,1.4555672705360761e-05,0.0,0.0,0.0,0.0,0.0,9.872958842100969,0.0,0.0,0.0 -10329,reservoir_outflow,0.012,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10330,gw1_gw2,0.0,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10331,gw2_gw1,0.00011639001942622685,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10332,urban_drainage,0.04,2012-04-24,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 -10333,percolation,0.03416380929232636,2012-04-24,0.0,0.0,7.290261594765059e-06,0.0,0.0,0.0,0.0,0.0,8.798731458121146,0.0,0.0,0.0 -10334,runoff,0.08141311623945102,2012-04-24,0.0,0.0,1.1890867970464892e-05,0.0,0.0,0.0,0.0,0.0,10.080826560498007,0.0,0.0,0.0 -10335,storm_outflow,0.04,2012-04-24,0.0,0.0,7.407407407407406e-07,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 -10336,baseflow,0.034634105034297646,2012-04-24,0.0,0.0,5.555566166719308e-06,0.0,0.0,0.0,0.0,0.0,9.524301525016712,0.0,0.0,0.0 -10337,catchment_outflow,0.15604722127374868,2012-04-24,0.0,0.0,1.818717487792494e-05,0.0,0.0,0.0,0.0,0.0,9.994264244022666,0.0,0.0,0.0 -10338,reservoir_outflow,0.027000000000000003,2012-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10339,gw1_gw2,0.0,2012-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10340,gw2_gw1,0.0001156140859635002,2012-04-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10341,urban_drainage,0.04,2012-04-25,0.0,0.0,5.416168857029071e-07,0.0,0.0,0.0,0.0,0.0,10.334216591075268,0.0,0.0,0.0 -10342,percolation,0.044576666604536234,2012-04-25,0.0,0.0,9.39502894875706e-06,0.0,0.0,0.0,0.0,0.0,9.145276564864984,0.0,0.0,0.0 -10343,runoff,0.11937465401408366,2012-04-25,0.0,0.0,1.7014602995996244e-05,0.0,0.0,0.0,0.0,0.0,10.17771094858147,0.0,0.0,0.0 -10344,storm_outflow,0.04,2012-04-25,0.0,0.0,5.416168857029071e-07,0.0,0.0,0.0,0.0,0.0,10.334216591075268,0.0,0.0,0.0 -10345,baseflow,0.034658961438223244,2012-04-25,0.0,0.0,5.565164823674402e-06,0.0,0.0,0.0,0.0,0.0,9.523082816450273,0.0,0.0,0.0 -10346,catchment_outflow,0.1940336154523069,2012-04-25,0.0,0.0,2.3121384705373553e-05,0.0,0.0,0.0,0.0,0.0,10.09304260155375,0.0,0.0,0.0 -10347,reservoir_outflow,0.03950000000000001,2012-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10348,gw1_gw2,0.0,2012-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10349,gw2_gw1,0.00011484332539044573,2012-04-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10350,urban_drainage,0.04,2012-04-26,0.0,0.0,7.083061334252997e-07,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0 -10351,percolation,0.05130898617802394,2012-04-26,0.0,0.0,1.0709531299728198e-05,0.0,0.0,0.0,0.0,0.0,9.316126670901943,0.0,0.0,0.0 -10352,runoff,0.11651588590401374,2012-04-26,0.0,0.0,1.8619692163284607e-05,0.0,0.0,0.0,0.0,0.0,10.226198093977855,0.0,0.0,0.0 -10353,storm_outflow,0.04,2012-04-26,0.0,0.0,7.083061334252997e-07,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0 -10354,baseflow,0.03470058650007274,2012-04-26,0.0,0.0,5.578025739864537e-06,0.0,0.0,0.0,0.0,0.0,9.522317792636384,0.0,0.0,0.0 -10355,catchment_outflow,0.19121647240408648,2012-04-26,0.0,0.0,2.4906024036574443e-05,0.0,0.0,0.0,0.0,0.0,10.135095606019085,0.0,0.0,0.0 -10356,reservoir_outflow,0.022000000000000002,2012-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10357,gw1_gw2,0.0,2012-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10358,gw2_gw1,0.00011407770322122702,2012-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10359,urban_drainage,0.04,2012-04-27,0.0,0.0,6.279175750409538e-07,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0 -10360,percolation,0.061148287022370525,2012-04-27,0.0,0.0,1.2543561130331502e-05,0.0,0.0,0.0,0.0,0.0,9.510206584540276,0.0,0.0,0.0 -10361,runoff,0.1461551816458637,2012-04-27,0.0,0.0,2.1723155252620572e-05,0.0,0.0,0.0,0.0,0.0,10.33416436205642,0.0,0.0,0.0 -10362,storm_outflow,0.04,2012-04-27,0.0,0.0,6.279175750409538e-07,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0 -10363,baseflow,0.03476670575137849,2012-04-27,0.0,0.0,5.595439578340705e-06,0.0,0.0,0.0,0.0,0.0,9.52226453912754,0.0,0.0,0.0 -10364,catchment_outflow,0.2209218873972422,2012-04-27,0.0,0.0,2.794651240600223e-05,0.0,0.0,0.0,0.0,0.0,10.239583550570929,0.0,0.0,0.0 -10365,reservoir_outflow,0.035500000000000004,2012-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10366,gw1_gw2,0.0,2012-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10367,gw2_gw1,0.00011331718519969058,2012-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10368,urban_drainage,0.04,2012-04-28,0.0,0.0,3.8880304736164885e-07,0.0,0.0,0.0,0.0,0.0,10.659612098855124,0.0,0.0,0.0 -10369,percolation,0.08150210938919379,2012-04-28,0.0,0.0,1.6001308718363514e-05,0.0,0.0,0.0,0.0,0.0,9.780208130396774,0.0,0.0,0.0 -10370,runoff,0.23405520621090906,2012-04-28,0.0,0.0,2.974058690422526e-05,0.0,0.0,0.0,0.0,0.0,10.489372993997897,0.0,0.0,0.0 -10371,storm_outflow,0.04,2012-04-28,0.0,0.0,3.8880304736164885e-07,0.0,0.0,0.0,0.0,0.0,10.659612098855124,0.0,0.0,0.0 -10372,baseflow,0.03488354426047303,2012-04-28,0.0,0.0,5.621454251190762e-06,0.0,0.0,0.0,0.0,0.0,9.523771191278115,0.0,0.0,0.0 -10373,catchment_outflow,0.3089387504713821,2012-04-28,0.0,0.0,3.5750844202777665e-05,0.0,0.0,0.0,0.0,0.0,10.402384718853149,0.0,0.0,0.0 -10374,reservoir_outflow,0.07849999999999999,2012-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10375,gw1_gw2,0.0,2012-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10376,gw2_gw1,0.00011256173729812247,2012-04-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10377,urban_drainage,0.04,2012-04-29,0.0,0.0,4.0577838884453563e-07,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0 -10378,percolation,0.09400618172596151,2012-04-29,0.0,0.0,1.7983043128757093e-05,0.0,0.0,0.0,0.0,0.0,9.908661452609529,0.0,0.0,0.0 -10379,runoff,0.22338484158998712,2012-04-29,0.0,0.0,3.146500480591637e-05,0.0,0.0,0.0,0.0,0.0,10.536260480153619,0.0,0.0,0.0 -10380,storm_outflow,0.04,2012-04-29,0.0,0.0,4.0577838884453563e-07,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0 -10381,baseflow,0.03503135085413674,2012-04-29,0.0,0.0,5.652358223384677e-06,0.0,0.0,0.0,0.0,0.0,9.52635331150536,0.0,0.0,0.0 -10382,catchment_outflow,0.2984161924441238,2012-04-29,0.0,0.0,3.7523141418145586e-05,0.0,0.0,0.0,0.0,0.0,10.44275666603057,0.0,0.0,0.0 -10383,reservoir_outflow,0.045,2012-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10384,gw1_gw2,0.0,2012-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10385,gw2_gw1,0.00011181132571635999,2012-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10386,urban_drainage,0.04,2012-04-30,0.0,0.0,3.726584133905365e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 -10387,percolation,0.11144255296768657,2012-04-30,0.0,0.0,2.0539027978653033e-05,0.0,0.0,0.0,0.0,0.0,10.054599911665507,0.0,0.0,0.0 -10388,runoff,0.27119865709316554,2012-04-30,0.0,0.0,3.4890822886303375e-05,0.0,0.0,0.0,0.0,0.0,10.653648092650755,0.0,0.0,0.0 -10389,storm_outflow,0.04,2012-04-30,0.0,0.0,3.726584133905365e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 -10390,baseflow,0.03522237885942062,2012-04-30,0.0,0.0,5.6895748977728485e-06,0.0,0.0,0.0,0.0,0.0,9.530531702603907,0.0,0.0,0.0 -10391,catchment_outflow,0.3464210359525861,2012-04-30,0.0,0.0,4.095305619746676e-05,0.0,0.0,0.0,0.0,0.0,10.558134650437722,0.0,0.0,0.0 -10392,reservoir_outflow,0.065,2012-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10393,gw1_gw2,0.0,2012-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10394,gw2_gw1,0.00011106591687806145,2012-04-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10395,urban_drainage,0.04,2012-05-01,0.0,0.0,4.972482378163278e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 -10396,percolation,0.11103710224071628,2012-05-01,0.0,0.0,2.0404030172983046e-05,0.0,0.0,0.0,0.0,0.0,10.067525981266865,0.0,0.0,0.0 -10397,runoff,0.17521308268208433,2012-05-01,0.0,0.0,2.8831934155386274e-05,0.0,0.0,0.0,0.0,0.0,10.57130684051329,0.0,0.0,0.0 -10398,storm_outflow,0.04,2012-05-01,0.0,0.0,4.972482378163278e-07,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 -10399,baseflow,0.035411915667873856,2012-05-01,0.0,0.0,5.726361035960874e-06,0.0,0.0,0.0,0.0,0.0,9.534741181779069,0.0,0.0,0.0 -10400,catchment_outflow,0.2506249983499582,2012-05-01,0.0,0.0,3.5055543429163474e-05,0.0,0.0,0.0,0.0,0.0,10.463806948688557,0.0,0.0,0.0 -10401,reservoir_outflow,0.0,2012-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10402,gw1_gw2,0.0,2012-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10403,gw2_gw1,0.00011032547743230482,2012-05-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10404,urban_drainage,0.04,2012-05-02,0.0,0.0,5.360148383723921e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -10405,percolation,0.1181013004271518,2012-05-02,0.0,0.0,2.1355309038350254e-05,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -10406,runoff,0.19858068784752875,2012-05-02,0.0,0.0,2.7596745553731922e-05,0.0,0.0,0.0,0.0,0.0,10.701661750599438,0.0,0.0,0.0 -10407,storm_outflow,0.04,2012-05-02,0.0,0.0,5.360148383723921e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -10408,baseflow,0.03561863912977205,2012-05-02,0.0,0.0,5.765433405966847e-06,0.0,0.0,0.0,0.0,0.0,9.539735309057914,0.0,0.0,0.0 -10409,catchment_outflow,0.2741993269773008,2012-05-02,0.0,0.0,3.3898193798071164e-05,0.0,0.0,0.0,0.0,0.0,10.573337531634849,0.0,0.0,0.0 -10410,reservoir_outflow,0.0265,2012-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10411,gw1_gw2,0.0,2012-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10412,gw2_gw1,0.00010958997424950213,2012-05-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10413,urban_drainage,0.039999999999999994,2012-05-03,0.0,0.0,6.907887652406209e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -10414,percolation,0.11573927441860876,2012-05-03,0.0,0.0,2.0928202857583247e-05,0.0,0.0,0.0,0.0,0.0,10.137220635163311,0.0,0.0,0.0 -10415,runoff,0.13634808518628722,2012-05-03,0.0,0.0,2.2077396442985535e-05,0.0,0.0,0.0,0.0,0.0,10.636720736382392,0.0,0.0,0.0 -10416,storm_outflow,0.039999999999999994,2012-05-03,0.0,0.0,6.907887652406209e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -10417,baseflow,0.03581894071799414,2012-05-03,0.0,0.0,5.803340329595888e-06,0.0,0.0,0.0,0.0,0.0,9.544561841943382,0.0,0.0,0.0 -10418,catchment_outflow,0.21216702590428133,2012-05-03,0.0,0.0,2.8571525537822043e-05,0.0,0.0,0.0,0.0,0.0,10.493802628090156,0.0,0.0,0.0 -10419,reservoir_outflow,0.0,2012-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10420,gw1_gw2,0.0,2012-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10421,gw2_gw1,0.00010885937442104421,2012-05-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10422,urban_drainage,0.04,2012-05-04,0.0,0.0,8.927035730185424e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -10423,percolation,0.11342448893023659,2012-05-04,0.0,0.0,2.050963880043158e-05,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -10424,runoff,0.10888069667619861,2012-05-04,0.0,0.0,1.7661917154388425e-05,0.0,0.0,0.0,0.0,0.0,10.635097792995282,0.0,0.0,0.0 -10425,storm_outflow,0.04,2012-05-04,0.0,0.0,8.927035730185424e-07,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -10426,baseflow,0.03601295458852474,2012-05-04,0.0,0.0,5.840106075772976e-06,0.0,0.0,0.0,0.0,0.0,9.549228358582953,0.0,0.0,0.0 -10427,catchment_outflow,0.18489365126472335,2012-05-04,0.0,0.0,2.4394726803179944e-05,0.0,0.0,0.0,0.0,0.0,10.471528173498386,0.0,0.0,0.0 -10428,reservoir_outflow,0.0,2012-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10429,gw1_gw2,0.0,2012-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10430,gw2_gw1,0.00010813364525841251,2012-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10431,urban_drainage,0.04,2012-05-05,0.0,0.0,1.2037469679667725e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 -10432,percolation,0.11115599915163185,2012-05-05,0.0,0.0,2.009944602442295e-05,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -10433,runoff,0.08499299849933847,2012-05-05,0.0,0.0,1.4129533723510742e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261918,0.0,0.0,0.0 -10434,storm_outflow,0.04,2012-05-05,0.0,0.0,1.2037469679667725e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 -10435,baseflow,0.036200812199932514,2012-05-05,0.0,0.0,5.875754425644601e-06,0.0,0.0,0.0,0.0,0.0,9.553741991359738,0.0,0.0,0.0 -10436,catchment_outflow,0.161193810699271,2012-05-05,0.0,0.0,2.1209035117122114e-05,0.0,0.0,0.0,0.0,0.0,10.442213248613447,0.0,0.0,0.0 -10437,reservoir_outflow,0.0,2012-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10438,gw1_gw2,0.0,2012-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10439,gw2_gw1,0.00010741275429015928,2012-05-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10440,urban_drainage,0.04,2012-05-06,0.0,0.0,1.5521371030442358e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 -10441,percolation,0.11047053222523323,2012-05-06,0.0,0.0,1.9928473218865013e-05,0.0,0.0,0.0,0.0,0.0,10.147091262597801,0.0,0.0,0.0 -10442,runoff,0.0785151828711773,2012-05-06,0.0,0.0,1.2073680695243664e-05,0.0,0.0,0.0,0.0,0.0,10.662047699171783,0.0,0.0,0.0 -10443,storm_outflow,0.04,2012-05-06,0.0,0.0,1.5521371030442358e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 -10444,baseflow,0.03638648649999576,2012-05-06,0.0,0.0,5.910886222627652e-06,0.0,0.0,0.0,0.0,0.0,9.558245559586169,0.0,0.0,0.0 -10445,catchment_outflow,0.15490166937117306,2012-05-06,0.0,0.0,1.953670402091555e-05,0.0,0.0,0.0,0.0,0.0,10.453017702378293,0.0,0.0,0.0 -10446,reservoir_outflow,0.0,2012-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10447,gw1_gw2,0.0,2012-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10448,gw2_gw1,0.0001066966692615523,2012-05-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10449,urban_drainage,0.04,2012-05-07,0.0,0.0,8.684375479882483e-07,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0 -10450,percolation,0.12458773753794276,2012-05-07,0.0,0.0,2.1807502064275336e-05,0.0,0.0,0.0,0.0,0.0,10.23563764199505,0.0,0.0,0.0 -10451,runoff,0.1702043521610135,2012-05-07,0.0,0.0,1.725093892215366e-05,0.0,0.0,0.0,0.0,0.0,10.78992582539095,0.0,0.0,0.0 -10452,storm_outflow,0.04,2012-05-07,0.0,0.0,8.684375479882483e-07,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0 -10453,baseflow,0.03660698962759063,2012-05-07,0.0,0.0,5.95062776223177e-06,0.0,0.0,0.0,0.0,0.0,9.564009127406957,0.0,0.0,0.0 -10454,catchment_outflow,0.24681134178860414,2012-05-07,0.0,0.0,2.4070004232373676e-05,0.0,0.0,0.0,0.0,0.0,10.623784691879816,0.0,0.0,0.0 -10455,reservoir_outflow,0.062,2012-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10456,gw1_gw2,0.0,2012-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10457,gw2_gw1,0.00010598535813297617,2012-05-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10458,urban_drainage,0.04,2012-05-08,0.0,0.0,1.0046670266760072e-06,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0 -10459,percolation,0.12644397935407015,2012-05-08,0.0,0.0,2.197178779002204e-05,0.0,0.0,0.0,0.0,0.0,10.254603322429517,0.0,0.0,0.0 -10460,runoff,0.12008383449953643,2012-05-08,0.0,0.0,1.5802203694496958e-05,0.0,0.0,0.0,0.0,0.0,10.75430448481618,0.0,0.0,0.0 -10461,storm_outflow,0.04,2012-05-08,0.0,0.0,1.0046670266760072e-06,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0 -10462,baseflow,0.036831582101906825,2012-05-08,0.0,0.0,5.990680662301245e-06,0.0,0.0,0.0,0.0,0.0,9.569936206367062,0.0,0.0,0.0 -10463,catchment_outflow,0.19691541660144324,2012-05-08,0.0,0.0,2.279755138347421e-05,0.0,0.0,0.0,0.0,0.0,10.559493923243991,0.0,0.0,0.0 -10464,reservoir_outflow,0.0075,2012-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10465,gw1_gw2,0.0,2012-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10466,gw2_gw1,0.00010527878907886646,2012-05-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10467,urban_drainage,0.04,2012-05-09,0.0,0.0,8.529501725957475e-07,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10468,percolation,0.13546696214422574,2012-05-09,0.0,0.0,2.3057125107075564e-05,0.0,0.0,0.0,0.0,0.0,10.298155999720672,0.0,0.0,0.0 -10469,runoff,0.1629012233263068,2012-05-09,0.0,0.0,1.7724339865110774e-05,0.0,0.0,0.0,0.0,0.0,10.802783192127276,0.0,0.0,0.0 -10470,storm_outflow,0.04,2012-05-09,0.0,0.0,8.529501725957475e-07,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10471,baseflow,0.037078170552012624,2012-05-09,0.0,0.0,6.033346773413182e-06,0.0,0.0,0.0,0.0,0.0,9.576587675527367,0.0,0.0,0.0 -10472,catchment_outflow,0.23997939387831943,2012-05-09,0.0,0.0,2.4610636811119702e-05,0.0,0.0,0.0,0.0,0.0,10.631955411074554,0.0,0.0,0.0 -10473,reservoir_outflow,0.0375,2012-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10474,gw1_gw2,0.0,2012-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10475,gw2_gw1,0.00010457693048504524,2012-05-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10476,urban_drainage,0.04,2012-05-10,0.0,0.0,1.0602040586061102e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10477,percolation,0.13522778049895495,2012-05-10,0.0,0.0,2.2921710612248755e-05,0.0,0.0,0.0,0.0,0.0,10.307840556708321,0.0,0.0,0.0 -10478,runoff,0.11479577660335151,2012-05-10,0.0,0.0,1.5265231916470972e-05,0.0,0.0,0.0,0.0,0.0,10.776522532758745,0.0,0.0,0.0 -10479,storm_outflow,0.04,2012-05-10,0.0,0.0,1.0602040586061102e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10480,baseflow,0.03732354457687998,2012-05-10,0.0,0.0,6.075567683010271e-06,0.0,0.0,0.0,0.0,0.0,9.583211222756509,0.0,0.0,0.0 -10481,catchment_outflow,0.19211932118023148,2012-05-10,0.0,0.0,2.2401003658087353e-05,0.0,0.0,0.0,0.0,0.0,10.573428736057142,0.0,0.0,0.0 -10482,reservoir_outflow,0.0,2012-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10483,gw1_gw2,0.0,2012-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10484,gw2_gw1,0.00010387975094836577,2012-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10485,urban_drainage,0.04,2012-05-11,0.0,0.0,1.5203851200506379e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10486,percolation,0.13252322488897586,2012-05-11,0.0,0.0,2.2463276400003784e-05,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 -10487,runoff,0.08490284557008121,2012-05-11,0.0,0.0,1.2212185533176778e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 -10488,storm_outflow,0.04,2012-05-11,0.0,0.0,1.5203851200506379e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10489,baseflow,0.03756154377766022,2012-05-11,0.0,0.0,6.116536954802753e-06,0.0,0.0,0.0,0.0,0.0,9.589602747606557,0.0,0.0,0.0 -10490,catchment_outflow,0.16246438934774143,2012-05-11,0.0,0.0,1.984910760803017e-05,0.0,0.0,0.0,0.0,0.0,10.523348591477948,0.0,0.0,0.0 -10491,reservoir_outflow,0.0,2012-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10492,gw1_gw2,0.0,2012-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10493,gw2_gw1,0.00010318721927546904,2012-05-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10494,urban_drainage,0.04,2012-05-12,0.0,0.0,2.4848741940371148e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10495,percolation,0.12987276039119636,2012-05-12,0.0,0.0,2.201401087200371e-05,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 -10496,runoff,0.06792227645606497,2012-05-12,0.0,0.0,9.769748426541423e-06,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 -10497,storm_outflow,0.04,2012-05-12,0.0,0.0,2.4848741940371148e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10498,baseflow,0.037792321819194064,2012-05-12,0.0,0.0,6.156280639595757e-06,0.0,0.0,0.0,0.0,0.0,9.595773281884103,0.0,0.0,0.0 -10499,catchment_outflow,0.14571459827525904,2012-05-12,0.0,0.0,1.8410903260174293e-05,0.0,0.0,0.0,0.0,0.0,10.496807587962408,0.0,0.0,0.0 -10500,reservoir_outflow,0.0,2012-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10501,gw1_gw2,0.0,2012-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10502,gw2_gw1,0.00010249930448011924,2012-05-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10503,urban_drainage,0.023999999999999966,2012-05-13,0.0,0.0,3.050021210080618e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10504,percolation,0.12844368670157466,2012-05-13,0.0,0.0,2.1731951438587657e-05,0.0,0.0,0.0,0.0,0.0,10.314871131712378,0.0,0.0,0.0 -10505,runoff,0.06233201049991978,2012-05-13,0.0,0.0,8.343201354646542e-06,0.0,0.0,0.0,0.0,0.0,10.813642448979444,0.0,0.0,0.0 -10506,storm_outflow,0.023999999999999966,2012-05-13,0.0,0.0,3.050021210080618e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -10507,baseflow,0.03801895023140001,2012-05-13,0.0,0.0,6.195219816593238e-06,0.0,0.0,0.0,0.0,0.0,9.601846804322845,0.0,0.0,0.0 -10508,catchment_outflow,0.12435096073131977,2012-05-13,0.0,0.0,1.75884423813204e-05,0.0,0.0,0.0,0.0,0.0,10.462620979353689,0.0,0.0,0.0 -10509,reservoir_outflow,0.0,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10510,gw1_gw2,0.0,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10511,gw2_gw1,0.00010181597578373669,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10512,urban_drainage,0.005999999999999998,2012-05-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -10513,percolation,0.1284686055518544,2012-05-14,0.0,0.0,2.164683870599375e-05,0.0,0.0,0.0,0.0,0.0,10.332122223644802,0.0,0.0,0.0 -10514,runoff,0.06433294287307682,2012-05-14,0.0,0.0,7.839648737643407e-06,0.0,0.0,0.0,0.0,0.0,10.926384291851422,0.0,0.0,0.0 -10515,storm_outflow,0.005999999999999998,2012-05-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -10516,baseflow,0.03824507436970114,2012-05-14,0.0,0.0,6.233848863816738e-06,0.0,0.0,0.0,0.0,0.0,9.607979454496444,0.0,0.0,0.0 -10517,catchment_outflow,0.10857801724277796,2012-05-14,0.0,0.0,1.5073497601460146e-05,0.0,0.0,0.0,0.0,0.0,10.492311189376728,0.0,0.0,0.0 -10518,reservoir_outflow,0.002999999999999999,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10519,gw1_gw2,0.0,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10520,gw2_gw1,0.00010113720261184511,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10521,urban_drainage,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10522,percolation,0.12755826370307483,2012-05-15,0.0,0.0,2.1437608063593985e-05,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 -10523,runoff,0.05553679269829702,2012-05-15,0.0,0.0,7.01740609584841e-06,0.0,0.0,0.0,0.0,0.0,10.9691829929053,0.0,0.0,0.0 -10524,storm_outflow,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10525,baseflow,0.038468357343034575,2012-05-15,0.0,0.0,6.271858261816181e-06,0.0,0.0,0.0,0.0,0.0,9.614081892202526,0.0,0.0,0.0 -10526,catchment_outflow,0.09400515004133159,2012-05-15,0.0,0.0,1.3289264357664592e-05,0.0,0.0,0.0,0.0,0.0,10.414654721264288,0.0,0.0,0.0 -10527,reservoir_outflow,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10528,gw1_gw2,0.0,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10529,gw2_gw1,0.00010046295459478217,2012-05-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10530,urban_drainage,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10531,percolation,0.12500709842901334,2012-05-16,0.0,0.0,2.1008855902322103e-05,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 -10532,runoff,0.039772507106686714,2012-05-16,0.0,0.0,5.613924876678729e-06,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 -10533,storm_outflow,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10534,baseflow,0.03868470419574952,2012-05-16,0.0,0.0,6.308700755917446e-06,0.0,0.0,0.0,0.0,0.0,9.6199795363469,0.0,0.0,0.0 -10535,catchment_outflow,0.07845721130243624,2012-05-16,0.0,0.0,1.1922625632596174e-05,0.0,0.0,0.0,0.0,0.0,10.259999530038657,0.0,0.0,0.0 -10536,reservoir_outflow,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10537,gw1_gw2,0.0,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10538,gw2_gw1,9.97932015639691e-05,2012-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10539,urban_drainage,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10540,percolation,0.12250695646043307,2012-05-17,0.0,0.0,2.0588678784275658e-05,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 -10541,runoff,0.03181800568534937,2012-05-17,0.0,0.0,4.491139901342983e-06,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 -10542,storm_outflow,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10543,baseflow,0.03889425982641123,2012-05-17,0.0,0.0,6.344400700988341e-06,0.0,0.0,0.0,0.0,0.0,9.62568164744754,0.0,0.0,0.0 -10544,catchment_outflow,0.0707122655117606,2012-05-17,0.0,0.0,1.0835540602331323e-05,0.0,0.0,0.0,0.0,0.0,10.191211785867683,0.0,0.0,0.0 -10545,reservoir_outflow,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10546,gw1_gw2,0.0,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10547,gw2_gw1,9.912791355350948e-05,2012-05-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10548,urban_drainage,0.0009999999999999983,2012-05-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -10549,percolation,0.12143350243545988,2012-05-18,0.0,0.0,2.0366363458741857e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10550,runoff,0.03487382894568005,2012-05-18,0.0,0.0,4.224439421580098e-06,0.0,0.0,0.0,0.0,0.0,11.220722498202683,0.0,0.0,0.0 -10551,storm_outflow,0.0009999999999999983,2012-05-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -10552,baseflow,0.03910060793293385,2012-05-18,0.0,0.0,6.379455607882725e-06,0.0,0.0,0.0,0.0,0.0,9.631391560082655,0.0,0.0,0.0 -10553,catchment_outflow,0.07497443687861391,2012-05-18,0.0,0.0,1.4603895029462822e-05,0.0,0.0,0.0,0.0,0.0,10.407751692113145,0.0,0.0,0.0 -10554,reservoir_outflow,0.0004999999999999991,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10555,gw1_gw2,0.0,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10556,gw2_gw1,9.846706079663647e-05,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10557,urban_drainage,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10558,percolation,0.11900483238675069,2012-05-19,0.0,0.0,1.9959036189567026e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10559,runoff,0.024034683916584844,2012-05-19,0.0,0.0,3.3795515372640783e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10560,storm_outflow,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10561,baseflow,0.03930036849406839,2012-05-19,0.0,0.0,6.413404559336936e-06,0.0,0.0,0.0,0.0,0.0,9.636915606662876,0.0,0.0,0.0 -10562,catchment_outflow,0.06333505241065324,2012-05-19,0.0,0.0,9.792956096601013e-06,0.0,0.0,0.0,0.0,0.0,10.165229968345535,0.0,0.0,0.0 -10563,reservoir_outflow,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10564,gw1_gw2,0.0,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10565,gw2_gw1,9.781061372446943e-05,2012-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10566,urban_drainage,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10567,percolation,0.11662473573901565,2012-05-20,0.0,0.0,1.955985546577568e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10568,runoff,0.019227747133267876,2012-05-20,0.0,0.0,2.703641229811263e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10569,storm_outflow,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10570,baseflow,0.03949367941218076,2012-05-20,0.0,0.0,6.4462706866030334e-06,0.0,0.0,0.0,0.0,0.0,9.64226189312741,0.0,0.0,0.0 -10571,catchment_outflow,0.05872142654544864,2012-05-20,0.0,0.0,9.149911916414296e-06,0.0,0.0,0.0,0.0,0.0,10.09636968228844,0.0,0.0,0.0 -10572,reservoir_outflow,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10573,gw1_gw2,0.0,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10574,gw2_gw1,9.715854296619142e-05,2012-05-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10575,urban_drainage,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10576,percolation,0.11429224102423534,2012-05-21,0.0,0.0,1.9168658356460172e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10577,runoff,0.015382197706614299,2012-05-21,0.0,0.0,2.1629129838490098e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10578,storm_outflow,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10579,baseflow,0.0396806758162109,2012-05-21,0.0,0.0,6.478076655777675e-06,0.0,0.0,0.0,0.0,0.0,9.64743806594515,0.0,0.0,0.0 -10580,catchment_outflow,0.0550628735228252,2012-05-21,0.0,0.0,8.640989639626685e-06,0.0,0.0,0.0,0.0,0.0,10.033416193757395,0.0,0.0,0.0 -10581,reservoir_outflow,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10582,gw1_gw2,0.0,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10583,gw2_gw1,9.651081934638484e-05,2012-05-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10584,urban_drainage,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10585,percolation,0.11200639620375064,2012-05-22,0.0,0.0,1.878528518933097e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10586,runoff,0.012305758165291442,2012-05-22,0.0,0.0,1.7303303870792082e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10587,storm_outflow,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10588,baseflow,0.039861490117179744,2012-05-22,0.0,0.0,6.508844677111557e-06,0.0,0.0,0.0,0.0,0.0,9.652451344251919,0.0,0.0,0.0 -10589,catchment_outflow,0.052167248282471185,2012-05-22,0.0,0.0,8.239175064190765e-06,0.0,0.0,0.0,0.0,0.0,9.977190720675493,0.0,0.0,0.0 -10590,reservoir_outflow,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10591,gw1_gw2,0.0,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10592,gw2_gw1,9.586741388414311e-05,2012-05-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10593,urban_drainage,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10594,percolation,0.10976626827967566,2012-05-23,0.0,0.0,1.8409579485544354e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10595,runoff,0.009844606532233154,2012-05-23,0.0,0.0,1.3842643096633666e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10596,storm_outflow,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10597,baseflow,0.04003625206258599,2012-05-23,0.0,0.0,6.5385965141326405e-06,0.0,0.0,0.0,0.0,0.0,9.657308549326293,0.0,0.0,0.0 -10598,catchment_outflow,0.049880858594819145,2012-05-23,0.0,0.0,7.922860823796007e-06,0.0,0.0,0.0,0.0,0.0,9.928049487818999,0.0,0.0,0.0 -10599,reservoir_outflow,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10600,gw1_gw2,0.0,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10601,gw2_gw1,9.522829779129438e-05,2012-05-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10602,urban_drainage,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10603,percolation,0.10757094291408215,2012-05-24,0.0,0.0,1.8041387895833467e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454356,0.0,0.0,0.0 -10604,runoff,0.007875685225786523,2012-05-24,0.0,0.0,1.1074114477306933e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10605,storm_outflow,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10606,baseflow,0.04020508878971473,2012-05-24,0.0,0.0,6.5673534925868925e-06,0.0,0.0,0.0,0.0,0.0,9.662016131657705,0.0,0.0,0.0 -10607,catchment_outflow,0.04808077401550125,2012-05-24,0.0,0.0,7.674764940317585e-06,0.0,0.0,0.0,0.0,0.0,9.885946739241907,0.0,0.0,0.0 -10608,reservoir_outflow,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10609,gw1_gw2,0.0,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10610,gw2_gw1,9.459344247311209e-05,2012-05-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10611,urban_drainage,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10612,percolation,0.10541952405580046,2012-05-25,0.0,0.0,1.768056013791679e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10613,runoff,0.006300548180629219,2012-05-25,0.0,0.0,8.859291581845546e-07,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10614,storm_outflow,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10615,baseflow,0.04036812487787994,2012-05-25,0.0,0.0,6.595136509200217e-06,0.0,0.0,0.0,0.0,0.0,9.666580195833147,0.0,0.0,0.0 -10616,catchment_outflow,0.04666867305850916,2012-05-25,0.0,0.0,7.481065667384772e-06,0.0,0.0,0.0,0.0,0.0,9.850529060925762,0.0,0.0,0.0 -10617,reservoir_outflow,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10618,gw1_gw2,0.0,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10619,gw2_gw1,9.39628195229858e-05,2012-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10620,urban_drainage,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10621,percolation,0.10331113357468447,2012-05-26,0.0,0.0,1.7326948935158458e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10622,runoff,0.005040438544503375,2012-05-26,0.0,0.0,7.087433265476438e-07,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10623,storm_outflow,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10624,baseflow,0.040525482399621955,2012-05-26,0.0,0.0,6.621966040265113e-06,0.0,0.0,0.0,0.0,0.0,9.671006523444873,0.0,0.0,0.0 -10625,catchment_outflow,0.04556592094412533,2012-05-26,0.0,0.0,7.330709366812756e-06,0.0,0.0,0.0,0.0,0.0,9.82123741489733,0.0,0.0,0.0 -10626,reservoir_outflow,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10627,gw1_gw2,0.0,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10628,gw2_gw1,9.333640072615169e-05,2012-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10629,urban_drainage,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10630,percolation,0.10124491090319078,2012-05-27,0.0,0.0,1.6980409956455288e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10631,runoff,0.0040323508356027,2012-05-27,0.0,0.0,5.669946612381151e-07,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -10632,storm_outflow,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10633,baseflow,0.04067728097088088,2012-05-27,0.0,0.0,6.647862150055589e-06,0.0,0.0,0.0,0.0,0.0,9.675300594200312,0.0,0.0,0.0 -10634,catchment_outflow,0.04470963180648358,2012-05-27,0.0,0.0,7.214856811293704e-06,0.0,0.0,0.0,0.0,0.0,9.797399831395103,0.0,0.0,0.0 -10635,reservoir_outflow,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10636,gw1_gw2,0.0,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10637,gw2_gw1,9.271415805489625e-05,2012-05-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10638,urban_drainage,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10639,percolation,0.09922001268512697,2012-05-28,0.0,0.0,1.6640801757326183e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454356,0.0,0.0,0.0 -10640,runoff,0.0032258806684821602,2012-05-28,0.0,0.0,4.5359572899049195e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10641,storm_outflow,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10642,baseflow,0.040823637800166485,2012-05-28,0.0,0.0,6.672844499073765e-06,0.0,0.0,0.0,0.0,0.0,9.67946760539664,0.0,0.0,0.0 -10643,catchment_outflow,0.044049518468648644,2012-05-28,0.0,0.0,7.1264402280642575e-06,0.0,0.0,0.0,0.0,0.0,9.778305627276504,0.0,0.0,0.0 -10644,reservoir_outflow,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10645,gw1_gw2,0.0,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10646,gw2_gw1,9.209606366802348e-05,2012-05-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10647,urban_drainage,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10648,percolation,0.09723561243142444,2012-05-29,0.0,0.0,1.630798572217966e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10649,runoff,0.0025807045347857284,2012-05-29,0.0,0.0,3.628765831923936e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10650,storm_outflow,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10651,baseflow,0.040964667736744634,2012-05-29,0.0,0.0,6.6969323521315305e-06,0.0,0.0,0.0,0.0,0.0,9.683512489905969,0.0,0.0,0.0 -10652,catchment_outflow,0.04354537227153036,2012-05-29,0.0,0.0,7.0598089353239245e-06,0.0,0.0,0.0,0.0,0.0,9.763258625562177,0.0,0.0,0.0 -10653,reservoir_outflow,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10654,gw1_gw2,0.0,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10655,gw2_gw1,9.148208991014429e-05,2012-05-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10656,urban_drainage,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10657,percolation,0.09529090018279596,2012-05-30,0.0,0.0,1.5981826007736065e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10658,runoff,0.0020645636278285827,2012-05-30,0.0,0.0,2.903012665539149e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10659,storm_outflow,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10660,baseflow,0.041100483317859766,2012-05-30,0.0,0.0,6.7201445862705415e-06,0.0,0.0,0.0,0.0,0.0,9.687439932802334,0.0,0.0,0.0 -10661,catchment_outflow,0.043165046945688346,2012-05-30,0.0,0.0,7.010445852824457e-06,0.0,0.0,0.0,0.0,0.0,9.75161110535367,0.0,0.0,0.0 -10662,reservoir_outflow,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10663,gw1_gw2,0.0,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10664,gw2_gw1,9.087220931114359e-05,2012-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10665,urban_drainage,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10666,percolation,0.09338508217914003,2012-05-31,0.0,0.0,1.5662189487581344e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10667,runoff,0.0016516509022628661,2012-05-31,0.0,0.0,2.3224101324313193e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10668,storm_outflow,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10669,baseflow,0.041231194815012966,2012-05-31,0.0,0.0,6.742499698523819e-06,0.0,0.0,0.0,0.0,0.0,9.691254386748689,0.0,0.0,0.0 -10670,catchment_outflow,0.04288284571727583,2012-05-31,0.0,0.0,6.974740711766951e-06,0.0,0.0,0.0,0.0,0.0,9.742782244970984,0.0,0.0,0.0 -10671,reservoir_outflow,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10672,gw1_gw2,0.0,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10673,gw2_gw1,9.026639458245001e-05,2012-05-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10674,urban_drainage,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10675,percolation,0.09151738053555722,2012-06-01,0.0,0.0,1.5348945697829718e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10676,runoff,0.001321320721810293,2012-06-01,0.0,0.0,1.8579281059450556e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10677,storm_outflow,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10678,baseflow,0.041356910279314325,2012-06-01,0.0,0.0,6.764015813522084e-06,0.0,0.0,0.0,0.0,0.0,9.694960086250445,0.0,0.0,0.0 -10679,catchment_outflow,0.04267823100112462,2012-06-01,0.0,0.0,6.949808624116589e-06,0.0,0.0,0.0,0.0,0.0,9.736265278535566,0.0,0.0,0.0 -10680,reservoir_outflow,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10681,gw1_gw2,0.0,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10682,gw2_gw1,8.966461861845688e-05,2012-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10683,urban_drainage,0.04,2012-06-02,0.0,0.0,6.593406593406596e-06,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0 -10684,percolation,0.08968703292484607,2012-06-02,0.0,0.0,1.5041966783873122e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10685,runoff,0.0010570565774482344,2012-06-02,0.0,0.0,1.4863424847560443e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10686,storm_outflow,0.04,2012-06-02,0.0,0.0,6.593406593406596e-06,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0 -10687,baseflow,0.041477735585928155,2012-06-02,0.0,0.0,6.78471069094796e-06,0.0,0.0,0.0,0.0,0.0,9.698561060871814,0.0,0.0,0.0 -10688,catchment_outflow,0.08253479216337639,2012-06-02,0.0,0.0,1.3526751532830162e-05,0.0,0.0,0.0,0.0,0.0,12.733208760301904,0.0,0.0,0.0 -10689,reservoir_outflow,0.0455,2012-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10690,gw1_gw2,0.0,2012-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10691,gw2_gw1,8.906685449474595e-05,2012-06-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10692,urban_drainage,0.04,2012-06-03,0.0,0.0,1.6797488226059657e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 -10693,percolation,0.08789329226634914,2012-06-03,0.0,0.0,1.474112744819566e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10694,runoff,0.0008456452619585875,2012-06-03,0.0,0.0,1.1890739878048355e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10695,storm_outflow,0.04,2012-06-03,0.0,0.0,1.6797488226059657e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 -10696,baseflow,0.041593774477629214,2012-06-03,0.0,0.0,6.804601732841079e-06,0.0,0.0,0.0,0.0,0.0,9.702061147501942,0.0,0.0,0.0 -10697,catchment_outflow,0.0824394197395878,2012-06-03,0.0,0.0,8.603257954227528e-06,0.0,0.0,0.0,0.0,0.0,12.543022102824972,0.0,0.0,0.0 -10698,reservoir_outflow,0.08650000000000002,2012-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10699,gw1_gw2,0.0,2012-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10700,gw2_gw1,8.847307546453465e-05,2012-06-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10701,urban_drainage,0.04,2012-06-04,0.0,0.0,2.1284986790213274e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 -10702,percolation,0.08613542642102216,2012-06-04,0.0,0.0,1.4446304899231748e-05,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -10703,runoff,0.00067651620956687,2012-06-04,0.0,0.0,9.512591902438682e-08,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -10704,storm_outflow,0.04,2012-06-04,0.0,0.0,2.1284986790213274e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 -10705,baseflow,0.041705128607487686,2012-06-04,0.0,0.0,6.823705990757055e-06,0.0,0.0,0.0,0.0,0.0,9.705464001749593,0.0,0.0,0.0 -10706,catchment_outflow,0.08238164481705457,2012-06-04,0.0,0.0,9.047330588802769e-06,0.0,0.0,0.0,0.0,0.0,12.544012750732477,0.0,0.0,0.0 -10707,reservoir_outflow,0.0,2012-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10708,gw1_gw2,0.0,2012-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10709,gw2_gw1,8.788325496169592e-05,2012-06-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10710,urban_drainage,0.04,2012-06-05,0.0,0.0,1.9482938217861838e-06,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0 -10711,percolation,0.09171073749297143,2012-06-05,0.0,0.0,1.5133167002235705e-05,0.0,0.0,0.0,0.0,0.0,10.67184785195944,0.0,0.0,0.0 -10712,runoff,0.050475031285972666,2012-06-05,0.0,0.0,3.328728071848155e-06,0.0,0.0,0.0,0.0,0.0,14.292990519283904,0.0,0.0,0.0 -10713,storm_outflow,0.04,2012-06-05,0.0,0.0,1.9482938217861838e-06,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0 -10714,baseflow,0.041830142629701396,2012-06-05,0.0,0.0,6.844479643285751e-06,0.0,0.0,0.0,0.0,0.0,9.710760886366305,0.0,0.0,0.0 -10715,catchment_outflow,0.13230517391567406,2012-06-05,0.0,0.0,1.2121501536920089e-05,0.0,0.0,0.0,0.0,0.0,13.147191011447932,0.0,0.0,0.0 -10716,reservoir_outflow,0.016,2012-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10717,gw1_gw2,0.0,2012-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10718,gw2_gw1,8.729736659542908e-05,2012-06-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10719,urban_drainage,0.04,2012-06-06,0.0,0.0,2.000015664114265e-06,0.0,0.0,0.0,0.0,0.0,15.113490499944918,0.0,0.0,0.0 -10720,percolation,0.09504397676520997,2012-06-06,0.0,0.0,1.551417123835812e-05,0.0,0.0,0.0,0.0,0.0,10.843262985791139,0.0,0.0,0.0 -10721,runoff,0.055250620336831605,2012-06-06,0.0,0.0,4.941874378035615e-06,0.0,0.0,0.0,0.0,0.0,13.974769813043475,0.0,0.0,0.0 -10722,storm_outflow,0.04,2012-06-06,0.0,0.0,2.000015664114265e-06,0.0,0.0,0.0,0.0,0.0,15.113490499944918,0.0,0.0,0.0 -10723,baseflow,0.04196317721504017,2012-06-06,0.0,0.0,6.866153872273433e-06,0.0,0.0,0.0,0.0,0.0,9.717173502758092,0.0,0.0,0.0 -10724,catchment_outflow,0.13721379755187177,2012-06-06,0.0,0.0,1.3808043914423314e-05,0.0,0.0,0.0,0.0,0.0,13.004652788534864,0.0,0.0,0.0 -10725,reservoir_outflow,0.0085,2012-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10726,gw1_gw2,0.0,2012-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10727,gw2_gw1,8.671538415150337e-05,2012-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10728,urban_drainage,0.04,2012-06-07,0.0,0.0,9.377653807577873e-07,0.0,0.0,0.0,0.0,0.0,14.23010214313227,0.0,0.0,0.0 -10729,percolation,0.11645806008430874,2012-06-07,0.0,0.0,1.8045074642300242e-05,0.0,0.0,0.0,0.0,0.0,11.356822818436166,0.0,0.0,0.0 -10730,runoff,0.18921879222878957,2012-06-07,0.0,0.0,1.3424122264792775e-05,0.0,0.0,0.0,0.0,0.0,13.620231353416788,0.0,0.0,0.0 -10731,storm_outflow,0.04,2012-06-07,0.0,0.0,9.377653807577873e-07,0.0,0.0,0.0,0.0,0.0,14.23010214313227,0.0,0.0,0.0 -10732,baseflow,0.04214941442221334,2012-06-07,0.0,0.0,6.8941011741985005e-06,0.0,0.0,0.0,0.0,0.0,9.728499305330915,0.0,0.0,0.0 -10733,catchment_outflow,0.2713682066510029,2012-06-07,0.0,0.0,2.1255988819749062e-05,0.0,0.0,0.0,0.0,0.0,13.105655983480593,0.0,0.0,0.0 -10734,reservoir_outflow,0.074,2012-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10735,gw1_gw2,0.0,2012-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10736,gw2_gw1,8.613728159048152e-05,2012-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10737,urban_drainage,0.04,2012-06-08,0.0,0.0,1.1311427798629465e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 -10738,percolation,0.1170296790807534,2012-06-08,0.0,0.0,1.803728651351882e-05,0.0,0.0,0.0,0.0,0.0,11.402114365606243,0.0,0.0,0.0 -10739,runoff,0.10577696747718175,2012-06-08,0.0,0.0,1.1916342358716164e-05,0.0,0.0,0.0,0.0,0.0,13.53250081428982,0.0,0.0,0.0 -10740,storm_outflow,0.04,2012-06-08,0.0,0.0,1.1311427798629465e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 -10741,baseflow,0.04233661508385969,2012-06-08,0.0,0.0,6.921959137546799e-06,0.0,0.0,0.0,0.0,0.0,9.740065099680603,0.0,0.0,0.0 -10742,catchment_outflow,0.18811358256104144,2012-06-08,0.0,0.0,1.996944427612591e-05,0.0,0.0,0.0,0.0,0.0,12.826521154050463,0.0,0.0,0.0 -10743,reservoir_outflow,0.0004999999999999991,2012-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10744,gw1_gw2,0.0,2012-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10745,gw2_gw1,8.556303304665392e-05,2012-06-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10746,urban_drainage,0.04,2012-06-09,0.0,0.0,1.572148805195756e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 -10747,percolation,0.11468908549913835,2012-06-09,0.0,0.0,1.7676540783248444e-05,0.0,0.0,0.0,0.0,0.0,11.402114365606243,0.0,0.0,0.0 -10748,runoff,0.07647903307471145,2012-06-09,0.0,0.0,9.53307388697293e-06,0.0,0.0,0.0,0.0,0.0,13.538622789342579,0.0,0.0,0.0 -10749,storm_outflow,0.04,2012-06-09,0.0,0.0,1.572148805195756e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 -10750,baseflow,0.04251749625989789,2012-06-09,0.0,0.0,6.948845591661054e-06,0.0,0.0,0.0,0.0,0.0,9.751273362580088,0.0,0.0,0.0 -10751,catchment_outflow,0.15899652933460934,2012-06-09,0.0,0.0,1.8054068283829742e-05,0.0,0.0,0.0,0.0,0.0,12.698862533748702,0.0,0.0,0.0 -10752,reservoir_outflow,0.0,2012-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10753,gw1_gw2,0.0,2012-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10754,gw2_gw1,8.499261282626237e-05,2012-06-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10755,urban_drainage,0.04,2012-06-10,0.0,0.0,1.2926398589030136e-06,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0 -10756,percolation,0.1222539384045482,2012-06-10,0.0,0.0,1.8499556162415313e-05,0.0,0.0,0.0,0.0,0.0,11.518095795257373,0.0,0.0,0.0 -10757,runoff,0.12863704224929753,2012-06-10,0.0,0.0,1.154827975901779e-05,0.0,0.0,0.0,0.0,0.0,13.235570642772338,0.0,0.0,0.0 -10758,storm_outflow,0.04,2012-06-10,0.0,0.0,1.2926398589030136e-06,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0 -10759,baseflow,0.04271683736525952,2012-06-10,0.0,0.0,6.97772236808794e-06,0.0,0.0,0.0,0.0,0.0,9.763914806456736,0.0,0.0,0.0 -10760,catchment_outflow,0.21135387961455707,2012-06-10,0.0,0.0,1.9818641986008742e-05,0.0,0.0,0.0,0.0,0.0,12.646917566789092,0.0,0.0,0.0 -10761,reservoir_outflow,0.0265,2012-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10762,gw1_gw2,0.0,2012-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10763,gw2_gw1,8.442599540749996e-05,2012-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10764,urban_drainage,0.04,2012-06-11,0.0,0.0,7.013144378209909e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -10765,percolation,0.1430753431028075,2012-06-11,0.0,0.0,2.067587235057814e-05,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 -10766,runoff,0.23442800245582054,2012-06-11,0.0,0.0,1.7726314845251357e-05,0.0,0.0,0.0,0.0,0.0,12.945174221043672,0.0,0.0,0.0 -10767,storm_outflow,0.04,2012-06-11,0.0,0.0,7.013144378209909e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -10768,baseflow,0.04296773362960339,2012-06-11,0.0,0.0,7.011967743044165e-06,0.0,0.0,0.0,0.0,0.0,9.780090561908207,0.0,0.0,0.0 -10769,catchment_outflow,0.31739573608542393,2012-06-11,0.0,0.0,2.5439597026116514e-05,0.0,0.0,0.0,0.0,0.0,12.559451028611896,0.0,0.0,0.0 -10770,reservoir_outflow,0.077,2012-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10771,gw1_gw2,0.0,2012-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10772,gw2_gw1,8.38631554382019e-05,2012-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10773,urban_drainage,0.04,2012-06-12,0.0,0.0,9.598134270861574e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -10774,percolation,0.14021383624075137,2012-06-12,0.0,0.0,2.0262354903566578e-05,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 -10775,runoff,0.12223297469069064,2012-06-12,0.0,0.0,1.4181051876201086e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 -10776,storm_outflow,0.04,2012-06-12,0.0,0.0,9.598134270861574e-07,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -10777,baseflow,0.04321084888613126,2012-06-12,0.0,0.0,7.045093710945471e-06,0.0,0.0,0.0,0.0,0.0,9.79572239271143,0.0,0.0,0.0 -10778,catchment_outflow,0.2054438235768219,2012-06-12,0.0,0.0,2.2185959014232713e-05,0.0,0.0,0.0,0.0,0.0,12.371110363610084,0.0,0.0,0.0 -10779,reservoir_outflow,0.0,2012-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10780,gw1_gw2,0.0,2012-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10781,gw2_gw1,8.330406773513488e-05,2012-06-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10782,urban_drainage,0.04,2012-06-13,0.0,0.0,1.3480564611837373e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -10783,percolation,0.13740955951593634,2012-06-13,0.0,0.0,1.9857107805495243e-05,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 -10784,runoff,0.09824711305265976,2012-06-13,0.0,0.0,1.1344841500960868e-05,0.0,0.0,0.0,0.0,0.0,12.983034506097322,0.0,0.0,0.0 -10785,storm_outflow,0.04,2012-06-13,0.0,0.0,1.3480564611837373e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -10786,baseflow,0.04344634566270578,2012-06-13,0.0,0.0,7.077123746181846e-06,0.0,0.0,0.0,0.0,0.0,9.810834952067127,0.0,0.0,0.0 -10787,catchment_outflow,0.18169345871536555,2012-06-13,0.0,0.0,1.977002170832645e-05,0.0,0.0,0.0,0.0,0.0,12.290850452621832,0.0,0.0,0.0 -10788,reservoir_outflow,0.0,2012-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10789,gw1_gw2,0.0,2012-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10790,gw2_gw1,8.274870728364192e-05,2012-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10791,urban_drainage,0.04,2012-06-14,0.0,0.0,7.531448429208444e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 -10792,percolation,0.15520628679040774,2012-06-14,0.0,0.0,2.1584371153425877e-05,0.0,0.0,0.0,0.0,0.0,11.832617275379805,0.0,0.0,0.0 -10793,runoff,0.21879959856113243,2012-06-14,0.0,0.0,1.615722488090382e-05,0.0,0.0,0.0,0.0,0.0,13.033113721605504,0.0,0.0,0.0 -10794,storm_outflow,0.04,2012-06-14,0.0,0.0,7.531448429208444e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 -10795,baseflow,0.043725745515525036,2012-06-14,0.0,0.0,7.1133918646999555e-06,0.0,0.0,0.0,0.0,0.0,9.828775945605386,0.0,0.0,0.0 -10796,catchment_outflow,0.3025253440766575,2012-06-14,0.0,0.0,2.402376158852462e-05,0.0,0.0,0.0,0.0,0.0,12.615195255522867,0.0,0.0,0.0 -10797,reservoir_outflow,0.07,2012-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10798,gw1_gw2,0.0,2012-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10799,gw2_gw1,8.219704923515537e-05,2012-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10800,urban_drainage,0.04,2012-06-15,0.0,0.0,9.80992163432561e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 -10801,percolation,0.1536662851649532,2012-06-15,0.0,0.0,2.13152442459217e-05,0.0,0.0,0.0,0.0,0.0,11.843661046906638,0.0,0.0,0.0 -10802,runoff,0.1280716340887566,2012-06-15,0.0,0.0,1.3467648289937547e-05,0.0,0.0,0.0,0.0,0.0,12.876538197112357,0.0,0.0,0.0 -10803,storm_outflow,0.04,2012-06-15,0.0,0.0,9.80992163432561e-07,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 -10804,baseflow,0.044000596864648606,2012-06-15,0.0,0.0,7.14889649565301e-06,0.0,0.0,0.0,0.0,0.0,9.84636774722933,0.0,0.0,0.0 -10805,catchment_outflow,0.21207223095340522,2012-06-15,0.0,0.0,2.1597536949023117e-05,0.0,0.0,0.0,0.0,0.0,12.341884713648348,0.0,0.0,0.0 -10806,reservoir_outflow,0.0,2012-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10807,gw1_gw2,0.0,2012-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10808,gw2_gw1,8.164906890719693e-05,2012-06-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10809,urban_drainage,0.04,2012-06-16,0.0,0.0,1.2129312833907004e-06,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0 -10810,percolation,0.1533923576384691,2012-06-16,0.0,0.0,2.1179630690728665e-05,0.0,0.0,0.0,0.0,0.0,11.86924454931506,0.0,0.0,0.0 -10811,runoff,0.11722056045172898,2012-06-16,0.0,0.0,1.1743089731034691e-05,0.0,0.0,0.0,0.0,0.0,12.982512472937383,0.0,0.0,0.0 -10812,storm_outflow,0.04,2012-06-16,0.0,0.0,1.2129312833907004e-06,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0 -10813,baseflow,0.04427407626658316,2012-06-16,0.0,0.0,7.183973331140698e-06,0.0,0.0,0.0,0.0,0.0,9.863888939541493,0.0,0.0,0.0 -10814,catchment_outflow,0.20149463671831214,2012-06-16,0.0,0.0,2.013999434556609e-05,0.0,0.0,0.0,0.0,0.0,12.377246162889628,0.0,0.0,0.0 -10815,reservoir_outflow,0.0010000000000000005,2012-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10816,gw1_gw2,0.0,2012-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10817,gw2_gw1,8.110474178089078e-05,2012-06-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10818,urban_drainage,0.04,2012-06-17,0.0,0.0,1.3600248510031918e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 -10819,percolation,0.15479084539364474,2012-06-17,0.0,0.0,2.1215579252975978e-05,0.0,0.0,0.0,0.0,0.0,11.918742667445928,0.0,0.0,0.0 -10820,runoff,0.1164776221474915,2012-06-17,0.0,0.0,1.0926275705034044e-05,0.0,0.0,0.0,0.0,0.0,13.194246892046447,0.0,0.0,0.0 -10821,storm_outflow,0.04,2012-06-17,0.0,0.0,1.3600248510031918e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 -10822,baseflow,0.04455036818940081,2012-06-17,0.0,0.0,7.219052345945286e-06,0.0,0.0,0.0,0.0,0.0,9.881737980897917,0.0,0.0,0.0 -10823,catchment_outflow,0.2010279903368923,2012-06-17,0.0,0.0,1.9505352901982522e-05,0.0,0.0,0.0,0.0,0.0,12.525892647372412,0.0,0.0,0.0 -10824,reservoir_outflow,0.008,2012-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10825,gw1_gw2,0.0,2012-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10826,gw2_gw1,8.056404350256231e-05,2012-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10827,urban_drainage,0.04,2012-06-18,0.0,0.0,2.20003106375399e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 -10828,percolation,0.1516950284857718,2012-06-18,0.0,0.0,2.079126766791645e-05,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 -10829,runoff,0.08064501727463871,2012-06-18,0.0,0.0,8.741020564027235e-06,0.0,0.0,0.0,0.0,0.0,12.975153193511474,0.0,0.0,0.0 -10830,storm_outflow,0.04,2012-06-18,0.0,0.0,2.20003106375399e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 -10831,baseflow,0.04481822984014174,2012-06-18,0.0,0.0,7.252982884250215e-06,0.0,0.0,0.0,0.0,0.0,9.8989744650838,0.0,0.0,0.0 -10832,catchment_outflow,0.16546324711478047,2012-06-18,0.0,0.0,1.819403451203144e-05,0.0,0.0,0.0,0.0,0.0,12.274758644407463,0.0,0.0,0.0 -10833,reservoir_outflow,0.0,2012-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10834,gw1_gw2,0.0,2012-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10835,gw2_gw1,8.002694987894188e-05,2012-06-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10836,urban_drainage,0.019999999999999945,2012-06-19,0.0,0.0,3.2000310637539876e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0 -10837,percolation,0.1486611279160564,2012-06-19,0.0,0.0,2.037544231455813e-05,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 -10838,runoff,0.06451601381971098,2012-06-19,0.0,0.0,6.992816451221789e-06,0.0,0.0,0.0,0.0,0.0,12.975153193511474,0.0,0.0,0.0 -10839,storm_outflow,0.019999999999999945,2012-06-19,0.0,0.0,3.2000310637539876e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0 -10840,baseflow,0.04507783708533153,2012-06-19,0.0,0.0,7.285789032825985e-06,0.0,0.0,0.0,0.0,0.0,9.91562682900067,0.0,0.0,0.0 -10841,catchment_outflow,0.12959385090504244,2012-06-19,0.0,0.0,1.747863654780176e-05,0.0,0.0,0.0,0.0,0.0,11.99573043796109,0.0,0.0,0.0 -10842,reservoir_outflow,0.0,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10843,gw1_gw2,0.0,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10844,gw2_gw1,7.949343687982947e-05,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10845,urban_drainage,0.04,2012-06-20,0.0,0.0,5.194805194805195e-07,0.0,0.0,0.0,0.0,0.0,15.345833330000003,0.0,0.0,0.0 -10846,percolation,0.15624130613178466,2012-06-20,0.0,0.0,2.103131187417563e-05,0.0,0.0,0.0,0.0,0.0,12.09982316852747,0.0,0.0,0.0 -10847,runoff,0.12382029003610671,2012-06-20,0.0,0.0,9.138847847339639e-06,0.0,0.0,0.0,0.0,0.0,14.145641045374415,0.0,0.0,0.0 -10848,storm_outflow,0.04,2012-06-20,0.0,0.0,5.194805194805195e-07,0.0,0.0,0.0,0.0,0.0,15.345833330000003,0.0,0.0,0.0 -10849,baseflow,0.04535574575794767,2012-06-20,0.0,0.0,7.320152839929359e-06,0.0,0.0,0.0,0.0,0.0,9.934437107788563,0.0,0.0,0.0 -10850,catchment_outflow,0.2091760357940544,2012-06-20,0.0,0.0,1.697848120674952e-05,0.0,0.0,0.0,0.0,0.0,13.462032126216128,0.0,0.0,0.0 -10851,reservoir_outflow,0.0385,2012-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10852,gw1_gw2,0.0,2012-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10853,gw2_gw1,7.89634806338313e-05,2012-06-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10854,urban_drainage,0.04,2012-06-21,0.0,0.0,5.981896890987799e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 -10855,percolation,0.16276137509667216,2012-06-21,0.0,0.0,2.154792527683515e-05,0.0,0.0,0.0,0.0,0.0,12.248855671790007,0.0,0.0,0.0 -10856,runoff,0.13542403834969477,2012-06-21,0.0,0.0,1.0435210411681823e-05,0.0,0.0,0.0,0.0,0.0,14.287115208278871,0.0,0.0,0.0 -10857,storm_outflow,0.04,2012-06-21,0.0,0.0,5.981896890987799e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 -10858,baseflow,0.045649259831294475,2012-06-21,0.0,0.0,7.355722271021623e-06,0.0,0.0,0.0,0.0,0.0,9.955067121802935,0.0,0.0,0.0 -10859,catchment_outflow,0.22107329818098925,2012-06-21,0.0,0.0,1.8389122371802226e-05,0.0,0.0,0.0,0.0,0.0,13.580848532562266,0.0,0.0,0.0 -10860,reservoir_outflow,0.031000000000000003,2012-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10861,gw1_gw2,0.0,2012-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10862,gw2_gw1,7.843705742960339e-05,2012-06-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10863,urban_drainage,0.04,2012-06-22,0.0,0.0,1.4479459934005386e-06,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 -10864,percolation,0.1610669662166417,2012-06-22,0.0,0.0,2.126938803116521e-05,0.0,0.0,0.0,0.0,0.0,12.271304793683495,0.0,0.0,0.0 -10865,runoff,0.09194512626814991,2012-06-22,0.0,0.0,8.856239195567998e-06,0.0,0.0,0.0,0.0,0.0,14.05929901125112,0.0,0.0,0.0 -10866,storm_outflow,0.04,2012-06-22,0.0,0.0,1.4479459934005386e-06,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 -10867,baseflow,0.045937804097257846,2012-06-22,0.0,0.0,7.390506435421982e-06,0.0,0.0,0.0,0.0,0.0,9.97537008263105,0.0,0.0,0.0 -10868,catchment_outflow,0.17788293036540775,2012-06-22,0.0,0.0,1.769469162439052e-05,0.0,0.0,0.0,0.0,0.0,13.289826675695465,0.0,0.0,0.0 -10869,reservoir_outflow,0.0,2012-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10870,gw1_gw2,0.0,2012-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10871,gw2_gw1,7.791414371336459e-05,2012-06-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10872,urban_drainage,0.04,2012-06-23,0.0,0.0,4.1277231597702497e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 -10873,percolation,0.17480651193275823,2012-06-23,0.0,0.0,2.2383122469811662e-05,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 -10874,runoff,0.1852230165631298,2012-06-23,0.0,0.0,1.2215398687353577e-05,0.0,0.0,0.0,0.0,0.0,14.578009064585878,0.0,0.0,0.0 -10875,storm_outflow,0.04,2012-06-23,0.0,0.0,4.1277231597702497e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 -10876,baseflow,0.046259975866846596,2012-06-23,0.0,0.0,7.4279879755079555e-06,0.0,0.0,0.0,0.0,0.0,9.999186604730353,0.0,0.0,0.0 -10877,catchment_outflow,0.2714829924299764,2012-06-23,0.0,0.0,2.0056158978838556e-05,0.0,0.0,0.0,0.0,0.0,13.898908827962549,0.0,0.0,0.0 -10878,reservoir_outflow,0.0635,2012-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10879,gw1_gw2,0.0,2012-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10880,gw2_gw1,7.739471608871896e-05,2012-06-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10881,urban_drainage,0.04,2012-06-24,0.0,0.0,9.86151942460067e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 -10882,percolation,0.17131038169410306,2012-06-24,0.0,0.0,2.193546002041543e-05,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 -10883,runoff,0.10188389061548875,2012-06-24,0.0,0.0,9.772318949882863e-06,0.0,0.0,0.0,0.0,0.0,14.268503406075386,0.0,0.0,0.0 -10884,storm_outflow,0.04,2012-06-24,0.0,0.0,9.86151942460067e-07,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 -10885,baseflow,0.04657260188141474,2012-06-24,0.0,0.0,7.464256655620224e-06,0.0,0.0,0.0,0.0,0.0,10.022151107804277,0.0,0.0,0.0 -10886,catchment_outflow,0.1884564924969035,2012-06-24,0.0,0.0,1.8222727547963155e-05,0.0,0.0,0.0,0.0,0.0,13.430477639440147,0.0,0.0,0.0 -10887,reservoir_outflow,0.0,2012-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10888,gw1_gw2,0.0,2012-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10889,gw2_gw1,7.687875131487943e-05,2012-06-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10890,urban_drainage,0.022000000000000002,2012-06-25,0.0,0.0,2.03545953958307e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 -10891,percolation,0.167884174060221,2012-06-25,0.0,0.0,2.149675082000712e-05,0.0,0.0,0.0,0.0,0.0,12.496447187515498,0.0,0.0,0.0 -10892,runoff,0.0804551291060607,2012-06-25,0.0,0.0,7.81785515990629e-06,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 -10893,storm_outflow,0.022000000000000002,2012-06-25,0.0,0.0,2.03545953958307e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 -10894,baseflow,0.04687588081186175,2012-06-25,0.0,0.0,7.499337891031191e-06,0.0,0.0,0.0,0.0,0.0,10.044305099714848,0.0,0.0,0.0 -10895,catchment_outflow,0.14933100991792247,2012-06-25,0.0,0.0,1.7352652590520552e-05,0.0,0.0,0.0,0.0,0.0,13.082441213855212,0.0,0.0,0.0 -10896,reservoir_outflow,0.0,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10897,gw1_gw2,0.0,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10898,gw2_gw1,7.636622630613488e-05,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10899,urban_drainage,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10900,percolation,0.16661298247578657,2012-06-26,0.0,0.0,2.1261284261365513e-05,0.0,0.0,0.0,0.0,0.0,12.521087887475797,0.0,0.0,0.0 -10901,runoff,0.0786401004732749,2012-06-26,0.0,0.0,6.902512320453479e-06,0.0,0.0,0.0,0.0,0.0,14.359619631200871,0.0,0.0,0.0 -10902,storm_outflow,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10903,baseflow,0.047175223566021565,2012-06-26,0.0,0.0,7.533742756957026e-06,0.0,0.0,0.0,0.0,0.0,10.06617379137224,0.0,0.0,0.0 -10904,catchment_outflow,0.12581532403929646,2012-06-26,0.0,0.0,1.4436255077410505e-05,0.0,0.0,0.0,0.0,0.0,12.749765911798145,0.0,0.0,0.0 -10905,reservoir_outflow,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10906,gw1_gw2,0.0,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10907,gw2_gw1,7.58571181306067e-05,2012-06-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10908,urban_drainage,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10909,percolation,0.16328072282627082,2012-06-27,0.0,0.0,2.0836058576138194e-05,0.0,0.0,0.0,0.0,0.0,12.521087887475796,0.0,0.0,0.0 -10910,runoff,0.060183151748097345,2012-06-27,0.0,0.0,5.5220098563627825e-06,0.0,0.0,0.0,0.0,0.0,14.321327205646194,0.0,0.0,0.0 -10911,storm_outflow,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10912,baseflow,0.04746548731417219,2012-06-27,0.0,0.0,7.566998546504978e-06,0.0,0.0,0.0,0.0,0.0,10.087285981026747,0.0,0.0,0.0 -10913,catchment_outflow,0.10764863906226954,2012-06-27,0.0,0.0,1.308900840286776e-05,0.0,0.0,0.0,0.0,0.0,12.454412474670313,0.0,0.0,0.0 -10914,reservoir_outflow,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10915,gw1_gw2,0.0,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10916,gw2_gw1,7.535140400971585e-05,2012-06-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10917,urban_drainage,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10918,percolation,0.16199000347349685,2012-06-28,0.0,0.0,2.060532800270674e-05,0.0,0.0,0.0,0.0,0.0,12.544185836885163,0.0,0.0,0.0 -10919,runoff,0.05915664899897476,2012-06-28,0.0,0.0,5.037576545394574e-06,0.0,0.0,0.0,0.0,0.0,14.390081439466883,0.0,0.0,0.0 -10920,storm_outflow,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10921,baseflow,0.0477517986045705,2012-06-28,0.0,0.0,7.599594370145482e-06,0.0,0.0,0.0,0.0,0.0,10.108122537335351,0.0,0.0,0.0 -10922,catchment_outflow,0.10690844760354526,2012-06-28,0.0,0.0,1.2637170915540057e-05,0.0,0.0,0.0,0.0,0.0,12.477498816568035,0.0,0.0,0.0 -10923,reservoir_outflow,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10924,gw1_gw2,0.0,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10925,gw2_gw1,7.484906131640657e-05,2012-06-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10926,urban_drainage,0.013999999999999999,2012-06-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0 -10927,percolation,0.16231969236447408,2012-06-29,0.0,0.0,2.0526814662430664e-05,0.0,0.0,0.0,0.0,0.0,12.58496767464177,0.0,0.0,0.0 -10928,runoff,0.06620457319872662,2012-06-29,0.0,0.0,5.14203863557586e-06,0.0,0.0,0.0,0.0,0.0,14.462816210586755,0.0,0.0,0.0 -10929,storm_outflow,0.013999999999999999,2012-06-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0 -10930,baseflow,0.04803821833897026,2012-06-29,0.0,0.0,7.631912420876194e-06,0.0,0.0,0.0,0.0,0.0,10.12904550006292,0.0,0.0,0.0 -10931,catchment_outflow,0.12824279153769688,2012-06-29,0.0,0.0,1.6773951056452054e-05,0.0,0.0,0.0,0.0,0.0,12.907632888545864,0.0,0.0,0.0 -10932,reservoir_outflow,0.006999999999999999,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10933,gw1_gw2,0.0,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10934,gw2_gw1,7.43500675742581e-05,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10935,urban_drainage,0.029999999999999995,2012-06-30,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 -10936,percolation,0.1642770847343196,2012-06-30,0.0,0.0,2.059425487262863e-05,0.0,0.0,0.0,0.0,0.0,12.641892806669919,0.0,0.0,0.0 -10937,runoff,0.07854889348900064,2012-06-30,0.0,0.0,5.70688591994929e-06,0.0,0.0,0.0,0.0,0.0,14.503962409018348,0.0,0.0,0.0 -10938,storm_outflow,0.029999999999999995,2012-06-30,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 -10939,baseflow,0.048328815504958635,2012-06-30,0.0,0.0,7.664318277005576e-06,0.0,0.0,0.0,0.0,0.0,10.15039938726245,0.0,0.0,0.0 -10940,catchment_outflow,0.15687770899395928,2012-06-30,0.0,0.0,1.4371204196954865e-05,0.0,0.0,0.0,0.0,0.0,13.268986658922062,0.0,0.0,0.0 -10941,reservoir_outflow,0.015,2012-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10942,gw1_gw2,0.0,2012-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10943,gw2_gw1,7.385440045712955e-05,2012-06-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10944,urban_drainage,0.0030000000000000027,2012-07-01,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0 -10945,percolation,0.16345299792720486,2012-07-01,0.0,0.0,2.0408279449455548e-05,0.0,0.0,0.0,0.0,0.0,12.667579012983037,0.0,0.0,0.0 -10946,runoff,0.06507352902648736,2012-07-01,0.0,0.0,5.318540983557747e-06,0.0,0.0,0.0,0.0,0.0,14.42955420060965,0.0,0.0,0.0 -10947,storm_outflow,0.0030000000000000027,2012-07-01,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0 -10948,baseflow,0.04861662596101425,2012-07-01,0.0,0.0,7.6961781799367e-06,0.0,0.0,0.0,0.0,0.0,10.17155678702088,0.0,0.0,0.0 -10949,catchment_outflow,0.11669015498750161,2012-07-01,0.0,0.0,1.4014719163494447e-05,0.0,0.0,0.0,0.0,0.0,12.67101355745754,0.0,0.0,0.0 -10950,reservoir_outflow,0.0014999999999999996,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10951,gw1_gw2,0.0,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10952,gw2_gw1,7.336203778738338e-05,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10953,urban_drainage,0.029999999999999995,2012-07-02,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0 -10954,percolation,0.16535278424807992,2012-07-02,0.0,0.0,2.0466407480408492e-05,0.0,0.0,0.0,0.0,0.0,12.719647878296659,0.0,0.0,0.0 -10955,runoff,0.08051526650122523,2012-07-02,0.0,0.0,5.809144853319702e-06,0.0,0.0,0.0,0.0,0.0,14.486516132048328,0.0,0.0,0.0 -10956,storm_outflow,0.029999999999999995,2012-07-02,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0 -10957,baseflow,0.04890846635673191,2012-07-02,0.0,0.0,7.728103753187881e-06,0.0,0.0,0.0,0.0,0.0,10.193093649033024,0.0,0.0,0.0 -10958,catchment_outflow,0.15942373285795713,2012-07-02,0.0,0.0,1.4537248606507583e-05,0.0,0.0,0.0,0.0,0.0,13.26658206363379,0.0,0.0,0.0 -10959,reservoir_outflow,0.015,2012-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10960,gw1_gw2,0.0,2012-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10961,gw2_gw1,7.287295753553025e-05,2012-07-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10962,urban_drainage,0.04,2012-07-03,0.0,0.0,6.451612903225806e-07,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 -10963,percolation,0.17078463581224107,2012-07-03,0.0,0.0,2.081751396942082e-05,0.0,0.0,0.0,0.0,0.0,12.801677021060193,0.0,0.0,0.0 -10964,runoff,0.10969569429660833,2012-07-03,0.0,0.0,7.182098011390765e-06,0.0,0.0,0.0,0.0,0.0,14.511240871061199,0.0,0.0,0.0 -10965,storm_outflow,0.04,2012-07-03,0.0,0.0,6.451612903225806e-07,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 -10966,baseflow,0.049213156780370686,2012-07-03,0.0,0.0,7.760827278728462e-06,0.0,0.0,0.0,0.0,0.0,10.2157250950895,0.0,0.0,0.0 -10967,catchment_outflow,0.19890885107697903,2012-07-03,0.0,0.0,1.5588086580441808e-05,0.0,0.0,0.0,0.0,0.0,13.541723802646446,0.0,0.0,0.0 -10968,reservoir_outflow,0.031000000000000003,2012-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10969,gw1_gw2,0.0,2012-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10970,gw2_gw1,7.238713781863027e-05,2012-07-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10971,urban_drainage,0.03100000000000001,2012-07-04,0.0,0.0,1.3548387096774195e-06,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 -10972,percolation,0.1706884394284169,2012-07-04,0.0,0.0,2.0688866437331935e-05,0.0,0.0,0.0,0.0,0.0,12.830458664073673,0.0,0.0,0.0 -10973,runoff,0.08593863280192571,2012-07-04,0.0,0.0,6.7046875667777155e-06,0.0,0.0,0.0,0.0,0.0,14.438294062874892,0.0,0.0,0.0 -10974,storm_outflow,0.03100000000000001,2012-07-04,0.0,0.0,1.3548387096774195e-06,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 -10975,baseflow,0.0495168449869908,2012-07-04,0.0,0.0,7.793147376624972e-06,0.0,0.0,0.0,0.0,0.0,10.238258073136073,0.0,0.0,0.0 -10976,catchment_outflow,0.1664554777889165,2012-07-04,0.0,0.0,1.5852673653080106e-05,0.0,0.0,0.0,0.0,0.0,13.299257154920243,0.0,0.0,0.0 -10977,reservoir_outflow,0.004499999999999999,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10978,gw1_gw2,0.0,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10979,gw2_gw1,7.190455689976005e-05,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10980,urban_drainage,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10981,percolation,0.16861266893506652,2012-07-05,0.0,0.0,2.039179234036474e-05,0.0,0.0,0.0,0.0,0.0,12.843008892361265,0.0,0.0,0.0 -10982,runoff,0.068587746977465,2012-07-05,0.0,0.0,5.752760826020326e-06,0.0,0.0,0.0,0.0,0.0,14.400610244642497,0.0,0.0,0.0 -10983,storm_outflow,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10984,baseflow,0.04981458454686099,2012-07-05,0.0,0.0,7.824643989034322e-06,0.0,0.0,0.0,0.0,0.0,10.26029950896935,0.0,0.0,0.0 -10985,catchment_outflow,0.118402331524326,2012-07-05,0.0,0.0,1.3577404815054647e-05,0.0,0.0,0.0,0.0,0.0,12.65868627627797,0.0,0.0,0.0 -10986,reservoir_outflow,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10987,gw1_gw2,0.0,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10988,gw2_gw1,7.142519318712458e-05,2012-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10989,urban_drainage,0.04,2012-07-06,0.0,0.0,7.079646017699116e-07,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0 -10990,percolation,0.17930256886917448,2012-07-06,0.0,0.0,2.1132727493205153e-05,0.0,0.0,0.0,0.0,0.0,12.984016704601535,0.0,0.0,0.0 -10991,runoff,0.14732914608654657,2012-07-06,0.0,0.0,8.431445326308611e-06,0.0,0.0,0.0,0.0,0.0,14.838733321189105,0.0,0.0,0.0 -10992,storm_outflow,0.04,2012-07-06,0.0,0.0,7.079646017699116e-07,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0 -10993,baseflow,0.05013830450766677,2012-07-06,0.0,0.0,7.857914197794748e-06,0.0,0.0,0.0,0.0,0.0,10.284650626086568,0.0,0.0,0.0 -10994,catchment_outflow,0.23746745059421334,2012-07-06,0.0,0.0,1.699732412587327e-05,0.0,0.0,0.0,0.0,0.0,13.997605578974744,0.0,0.0,0.0 -10995,reservoir_outflow,0.056499999999999995,2012-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10996,gw1_gw2,0.0,2012-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10997,gw2_gw1,7.094902523263613e-05,2012-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10998,urban_drainage,0.04,2012-07-07,0.0,0.0,7.903570338724443e-07,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -10999,percolation,0.1833879541247346,2012-07-07,0.0,0.0,2.132220623735812e-05,0.0,0.0,0.0,0.0,0.0,13.058980444739438,0.0,0.0,0.0 -11000,runoff,0.13087938277798322,2012-07-07,0.0,0.0,8.785600574437122e-06,0.0,0.0,0.0,0.0,0.0,14.797574405650607,0.0,0.0,0.0 -11001,storm_outflow,0.04,2012-07-07,0.0,0.0,7.903570338724443e-07,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -11002,baseflow,0.05047142863170945,2012-07-07,0.0,0.0,7.891574927893656e-06,0.0,0.0,0.0,0.0,0.0,10.309851947076636,0.0,0.0,0.0 -11003,catchment_outflow,0.22135081140969268,2012-07-07,0.0,0.0,1.7467532536203222e-05,0.0,0.0,0.0,0.0,0.0,13.923837934064192,0.0,0.0,0.0 -11004,reservoir_outflow,0.0215,2012-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11005,gw1_gw2,0.0,2012-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11006,gw2_gw1,7.047603173084838e-05,2012-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11007,urban_drainage,0.04,2012-07-08,0.0,0.0,1.370782665401449e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -11008,percolation,0.1817830660860765,2012-07-08,0.0,0.0,2.1061012889410175e-05,0.0,0.0,0.0,0.0,0.0,13.07999593597676,0.0,0.0,0.0 -11009,runoff,0.09728402983335693,2012-07-08,0.0,0.0,7.579316382213774e-06,0.0,0.0,0.0,0.0,0.0,14.680500702750466,0.0,0.0,0.0 -11010,storm_outflow,0.04,2012-07-08,0.0,0.0,1.370782665401449e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -11011,baseflow,0.05079970772534537,2012-07-08,0.0,0.0,7.924498522797447e-06,0.0,0.0,0.0,0.0,0.0,10.334633844962976,0.0,0.0,0.0 -11012,catchment_outflow,0.1880837375587023,2012-07-08,0.0,0.0,1.687459757041267e-05,0.0,0.0,0.0,0.0,0.0,13.707602494723249,0.0,0.0,0.0 -11013,reservoir_outflow,0.0,2012-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11014,gw1_gw2,0.0,2012-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11015,gw2_gw1,7.000619151931176e-05,2012-07-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11016,urban_drainage,0.01899999999999998,2012-07-09,0.0,0.0,2.130895698956195e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -11017,percolation,0.178147404764355,2012-07-09,0.0,0.0,2.0639792631621976e-05,0.0,0.0,0.0,0.0,0.0,13.079995935976758,0.0,0.0,0.0 -11018,runoff,0.07450387104399468,2012-07-09,0.0,0.0,6.063453105771021e-06,0.0,0.0,0.0,0.0,0.0,14.630737156933328,0.0,0.0,0.0 -11019,storm_outflow,0.01899999999999998,2012-07-09,0.0,0.0,2.130895698956195e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -11020,baseflow,0.05111807696794289,2012-07-09,0.0,0.0,7.956286758069508e-06,0.0,0.0,0.0,0.0,0.0,10.358552933896977,0.0,0.0,0.0 -11021,catchment_outflow,0.14462194801193756,2012-07-09,0.0,0.0,1.6150635562796723e-05,0.0,0.0,0.0,0.0,0.0,13.2513222015912,0.0,0.0,0.0 -11022,reservoir_outflow,0.0,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11023,gw1_gw2,0.0,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11024,gw2_gw1,6.953948357590889e-05,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11025,urban_drainage,0.0039999999999999975,2012-07-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0 -11026,percolation,0.17733283470310346,2012-07-10,0.0,0.0,2.0449404294594117e-05,0.0,0.0,0.0,0.0,0.0,13.113497592849635,0.0,0.0,0.0 -11027,runoff,0.07643405873655502,2012-07-10,0.0,0.0,5.592120869965436e-06,0.0,0.0,0.0,0.0,0.0,14.8789451052896,0.0,0.0,0.0 -11028,storm_outflow,0.0039999999999999975,2012-07-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0 -11029,baseflow,0.05143361386228079,2012-07-10,0.0,0.0,7.98751955191082e-06,0.0,0.0,0.0,0.0,0.0,10.382299182173949,0.0,0.0,0.0 -11030,catchment_outflow,0.1318676725988358,2012-07-10,0.0,0.0,1.4579640421876257e-05,0.0,0.0,0.0,0.0,0.0,13.168938960022432,0.0,0.0,0.0 -11031,reservoir_outflow,0.0019999999999999987,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11032,gw1_gw2,0.0,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11033,gw2_gw1,6.907588701867696e-05,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11034,urban_drainage,0.04,2012-07-11,0.0,0.0,9.09090909090909e-07,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0 -11035,percolation,0.18087943540516258,2012-07-11,0.0,0.0,2.0600563397884704e-05,0.0,0.0,0.0,0.0,0.0,13.204115407814035,0.0,0.0,0.0 -11036,runoff,0.10196531539348208,2012-07-11,0.0,0.0,6.3408539932472515e-06,0.0,0.0,0.0,0.0,0.0,15.217426287323882,0.0,0.0,0.0 -11037,storm_outflow,0.04,2012-07-11,0.0,0.0,9.09090909090909e-07,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0 -11038,baseflow,0.051757228416138,2012-07-11,0.0,0.0,8.019052161525754e-06,0.0,0.0,0.0,0.0,0.0,10.40695315521937,0.0,0.0,0.0 -11039,catchment_outflow,0.1937225438096201,2012-07-11,0.0,0.0,1.5268997063863913e-05,0.0,0.0,0.0,0.0,0.0,14.134225174771883,0.0,0.0,0.0 -11040,reservoir_outflow,0.022000000000000002,2012-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11041,gw1_gw2,0.0,2012-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11042,gw2_gw1,6.861538110491949e-05,2012-07-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11043,urban_drainage,0.04,2012-07-12,0.0,0.0,2.833530106257379e-07,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0 -11044,percolation,0.19660902971215946,2012-07-12,0.0,0.0,2.1592058393689894e-05,0.0,0.0,0.0,0.0,0.0,13.419285263648918,0.0,0.0,0.0 -11045,runoff,0.1940368170956567,2012-07-12,0.0,0.0,9.751037407140733e-06,0.0,0.0,0.0,0.0,0.0,15.471730623216873,0.0,0.0,0.0 -11046,storm_outflow,0.04,2012-07-12,0.0,0.0,2.833530106257379e-07,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0 -11047,baseflow,0.05211935791937806,2012-07-12,0.0,0.0,8.052984677106165e-06,0.0,0.0,0.0,0.0,0.0,10.435361587165387,0.0,0.0,0.0 -11048,catchment_outflow,0.28615617501503476,2012-07-12,0.0,0.0,1.8087375094872634e-05,0.0,0.0,0.0,0.0,0.0,14.638057614437981,0.0,0.0,0.0 -11049,reservoir_outflow,0.07500000000000001,2012-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11050,gw1_gw2,0.0,2012-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11051,gw2_gw1,6.815794523085117e-05,2012-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11052,urban_drainage,0.04,2012-07-13,0.0,0.0,4.756726527061455e-07,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0 -11053,percolation,0.20001533026922727,2012-07-13,0.0,0.0,2.1682326467267503e-05,0.0,0.0,0.0,0.0,0.0,13.486217189464094,0.0,0.0,0.0 -11054,runoff,0.15113223203784606,2012-07-13,0.0,0.0,9.541194063883961e-06,0.0,0.0,0.0,0.0,0.0,15.300370778844988,0.0,0.0,0.0 -11055,storm_outflow,0.04,2012-07-13,0.0,0.0,4.756726527061455e-07,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0 -11056,baseflow,0.052489097850252686,2012-07-13,0.0,0.0,8.087058031581569e-06,0.0,0.0,0.0,0.0,0.0,10.464425617406409,0.0,0.0,0.0 -11057,catchment_outflow,0.24362132988809876,2012-07-13,0.0,0.0,1.8103924748171673e-05,0.0,0.0,0.0,0.0,0.0,14.379377610518508,0.0,0.0,0.0 -11058,reservoir_outflow,0.018999999999999996,2012-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11059,gw1_gw2,0.0,2012-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11060,gw2_gw1,6.770355892928848e-05,2012-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11061,urban_drainage,0.04,2012-07-14,0.0,0.0,7.402804531991136e-07,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0 -11062,percolation,0.20026770082288764,2012-07-14,0.0,0.0,2.1549662900691963e-05,0.0,0.0,0.0,0.0,0.0,13.52087459280988,0.0,0.0,0.0 -11063,runoff,0.1294038050656758,2012-07-14,0.0,0.0,8.6362317936732e-06,0.0,0.0,0.0,0.0,0.0,15.237578450250671,0.0,0.0,0.0 -11064,storm_outflow,0.04,2012-07-14,0.0,0.0,7.402804531991136e-07,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0 -11065,baseflow,0.05285854435768427,2012-07-14,0.0,0.0,8.120714543754345e-06,0.0,0.0,0.0,0.0,0.0,10.493375904272261,0.0,0.0,0.0 -11066,catchment_outflow,0.2222623494233601,2012-07-14,0.0,0.0,1.7497226790626662e-05,0.0,0.0,0.0,0.0,0.0,14.248589794414613,0.0,0.0,0.0 -11067,reservoir_outflow,0.006999999999999999,2012-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11068,gw1_gw2,0.0,2012-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11069,gw2_gw1,6.725220186964975e-05,2012-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11070,urban_drainage,0.04,2012-07-15,0.0,0.0,1.191541597415216e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -11071,percolation,0.1988326869867118,2012-07-15,0.0,0.0,2.1301043921046594e-05,0.0,0.0,0.0,0.0,0.0,13.540000029188292,0.0,0.0,0.0 -11072,runoff,0.10917224273434364,2012-07-15,0.0,0.0,7.51689969616679e-06,0.0,0.0,0.0,0.0,0.0,15.193032055602634,0.0,0.0,0.0 -11073,storm_outflow,0.04,2012-07-15,0.0,0.0,1.191541597415216e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -11074,baseflow,0.053223479714256845,2012-07-15,0.0,0.0,8.153665367197575e-06,0.0,0.0,0.0,0.0,0.0,10.521829909170465,0.0,0.0,0.0 -11075,catchment_outflow,0.2023957224486005,2012-07-15,0.0,0.0,1.6862106660779583e-05,0.0,0.0,0.0,0.0,0.0,14.125658344254264,0.0,0.0,0.0 -11076,reservoir_outflow,0.0004999999999999991,2012-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11077,gw1_gw2,0.0,2012-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11078,gw2_gw1,6.680385385724464e-05,2012-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11079,urban_drainage,0.04,2012-07-16,0.0,0.0,2.04260542720245e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -11080,percolation,0.19722959201442744,2012-07-16,0.0,0.0,2.1043956492187003e-05,0.0,0.0,0.0,0.0,0.0,13.55622558573622,0.0,0.0,0.0 -11081,runoff,0.09636294314291968,2012-07-16,0.0,0.0,6.5766312554712335e-06,0.0,0.0,0.0,0.0,0.0,15.162461266524968,0.0,0.0,0.0 -11082,storm_outflow,0.04,2012-07-16,0.0,0.0,2.04260542720245e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -11083,baseflow,0.053583494995007266,2012-07-16,0.0,0.0,8.18589109501005e-06,0.0,0.0,0.0,0.0,0.0,10.549752342251546,0.0,0.0,0.0 -11084,catchment_outflow,0.18994643813792694,2012-07-16,0.0,0.0,1.6805127777683734e-05,0.0,0.0,0.0,0.0,0.0,14.039215804094292,0.0,0.0,0.0 -11085,reservoir_outflow,0.0,2012-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11086,gw1_gw2,0.0,2012-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11087,gw2_gw1,6.635849483114243e-05,2012-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11088,urban_drainage,0.0029999999999999923,2012-07-17,0.0,0.0,1.3574559497604282e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -11089,percolation,0.1951186275609616,2012-07-17,0.0,0.0,2.0754300048711068e-05,0.0,0.0,0.0,0.0,0.0,13.567699106201786,0.0,0.0,0.0 -11090,runoff,0.08297360500677209,2012-07-17,0.0,0.0,5.698713958936323e-06,0.0,0.0,0.0,0.0,0.0,15.155301077130988,0.0,0.0,0.0 -11091,storm_outflow,0.0029999999999999923,2012-07-17,0.0,0.0,1.3574559497604282e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -11092,baseflow,0.05393733282642216,2012-07-17,0.0,0.0,8.217312117394302e-06,0.0,0.0,0.0,0.0,0.0,10.57704594390817,0.0,0.0,0.0 -11093,catchment_outflow,0.13991093783319425,2012-07-17,0.0,0.0,1.5273482026091054e-05,0.0,0.0,0.0,0.0,0.0,13.40860600246108,0.0,0.0,0.0 -11094,reservoir_outflow,0.0,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11095,gw1_gw2,0.0,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11096,gw2_gw1,6.591610486559319e-05,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11097,urban_drainage,0.012,2012-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -11098,percolation,0.19472820339889435,2012-07-18,0.0,0.0,2.0589470429822286e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -11099,runoff,0.0852609803190606,2012-07-18,0.0,0.0,5.393159107433864e-06,0.0,0.0,0.0,0.0,0.0,15.231611144486477,0.0,0.0,0.0 -11100,storm_outflow,0.012,2012-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -11101,baseflow,0.05428931000285334,2012-07-18,0.0,0.0,8.248242513175372e-06,0.0,0.0,0.0,0.0,0.0,10.604093653299463,0.0,0.0,0.0 -11102,catchment_outflow,0.15155029032191394,2012-07-18,0.0,0.0,1.4641401620609236e-05,0.0,0.0,0.0,0.0,0.0,13.644652354466007,0.0,0.0,0.0 -11103,reservoir_outflow,0.006,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11104,gw1_gw2,0.0,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11105,gw2_gw1,6.547666416665266e-05,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11106,urban_drainage,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11107,percolation,0.19083363933091646,2012-07-19,0.0,0.0,2.017768102122584e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -11108,runoff,0.05835068351376918,2012-07-19,0.0,0.0,4.314527285947091e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -11109,storm_outflow,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11110,baseflow,0.05463067082617349,2012-07-19,0.0,0.0,8.278066109445496e-06,0.0,0.0,0.0,0.0,0.0,10.630198575622346,0.0,0.0,0.0 -11111,catchment_outflow,0.11298135433994266,2012-07-19,0.0,0.0,1.2592593395392587e-05,0.0,0.0,0.0,0.0,0.0,12.928705729304914,0.0,0.0,0.0 -11112,reservoir_outflow,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11113,gw1_gw2,0.0,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11114,gw2_gw1,6.504015307182698e-05,2012-07-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11115,urban_drainage,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11116,percolation,0.18701696654429814,2012-07-20,0.0,0.0,1.977412740080132e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196282,0.0,0.0,0.0 -11117,runoff,0.04737376982583062,2012-07-20,0.0,0.0,3.4516218287576723e-06,0.0,0.0,0.0,0.0,0.0,15.104372528180564,0.0,0.0,0.0 -11118,storm_outflow,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11119,baseflow,0.054961636565468805,2012-07-20,0.0,0.0,8.306806262673887e-06,0.0,0.0,0.0,0.0,0.0,10.655405279026905,0.0,0.0,0.0 -11120,catchment_outflow,0.10233540639129943,2012-07-20,0.0,0.0,1.175842809143156e-05,0.0,0.0,0.0,0.0,0.0,12.714950043213072,0.0,0.0,0.0 -11121,reservoir_outflow,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11122,gw1_gw2,0.0,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11123,gw2_gw1,6.460655205167144e-05,2012-07-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11124,urban_drainage,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11125,percolation,0.18327662721341217,2012-07-21,0.0,0.0,1.9378644852785295e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -11126,runoff,0.03734443744881228,2012-07-21,0.0,0.0,2.7612974630061384e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 -11127,storm_outflow,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11128,baseflow,0.05528242404208866,2012-07-21,0.0,0.0,8.334485859149166e-06,0.0,0.0,0.0,0.0,0.0,10.679755588595848,0.0,0.0,0.0 -11129,catchment_outflow,0.09262686149090094,2012-07-21,0.0,0.0,1.1095783322155303e-05,0.0,0.0,0.0,0.0,0.0,12.454078148387987,0.0,0.0,0.0 -11130,reservoir_outflow,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11131,gw1_gw2,0.0,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11132,gw2_gw1,6.41758417048166e-05,2012-07-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11133,urban_drainage,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11134,percolation,0.1796110946691439,2012-07-22,0.0,0.0,1.8991071955729588e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 -11135,runoff,0.02987554995904982,2012-07-22,0.0,0.0,2.2090379704049104e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 -11136,storm_outflow,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11137,baseflow,0.0555932457186563,2012-07-22,0.0,0.0,8.361127324390616e-06,0.0,0.0,0.0,0.0,0.0,10.703288794384756,0.0,0.0,0.0 -11138,catchment_outflow,0.08546879567770613,2012-07-22,0.0,0.0,1.0570165294795526e-05,0.0,0.0,0.0,0.0,0.0,12.23340133998257,0.0,0.0,0.0 -11139,reservoir_outflow,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11140,gw1_gw2,0.0,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11141,gw2_gw1,6.374800276010006e-05,2012-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11142,urban_drainage,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11143,percolation,0.17601887277576103,2012-07-23,0.0,0.0,1.8611250516614996e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 -11144,runoff,0.02390043996723986,2012-07-23,0.0,0.0,1.7672303763239286e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 -11145,storm_outflow,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11146,baseflow,0.05589430978629906,2012-07-23,0.0,0.0,8.386752632371176e-06,0.0,0.0,0.0,0.0,0.0,10.726041840805832,0.0,0.0,0.0 -11147,catchment_outflow,0.07979474975353892,2012-07-23,0.0,0.0,1.0153983008695105e-05,0.0,0.0,0.0,0.0,0.0,12.03035940205241,0.0,0.0,0.0 -11148,reservoir_outflow,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11149,gw1_gw2,0.0,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11150,gw2_gw1,6.332301607478997e-05,2012-07-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11151,urban_drainage,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11152,percolation,0.1724984953202458,2012-07-24,0.0,0.0,1.8239025506282697e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 -11153,runoff,0.019120351973791888,2012-07-24,0.0,0.0,1.4137843010591428e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -11154,storm_outflow,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11155,baseflow,0.05618582025013391,2012-07-24,0.0,0.0,8.411383314555955e-06,0.0,0.0,0.0,0.0,0.0,10.748049499278256,0.0,0.0,0.0 -11156,catchment_outflow,0.0753061722239258,2012-07-24,0.0,0.0,9.825167615615098e-06,0.0,0.0,0.0,0.0,0.0,11.8481101994372,0.0,0.0,0.0 -11157,reservoir_outflow,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11158,gw1_gw2,0.0,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11159,gw2_gw1,6.290086263405215e-05,2012-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11160,urban_drainage,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11161,percolation,0.16904852541384088,2012-07-25,0.0,0.0,1.787424499615704e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 -11162,runoff,0.01529628157903351,2012-07-25,0.0,0.0,1.1310274408473142e-06,0.0,0.0,0.0,0.0,0.0,15.0806768827329,0.0,0.0,0.0 -11163,storm_outflow,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11164,baseflow,0.05646797701304318,2012-07-25,0.0,0.0,8.435040468759957e-06,0.0,0.0,0.0,0.0,0.0,10.769344525845039,0.0,0.0,0.0 -11165,catchment_outflow,0.07176425859207669,2012-07-25,0.0,0.0,9.56606790960727e-06,0.0,0.0,0.0,0.0,0.0,11.688288788707332,0.0,0.0,0.0 -11166,reservoir_outflow,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11167,gw1_gw2,0.0,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11168,gw2_gw1,6.248152354970671e-05,2012-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11169,urban_drainage,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11170,percolation,0.16566755490556406,2012-07-26,0.0,0.0,1.7516760096233902e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -11171,runoff,0.012237025263226809,2012-07-26,0.0,0.0,9.048219526778515e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -11172,storm_outflow,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11173,baseflow,0.056740975957774484,2012-07-26,0.0,0.0,8.457744767828642e-06,0.0,0.0,0.0,0.0,0.0,10.789957805261752,0.0,0.0,0.0 -11174,catchment_outflow,0.0689780012210013,2012-07-26,0.0,0.0,9.362566720506494e-06,0.0,0.0,0.0,0.0,0.0,11.551151763030965,0.0,0.0,0.0 -11175,reservoir_outflow,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11176,gw1_gw2,0.0,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11177,gw2_gw1,6.20649800593398e-05,2012-07-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11178,urban_drainage,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11179,percolation,0.16235420380745277,2012-07-27,0.0,0.0,1.7166424894309225e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196282,0.0,0.0,0.0 -11180,runoff,0.009789620210581447,2012-07-27,0.0,0.0,7.238575621422812e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -11181,storm_outflow,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11182,baseflow,0.05700500902739868,2012-07-27,0.0,0.0,8.479516468144842e-06,0.0,0.0,0.0,0.0,0.0,10.809918482892604,0.0,0.0,0.0 -11183,catchment_outflow,0.06679462923798013,2012-07-27,0.0,0.0,9.203374030287123e-06,0.0,0.0,0.0,0.0,0.0,11.435853580108684,0.0,0.0,0.0 -11184,reservoir_outflow,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11185,gw1_gw2,0.0,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11186,gw2_gw1,6.165121352577075e-05,2012-07-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11187,urban_drainage,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11188,percolation,0.15910711973130373,2012-07-28,0.0,0.0,1.682309639642304e-05,0.0,0.0,0.0,0.0,0.0,13.593355763196278,0.0,0.0,0.0 -11189,runoff,0.007831696168465158,2012-07-28,0.0,0.0,5.790860497138249e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -11190,storm_outflow,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11191,baseflow,0.05726026430415845,2012-07-28,0.0,0.0,8.500375417965539e-06,0.0,0.0,0.0,0.0,0.0,10.829254085600857,0.0,0.0,0.0 -11192,catchment_outflow,0.06509196047262361,2012-07-28,0.0,0.0,9.079461467679364e-06,0.0,0.0,0.0,0.0,0.0,11.34077427010702,0.0,0.0,0.0 -11193,reservoir_outflow,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11194,gw1_gw2,0.0,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11195,gw2_gw1,6.124020543563091e-05,2012-07-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11196,urban_drainage,0.002999999999999999,2012-07-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0 -11197,percolation,0.15592497733667765,2012-07-29,0.0,0.0,1.6486634468494576e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -11198,runoff,0.006265356934772126,2012-07-29,0.0,0.0,4.632688397710598e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -11199,storm_outflow,0.002999999999999999,2012-07-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0 -11200,baseflow,0.05750692608673974,2012-07-29,0.0,0.0,8.520341065591862e-06,0.0,0.0,0.0,0.0,0.0,10.847990632690212,0.0,0.0,0.0 -11201,catchment_outflow,0.06677228302151186,2012-07-29,0.0,0.0,1.9983609905362923e-05,0.0,0.0,0.0,0.0,0.0,11.48352427960292,0.0,0.0,0.0 -11202,reservoir_outflow,0.0014999999999999996,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11203,gw1_gw2,0.0,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11204,gw2_gw1,6.083193739936377e-05,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11205,urban_drainage,0.034999999999999996,2012-07-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 -11206,percolation,0.1528064777899441,2012-07-30,0.0,0.0,1.6156901779124687e-05,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -11207,runoff,0.005012285547817701,2012-07-30,0.0,0.0,3.706150718168479e-07,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -11208,storm_outflow,0.034999999999999996,2012-07-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 -11209,baseflow,0.05774517496599776,2012-07-30,0.0,0.0,8.539432467375695e-06,0.0,0.0,0.0,0.0,0.0,10.86615273783956,0.0,0.0,0.0 -11210,catchment_outflow,0.09775746051381545,2012-07-30,0.0,0.0,9.910047539192543e-06,0.0,0.0,0.0,0.0,0.0,12.853817428255004,0.0,0.0,0.0 -11211,reservoir_outflow,0.017499999999999998,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11212,gw1_gw2,0.0,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11213,gw2_gw1,6.042639114998139e-05,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11214,urban_drainage,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11215,percolation,0.15059184612747575,2012-07-31,0.0,0.0,1.590226165774383e-05,0.0,0.0,0.0,0.0,0.0,13.601373646119358,0.0,0.0,0.0 -11216,runoff,0.009767445603147327,2012-07-31,0.0,0.0,5.248184381255965e-07,0.0,0.0,0.0,0.0,0.0,15.18481076006975,0.0,0.0,0.0 -11217,storm_outflow,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11218,baseflow,0.057977291643901446,2012-07-31,0.0,0.0,8.557839540351614e-06,0.0,0.0,0.0,0.0,0.0,10.883914086915428,0.0,0.0,0.0 -11219,catchment_outflow,0.06774473724704877,2012-07-31,0.0,0.0,9.08265797847721e-06,0.0,0.0,0.0,0.0,0.0,11.504017965193032,0.0,0.0,0.0 -11220,reservoir_outflow,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11221,gw1_gw2,0.0,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11222,gw2_gw1,6.002354854253156e-05,2012-07-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11223,urban_drainage,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11224,percolation,0.14826076792220985,2012-08-01,0.0,0.0,1.564001219895528e-05,0.0,0.0,0.0,0.0,0.0,13.606581847908506,0.0,0.0,0.0 -11225,runoff,0.010109679935285004,2012-08-01,0.0,0.0,6.058406650549084e-07,0.0,0.0,0.0,0.0,0.0,15.089818717292156,0.0,0.0,0.0 -11226,storm_outflow,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11227,baseflow,0.05820300033459723,2012-08-01,0.0,0.0,8.575544971998125e-06,0.0,0.0,0.0,0.0,0.0,10.90125274689521,0.0,0.0,0.0 -11228,catchment_outflow,0.06831268026988223,2012-08-01,0.0,0.0,9.181385637053033e-06,0.0,0.0,0.0,0.0,0.0,11.521123921342582,0.0,0.0,0.0 -11229,reservoir_outflow,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11230,gw1_gw2,0.0,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11231,gw2_gw1,5.962339155232144e-05,2012-08-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11232,urban_drainage,0.04,2012-08-02,0.0,0.0,1.3636363636363636e-06,0.0,0.0,0.0,0.0,0.0,15.517857139999998,0.0,0.0,0.0 -11233,percolation,0.15086660291041235,2012-08-02,0.0,0.0,1.576016056885898e-05,0.0,0.0,0.0,0.0,0.0,13.649247178604615,0.0,0.0,0.0 -11234,runoff,0.044294555183786485,2012-08-02,0.0,0.0,1.927834578319952e-06,0.0,0.0,0.0,0.0,0.0,15.123729499519152,0.0,0.0,0.0 -11235,storm_outflow,0.04,2012-08-02,0.0,0.0,1.3636363636363636e-06,0.0,0.0,0.0,0.0,0.0,15.517857139999998,0.0,0.0,0.0 -11236,baseflow,0.05843465934103676,2012-08-02,0.0,0.0,8.593506510990276e-06,0.0,0.0,0.0,0.0,0.0,10.91898967688693,0.0,0.0,0.0 -11237,catchment_outflow,0.14272921452482323,2012-08-02,0.0,0.0,1.1884977452946592e-05,0.0,0.0,0.0,0.0,0.0,13.51272481278082,0.0,0.0,0.0 -11238,reservoir_outflow,0.044000000000000004,2012-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11239,gw1_gw2,0.0,2012-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11240,gw2_gw1,5.92259022752728e-05,2012-08-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11241,urban_drainage,0.03900000000000001,2012-08-03,0.0,0.0,2.6363636363636364e-06,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 -11242,percolation,0.14914828864436072,2012-08-03,0.0,0.0,1.5546695911912572e-05,0.0,0.0,0.0,0.0,0.0,13.65869419243055,0.0,0.0,0.0 -11243,runoff,0.02868562455891703,2012-08-03,0.0,0.0,1.8813961774251937e-06,0.0,0.0,0.0,0.0,0.0,14.916057386654051,0.0,0.0,0.0 -11244,storm_outflow,0.03900000000000001,2012-08-03,0.0,0.0,2.6363636363636364e-06,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 -11245,baseflow,0.05866144341429508,2012-08-03,0.0,0.0,8.610889484492582e-06,0.0,0.0,0.0,0.0,0.0,10.936404106881374,0.0,0.0,0.0 -11246,catchment_outflow,0.1263470679732121,2012-08-03,0.0,0.0,1.3128649298281411e-05,0.0,0.0,0.0,0.0,0.0,13.254111299041424,0.0,0.0,0.0 -11247,reservoir_outflow,0.0,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11248,gw1_gw2,0.0,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11249,gw2_gw1,5.883106292667862e-05,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11250,urban_drainage,0.029999999999999995,2012-08-04,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 -11251,percolation,0.15181194297234815,2012-08-04,0.0,0.0,1.56710704700984e-05,0.0,0.0,0.0,0.0,0.0,13.69985899499671,0.0,0.0,0.0 -11252,runoff,0.05793690302601175,2012-08-04,0.0,0.0,2.9561451966870903e-06,0.0,0.0,0.0,0.0,0.0,15.048351847746327,0.0,0.0,0.0 -11253,storm_outflow,0.029999999999999995,2012-08-04,0.0,0.0,9.999999999999997e-07,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 -11254,baseflow,0.05889431966319021,2012-08-04,0.0,0.0,8.628539936956598e-06,0.0,0.0,0.0,0.0,0.0,10.954212507516631,0.0,0.0,0.0 -11255,catchment_outflow,0.14683122268920196,2012-08-04,0.0,0.0,1.2584685133643688e-05,0.0,0.0,0.0,0.0,0.0,13.510867696576605,0.0,0.0,0.0 -11256,reservoir_outflow,0.015,2012-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11257,gw1_gw2,0.0,2012-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11258,gw2_gw1,5.84388558406701e-05,2012-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11259,urban_drainage,0.04,2012-08-05,0.0,0.0,7.017543859649122e-07,0.0,0.0,0.0,0.0,0.0,15.582142859999998,0.0,0.0,0.0 -11260,percolation,0.15749138228454826,2012-08-05,0.0,0.0,1.6008637137668257e-05,0.0,0.0,0.0,0.0,0.0,13.760635458556788,0.0,0.0,0.0 -11261,runoff,0.09013294822436052,2012-08-05,0.0,0.0,4.534876413922415e-06,0.0,0.0,0.0,0.0,0.0,15.058693700551798,0.0,0.0,0.0 -11262,storm_outflow,0.04,2012-08-05,0.0,0.0,7.017543859649122e-07,0.0,0.0,0.0,0.0,0.0,15.582142859999998,0.0,0.0,0.0 -11263,baseflow,0.05914081231974361,2012-08-05,0.0,0.0,8.646990179958377e-06,0.0,0.0,0.0,0.0,0.0,10.97289619702384,0.0,0.0,0.0 -11264,catchment_outflow,0.18927376054410414,2012-08-05,0.0,0.0,1.3883620979845704e-05,0.0,0.0,0.0,0.0,0.0,13.892660879519168,0.0,0.0,0.0 -11265,reservoir_outflow,0.0285,2012-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11266,gw1_gw2,0.0,2012-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11267,gw2_gw1,5.8049263468618056e-05,2012-08-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11268,urban_drainage,0.02700000000000001,2012-08-06,0.0,0.0,1.298245614035088e-06,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0 -11269,percolation,0.15785037896013518,2012-08-06,0.0,0.0,1.5949661587539177e-05,0.0,0.0,0.0,0.0,0.0,13.783649642335789,0.0,0.0,0.0 -11270,runoff,0.0716490424011523,2012-08-06,0.0,0.0,4.49855843988554e-06,0.0,0.0,0.0,0.0,0.0,14.930698504749344,0.0,0.0,0.0 -11271,storm_outflow,0.02700000000000001,2012-08-06,0.0,0.0,1.298245614035088e-06,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0 -11272,baseflow,0.05938758623634459,2012-08-06,0.0,0.0,8.665246858477328e-06,0.0,0.0,0.0,0.0,0.0,10.991573437699202,0.0,0.0,0.0 -11273,catchment_outflow,0.1580366286374969,2012-08-06,0.0,0.0,1.4462050912397956e-05,0.0,0.0,0.0,0.0,0.0,13.563092474509476,0.0,0.0,0.0 -11274,reservoir_outflow,0.005,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11275,gw1_gw2,0.0,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11276,gw2_gw1,5.7662268378777526e-05,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11277,urban_drainage,0.005,2012-08-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -11278,percolation,0.15754371159250133,2012-08-07,0.0,0.0,1.5842772289474814e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126916,0.0,0.0,0.0 -11279,runoff,0.06697223025613927,2012-08-07,0.0,0.0,4.305859864196507e-06,0.0,0.0,0.0,0.0,0.0,14.918219870977202,0.0,0.0,0.0 -11280,storm_outflow,0.005,2012-08-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -11281,baseflow,0.05963297654973498,2012-08-07,0.0,0.0,8.68319067205482e-06,0.0,0.0,0.0,0.0,0.0,11.010136902424245,0.0,0.0,0.0 -11282,catchment_outflow,0.13160520680587426,2012-08-07,0.0,0.0,1.3989050536251327e-05,0.0,0.0,0.0,0.0,0.0,13.174240852642658,0.0,0.0,0.0 -11283,reservoir_outflow,0.0025,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11284,gw1_gw2,0.0,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11285,gw2_gw1,5.727785325628787e-05,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11286,urban_drainage,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11287,percolation,0.1543928373606513,2012-08-08,0.0,0.0,1.5525916843685314e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -11288,runoff,0.045576829225069004,2012-08-08,0.0,0.0,3.4446878913572057e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 -11289,storm_outflow,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11290,baseflow,0.05986987620176227,2012-08-08,0.0,0.0,8.7002974874839e-06,0.0,0.0,0.0,0.0,0.0,11.028137434025322,0.0,0.0,0.0 -11291,catchment_outflow,0.10544670542683127,2012-08-08,0.0,0.0,1.2144985378841105e-05,0.0,0.0,0.0,0.0,0.0,12.655904809142976,0.0,0.0,0.0 -11292,reservoir_outflow,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11293,gw1_gw2,0.0,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11294,gw2_gw1,5.689600090086344e-05,2012-08-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11295,urban_drainage,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11296,percolation,0.15130498061343828,2012-08-09,0.0,0.0,1.5215398506811611e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -11297,runoff,0.03646146338005521,2012-08-09,0.0,0.0,2.7557503130857646e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 -11298,storm_outflow,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11299,baseflow,0.06009846396279146,2012-08-09,0.0,0.0,8.716585240032218e-06,0.0,0.0,0.0,0.0,0.0,11.045597562157537,0.0,0.0,0.0 -11300,catchment_outflow,0.09655992734284667,2012-08-09,0.0,0.0,1.1472335553117982e-05,0.0,0.0,0.0,0.0,0.0,12.46106614694797,0.0,0.0,0.0 -11301,reservoir_outflow,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11302,gw1_gw2,0.0,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11303,gw2_gw1,5.651669422821471e-05,2012-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11304,urban_drainage,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11305,percolation,0.1482788810011695,2012-08-10,0.0,0.0,1.4911090536675379e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126916,0.0,0.0,0.0 -11306,runoff,0.029169170704044168,2012-08-10,0.0,0.0,2.204600250468612e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 -11307,storm_outflow,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11308,baseflow,0.0603189150053874,2012-08-10,0.0,0.0,8.732071503273824e-06,0.0,0.0,0.0,0.0,0.0,11.062538648099945,0.0,0.0,0.0 -11309,catchment_outflow,0.08948808570943156,2012-08-10,0.0,0.0,1.0936671753742436e-05,0.0,0.0,0.0,0.0,0.0,12.278877970503387,0.0,0.0,0.0 -11310,reservoir_outflow,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11311,gw1_gw2,0.0,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11312,gw2_gw1,5.6139916266850776e-05,2012-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11313,urban_drainage,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11314,percolation,0.14531330338114612,2012-08-11,0.0,0.0,1.461286872594187e-05,0.0,0.0,0.0,0.0,0.0,13.802208392126916,0.0,0.0,0.0 -11315,runoff,0.02361504404320483,2012-08-11,0.0,0.0,1.7636802003748893e-06,0.0,0.0,0.0,0.0,0.0,14.814138928939915,0.0,0.0,0.0 -11316,storm_outflow,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11317,baseflow,0.06053140097632681,2012-08-11,0.0,0.0,8.746773496330494e-06,0.0,0.0,0.0,0.0,0.0,11.078980959621598,0.0,0.0,0.0 -11318,catchment_outflow,0.08414644501953164,2012-08-11,0.0,0.0,1.0510453696705384e-05,0.0,0.0,0.0,0.0,0.0,12.127223935701048,0.0,0.0,0.0 -11319,reservoir_outflow,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11320,gw1_gw2,0.0,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11321,gw2_gw1,5.576565015861235e-05,2012-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11322,urban_drainage,0.0039999999999999975,2012-08-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 -11323,percolation,0.14399747737575827,2012-08-12,0.0,0.0,1.4446074340811932e-05,0.0,0.0,0.0,0.0,0.0,13.821402671541934,0.0,0.0,0.0 -11324,runoff,0.029550227571143946,2012-08-12,0.0,0.0,1.8291541249295776e-06,0.0,0.0,0.0,0.0,0.0,15.28720585089952,0.0,0.0,0.0 -11325,storm_outflow,0.0039999999999999975,2012-08-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 -11326,baseflow,0.060740066167325385,2012-08-12,0.0,0.0,8.761021748441699e-06,0.0,0.0,0.0,0.0,0.0,11.095234720661683,0.0,0.0,0.0 -11327,catchment_outflow,0.09429029373846934,2012-08-12,0.0,0.0,1.5590175873371278e-05,0.0,0.0,0.0,0.0,0.0,12.646597755687067,0.0,0.0,0.0 -11328,reservoir_outflow,0.0019999999999999987,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11329,gw1_gw2,0.0,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11330,gw2_gw1,5.539387915778349e-05,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11331,urban_drainage,0.008,2012-08-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 -11332,percolation,0.1430986084649318,2012-08-13,0.0,0.0,1.4312965290473113e-05,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 -11333,runoff,0.03273055115079194,2012-08-13,0.0,0.0,1.9826980882017234e-06,0.0,0.0,0.0,0.0,0.0,15.528751604482606,0.0,0.0,0.0 -11334,storm_outflow,0.008,2012-08-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 -11335,baseflow,0.06094596252306939,2012-08-13,0.0,0.0,8.774901607296776e-06,0.0,0.0,0.0,0.0,0.0,11.1113919972488,0.0,0.0,0.0 -11336,catchment_outflow,0.10167651367386132,2012-08-13,0.0,0.0,1.17575996954985e-05,0.0,0.0,0.0,0.0,0.0,12.989674267337232,0.0,0.0,0.0 -11337,reservoir_outflow,0.004,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11338,gw1_gw2,0.0,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11339,gw2_gw1,5.502458663020349e-05,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11340,urban_drainage,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11341,percolation,0.14023663629563315,2012-08-14,0.0,0.0,1.402670598466365e-05,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 -11342,runoff,0.020893012627295336,2012-08-14,0.0,0.0,1.5861584705613786e-06,0.0,0.0,0.0,0.0,0.0,15.181515587071152,0.0,0.0,0.0 -11343,storm_outflow,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11344,baseflow,0.06114418920750082,2012-08-14,0.0,0.0,8.788031118240197e-06,0.0,0.0,0.0,0.0,0.0,11.127082151374978,0.0,0.0,0.0 -11345,catchment_outflow,0.08203720183479615,2012-08-14,0.0,0.0,1.0374189588801575e-05,0.0,0.0,0.0,0.0,0.0,12.159654290282317,0.0,0.0,0.0 -11346,reservoir_outflow,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11347,gw1_gw2,0.0,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11348,gw2_gw1,5.4657756052378664e-05,2012-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11349,urban_drainage,0.039999999999999994,2012-08-15,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 -11350,percolation,0.1473554070683084,2012-08-15,0.0,0.0,1.4475303884932178e-05,0.0,0.0,0.0,0.0,0.0,14.005023368864164,0.0,0.0,0.0 -11351,runoff,0.08439646577077238,2012-08-15,0.0,0.0,3.699366842988433e-06,0.0,0.0,0.0,0.0,0.0,16.42371208375259,0.0,0.0,0.0 -11352,storm_outflow,0.039999999999999994,2012-08-15,0.0,0.0,5.797101449275361e-07,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 -11353,baseflow,0.061359717252152834,2012-08-15,0.0,0.0,8.802249300156925e-06,0.0,0.0,0.0,0.0,0.0,11.144360596363532,0.0,0.0,0.0 -11354,catchment_outflow,0.1857561830229252,2012-08-15,0.0,0.0,1.3081326288072894e-05,0.0,0.0,0.0,0.0,0.0,14.858514436172017,0.0,0.0,0.0 -11355,reservoir_outflow,0.069,2012-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11356,gw1_gw2,0.0,2012-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11357,gw2_gw1,5.429337101237053e-05,2012-08-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11358,urban_drainage,0.04,2012-08-16,0.0,0.0,9.047812542326967e-07,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0 -11359,percolation,0.14816500113212197,2012-08-16,0.0,0.0,1.4461130529094092e-05,0.0,0.0,0.0,0.0,0.0,14.061328539956195,0.0,0.0,0.0 -11360,runoff,0.06536547612970597,2012-08-16,0.0,0.0,3.877269213925949e-06,0.0,0.0,0.0,0.0,0.0,16.225410272636935,0.0,0.0,0.0 -11361,storm_outflow,0.04,2012-08-16,0.0,0.0,9.047812542326967e-07,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0 -11362,baseflow,0.061576730461852754,2012-08-16,0.0,0.0,8.816396503229269e-06,0.0,0.0,0.0,0.0,0.0,11.161907507161782,0.0,0.0,0.0 -11363,catchment_outflow,0.16694220659155873,2012-08-16,0.0,0.0,1.3598446971387913e-05,0.0,0.0,0.0,0.0,0.0,14.606676895191452,0.0,0.0,0.0 -11364,reservoir_outflow,0.004499999999999999,2012-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11365,gw1_gw2,0.0,2012-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11366,gw2_gw1,5.393141520535494e-05,2012-08-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11367,urban_drainage,0.04,2012-08-17,0.0,0.0,1.3597343788323063e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -11368,percolation,0.14862803937462757,2012-08-17,0.0,0.0,1.4422693059165877e-05,0.0,0.0,0.0,0.0,0.0,14.113548214485728,0.0,0.0,0.0 -11369,runoff,0.06519061898409767,2012-08-17,0.0,0.0,3.937765839986314e-06,0.0,0.0,0.0,0.0,0.0,16.293044406553644,0.0,0.0,0.0 -11370,storm_outflow,0.04,2012-08-17,0.0,0.0,1.3597343788323063e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -11371,baseflow,0.0617943587341347,2012-08-17,0.0,0.0,8.830412244619111e-06,0.0,0.0,0.0,0.0,0.0,11.179655752319377,0.0,0.0,0.0 -11372,catchment_outflow,0.16698497771823237,2012-08-17,0.0,0.0,1.4127912463437731e-05,0.0,0.0,0.0,0.0,0.0,14.639046152639262,0.0,0.0,0.0 -11373,reservoir_outflow,0.0035000000000000005,2012-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11374,gw1_gw2,0.0,2012-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11375,gw2_gw1,5.35718724373524e-05,2012-08-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11376,urban_drainage,0.014000000000000009,2012-08-18,0.0,0.0,2.1557742220074603e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -11377,percolation,0.145655478587135,2012-08-18,0.0,0.0,1.413423919798256e-05,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 -11378,runoff,0.04253470356581,2012-08-18,0.0,0.0,3.150212671989051e-06,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 -11379,storm_outflow,0.014000000000000009,2012-08-18,0.0,0.0,2.1557742220074603e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -11380,baseflow,0.062004011533767195,2012-08-18,0.0,0.0,8.84367181200252e-06,0.0,0.0,0.0,0.0,0.0,11.19688598872381,0.0,0.0,0.0 -11381,catchment_outflow,0.11853871509957721,2012-08-18,0.0,0.0,1.414965870599903e-05,0.0,0.0,0.0,0.0,0.0,13.646073235056207,0.0,0.0,0.0 -11382,reservoir_outflow,0.0,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11383,gw1_gw2,0.0,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11384,gw2_gw1,5.321472662114246e-05,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11385,urban_drainage,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11386,percolation,0.1427423690153923,2012-08-19,0.0,0.0,1.385155441402291e-05,0.0,0.0,0.0,0.0,0.0,14.113548214485732,0.0,0.0,0.0 -11387,runoff,0.035695729016912724,2012-08-19,0.0,0.0,2.5201701375912413e-06,0.0,0.0,0.0,0.0,0.0,16.0994890817446,0.0,0.0,0.0 -11388,storm_outflow,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11389,baseflow,0.06220585742747126,2012-08-19,0.0,0.0,8.85619151850757e-06,0.0,0.0,0.0,0.0,0.0,11.213617985232675,0.0,0.0,0.0 -11390,catchment_outflow,0.09790158644438399,2012-08-19,0.0,0.0,1.137636165609881e-05,0.0,0.0,0.0,0.0,0.0,12.99504704074376,0.0,0.0,0.0 -11391,reservoir_outflow,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11392,gw1_gw2,0.0,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11393,gw2_gw1,5.2859961776974275e-05,2012-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11394,urban_drainage,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11395,percolation,0.13988752163508444,2012-08-20,0.0,0.0,1.3574523325742449e-05,0.0,0.0,0.0,0.0,0.0,14.113548214485732,0.0,0.0,0.0 -11396,runoff,0.0272222102821184,2012-08-20,0.0,0.0,2.016136110072993e-06,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 -11397,storm_outflow,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11398,baseflow,0.062400061587990295,2012-08-20,0.0,0.0,8.867987348025658e-06,0.0,0.0,0.0,0.0,0.0,11.229870535404954,0.0,0.0,0.0 -11399,catchment_outflow,0.0896222718701087,2012-08-20,0.0,0.0,1.0884123458098651e-05,0.0,0.0,0.0,0.0,0.0,12.684146935299074,0.0,0.0,0.0 -11400,reservoir_outflow,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11401,gw1_gw2,0.0,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11402,gw2_gw1,5.250756203167839e-05,2012-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11403,urban_drainage,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11404,percolation,0.1391402260442641,2012-08-21,0.0,0.0,1.3460027442554817e-05,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 -11405,runoff,0.0358071960911985,2012-08-21,0.0,0.0,2.136224165815778e-06,0.0,0.0,0.0,0.0,0.0,16.5625832547404,0.0,0.0,0.0 -11406,storm_outflow,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11407,baseflow,0.06259191199913099,2012-08-21,0.0,0.0,8.87946744826198e-06,0.0,0.0,0.0,0.0,0.0,11.24611307324296,0.0,0.0,0.0 -11408,catchment_outflow,0.09839910809032948,2012-08-21,0.0,0.0,1.1015691614077759e-05,0.0,0.0,0.0,0.0,0.0,13.180763640676282,0.0,0.0,0.0 -11409,reservoir_outflow,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11410,gw1_gw2,0.0,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11411,gw2_gw1,5.215751161813387e-05,2012-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11412,urban_drainage,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11413,percolation,0.1363574215233788,2012-08-22,0.0,0.0,1.3190826893703721e-05,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 -11414,runoff,0.02361554197518987,2012-08-22,0.0,0.0,1.7089793326526224e-06,0.0,0.0,0.0,0.0,0.0,16.241976005264757,0.0,0.0,0.0 -11415,storm_outflow,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11416,baseflow,0.0627763257729416,2012-08-22,0.0,0.0,8.890245846875585e-06,0.0,0.0,0.0,0.0,0.0,11.261895798344716,0.0,0.0,0.0 -11417,catchment_outflow,0.08639186774813146,2012-08-22,0.0,0.0,1.0599225179528208e-05,0.0,0.0,0.0,0.0,0.0,12.623219453358253,0.0,0.0,0.0 -11418,reservoir_outflow,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11419,gw1_gw2,0.0,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11420,gw2_gw1,5.1809794874202454e-05,2012-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11421,urban_drainage,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11422,percolation,0.1336302730929112,2012-08-23,0.0,0.0,1.2927010355829643e-05,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 -11423,runoff,0.018312075327124772,2012-08-23,0.0,0.0,1.367183466122098e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 -11424,storm_outflow,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11425,baseflow,0.06295346064124152,2012-08-23,0.0,0.0,8.900337758147969e-06,0.0,0.0,0.0,0.0,0.0,11.277235594254597,0.0,0.0,0.0 -11426,catchment_outflow,0.08126553596836629,2012-08-23,0.0,0.0,1.0267521224270067e-05,0.0,0.0,0.0,0.0,0.0,12.385355308095345,0.0,0.0,0.0 -11427,reservoir_outflow,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11428,gw1_gw2,0.0,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11429,gw2_gw1,5.1464396241840406e-05,2012-08-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11430,urban_drainage,0.02700000000000001,2012-08-24,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 -11431,percolation,0.13490348504185745,2012-08-24,0.0,0.0,1.2974726997473877e-05,0.0,0.0,0.0,0.0,0.0,14.21892881986854,0.0,0.0,0.0 -11432,runoff,0.04164735833562501,2012-08-24,0.0,0.0,2.114602935433753e-06,0.0,0.0,0.0,0.0,0.0,16.579484118942432,0.0,0.0,0.0 -11433,storm_outflow,0.02700000000000001,2012-08-24,0.0,0.0,6.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 -11434,baseflow,0.06313333570224305,2012-08-24,0.0,0.0,8.910523731246284e-06,0.0,0.0,0.0,0.0,0.0,11.292950139654627,0.0,0.0,0.0 -11435,catchment_outflow,0.13178069403786807,2012-08-24,0.0,0.0,1.702512666668004e-05,0.0,0.0,0.0,0.0,0.0,14.160781499987142,0.0,0.0,0.0 -11436,reservoir_outflow,0.013500000000000002,2012-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11437,gw1_gw2,0.0,2012-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11438,gw2_gw1,5.112130026674322e-05,2012-08-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11439,urban_drainage,0.039999999999999994,2012-08-25,0.0,0.0,5.970149253731335e-07,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -11440,percolation,0.14045605947297266,2012-08-25,0.0,0.0,1.3331499343681853e-05,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 -11441,runoff,0.0786936836111792,2012-08-25,0.0,0.0,3.745905302205185e-06,0.0,0.0,0.0,0.0,0.0,16.459180867454993,0.0,0.0,0.0 -11442,storm_outflow,0.039999999999999994,2012-08-25,0.0,0.0,5.970149253731335e-07,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -11443,baseflow,0.06332664251166988,2012-08-25,0.0,0.0,8.921576170277375e-06,0.0,0.0,0.0,0.0,0.0,11.309815051431732,0.0,0.0,0.0 -11444,catchment_outflow,0.18202032612284907,2012-08-25,0.0,0.0,1.3264496397855694e-05,0.0,0.0,0.0,0.0,0.0,14.751196593866261,0.0,0.0,0.0 -11445,reservoir_outflow,0.033499999999999995,2012-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11446,gw1_gw2,0.0,2012-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11447,gw2_gw1,5.0780491598345634e-05,2012-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11448,urban_drainage,0.006999999999999982,2012-08-26,0.0,0.0,1.4029850746268647e-06,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -11449,percolation,0.1376469382835132,2012-08-26,0.0,0.0,1.3064869356808219e-05,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 -11450,runoff,0.039795244062410376,2012-08-26,0.0,0.0,2.996724241764147e-06,0.0,0.0,0.0,0.0,0.0,16.237970634833662,0.0,0.0,0.0 -11451,storm_outflow,0.006999999999999981,2012-08-26,0.0,0.0,1.4029850746268645e-06,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -11452,baseflow,0.06351244325109949,2012-08-26,0.0,0.0,8.931934403243702e-06,0.0,0.0,0.0,0.0,0.0,11.326202938786754,0.0,0.0,0.0 -11453,catchment_outflow,0.11030768731350984,2012-08-26,0.0,0.0,1.3331643719634713e-05,0.0,0.0,0.0,0.0,0.0,13.448054818205827,0.0,0.0,0.0 -11454,reservoir_outflow,0.0,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11455,gw1_gw2,0.0,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11456,gw2_gw1,5.044195498769e-05,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11457,urban_drainage,0.04,2012-08-27,0.0,0.0,4.4444444444444444e-07,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 -11458,percolation,0.14629841087882206,2012-08-27,0.0,0.0,1.3624958105822416e-05,0.0,0.0,0.0,0.0,0.0,14.439340603064899,0.0,0.0,0.0 -11459,runoff,0.10986637824610114,2012-08-27,0.0,0.0,5.135333180579193e-06,0.0,0.0,0.0,0.0,0.0,16.047927898375047,0.0,0.0,0.0 -11460,storm_outflow,0.04,2012-08-27,0.0,0.0,4.4444444444444465e-07,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 -11461,baseflow,0.0637194081701688,2012-08-27,0.0,0.0,8.943666962500147e-06,0.0,0.0,0.0,0.0,0.0,11.344072184053228,0.0,0.0,0.0 -11462,catchment_outflow,0.21358578641626993,2012-08-27,0.0,0.0,1.4523444587523785e-05,0.0,0.0,0.0,0.0,0.0,14.681793567690821,0.0,0.0,0.0 -11463,reservoir_outflow,0.045,2012-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11464,gw1_gw2,0.0,2012-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11465,gw2_gw1,5.010567528760391e-05,2012-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11466,urban_drainage,0.04,2012-08-28,0.0,0.0,1.003584229390681e-06,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0 -11467,percolation,0.14715247448452426,2012-08-28,0.0,0.0,1.3623556145243356e-05,0.0,0.0,0.0,0.0,0.0,14.464068389091073,0.0,0.0,0.0 -11468,runoff,0.08174409546217938,2012-08-28,0.0,0.0,5.011923882921312e-06,0.0,0.0,0.0,0.0,0.0,15.854733380141788,0.0,0.0,0.0 -11469,storm_outflow,0.04,2012-08-28,0.0,0.0,1.003584229390681e-06,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0 -11470,baseflow,0.06392799083595468,2012-08-28,0.0,0.0,8.955366685457006e-06,0.0,0.0,0.0,0.0,0.0,11.362026571323577,0.0,0.0,0.0 -11471,catchment_outflow,0.18567208629813406,2012-08-28,0.0,0.0,1.4970874797768998e-05,0.0,0.0,0.0,0.0,0.0,14.379892177930868,0.0,0.0,0.0 -11472,reservoir_outflow,0.006,2012-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11473,gw1_gw2,0.0,2012-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11474,gw2_gw1,4.977163745198965e-05,2012-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11475,urban_drainage,0.04,2012-08-29,0.0,0.0,4.3717502145489427e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 -11476,percolation,0.16036003543607819,2012-08-29,0.0,0.0,1.4434197179468282e-05,0.0,0.0,0.0,0.0,0.0,14.537819147680773,0.0,0.0,0.0 -11477,runoff,0.16528883742870387,2012-08-29,0.0,0.0,7.619912963436363e-06,0.0,0.0,0.0,0.0,0.0,15.66316525976567,0.0,0.0,0.0 -11478,storm_outflow,0.04,2012-08-29,0.0,0.0,4.3717502145489427e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 -11479,baseflow,0.064169070947455,2012-08-29,0.0,0.0,8.969063761692036e-06,0.0,0.0,0.0,0.0,0.0,11.38186752439345,0.0,0.0,0.0 -11480,catchment_outflow,0.2694579083761589,2012-08-29,0.0,0.0,1.7026151746583292e-05,0.0,0.0,0.0,0.0,0.0,14.69034462953471,0.0,0.0,0.0 -11481,reservoir_outflow,0.06,2012-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11482,gw1_gw2,0.0,2012-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11483,gw2_gw1,4.943982653582424e-05,2012-08-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11484,urban_drainage,0.04,2012-08-30,0.0,0.0,8.631821651877473e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 -11485,percolation,0.15914215080692812,2012-08-30,0.0,0.0,1.427972525569104e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -11486,runoff,0.1005071331084679,2012-08-30,0.0,0.0,6.543303770122847e-06,0.0,0.0,0.0,0.0,0.0,15.52033903749402,0.0,0.0,0.0 -11487,storm_outflow,0.04,2012-08-30,0.0,0.0,8.631821651877473e-07,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 -11488,baseflow,0.06440650364710368,2012-08-30,0.0,0.0,8.982340415427033e-06,0.0,0.0,0.0,0.0,0.0,11.401406572028234,0.0,0.0,0.0 -11489,catchment_outflow,0.2049136367555716,2012-08-30,0.0,0.0,1.6388826350737627e-05,0.0,0.0,0.0,0.0,0.0,14.315049296909946,0.0,0.0,0.0 -11490,reservoir_outflow,0.0,2012-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11491,gw1_gw2,0.0,2012-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11492,gw2_gw1,4.911022769213958e-05,2012-08-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11493,urban_drainage,0.03799999999999998,2012-08-31,0.0,0.0,2.2516141395222326e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -11494,percolation,0.15595930779078956,2012-08-31,0.0,0.0,1.3994130750577222e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -11495,runoff,0.07482166135113505,2012-08-31,0.0,0.0,5.234643016098278e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -11496,storm_outflow,0.03799999999999998,2012-08-31,0.0,0.0,2.2516141395222326e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -11497,baseflow,0.06463538565746291,2012-08-31,0.0,0.0,8.994869891264909e-06,0.0,0.0,0.0,0.0,0.0,11.420369167432721,0.0,0.0,0.0 -11498,catchment_outflow,0.17745704700859793,2012-08-31,0.0,0.0,1.648112704688542e-05,0.0,0.0,0.0,0.0,0.0,14.112154476666019,0.0,0.0,0.0 -11499,reservoir_outflow,0.0,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11500,gw1_gw2,0.0,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11501,gw2_gw1,4.8782826174509354e-05,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11502,urban_drainage,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11503,percolation,0.1528401216349738,2012-09-01,0.0,0.0,1.3714248135565678e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11504,runoff,0.0602591484555649,2012-09-01,0.0,0.0,4.187714412878622e-06,0.0,0.0,0.0,0.0,0.0,15.492654523903147,0.0,0.0,0.0 -11505,storm_outflow,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11506,baseflow,0.06485589749740668,2012-09-01,0.0,0.0,9.00666833687566e-06,0.0,0.0,0.0,0.0,0.0,11.438777608396355,0.0,0.0,0.0 -11507,catchment_outflow,0.12511504595297157,2012-09-01,0.0,0.0,1.319438274975428e-05,0.0,0.0,0.0,0.0,0.0,13.391245986691423,0.0,0.0,0.0 -11508,reservoir_outflow,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11509,gw1_gw2,0.0,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11510,gw2_gw1,4.845760733331872e-05,2012-09-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11511,urban_drainage,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11512,percolation,0.1497833192022743,2012-09-02,0.0,0.0,1.3439963172854365e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -11513,runoff,0.0482646753053071,2012-09-02,0.0,0.0,3.3501715303028977e-06,0.0,0.0,0.0,0.0,0.0,15.493062998942092,0.0,0.0,0.0 -11514,storm_outflow,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11515,baseflow,0.06506821605166885,2012-09-02,0.0,0.0,9.017751573965606e-06,0.0,0.0,0.0,0.0,0.0,11.45665307691426,0.0,0.0,0.0 -11516,catchment_outflow,0.11333289135697594,2012-09-02,0.0,0.0,1.2367923104268504e-05,0.0,0.0,0.0,0.0,0.0,13.175624612478122,0.0,0.0,0.0 -11517,reservoir_outflow,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11518,gw1_gw2,0.0,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11519,gw2_gw1,4.8134556617895896e-05,2012-09-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11520,urban_drainage,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11521,percolation,0.1467876528182288,2012-09-03,0.0,0.0,1.3171163909397278e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11522,runoff,0.038308690611781146,2012-09-03,0.0,0.0,2.680137224242318e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -11523,storm_outflow,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11524,baseflow,0.06527251464358526,2012-09-03,0.0,0.0,9.028135104804186e-06,0.0,0.0,0.0,0.0,0.0,11.47401570820889,0.0,0.0,0.0 -11525,catchment_outflow,0.1035812052553664,2012-09-03,0.0,0.0,1.1708272329046504e-05,0.0,0.0,0.0,0.0,0.0,12.95924846879976,0.0,0.0,0.0 -11526,reservoir_outflow,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11527,gw1_gw2,0.0,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11528,gw2_gw1,4.7813659573847644e-05,2012-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11529,urban_drainage,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11530,percolation,0.14385189976186424,2012-09-04,0.0,0.0,1.2907740631209331e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -11531,runoff,0.030646952489424915,2012-09-04,0.0,0.0,2.1441097793938546e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -11532,storm_outflow,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11533,baseflow,0.06546896310638095,2012-09-04,0.0,0.0,9.0378341186202e-06,0.0,0.0,0.0,0.0,0.0,11.490884654686404,0.0,0.0,0.0 -11534,catchment_outflow,0.09611591559580587,2012-09-04,0.0,0.0,1.1181943898014054e-05,0.0,0.0,0.0,0.0,0.0,12.765978139261302,0.0,0.0,0.0 -11535,reservoir_outflow,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11536,gw1_gw2,0.0,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11537,gw2_gw1,4.749490184305927e-05,2012-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11538,urban_drainage,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11539,percolation,0.14097486176662696,2012-09-05,0.0,0.0,1.2649585818585146e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11540,runoff,0.024517561991539934,2012-09-05,0.0,0.0,1.7152878235150838e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -11541,storm_outflow,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11542,baseflow,0.06565772785303156,2012-09-05,0.0,0.0,9.046863497870112e-06,0.0,0.0,0.0,0.0,0.0,11.507278145256214,0.0,0.0,0.0 -11543,catchment_outflow,0.09017528984457149,2012-09-05,0.0,0.0,1.0762151321385196e-05,0.0,0.0,0.0,0.0,0.0,12.590096885724122,0.0,0.0,0.0 -11544,reservoir_outflow,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11545,gw1_gw2,0.0,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11546,gw2_gw1,4.717826916458279e-05,2012-09-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11547,urban_drainage,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11548,percolation,0.13815536453129443,2012-09-06,0.0,0.0,1.2396594102213442e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905578,0.0,0.0,0.0 -11549,runoff,0.019614049593231948,2012-09-06,0.0,0.0,1.372230258812067e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -11550,storm_outflow,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11551,baseflow,0.06583897194472722,2012-09-06,0.0,0.0,9.055237824380971e-06,0.0,0.0,0.0,0.0,0.0,11.523213540401246,0.0,0.0,0.0 -11552,catchment_outflow,0.08545302153795917,2012-09-06,0.0,0.0,1.0427468083193039e-05,0.0,0.0,0.0,0.0,0.0,12.433681490928178,0.0,0.0,0.0 -11553,reservoir_outflow,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11554,gw1_gw2,0.0,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11555,gw2_gw1,4.686374737019605e-05,2012-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11556,urban_drainage,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11557,percolation,0.13539225724066856,2012-09-07,0.0,0.0,1.2148662220169175e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11558,runoff,0.015691239674585557,2012-09-07,0.0,0.0,1.0977842070496534e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -11559,storm_outflow,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11560,baseflow,0.06601285515796707,2012-09-07,0.0,0.0,9.062971385370443e-06,0.0,0.0,0.0,0.0,0.0,11.538707383349864,0.0,0.0,0.0 -11561,catchment_outflow,0.08170409483255262,2012-09-07,0.0,0.0,1.0160755592420096e-05,0.0,0.0,0.0,0.0,0.0,12.297527029203293,0.0,0.0,0.0 -11562,reservoir_outflow,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11563,gw1_gw2,0.0,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11564,gw2_gw1,4.655132238795545e-05,2012-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11565,urban_drainage,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11566,percolation,0.1326844120958552,2012-09-08,0.0,0.0,1.1905688975765791e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11567,runoff,0.012552991739668446,2012-09-08,0.0,0.0,8.782273656397228e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11568,storm_outflow,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11569,baseflow,0.06617953405031178,2012-09-08,0.0,0.0,9.070078179346431e-06,0.0,0.0,0.0,0.0,0.0,11.55377544766767,0.0,0.0,0.0 -11570,catchment_outflow,0.07873252578998023,2012-09-08,0.0,0.0,9.948305544986153e-06,0.0,0.0,0.0,0.0,0.0,12.181340587510595,0.0,0.0,0.0 -11571,reservoir_outflow,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11572,gw1_gw2,0.0,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11573,gw2_gw1,4.6240980238643203e-05,2012-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11574,urban_drainage,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11575,percolation,0.13003072385393807,2012-09-09,0.0,0.0,1.1667575196250476e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11576,runoff,0.010042393391734756,2012-09-09,0.0,0.0,7.025818925117781e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11577,storm_outflow,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11578,baseflow,0.06633916202482085,2012-09-09,0.0,0.0,9.07657192188869e-06,0.0,0.0,0.0,0.0,0.0,11.568432781558034,0.0,0.0,0.0 -11579,catchment_outflow,0.0763815554165556,2012-09-09,0.0,0.0,9.779153814400469e-06,0.0,0.0,0.0,0.0,0.0,12.084010605527352,0.0,0.0,0.0 -11580,reservoir_outflow,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11581,gw1_gw2,0.0,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11582,gw2_gw1,4.59327070370108e-05,2012-09-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11583,urban_drainage,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11584,percolation,0.1274301093768593,2012-09-10,0.0,0.0,1.1434223692325467e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11585,runoff,0.008033914713387805,2012-09-10,0.0,0.0,5.620655140094225e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11586,storm_outflow,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11587,baseflow,0.06649188939320094,2012-09-10,0.0,0.0,9.082466051314782e-06,0.0,0.0,0.0,0.0,0.0,11.58269374913393,0.0,0.0,0.0 -11588,catchment_outflow,0.07452580410658875,2012-09-10,0.0,0.0,9.644531565324206e-06,0.0,0.0,0.0,0.0,0.0,12.003889305297509,0.0,0.0,0.0 -11589,reservoir_outflow,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11590,gw1_gw2,0.0,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11591,gw2_gw1,4.562648899000266e-05,2012-09-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11592,urban_drainage,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11593,percolation,0.12488150718932216,2012-09-11,0.0,0.0,1.120553921847896e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11594,runoff,0.006427131770710244,2012-09-11,0.0,0.0,4.4965241120753797e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11595,storm_outflow,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11596,baseflow,0.06663786343769124,2012-09-11,0.0,0.0,9.087773734232693e-06,0.0,0.0,0.0,0.0,0.0,11.596572068899919,0.0,0.0,0.0 -11597,catchment_outflow,0.07306499520840148,2012-09-11,0.0,0.0,9.537426145440232e-06,0.0,0.0,0.0,0.0,0.0,11.939044577740933,0.0,0.0,0.0 -11598,reservoir_outflow,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11599,gw1_gw2,0.0,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11600,gw2_gw1,4.5322312396756105e-05,2012-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11601,urban_drainage,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11602,percolation,0.12238387704553572,2012-09-12,0.0,0.0,1.098142843410938e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11603,runoff,0.005141705416568195,2012-09-12,0.0,0.0,3.5972192896603044e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11604,storm_outflow,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11605,baseflow,0.06677722847171086,2012-09-12,0.0,0.0,9.092507870982386e-06,0.0,0.0,0.0,0.0,0.0,11.610080849661864,0.0,0.0,0.0 -11606,catchment_outflow,0.07191893388827905,2012-09-12,0.0,0.0,9.452229799948417e-06,0.0,0.0,0.0,0.0,0.0,11.88745903818947,0.0,0.0,0.0 -11607,reservoir_outflow,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11608,gw1_gw2,0.0,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11609,gw2_gw1,4.502016364735795e-05,2012-09-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11610,urban_drainage,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11611,percolation,0.119936199504625,2012-09-13,0.0,0.0,1.0761799865427194e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11612,runoff,0.0041133643332545555,2012-09-13,0.0,0.0,2.8777754317282435e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11613,storm_outflow,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11614,baseflow,0.06691012589929314,2012-09-13,0.0,0.0,9.096681100968498e-06,0.0,0.0,0.0,0.0,0.0,11.62323262406282,0.0,0.0,0.0 -11615,catchment_outflow,0.0710234902325477,2012-09-13,0.0,0.0,9.384458644141322e-06,0.0,0.0,0.0,0.0,0.0,11.84717116595083,0.0,0.0,0.0 -11616,reservoir_outflow,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11617,gw1_gw2,0.0,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11618,gw2_gw1,4.472002922284445e-05,2012-09-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11619,urban_drainage,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11620,percolation,0.11753747551453245,2012-09-14,0.0,0.0,1.0546563868118647e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -11621,runoff,0.003290691466603644,2012-09-14,0.0,0.0,2.3022203453825942e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11622,storm_outflow,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11623,baseflow,0.06703669427333123,2012-09-14,0.0,0.0,9.100305807886371e-06,0.0,0.0,0.0,0.0,0.0,11.636039379926158,0.0,0.0,0.0 -11624,catchment_outflow,0.07032738573993487,2012-09-14,0.0,0.0,9.330527842424631e-06,0.0,0.0,0.0,0.0,0.0,11.816364217232653,0.0,0.0,0.0 -11625,reservoir_outflow,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11626,gw1_gw2,0.0,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11627,gw2_gw1,4.442189569466848e-05,2012-09-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11628,urban_drainage,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11629,percolation,0.11518672600424185,2012-09-15,0.0,0.0,1.0335632590756279e-05,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -11630,runoff,0.0026325531732829155,2012-09-15,0.0,0.0,1.841776276306076e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11631,storm_outflow,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11632,baseflow,0.06715706935265851,2012-09-15,0.0,0.0,9.103394124843548e-06,0.0,0.0,0.0,0.0,0.0,11.648512589571435,0.0,0.0,0.0 -11633,catchment_outflow,0.06978962252594142,2012-09-15,0.0,0.0,9.287571752474154e-06,0.0,0.0,0.0,0.0,0.0,11.79341354704551,0.0,0.0,0.0 -11634,reservoir_outflow,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11635,gw1_gw2,0.0,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11636,gw2_gw1,4.412574972310069e-05,2012-09-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11637,urban_drainage,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11638,percolation,0.11288299148415697,2012-09-16,0.0,0.0,1.012891993894115e-05,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11639,runoff,0.0021060425386263326,2012-09-16,0.0,0.0,1.473421021044861e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11640,storm_outflow,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11641,baseflow,0.06727138415798727,2012-09-16,0.0,0.0,9.105957939378791e-06,0.0,0.0,0.0,0.0,0.0,11.660663237254399,0.0,0.0,0.0 -11642,catchment_outflow,0.06937742669661359,2012-09-16,0.0,0.0,9.253300041483278e-06,0.0,0.0,0.0,0.0,0.0,11.776903880698617,0.0,0.0,0.0 -11643,reservoir_outflow,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11644,gw1_gw2,0.0,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11645,gw2_gw1,4.383157805865068e-05,2012-09-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11646,urban_drainage,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11647,percolation,0.11062533165447383,2012-09-17,0.0,0.0,9.926341540162327e-06,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -11648,runoff,0.001684834030901066,2012-09-17,0.0,0.0,1.1787368168358888e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11649,storm_outflow,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11650,baseflow,0.06737976902672849,2012-09-17,0.0,0.0,9.10800889838075e-06,0.0,0.0,0.0,0.0,0.0,11.672501844869647,0.0,0.0,0.0 -11651,catchment_outflow,0.06906460305762956,2012-09-17,0.0,0.0,9.225882580064339e-06,0.0,0.0,0.0,0.0,0.0,11.765626759833964,0.0,0.0,0.0 -11652,reservoir_outflow,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11653,gw1_gw2,0.0,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11654,gw2_gw1,4.353936753798138e-05,2012-09-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11655,urban_drainage,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11656,percolation,0.10841282502138437,2012-09-18,0.0,0.0,9.727814709359082e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -11657,runoff,0.0013478672247208528,2012-09-18,0.0,0.0,9.429894534687108e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11658,storm_outflow,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11659,baseflow,0.06748235166671512,2012-09-18,0.0,0.0,9.109558412908196e-06,0.0,0.0,0.0,0.0,0.0,11.684038496043046,0.0,0.0,0.0 -11660,catchment_outflow,0.06883021889143598,2012-09-18,0.0,0.0,9.203857358255068e-06,0.0,0.0,0.0,0.0,0.0,11.75856620259473,0.0,0.0,0.0 -11661,reservoir_outflow,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11662,gw1_gw2,0.0,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11663,gw2_gw1,4.324910508781699e-05,2012-09-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11664,urban_drainage,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11665,percolation,0.10624456852095669,2012-09-19,0.0,0.0,9.5332584151719e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -11666,runoff,0.0010782937797766822,2012-09-19,0.0,0.0,7.543915627749688e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11667,storm_outflow,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11668,baseflow,0.06757925720885073,2012-09-19,0.0,0.0,9.110617662913857e-06,0.0,0.0,0.0,0.0,0.0,11.695282858730328,0.0,0.0,0.0 -11669,catchment_outflow,0.06865755098862741,2012-09-19,0.0,0.0,9.186056819191353e-06,0.0,0.0,0.0,0.0,0.0,11.754878371519268,0.0,0.0,0.0 -11670,reservoir_outflow,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11671,gw1_gw2,0.0,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11672,gw2_gw1,4.296077772050211e-05,2012-09-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11673,urban_drainage,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11674,percolation,0.10411967715053756,2012-09-20,0.0,0.0,9.342593246868462e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -11675,runoff,0.0008626350238213458,2012-09-20,0.0,0.0,6.035132502199751e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11676,storm_outflow,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11677,baseflow,0.06767060825870494,2012-09-20,0.0,0.0,9.111197601873742e-06,0.0,0.0,0.0,0.0,0.0,11.706244206428902,0.0,0.0,0.0 -11678,catchment_outflow,0.06853324328252629,2012-09-20,0.0,0.0,9.17154892689574e-06,0.0,0.0,0.0,0.0,0.0,11.753869121982827,0.0,0.0,0.0 -11679,reservoir_outflow,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11680,gw1_gw2,0.0,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11681,gw2_gw1,4.267437253577811e-05,2012-09-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11682,urban_drainage,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11683,percolation,0.10203728360752681,2012-09-21,0.0,0.0,9.155741381931093e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -11684,runoff,0.0006901080190570765,2012-09-21,0.0,0.0,4.828106001759798e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -11685,storm_outflow,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11686,baseflow,0.067756524947077,2012-09-21,0.0,0.0,9.111308961323886e-06,0.0,0.0,0.0,0.0,0.0,11.716931438101154,0.0,0.0,0.0 -11687,catchment_outflow,0.06844663296613407,2012-09-21,0.0,0.0,9.159590021341484e-06,0.0,0.0,0.0,0.0,0.0,11.75497182784806,0.0,0.0,0.0 -11688,reservoir_outflow,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11689,gw1_gw2,0.0,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11690,gw2_gw1,4.2389876719006736e-05,2012-09-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11691,urban_drainage,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11692,percolation,0.09999653793537627,2012-09-22,0.0,0.0,8.972626554292471e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905585,0.0,0.0,0.0 -11693,runoff,0.0005520864152456612,2012-09-22,0.0,0.0,3.86248480140784e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -11694,storm_outflow,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11695,baseflow,0.06783712497954775,2012-09-22,0.0,0.0,9.110962255306307e-06,0.0,0.0,0.0,0.0,0.0,11.727353096899677,0.0,0.0,0.0 -11696,catchment_outflow,0.06838921139479341,2012-09-22,0.0,0.0,9.149587103320385e-06,0.0,0.0,0.0,0.0,0.0,11.75772682950024,0.0,0.0,0.0 -11697,reservoir_outflow,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11698,gw1_gw2,0.0,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11699,gw2_gw1,4.210727754063726e-05,2012-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11700,urban_drainage,0.04,2012-09-23,0.0,0.0,2.7380952380952395e-06,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0 -11701,percolation,0.09799660717666875,2012-09-23,0.0,0.0,8.79317402320662e-06,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -11702,runoff,0.000441669132196529,2012-09-23,0.0,0.0,3.089987841126272e-08,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -11703,storm_outflow,0.04,2012-09-23,0.0,0.0,2.7380952380952395e-06,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0 -11704,baseflow,0.06791252368504055,2012-09-23,0.0,0.0,9.110167784726057e-06,0.0,0.0,0.0,0.0,0.0,11.737517387777663,0.0,0.0,0.0 -11705,catchment_outflow,0.10835419281723709,2012-09-23,0.0,0.0,1.1879162901232559e-05,0.0,0.0,0.0,0.0,0.0,11.88508839094196,0.0,0.0,0.0 -11706,reservoir_outflow,0.1,2012-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11707,gw1_gw2,0.0,2012-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11708,gw2_gw1,4.182656235727223e-05,2012-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11709,urban_drainage,0.04,2012-09-24,0.0,0.0,2.4230090896757576e-06,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0 -11710,percolation,0.10671902128636329,2012-09-24,0.0,0.0,9.38822300581945e-06,0.0,0.0,0.0,0.0,0.0,14.273659488076007,0.0,0.0,0.0 -11711,runoff,0.07344307282784301,2012-09-24,0.0,0.0,2.5944281129855504e-06,0.0,0.0,0.0,0.0,0.0,11.809140395754488,0.0,0.0,0.0 -11712,storm_outflow,0.04,2012-09-24,0.0,0.0,2.4230090896757576e-06,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0 -11713,baseflow,0.06800953992904385,2012-09-24,0.0,0.0,9.110862922778791e-06,0.0,0.0,0.0,0.0,0.0,11.747466528849245,0.0,0.0,0.0 -11714,catchment_outflow,0.18145261275688687,2012-09-24,0.0,0.0,1.4128300125440099e-05,0.0,0.0,0.0,0.0,0.0,11.837278264176367,0.0,0.0,0.0 -11715,reservoir_outflow,0.09549999999999997,2012-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11716,gw1_gw2,0.0,2012-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11717,gw2_gw1,4.154771860811479e-05,2012-09-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11718,urban_drainage,0.039999999999999994,2012-09-25,0.0,0.0,2.487635820969155e-06,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0 -11719,percolation,0.10857171602104781,2012-09-25,0.0,0.0,9.48774845097421e-06,0.0,0.0,0.0,0.0,0.0,14.173444353367161,0.0,0.0,0.0 -11720,runoff,0.05604891285953983,2012-09-25,0.0,0.0,3.0331755079589415e-06,0.0,0.0,0.0,0.0,0.0,11.78738535774892,0.0,0.0,0.0 -11721,storm_outflow,0.039999999999999994,2012-09-25,0.0,0.0,2.487635820969155e-06,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0 -11722,baseflow,0.06811094536927385,2012-09-25,0.0,0.0,9.111805136599277e-06,0.0,0.0,0.0,0.0,0.0,11.757134305959402,0.0,0.0,0.0 -11723,catchment_outflow,0.16415985822881368,2012-09-25,0.0,0.0,1.4632616465527373e-05,0.0,0.0,0.0,0.0,0.0,11.835594759345996,0.0,0.0,0.0 -11724,reservoir_outflow,0.004,2012-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11725,gw1_gw2,0.0,2012-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11726,gw2_gw1,4.127073381745561e-05,2012-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11727,urban_drainage,0.04,2012-09-26,0.0,0.0,1.9679635229233088e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11728,percolation,0.12262747072663001,2012-09-26,0.0,0.0,1.041375433628238e-05,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 -11729,runoff,0.144675475804743,2012-09-26,0.0,0.0,6.1457432541259935e-06,0.0,0.0,0.0,0.0,0.0,11.772955202568403,0.0,0.0,0.0 -11730,storm_outflow,0.04,2012-09-26,0.0,0.0,1.9679635229233088e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11731,baseflow,0.06824723668266724,2012-09-26,0.0,0.0,9.115060009598485e-06,0.0,0.0,0.0,0.0,0.0,11.766457146410339,0.0,0.0,0.0 -11732,catchment_outflow,0.2529227124874103,2012-09-26,0.0,0.0,1.7228766786647786e-05,0.0,0.0,0.0,0.0,0.0,11.809178740102642,0.0,0.0,0.0 -11733,reservoir_outflow,0.047,2012-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11734,gw1_gw2,0.0,2012-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11735,gw2_gw1,4.0995595591653006e-05,2012-09-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11736,urban_drainage,0.039999999999999994,2012-09-27,0.0,0.0,2.179723677534363e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11737,percolation,0.12017492131209741,2012-09-27,0.0,0.0,1.0205479249556731e-05,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 -11738,runoff,0.07318555205494444,2012-09-27,0.0,0.0,4.916594603300795e-06,0.0,0.0,0.0,0.0,0.0,11.678109606405265,0.0,0.0,0.0 -11739,storm_outflow,0.039999999999999994,2012-09-27,0.0,0.0,2.179723677534363e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11740,baseflow,0.06837705589424084,2012-09-27,0.0,0.0,9.117786057698383e-06,0.0,0.0,0.0,0.0,0.0,11.775535220914595,0.0,0.0,0.0 -11741,catchment_outflow,0.18156260794918527,2012-09-27,0.0,0.0,1.6214104338533538e-05,0.0,0.0,0.0,0.0,0.0,11.788598932966499,0.0,0.0,0.0 -11742,reservoir_outflow,0.0,2012-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11743,gw1_gw2,0.0,2012-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11744,gw2_gw1,4.072229162108699e-05,2012-09-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11745,urban_drainage,0.04,2012-09-28,0.0,0.0,2.4928573308926434e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11746,percolation,0.11777142288585546,2012-09-28,0.0,0.0,1.0001369664565598e-05,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 -11747,runoff,0.056651355363313394,2012-09-28,0.0,0.0,3.933275682640635e-06,0.0,0.0,0.0,0.0,0.0,11.666864347896446,0.0,0.0,0.0 -11748,storm_outflow,0.04,2012-09-28,0.0,0.0,2.4928573308926434e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11749,baseflow,0.06850054181171987,2012-09-28,0.0,0.0,9.11999501671555e-06,0.0,0.0,0.0,0.0,0.0,11.784376676868622,0.0,0.0,0.0 -11750,catchment_outflow,0.16515189717503326,2012-09-28,0.0,0.0,1.5546128030248827e-05,0.0,0.0,0.0,0.0,0.0,11.799460597235726,0.0,0.0,0.0 -11751,reservoir_outflow,0.0,2012-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11752,gw1_gw2,0.0,2012-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11753,gw2_gw1,4.0450809676961796e-05,2012-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11754,urban_drainage,0.04,2012-09-29,0.0,0.0,2.9421430639819075e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11755,percolation,0.11541599442813835,2012-09-29,0.0,0.0,9.801342271274286e-06,0.0,0.0,0.0,0.0,0.0,13.832552138651145,0.0,0.0,0.0 -11756,runoff,0.04492184087057717,2012-09-29,0.0,0.0,3.146620546112508e-06,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 -11757,storm_outflow,0.04,2012-09-29,0.0,0.0,2.9421430639819075e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11758,baseflow,0.06861783044326092,2012-09-29,0.0,0.0,9.121698384851948e-06,0.0,0.0,0.0,0.0,0.0,11.792989314653797,0.0,0.0,0.0 -11759,catchment_outflow,0.15353967131383808,2012-09-29,0.0,0.0,1.5210461994946363e-05,0.0,0.0,0.0,0.0,0.0,11.812208545072307,0.0,0.0,0.0 -11760,reservoir_outflow,0.0,2012-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11761,gw1_gw2,0.0,2012-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11762,gw2_gw1,4.0181137612727014e-05,2012-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11763,urban_drainage,0.04,2012-09-30,0.0,0.0,3.2739928861352904e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11764,percolation,0.11537908552969814,2012-09-30,0.0,0.0,9.768428590116361e-06,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 -11765,runoff,0.05147870578677401,2012-09-30,0.0,0.0,3.061006984448545e-06,0.0,0.0,0.0,0.0,0.0,11.801094538184765,0.0,0.0,0.0 -11766,storm_outflow,0.04,2012-09-30,0.0,0.0,3.2739928861352904e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11767,baseflow,0.06873473358097701,2012-09-30,0.0,0.0,9.123315210365107e-06,0.0,0.0,0.0,0.0,0.0,11.801388981146047,0.0,0.0,0.0 -11768,catchment_outflow,0.160213439367751,2012-09-30,0.0,0.0,1.545831508094894e-05,0.0,0.0,0.0,0.0,0.0,11.854148107305015,0.0,0.0,0.0 -11769,reservoir_outflow,0.0,2012-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11770,gw1_gw2,0.0,2012-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11771,gw2_gw1,3.991326336230117e-05,2012-09-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11772,urban_drainage,0.04,2012-10-01,0.0,0.0,4.036376680689362e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11773,percolation,0.11307150381910418,2012-10-01,0.0,0.0,9.573060018314034e-06,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 -11774,runoff,0.03878587237526712,2012-10-01,0.0,0.0,2.448805587558835e-06,0.0,0.0,0.0,0.0,0.0,11.778386761031697,0.0,0.0,0.0 -11775,storm_outflow,0.04,2012-10-01,0.0,0.0,4.036376680689362e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -11776,baseflow,0.06884557550657232,2012-10-01,0.0,0.0,9.124439572384981e-06,0.0,0.0,0.0,0.0,0.0,11.809572912361572,0.0,0.0,0.0 -11777,catchment_outflow,0.14763144788183946,2012-10-01,0.0,0.0,1.5609621840633177e-05,0.0,0.0,0.0,0.0,0.0,11.856520492758603,0.0,0.0,0.0 -11778,reservoir_outflow,0.0,2012-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11779,gw1_gw2,0.0,2012-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11780,gw2_gw1,3.964717493953884e-05,2012-10-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11781,urban_drainage,0.04,2012-10-02,0.0,0.0,3.1737032719587146e-06,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0 -11782,percolation,0.11789413560107742,2012-10-02,0.0,0.0,9.888189671041416e-06,0.0,0.0,0.0,0.0,0.0,13.690947055920006,0.0,0.0,0.0 -11783,runoff,0.07631555623025278,2012-10-02,0.0,0.0,3.6476806470259506e-06,0.0,0.0,0.0,0.0,0.0,11.98717328533459,0.0,0.0,0.0 -11784,storm_outflow,0.04,2012-10-02,0.0,0.0,3.1737032719587146e-06,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0 -11785,baseflow,0.06896819690680858,2012-10-02,0.0,0.0,9.126348947631622e-06,0.0,0.0,0.0,0.0,0.0,11.8176129579313,0.0,0.0,0.0 -11786,catchment_outflow,0.18528375313706136,2012-10-02,0.0,0.0,1.5947732866616285e-05,0.0,0.0,0.0,0.0,0.0,11.944252750289177,0.0,0.0,0.0 -11787,reservoir_outflow,0.015,2012-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11788,gw1_gw2,0.0,2012-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11789,gw2_gw1,3.9382860439829416e-05,2012-10-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11790,urban_drainage,0.04,2012-10-03,0.0,0.0,3.108529068908391e-06,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0 -11791,percolation,0.12034290761921819,2012-10-03,0.0,0.0,1.0032485935371838e-05,0.0,0.0,0.0,0.0,0.0,13.62056431542778,0.0,0.0,0.0 -11792,runoff,0.0740549966934381,2012-10-03,0.0,0.0,4.058344710124924e-06,0.0,0.0,0.0,0.0,0.0,11.919296553225566,0.0,0.0,0.0 -11793,storm_outflow,0.04,2012-10-03,0.0,0.0,3.108529068908391e-06,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0 -11794,baseflow,0.0690966336835896,2012-10-03,0.0,0.0,9.128614290100972e-06,0.0,0.0,0.0,0.0,0.0,11.82546328279845,0.0,0.0,0.0 -11795,catchment_outflow,0.1831516303770277,2012-10-03,0.0,0.0,1.6295488069134288e-05,0.0,0.0,0.0,0.0,0.0,11.916645435853775,0.0,0.0,0.0 -11796,reservoir_outflow,0.006999999999999999,2012-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11797,gw1_gw2,0.0,2012-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11798,gw2_gw1,3.912030803689959e-05,2012-10-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11799,urban_drainage,0.04,2012-10-04,0.0,0.0,8.701288625303764e-07,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0 -11800,percolation,0.13738866657237492,2012-10-04,0.0,0.0,1.113392372722557e-05,0.0,0.0,0.0,0.0,0.0,13.357728837564117,0.0,0.0,0.0 -11801,runoff,0.17884848707992698,2012-10-04,0.0,0.0,7.586967469970498e-06,0.0,0.0,0.0,0.0,0.0,11.819114550166622,0.0,0.0,0.0 -11802,storm_outflow,0.04,2012-10-04,0.0,0.0,8.701288625303764e-07,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0 -11803,baseflow,0.06926736376581157,2012-10-04,0.0,0.0,9.133627563693785e-06,0.0,0.0,0.0,0.0,0.0,11.833061230445043,0.0,0.0,0.0 -11804,catchment_outflow,0.28811585084573854,2012-10-04,0.0,0.0,1.759072389619466e-05,0.0,0.0,0.0,0.0,0.0,11.829787830459964,0.0,0.0,0.0 -11805,reservoir_outflow,0.059,2012-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11806,gw1_gw2,0.0,2012-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11807,gw2_gw1,3.8859505983346315e-05,2012-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11808,urban_drainage,0.04,2012-10-05,0.0,0.0,5.556036110429408e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -11809,percolation,0.1559962425535431,2012-10-05,0.0,0.0,1.2246166098815238e-05,0.0,0.0,0.0,0.0,0.0,13.11599784119183,0.0,0.0,0.0 -11810,runoff,0.2345905001031266,2012-10-05,0.0,0.0,1.0519310129756993e-05,0.0,0.0,0.0,0.0,0.0,11.686806632754475,0.0,0.0,0.0 -11811,storm_outflow,0.04,2012-10-05,0.0,0.0,5.556036110429408e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -11812,baseflow,0.06948418596278089,2012-10-05,0.0,0.0,9.141408910031586e-06,0.0,0.0,0.0,0.0,0.0,11.840261908122194,0.0,0.0,0.0 -11813,catchment_outflow,0.34407468606590746,2012-10-05,0.0,0.0,2.021632265083152e-05,0.0,0.0,0.0,0.0,0.0,11.723391620036466,0.0,0.0,0.0 -11814,reservoir_outflow,0.066,2012-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11815,gw1_gw2,0.0,2012-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11816,gw2_gw1,3.860044260992624e-05,2012-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11817,urban_drainage,0.04,2012-10-06,0.0,0.0,8.427500841938331e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -11818,percolation,0.15287631770247223,2012-10-06,0.0,0.0,1.2001242776838933e-05,0.0,0.0,0.0,0.0,0.0,13.115997841191826,0.0,0.0,0.0 -11819,runoff,0.1277275599067379,2012-10-06,0.0,0.0,8.415448103805596e-06,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 -11820,storm_outflow,0.04,2012-10-06,0.0,0.0,8.427500841938331e-07,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -11821,baseflow,0.06969266629213011,2012-10-06,0.0,0.0,9.148558494698606e-06,0.0,0.0,0.0,0.0,0.0,11.847257974644851,0.0,0.0,0.0 -11822,catchment_outflow,0.23742022619886802,2012-10-06,0.0,0.0,1.8406756682698033e-05,0.0,0.0,0.0,0.0,0.0,11.757619991586981,0.0,0.0,0.0 -11823,reservoir_outflow,0.0,2012-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11824,gw1_gw2,0.0,2012-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11825,gw2_gw1,3.834310632591098e-05,2012-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11826,urban_drainage,0.04,2012-10-07,0.0,0.0,1.2210899345214764e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -11827,percolation,0.1498187913484228,2012-10-07,0.0,0.0,1.1761217921302155e-05,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 -11828,runoff,0.10706223971026772,2012-10-07,0.0,0.0,6.732358483044477e-06,0.0,0.0,0.0,0.0,0.0,11.693440961014067,0.0,0.0,0.0 -11829,storm_outflow,0.04,2012-10-07,0.0,0.0,1.2210899345214764e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -11830,baseflow,0.06989298160477085,2012-10-07,0.0,0.0,9.155090143265114e-06,0.0,0.0,0.0,0.0,0.0,11.85405697895749,0.0,0.0,0.0 -11831,catchment_outflow,0.21695522131503858,2012-10-07,0.0,0.0,1.710853856083107e-05,0.0,0.0,0.0,0.0,0.0,11.752834841014824,0.0,0.0,0.0 -11832,reservoir_outflow,0.0,2012-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11833,gw1_gw2,0.0,2012-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11834,gw2_gw1,3.808748561695552e-05,2012-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11835,urban_drainage,0.04,2012-10-08,0.0,0.0,1.8204433856529626e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -11836,percolation,0.1486298933471781,2012-10-08,0.0,0.0,1.164280373462205e-05,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 -11837,runoff,0.094112591884738,2012-10-08,0.0,0.0,5.775254025588716e-06,0.0,0.0,0.0,0.0,0.0,11.62820071128321,0.0,0.0,0.0 -11838,storm_outflow,0.04,2012-10-08,0.0,0.0,1.8204433856529626e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -11839,baseflow,0.07008982388412686,2012-10-08,0.0,0.0,9.161309427243506e-06,0.0,0.0,0.0,0.0,0.0,11.860615421700048,0.0,0.0,0.0 -11840,catchment_outflow,0.2042024157688649,2012-10-08,0.0,0.0,1.6757006838485184e-05,0.0,0.0,0.0,0.0,0.0,11.728882165152363,0.0,0.0,0.0 -11841,reservoir_outflow,0.0,2012-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11842,gw1_gw2,0.0,2012-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11843,gw2_gw1,3.783356904616398e-05,2012-10-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11844,urban_drainage,0.02099999999999996,2012-10-09,0.0,0.0,2.865954470294285e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -11845,percolation,0.14565729548023454,2012-10-09,0.0,0.0,1.1409947659929611e-05,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 -11846,runoff,0.0702164515408465,2012-10-09,0.0,0.0,4.620203220470973e-06,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 -11847,storm_outflow,0.02099999999999996,2012-10-09,0.0,0.0,2.865954470294285e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -11848,baseflow,0.07027874256311713,2012-10-09,0.0,0.0,9.166931022825222e-06,0.0,0.0,0.0,0.0,0.0,11.866991436209144,0.0,0.0,0.0 -11849,catchment_outflow,0.1614951941039636,2012-10-09,0.0,0.0,1.665308871359048e-05,0.0,0.0,0.0,0.0,0.0,11.76494661648401,0.0,0.0,0.0 -11850,reservoir_outflow,0.0,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11851,gw1_gw2,0.0,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11852,gw2_gw1,3.758134525266854e-05,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11853,urban_drainage,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11854,percolation,0.14274414957062984,2012-10-10,0.0,0.0,1.118174870673102e-05,0.0,0.0,0.0,0.0,0.0,13.091170419404726,0.0,0.0,0.0 -11855,runoff,0.05713081668971579,2012-10-10,0.0,0.0,3.6961625763767785e-06,0.0,0.0,0.0,0.0,0.0,11.656229907188973,0.0,0.0,0.0 -11856,storm_outflow,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11857,baseflow,0.0704599060806359,2012-10-10,0.0,0.0,9.171968067034986e-06,0.0,0.0,0.0,0.0,0.0,11.87319157177555,0.0,0.0,0.0 -11858,catchment_outflow,0.1275907227703517,2012-10-10,0.0,0.0,1.2868130643411765e-05,0.0,0.0,0.0,0.0,0.0,11.776043465557034,0.0,0.0,0.0 -11859,reservoir_outflow,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11860,gw1_gw2,0.0,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11861,gw2_gw1,3.733080295145186e-05,2012-10-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11862,urban_drainage,0.04,2012-10-11,0.0,0.0,1.1267605633802815e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -11863,percolation,0.15217274797776997,2012-10-11,0.0,0.0,1.1746276068551305e-05,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 -11864,runoff,0.12898340171308165,2012-10-11,0.0,0.0,5.584137847617774e-06,0.0,0.0,0.0,0.0,0.0,10.991128070311518,0.0,0.0,0.0 -11865,storm_outflow,0.04,2012-10-11,0.0,0.0,1.1267605633802815e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -11866,baseflow,0.07066418818537873,2012-10-11,0.0,0.0,9.178403837038775e-06,0.0,0.0,0.0,0.0,0.0,11.878688977951288,0.0,0.0,0.0 -11867,catchment_outflow,0.23964758989846038,2012-10-11,0.0,0.0,1.588930224803683e-05,0.0,0.0,0.0,0.0,0.0,11.18807830131939,0.0,0.0,0.0 -11868,reservoir_outflow,0.035500000000000004,2012-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11869,gw1_gw2,0.0,2012-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11870,gw2_gw1,3.708193093157064e-05,2012-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11871,urban_drainage,0.015000000000000006,2012-10-12,0.0,0.0,1.8732394366197183e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -11872,percolation,0.1491292930182146,2012-10-12,0.0,0.0,1.1511350547180278e-05,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 -11873,runoff,0.07058559153522272,2012-10-12,0.0,0.0,4.46731027809422e-06,0.0,0.0,0.0,0.0,0.0,11.166590646002705,0.0,0.0,0.0 -11874,storm_outflow,0.015000000000000006,2012-10-12,0.0,0.0,1.8732394366197183e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -11875,baseflow,0.07086035094746083,2012-10-12,0.0,0.0,9.184236203814131e-06,0.0,0.0,0.0,0.0,0.0,11.88403259795654,0.0,0.0,0.0 -11876,catchment_outflow,0.15644594248268356,2012-10-12,0.0,0.0,1.552478591852807e-05,0.0,0.0,0.0,0.0,0.0,11.43752259308424,0.0,0.0,0.0 -11877,reservoir_outflow,0.0,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11878,gw1_gw2,0.0,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11879,gw2_gw1,3.683471805846495e-05,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11880,urban_drainage,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11881,percolation,0.14773481709550354,2012-10-13,0.0,0.0,1.1385286269312485e-05,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 -11882,runoff,0.06583143423093377,2012-10-13,0.0,0.0,3.921057332728082e-06,0.0,0.0,0.0,0.0,0.0,11.050609511342577,0.0,0.0,0.0 -11883,storm_outflow,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11884,baseflow,0.07105253711283094,2012-10-13,0.0,0.0,9.189738828977878e-06,0.0,0.0,0.0,0.0,0.0,11.88914553429037,0.0,0.0,0.0 -11885,catchment_outflow,0.1368839713437647,2012-10-13,0.0,0.0,1.311079616170596e-05,0.0,0.0,0.0,0.0,0.0,11.485869471336844,0.0,0.0,0.0 -11886,reservoir_outflow,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11887,gw1_gw2,0.0,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11888,gw2_gw1,3.658915327164891e-05,2012-10-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11889,urban_drainage,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11890,percolation,0.14478012075359345,2012-10-14,0.0,0.0,1.1157580543926236e-05,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 -11891,runoff,0.04957199748657957,2012-10-14,0.0,0.0,3.1368458661824656e-06,0.0,0.0,0.0,0.0,0.0,11.092209081398902,0.0,0.0,0.0 -11892,storm_outflow,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11893,baseflow,0.07123685607193285,2012-10-14,0.0,0.0,9.194658433265247e-06,0.0,0.0,0.0,0.0,0.0,11.894117268689138,0.0,0.0,0.0 -11894,catchment_outflow,0.12080885355851242,2012-10-14,0.0,0.0,1.2331504299447712e-05,0.0,0.0,0.0,0.0,0.0,11.565066959263216,0.0,0.0,0.0 -11895,reservoir_outflow,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11896,gw1_gw2,0.0,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11897,gw2_gw1,3.6345225582934404e-05,2012-10-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11898,urban_drainage,0.018,2012-10-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 -11899,percolation,0.1467148153671328,2012-10-15,0.0,0.0,1.1253450191906315e-05,0.0,0.0,0.0,0.0,0.0,12.778851645365535,0.0,0.0,0.0 -11900,runoff,0.07161523666461792,2012-10-15,0.0,0.0,3.5728808891413196e-06,0.0,0.0,0.0,0.0,0.0,10.649991446334871,0.0,0.0,0.0 -11901,storm_outflow,0.018,2012-10-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 -11902,baseflow,0.07142555097017085,2012-10-15,0.0,0.0,9.199805412661851e-06,0.0,0.0,0.0,0.0,0.0,11.898660588235153,0.0,0.0,0.0 -11903,catchment_outflow,0.16104078763478877,2012-10-15,0.0,0.0,1.5772686301803173e-05,0.0,0.0,0.0,0.0,0.0,11.135696257857745,0.0,0.0,0.0 -11904,reservoir_outflow,0.009,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11905,gw1_gw2,0.0,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11906,gw2_gw1,3.6102924079095545e-05,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11907,urban_drainage,0.04,2012-10-16,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 -11908,percolation,0.1551272755506998,2012-10-16,0.0,0.0,1.175003531704627e-05,0.0,0.0,0.0,0.0,0.0,12.578868314585371,0.0,0.0,0.0 -11909,runoff,0.12136916313655355,2012-10-16,0.0,0.0,5.263818474573327e-06,0.0,0.0,0.0,0.0,0.0,10.28344023299525,0.0,0.0,0.0 -11910,storm_outflow,0.04,2012-10-16,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 -11911,baseflow,0.07163480528162217,2012-10-16,0.0,0.0,9.206180987422812e-06,0.0,0.0,0.0,0.0,0.0,11.902343112776903,0.0,0.0,0.0 -11912,catchment_outflow,0.23300396841817572,2012-10-16,0.0,0.0,1.5033379743686281e-05,0.0,0.0,0.0,0.0,0.0,10.715330659267302,0.0,0.0,0.0 -11913,reservoir_outflow,0.035500000000000004,2012-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11914,gw1_gw2,0.0,2012-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11915,gw2_gw1,3.586223791849363e-05,2012-10-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11916,urban_drainage,0.04,2012-10-17,0.0,0.0,5.57910570217421e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -11917,percolation,0.16355076157526124,2012-10-17,0.0,0.0,1.2220825696782074e-05,0.0,0.0,0.0,0.0,0.0,12.393025533385632,0.0,0.0,0.0 -11918,runoff,0.14410710700624063,2012-10-17,0.0,0.0,6.563691733247761e-06,0.0,0.0,0.0,0.0,0.0,10.24567392919247,0.0,0.0,0.0 -11919,storm_outflow,0.04,2012-10-17,0.0,0.0,5.57910570217421e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -11920,baseflow,0.07186459517235627,2012-10-17,0.0,0.0,9.21371759919621e-06,0.0,0.0,0.0,0.0,0.0,11.905134872870649,0.0,0.0,0.0 -11921,catchment_outflow,0.2559717021785969,2012-10-17,0.0,0.0,1.6335319902661393e-05,0.0,0.0,0.0,0.0,0.0,10.687203167920096,0.0,0.0,0.0 -11922,reservoir_outflow,0.036,2012-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11923,gw1_gw2,0.0,2012-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11924,gw2_gw1,3.562315633267588e-05,2012-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11925,urban_drainage,0.04,2012-10-18,0.0,0.0,1.6336601287760333e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -11926,percolation,0.16027974634375602,2012-10-18,0.0,0.0,1.1976409182846433e-05,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -11927,runoff,0.08425561441306267,2012-10-18,0.0,0.0,5.25095338659821e-06,0.0,0.0,0.0,0.0,0.0,10.277281664961066,0.0,0.0,0.0 -11928,storm_outflow,0.04,2012-10-18,0.0,0.0,1.6336601287760333e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -11929,baseflow,0.07208563305028477,2012-10-18,0.0,0.0,9.220624328155334e-06,0.0,0.0,0.0,0.0,0.0,11.907846890092454,0.0,0.0,0.0 -11930,catchment_outflow,0.19634124746334747,2012-10-18,0.0,0.0,1.6105237843529576e-05,0.0,0.0,0.0,0.0,0.0,10.837726911954494,0.0,0.0,0.0 -11931,reservoir_outflow,0.0,2012-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11932,gw1_gw2,0.0,2012-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11933,gw2_gw1,3.538566862371084e-05,2012-10-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11934,urban_drainage,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11935,percolation,0.1570741514168809,2012-10-19,0.0,0.0,1.1736880999189504e-05,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -11936,runoff,0.07064536755290511,2012-10-19,0.0,0.0,4.200762709278568e-06,0.0,0.0,0.0,0.0,0.0,10.301398012898353,0.0,0.0,0.0 -11937,storm_outflow,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11938,baseflow,0.07229810434620126,2012-10-19,0.0,0.0,9.22691496983292e-06,0.0,0.0,0.0,0.0,0.0,11.91048212598038,0.0,0.0,0.0 -11939,catchment_outflow,0.1429434718991064,2012-10-19,0.0,0.0,1.3427677679111488e-05,0.0,0.0,0.0,0.0,0.0,11.11524232186778,0.0,0.0,0.0 -11940,reservoir_outflow,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11941,gw1_gw2,0.0,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11942,gw2_gw1,3.5149764165964825e-05,2012-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11943,urban_drainage,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11944,percolation,0.1539326683885433,2012-10-20,0.0,0.0,1.1502143379205712e-05,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -11945,runoff,0.0535056715797564,2012-10-20,0.0,0.0,3.3606101674228543e-06,0.0,0.0,0.0,0.0,0.0,10.280343441560388,0.0,0.0,0.0 -11946,storm_outflow,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11947,baseflow,0.07250219075630711,2012-10-20,0.0,0.0,9.232603040856353e-06,0.0,0.0,0.0,0.0,0.0,11.91304340011363,0.0,0.0,0.0 -11948,catchment_outflow,0.1260078623360635,2012-10-20,0.0,0.0,1.2593213208279207e-05,0.0,0.0,0.0,0.0,0.0,11.219763582877736,0.0,0.0,0.0 -11949,reservoir_outflow,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11950,gw1_gw2,0.0,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11951,gw2_gw1,3.491543240485839e-05,2012-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11952,urban_drainage,0.002000000000000001,2012-10-21,0.0,0.0,3.2450490193164044e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -11953,percolation,0.15343759236478186,2012-10-21,0.0,0.0,1.1437348841317485e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -11954,runoff,0.060138247534481215,2012-10-21,0.0,0.0,3.239315899591237e-06,0.0,0.0,0.0,0.0,0.0,10.50009039116509,0.0,0.0,0.0 -11955,storm_outflow,0.002000000000000001,2012-10-21,0.0,0.0,3.2450490193164044e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -11956,baseflow,0.07270452926032829,2012-10-21,0.0,0.0,9.238114905357504e-06,0.0,0.0,0.0,0.0,0.0,11.915435609786748,0.0,0.0,0.0 -11957,catchment_outflow,0.1348427767948095,2012-10-21,0.0,0.0,1.5722479824265145e-05,0.0,0.0,0.0,0.0,0.0,11.274444904475834,0.0,0.0,0.0 -11958,reservoir_outflow,0.0010000000000000005,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11959,gw1_gw2,0.0,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11960,gw2_gw1,3.46826628554453e-05,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11961,urban_drainage,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11962,percolation,0.15036884051748622,2012-10-22,0.0,0.0,1.1208601864491136e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -11963,runoff,0.04324854221357427,2012-10-22,0.0,0.0,2.591452719672989e-06,0.0,0.0,0.0,0.0,0.0,10.429981846726673,0.0,0.0,0.0 -11964,storm_outflow,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11965,baseflow,0.0728986900384712,2012-10-22,0.0,0.0,9.243041122755338e-06,0.0,0.0,0.0,0.0,0.0,11.917761395120285,0.0,0.0,0.0 -11966,catchment_outflow,0.11614723225204547,2012-10-22,0.0,0.0,1.1834493842428328e-05,0.0,0.0,0.0,0.0,0.0,11.363772330072544,0.0,0.0,0.0 -11967,reservoir_outflow,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11968,gw1_gw2,0.0,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11969,gw2_gw1,3.445144510330067e-05,2012-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11970,urban_drainage,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11971,percolation,0.1473614637071365,2012-10-23,0.0,0.0,1.0984429827201311e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -11972,runoff,0.033074538709649305,2012-10-23,0.0,0.0,2.0731621757383912e-06,0.0,0.0,0.0,0.0,0.0,10.382533847302307,0.0,0.0,0.0 -11973,storm_outflow,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11974,baseflow,0.07308484697264285,2012-10-23,0.0,0.0,9.247394594516455e-06,0.0,0.0,0.0,0.0,0.0,11.920023135399736,0.0,0.0,0.0 -11975,catchment_outflow,0.10615938568229216,2012-10-23,0.0,0.0,1.1320556770254846e-05,0.0,0.0,0.0,0.0,0.0,11.44100991722762,0.0,0.0,0.0 -11976,reservoir_outflow,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11977,gw1_gw2,0.0,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11978,gw2_gw1,3.422176880238936e-05,2012-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11979,urban_drainage,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11980,percolation,0.14441423443299375,2012-10-24,0.0,0.0,1.0764741230657286e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -11981,runoff,0.02687314304125159,2012-10-24,0.0,0.0,1.6585297405907138e-06,0.0,0.0,0.0,0.0,0.0,10.389757289614696,0.0,0.0,0.0 -11982,storm_outflow,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11983,baseflow,0.07326317044129373,2012-10-24,0.0,0.0,9.251187961106808e-06,0.0,0.0,0.0,0.0,0.0,11.92222310017976,0.0,0.0,0.0 -11984,catchment_outflow,0.10013631348254531,2012-10-24,0.0,0.0,1.0909717701697521e-05,0.0,0.0,0.0,0.0,0.0,11.510961975210137,0.0,0.0,0.0 -11985,reservoir_outflow,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11986,gw1_gw2,0.0,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11987,gw2_gw1,3.399362367684233e-05,2012-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11988,urban_drainage,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11989,percolation,0.14152594974433388,2012-10-25,0.0,0.0,1.054944640604414e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -11990,runoff,0.021588132767792062,2012-10-25,0.0,0.0,1.3268237924725705e-06,0.0,0.0,0.0,0.0,0.0,10.376587038230165,0.0,0.0,0.0 -11991,storm_outflow,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11992,baseflow,0.07343382738955133,2012-10-25,0.0,0.0,9.25443360721915e-06,0.0,0.0,0.0,0.0,0.0,11.924363455545617,0.0,0.0,0.0 -11993,catchment_outflow,0.09502196015734339,2012-10-25,0.0,0.0,1.0581257399691721e-05,0.0,0.0,0.0,0.0,0.0,11.5727226060353,0.0,0.0,0.0 -11994,reservoir_outflow,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11995,gw1_gw2,0.0,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11996,gw2_gw1,3.3766999518825e-05,2012-10-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11997,urban_drainage,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11998,percolation,0.1386954307494472,2012-10-26,0.0,0.0,1.0338457477923257e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -11999,runoff,0.016735621569344414,2012-10-26,0.0,0.0,1.0614590339780567e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -12000,storm_outflow,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12001,baseflow,0.07359698139795107,2012-10-26,0.0,0.0,9.25714366689591e-06,0.0,0.0,0.0,0.0,0.0,11.926446269950146,0.0,0.0,0.0 -12002,catchment_outflow,0.09033260296729548,2012-10-26,0.0,0.0,1.0318602700873967e-05,0.0,0.0,0.0,0.0,0.0,11.63729528677356,0.0,0.0,0.0 -12003,reservoir_outflow,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12004,gw1_gw2,0.0,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12005,gw2_gw1,3.3541886188892535e-05,2012-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12006,urban_drainage,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12007,percolation,0.13592152213445827,2012-10-27,0.0,0.0,1.013168832836479e-05,0.0,0.0,0.0,0.0,0.0,12.366451135455684,0.0,0.0,0.0 -12008,runoff,0.01491185834398355,2012-10-27,0.0,0.0,8.491672271824453e-07,0.0,0.0,0.0,0.0,0.0,10.29089909495573,0.0,0.0,0.0 -12009,storm_outflow,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12010,baseflow,0.07375279274979234,2012-10-27,0.0,0.0,9.259330028549581e-06,0.0,0.0,0.0,0.0,0.0,11.928473519659487,0.0,0.0,0.0 -12011,catchment_outflow,0.08866465109377589,2012-10-27,0.0,0.0,1.0108497255732027e-05,0.0,0.0,0.0,0.0,0.0,11.6530618697215,0.0,0.0,0.0 -12012,reservoir_outflow,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12013,gw1_gw2,0.0,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12014,gw2_gw1,3.331827361421347e-05,2012-10-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12015,urban_drainage,0.011,2012-10-28,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 -12016,percolation,0.13524444006482286,2012-10-28,0.0,0.0,1.0070799350524274e-05,0.0,0.0,0.0,0.0,0.0,12.326859058443523,0.0,0.0,0.0 -12017,runoff,0.024677918251590342,2012-10-28,0.0,0.0,1.1518164108352219e-06,0.0,0.0,0.0,0.0,0.0,9.824332316324453,0.0,0.0,0.0 -12018,storm_outflow,0.011,2012-10-28,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 -12019,baseflow,0.07390652186807992,2012-10-28,0.0,0.0,9.261358701854518e-06,0.0,0.0,0.0,0.0,0.0,11.930296072925454,0.0,0.0,0.0 -12020,catchment_outflow,0.10958444011967025,2012-10-28,0.0,0.0,1.741317511268974e-05,0.0,0.0,0.0,0.0,0.0,11.171103209408164,0.0,0.0,0.0 -12021,reservoir_outflow,0.0055,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12022,gw1_gw2,0.0,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12023,gw2_gw1,3.309615179016845e-05,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12024,urban_drainage,0.0009999999999999983,2012-10-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 -12025,percolation,0.13413695393856495,2012-10-29,0.0,0.0,9.980586008470977e-06,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 -12026,runoff,0.02494183115524478,2012-10-29,0.0,0.0,1.292128611858813e-06,0.0,0.0,0.0,0.0,0.0,9.590443387522173,0.0,0.0,0.0 -12027,storm_outflow,0.0009999999999999983,2012-10-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 -12028,baseflow,0.07405709794825613,2012-10-29,0.0,0.0,9.263156770121059e-06,0.0,0.0,0.0,0.0,0.0,11.931927564347495,0.0,0.0,0.0 -12029,catchment_outflow,0.0999989291035009,2012-10-29,0.0,0.0,1.1555285381979872e-05,0.0,0.0,0.0,0.0,0.0,11.314092642420928,0.0,0.0,0.0 -12030,reservoir_outflow,0.0004999999999999991,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12031,gw1_gw2,0.0,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12032,gw2_gw1,3.287551077804096e-05,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12033,urban_drainage,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12034,percolation,0.13145421485979364,2012-10-30,0.0,0.0,9.780974288301559e-06,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 -12035,runoff,0.015469527590754284,2012-10-30,0.0,0.0,1.0337028894870502e-06,0.0,0.0,0.0,0.0,0.0,9.892022276811032,0.0,0.0,0.0 -12036,storm_outflow,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12037,baseflow,0.07420059074053498,2012-10-30,0.0,0.0,9.26445131391651e-06,0.0,0.0,0.0,0.0,0.0,11.933516108082884,0.0,0.0,0.0 -12038,catchment_outflow,0.08967011833128927,2012-10-30,0.0,0.0,1.0298154203403561e-05,0.0,0.0,0.0,0.0,0.0,11.581325816189459,0.0,0.0,0.0 -12039,reservoir_outflow,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12040,gw1_gw2,0.0,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12041,gw2_gw1,3.265634070626078e-05,2012-10-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12042,urban_drainage,0.04,2012-10-31,0.0,0.0,6.666666666666667e-07,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0 -12043,percolation,0.1372090033735932,2012-10-31,0.0,0.0,1.0137819256388645e-05,0.0,0.0,0.0,0.0,0.0,12.057217799977936,0.0,0.0,0.0 -12044,runoff,0.06973896235836176,2012-10-31,0.0,0.0,2.66851049110003e-06,0.0,0.0,0.0,0.0,0.0,8.47974896053436,0.0,0.0,0.0 -12045,storm_outflow,0.04,2012-10-31,0.0,0.0,6.666666666666667e-07,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0 -12046,baseflow,0.07435811177211762,2012-10-31,0.0,0.0,9.26663473377269e-06,0.0,0.0,0.0,0.0,0.0,11.93408675819274,0.0,0.0,0.0 -12047,catchment_outflow,0.18409707413047938,2012-10-31,0.0,0.0,1.2601811891539387e-05,0.0,0.0,0.0,0.0,0.0,9.74765655079906,0.0,0.0,0.0 -12048,reservoir_outflow,0.06,2012-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12049,gw1_gw2,0.0,2012-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12050,gw2_gw1,3.243863176827233e-05,2012-10-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12051,urban_drainage,0.04,2012-11-01,0.0,0.0,1.0256410256410259e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 -12052,percolation,0.13837992728970896,2012-11-01,0.0,0.0,1.0192342933504871e-05,0.0,0.0,0.0,0.0,0.0,11.948686352301085,0.0,0.0,0.0 -12053,runoff,0.059045045392652505,2012-11-01,0.0,0.0,2.9924086003600193e-06,0.0,0.0,0.0,0.0,0.0,8.443479980128728,0.0,0.0,0.0 -12054,storm_outflow,0.04,2012-11-01,0.0,0.0,1.0256410256410259e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 -12055,baseflow,0.0745181663109116,2012-11-01,0.0,0.0,9.268949004272022e-06,0.0,0.0,0.0,0.0,0.0,11.934154536657749,0.0,0.0,0.0 -12056,catchment_outflow,0.1735632117035641,2012-11-01,0.0,0.0,1.3286998630273067e-05,0.0,0.0,0.0,0.0,0.0,9.806343268680978,0.0,0.0,0.0 -12057,reservoir_outflow,0.0055,2012-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12058,gw1_gw2,0.0,2012-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12059,gw2_gw1,3.222237422306762e-05,2012-11-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12060,urban_drainage,0.04,2012-11-02,0.0,0.0,2.1978021978021984e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 -12061,percolation,0.1369707004474208,2012-11-02,0.0,0.0,1.00785851612162e-05,0.0,0.0,0.0,0.0,0.0,11.909046559621892,0.0,0.0,0.0 -12062,runoff,0.045540392928040005,2012-11-02,0.0,0.0,2.6942238348927713e-06,0.0,0.0,0.0,0.0,0.0,8.48020346703862,0.0,0.0,0.0 -12063,storm_outflow,0.04,2012-11-02,0.0,0.0,2.1978021978021984e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 -12064,baseflow,0.07467429764625287,2012-11-02,0.0,0.0,9.270973094664381e-06,0.0,0.0,0.0,0.0,0.0,11.934039401420128,0.0,0.0,0.0 -12065,catchment_outflow,0.16021469057429288,2012-11-02,0.0,0.0,1.416299912735935e-05,0.0,0.0,0.0,0.0,0.0,9.933678767009708,0.0,0.0,0.0 -12066,reservoir_outflow,0.0,2012-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12067,gw1_gw2,0.0,2012-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12068,gw2_gw1,3.200755839518621e-05,2012-11-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12069,urban_drainage,0.04,2012-11-03,0.0,0.0,3.894351262772312e-07,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0 -12070,percolation,0.1499558918800576,2012-11-03,0.0,0.0,1.0857653245805745e-05,0.0,0.0,0.0,0.0,0.0,11.459268856510318,0.0,0.0,0.0 -12071,runoff,0.14020874679255949,2012-11-03,0.0,0.0,5.424178360627114e-06,0.0,0.0,0.0,0.0,0.0,7.57420231478438,0.0,0.0,0.0 -12072,storm_outflow,0.04,2012-11-03,0.0,0.0,3.894351262772312e-07,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0 -12073,baseflow,0.07486250163183737,2012-11-03,0.0,0.0,9.274939795042234e-06,0.0,0.0,0.0,0.0,0.0,11.931661888013934,0.0,0.0,0.0 -12074,catchment_outflow,0.2550712484243969,2012-11-03,0.0,0.0,1.508855328194658e-05,0.0,0.0,0.0,0.0,0.0,8.751442749136109,0.0,0.0,0.0 -12075,reservoir_outflow,0.056,2012-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12076,gw1_gw2,0.0,2012-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12077,gw2_gw1,3.179417467258361e-05,2012-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12078,urban_drainage,0.04,2012-11-04,0.0,0.0,4.1962316673484824e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -12079,percolation,0.1606947093103479,2012-11-04,0.0,0.0,1.1457110720790874e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -12080,runoff,0.1620241532906095,2012-11-04,0.0,0.0,7.061377821505831e-06,0.0,0.0,0.0,0.0,0.0,7.3935032359873345,0.0,0.0,0.0 -12081,storm_outflow,0.04,2012-11-04,0.0,0.0,4.1962316673484824e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -12082,baseflow,0.07507708215103365,2012-11-04,0.0,0.0,9.280395222356606e-06,0.0,0.0,0.0,0.0,0.0,11.927249370948855,0.0,0.0,0.0 -12083,catchment_outflow,0.27710123544164317,2012-11-04,0.0,0.0,1.6761396210597284e-05,0.0,0.0,0.0,0.0,0.0,8.527066194036452,0.0,0.0,0.0 -12084,reservoir_outflow,0.045,2012-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12085,gw1_gw2,0.0,2012-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12086,gw2_gw1,3.158221350805235e-05,2012-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12087,urban_drainage,0.04,2012-11-05,0.0,0.0,8.849353141838578e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -12088,percolation,0.15748081512414094,2012-11-05,0.0,0.0,1.1227968506375055e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -12089,runoff,0.09105669731910812,2012-11-05,0.0,0.0,5.649102257204663e-06,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -12090,storm_outflow,0.04,2012-11-05,0.0,0.0,8.849353141838578e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -12091,baseflow,0.07528309148346643,2012-11-05,0.0,0.0,9.285264155566653e-06,0.0,0.0,0.0,0.0,0.0,11.922960013209414,0.0,0.0,0.0 -12092,catchment_outflow,0.20633978880257456,2012-11-05,0.0,0.0,1.5819301726955174e-05,0.0,0.0,0.0,0.0,0.0,9.070568979036674,0.0,0.0,0.0 -12093,reservoir_outflow,0.0,2012-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12094,gw1_gw2,0.0,2012-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12095,gw2_gw1,3.13716654178009e-05,2012-11-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12096,urban_drainage,0.04,2012-11-06,0.0,0.0,2.056082129952488e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -12097,percolation,0.15433119882165813,2012-11-06,0.0,0.0,1.1003409136247554e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -12098,runoff,0.07412854775684957,2012-11-06,0.0,0.0,4.519281805763731e-06,0.0,0.0,0.0,0.0,0.0,7.706118630967804,0.0,0.0,0.0 -12099,storm_outflow,0.04,2012-11-06,0.0,0.0,2.056082129952488e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -12100,baseflow,0.07548071175181191,2012-11-06,0.0,0.0,9.289559518018355e-06,0.0,0.0,0.0,0.0,0.0,11.918789373753716,0.0,0.0,0.0 -12101,catchment_outflow,0.18960925950866148,2012-11-06,0.0,0.0,1.5864923453734575e-05,0.0,0.0,0.0,0.0,0.0,9.178631292351827,0.0,0.0,0.0 -12102,reservoir_outflow,0.0,2012-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12103,gw1_gw2,0.0,2012-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12104,gw2_gw1,3.116252098145367e-05,2012-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12105,urban_drainage,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12106,percolation,0.15124457484522497,2012-11-07,0.0,0.0,1.0783340953522602e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -12107,runoff,0.058690494842079326,2012-11-07,0.0,0.0,3.615425444610984e-06,0.0,0.0,0.0,0.0,0.0,7.728112941620628,0.0,0.0,0.0 -12108,storm_outflow,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12109,baseflow,0.07567012140954545,2012-11-07,0.0,0.0,9.293293971607117e-06,0.0,0.0,0.0,0.0,0.0,11.914733217827319,0.0,0.0,0.0 -12110,catchment_outflow,0.13436061625162476,2012-11-07,0.0,0.0,1.2908719416218102e-05,0.0,0.0,0.0,0.0,0.0,10.08596208993751,0.0,0.0,0.0 -12111,reservoir_outflow,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12112,gw1_gw2,0.0,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12113,gw2_gw1,3.095477084134046e-05,2012-11-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12114,urban_drainage,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12115,percolation,0.14821968334832047,2012-11-08,0.0,0.0,1.0567674134452151e-05,0.0,0.0,0.0,0.0,0.0,11.107045053746091,0.0,0.0,0.0 -12116,runoff,0.046621029027383354,2012-11-08,0.0,0.0,2.892340355688788e-06,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -12117,storm_outflow,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12118,baseflow,0.07585149531439238,2012-11-08,0.0,0.0,9.296479922014229e-06,0.0,0.0,0.0,0.0,0.0,11.910787505108404,0.0,0.0,0.0 -12119,catchment_outflow,0.12247252434177573,2012-11-08,0.0,0.0,1.2188820277703017e-05,0.0,0.0,0.0,0.0,0.0,10.322159671433532,0.0,0.0,0.0 -12120,reservoir_outflow,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12121,gw1_gw2,0.0,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12122,gw2_gw1,3.0748405702496484e-05,2012-11-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12123,urban_drainage,0.0009999999999999983,2012-11-09,0.0,0.0,3.3598143727416837e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 -12124,percolation,0.14744716071986844,2012-11-09,0.0,0.0,1.049573135986352e-05,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 -12125,runoff,0.052293835590689244,2012-11-09,0.0,0.0,2.7785746448857325e-06,0.0,0.0,0.0,0.0,0.0,7.620083484578406,0.0,0.0,0.0 -12126,storm_outflow,0.0009999999999999983,2012-11-09,0.0,0.0,3.3598143727416837e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 -12127,baseflow,0.07603048447790607,2012-11-09,0.0,0.0,9.299478050608853e-06,0.0,0.0,0.0,0.0,0.0,11.906614811915473,0.0,0.0,0.0 -12128,catchment_outflow,0.12932432006859532,2012-11-09,0.0,0.0,1.543786706823627e-05,0.0,0.0,0.0,0.0,0.0,10.138263900217515,0.0,0.0,0.0 -12129,reservoir_outflow,0.0004999999999999991,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12130,gw1_gw2,0.0,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12131,gw2_gw1,3.0543416330885974e-05,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12132,urban_drainage,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12133,percolation,0.14449821750547107,2012-11-10,0.0,0.0,1.028581673266625e-05,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 -12134,runoff,0.0360346826054515,2012-11-10,0.0,0.0,2.222859715908586e-06,0.0,0.0,0.0,0.0,0.0,7.664258301294077,0.0,0.0,0.0 -12135,storm_outflow,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12136,baseflow,0.07620165381047497,2012-11-10,0.0,0.0,9.301943897313996e-06,0.0,0.0,0.0,0.0,0.0,11.902554539401132,0.0,0.0,0.0 -12137,catchment_outflow,0.11223633641592648,2012-11-10,0.0,0.0,1.1524803613222582e-05,0.0,0.0,0.0,0.0,0.0,10.541803960710693,0.0,0.0,0.0 -12138,reservoir_outflow,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12139,gw1_gw2,0.0,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12140,gw2_gw1,3.0339793555178575e-05,2012-11-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12141,urban_drainage,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12142,percolation,0.14160825315536166,2012-11-11,0.0,0.0,1.0080100398012925e-05,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 -12143,runoff,0.029503390359475617,2012-11-11,0.0,0.0,1.778287772726869e-06,0.0,0.0,0.0,0.0,0.0,7.684387664485412,0.0,0.0,0.0 -12144,storm_outflow,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12145,baseflow,0.07636517030883719,2012-11-11,0.0,0.0,9.303889288565744e-06,0.0,0.0,0.0,0.0,0.0,11.89860281547466,0.0,0.0,0.0 -12146,catchment_outflow,0.10586856066831281,2012-11-11,0.0,0.0,1.1082177061292613e-05,0.0,0.0,0.0,0.0,0.0,10.724187730641395,0.0,0.0,0.0 -12147,reservoir_outflow,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12148,gw1_gw2,0.0,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12149,gw2_gw1,3.0137528264617688e-05,2012-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12150,urban_drainage,0.013999999999999999,2012-11-12,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -12151,percolation,0.14157296334780384,2012-11-12,0.0,0.0,1.0060970146845501e-05,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -12152,runoff,0.0419732816350715,2012-11-12,0.0,0.0,2.030869407490943e-06,0.0,0.0,0.0,0.0,0.0,8.125541475371083,0.0,0.0,0.0 -12153,storm_outflow,0.013999999999999999,2012-11-12,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -12154,baseflow,0.07652818979143461,2012-11-12,0.0,0.0,9.305781990711442e-06,0.0,0.0,0.0,0.0,0.0,11.894447951610742,0.0,0.0,0.0 -12155,catchment_outflow,0.1325014714265061,2012-11-12,0.0,0.0,1.4336651398202386e-05,0.0,0.0,0.0,0.0,0.0,10.376233533761187,0.0,0.0,0.0 -12156,reservoir_outflow,0.006999999999999999,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12157,gw1_gw2,0.0,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12158,gw2_gw1,2.993661140973103e-05,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12159,urban_drainage,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12160,percolation,0.13874150408084776,2012-11-13,0.0,0.0,9.859750743908592e-06,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -12161,runoff,0.026035687305594444,2012-11-13,0.0,0.0,1.6246955259927544e-06,0.0,0.0,0.0,0.0,0.0,7.920785538130448,0.0,0.0,0.0 -12162,storm_outflow,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12163,baseflow,0.07668372307715815,2012-11-13,0.0,0.0,9.307166912594436e-06,0.0,0.0,0.0,0.0,0.0,11.89040323672826,0.0,0.0,0.0 -12164,catchment_outflow,0.10271941038275259,2012-11-13,0.0,0.0,1.0931862438587191e-05,0.0,0.0,0.0,0.0,0.0,10.884247489354543,0.0,0.0,0.0 -12165,reservoir_outflow,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12166,gw1_gw2,0.0,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12167,gw2_gw1,2.9737034000554274e-05,2012-11-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12168,urban_drainage,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12169,percolation,0.1359666739992308,2012-11-14,0.0,0.0,9.66255572903042e-06,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -12170,runoff,0.020848364273045053,2012-11-14,0.0,0.0,1.2997564207942034e-06,0.0,0.0,0.0,0.0,0.0,7.919195413188496,0.0,0.0,0.0 -12171,storm_outflow,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12172,baseflow,0.07683193045446333,2012-11-14,0.0,0.0,9.308055384635525e-06,0.0,0.0,0.0,0.0,0.0,11.886464956742444,0.0,0.0,0.0 -12173,catchment_outflow,0.09768029472750839,2012-11-14,0.0,0.0,1.0607811805429728e-05,0.0,0.0,0.0,0.0,0.0,11.03971197709488,0.0,0.0,0.0 -12174,reservoir_outflow,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12175,gw1_gw2,0.0,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12176,gw2_gw1,2.953878710698632e-05,2012-11-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12177,urban_drainage,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12178,percolation,0.1332473405192462,2012-11-15,0.0,0.0,9.469304614449813e-06,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -12179,runoff,0.01646575833455555,2012-11-15,0.0,0.0,1.0398051366353628e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 -12180,storm_outflow,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12181,baseflow,0.07697296897962529,2012-11-15,0.0,0.0,9.30845850771006e-06,0.0,0.0,0.0,0.0,0.0,11.882629558011194,0.0,0.0,0.0 -12182,catchment_outflow,0.09343872731418083,2012-11-15,0.0,0.0,1.0348263644345423e-05,0.0,0.0,0.0,0.0,0.0,11.182943475837963,0.0,0.0,0.0 -12183,reservoir_outflow,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12184,gw1_gw2,0.0,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12185,gw2_gw1,2.9341861859855103e-05,2012-11-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12186,urban_drainage,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12187,percolation,0.13131075069770068,2012-11-16,0.0,0.0,9.330013195754609e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -12188,runoff,0.018156101854440505,2012-11-16,0.0,0.0,9.988263546209395e-07,0.0,0.0,0.0,0.0,0.0,8.025814329109314,0.0,0.0,0.0 -12189,storm_outflow,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12190,baseflow,0.07710881343392048,2012-11-16,0.0,0.0,9.308512394430172e-06,0.0,0.0,0.0,0.0,0.0,11.878815108957399,0.0,0.0,0.0 -12191,catchment_outflow,0.09526491528836098,2012-11-16,0.0,0.0,1.0307338749051111e-05,0.0,0.0,0.0,0.0,0.0,11.144489419458704,0.0,0.0,0.0 -12192,reservoir_outflow,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12193,gw1_gw2,0.0,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12194,gw2_gw1,2.9146249447187246e-05,2012-11-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12195,urban_drainage,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12196,percolation,0.12868453568374666,2012-11-17,0.0,0.0,9.143412931839516e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -12197,runoff,0.012480370637687352,2012-11-17,0.0,0.0,7.990610836967516e-07,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -12198,storm_outflow,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12199,baseflow,0.07723775273954504,2012-11-17,0.0,0.0,9.308099645773694e-06,0.0,0.0,0.0,0.0,0.0,11.87509907727678,0.0,0.0,0.0 -12200,catchment_outflow,0.0897181233772324,2012-11-17,0.0,0.0,1.0107160729470447e-05,0.0,0.0,0.0,0.0,0.0,11.337703984569806,0.0,0.0,0.0 -12201,reservoir_outflow,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12202,gw1_gw2,0.0,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12203,gw2_gw1,2.895194111740551e-05,2012-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12204,urban_drainage,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12205,percolation,0.12611084497007174,2012-11-18,0.0,0.0,8.960544673202727e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -12206,runoff,0.00998429651014988,2012-11-18,0.0,0.0,6.392488669574012e-07,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -12207,storm_outflow,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12208,baseflow,0.07735993547012136,2012-11-18,0.0,0.0,9.307230758342267e-06,0.0,0.0,0.0,0.0,0.0,11.87147826249769,0.0,0.0,0.0 -12209,catchment_outflow,0.08734423198027125,2012-11-18,0.0,0.0,9.946479625299669e-06,0.0,0.0,0.0,0.0,0.0,11.430291578250651,0.0,0.0,0.0 -12210,reservoir_outflow,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12211,gw1_gw2,0.0,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12212,gw2_gw1,2.875892817701953e-05,2012-11-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12213,urban_drainage,0.027999999999999997,2012-11-19,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0 -12214,percolation,0.1235886280706703,2012-11-19,0.0,0.0,8.781333779738672e-06,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -12215,runoff,0.007987437208119905,2012-11-19,0.0,0.0,5.113990935659211e-07,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -12216,storm_outflow,0.027999999999999997,2012-11-19,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0 -12217,baseflow,0.07747550720162273,2012-11-19,0.0,0.0,9.305916015895758e-06,0.0,0.0,0.0,0.0,0.0,11.867949597003864,0.0,0.0,0.0 -12218,catchment_outflow,0.11346294440974264,2012-11-19,0.0,0.0,1.6817315109461678e-05,0.0,0.0,0.0,0.0,0.0,10.537096654803419,0.0,0.0,0.0 -12219,reservoir_outflow,0.013999999999999999,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12220,gw1_gw2,0.0,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12221,gw2_gw1,2.8567201989204706e-05,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12222,urban_drainage,0.04,2012-11-20,0.0,0.0,2.173913043478261e-07,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 -12223,percolation,0.1368425781570755,2012-11-20,0.0,0.0,9.594336346918289e-06,0.0,0.0,0.0,0.0,0.0,10.632623365112318,0.0,0.0,0.0 -12224,runoff,0.11398699946209678,2012-11-20,0.0,0.0,3.704550084100702e-06,0.0,0.0,0.0,0.0,0.0,7.77069366631267,0.0,0.0,0.0 -12225,storm_outflow,0.04,2012-11-20,0.0,0.0,2.173913043478261e-07,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 -12226,baseflow,0.07762392487901136,2012-11-20,0.0,0.0,9.306637066723314e-06,0.0,0.0,0.0,0.0,0.0,11.862505230891852,0.0,0.0,0.0 -12227,catchment_outflow,0.23161092434110814,2012-11-20,0.0,0.0,1.3228578455171842e-05,0.0,0.0,0.0,0.0,0.0,9.115043706369022,0.0,0.0,0.0 -12228,reservoir_outflow,0.092,2012-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12229,gw1_gw2,0.0,2012-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12230,gw2_gw1,2.8376753975933866e-05,2012-11-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12231,urban_drainage,0.04,2012-11-21,0.0,0.0,2.384760796859095e-07,0.0,0.0,0.0,0.0,0.0,7.634651218431439,0.0,0.0,0.0 -12232,percolation,0.15748574758762718,2012-11-21,0.0,0.0,1.0755804371455036e-05,0.0,0.0,0.0,0.0,0.0,10.23034394828577,0.0,0.0,0.0 -12233,runoff,0.20701578490106998,2012-11-21,0.0,0.0,7.474822572197606e-06,0.0,0.0,0.0,0.0,0.0,7.814933851536078,0.0,0.0,0.0 -12234,storm_outflow,0.04,2012-11-21,0.0,0.0,2.384760796859095e-07,0.0,0.0,0.0,0.0,0.0,7.634651218431439,0.0,0.0,0.0 -12235,baseflow,0.07782357943578291,2012-11-21,0.0,0.0,9.310259984985144e-06,0.0,0.0,0.0,0.0,0.0,11.8542480246043,0.0,0.0,0.0 -12236,catchment_outflow,0.3248393643368529,2012-11-21,0.0,0.0,1.702355863686866e-05,0.0,0.0,0.0,0.0,0.0,8.760455287082205,0.0,0.0,0.0 -12237,reservoir_outflow,0.07750000000000001,2012-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12238,gw1_gw2,0.0,2012-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12239,gw2_gw1,2.818757561620089e-05,2012-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12240,urban_drainage,0.04,2012-11-22,0.0,0.0,2.4640509597736214e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 -12241,percolation,0.1776200327879321,2012-11-22,0.0,0.0,1.1783446439853925e-05,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 -12242,runoff,0.2592960788035137,2012-11-22,0.0,0.0,1.0122385243851387e-05,0.0,0.0,0.0,0.0,0.0,7.8593339144466565,0.0,0.0,0.0 -12243,storm_outflow,0.04,2012-11-22,0.0,0.0,2.4640509597736214e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 -12244,baseflow,0.07807307056916328,2012-11-22,0.0,0.0,9.316442951122317e-06,0.0,0.0,0.0,0.0,0.0,11.843315656648786,0.0,0.0,0.0 -12245,catchment_outflow,0.37736914937267696,2012-11-22,0.0,0.0,1.9685233290951067e-05,0.0,0.0,0.0,0.0,0.0,8.662055961363366,0.0,0.0,0.0 -12246,reservoir_outflow,0.077,2012-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12247,gw1_gw2,0.0,2012-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12248,gw2_gw1,2.7999658445487797e-05,2012-11-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12249,urban_drainage,0.04,2012-11-23,0.0,0.0,3.715749318297354e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 -12250,percolation,0.17406763213217347,2012-11-23,0.0,0.0,1.1547777511056846e-05,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 -12251,runoff,0.14301829248664763,2012-11-23,0.0,0.0,8.09790819508111e-06,0.0,0.0,0.0,0.0,0.0,7.934576913556085,0.0,0.0,0.0 -12252,storm_outflow,0.04,2012-11-23,0.0,0.0,3.715749318297354e-07,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 -12253,baseflow,0.07831305697307081,2012-11-23,0.0,0.0,9.322021287522151e-06,0.0,0.0,0.0,0.0,0.0,11.832695516562078,0.0,0.0,0.0 -12254,catchment_outflow,0.2613313494597185,2012-11-23,0.0,0.0,1.7791504414432996e-05,0.0,0.0,0.0,0.0,0.0,9.060139205302507,0.0,0.0,0.0 -12255,reservoir_outflow,0.0,2012-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12256,gw1_gw2,0.0,2012-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12257,gw2_gw1,2.7812994055764763e-05,2012-11-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12258,urban_drainage,0.04,2012-11-24,0.0,0.0,2.7359948349541225e-07,0.0,0.0,0.0,0.0,0.0,7.708278507803088,0.0,0.0,0.0 -12259,percolation,0.20739566537134252,2012-11-24,0.0,0.0,1.3060380776870116e-05,0.0,0.0,0.0,0.0,0.0,9.591433476967335,0.0,0.0,0.0 -12260,runoff,0.3655163057753632,2012-11-24,0.0,0.0,1.2290189276179578e-05,0.0,0.0,0.0,0.0,0.0,7.90353922689548,0.0,0.0,0.0 -12261,storm_outflow,0.04,2012-11-24,0.0,0.0,2.7359948349541225e-07,0.0,0.0,0.0,0.0,0.0,7.708278507803088,0.0,0.0,0.0 -12262,baseflow,0.0786357634940665,2012-11-24,0.0,0.0,9.331367186245523e-06,0.0,0.0,0.0,0.0,0.0,11.817917633976618,0.0,0.0,0.0 -12263,catchment_outflow,0.48415206926942966,2012-11-24,0.0,0.0,2.1895155945920514e-05,0.0,0.0,0.0,0.0,0.0,8.523178643772304,0.0,0.0,0.0 -12264,reservoir_outflow,0.1,2012-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12265,gw1_gw2,0.0,2012-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12266,gw2_gw1,2.7627574095134833e-05,2012-11-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12267,urban_drainage,0.04,2012-11-25,0.0,0.0,3.3351635158879953e-07,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0 -12268,percolation,0.2091667854183224,2012-11-25,0.0,0.0,1.307771223510665e-05,0.0,0.0,0.0,0.0,0.0,9.548520006563194,0.0,0.0,0.0 -12269,runoff,0.22958710193833642,2012-11-25,0.0,0.0,1.0760615000190106e-05,0.0,0.0,0.0,0.0,0.0,7.969329248180333,0.0,0.0,0.0 -12270,storm_outflow,0.04,2012-11-25,0.0,0.0,3.3351635158879953e-07,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0 -12271,baseflow,0.07896209104887714,2012-11-25,0.0,0.0,9.340733048867676e-06,0.0,0.0,0.0,0.0,0.0,11.802888820774717,0.0,0.0,0.0 -12272,catchment_outflow,0.34854919298721354,2012-11-25,0.0,0.0,2.0434864400646582e-05,0.0,0.0,0.0,0.0,0.0,8.808350223922568,0.0,0.0,0.0 -12273,reservoir_outflow,0.041499999999999995,2012-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12274,gw1_gw2,0.0,2012-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12275,gw2_gw1,2.7443390268189206e-05,2012-11-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12276,urban_drainage,0.04,2012-11-26,0.0,0.0,4.0837134380613846e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12277,percolation,0.20803706976403152,2012-11-26,0.0,0.0,1.2960677842783249e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -12278,runoff,0.1879480409258339,2012-11-26,0.0,0.0,9.090224841414524e-06,0.0,0.0,0.0,0.0,0.0,7.984461710833754,0.0,0.0,0.0 -12279,storm_outflow,0.04,2012-11-26,0.0,0.0,4.0837134380613846e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12280,baseflow,0.07928477849566502,2012-11-26,0.0,0.0,9.349782910852464e-06,0.0,0.0,0.0,0.0,0.0,11.787962615877008,0.0,0.0,0.0 -12281,catchment_outflow,0.30723281942149894,2012-11-26,0.0,0.0,1.8848379096073126e-05,0.0,0.0,0.0,0.0,0.0,8.930715630558248,0.0,0.0,0.0 -12282,reservoir_outflow,0.0014999999999999996,2012-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12283,gw1_gw2,0.0,2012-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12284,gw2_gw1,2.7260434332987415e-05,2012-11-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12285,urban_drainage,0.04,2012-11-27,0.0,0.0,5.095401214886909e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12286,percolation,0.2038763283687509,2012-11-27,0.0,0.0,1.2701464285927586e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -12287,runoff,0.14315943715378518,2012-11-27,0.0,0.0,7.27217987313162e-06,0.0,0.0,0.0,0.0,0.0,7.9880174411026195,0.0,0.0,0.0 -12288,storm_outflow,0.04,2012-11-27,0.0,0.0,5.095401214886909e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12289,baseflow,0.07959625737034774,2012-11-27,0.0,0.0,9.358162114290153e-06,0.0,0.0,0.0,0.0,0.0,11.773487755870393,0.0,0.0,0.0 -12290,catchment_outflow,0.26275569452413294,2012-11-27,0.0,0.0,1.7139882108910465e-05,0.0,0.0,0.0,0.0,0.0,9.092950956010068,0.0,0.0,0.0 -12291,reservoir_outflow,0.0,2012-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12292,gw1_gw2,0.0,2012-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12293,gw2_gw1,2.7078698104610056e-05,2012-11-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12294,urban_drainage,0.04,2012-11-28,0.0,0.0,6.337747809683291e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12295,percolation,0.19979880180137588,2012-11-28,0.0,0.0,1.2447435000209034e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -12296,runoff,0.11342949414127632,2012-11-28,0.0,0.0,5.817743898505296e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -12297,storm_outflow,0.04,2012-11-28,0.0,0.0,6.337747809683291e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12298,baseflow,0.0798967637314253,2012-11-28,0.0,0.0,9.36588529650495e-06,0.0,0.0,0.0,0.0,0.0,11.7594462404544,0.0,0.0,0.0 -12299,catchment_outflow,0.23332625787270161,2012-11-28,0.0,0.0,1.5817403975978576e-05,0.0,0.0,0.0,0.0,0.0,9.234606552807108,0.0,0.0,0.0 -12300,reservoir_outflow,0.0,2012-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12301,gw1_gw2,0.0,2012-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12302,gw2_gw1,2.6898173450362606e-05,2012-11-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12303,urban_drainage,0.04,2012-11-29,0.0,0.0,7.869012217223018e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12304,percolation,0.19580282576534835,2012-11-29,0.0,0.0,1.2198486300204853e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -12305,runoff,0.09074359531302105,2012-11-29,0.0,0.0,4.654195118804236e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -12306,storm_outflow,0.04,2012-11-29,0.0,0.0,7.869012217223018e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12307,baseflow,0.08018652888651012,2012-11-29,0.0,0.0,9.3729667990142e-06,0.0,0.0,0.0,0.0,0.0,11.745820999394452,0.0,0.0,0.0 -12308,catchment_outflow,0.21093012419953117,2012-11-29,0.0,0.0,1.481406313954074e-05,0.0,0.0,0.0,0.0,0.0,9.366476297446763,0.0,0.0,0.0 -12309,reservoir_outflow,0.0,2012-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12310,gw1_gw2,0.0,2012-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12311,gw2_gw1,2.6718852293861064e-05,2012-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12312,urban_drainage,0.04,2012-11-30,0.0,0.0,9.831618711393651e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12313,percolation,0.1918867692500414,2012-11-30,0.0,0.0,1.1954516574200756e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -12314,runoff,0.07259487625041684,2012-11-30,0.0,0.0,3.723356095043389e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808099,0.0,0.0,0.0 -12315,storm_outflow,0.04,2012-11-30,0.0,0.0,9.831618711393651e-07,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12316,baseflow,0.08046577948741895,2012-11-30,0.0,0.0,9.379420673452166e-06,0.0,0.0,0.0,0.0,0.0,11.732595833141378,0.0,0.0,0.0 -12317,catchment_outflow,0.1930606557378358,2012-11-30,0.0,0.0,1.408593863963492e-05,0.0,0.0,0.0,0.0,0.0,9.493558267880822,0.0,0.0,0.0 -12318,reservoir_outflow,0.0,2012-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12319,gw1_gw2,0.0,2012-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12320,gw2_gw1,2.6540726612012122e-05,2012-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12321,urban_drainage,0.04,2012-12-01,0.0,0.0,1.2495156096339513e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12322,percolation,0.18804903386504054,2012-12-01,0.0,0.0,1.1715426242716741e-05,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -12323,runoff,0.05807590100033347,2012-12-01,0.0,0.0,2.978684876034711e-06,0.0,0.0,0.0,0.0,0.0,7.992590441808099,0.0,0.0,0.0 -12324,storm_outflow,0.04,2012-12-01,0.0,0.0,1.2495156096339513e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -12325,baseflow,0.080734737623363,2012-12-01,0.0,0.0,9.385260687375326e-06,0.0,0.0,0.0,0.0,0.0,11.719755357946292,0.0,0.0,0.0 -12326,catchment_outflow,0.17881063862369648,2012-12-01,0.0,0.0,1.3613461173043989e-05,0.0,0.0,0.0,0.0,0.0,9.613003340368344,0.0,0.0,0.0 -12327,reservoir_outflow,0.0,2012-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12328,gw1_gw2,0.0,2012-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12329,gw2_gw1,2.6363788434657922e-05,2012-12-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12330,urban_drainage,0.04,2012-12-02,0.0,0.0,1.088350291018738e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12331,percolation,0.1930817559057384,2012-12-02,0.0,0.0,1.192355025561794e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -12332,runoff,0.10662816044973124,2012-12-02,0.0,0.0,3.857723026679546e-06,0.0,0.0,0.0,0.0,0.0,7.022326237059145,0.0,0.0,0.0 -12333,storm_outflow,0.04,2012-12-02,0.0,0.0,1.088350291018738e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12334,baseflow,0.08101560516906893,2012-12-02,0.0,0.0,9.391606411295934e-06,0.0,0.0,0.0,0.0,0.0,11.705932982175138,0.0,0.0,0.0 -12335,catchment_outflow,0.22764376561880018,2012-12-02,0.0,0.0,1.433767972899422e-05,0.0,0.0,0.0,0.0,0.0,8.725824675382466,0.0,0.0,0.0 -12336,reservoir_outflow,0.032,2012-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12337,gw1_gw2,0.0,2012-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12338,gw2_gw1,2.618802984510893e-05,2012-12-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12339,urban_drainage,0.04,2012-12-03,0.0,0.0,1.3873794819369663e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12340,percolation,0.18922012078762362,2012-12-03,0.0,0.0,1.1685079250505581e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -12341,runoff,0.062219222242344684,2012-12-03,0.0,0.0,3.0861784213436364e-06,0.0,0.0,0.0,0.0,0.0,7.4509747650960145,0.0,0.0,0.0 -12342,storm_outflow,0.04,2012-12-03,0.0,0.0,1.3873794819369663e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12343,baseflow,0.08128611645811532,2012-12-03,0.0,0.0,9.397340093393958e-06,0.0,0.0,0.0,0.0,0.0,11.69251257357751,0.0,0.0,0.0 -12344,catchment_outflow,0.18350533870045999,2012-12-03,0.0,0.0,1.387089799667456e-05,0.0,0.0,0.0,0.0,0.0,9.281862966582274,0.0,0.0,0.0 -12345,reservoir_outflow,0.0,2012-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12346,gw1_gw2,0.0,2012-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12347,gw2_gw1,2.6013442979611058e-05,2012-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12348,urban_drainage,0.04,2012-12-04,0.0,0.0,1.8049041816864667e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12349,percolation,0.18543571837187112,2012-12-04,0.0,0.0,1.1451377665495471e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -12350,runoff,0.05118813893877733,2012-12-04,0.0,0.0,2.46894273707491e-06,0.0,0.0,0.0,0.0,0.0,7.37979391701596,0.0,0.0,0.0 -12351,storm_outflow,0.04,2012-12-04,0.0,0.0,1.8049041816864667e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12352,baseflow,0.0815464904628997,2012-12-04,0.0,0.0,9.402475187324213e-06,0.0,0.0,0.0,0.0,0.0,11.679478861464917,0.0,0.0,0.0 -12353,catchment_outflow,0.17273462940167705,2012-12-04,0.0,0.0,1.367632210608559e-05,0.0,0.0,0.0,0.0,0.0,9.375173046885573,0.0,0.0,0.0 -12354,reservoir_outflow,0.0,2012-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12355,gw1_gw2,0.0,2012-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12356,gw2_gw1,2.5840020026279832e-05,2012-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12357,urban_drainage,0.04,2012-12-05,0.0,0.0,2.7681710631260785e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12358,percolation,0.18172700400443373,2012-12-05,0.0,0.0,1.1222350112185561e-05,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -12359,runoff,0.03879580835512096,2012-12-05,0.0,0.0,1.975154189659928e-06,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 -12360,storm_outflow,0.04,2012-12-05,0.0,0.0,2.7681710631260785e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -12361,baseflow,0.08179694174675355,2012-12-05,0.0,0.0,9.407024874636366e-06,0.0,0.0,0.0,0.0,0.0,11.66681732491934,0.0,0.0,0.0 -12362,catchment_outflow,0.16059275010187452,2012-12-05,0.0,0.0,1.4150350127422372e-05,0.0,0.0,0.0,0.0,0.0,9.555875568004701,0.0,0.0,0.0 -12363,reservoir_outflow,0.0,2012-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12364,gw1_gw2,0.0,2012-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12365,gw2_gw1,2.5667753225988577e-05,2012-12-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12366,urban_drainage,0.04,2012-12-06,0.0,0.0,1.9215411878171053e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -12367,percolation,0.18377929941492116,2012-12-06,0.0,0.0,1.1293480578129693e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12368,runoff,0.06994657372488092,2012-12-06,0.0,0.0,2.565381579020748e-06,0.0,0.0,0.0,0.0,0.0,6.306473507708247,0.0,0.0,0.0 -12369,storm_outflow,0.04,2012-12-06,0.0,0.0,1.9215411878171053e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -12370,baseflow,0.08205189764092397,2012-12-06,0.0,0.0,9.411741013895097e-06,0.0,0.0,0.0,0.0,0.0,11.653493714973619,0.0,0.0,0.0 -12371,catchment_outflow,0.1919984713658049,2012-12-06,0.0,0.0,1.389866378073295e-05,0.0,0.0,0.0,0.0,0.0,8.550749098114938,0.0,0.0,0.0 -12372,reservoir_outflow,0.018999999999999996,2012-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12373,gw1_gw2,0.0,2012-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12374,gw2_gw1,2.5496634871302605e-05,2012-12-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12375,urban_drainage,0.017999999999999957,2012-12-07,0.0,0.0,2.77742559873082e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -12376,percolation,0.18010371342662276,2012-12-07,0.0,0.0,1.1067610966567099e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12377,runoff,0.04036439338460967,2012-12-07,0.0,0.0,2.052305263216598e-06,0.0,0.0,0.0,0.0,0.0,6.825361037512118,0.0,0.0,0.0 -12378,storm_outflow,0.017999999999999957,2012-12-07,0.0,0.0,2.77742559873082e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -12379,baseflow,0.08229702718038823,2012-12-07,0.0,0.0,9.415880688776779e-06,0.0,0.0,0.0,0.0,0.0,11.640548364609012,0.0,0.0,0.0 -12380,catchment_outflow,0.14066142056499786,2012-12-07,0.0,0.0,1.4245611550724196e-05,0.0,0.0,0.0,0.0,0.0,9.551123174978574,0.0,0.0,0.0 -12381,reservoir_outflow,0.0,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12382,gw1_gw2,0.0,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12383,gw2_gw1,2.5326657305235758e-05,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12384,urban_drainage,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12385,percolation,0.17650163915809028,2012-12-08,0.0,0.0,1.0846258747235757e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12386,runoff,0.03199536959105104,2012-12-08,0.0,0.0,1.6418442105732786e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -12387,storm_outflow,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12388,baseflow,0.08253253871033246,2012-12-08,0.0,0.0,9.419456633922925e-06,0.0,0.0,0.0,0.0,0.0,11.627967334131487,0.0,0.0,0.0 -12389,catchment_outflow,0.1145279083013835,2012-12-08,0.0,0.0,1.1061300844496204e-05,0.0,0.0,0.0,0.0,0.0,10.291374097885326,0.0,0.0,0.0 -12390,reservoir_outflow,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12391,gw1_gw2,0.0,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12392,gw2_gw1,2.5157812923559675e-05,2012-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12393,urban_drainage,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12394,percolation,0.17297160637492848,2012-12-09,0.0,0.0,1.0629333572291042e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12395,runoff,0.025897432327499945,2012-12-09,0.0,0.0,1.3134753684586228e-06,0.0,0.0,0.0,0.0,0.0,6.817979660221072,0.0,0.0,0.0 -12396,storm_outflow,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12397,baseflow,0.08275863637949397,2012-12-09,0.0,0.0,9.422481326268846e-06,0.0,0.0,0.0,0.0,0.0,11.615737346557331,0.0,0.0,0.0 -12398,catchment_outflow,0.10865606870699392,2012-12-09,0.0,0.0,1.0735956694727468e-05,0.0,0.0,0.0,0.0,0.0,10.47222454985665,0.0,0.0,0.0 -12399,reservoir_outflow,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12400,gw1_gw2,0.0,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12401,gw2_gw1,2.4990094170895816e-05,2012-12-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12402,urban_drainage,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12403,percolation,0.16951217424742993,2012-12-10,0.0,0.0,1.0416746900845222e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12404,runoff,0.020477036538272663,2012-12-10,0.0,0.0,1.0507802947668982e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -12405,storm_outflow,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12406,baseflow,0.08297552022416381,2012-12-10,0.0,0.0,9.424966990205287e-06,0.0,0.0,0.0,0.0,0.0,11.603845748643195,0.0,0.0,0.0 -12407,catchment_outflow,0.10345255676243648,2012-12-10,0.0,0.0,1.0475747284972186e-05,0.0,0.0,0.0,0.0,0.0,10.661621698071443,0.0,0.0,0.0 -12408,reservoir_outflow,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12409,gw1_gw2,0.0,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12410,gw2_gw1,2.4823493543024713e-05,2012-12-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12411,urban_drainage,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12412,percolation,0.16612193076248133,2012-12-11,0.0,0.0,1.0208411962828318e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12413,runoff,0.016582311598468593,2012-12-11,0.0,0.0,8.406242358135186e-07,0.0,0.0,0.0,0.0,0.0,6.8143411641092,0.0,0.0,0.0 -12414,storm_outflow,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12415,baseflow,0.0831833862505096,2012-12-11,0.0,0.0,9.426925602636843e-06,0.0,0.0,0.0,0.0,0.0,11.592280474637073,0.0,0.0,0.0 -12416,catchment_outflow,0.0997656978489782,2012-12-11,0.0,0.0,1.0267549838450362e-05,0.0,0.0,0.0,0.0,0.0,10.798126971439212,0.0,0.0,0.0 -12417,reservoir_outflow,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12418,gw1_gw2,0.0,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12419,gw2_gw1,2.465800358599779e-05,2012-12-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12420,urban_drainage,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12421,percolation,0.16279949214723172,2012-12-12,0.0,0.0,1.0004243723571753e-05,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12422,runoff,0.013105303384494504,2012-12-12,0.0,0.0,6.724993886508149e-07,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -12423,storm_outflow,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12424,baseflow,0.08338242651525139,2012-12-12,0.0,0.0,9.42836889793918e-06,0.0,0.0,0.0,0.0,0.0,11.581030012531118,0.0,0.0,0.0 -12425,catchment_outflow,0.0964877298997459,2012-12-12,0.0,0.0,1.0100868286589995e-05,0.0,0.0,0.0,0.0,0.0,10.937577164706509,0.0,0.0,0.0 -12426,reservoir_outflow,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12427,gw1_gw2,0.0,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12428,gw2_gw1,2.449361689507157e-05,2012-12-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12429,urban_drainage,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12430,percolation,0.15954350230428707,2012-12-13,0.0,0.0,9.804158849100316e-06,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -12431,runoff,0.010881519760453501,2012-12-13,0.0,0.0,5.379995109206519e-07,0.0,0.0,0.0,0.0,0.0,6.773260192867159,0.0,0.0,0.0 -12432,storm_outflow,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12433,baseflow,0.08357282920472399,2012-12-13,0.0,0.0,9.429308372817084e-06,0.0,0.0,0.0,0.0,0.0,11.570083372617109,0.0,0.0,0.0 -12434,catchment_outflow,0.09445434896517749,2012-12-13,0.0,0.0,9.967307883737735e-06,0.0,0.0,0.0,0.0,0.0,11.017470107164463,0.0,0.0,0.0 -12435,reservoir_outflow,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12436,gw1_gw2,0.0,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12437,gw2_gw1,2.4330326115951097e-05,2012-12-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12438,urban_drainage,0.04,2012-12-14,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -12439,percolation,0.15766192577501012,2012-12-14,0.0,0.0,9.678783533427023e-06,0.0,0.0,0.0,0.0,0.0,9.256532837769155,0.0,0.0,0.0 -12440,runoff,0.01734571822845254,2012-12-14,0.0,0.0,6.660924797655647e-07,0.0,0.0,0.0,0.0,0.0,6.078579370776604,0.0,0.0,0.0 -12441,storm_outflow,0.04,2012-12-14,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -12442,baseflow,0.08375805194614967,2012-12-14,0.0,0.0,9.429932060718608e-06,0.0,0.0,0.0,0.0,0.0,11.559196095984396,0.0,0.0,0.0 -12443,catchment_outflow,0.1411037701746022,2012-12-14,0.0,0.0,1.2096024540484173e-05,0.0,0.0,0.0,0.0,0.0,9.072139394106559,0.0,0.0,0.0 -12444,reservoir_outflow,0.07,2012-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12445,gw1_gw2,0.0,2012-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12446,gw2_gw1,2.416812394177015e-05,2012-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12447,urban_drainage,0.04,2012-12-15,0.0,0.0,2.424242424242424e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -12448,percolation,0.15712492478477394,2012-12-15,0.0,0.0,9.62738924279515e-06,0.0,0.0,0.0,0.0,0.0,9.199253044001107,0.0,0.0,0.0 -12449,runoff,0.02810193725229821,2012-12-15,0.0,0.0,1.0068119172680116e-06,0.0,0.0,0.0,0.0,0.0,5.898095906044198,0.0,0.0,0.0 -12450,storm_outflow,0.04,2012-12-15,0.0,0.0,2.424242424242424e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -12451,baseflow,0.08394146912824625,2012-12-15,0.0,0.0,9.430425703673799e-06,0.0,0.0,0.0,0.0,0.0,11.548152511734855,0.0,0.0,0.0 -12452,catchment_outflow,0.15204340638054448,2012-12-15,0.0,0.0,1.2861480045184235e-05,0.0,0.0,0.0,0.0,0.0,8.8239065445158,0.0,0.0,0.0 -12453,reservoir_outflow,0.0,2012-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12454,gw1_gw2,0.0,2012-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12455,gw2_gw1,2.4007003115222858e-05,2012-12-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12456,urban_drainage,0.04,2012-12-16,0.0,0.0,1.947130883301096e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -12457,percolation,0.16147752826636577,2012-12-16,0.0,0.0,9.836345628982527e-06,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 -12458,runoff,0.06642000185622118,2012-12-16,0.0,0.0,2.143796770625341e-06,0.0,0.0,0.0,0.0,0.0,5.902920019755045,0.0,0.0,0.0 -12459,storm_outflow,0.04,2012-12-16,0.0,0.0,1.947130883301096e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -12460,baseflow,0.08413530927609156,2012-12-16,0.0,0.0,9.431440503487072e-06,0.0,0.0,0.0,0.0,0.0,11.536174919110506,0.0,0.0,0.0 -12461,catchment_outflow,0.19055531113231275,2012-12-16,0.0,0.0,1.352236815741351e-05,0.0,0.0,0.0,0.0,0.0,8.273158533469001,0.0,0.0,0.0 -12462,reservoir_outflow,0.017499999999999998,2012-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12463,gw1_gw2,0.0,2012-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12464,gw2_gw1,2.3846956427853174e-05,2012-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12465,urban_drainage,0.037,2012-12-17,0.0,0.0,3.6286266924564797e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -12466,percolation,0.15824797770103846,2012-12-17,0.0,0.0,9.639618716402877e-06,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 -12467,runoff,0.03351662407715482,2012-12-17,0.0,0.0,1.7150374165002732e-06,0.0,0.0,0.0,0.0,0.0,6.058942524436515,0.0,0.0,0.0 -12468,storm_outflow,0.037,2012-12-17,0.0,0.0,3.6286266924564797e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -12469,baseflow,0.08432059094715393,2012-12-17,0.0,0.0,9.43196094901936e-06,0.0,0.0,0.0,0.0,0.0,11.524518868019431,0.0,0.0,0.0 -12470,catchment_outflow,0.15483721502430875,2012-12-17,0.0,0.0,1.4775625057976113e-05,0.0,0.0,0.0,0.0,0.0,8.864894224082686,0.0,0.0,0.0 -12471,reservoir_outflow,0.0,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12472,gw1_gw2,0.0,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12473,gw2_gw1,2.3687976718456126e-05,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12474,urban_drainage,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12475,percolation,0.1550830181470177,2012-12-18,0.0,0.0,9.44682634207482e-06,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 -12476,runoff,0.026145263082095704,2012-12-18,0.0,0.0,1.3720299332002185e-06,0.0,0.0,0.0,0.0,0.0,6.065324249576981,0.0,0.0,0.0 -12477,storm_outflow,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12478,baseflow,0.08449749701515358,2012-12-18,0.0,0.0,9.431998112501998e-06,0.0,0.0,0.0,0.0,0.0,11.513173335800197,0.0,0.0,0.0 -12479,catchment_outflow,0.11064276009724928,2012-12-18,0.0,0.0,1.0804028045702217e-05,0.0,0.0,0.0,0.0,0.0,10.22582794179821,0.0,0.0,0.0 -12480,reservoir_outflow,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12481,gw1_gw2,0.0,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12482,gw2_gw1,2.3530056873966033e-05,2012-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12483,urban_drainage,0.04,2012-12-19,0.0,0.0,4.210526315789473e-07,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 -12484,percolation,0.1794509204731485,2012-12-19,0.0,0.0,1.0632850709894652e-05,0.0,0.0,0.0,0.0,0.0,8.666571607648867,0.0,0.0,0.0 -12485,runoff,0.2084917954462369,2012-12-19,0.0,0.0,5.680826928764606e-06,0.0,0.0,0.0,0.0,0.0,6.315158246436944,0.0,0.0,0.0 -12486,storm_outflow,0.04,2012-12-19,0.0,0.0,4.210526315789473e-07,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 -12487,baseflow,0.08473488057379858,2012-12-19,0.0,0.0,9.435000243995481e-06,0.0,0.0,0.0,0.0,0.0,11.498102054148587,0.0,0.0,0.0 -12488,catchment_outflow,0.3332266760200355,2012-12-19,0.0,0.0,1.5536879804339034e-05,0.0,0.0,0.0,0.0,0.0,7.614426217058976,0.0,0.0,0.0 -12489,reservoir_outflow,0.09500000000000001,2012-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12490,gw1_gw2,0.0,2012-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12491,gw2_gw1,2.337318982803538e-05,2012-12-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12492,urban_drainage,0.04,2012-12-20,0.0,0.0,6.032625423207139e-07,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0 -12493,percolation,0.18130695087211787,2012-12-20,0.0,0.0,1.0691232294662643e-05,0.0,0.0,0.0,0.0,0.0,8.60689508614274,0.0,0.0,0.0 -12494,runoff,0.12694148907694092,2012-12-20,0.0,0.0,5.448123539564634e-06,0.0,0.0,0.0,0.0,0.0,6.457892703090237,0.0,0.0,0.0 -12495,storm_outflow,0.04,2012-12-20,0.0,0.0,6.032625423207139e-07,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0 -12496,baseflow,0.08497631074954437,2012-12-20,0.0,0.0,9.43814082412215e-06,0.0,0.0,0.0,0.0,0.0,11.48268022908094,0.0,0.0,0.0 -12497,catchment_outflow,0.2519177998264853,2012-12-20,0.0,0.0,1.54895269060075e-05,0.0,0.0,0.0,0.0,0.0,8.107996735907964,0.0,0.0,0.0 -12498,reservoir_outflow,0.010500000000000002,2012-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12499,gw1_gw2,0.0,2012-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12500,gw2_gw1,2.3217368562455933e-05,2012-12-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12501,urban_drainage,0.04,2012-12-21,0.0,0.0,5.38585488886939e-07,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0 -12502,percolation,0.19207029979562593,2012-12-21,0.0,0.0,1.116223592578988e-05,0.0,0.0,0.0,0.0,0.0,8.470072038829677,0.0,0.0,0.0 -12503,runoff,0.18472323490403492,2012-12-21,0.0,0.0,6.641259755053339e-06,0.0,0.0,0.0,0.0,0.0,6.545016459616218,0.0,0.0,0.0 -12504,storm_outflow,0.04,2012-12-21,0.0,0.0,5.38585488886939e-07,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0 -12505,baseflow,0.08524404572215957,2012-12-21,0.0,0.0,9.44245106187632e-06,0.0,0.0,0.0,0.0,0.0,11.465710347097795,0.0,0.0,0.0 -12506,catchment_outflow,0.3099672806261945,2012-12-21,0.0,0.0,1.6622296305816598e-05,0.0,0.0,0.0,0.0,0.0,7.863366984748944,0.0,0.0,0.0 -12507,reservoir_outflow,0.045,2012-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12508,gw1_gw2,0.0,2012-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12509,gw2_gw1,2.3062586105382368e-05,2012-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12510,urban_drainage,0.04,2012-12-22,0.0,0.0,4.823999069773192e-07,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0 -12511,percolation,0.2044129252812932,2012-12-22,0.0,0.0,1.1670081669025038e-05,0.0,0.0,0.0,0.0,0.0,8.344890937886982,0.0,0.0,0.0 -12512,runoff,0.21811988980505342,2012-12-22,0.0,0.0,7.749976009879189e-06,0.0,0.0,0.0,0.0,0.0,6.654399207402822,0.0,0.0,0.0 -12513,storm_outflow,0.04,2012-12-22,0.0,0.0,4.823999069773192e-07,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0 -12514,baseflow,0.08554196792105742,2012-12-22,0.0,0.0,9.448020138394192e-06,0.0,0.0,0.0,0.0,0.0,11.447066404240994,0.0,0.0,0.0 -12515,catchment_outflow,0.3436618577261108,2012-12-22,0.0,0.0,1.7680396055250702e-05,0.0,0.0,0.0,0.0,0.0,7.814802038116088,0.0,0.0,0.0 -12516,reservoir_outflow,0.052,2012-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12517,gw1_gw2,0.0,2012-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12518,gw2_gw1,2.2908835531687544e-05,2012-12-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12519,urban_drainage,0.04,2012-12-23,0.0,0.0,4.882344975600098e-07,0.0,0.0,0.0,0.0,0.0,6.448791676696904,0.0,0.0,0.0 -12520,percolation,0.2132587284217239,2012-12-23,0.0,0.0,1.1999468198245068e-05,0.0,0.0,0.0,0.0,0.0,8.263661885199351,0.0,0.0,0.0 -12521,runoff,0.21756326280736346,2012-12-23,0.0,0.0,8.07594134990512e-06,0.0,0.0,0.0,0.0,0.0,6.751080135716519,0.0,0.0,0.0 -12522,storm_outflow,0.04,2012-12-23,0.0,0.0,4.882344975600098e-07,0.0,0.0,0.0,0.0,0.0,6.448791676696904,0.0,0.0,0.0 -12523,baseflow,0.08586125982230908,2012-12-23,0.0,0.0,9.45439875854382e-06,0.0,0.0,0.0,0.0,0.0,11.427299375397377,0.0,0.0,0.0 -12524,catchment_outflow,0.34342452262967255,2012-12-23,0.0,0.0,1.801857460600895e-05,0.0,0.0,0.0,0.0,0.0,7.8849960651373605,0.0,0.0,0.0 -12525,reservoir_outflow,0.03950000000000001,2012-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12526,gw1_gw2,0.0,2012-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12527,gw2_gw1,2.2756109961363793e-05,2012-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12528,urban_drainage,0.04,2012-12-24,0.0,0.0,5.514154237871691e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499756,0.0,0.0,0.0 -12529,percolation,0.21679951666388605,2012-12-24,0.0,0.0,1.2094151658320303e-05,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 -12530,runoff,0.1911536915224461,2012-12-24,0.0,0.0,7.576329160057885e-06,0.0,0.0,0.0,0.0,0.0,6.823995679199291,0.0,0.0,0.0 -12531,storm_outflow,0.04,2012-12-24,0.0,0.0,5.514154237871691e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499756,0.0,0.0,0.0 -12532,baseflow,0.08618860546441301,2012-12-24,0.0,0.0,9.46099814079326e-06,0.0,0.0,0.0,0.0,0.0,11.407147030406493,0.0,0.0,0.0 -12533,catchment_outflow,0.3173422969868591,2012-12-24,0.0,0.0,1.7588742724638314e-05,0.0,0.0,0.0,0.0,0.0,8.027058685517408,0.0,0.0,0.0 -12534,reservoir_outflow,0.02,2012-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12535,gw1_gw2,0.0,2012-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12536,gw2_gw1,2.2604402561654525e-05,2012-12-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12537,urban_drainage,0.039999999999999994,2012-12-25,0.0,0.0,7.228013983660146e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0 -12538,percolation,0.2124635263306083,2012-12-25,0.0,0.0,1.1852268625153897e-05,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 -12539,runoff,0.13461851376293835,2012-12-25,0.0,0.0,6.0610633280463075e-06,0.0,0.0,0.0,0.0,0.0,6.8296022350343275,0.0,0.0,0.0 -12540,storm_outflow,0.039999999999999994,2012-12-25,0.0,0.0,7.228013983660146e-07,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0 -12541,baseflow,0.08650429276657849,2012-12-25,0.0,0.0,9.466976317004163e-06,0.0,0.0,0.0,0.0,0.0,11.38759354569987,0.0,0.0,0.0 -12542,catchment_outflow,0.26112280652951686,2012-12-25,0.0,0.0,1.6250841043416485e-05,0.0,0.0,0.0,0.0,0.0,8.288030596177503,0.0,0.0,0.0 -12543,reservoir_outflow,0.0,2012-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12544,gw1_gw2,0.0,2012-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12545,gw2_gw1,2.245370654474499e-05,2012-12-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12546,urban_drainage,0.04,2012-12-26,0.0,0.0,7.60768953922767e-07,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0 -12547,percolation,0.2160005608214728,2012-12-26,0.0,0.0,1.1949203251394692e-05,0.0,0.0,0.0,0.0,0.0,8.191249753745728,0.0,0.0,0.0 -12548,runoff,0.15808390147014678,2012-12-26,0.0,0.0,5.962117324916617e-06,0.0,0.0,0.0,0.0,0.0,6.954385138684238,0.0,0.0,0.0 -12549,storm_outflow,0.04,2012-12-26,0.0,0.0,7.60768953922767e-07,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0 -12550,baseflow,0.08682803343671573,2012-12-26,0.0,0.0,9.473181884340138e-06,0.0,0.0,0.0,0.0,0.0,11.367714826111468,0.0,0.0,0.0 -12551,catchment_outflow,0.2849119349068625,2012-12-26,0.0,0.0,1.6196068163179523e-05,0.0,0.0,0.0,0.0,0.0,8.246731103052255,0.0,0.0,0.0 -12552,reservoir_outflow,0.0205,2012-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12553,gw1_gw2,0.0,2012-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12554,gw2_gw1,2.2304015167584625e-05,2012-12-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12555,urban_drainage,0.04,2012-12-27,0.0,0.0,7.815077923165637e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 -12556,percolation,0.21988557244813386,2012-12-27,0.0,0.0,1.2056013564252719e-05,0.0,0.0,0.0,0.0,0.0,8.164006388702758,0.0,0.0,0.0 -12557,runoff,0.16075045636925833,2012-12-27,0.0,0.0,5.922341786219697e-06,0.0,0.0,0.0,0.0,0.0,7.06874116338308,0.0,0.0,0.0 -12558,storm_outflow,0.04,2012-12-27,0.0,0.0,7.815077923165637e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 -12559,baseflow,0.08716067728424427,2012-12-27,0.0,0.0,9.479638963539919e-06,0.0,0.0,0.0,0.0,0.0,11.347509347974256,0.0,0.0,0.0 -12560,catchment_outflow,0.2879111336535026,2012-12-27,0.0,0.0,1.618348854207618e-05,0.0,0.0,0.0,0.0,0.0,8.31000070250493,0.0,0.0,0.0 -12561,reservoir_outflow,0.0225,2012-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12562,gw1_gw2,0.0,2012-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12563,gw2_gw1,2.2155321733308144e-05,2012-12-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12564,urban_drainage,0.04,2012-12-28,0.0,0.0,9.616972534950729e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 -12565,percolation,0.21761554652103676,2012-12-28,0.0,0.0,1.1905541559526038e-05,0.0,0.0,0.0,0.0,0.0,8.15829512129369,0.0,0.0,0.0 -12566,runoff,0.12012657033458372,2012-12-28,0.0,0.0,5.040034317503673e-06,0.0,0.0,0.0,0.0,0.0,7.09028249986687,0.0,0.0,0.0 -12567,storm_outflow,0.04,2012-12-28,0.0,0.0,9.616972534950729e-07,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 -12568,baseflow,0.08748681445733625,2012-12-28,0.0,0.0,9.485703720029884e-06,0.0,0.0,0.0,0.0,0.0,11.327677142366568,0.0,0.0,0.0 -12569,catchment_outflow,0.24761338479191997,2012-12-28,0.0,0.0,1.5487435291028628e-05,0.0,0.0,0.0,0.0,0.0,8.521088083598965,0.0,0.0,0.0 -12570,reservoir_outflow,0.0,2012-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12571,gw1_gw2,0.0,2012-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12572,gw2_gw1,2.200761958839337e-05,2012-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12573,urban_drainage,0.04,2012-12-29,0.0,0.0,7.223205220048865e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 -12574,percolation,0.2302657916907304,2012-12-29,0.0,0.0,1.234923731054763e-05,0.0,0.0,0.0,0.0,0.0,8.122677163850419,0.0,0.0,0.0 -12575,runoff,0.20646208425970392,2012-12-29,0.0,0.0,6.3047160613766464e-06,0.0,0.0,0.0,0.0,0.0,7.350191179919029,0.0,0.0,0.0 -12576,storm_outflow,0.04,2012-12-29,0.0,0.0,7.223205220048865e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 -12577,baseflow,0.08784376190041975,2012-12-29,0.0,0.0,9.49286255400618e-06,0.0,0.0,0.0,0.0,0.0,11.30667389064283,0.0,0.0,0.0 -12578,catchment_outflow,0.33430584616012365,2012-12-29,0.0,0.0,1.6519899137387712e-05,0.0,0.0,0.0,0.0,0.0,8.34501542239217,0.0,0.0,0.0 -12579,reservoir_outflow,0.06,2012-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12580,gw1_gw2,0.0,2012-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12581,gw2_gw1,2.1860902124437588e-05,2012-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12582,urban_drainage,0.04,2012-12-30,0.0,0.0,8.937758185443586e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 -12583,percolation,0.22717608968986847,2012-12-30,0.0,0.0,1.2163920988306518e-05,0.0,0.0,0.0,0.0,0.0,8.12053875107678,0.0,0.0,0.0 -12584,runoff,0.12781318352764456,2012-12-30,0.0,0.0,5.249334262334121e-06,0.0,0.0,0.0,0.0,0.0,7.337968004326666,0.0,0.0,0.0 -12585,storm_outflow,0.04,2012-12-30,0.0,0.0,8.937758185443586e-07,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 -12586,baseflow,0.08819209271989337,2012-12-30,0.0,0.0,9.499540200091929e-06,0.0,0.0,0.0,0.0,0.0,11.286155789192144,0.0,0.0,0.0 -12587,catchment_outflow,0.25600527624753794,2012-12-30,0.0,0.0,1.564265028097041e-05,0.0,0.0,0.0,0.0,0.0,8.64150014268801,0.0,0.0,0.0 -12588,reservoir_outflow,0.0,2012-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12589,gw1_gw2,0.0,2012-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12590,gw2_gw1,2.171516277726937e-05,2012-12-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12591,urban_drainage,0.04,2012-12-31,0.0,0.0,9.306019571247869e-07,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12592,percolation,0.2292458326223332,2012-12-31,0.0,0.0,1.2186905943317104e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12593,runoff,0.1432448455935156,2012-12-31,0.0,0.0,5.087011992456349e-06,0.0,0.0,0.0,0.0,0.0,7.480008056266196,0.0,0.0,0.0 -12594,storm_outflow,0.04,2012-12-31,0.0,0.0,9.306019571247869e-07,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12595,baseflow,0.08854472706964947,2012-12-31,0.0,0.0,9.506258614449993e-06,0.0,0.0,0.0,0.0,0.0,11.26562677349215,0.0,0.0,0.0 -12596,catchment_outflow,0.27178957266316506,2012-12-31,0.0,0.0,1.5523872564031127e-05,0.0,0.0,0.0,0.0,0.0,8.653297131221413,0.0,0.0,0.0 -12597,reservoir_outflow,0.017,2012-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12598,gw1_gw2,0.0,2012-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12599,gw2_gw1,2.157039502517222e-05,2012-12-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12600,urban_drainage,0.04,2013-01-01,0.0,0.0,1.2161536263592964e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12601,percolation,0.22466091596988655,2013-01-01,0.0,0.0,1.1943167824450762e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12602,runoff,0.09645780740187528,2013-01-01,0.0,0.0,4.069609593965079e-06,0.0,0.0,0.0,0.0,0.0,7.436078807685925,0.0,0.0,0.0 -12603,storm_outflow,0.04,2013-01-01,0.0,0.0,1.2161536263592964e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12604,baseflow,0.08888501754190006,2013-01-01,0.0,0.0,9.512350887474995e-06,0.0,0.0,0.0,0.0,0.0,11.245715080266583,0.0,0.0,0.0 -12605,catchment_outflow,0.22534282494377533,2013-01-01,0.0,0.0,1.479811410779937e-05,0.0,0.0,0.0,0.0,0.0,8.874189460317394,0.0,0.0,0.0 -12606,reservoir_outflow,0.0,2013-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12607,gw1_gw2,0.0,2013-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12608,gw2_gw1,2.142659239154909e-05,2013-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12609,urban_drainage,0.04,2013-01-02,0.0,0.0,1.657460751539902e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12610,percolation,0.22016769765048883,2013-01-02,0.0,0.0,1.1704304467961746e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12611,runoff,0.07723333722586198,2013-01-02,0.0,0.0,3.255687675172063e-06,0.0,0.0,0.0,0.0,0.0,7.437119883768105,0.0,0.0,0.0 -12612,storm_outflow,0.04,2013-01-02,0.0,0.0,1.657460751539902e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12613,baseflow,0.08921322424217154,2013-01-02,0.0,0.0,9.517830771426211e-06,0.0,0.0,0.0,0.0,0.0,11.226396258274479,0.0,0.0,0.0 -12614,catchment_outflow,0.20644656146803353,2013-01-02,0.0,0.0,1.4430979198138176e-05,0.0,0.0,0.0,0.0,0.0,9.003918805969185,0.0,0.0,0.0 -12615,reservoir_outflow,0.0,2013-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12616,gw1_gw2,0.0,2013-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12617,gw2_gw1,2.128374844225789e-05,2013-01-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12618,urban_drainage,0.04,2013-01-03,0.0,0.0,2.5387765952844566e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12619,percolation,0.21576434369747904,2013-01-03,0.0,0.0,1.1470218378602511e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12620,runoff,0.0614606888742442,2013-01-03,0.0,0.0,2.604550140137651e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 -12621,storm_outflow,0.04,2013-01-03,0.0,0.0,2.5387765952844566e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12622,baseflow,0.08952960204080979,2013-01-03,0.0,0.0,9.52271174044415e-06,0.0,0.0,0.0,0.0,0.0,11.207647110619702,0.0,0.0,0.0 -12623,catchment_outflow,0.19099029091505398,2013-01-03,0.0,0.0,1.4666038475866258e-05,0.0,0.0,0.0,0.0,0.0,9.127283090091375,0.0,0.0,0.0 -12624,reservoir_outflow,0.0,2013-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12625,gw1_gw2,0.0,2013-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12626,gw2_gw1,2.114185678614433e-05,2013-01-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12627,urban_drainage,0.023000000000000055,2013-01-04,0.0,0.0,3.7291848399307935e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12628,percolation,0.21144905682352946,2013-01-04,0.0,0.0,1.124081401103046e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12629,runoff,0.04916855109939536,2013-01-04,0.0,0.0,2.0836401121101203e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 -12630,storm_outflow,0.023000000000000055,2013-01-04,0.0,0.0,3.7291848399307935e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -12631,baseflow,0.0898344006777666,2013-01-04,0.0,0.0,9.52700699612062e-06,0.0,0.0,0.0,0.0,0.0,11.189445615231882,0.0,0.0,0.0 -12632,catchment_outflow,0.162002951777162,2013-01-04,0.0,0.0,1.5339831948161532e-05,0.0,0.0,0.0,0.0,0.0,9.465207602712047,0.0,0.0,0.0 -12633,reservoir_outflow,0.0,2013-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12634,gw1_gw2,0.0,2013-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12635,gw2_gw1,2.1000911074153805e-05,2013-01-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12636,urban_drainage,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12637,percolation,0.20722007568705889,2013-01-05,0.0,0.0,1.101599773080985e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12638,runoff,0.03933484087951629,2013-01-05,0.0,0.0,1.6669120896880963e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 -12639,storm_outflow,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12640,baseflow,0.09012786486528984,2013-01-05,0.0,0.0,9.530729472957342e-06,0.0,0.0,0.0,0.0,0.0,11.17177085132548,0.0,0.0,0.0 -12641,catchment_outflow,0.12946270574480612,2013-01-05,0.0,0.0,1.1197641562645438e-05,0.0,0.0,0.0,0.0,0.0,10.03619774705111,0.0,0.0,0.0 -12642,reservoir_outflow,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12643,gw1_gw2,0.0,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12644,gw2_gw1,2.0860905000219533e-05,2013-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12645,urban_drainage,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12646,percolation,0.20307567417331768,2013-01-06,0.0,0.0,1.0795677776193655e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12647,runoff,0.0320199266672827,2013-01-06,0.0,0.0,1.3335296717504769e-06,0.0,0.0,0.0,0.0,0.0,7.452552969448971,0.0,0.0,0.0 -12648,storm_outflow,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12649,baseflow,0.09041023438855993,2013-01-06,0.0,0.0,9.533891843715432e-06,0.0,0.0,0.0,0.0,0.0,11.154602931319172,0.0,0.0,0.0 -12650,catchment_outflow,0.12243016105584262,2013-01-06,0.0,0.0,1.086742151546591e-05,0.0,0.0,0.0,0.0,0.0,10.186382622896703,0.0,0.0,0.0 -12651,reservoir_outflow,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12652,gw1_gw2,0.0,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12653,gw2_gw1,2.0721832300196753e-05,2013-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12654,urban_drainage,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12655,percolation,0.1990141606898513,2013-01-07,0.0,0.0,1.0579764220669782e-05,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -12656,runoff,0.025174298162890425,2013-01-07,0.0,0.0,1.0668237374003818e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 -12657,storm_outflow,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12658,baseflow,0.09068174420431316,2013-01-07,0.0,0.0,9.536506524657819e-06,0.0,0.0,0.0,0.0,0.0,11.137922937748312,0.0,0.0,0.0 -12659,catchment_outflow,0.11585604236720358,2013-01-07,0.0,0.0,1.06033302620582e-05,0.0,0.0,0.0,0.0,0.0,10.33315613161012,0.0,0.0,0.0 -12660,reservoir_outflow,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12661,gw1_gw2,0.0,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12662,gw2_gw1,2.0583686751507457e-05,2013-01-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12663,urban_drainage,0.008,2013-01-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 -12664,percolation,0.19640027863622844,2013-01-08,0.0,0.0,1.0432029194080231e-05,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 -12665,runoff,0.02948849909992496,2013-01-08,0.0,0.0,1.0663265159997835e-06,0.0,0.0,0.0,0.0,0.0,7.746604197321716,0.0,0.0,0.0 -12666,storm_outflow,0.008,2013-01-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 -12667,baseflow,0.09094604054039294,2013-01-08,0.0,0.0,9.538745331331375e-06,0.0,0.0,0.0,0.0,0.0,11.121625548809932,0.0,0.0,0.0 -12668,catchment_outflow,0.1284345396403179,2013-01-08,0.0,0.0,1.4605071847331158e-05,0.0,0.0,0.0,0.0,0.0,10.156062822962486,0.0,0.0,0.0 -12669,reservoir_outflow,0.004,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12670,gw1_gw2,0.0,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12671,gw2_gw1,2.044646217314039e-05,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12672,urban_drainage,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12673,percolation,0.1924722730635039,2013-01-09,0.0,0.0,1.0223388610198627e-05,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 -12674,runoff,0.020204401731259643,2013-01-09,0.0,0.0,8.53061212799827e-07,0.0,0.0,0.0,0.0,0.0,7.681413921597131,0.0,0.0,0.0 -12675,storm_outflow,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12676,baseflow,0.09119985612170071,2013-01-09,0.0,0.0,9.540456939528543e-06,0.0,0.0,0.0,0.0,0.0,11.105784544142908,0.0,0.0,0.0 -12677,catchment_outflow,0.11140425785296036,2013-01-09,0.0,0.0,1.039351815232837e-05,0.0,0.0,0.0,0.0,0.0,10.484736829557734,0.0,0.0,0.0 -12678,reservoir_outflow,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12679,gw1_gw2,0.0,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12680,gw2_gw1,2.0310152425118134e-05,2013-01-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12681,urban_drainage,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12682,percolation,0.1886228276022338,2013-01-10,0.0,0.0,1.0018920837994653e-05,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 -12683,runoff,0.016846617979976202,2013-01-10,0.0,0.0,6.824489702398616e-07,0.0,0.0,0.0,0.0,0.0,7.638997834181787,0.0,0.0,0.0 -12684,storm_outflow,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12685,baseflow,0.09144341355040204,2013-01-10,0.0,0.0,9.541653099274708e-06,0.0,0.0,0.0,0.0,0.0,11.090383397060625,0.0,0.0,0.0 -12686,catchment_outflow,0.10829003153037825,2013-01-10,0.0,0.0,1.0224102069514569e-05,0.0,0.0,0.0,0.0,0.0,10.553453328265569,0.0,0.0,0.0 -12687,reservoir_outflow,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12688,gw1_gw2,0.0,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12689,gw2_gw1,2.0174751409030023e-05,2013-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12690,urban_drainage,0.018,2013-01-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 -12691,percolation,0.18641724703623605,2013-01-11,0.0,0.0,9.89409046872718e-06,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 -12692,runoff,0.023364114271731285,2013-01-11,0.0,0.0,7.97786001166622e-07,0.0,0.0,0.0,0.0,0.0,7.316220544306218,0.0,0.0,0.0 -12693,storm_outflow,0.018,2013-01-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 -12694,baseflow,0.09168084813411664,2013-01-11,0.0,0.0,9.542534192698337e-06,0.0,0.0,0.0,0.0,0.0,11.075250181554585,0.0,0.0,0.0 -12695,catchment_outflow,0.13304496240584793,2013-01-11,0.0,0.0,1.334032019386496e-05,0.0,0.0,0.0,0.0,0.0,9.778249005643147,0.0,0.0,0.0 -12696,reservoir_outflow,0.009,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12697,gw1_gw2,0.0,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12698,gw2_gw1,2.0040253066255788e-05,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12699,urban_drainage,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12700,percolation,0.18268890209551134,2013-01-12,0.0,0.0,9.696208659352637e-06,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 -12701,runoff,0.014544709018580557,2013-01-12,0.0,0.0,6.382288009332977e-07,0.0,0.0,0.0,0.0,0.0,7.576827715184076,0.0,0.0,0.0 -12702,storm_outflow,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12703,baseflow,0.09190836826902013,2013-01-12,0.0,0.0,9.542918378864975e-06,0.0,0.0,0.0,0.0,0.0,11.060531545361806,0.0,0.0,0.0 -12704,catchment_outflow,0.10645307728760069,2013-01-12,0.0,0.0,1.0181147179798273e-05,0.0,0.0,0.0,0.0,0.0,10.584552270662611,0.0,0.0,0.0 -12705,reservoir_outflow,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12706,gw1_gw2,0.0,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12707,gw2_gw1,1.9906651379386633e-05,2013-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12708,urban_drainage,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12709,percolation,0.1790351240536011,2013-01-13,0.0,0.0,9.502284486165585e-06,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 -12710,runoff,0.012828692956728997,2013-01-13,0.0,0.0,5.105830407466381e-07,0.0,0.0,0.0,0.0,0.0,7.350606442989441,0.0,0.0,0.0 -12711,storm_outflow,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12712,baseflow,0.09212618515848157,2013-01-13,0.0,0.0,9.542816794133226e-06,0.0,0.0,0.0,0.0,0.0,11.046212894974843,0.0,0.0,0.0 -12713,catchment_outflow,0.10495487811521056,2013-01-13,0.0,0.0,1.0053399834879864e-05,0.0,0.0,0.0,0.0,0.0,10.594496868880421,0.0,0.0,0.0 -12714,reservoir_outflow,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12715,gw1_gw2,0.0,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12716,gw2_gw1,1.9773940369915978e-05,2013-01-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12717,urban_drainage,0.033,2013-01-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -12718,percolation,0.17815377498149837,2013-01-14,0.0,0.0,9.445081176664803e-06,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 -12719,runoff,0.02761680770935137,2013-01-14,0.0,0.0,8.512743666724118e-07,0.0,0.0,0.0,0.0,0.0,6.062943675021874,0.0,0.0,0.0 -12720,storm_outflow,0.033,2013-01-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -12721,baseflow,0.0923412541330391,2013-01-14,0.0,0.0,9.542572455089555e-06,0.0,0.0,0.0,0.0,0.0,11.031909107983017,0.0,0.0,0.0 -12722,catchment_outflow,0.15295806184239047,2013-01-14,0.0,0.0,1.3393846821761966e-05,0.0,0.0,0.0,0.0,0.0,8.763280967300256,0.0,0.0,0.0 -12723,reservoir_outflow,0.0165,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12724,gw1_gw2,0.0,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12725,gw2_gw1,1.9642114100903997e-05,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12726,urban_drainage,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12727,percolation,0.17459069948186842,2013-01-15,0.0,0.0,9.256179553131507e-06,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 -12728,runoff,0.014516313791426908,2013-01-15,0.0,0.0,6.810194933379294e-07,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 -12729,storm_outflow,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12730,baseflow,0.09254687774641118,2013-01-15,0.0,0.0,9.54185647283466e-06,0.0,0.0,0.0,0.0,0.0,11.017990002357728,0.0,0.0,0.0 -12731,catchment_outflow,0.1070631915378381,2013-01-15,0.0,0.0,1.0222875966172588e-05,0.0,0.0,0.0,0.0,0.0,10.444381337228288,0.0,0.0,0.0 -12732,reservoir_outflow,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12733,gw1_gw2,0.0,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12734,gw2_gw1,1.9511166673424896e-05,2013-01-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12735,urban_drainage,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12736,percolation,0.17109888549223104,2013-01-16,0.0,0.0,9.071055962068877e-06,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 -12737,runoff,0.011613051033141527,2013-01-16,0.0,0.0,5.448155946703434e-07,0.0,0.0,0.0,0.0,0.0,6.787413613275676,0.0,0.0,0.0 -12738,storm_outflow,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12739,baseflow,0.09274325776577572,2013-01-16,0.0,0.0,9.540679471557746e-06,0.0,0.0,0.0,0.0,0.0,11.004442359726555,0.0,0.0,0.0 -12740,catchment_outflow,0.10435630879891725,2013-01-16,0.0,0.0,1.008549506622809e-05,0.0,0.0,0.0,0.0,0.0,10.53516004604178,0.0,0.0,0.0 -12741,reservoir_outflow,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12742,gw1_gw2,0.0,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12743,gw2_gw1,1.9381092228876184e-05,2013-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12744,urban_drainage,0.012999999999999998,2013-01-17,0.0,0.0,2.9999999999999997e-06,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 -12745,percolation,0.16960435789115086,2013-01-17,0.0,0.0,8.98808275782482e-06,0.0,0.0,0.0,0.0,0.0,8.046385796074881,0.0,0.0,0.0 -12746,runoff,0.022478257360164577,2013-01-17,0.0,0.0,7.640121923940107e-07,0.0,0.0,0.0,0.0,0.0,5.460643443900516,0.0,0.0,0.0 -12747,storm_outflow,0.012999999999999998,2013-01-17,0.0,0.0,2.9999999999999997e-06,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 -12748,baseflow,0.09293541051608915,2013-01-17,0.0,0.0,9.539297979773414e-06,0.0,0.0,0.0,0.0,0.0,10.990946446777501,0.0,0.0,0.0 -12749,catchment_outflow,0.12841366787625375,2013-01-17,0.0,0.0,1.3303310172167425e-05,0.0,0.0,0.0,0.0,0.0,9.316244712724506,0.0,0.0,0.0 -12750,reservoir_outflow,0.0065,2013-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12751,gw1_gw2,0.0,2013-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12752,gw2_gw1,1.9251884947202316e-05,2013-01-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12753,urban_drainage,0.04,2013-01-18,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -12754,percolation,0.17063861007246028,2013-01-18,0.0,0.0,9.030282794149214e-06,0.0,0.0,0.0,0.0,0.0,7.963675849984911,0.0,0.0,0.0 -12755,runoff,0.042857699306716845,2013-01-18,0.0,0.0,1.3510820588515104e-06,0.0,0.0,0.0,0.0,0.0,4.8304883851058795,0.0,0.0,0.0 -12756,storm_outflow,0.04,2013-01-18,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -12757,baseflow,0.09312966851498007,2013-01-18,0.0,0.0,9.538025441809354e-06,0.0,0.0,0.0,0.0,0.0,10.977079511160019,0.0,0.0,0.0 -12758,catchment_outflow,0.17598736782169694,2013-01-18,0.0,0.0,1.1889107500660863e-05,0.0,0.0,0.0,0.0,0.0,7.8465110337318364,0.0,0.0,0.0 -12759,reservoir_outflow,0.02,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12760,gw1_gw2,0.0,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12761,gw2_gw1,1.9123539047782857e-05,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12762,urban_drainage,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12763,percolation,0.16722583787101108,2013-01-19,0.0,0.0,8.84967713826623e-06,0.0,0.0,0.0,0.0,0.0,7.963675849984911,0.0,0.0,0.0 -12764,runoff,0.022202256263826145,2013-01-19,0.0,0.0,1.0808656470812083e-06,0.0,0.0,0.0,0.0,0.0,5.393778220563514,0.0,0.0,0.0 -12765,storm_outflow,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12766,baseflow,0.09331490893837013,2013-01-19,0.0,0.0,9.536304571050495e-06,0.0,0.0,0.0,0.0,0.0,10.963579017031684,0.0,0.0,0.0 -12767,catchment_outflow,0.11551716520219628,2013-01-19,0.0,0.0,1.0617170218131704e-05,0.0,0.0,0.0,0.0,0.0,9.893070193471164,0.0,0.0,0.0 -12768,reservoir_outflow,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12769,gw1_gw2,0.0,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12770,gw2_gw1,1.899604878730088e-05,2013-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12771,urban_drainage,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12772,percolation,0.16501347053522664,2013-01-20,0.0,0.0,8.731154927543413e-06,0.0,0.0,0.0,0.0,0.0,7.939989472913498,0.0,0.0,0.0 -12773,runoff,0.025235363328737374,2013-01-20,0.0,0.0,1.0595969578066554e-06,0.0,0.0,0.0,0.0,0.0,4.959259619990679,0.0,0.0,0.0 -12774,storm_outflow,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12775,baseflow,0.09349415534236229,2013-01-20,0.0,0.0,9.53429169694173e-06,0.0,0.0,0.0,0.0,0.0,10.950237728415246,0.0,0.0,0.0 -12776,catchment_outflow,0.11872951867109965,2013-01-20,0.0,0.0,1.0593888654748385e-05,0.0,0.0,0.0,0.0,0.0,9.676885398238522,0.0,0.0,0.0 -12777,reservoir_outflow,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12778,gw1_gw2,0.0,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12779,gw2_gw1,1.8869408462052208e-05,2013-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12780,urban_drainage,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12781,percolation,0.16171320112452212,2013-01-21,0.0,0.0,8.556531828992545e-06,0.0,0.0,0.0,0.0,0.0,7.939989472913499,0.0,0.0,0.0 -12782,runoff,0.019844087034524553,2013-01-21,0.0,0.0,8.476775662453242e-07,0.0,0.0,0.0,0.0,0.0,4.95561455167104,0.0,0.0,0.0 -12783,storm_outflow,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12784,baseflow,0.09366470295681768,2013-01-21,0.0,0.0,9.531847297271857e-06,0.0,0.0,0.0,0.0,0.0,10.937244656686795,0.0,0.0,0.0 -12785,catchment_outflow,0.11350878999134223,2013-01-21,0.0,0.0,1.0379524863517181e-05,0.0,0.0,0.0,0.0,0.0,9.891510767519987,0.0,0.0,0.0 -12786,reservoir_outflow,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12787,gw1_gw2,0.0,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12788,gw2_gw1,1.8743612405813794e-05,2013-01-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12789,urban_drainage,0.018,2013-01-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 -12790,percolation,0.16153340245306186,2013-01-22,0.0,0.0,8.54436933169776e-06,0.0,0.0,0.0,0.0,0.0,7.867763581583282,0.0,0.0,0.0 -12791,runoff,0.03450723535376722,2013-01-22,0.0,0.0,1.208035850613142e-06,0.0,0.0,0.0,0.0,0.0,4.324101442547188,0.0,0.0,0.0 -12792,storm_outflow,0.018,2013-01-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 -12793,baseflow,0.0938343747055583,2013-01-22,0.0,0.0,9.529378602357921e-06,0.0,0.0,0.0,0.0,0.0,10.924034579799127,0.0,0.0,0.0 -12794,catchment_outflow,0.14634161005932553,2013-01-22,0.0,0.0,1.4737414452971062e-05,0.0,0.0,0.0,0.0,0.0,8.433534559655067,0.0,0.0,0.0 -12795,reservoir_outflow,0.009,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12796,gw1_gw2,0.0,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12797,gw2_gw1,1.8618654989666085e-05,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12798,urban_drainage,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12799,percolation,0.15936707895398514,2013-01-23,0.0,0.0,8.429504576276618e-06,0.0,0.0,0.0,0.0,0.0,7.843673603993154,0.0,0.0,0.0 -12800,runoff,0.02631420790282306,2013-01-23,0.0,0.0,1.1531707845332235e-06,0.0,0.0,0.0,0.0,0.0,4.527531596550584,0.0,0.0,0.0 -12801,storm_outflow,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12802,baseflow,0.09399820646617936,2013-01-23,0.0,0.0,9.526628917292717e-06,0.0,0.0,0.0,0.0,0.0,10.910978263373167,0.0,0.0,0.0 -12803,catchment_outflow,0.12031241436900242,2013-01-23,0.0,0.0,1.067979970182594e-05,0.0,0.0,0.0,0.0,0.0,9.514818576874266,0.0,0.0,0.0 -12804,reservoir_outflow,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12805,gw1_gw2,0.0,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12806,gw2_gw1,1.8494530623058838e-05,2013-01-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12807,urban_drainage,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12808,percolation,0.15617973737490545,2013-01-24,0.0,0.0,8.260914484751085e-06,0.0,0.0,0.0,0.0,0.0,7.843673603993153,0.0,0.0,0.0 -12809,runoff,0.018063732497740518,2013-01-24,0.0,0.0,9.225366276265785e-07,0.0,0.0,0.0,0.0,0.0,4.69216296867689,0.0,0.0,0.0 -12810,storm_outflow,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12811,baseflow,0.09415366029345118,2013-01-24,0.0,0.0,9.523464631211362e-06,0.0,0.0,0.0,0.0,0.0,10.898258342696218,0.0,0.0,0.0 -12812,catchment_outflow,0.1122173927911917,2013-01-24,0.0,0.0,1.0446001258837941e-05,0.0,0.0,0.0,0.0,0.0,9.899257707381604,0.0,0.0,0.0 -12813,reservoir_outflow,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12814,gw1_gw2,0.0,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12815,gw2_gw1,1.8371233752034755e-05,2013-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12816,urban_drainage,0.04,2013-01-25,0.0,0.0,1.7910447761194032e-06,0.0,0.0,0.0,0.0,0.0,3.939285714000001,0.0,0.0,0.0 -12817,percolation,0.15890762273868736,2013-01-25,0.0,0.0,8.39852474147187e-06,0.0,0.0,0.0,0.0,0.0,7.723297608388759,0.0,0.0,0.0 -12818,runoff,0.05448742886484534,2013-01-25,0.0,0.0,1.7474577901539436e-06,0.0,0.0,0.0,0.0,0.0,4.366401382933879,0.0,0.0,0.0 -12819,storm_outflow,0.04,2013-01-25,0.0,0.0,1.7910447761194032e-06,0.0,0.0,0.0,0.0,0.0,3.939285714000001,0.0,0.0,0.0 -12820,baseflow,0.09431554519956427,2013-01-25,0.0,0.0,9.520652281487013e-06,0.0,0.0,0.0,0.0,0.0,10.884885004782783,0.0,0.0,0.0 -12821,catchment_outflow,0.1888029740644096,2013-01-25,0.0,0.0,1.305915484776036e-05,0.0,0.0,0.0,0.0,0.0,7.532186841948141,0.0,0.0,0.0 -12822,reservoir_outflow,0.033499999999999995,2013-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12823,gw1_gw2,0.0,2013-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12824,gw2_gw1,1.8248758860472947e-05,2013-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12825,urban_drainage,0.04,2013-01-26,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0 -12826,percolation,0.1710410582392291,2013-01-26,0.0,0.0,8.973195795659973e-06,0.0,0.0,0.0,0.0,0.0,7.455273030125969,0.0,0.0,0.0 -12827,runoff,0.13192823229833645,2013-01-26,0.0,0.0,3.873438062181622e-06,0.0,0.0,0.0,0.0,0.0,4.468928787334068,0.0,0.0,0.0 -12828,storm_outflow,0.04,2013-01-26,0.0,0.0,5.970149253731343e-07,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0 -12829,baseflow,0.09450735898216342,2013-01-26,0.0,0.0,9.519283640272446e-06,0.0,0.0,0.0,0.0,0.0,10.869367576621292,0.0,0.0,0.0 -12830,catchment_outflow,0.2664355912804999,2013-01-26,0.0,0.0,1.3989736627827201e-05,0.0,0.0,0.0,0.0,0.0,6.6846994974453775,0.0,0.0,0.0 -12831,reservoir_outflow,0.0605,2013-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12832,gw1_gw2,0.0,2013-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12833,gw2_gw1,1.8127100468134928e-05,2013-01-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12834,urban_drainage,0.04,2013-01-27,0.0,0.0,8.425613866153106e-07,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0 -12835,percolation,0.17205233287348373,2013-01-27,0.0,0.0,9.008187619129577e-06,0.0,0.0,0.0,0.0,0.0,7.390458369696871,0.0,0.0,0.0 -12836,runoff,0.09288755581717474,2013-01-27,0.0,0.0,3.8136029143546425e-06,0.0,0.0,0.0,0.0,0.0,4.674090813698536,0.0,0.0,0.0 -12837,storm_outflow,0.04,2013-01-27,0.0,0.0,8.425613866153106e-07,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0 -12838,baseflow,0.09470122141689173,2013-01-27,0.0,0.0,9.518005900219587e-06,0.0,0.0,0.0,0.0,0.0,10.85356644871737,0.0,0.0,0.0 -12839,catchment_outflow,0.22758877723406645,2013-01-27,0.0,0.0,1.4174170201189541e-05,0.0,0.0,0.0,0.0,0.0,7.150976539513462,0.0,0.0,0.0 -12840,reservoir_outflow,0.008,2013-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12841,gw1_gw2,0.0,2013-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12842,gw2_gw1,1.8006253131552798e-05,2013-01-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12843,urban_drainage,0.04,2013-01-28,0.0,0.0,1.130358739547817e-06,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0 -12844,percolation,0.17271028208060205,2013-01-28,0.0,0.0,9.026128145323339e-06,0.0,0.0,0.0,0.0,0.0,7.336551890999767,0.0,0.0,0.0 -12845,runoff,0.08991483516853002,2013-01-28,0.0,0.0,3.711229926738224e-06,0.0,0.0,0.0,0.0,0.0,4.767204423985279,0.0,0.0,0.0 -12846,storm_outflow,0.04,2013-01-28,0.0,0.0,1.130358739547817e-06,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0 -12847,baseflow,0.094896244068551,2013-01-28,0.0,0.0,9.516776205832348e-06,0.0,0.0,0.0,0.0,0.0,10.837564114212269,0.0,0.0,0.0 -12848,catchment_outflow,0.22481107923708105,2013-01-28,0.0,0.0,1.435836487211839e-05,0.0,0.0,0.0,0.0,0.0,7.227930834136282,0.0,0.0,0.0 -12849,reservoir_outflow,0.006999999999999999,2013-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12850,gw1_gw2,0.0,2013-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12851,gw2_gw1,1.7886211444029245e-05,2013-01-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12852,urban_drainage,0.04,2013-01-29,0.0,0.0,7.761824036306869e-07,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0 -12853,percolation,0.18081058099379987,2013-01-29,0.0,0.0,9.382812713087117e-06,0.0,0.0,0.0,0.0,0.0,7.205079967926501,0.0,0.0,0.0 -12854,runoff,0.13948305125836388,2013-01-29,0.0,0.0,4.7596743769580575e-06,0.0,0.0,0.0,0.0,0.0,4.948490533583281,0.0,0.0,0.0 -12855,storm_outflow,0.04,2013-01-29,0.0,0.0,7.761824036306869e-07,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0 -12856,baseflow,0.09511102991086412,2013-01-29,0.0,0.0,9.516441297100484e-06,0.0,0.0,0.0,0.0,0.0,10.820300302392647,0.0,0.0,0.0 -12857,catchment_outflow,0.274594081169228,2013-01-29,0.0,0.0,1.5052298077689228e-05,0.0,0.0,0.0,0.0,0.0,6.926722090942332,0.0,0.0,0.0 -12858,reservoir_outflow,0.039,2013-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12859,gw1_gw2,0.0,2013-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12860,gw2_gw1,1.7766970034394094e-05,2013-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12861,urban_drainage,0.04,2013-01-30,0.0,0.0,1.122681477926921e-06,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0 -12862,percolation,0.18035780383928948,2013-01-30,0.0,0.0,9.34284248851735e-06,0.0,0.0,0.0,0.0,0.0,7.175844483017311,0.0,0.0,0.0 -12863,runoff,0.10079729561586653,2013-01-30,0.0,0.0,4.300026267206362e-06,0.0,0.0,0.0,0.0,0.0,5.064796284046184,0.0,0.0,0.0 -12864,storm_outflow,0.04,2013-01-30,0.0,0.0,1.122681477926921e-06,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0 -12865,baseflow,0.0953241468456852,2013-01-30,0.0,0.0,9.516007300079025e-06,0.0,0.0,0.0,0.0,0.0,10.803061594533139,0.0,0.0,0.0 -12866,catchment_outflow,0.23612144246155176,2013-01-30,0.0,0.0,1.4938715045212309e-05,0.0,0.0,0.0,0.0,0.0,7.30270476658885,0.0,0.0,0.0 -12867,reservoir_outflow,0.002999999999999999,2013-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12868,gw1_gw2,0.0,2013-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12869,gw2_gw1,1.7648523567892482e-05,2013-01-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12870,urban_drainage,0.04,2013-01-31,0.0,0.0,1.2178472403496567e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -12871,percolation,0.18243000269500637,2013-01-31,0.0,0.0,9.418736794172005e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -12872,runoff,0.11061676472458008,2013-01-31,0.0,0.0,4.3158581985150975e-06,0.0,0.0,0.0,0.0,0.0,5.248053873708764,0.0,0.0,0.0 -12873,storm_outflow,0.04,2013-01-31,0.0,0.0,1.2178472403496567e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -12874,baseflow,0.09554191148530851,2013-01-31,0.0,0.0,9.515764123814256e-06,0.0,0.0,0.0,0.0,0.0,10.785540304025412,0.0,0.0,0.0 -12875,catchment_outflow,0.24615867620988857,2013-01-31,0.0,0.0,1.504946956267901e-05,0.0,0.0,0.0,0.0,0.0,7.3339489875917705,0.0,0.0,0.0 -12876,reservoir_outflow,0.013999999999999999,2013-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12877,gw1_gw2,0.0,2013-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12878,gw2_gw1,1.7530866744053242e-05,2013-01-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12879,urban_drainage,0.03299999999999997,2013-02-01,0.0,0.0,2.52230905043707e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -12880,percolation,0.17878140264110623,2013-02-01,0.0,0.0,9.230362058288564e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -12881,runoff,0.07378533146790112,2013-02-01,0.0,0.0,3.452686558812078e-06,0.0,0.0,0.0,0.0,0.0,5.21696788234107,0.0,0.0,0.0 -12882,storm_outflow,0.03299999999999997,2013-02-01,0.0,0.0,2.52230905043707e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -12883,baseflow,0.09575001021319801,2013-02-01,0.0,0.0,9.515050618650442e-06,0.0,0.0,0.0,0.0,0.0,10.768488545710257,0.0,0.0,0.0 -12884,catchment_outflow,0.2025353416810991,2013-02-01,0.0,0.0,1.549004622789959e-05,0.0,0.0,0.0,0.0,0.0,7.7830054213343,0.0,0.0,0.0 -12885,reservoir_outflow,0.0,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12886,gw1_gw2,0.0,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12887,gw2_gw1,1.7413994298998148e-05,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12888,urban_drainage,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12889,percolation,0.1752057745882841,2013-02-02,0.0,0.0,9.045754817122792e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241233,0.0,0.0,0.0 -12890,runoff,0.05804109027705857,2013-02-02,0.0,0.0,2.762149247049662e-06,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 -12891,storm_outflow,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12892,baseflow,0.09594864962413574,2013-02-02,0.0,0.0,9.513877379146622e-06,0.0,0.0,0.0,0.0,0.0,10.751890261085075,0.0,0.0,0.0 -12893,catchment_outflow,0.1539897399011943,2013-02-02,0.0,0.0,1.2276026626196284e-05,0.0,0.0,0.0,0.0,0.0,8.662459363960762,0.0,0.0,0.0 -12894,reservoir_outflow,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12895,gw1_gw2,0.0,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12896,gw2_gw1,1.7297901004020844e-05,2013-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12897,urban_drainage,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12898,percolation,0.17170165909651844,2013-02-03,0.0,0.0,8.864839720780337e-06,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -12899,runoff,0.04643287222164686,2013-02-03,0.0,0.0,2.2097193976397303e-06,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 -12900,storm_outflow,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12901,baseflow,0.0961380321478167,2013-02-03,0.0,0.0,9.512254785000706e-06,0.0,0.0,0.0,0.0,0.0,10.735730096177223,0.0,0.0,0.0 -12902,catchment_outflow,0.14257090436946357,2013-02-03,0.0,0.0,1.1721974182640435e-05,0.0,0.0,0.0,0.0,0.0,8.935570557493135,0.0,0.0,0.0 -12903,reservoir_outflow,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12904,gw1_gw2,0.0,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12905,gw2_gw1,1.7182581663810483e-05,2013-02-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12906,urban_drainage,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12907,percolation,0.169982773833338,2013-02-04,0.0,0.0,8.772295197645215e-06,0.0,0.0,0.0,0.0,0.0,7.129197127589859,0.0,0.0,0.0 -12908,runoff,0.04888152037929086,2013-02-04,0.0,0.0,2.050283089046734e-06,0.0,0.0,0.0,0.0,0.0,5.565623893603972,0.0,0.0,0.0 -12909,storm_outflow,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12910,baseflow,0.0963226440020305,2013-02-04,0.0,0.0,9.510404886032318e-06,0.0,0.0,0.0,0.0,0.0,10.719818768049931,0.0,0.0,0.0 -12911,catchment_outflow,0.14520416438132136,2013-02-04,0.0,0.0,1.1560687975079052e-05,0.0,0.0,0.0,0.0,0.0,8.984710943370516,0.0,0.0,0.0 -12912,reservoir_outflow,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12913,gw1_gw2,0.0,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12914,gw2_gw1,1.706803111947153e-05,2013-02-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12915,urban_drainage,0.002000000000000001,2013-02-05,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -12916,percolation,0.16858187843832048,2013-02-05,0.0,0.0,8.696182045094339e-06,0.0,0.0,0.0,0.0,0.0,7.128184783444413,0.0,0.0,0.0 -12917,runoff,0.04796649287962945,2013-02-05,0.0,0.0,1.9713356425774833e-06,0.0,0.0,0.0,0.0,0.0,5.764574376286292,0.0,0.0,0.0 -12918,storm_outflow,0.002000000000000001,2013-02-05,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -12919,baseflow,0.09650329208812122,2013-02-05,0.0,0.0,9.508369328929974e-06,0.0,0.0,0.0,0.0,0.0,10.704133178711828,0.0,0.0,0.0 -12920,catchment_outflow,0.14646978496775068,2013-02-05,0.0,0.0,1.547970497150746e-05,0.0,0.0,0.0,0.0,0.0,9.025443660442816,0.0,0.0,0.0 -12921,reservoir_outflow,0.0010000000000000005,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12922,gw1_gw2,0.0,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12923,gw2_gw1,1.6954244245326323e-05,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12924,urban_drainage,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12925,percolation,0.16521024086955408,2013-02-06,0.0,0.0,8.522258404192452e-06,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 -12926,runoff,0.03276263968854777,2013-02-06,0.0,0.0,1.5770685140619868e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 -12927,storm_outflow,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12928,baseflow,0.0966750594600748,2013-02-06,0.0,0.0,9.50590405161813e-06,0.0,0.0,0.0,0.0,0.0,10.688855626801885,0.0,0.0,0.0 -12929,catchment_outflow,0.12943769914862258,2013-02-06,0.0,0.0,1.1082972565680116e-05,0.0,0.0,0.0,0.0,0.0,9.422178515639496,0.0,0.0,0.0 -12930,reservoir_outflow,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12931,gw1_gw2,0.0,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12932,gw2_gw1,1.6841215950336166e-05,2013-02-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12933,urban_drainage,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12934,percolation,0.161906036052163,2013-02-07,0.0,0.0,8.351813236108604e-06,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 -12935,runoff,0.028324733581620055,2013-02-07,0.0,0.0,1.2616548112495893e-06,0.0,0.0,0.0,0.0,0.0,5.670462925461687,0.0,0.0,0.0 -12936,storm_outflow,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12937,baseflow,0.09683813690155503,2013-02-07,0.0,0.0,9.503018824579355e-06,0.0,0.0,0.0,0.0,0.0,10.673972696368171,0.0,0.0,0.0 -12938,catchment_outflow,0.1251628704831751,2013-02-07,0.0,0.0,1.0764673635828944e-05,0.0,0.0,0.0,0.0,0.0,9.541663404588146,0.0,0.0,0.0 -12939,reservoir_outflow,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12940,gw1_gw2,0.0,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12941,gw2_gw1,1.6728941177568406e-05,2013-02-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12942,urban_drainage,0.008,2013-02-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 -12943,percolation,0.16068562338883877,2013-02-08,0.0,0.0,8.288624928519996e-06,0.0,0.0,0.0,0.0,0.0,7.116189371345609,0.0,0.0,0.0 -12944,runoff,0.03477346032190635,2013-02-08,0.0,0.0,1.3554837061115618e-06,0.0,0.0,0.0,0.0,0.0,5.665781751723586,0.0,0.0,0.0 -12945,storm_outflow,0.008,2013-02-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 -12946,baseflow,0.09699775561777324,2013-02-08,0.0,0.0,9.499982839839206e-06,0.0,0.0,0.0,0.0,0.0,10.65923821545615,0.0,0.0,0.0 -12947,catchment_outflow,0.1397712159396796,2013-02-08,0.0,0.0,1.3855466545950768e-05,0.0,0.0,0.0,0.0,0.0,9.100368651092827,0.0,0.0,0.0 -12948,reservoir_outflow,0.004,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12949,gw1_gw2,0.0,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12950,gw2_gw1,1.661741490277535e-05,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12951,urban_drainage,0.04,2013-02-09,0.0,0.0,7.999999999999999e-07,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 -12952,percolation,0.16290782725385974,2013-02-09,0.0,0.0,8.39585184299784e-06,0.0,0.0,0.0,0.0,0.0,7.0731961318885235,0.0,0.0,0.0 -12953,runoff,0.05934813809184191,2013-02-09,0.0,0.0,1.994385008383388e-06,0.0,0.0,0.0,0.0,0.0,5.4756232351553455,0.0,0.0,0.0 -12954,storm_outflow,0.04,2013-02-09,0.0,0.0,7.999999999999999e-07,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 -12955,baseflow,0.09716253079686346,2013-02-09,0.0,0.0,9.497222512347104e-06,0.0,0.0,0.0,0.0,0.0,10.644206846895559,0.0,0.0,0.0 -12956,catchment_outflow,0.1965106688887054,2013-02-09,0.0,0.0,1.2291607520730491e-05,0.0,0.0,0.0,0.0,0.0,7.885651703654842,0.0,0.0,0.0 -12957,reservoir_outflow,0.025,2013-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12958,gw1_gw2,0.0,2013-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12959,gw2_gw1,1.650663213670356e-05,2013-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12960,urban_drainage,0.039999999999999994,2013-02-10,0.0,0.0,3.157894736842105e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -12961,percolation,0.17626314009414246,2013-02-10,0.0,0.0,9.000533152784627e-06,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 -12962,runoff,0.14589090428124063,2013-02-10,0.0,0.0,4.170835828862521e-06,0.0,0.0,0.0,0.0,0.0,5.108009940414348,0.0,0.0,0.0 -12963,storm_outflow,0.039999999999999994,2013-02-10,0.0,0.0,3.157894736842105e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -12964,baseflow,0.09736028232010666,2013-02-10,0.0,0.0,9.495980788948199e-06,0.0,0.0,0.0,0.0,0.0,10.627351782438279,0.0,0.0,0.0 -12965,catchment_outflow,0.2832511866013473,2013-02-10,0.0,0.0,1.398260609149493e-05,0.0,0.0,0.0,0.0,0.0,6.907566790619567,0.0,0.0,0.0 -12966,reservoir_outflow,0.071,2013-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12967,gw1_gw2,0.0,2013-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12968,gw2_gw1,1.639658792207399e-05,2013-02-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12969,urban_drainage,0.04,2013-02-11,0.0,0.0,7.933518005540166e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -12970,percolation,0.17273787729225956,2013-02-11,0.0,0.0,8.820522489728932e-06,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 -12971,runoff,0.07139662214683036,2013-02-11,0.0,0.0,3.336668663090017e-06,0.0,0.0,0.0,0.0,0.0,5.555132322547769,0.0,0.0,0.0 -12972,storm_outflow,0.04,2013-02-11,0.0,0.0,7.933518005540166e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -12973,baseflow,0.09754872630753704,2013-02-11,0.0,0.0,9.49429214320015e-06,0.0,0.0,0.0,0.0,0.0,10.61094034532514,0.0,0.0,0.0 -12974,catchment_outflow,0.2089453484543674,2013-02-11,0.0,0.0,1.3624312606844184e-05,0.0,0.0,0.0,0.0,0.0,7.697628790261069,0.0,0.0,0.0 -12975,reservoir_outflow,0.0,2013-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12976,gw1_gw2,0.0,2013-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12977,gw2_gw1,1.628727733606894e-05,2013-02-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12978,urban_drainage,0.035,2013-02-12,0.0,0.0,2.090858725761773e-06,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -12979,percolation,0.16928311974641436,2013-02-12,0.0,0.0,8.644112039934355e-06,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 -12980,runoff,0.05606273871672966,2013-02-12,0.0,0.0,2.6693349304720132e-06,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 -12981,storm_outflow,0.035,2013-02-12,0.0,0.0,2.090858725761773e-06,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -12982,baseflow,0.09772806229113425,2013-02-12,0.0,0.0,9.492166692941985e-06,0.0,0.0,0.0,0.0,0.0,10.59495771959089,0.0,0.0,0.0 -12983,catchment_outflow,0.1887908010078639,2013-02-12,0.0,0.0,1.4252360349175771e-05,0.0,0.0,0.0,0.0,0.0,7.9615705118886035,0.0,0.0,0.0 -12984,reservoir_outflow,0.0,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12985,gw1_gw2,0.0,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12986,gw2_gw1,1.617869548731221e-05,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12987,urban_drainage,0.04,2013-02-13,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -12988,percolation,0.1764862166383655,2013-02-13,0.0,0.0,8.964949244195513e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -12989,runoff,0.11729959662045358,2013-02-13,0.0,0.0,3.7811994279104304e-06,0.0,0.0,0.0,0.0,0.0,5.0960410888442915,0.0,0.0,0.0 -12990,storm_outflow,0.04,2013-02-13,0.0,0.0,5.633802816901408e-07,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -12991,baseflow,0.09792495767700231,2013-02-13,0.0,0.0,9.490848649320118e-06,0.0,0.0,0.0,0.0,0.0,10.577896226704054,0.0,0.0,0.0 -12992,catchment_outflow,0.2552245542974559,2013-02-13,0.0,0.0,1.3835428358920689e-05,0.0,0.0,0.0,0.0,0.0,7.113189999417333,0.0,0.0,0.0 -12993,reservoir_outflow,0.035500000000000004,2013-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12994,gw1_gw2,0.0,2013-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12995,gw2_gw1,1.6070837517290217e-05,2013-02-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12996,urban_drainage,0.012000000000000007,2013-02-14,0.0,0.0,1.4366197183098591e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -12997,percolation,0.17295649230559826,2013-02-14,0.0,0.0,8.785650259311604e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -12998,runoff,0.06453867588814219,2013-02-14,0.0,0.0,3.024959542328344e-06,0.0,0.0,0.0,0.0,0.0,5.347272997167171,0.0,0.0,0.0 -12999,storm_outflow,0.012000000000000007,2013-02-14,0.0,0.0,1.4366197183098591e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -13000,baseflow,0.09811253651357381,2013-02-14,0.0,0.0,9.489085653345097e-06,0.0,0.0,0.0,0.0,0.0,10.56128312232937,0.0,0.0,0.0 -13001,catchment_outflow,0.174651212401716,2013-02-14,0.0,0.0,1.39506649139833e-05,0.0,0.0,0.0,0.0,0.0,8.221284684635892,0.0,0.0,0.0 -13002,reservoir_outflow,0.0,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13003,gw1_gw2,0.0,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13004,gw2_gw1,1.5963698600707234e-05,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13005,urban_drainage,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13006,percolation,0.1694973624594863,2013-02-15,0.0,0.0,8.609937254125373e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295023,0.0,0.0,0.0 -13007,runoff,0.051293475368308396,2013-02-15,0.0,0.0,2.4199676338626754e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13008,storm_outflow,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13009,baseflow,0.09829099857843861,2013-02-15,0.0,0.0,9.486887782347049e-06,0.0,0.0,0.0,0.0,0.0,10.545103461292857,0.0,0.0,0.0 -13010,catchment_outflow,0.149584473946747,2013-02-15,0.0,0.0,1.1906855416209723e-05,0.0,0.0,0.0,0.0,0.0,8.763952606207866,0.0,0.0,0.0 -13011,reservoir_outflow,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13012,gw1_gw2,0.0,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13013,gw2_gw1,1.5857273943176155e-05,2013-02-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13014,urban_drainage,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13015,percolation,0.16610741521029657,2013-02-16,0.0,0.0,8.437738509042865e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295025,0.0,0.0,0.0 -13016,runoff,0.04141239608861509,2013-02-16,0.0,0.0,1.9359741070901404e-06,0.0,0.0,0.0,0.0,0.0,5.3506236401548595,0.0,0.0,0.0 -13017,storm_outflow,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13018,baseflow,0.09846053962001826,2013-02-16,0.0,0.0,9.48426490916379e-06,0.0,0.0,0.0,0.0,0.0,10.52934293589918,0.0,0.0,0.0 -13019,catchment_outflow,0.13987293570863335,2013-02-16,0.0,0.0,1.142023901625393e-05,0.0,0.0,0.0,0.0,0.0,8.996071516231105,0.0,0.0,0.0 -13020,reservoir_outflow,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13021,gw1_gw2,0.0,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13022,gw2_gw1,1.5751558783883014e-05,2013-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13023,urban_drainage,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13024,percolation,0.16278526690609063,2013-02-17,0.0,0.0,8.268983738862009e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13025,runoff,0.032827824235717375,2013-02-17,0.0,0.0,1.5487792856721124e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13026,storm_outflow,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13027,baseflow,0.09862135143823343,2013-02-17,0.0,0.0,9.481226706238036e-06,0.0,0.0,0.0,0.0,0.0,10.513987842272488,0.0,0.0,0.0 -13028,catchment_outflow,0.1314491756739508,2013-02-17,0.0,0.0,1.1030005991910148e-05,0.0,0.0,0.0,0.0,0.0,9.224551451268004,0.0,0.0,0.0 -13029,reservoir_outflow,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13030,gw1_gw2,0.0,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13031,gw2_gw1,1.5646548391679007e-05,2013-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13032,urban_drainage,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13033,percolation,0.15952956156796883,2013-02-18,0.0,0.0,8.103604064084769e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13034,runoff,0.0262622593885739,2013-02-18,0.0,0.0,1.2390234285376897e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13035,storm_outflow,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13036,baseflow,0.09877362196355778,2013-02-18,0.0,0.0,9.477782649632652e-06,0.0,0.0,0.0,0.0,0.0,10.499025048811431,0.0,0.0,0.0 -13037,catchment_outflow,0.12503588135213167,2013-02-18,0.0,0.0,1.0716806078170342e-05,0.0,0.0,0.0,0.0,0.0,9.417708851252037,0.0,0.0,0.0 -13038,reservoir_outflow,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13039,gw1_gw2,0.0,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13040,gw2_gw1,1.554223806934374e-05,2013-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13041,urban_drainage,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13042,percolation,0.15633897033660943,2013-02-19,0.0,0.0,7.941531982803074e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295023,0.0,0.0,0.0 -13043,runoff,0.021009807510859117,2013-02-19,0.0,0.0,9.912187428301517e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13044,storm_outflow,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13045,baseflow,0.09891753533449041,2013-02-19,0.0,0.0,9.473942022965578e-06,0.0,0.0,0.0,0.0,0.0,10.484441966605036,0.0,0.0,0.0 -13046,catchment_outflow,0.11992734284534953,2013-02-19,0.0,0.0,1.046516076579573e-05,0.0,0.0,0.0,0.0,0.0,9.585095172815459,0.0,0.0,0.0 -13047,reservoir_outflow,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13048,gw1_gw2,0.0,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13049,gw2_gw1,1.5438623148433807e-05,2013-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13050,urban_drainage,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13051,percolation,0.15321219092987726,2013-02-20,0.0,0.0,7.782701343147013e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13052,runoff,0.016807846008687295,2013-02-20,0.0,0.0,7.929749942641214e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13053,storm_outflow,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13054,baseflow,0.09905327197347888,2013-02-20,0.0,0.0,9.469713921266033e-06,0.0,0.0,0.0,0.0,0.0,10.470226521668632,0.0,0.0,0.0 -13055,catchment_outflow,0.11586111798216617,2013-02-20,0.0,0.0,1.0262688915530153e-05,0.0,0.0,0.0,0.0,0.0,9.72756075501909,0.0,0.0,0.0 -13056,reservoir_outflow,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13057,gw1_gw2,0.0,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13058,gw2_gw1,1.5335698994256575e-05,2013-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13059,urban_drainage,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13060,percolation,0.1501479471112797,2013-02-21,0.0,0.0,7.627047316284072e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295025,0.0,0.0,0.0 -13061,runoff,0.013446276806949835,2013-02-21,0.0,0.0,6.34379995411297e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13062,storm_outflow,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13063,baseflow,0.09918100866132337,2013-02-21,0.0,0.0,9.465107254753578e-06,0.0,0.0,0.0,0.0,0.0,10.45636712887049,0.0,0.0,0.0 -13064,catchment_outflow,0.1126272854682732,2013-02-21,0.0,0.0,1.0099487250164876e-05,0.0,0.0,0.0,0.0,0.0,9.846830005681301,0.0,0.0,0.0 -13065,reservoir_outflow,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13066,gw1_gw2,0.0,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13067,gw2_gw1,1.5233461000718762e-05,2013-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13068,urban_drainage,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13069,percolation,0.1471449881690541,2013-02-22,0.0,0.0,7.47450636995839e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13070,runoff,0.010757021445559869,2013-02-22,0.0,0.0,5.075039963290377e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13071,storm_outflow,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13072,baseflow,0.09930091861009269,2013-02-22,0.0,0.0,9.46013075254159e-06,0.0,0.0,0.0,0.0,0.0,10.442852667430246,0.0,0.0,0.0 -13073,catchment_outflow,0.11005794005565256,2013-02-22,0.0,0.0,9.967634748870628e-06,0.0,0.0,0.0,0.0,0.0,9.945159962275895,0.0,0.0,0.0 -13074,reservoir_outflow,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13075,gw1_gw2,0.0,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13076,gw2_gw1,1.5131904594234413e-05,2013-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13077,urban_drainage,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13078,percolation,0.14420208840567303,2013-02-23,0.0,0.0,7.325016242559223e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13079,runoff,0.008605617156447896,2013-02-23,0.0,0.0,4.060031970632302e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13080,storm_outflow,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13081,baseflow,0.09941317153458164,2013-02-23,0.0,0.0,9.454792966266634e-06,0.0,0.0,0.0,0.0,0.0,10.429672457879626,0.0,0.0,0.0 -13082,catchment_outflow,0.10801878869102953,2013-02-23,0.0,0.0,9.860796163329865e-06,0.0,0.0,0.0,0.0,0.0,10.02505207821964,0.0,0.0,0.0 -13083,reservoir_outflow,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13084,gw1_gw2,0.0,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13085,gw2_gw1,1.5031025230172192e-05,2013-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13086,urban_drainage,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13087,percolation,0.14131804663755956,2013-02-24,0.0,0.0,7.1785159177080365e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13088,runoff,0.006884493725158316,2013-02-24,0.0,0.0,3.2480255765058404e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13089,storm_outflow,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13090,baseflow,0.09951793372233908,2013-02-24,0.0,0.0,9.449102273645237e-06,0.0,0.0,0.0,0.0,0.0,10.416816240384605,0.0,0.0,0.0 -13091,catchment_outflow,0.1064024274474974,2013-02-24,0.0,0.0,9.773904831295821e-06,0.0,0.0,0.0,0.0,0.0,10.089034488403462,0.0,0.0,0.0 -13092,reservoir_outflow,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13093,gw1_gw2,0.0,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13094,gw2_gw1,1.4930818395342273e-05,2013-02-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13095,urban_drainage,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13096,percolation,0.13849168570480838,2013-02-25,0.0,0.0,7.034945599353877e-06,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -13097,runoff,0.005507594980126652,2013-02-25,0.0,0.0,2.598420461204672e-07,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -13098,storm_outflow,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13099,baseflow,0.09961536810229525,2013-02-25,0.0,0.0,9.443066881959509e-06,0.0,0.0,0.0,0.0,0.0,10.404274154336065,0.0,0.0,0.0 -13100,catchment_outflow,0.1051229630824219,2013-02-25,0.0,0.0,9.702908928079975e-06,0.0,0.0,0.0,0.0,0.0,10.139514279606825,0.0,0.0,0.0 -13101,reservoir_outflow,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13102,gw1_gw2,0.0,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13103,gw2_gw1,1.4831279605864721e-05,2013-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/docs/demo/data/processed/model_extensions.py b/docs/demo/data/processed/model_extensions.py deleted file mode 100644 index b3357366..00000000 --- a/docs/demo/data/processed/model_extensions.py +++ /dev/null @@ -1,54 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Dec 19 10:50:55 2023 - -@author: bdobson -""" -from wsimod.core import constants -import sys -import os -from tqdm import tqdm -from math import log10 -from wsimod.nodes.land import ImperviousSurface -from wsimod.nodes.nodes import QueueTank, Tank, ResidenceTank - -def extensions(model): - # Apply customations - model.nodes['my_groundwater'].residence_time *= 2 - - # Add dcorator to a reservoir - model.nodes['my_reservoir'].net_evaporation = model.nodes['my_reservoir'].empty_vqip() - model.nodes['my_reservoir'].mass_balance_out.append(lambda self=model.nodes['my_reservoir']: self.net_evaporation) - model.nodes['my_reservoir'].net_precipitation = model.nodes['my_reservoir'].empty_vqip() - model.nodes['my_reservoir'].mass_balance_in.append(lambda self=model.nodes['my_reservoir']: self.net_precipitation) - - model.nodes['my_reservoir'].make_abstractions = wrapper_reservoir(model.nodes['my_reservoir'], model.nodes['my_reservoir'].make_abstractions) - -def wrapper_reservoir(node, func): - def reservoir_functions_wrapper(): - # Initialise mass balance VQIPs - vqip_out = node.empty_vqip() - vqip_in = node.empty_vqip() - - # Calculate net change - net_in = node.get_data_input('precipitation') - node.get_data_input('et0') - net_in *= node.tank.area - - if net_in > 0: - # Add precipitation - vqip_in = node.v_change_vqip(node.empty_vqip(), net_in) - _ = node.tank.push_storage(vqip_in, force = True) - - else: - # Remove evaporation - evap = node.tank.evaporate(-net_in) - vqip_out = node.v_change_vqip(vqip_out, evap) - - # Store in mass balance states - node.net_evaporation = vqip_out - node.net_precipitation = vqip_in - - node.satisfy_environmental() - # Call whatever else was going happen - return func() - return reservoir_functions_wrapper \ No newline at end of file diff --git a/docs/demo/data/processed/settings_saved.yaml b/docs/demo/data/processed/settings_saved.yaml deleted file mode 100644 index 24266e30..00000000 --- a/docs/demo/data/processed/settings_saved.yaml +++ /dev/null @@ -1,1634 +0,0 @@ -extensions: - extension_file: C:\Users\leyan\Documents\GitHub\wsi\docs\demo\data\processed - new_classes: - Groundwater_h: C:\Users\leyan\Documents\GitHub\wsi\docs\demo\data\processed - -nodes: - my_sewer: - type_: Sewer - name: my_sewer - capacity: 0.04 - - my_land: - type_: Land - name: my_land - filename: timeseries_data_saved.csv - surfaces: - Impervious: - type_: ImperviousSurface - surface: urban - area: 10 - pollutant_load: - phosphate: 1.0e-07 - Pervious: - type_: PerviousSurface - surface: rural - area: 100 - depth: 0.5 - pollutant_load: - phosphate: 1.0e-07 - - my_groundwater: - type_: Groundwater - name: my_groundwater - capacity: 100 - area: 100 - - my_river: - type_: Node - name: my_river - - my_outlet: - type_: Waste - name: my_outlet - - my_reservoir: - type_: Reservoir - node_type_override: RiverReservoir - name: my_reservoir - capacity: 10 - area: 5 - initial_storage: 6 - environmental_flow: 0.1 - filename: timeseries_data_saved.csv - - gw1: - type_: Groundwater_h - name: gw1 - area: 100 - h_initial: 7.5 - z_surface: 20 - s: 0.3 - c_riverbed: 0 - c_aquifer: {'gw2' : 0.1} - - gw2: - type_: Groundwater_h - name: gw2 - area: 100 - h_initial: 10 - z_surface: 20 - s: 0.3 - c_riverbed: 0 - c_aquifer: {'gw1' : 0.1} - -arcs: - urban_drainage: - type_: Arc - name: urban_drainage - in_port: my_land - out_port: my_sewer - - percolation: - type_: Arc - name: percolation - in_port: my_land - out_port: my_groundwater - - runoff: - type_: Arc - name: runoff - in_port: my_land - out_port: my_river - - storm_outflow: - type_: Arc - name: storm_outflow - in_port: my_sewer - out_port: my_river - - baseflow: - type_: Arc - name: baseflow - in_port: my_groundwater - out_port: my_river - - catchment_outflow: - type_: Arc - name: catchment_outflow - in_port: my_river - out_port: my_outlet - - reservoir_outflow: - type_: Arc - name: reservoir_outflow - in_port: my_reservoir - out_port: my_outlet - - gw1_gw2: - type_: Arc - name: gw1_gw2 - in_port: gw1 - out_port: gw2 - - gw2_gw1: - type_: Arc - name: gw2_gw1 - in_port: gw2 - out_port: gw1 - -orchestration: -- FWTW: treat_water -- Demand: create_demand -- Land: run -- Groundwater: infiltrate -- Groundwater_h: infiltrate -- Sewer: make_discharge -- Foul: make_discharge -- WWTW: calculate_discharge -- Groundwater: distribute -- Groundwater_h: distribute_gw_gw -- Groundwater_h: distribute_gw_rw -- River: calculate_discharge -- Reservoir: make_abstractions -- Land: apply_irrigation -- WWTW: make_discharge -- Catchment: route - -pollutants: -- do -- org-phosphorus -- phosphate -- ammonia -- solids -- bod -- cod -- ph -- temperature -- nitrate -- nitrite -- org-nitrogen -additive_pollutants: -- org-phosphorus -- phosphate -- ammonia -- solids -- bod -- cod -- nitrate -- nitrite -- org-nitrogen -non_additive_pollutants: -- do -- temperature -- ph -float_accuracy: 1.0e-6 - -dates: -- "2009-03-03" -- "2009-03-04" -- "2009-03-05" -- "2009-03-06" -- "2009-03-07" -- "2009-03-08" -- "2009-03-09" -- "2009-03-10" -- "2009-03-11" -- "2009-03-12" -- "2009-03-13" -- "2009-03-14" -- "2009-03-15" -- "2009-03-16" -- "2009-03-17" -- "2009-03-18" -- "2009-03-19" -- "2009-03-20" -- "2009-03-21" -- "2009-03-22" -- "2009-03-23" -- "2009-03-24" -- "2009-03-25" -- "2009-03-26" -- "2009-03-27" -- "2009-03-28" -- "2009-03-29" -- "2009-03-30" -- "2009-03-31" -- "2009-04-01" -- "2009-04-02" -- "2009-04-03" -- "2009-04-04" -- "2009-04-05" -- "2009-04-06" -- "2009-04-07" -- "2009-04-08" -- "2009-04-09" -- "2009-04-10" -- "2009-04-11" -- "2009-04-12" -- "2009-04-13" -- "2009-04-14" -- "2009-04-15" -- "2009-04-16" -- "2009-04-17" -- "2009-04-18" -- "2009-04-19" -- "2009-04-20" -- "2009-04-21" -- "2009-04-22" -- "2009-04-23" -- "2009-04-24" -- "2009-04-25" -- "2009-04-26" -- "2009-04-27" -- "2009-04-28" -- "2009-04-29" -- "2009-04-30" -- "2009-05-01" -- "2009-05-02" -- "2009-05-03" -- "2009-05-04" -- "2009-05-05" -- "2009-05-06" -- "2009-05-07" -- "2009-05-08" -- "2009-05-09" -- "2009-05-10" -- "2009-05-11" -- "2009-05-12" -- "2009-05-13" -- "2009-05-14" -- "2009-05-15" -- "2009-05-16" -- "2009-05-17" -- "2009-05-18" -- "2009-05-19" -- "2009-05-20" -- "2009-05-21" -- "2009-05-22" -- "2009-05-23" -- "2009-05-24" -- "2009-05-25" -- "2009-05-26" -- "2009-05-27" -- "2009-05-28" -- "2009-05-29" -- "2009-05-30" -- "2009-05-31" -- "2009-06-01" -- "2009-06-02" -- "2009-06-03" -- "2009-06-04" -- "2009-06-05" -- "2009-06-06" -- "2009-06-07" -- "2009-06-08" -- "2009-06-09" -- "2009-06-10" -- "2009-06-11" -- "2009-06-12" -- "2009-06-13" -- "2009-06-14" -- "2009-06-15" -- "2009-06-16" -- "2009-06-17" -- "2009-06-18" -- "2009-06-19" -- "2009-06-20" -- "2009-06-21" -- "2009-06-22" -- "2009-06-23" -- "2009-06-24" -- "2009-06-25" -- "2009-06-26" -- "2009-06-27" -- "2009-06-28" -- "2009-06-29" -- "2009-06-30" -- "2009-07-01" -- "2009-07-02" -- "2009-07-03" -- "2009-07-04" -- "2009-07-05" -- "2009-07-06" -- "2009-07-07" -- "2009-07-08" -- "2009-07-09" -- "2009-07-10" -- "2009-07-11" -- "2009-07-12" -- "2009-07-13" -- "2009-07-14" -- "2009-07-15" -- "2009-07-16" -- "2009-07-17" -- "2009-07-18" -- "2009-07-19" -- "2009-07-20" -- "2009-07-21" -- "2009-07-22" -- "2009-07-23" -- "2009-07-24" -- "2009-07-25" -- "2009-07-26" -- "2009-07-27" -- "2009-07-28" -- "2009-07-29" -- "2009-07-30" -- "2009-07-31" -- "2009-08-01" -- "2009-08-02" -- "2009-08-03" -- "2009-08-04" -- "2009-08-05" -- "2009-08-06" -- "2009-08-07" -- "2009-08-08" -- "2009-08-09" -- "2009-08-10" -- "2009-08-11" -- "2009-08-12" -- "2009-08-13" -- "2009-08-14" -- "2009-08-15" -- "2009-08-16" -- "2009-08-17" -- "2009-08-18" -- "2009-08-19" -- "2009-08-20" -- "2009-08-21" -- "2009-08-22" -- "2009-08-23" -- "2009-08-24" -- "2009-08-25" -- "2009-08-26" -- "2009-08-27" -- "2009-08-28" -- "2009-08-29" -- "2009-08-30" -- "2009-08-31" -- "2009-09-01" -- "2009-09-02" -- "2009-09-03" -- "2009-09-04" -- "2009-09-05" -- "2009-09-06" -- "2009-09-07" -- "2009-09-08" -- "2009-09-09" -- "2009-09-10" -- "2009-09-11" -- "2009-09-12" -- "2009-09-13" -- "2009-09-14" -- "2009-09-15" -- "2009-09-16" -- "2009-09-17" -- "2009-09-18" -- "2009-09-19" -- "2009-09-20" -- "2009-09-21" -- "2009-09-22" -- "2009-09-23" -- "2009-09-24" -- "2009-09-25" -- "2009-09-26" -- "2009-09-27" -- "2009-09-28" -- "2009-09-29" -- "2009-09-30" -- "2009-10-01" -- "2009-10-02" -- "2009-10-03" -- "2009-10-04" -- "2009-10-05" -- "2009-10-06" -- "2009-10-07" -- "2009-10-08" -- "2009-10-09" -- "2009-10-10" -- "2009-10-11" -- "2009-10-12" -- "2009-10-13" -- "2009-10-14" -- "2009-10-15" -- "2009-10-16" -- "2009-10-17" -- "2009-10-18" -- "2009-10-19" -- "2009-10-20" -- "2009-10-21" -- "2009-10-22" -- "2009-10-23" -- "2009-10-24" -- "2009-10-25" -- "2009-10-26" -- "2009-10-27" -- "2009-10-28" -- "2009-10-29" -- "2009-10-30" -- "2009-10-31" -- "2009-11-01" -- "2009-11-02" -- "2009-11-03" -- "2009-11-04" -- "2009-11-05" -- "2009-11-06" -- "2009-11-07" -- "2009-11-08" -- "2009-11-09" -- "2009-11-10" -- "2009-11-11" -- "2009-11-12" -- "2009-11-13" -- "2009-11-14" -- "2009-11-15" -- "2009-11-16" -- "2009-11-17" -- "2009-11-18" -- "2009-11-19" -- "2009-11-20" -- "2009-11-21" -- "2009-11-22" -- "2009-11-23" -- "2009-11-24" -- "2009-11-25" -- "2009-11-26" -- "2009-11-27" -- "2009-11-28" -- "2009-11-29" -- "2009-11-30" -- "2009-12-01" -- "2009-12-02" -- "2009-12-03" -- "2009-12-04" -- "2009-12-05" -- "2009-12-06" -- "2009-12-07" -- "2009-12-08" -- "2009-12-09" -- "2009-12-10" -- "2009-12-11" -- "2009-12-12" -- "2009-12-13" -- "2009-12-14" -- "2009-12-15" -- "2009-12-16" -- "2009-12-17" -- "2009-12-18" -- "2009-12-19" -- "2009-12-20" -- "2009-12-21" -- "2009-12-22" -- "2009-12-23" -- "2009-12-24" -- "2009-12-25" -- "2009-12-26" -- "2009-12-27" -- "2009-12-28" -- "2009-12-29" -- "2009-12-30" -- "2009-12-31" -- "2010-01-01" -- "2010-01-02" -- "2010-01-03" -- "2010-01-04" -- "2010-01-05" -- "2010-01-06" -- "2010-01-07" -- "2010-01-08" -- "2010-01-09" -- "2010-01-10" -- "2010-01-11" -- "2010-01-12" -- "2010-01-13" -- "2010-01-14" -- "2010-01-15" -- "2010-01-16" -- "2010-01-17" -- "2010-01-18" -- "2010-01-19" -- "2010-01-20" -- "2010-01-21" -- "2010-01-22" -- "2010-01-23" -- "2010-01-24" -- "2010-01-25" -- "2010-01-26" -- "2010-01-27" -- "2010-01-28" -- "2010-01-29" -- "2010-01-30" -- "2010-01-31" -- "2010-02-01" -- "2010-02-02" -- "2010-02-03" -- "2010-02-04" -- "2010-02-05" -- "2010-02-06" -- "2010-02-07" -- "2010-02-08" -- "2010-02-09" -- "2010-02-10" -- "2010-02-11" -- "2010-02-12" -- "2010-02-13" -- "2010-02-14" -- "2010-02-15" -- "2010-02-16" -- "2010-02-17" -- "2010-02-18" -- "2010-02-19" -- "2010-02-20" -- "2010-02-21" -- "2010-02-22" -- "2010-02-23" -- "2010-02-24" -- "2010-02-25" -- "2010-02-26" -- "2010-02-27" -- "2010-02-28" -- "2010-03-01" -- "2010-03-02" -- "2010-03-03" -- "2010-03-04" -- "2010-03-05" -- "2010-03-06" -- "2010-03-07" -- "2010-03-08" -- "2010-03-09" -- "2010-03-10" -- "2010-03-11" -- "2010-03-12" -- "2010-03-13" -- "2010-03-14" -- "2010-03-15" -- "2010-03-16" -- "2010-03-17" -- "2010-03-18" -- "2010-03-19" -- "2010-03-20" -- "2010-03-21" -- "2010-03-22" -- "2010-03-23" -- "2010-03-24" -- "2010-03-25" -- "2010-03-26" -- "2010-03-27" -- "2010-03-28" -- "2010-03-29" -- "2010-03-30" -- "2010-03-31" -- "2010-04-01" -- "2010-04-02" -- "2010-04-03" -- "2010-04-04" -- "2010-04-05" -- "2010-04-06" -- "2010-04-07" -- "2010-04-08" -- "2010-04-09" -- "2010-04-10" -- "2010-04-11" -- "2010-04-12" -- "2010-04-13" -- "2010-04-14" -- "2010-04-15" -- "2010-04-16" -- "2010-04-17" -- "2010-04-18" -- "2010-04-19" -- "2010-04-20" -- "2010-04-21" -- "2010-04-22" -- "2010-04-23" -- "2010-04-24" -- "2010-04-25" -- "2010-04-26" -- "2010-04-27" -- "2010-04-28" -- "2010-04-29" -- "2010-04-30" -- "2010-05-01" -- "2010-05-02" -- "2010-05-03" -- "2010-05-04" -- "2010-05-05" -- "2010-05-06" -- "2010-05-07" -- "2010-05-08" -- "2010-05-09" -- "2010-05-10" -- "2010-05-11" -- "2010-05-12" -- "2010-05-13" -- "2010-05-14" -- "2010-05-15" -- "2010-05-16" -- "2010-05-17" -- "2010-05-18" -- "2010-05-19" -- "2010-05-20" -- "2010-05-21" -- "2010-05-22" -- "2010-05-23" -- "2010-05-24" -- "2010-05-25" -- "2010-05-26" -- "2010-05-27" -- "2010-05-28" -- "2010-05-29" -- "2010-05-30" -- "2010-05-31" -- "2010-06-01" -- "2010-06-02" -- "2010-06-03" -- "2010-06-04" -- "2010-06-05" -- "2010-06-06" -- "2010-06-07" -- "2010-06-08" -- "2010-06-09" -- "2010-06-10" -- "2010-06-11" -- "2010-06-12" -- "2010-06-13" -- "2010-06-14" -- "2010-06-15" -- "2010-06-16" -- "2010-06-17" -- "2010-06-18" -- "2010-06-19" -- "2010-06-20" -- "2010-06-21" -- "2010-06-22" -- "2010-06-23" -- "2010-06-24" -- "2010-06-25" -- "2010-06-26" -- "2010-06-27" -- "2010-06-28" -- "2010-06-29" -- "2010-06-30" -- "2010-07-01" -- "2010-07-02" -- "2010-07-03" -- "2010-07-04" -- "2010-07-05" -- "2010-07-06" -- "2010-07-07" -- "2010-07-08" -- "2010-07-09" -- "2010-07-10" -- "2010-07-11" -- "2010-07-12" -- "2010-07-13" -- "2010-07-14" -- "2010-07-15" -- "2010-07-16" -- "2010-07-17" -- "2010-07-18" -- "2010-07-19" -- "2010-07-20" -- "2010-07-21" -- "2010-07-22" -- "2010-07-23" -- "2010-07-24" -- "2010-07-25" -- "2010-07-26" -- "2010-07-27" -- "2010-07-28" -- "2010-07-29" -- "2010-07-30" -- "2010-07-31" -- "2010-08-01" -- "2010-08-02" -- "2010-08-03" -- "2010-08-04" -- "2010-08-05" -- "2010-08-06" -- "2010-08-07" -- "2010-08-08" -- "2010-08-09" -- "2010-08-10" -- "2010-08-11" -- "2010-08-12" -- "2010-08-13" -- "2010-08-14" -- "2010-08-15" -- "2010-08-16" -- "2010-08-17" -- "2010-08-18" -- "2010-08-19" -- "2010-08-20" -- "2010-08-21" -- "2010-08-22" -- "2010-08-23" -- "2010-08-24" -- "2010-08-25" -- "2010-08-26" -- "2010-08-27" -- "2010-08-28" -- "2010-08-29" -- "2010-08-30" -- "2010-08-31" -- "2010-09-01" -- "2010-09-02" -- "2010-09-03" -- "2010-09-04" -- "2010-09-05" -- "2010-09-06" -- "2010-09-07" -- "2010-09-08" -- "2010-09-09" -- "2010-09-10" -- "2010-09-11" -- "2010-09-12" -- "2010-09-13" -- "2010-09-14" -- "2010-09-15" -- "2010-09-16" -- "2010-09-17" -- "2010-09-18" -- "2010-09-19" -- "2010-09-20" -- "2010-09-21" -- "2010-09-22" -- "2010-09-23" -- "2010-09-24" -- "2010-09-25" -- "2010-09-26" -- "2010-09-27" -- "2010-09-28" -- "2010-09-29" -- "2010-09-30" -- "2010-10-01" -- "2010-10-02" -- "2010-10-03" -- "2010-10-04" -- "2010-10-05" -- "2010-10-06" -- "2010-10-07" -- "2010-10-08" -- "2010-10-09" -- "2010-10-10" -- "2010-10-11" -- "2010-10-12" -- "2010-10-13" -- "2010-10-14" -- "2010-10-15" -- "2010-10-16" -- "2010-10-17" -- "2010-10-18" -- "2010-10-19" -- "2010-10-20" -- "2010-10-21" -- "2010-10-22" -- "2010-10-23" -- "2010-10-24" -- "2010-10-25" -- "2010-10-26" -- "2010-10-27" -- "2010-10-28" -- "2010-10-29" -- "2010-10-30" -- "2010-10-31" -- "2010-11-01" -- "2010-11-02" -- "2010-11-03" -- "2010-11-04" -- "2010-11-05" -- "2010-11-06" -- "2010-11-07" -- "2010-11-08" -- "2010-11-09" -- "2010-11-10" -- "2010-11-11" -- "2010-11-12" -- "2010-11-13" -- "2010-11-14" -- "2010-11-15" -- "2010-11-16" -- "2010-11-17" -- "2010-11-18" -- "2010-11-19" -- "2010-11-20" -- "2010-11-21" -- "2010-11-22" -- "2010-11-23" -- "2010-11-24" -- "2010-11-25" -- "2010-11-26" -- "2010-11-27" -- "2010-11-28" -- "2010-11-29" -- "2010-11-30" -- "2010-12-01" -- "2010-12-02" -- "2010-12-03" -- "2010-12-04" -- "2010-12-05" -- "2010-12-06" -- "2010-12-07" -- "2010-12-08" -- "2010-12-09" -- "2010-12-10" -- "2010-12-11" -- "2010-12-12" -- "2010-12-13" -- "2010-12-14" -- "2010-12-15" -- "2010-12-16" -- "2010-12-17" -- "2010-12-18" -- "2010-12-19" -- "2010-12-20" -- "2010-12-21" -- "2010-12-22" -- "2010-12-23" -- "2010-12-24" -- "2010-12-25" -- "2010-12-26" -- "2010-12-27" -- "2010-12-28" -- "2010-12-29" -- "2010-12-30" -- "2010-12-31" -- "2011-01-01" -- "2011-01-02" -- "2011-01-03" -- "2011-01-04" -- "2011-01-05" -- "2011-01-06" -- "2011-01-07" -- "2011-01-08" -- "2011-01-09" -- "2011-01-10" -- "2011-01-11" -- "2011-01-12" -- "2011-01-13" -- "2011-01-14" -- "2011-01-15" -- "2011-01-16" -- "2011-01-17" -- "2011-01-18" -- "2011-01-19" -- "2011-01-20" -- "2011-01-21" -- "2011-01-22" -- "2011-01-23" -- "2011-01-24" -- "2011-01-25" -- "2011-01-26" -- "2011-01-27" -- "2011-01-28" -- "2011-01-29" -- "2011-01-30" -- "2011-01-31" -- "2011-02-01" -- "2011-02-02" -- "2011-02-03" -- "2011-02-04" -- "2011-02-05" -- "2011-02-06" -- "2011-02-07" -- "2011-02-08" -- "2011-02-09" -- "2011-02-10" -- "2011-02-11" -- "2011-02-12" -- "2011-02-13" -- "2011-02-14" -- "2011-02-15" -- "2011-02-16" -- "2011-02-17" -- "2011-02-18" -- "2011-02-19" -- "2011-02-20" -- "2011-02-21" -- "2011-02-22" -- "2011-02-23" -- "2011-02-24" -- "2011-02-25" -- "2011-02-26" -- "2011-02-27" -- "2011-02-28" -- "2011-03-01" -- "2011-03-02" -- "2011-03-03" -- "2011-03-04" -- "2011-03-05" -- "2011-03-06" -- "2011-03-07" -- "2011-03-08" -- "2011-03-09" -- "2011-03-10" -- "2011-03-11" -- "2011-03-12" -- "2011-03-13" -- "2011-03-14" -- "2011-03-15" -- "2011-03-16" -- "2011-03-17" -- "2011-03-18" -- "2011-03-19" -- "2011-03-20" -- "2011-03-21" -- "2011-03-22" -- "2011-03-23" -- "2011-03-24" -- "2011-03-25" -- "2011-03-26" -- "2011-03-27" -- "2011-03-28" -- "2011-03-29" -- "2011-03-30" -- "2011-03-31" -- "2011-04-01" -- "2011-04-02" -- "2011-04-03" -- "2011-04-04" -- "2011-04-05" -- "2011-04-06" -- "2011-04-07" -- "2011-04-08" -- "2011-04-09" -- "2011-04-10" -- "2011-04-11" -- "2011-04-12" -- "2011-04-13" -- "2011-04-14" -- "2011-04-15" -- "2011-04-16" -- "2011-04-17" -- "2011-04-18" -- "2011-04-19" -- "2011-04-20" -- "2011-04-21" -- "2011-04-22" -- "2011-04-23" -- "2011-04-24" -- "2011-04-25" -- "2011-04-26" -- "2011-04-27" -- "2011-04-28" -- "2011-04-29" -- "2011-04-30" -- "2011-05-01" -- "2011-05-02" -- "2011-05-03" -- "2011-05-04" -- "2011-05-05" -- "2011-05-06" -- "2011-05-07" -- "2011-05-08" -- "2011-05-09" -- "2011-05-10" -- "2011-05-11" -- "2011-05-12" -- "2011-05-13" -- "2011-05-14" -- "2011-05-15" -- "2011-05-16" -- "2011-05-17" -- "2011-05-18" -- "2011-05-19" -- "2011-05-20" -- "2011-05-21" -- "2011-05-22" -- "2011-05-23" -- "2011-05-24" -- "2011-05-25" -- "2011-05-26" -- "2011-05-27" -- "2011-05-28" -- "2011-05-29" -- "2011-05-30" -- "2011-05-31" -- "2011-06-01" -- "2011-06-02" -- "2011-06-03" -- "2011-06-04" -- "2011-06-05" -- "2011-06-06" -- "2011-06-07" -- "2011-06-08" -- "2011-06-09" -- "2011-06-10" -- "2011-06-11" -- "2011-06-12" -- "2011-06-13" -- "2011-06-14" -- "2011-06-15" -- "2011-06-16" -- "2011-06-17" -- "2011-06-18" -- "2011-06-19" -- "2011-06-20" -- "2011-06-21" -- "2011-06-22" -- "2011-06-23" -- "2011-06-24" -- "2011-06-25" -- "2011-06-26" -- "2011-06-27" -- "2011-06-28" -- "2011-06-29" -- "2011-06-30" -- "2011-07-01" -- "2011-07-02" -- "2011-07-03" -- "2011-07-04" -- "2011-07-05" -- "2011-07-06" -- "2011-07-07" -- "2011-07-08" -- "2011-07-09" -- "2011-07-10" -- "2011-07-11" -- "2011-07-12" -- "2011-07-13" -- "2011-07-14" -- "2011-07-15" -- "2011-07-16" -- "2011-07-17" -- "2011-07-18" -- "2011-07-19" -- "2011-07-20" -- "2011-07-21" -- "2011-07-22" -- "2011-07-23" -- "2011-07-24" -- "2011-07-25" -- "2011-07-26" -- "2011-07-27" -- "2011-07-28" -- "2011-07-29" -- "2011-07-30" -- "2011-07-31" -- "2011-08-01" -- "2011-08-02" -- "2011-08-03" -- "2011-08-04" -- "2011-08-05" -- "2011-08-06" -- "2011-08-07" -- "2011-08-08" -- "2011-08-09" -- "2011-08-10" -- "2011-08-11" -- "2011-08-12" -- "2011-08-13" -- "2011-08-14" -- "2011-08-15" -- "2011-08-16" -- "2011-08-17" -- "2011-08-18" -- "2011-08-19" -- "2011-08-20" -- "2011-08-21" -- "2011-08-22" -- "2011-08-23" -- "2011-08-24" -- "2011-08-25" -- "2011-08-26" -- "2011-08-27" -- "2011-08-28" -- "2011-08-29" -- "2011-08-30" -- "2011-08-31" -- "2011-09-01" -- "2011-09-02" -- "2011-09-03" -- "2011-09-04" -- "2011-09-05" -- "2011-09-06" -- "2011-09-07" -- "2011-09-08" -- "2011-09-09" -- "2011-09-10" -- "2011-09-11" -- "2011-09-12" -- "2011-09-13" -- "2011-09-14" -- "2011-09-15" -- "2011-09-16" -- "2011-09-17" -- "2011-09-18" -- "2011-09-19" -- "2011-09-20" -- "2011-09-21" -- "2011-09-22" -- "2011-09-23" -- "2011-09-24" -- "2011-09-25" -- "2011-09-26" -- "2011-09-27" -- "2011-09-28" -- "2011-09-29" -- "2011-09-30" -- "2011-10-01" -- "2011-10-02" -- "2011-10-03" -- "2011-10-04" -- "2011-10-05" -- "2011-10-06" -- "2011-10-07" -- "2011-10-08" -- "2011-10-09" -- "2011-10-10" -- "2011-10-11" -- "2011-10-12" -- "2011-10-13" -- "2011-10-14" -- "2011-10-15" -- "2011-10-16" -- "2011-10-17" -- "2011-10-18" -- "2011-10-19" -- "2011-10-20" -- "2011-10-21" -- "2011-10-22" -- "2011-10-23" -- "2011-10-24" -- "2011-10-25" -- "2011-10-26" -- "2011-10-27" -- "2011-10-28" -- "2011-10-29" -- "2011-10-30" -- "2011-10-31" -- "2011-11-01" -- "2011-11-02" -- "2011-11-03" -- "2011-11-04" -- "2011-11-05" -- "2011-11-06" -- "2011-11-07" -- "2011-11-08" -- "2011-11-09" -- "2011-11-10" -- "2011-11-11" -- "2011-11-12" -- "2011-11-13" -- "2011-11-14" -- "2011-11-15" -- "2011-11-16" -- "2011-11-17" -- "2011-11-18" -- "2011-11-19" -- "2011-11-20" -- "2011-11-21" -- "2011-11-22" -- "2011-11-23" -- "2011-11-24" -- "2011-11-25" -- "2011-11-26" -- "2011-11-27" -- "2011-11-28" -- "2011-11-29" -- "2011-11-30" -- "2011-12-01" -- "2011-12-02" -- "2011-12-03" -- "2011-12-04" -- "2011-12-05" -- "2011-12-06" -- "2011-12-07" -- "2011-12-08" -- "2011-12-09" -- "2011-12-10" -- "2011-12-11" -- "2011-12-12" -- "2011-12-13" -- "2011-12-14" -- "2011-12-15" -- "2011-12-16" -- "2011-12-17" -- "2011-12-18" -- "2011-12-19" -- "2011-12-20" -- "2011-12-21" -- "2011-12-22" -- "2011-12-23" -- "2011-12-24" -- "2011-12-25" -- "2011-12-26" -- "2011-12-27" -- "2011-12-28" -- "2011-12-29" -- "2011-12-30" -- "2011-12-31" -- "2012-01-01" -- "2012-01-02" -- "2012-01-03" -- "2012-01-04" -- "2012-01-05" -- "2012-01-06" -- "2012-01-07" -- "2012-01-08" -- "2012-01-09" -- "2012-01-10" -- "2012-01-11" -- "2012-01-12" -- "2012-01-13" -- "2012-01-14" -- "2012-01-15" -- "2012-01-16" -- "2012-01-17" -- "2012-01-18" -- "2012-01-19" -- "2012-01-20" -- "2012-01-21" -- "2012-01-22" -- "2012-01-23" -- "2012-01-24" -- "2012-01-25" -- "2012-01-26" -- "2012-01-27" -- "2012-01-28" -- "2012-01-29" -- "2012-01-30" -- "2012-01-31" -- "2012-02-01" -- "2012-02-02" -- "2012-02-03" -- "2012-02-04" -- "2012-02-05" -- "2012-02-06" -- "2012-02-07" -- "2012-02-08" -- "2012-02-09" -- "2012-02-10" -- "2012-02-11" -- "2012-02-12" -- "2012-02-13" -- "2012-02-14" -- "2012-02-15" -- "2012-02-16" -- "2012-02-17" -- "2012-02-18" -- "2012-02-19" -- "2012-02-20" -- "2012-02-21" -- "2012-02-22" -- "2012-02-23" -- "2012-02-24" -- "2012-02-25" -- "2012-02-26" -- "2012-02-27" -- "2012-02-28" -- "2012-02-29" -- "2012-03-01" -- "2012-03-02" -- "2012-03-03" -- "2012-03-04" -- "2012-03-05" -- "2012-03-06" -- "2012-03-07" -- "2012-03-08" -- "2012-03-09" -- "2012-03-10" -- "2012-03-11" -- "2012-03-12" -- "2012-03-13" -- "2012-03-14" -- "2012-03-15" -- "2012-03-16" -- "2012-03-17" -- "2012-03-18" -- "2012-03-19" -- "2012-03-20" -- "2012-03-21" -- "2012-03-22" -- "2012-03-23" -- "2012-03-24" -- "2012-03-25" -- "2012-03-26" -- "2012-03-27" -- "2012-03-28" -- "2012-03-29" -- "2012-03-30" -- "2012-03-31" -- "2012-04-01" -- "2012-04-02" -- "2012-04-03" -- "2012-04-04" -- "2012-04-05" -- "2012-04-06" -- "2012-04-07" -- "2012-04-08" -- "2012-04-09" -- "2012-04-10" -- "2012-04-11" -- "2012-04-12" -- "2012-04-13" -- "2012-04-14" -- "2012-04-15" -- "2012-04-16" -- "2012-04-17" -- "2012-04-18" -- "2012-04-19" -- "2012-04-20" -- "2012-04-21" -- "2012-04-22" -- "2012-04-23" -- "2012-04-24" -- "2012-04-25" -- "2012-04-26" -- "2012-04-27" -- "2012-04-28" -- "2012-04-29" -- "2012-04-30" -- "2012-05-01" -- "2012-05-02" -- "2012-05-03" -- "2012-05-04" -- "2012-05-05" -- "2012-05-06" -- "2012-05-07" -- "2012-05-08" -- "2012-05-09" -- "2012-05-10" -- "2012-05-11" -- "2012-05-12" -- "2012-05-13" -- "2012-05-14" -- "2012-05-15" -- "2012-05-16" -- "2012-05-17" -- "2012-05-18" -- "2012-05-19" -- "2012-05-20" -- "2012-05-21" -- "2012-05-22" -- "2012-05-23" -- "2012-05-24" -- "2012-05-25" -- "2012-05-26" -- "2012-05-27" -- "2012-05-28" -- "2012-05-29" -- "2012-05-30" -- "2012-05-31" -- "2012-06-01" -- "2012-06-02" -- "2012-06-03" -- "2012-06-04" -- "2012-06-05" -- "2012-06-06" -- "2012-06-07" -- "2012-06-08" -- "2012-06-09" -- "2012-06-10" -- "2012-06-11" -- "2012-06-12" -- "2012-06-13" -- "2012-06-14" -- "2012-06-15" -- "2012-06-16" -- "2012-06-17" -- "2012-06-18" -- "2012-06-19" -- "2012-06-20" -- "2012-06-21" -- "2012-06-22" -- "2012-06-23" -- "2012-06-24" -- "2012-06-25" -- "2012-06-26" -- "2012-06-27" -- "2012-06-28" -- "2012-06-29" -- "2012-06-30" -- "2012-07-01" -- "2012-07-02" -- "2012-07-03" -- "2012-07-04" -- "2012-07-05" -- "2012-07-06" -- "2012-07-07" -- "2012-07-08" -- "2012-07-09" -- "2012-07-10" -- "2012-07-11" -- "2012-07-12" -- "2012-07-13" -- "2012-07-14" -- "2012-07-15" -- "2012-07-16" -- "2012-07-17" -- "2012-07-18" -- "2012-07-19" -- "2012-07-20" -- "2012-07-21" -- "2012-07-22" -- "2012-07-23" -- "2012-07-24" -- "2012-07-25" -- "2012-07-26" -- "2012-07-27" -- "2012-07-28" -- "2012-07-29" -- "2012-07-30" -- "2012-07-31" -- "2012-08-01" -- "2012-08-02" -- "2012-08-03" -- "2012-08-04" -- "2012-08-05" -- "2012-08-06" -- "2012-08-07" -- "2012-08-08" -- "2012-08-09" -- "2012-08-10" -- "2012-08-11" -- "2012-08-12" -- "2012-08-13" -- "2012-08-14" -- "2012-08-15" -- "2012-08-16" -- "2012-08-17" -- "2012-08-18" -- "2012-08-19" -- "2012-08-20" -- "2012-08-21" -- "2012-08-22" -- "2012-08-23" -- "2012-08-24" -- "2012-08-25" -- "2012-08-26" -- "2012-08-27" -- "2012-08-28" -- "2012-08-29" -- "2012-08-30" -- "2012-08-31" -- "2012-09-01" -- "2012-09-02" -- "2012-09-03" -- "2012-09-04" -- "2012-09-05" -- "2012-09-06" -- "2012-09-07" -- "2012-09-08" -- "2012-09-09" -- "2012-09-10" -- "2012-09-11" -- "2012-09-12" -- "2012-09-13" -- "2012-09-14" -- "2012-09-15" -- "2012-09-16" -- "2012-09-17" -- "2012-09-18" -- "2012-09-19" -- "2012-09-20" -- "2012-09-21" -- "2012-09-22" -- "2012-09-23" -- "2012-09-24" -- "2012-09-25" -- "2012-09-26" -- "2012-09-27" -- "2012-09-28" -- "2012-09-29" -- "2012-09-30" -- "2012-10-01" -- "2012-10-02" -- "2012-10-03" -- "2012-10-04" -- "2012-10-05" -- "2012-10-06" -- "2012-10-07" -- "2012-10-08" -- "2012-10-09" -- "2012-10-10" -- "2012-10-11" -- "2012-10-12" -- "2012-10-13" -- "2012-10-14" -- "2012-10-15" -- "2012-10-16" -- "2012-10-17" -- "2012-10-18" -- "2012-10-19" -- "2012-10-20" -- "2012-10-21" -- "2012-10-22" -- "2012-10-23" -- "2012-10-24" -- "2012-10-25" -- "2012-10-26" -- "2012-10-27" -- "2012-10-28" -- "2012-10-29" -- "2012-10-30" -- "2012-10-31" -- "2012-11-01" -- "2012-11-02" -- "2012-11-03" -- "2012-11-04" -- "2012-11-05" -- "2012-11-06" -- "2012-11-07" -- "2012-11-08" -- "2012-11-09" -- "2012-11-10" -- "2012-11-11" -- "2012-11-12" -- "2012-11-13" -- "2012-11-14" -- "2012-11-15" -- "2012-11-16" -- "2012-11-17" -- "2012-11-18" -- "2012-11-19" -- "2012-11-20" -- "2012-11-21" -- "2012-11-22" -- "2012-11-23" -- "2012-11-24" -- "2012-11-25" -- "2012-11-26" -- "2012-11-27" -- "2012-11-28" -- "2012-11-29" -- "2012-11-30" -- "2012-12-01" -- "2012-12-02" -- "2012-12-03" -- "2012-12-04" -- "2012-12-05" -- "2012-12-06" -- "2012-12-07" -- "2012-12-08" -- "2012-12-09" -- "2012-12-10" -- "2012-12-11" -- "2012-12-12" -- "2012-12-13" -- "2012-12-14" -- "2012-12-15" -- "2012-12-16" -- "2012-12-17" -- "2012-12-18" -- "2012-12-19" -- "2012-12-20" -- "2012-12-21" -- "2012-12-22" -- "2012-12-23" -- "2012-12-24" -- "2012-12-25" -- "2012-12-26" -- "2012-12-27" -- "2012-12-28" -- "2012-12-29" -- "2012-12-30" -- "2012-12-31" -- "2013-01-01" -- "2013-01-02" -- "2013-01-03" -- "2013-01-04" -- "2013-01-05" -- "2013-01-06" -- "2013-01-07" -- "2013-01-08" -- "2013-01-09" -- "2013-01-10" -- "2013-01-11" -- "2013-01-12" -- "2013-01-13" -- "2013-01-14" -- "2013-01-15" -- "2013-01-16" -- "2013-01-17" -- "2013-01-18" -- "2013-01-19" -- "2013-01-20" -- "2013-01-21" -- "2013-01-22" -- "2013-01-23" -- "2013-01-24" -- "2013-01-25" -- "2013-01-26" -- "2013-01-27" -- "2013-01-28" -- "2013-01-29" -- "2013-01-30" -- "2013-01-31" -- "2013-02-01" -- "2013-02-02" -- "2013-02-03" -- "2013-02-04" -- "2013-02-05" -- "2013-02-06" -- "2013-02-07" -- "2013-02-08" -- "2013-02-09" -- "2013-02-10" -- "2013-02-11" -- "2013-02-12" -- "2013-02-13" -- "2013-02-14" -- "2013-02-15" -- "2013-02-16" -- "2013-02-17" -- "2013-02-18" -- "2013-02-19" -- "2013-02-20" -- "2013-02-21" -- "2013-02-22" -- "2013-02-23" -- "2013-02-24" -- "2013-02-25" - diff --git a/docs/demo/data/processed/surfaces.csv b/docs/demo/data/processed/surfaces.csv deleted file mode 100644 index a9eb7275..00000000 --- a/docs/demo/data/processed/surfaces.csv +++ /dev/null @@ -1,2913 +0,0 @@ -,node,surface,storage,evaporation,precipitation,capacity,time,do,org-phosphorus,phosphate,ammonia,solids,bod,cod,ph,temperature,nitrate,nitrite,org-nitrogen,percolation,subsurface_r,surface_r,tank_recharge,et0_coef -0,my_land,urban,0.09,0.02,0.15,0.0,2009-03-03,0.0,0.0,6.923076923076922e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, -1,my_land,rural,1.457562715432305,0.042437284567694994,1.5,20.0,2009-03-03,0.0,0.0,9.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.921875000000001,0.0,0.0,0.0,0.0,0.0,0.0,1.457562715432305,0.5 -2,my_land,urban,0.030999999999999993,0.02,0.001,0.0,2009-03-04,0.0,0.0,7.388949079089923e-07,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, -3,my_land,rural,1.4153017060826107,0.05226100934969432,0.01,20.0,2009-03-04,0.0,0.0,1.9999999999999998e-05,0.0,0.0,0.0,0.0,0.0,7.86210937475,0.0,0.0,0.0,0.0,0.0,0.0,-0.042261009349694324,0.5 -4,my_land,urban,0.0,0.02,0.0,0.0,2009-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, -5,my_land,rural,1.3633552609352309,0.05194644514737989,0.0,20.0,2009-03-05,0.0,0.0,2.9999999999999997e-05,0.0,0.0,0.0,0.0,0.0,7.757763672093751,0.0,0.0,0.0,0.0,0.0,0.0,-0.05194644514737989,0.5 -6,my_land,urban,0.0,0.0,0.0,0.0,2009-03-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, -7,my_land,rural,1.311792879424338,0.05156238151089282,0.0,20.0,2009-03-06,0.0,0.0,3.9999999999999996e-05,0.0,0.0,0.0,0.0,0.0,7.647845459011719,0.0,0.0,0.0,0.0,0.0,0.0,-0.05156238151089282,0.5 -8,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2009-03-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0,,,,, -9,my_land,rural,1.4306089137988367,0.051183965625501406,0.16999999999999998,20.0,2009-03-07,0.0,0.0,4.9999999999999996e-05,0.0,0.0,0.0,0.0,0.0,7.531629685001101,0.0,0.0,0.0,0.0,0.0,0.0,0.11881603437449857,0.5 -10,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2009-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -11,my_land,rural,1.7485487507857025,0.05206016301313425,0.37,20.0,2009-03-08,0.0,0.0,5.9999999999999995e-05,0.0,0.0,0.0,0.0,0.0,7.413271868965125,0.0,0.0,0.0,0.0,0.0,0.0,0.3179398369868658,0.5 -12,my_land,urban,0.0,0.013,0.013,0.0,2009-03-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -13,my_land,rural,1.8240694946675606,0.05447925611814175,0.13,20.0,2009-03-09,0.0,0.0,7e-05,0.0,0.0,0.0,0.0,0.0,7.311243887000397,0.0,0.0,0.0,0.0,0.0,0.0,0.07552074388185824,0.5 -14,my_land,urban,0.0,0.001,0.001,0.0,2009-03-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -15,my_land,rural,1.7789992974091149,0.055070197258445766,0.01,20.0,2009-03-10,0.0,0.0,7.999999999999999e-05,0.0,0.0,0.0,0.0,0.0,7.63086977137505,0.0,0.0,0.0,0.0,0.0,0.0,-0.045070197258445764,0.5 -16,my_land,urban,0.0,0.001,0.001,0.0,2009-03-11,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -17,my_land,rural,1.7342825360640128,0.05471676134510205,0.01,20.0,2009-03-11,0.0,0.0,8.999999999999999e-05,0.0,0.0,0.0,0.0,0.0,8.000287293171882,0.0,0.0,0.0,0.0,0.0,0.0,-0.044716761345102045,0.5 -18,my_land,urban,0.0,0.001,0.001,0.0,2009-03-12,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -19,my_land,rural,1.6899141972761127,0.054368338787900136,0.01,20.0,2009-03-12,0.0,0.0,9.999999999999999e-05,0.0,0.0,0.0,0.0,0.0,8.375928768896486,0.0,0.0,0.0,0.0,0.0,0.0,-0.04436833878790014,0.5 -20,my_land,urban,0.0,0.0,0.0,0.0,2009-03-13,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -21,my_land,rural,1.6358893733784778,0.05402482389763485,0.0,20.0,2009-03-13,0.0,0.0,0.00010999999999999999,0.0,0.0,0.0,0.0,0.0,8.75234823886206,0.0,0.0,0.0,0.0,0.0,0.0,-0.05402482389763485,0.5 -22,my_land,urban,0.0,0.0,0.0,0.0,2009-03-14,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -23,my_land,rural,1.5822798991336195,0.053609474244858395,0.0,20.0,2009-03-14,0.0,0.0,0.00011999999999999999,0.0,0.0,0.0,0.0,0.0,9.128864958107759,0.0,0.0,0.0,0.0,0.0,0.0,-0.053609474244858395,0.5 -24,my_land,urban,0.0,0.0,0.0,0.0,2009-03-15,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -25,my_land,rural,1.5290794246892143,0.053200474444405295,0.0,20.0,2009-03-15,0.0,0.0,0.00013,0.0,0.0,0.0,0.0,0.0,9.50539383426347,0.0,0.0,0.0,0.0,0.0,0.0,-0.053200474444405295,0.5 -26,my_land,urban,0.0,0.0,0.0,0.0,2009-03-16,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -27,my_land,rural,1.4762817448842982,0.05279767980491609,0.0,20.0,2009-03-16,0.0,0.0,0.00014,0.0,0.0,0.0,0.0,0.0,9.881924229282935,0.0,0.0,0.0,0.0,0.0,0.0,-0.05279767980491609,0.5 -28,my_land,urban,0.0,0.0,0.0,0.0,2009-03-17,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -29,my_land,rural,1.4238807948823113,0.052400950001986836,0.0,20.0,2009-03-17,0.0,0.0,0.00015,0.0,0.0,0.0,0.0,0.0,9.76492802866037,0.0,0.0,0.0,0.0,0.0,0.0,-0.052400950001986836,0.5 -30,my_land,urban,0.0,0.0,0.0,0.0,2009-03-18,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -31,my_land,rural,1.3718706459677787,0.05201014891453255,0.0,20.0,2009-03-18,0.0,0.0,0.00015999999999999999,0.0,0.0,0.0,0.0,0.0,9.586241003582547,0.0,0.0,0.0,0.0,0.0,0.0,-0.05201014891453255,0.5 -32,my_land,urban,0.0,0.0,0.0,0.0,2009-03-19,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -33,my_land,rural,1.3202455014993209,0.051625144468457944,0.0,20.0,2009-03-19,0.0,0.0,0.00016999999999999999,0.0,0.0,0.0,0.0,0.0,9.39984262544782,0.0,0.0,0.0,0.0,0.0,0.0,-0.051625144468457944,0.5 -34,my_land,urban,0.0,0.0,0.0,0.0,2009-03-20,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -35,my_land,rural,1.2689996930120624,0.05124580848725849,0.0,20.0,2009-03-20,0.0,0.0,0.00017999999999999998,0.0,0.0,0.0,0.0,0.0,9.212480328180979,0.0,0.0,0.0,0.0,0.0,0.0,-0.05124580848725849,0.5 -36,my_land,urban,0.0,0.0,0.0,0.0,2009-03-21,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -37,my_land,rural,1.218127676462868,0.05087201654919449,0.0,20.0,2009-03-21,0.0,0.0,0.00018999999999999998,0.0,0.0,0.0,0.0,0.0,9.024997541022623,0.0,0.0,0.0,0.0,0.0,0.0,-0.05087201654919449,0.5 -38,my_land,urban,0.0,0.0,0.0,0.0,2009-03-22,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -39,my_land,rural,1.1676240286121635,0.0505036478507044,0.0,20.0,2009-03-22,0.0,0.0,0.00019999999999999998,0.0,0.0,0.0,0.0,0.0,8.837499692627828,0.0,0.0,0.0,0.0,0.0,0.0,-0.0505036478507044,0.5 -40,my_land,urban,0.0,0.005,0.005,0.0,2009-03-23,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -41,my_land,rural,1.1674834435364232,0.05014058507574028,0.05,20.0,2009-03-23,0.0,0.0,0.00020999999999999998,0.0,0.0,0.0,0.0,0.0,8.649999961578478,0.0,0.0,0.0,0.0,0.0,0.0,-0.000140585075740279,0.5 -42,my_land,urban,0.0,0.005,0.005,0.0,2009-03-24,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -43,my_land,rural,1.1673438654531352,0.05013957808328798,0.05,20.0,2009-03-24,0.0,0.0,0.00021999999999999998,0.0,0.0,0.0,0.0,0.0,8.46249999519731,0.0,0.0,0.0,0.0,0.0,0.0,-0.00013957808328797549,0.5 -44,my_land,urban,0.0,0.009,0.009,0.0,2009-03-25,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -45,my_land,rural,1.2072052871293377,0.050138578323797506,0.09,20.0,2009-03-25,0.0,0.0,0.00022999999999999998,0.0,0.0,0.0,0.0,0.0,8.529785140753722,0.0,0.0,0.0,0.0,0.0,0.0,0.03986142167620249,0.5 -46,my_land,urban,0.0,0.009,0.009,0.0,2009-03-26,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -47,my_land,rural,1.2467803807600906,0.05042490636924722,0.09,20.0,2009-03-26,0.0,0.0,0.00023999999999999998,0.0,0.0,0.0,0.0,0.0,8.629845085243515,0.0,0.0,0.0,0.0,0.0,0.0,0.039575093630752775,0.5 -48,my_land,urban,0.0,0.004,0.004,0.0,2009-03-27,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -49,my_land,rural,1.2360695855194306,0.05071079524066002,0.04,20.0,2009-03-27,0.0,0.0,0.00025,0.0,0.0,0.0,0.0,0.0,8.73419938565544,0.0,0.0,0.0,0.0,0.0,0.0,-0.01071079524066002,0.5 -50,my_land,urban,0.0,0.016,0.016,0.0,2009-03-28,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -51,my_land,rural,1.3454363242235305,0.05063326129589999,0.16,20.0,2009-03-28,0.0,0.0,0.00026000000000000003,0.0,0.0,0.0,0.0,0.0,8.837921393004958,0.0,0.0,0.0,0.0,0.0,0.0,0.10936673870410002,0.5 -52,my_land,urban,0.0,0.0,0.0,0.0,2009-03-29,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -53,my_land,rural,1.2940057657815653,0.051430558441965306,0.0,20.0,2009-03-29,0.0,0.0,0.00027000000000000006,0.0,0.0,0.0,0.0,0.0,8.943021424125622,0.0,0.0,0.0,0.0,0.0,0.0,-0.051430558441965306,0.5 -54,my_land,urban,0.0,0.0,0.0,0.0,2009-03-30,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -55,my_land,rural,1.2429516943421646,0.05105407143940076,0.0,20.0,2009-03-30,0.0,0.0,0.0002800000000000001,0.0,0.0,0.0,0.0,0.0,9.047565178015704,0.0,0.0,0.0,0.0,0.0,0.0,-0.05105407143940076,0.5 -56,my_land,urban,0.0,0.0,0.0,0.0,2009-03-31,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -57,my_land,rural,1.1922686280508497,0.05068306629131499,0.0,20.0,2009-03-31,0.0,0.0,0.0002900000000000001,0.0,0.0,0.0,0.0,0.0,9.152039397251963,0.0,0.0,0.0,0.0,0.0,0.0,-0.05068306629131499,0.5 -58,my_land,urban,0.0,0.0,0.0,0.0,2009-04-01,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -59,my_land,rural,1.1419512040582054,0.05031742399264425,0.0,20.0,2009-04-01,0.0,0.0,0.00030000000000000014,0.0,0.0,0.0,0.0,0.0,9.256504924656497,0.0,0.0,0.0,0.0,0.0,0.0,-0.05031742399264425,0.5 -60,my_land,urban,0.0,0.0,0.0,0.0,2009-04-02,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -61,my_land,rural,1.0919941750969615,0.04995702896124396,0.0,20.0,2009-04-02,0.0,0.0,0.00031000000000000016,0.0,0.0,0.0,0.0,0.0,9.569563115582064,0.0,0.0,0.0,0.0,0.0,0.0,-0.04995702896124396,0.5 -62,my_land,urban,0.0,0.002,0.002,0.0,2009-04-03,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -63,my_land,rural,1.0623924061813461,0.04960176891561542,0.02,20.0,2009-04-03,0.0,0.0,0.0003200000000000002,0.0,0.0,0.0,0.0,0.0,9.90869538944776,0.0,0.0,0.0,0.0,0.0,0.0,-0.02960176891561542,0.5 -64,my_land,urban,0.0,0.0,0.0,0.0,2009-04-04,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -65,my_land,rural,1.0129999515345065,0.04939245464683967,0.0,20.0,2009-04-04,0.0,0.0,0.0003300000000000002,0.0,0.0,0.0,0.0,0.0,10.25108692368097,0.0,0.0,0.0,0.0,0.0,0.0,-0.04939245464683967,0.5 -66,my_land,urban,0.0,0.0,0.0,0.0,2009-04-05,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -67,my_land,rural,0.9639547865655058,0.04904516496900069,0.0,20.0,2009-04-05,0.0,0.0,0.00034000000000000024,0.0,0.0,0.0,0.0,0.0,10.593885865460123,0.0,0.0,0.0,0.0,0.0,0.0,-0.04904516496900069,0.5 -68,my_land,urban,0.0,0.009,0.009,0.0,2009-04-06,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0,,,,, -69,my_land,rural,1.0052520531813867,0.04870273338411913,0.09,20.0,2009-04-06,0.0,0.0,0.00035000000000000027,0.0,0.0,0.0,0.0,0.0,10.939591483838567,0.0,0.0,0.0,0.0,0.0,0.0,0.041297266615880866,0.5 -70,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2009-04-07,0.0,0.0,3.3881317890172014e-21,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -71,my_land,rural,1.4562611434598214,0.04899090972156532,0.5,20.0,2009-04-07,0.0,0.0,0.0003600000000000003,0.0,0.0,0.0,0.0,0.0,11.05217739131531,0.0,0.0,0.0,0.0,0.0,0.0,0.45100909027843467,0.5 -72,my_land,urban,0.0,0.014000000000000004,0.014,0.0,2009-04-08,0.0,0.0,1.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -73,my_land,rural,1.5440098505589126,0.05225129290090875,0.13999999999999999,20.0,2009-04-08,0.0,0.0,0.0003700000000000003,0.0,0.0,0.0,0.0,0.0,11.117746496016576,0.0,0.0,0.0,0.0,0.0,0.0,0.08774870709909124,0.5 -74,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2009-04-09,0.0,0.0,2.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -75,my_land,rural,1.661099437450659,0.05291041310825378,0.16999999999999998,20.0,2009-04-09,0.0,0.0,0.00038000000000000035,0.0,0.0,0.0,0.0,0.0,11.187462720617349,0.0,0.0,0.0,0.0,0.0,0.0,0.11708958689174623,0.5 -76,my_land,urban,0.0,0.019,0.019,0.0,2009-04-10,0.0,0.0,3.0000000000000035e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -77,my_land,rural,1.7972965439381954,0.053802893512463534,0.19,20.0,2009-04-10,0.0,0.0,0.00039000000000000037,0.0,0.0,0.0,0.0,0.0,11.257406496448128,0.0,0.0,0.0,0.0,0.0,0.0,0.13619710648753647,0.5 -78,my_land,urban,0.0,0.0,0.0,0.0,2009-04-11,0.0,0.0,4.000000000000003e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -79,my_land,rural,1.7424365717812949,0.05485997215690057,0.0,20.0,2009-04-11,0.0,0.0,0.0004000000000000004,0.0,0.0,0.0,0.0,0.0,11.324363312056017,0.0,0.0,0.0,0.0,0.0,0.0,-0.05485997215690057,0.5 -80,my_land,urban,0.0,0.0,0.0,0.0,2009-04-12,0.0,0.0,5.000000000000003e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -81,my_land,rural,1.6880048644675634,0.05443170731373148,0.0,20.0,2009-04-12,0.0,0.0,0.0004100000000000004,0.0,0.0,0.0,0.0,0.0,11.393670414007001,0.0,0.0,0.0,0.0,0.0,0.0,-0.05443170731373148,0.5 -82,my_land,urban,0.0,0.001,0.001,0.0,2009-04-13,0.0,0.0,6.000000000000003e-06,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0,,,,, -83,my_land,rural,1.643994774470235,0.054010089997328425,0.01,20.0,2009-04-13,0.0,0.0,0.00042000000000000045,0.0,0.0,0.0,0.0,0.0,11.463271301750876,0.0,0.0,0.0,0.0,0.0,0.0,-0.044010089997328423,0.5 -84,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2009-04-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0,,,,, -85,my_land,rural,2.100323189088186,0.05367158538204903,0.51,20.0,2009-04-14,0.0,0.0,0.0004300000000000005,0.0,0.0,0.0,0.0,0.0,11.542053866804183,0.0,0.0,0.0,0.0,0.0,0.0,0.45632841461795104,0.5 -86,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-04-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0,,,,, -87,my_land,rural,2.1530362018731934,0.05728698721499271,0.11,20.0,2009-04-15,0.0,0.0,0.0004400000000000005,0.0,0.0,0.0,0.0,0.0,11.584336922192195,0.0,0.0,0.0,0.0,0.0,0.0,0.0527130127850073,0.5 -88,my_land,urban,0.022000000000000006,0.02,0.082,0.0,2009-04-16,0.0,0.0,7.096774193548387e-07,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -89,my_land,rural,2.915316190605835,0.05772001126735857,0.8200000000000001,20.0,2009-04-16,0.0,0.0,0.00045000000000000053,0.0,0.0,0.0,0.0,0.0,11.63988170074432,0.0,0.0,0.0,0.0,0.0,0.0,0.7622799887326415,0.5 -90,my_land,urban,0.0,0.02,0.009,0.0,2009-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -91,my_land,rural,2.940955627566892,0.06436056303894279,0.09,20.0,2009-04-17,0.0,0.0,0.00046000000000000056,0.0,0.0,0.0,0.0,0.0,11.677211788432402,0.0,0.0,0.0,0.0,0.0,0.0,0.025639436961057204,0.5 -92,my_land,urban,0.0,0.0,0.0,0.0,2009-04-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -93,my_land,rural,2.8763588939005906,0.06459673366630128,0.0,20.0,2009-04-18,0.0,0.0,0.0004700000000000006,0.0,0.0,0.0,0.0,0.0,11.722151476054051,0.0,0.0,0.0,0.0,0.0,0.0,-0.06459673366630128,0.5 -94,my_land,urban,0.0,0.0,0.0,0.0,2009-04-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -95,my_land,rural,2.8123555236422586,0.06400337025833196,0.0,20.0,2009-04-19,0.0,0.0,0.0004800000000000006,0.0,0.0,0.0,0.0,0.0,11.768393932006756,0.0,0.0,0.0,0.0,0.0,0.0,-0.06400337025833196,0.5 -96,my_land,urban,0.0,0.0,0.0,0.0,2009-04-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -97,my_land,rural,2.7489346906441936,0.0634208329980652,0.0,20.0,2009-04-20,0.0,0.0,0.0004900000000000006,0.0,0.0,0.0,0.0,0.0,11.814799241500845,0.0,0.0,0.0,0.0,0.0,0.0,-0.0634208329980652,0.5 -98,my_land,urban,0.0,0.0,0.0,0.0,2009-04-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -99,my_land,rural,2.686085862809942,0.06284882783425177,0.0,20.0,2009-04-21,0.0,0.0,0.0005000000000000007,0.0,0.0,0.0,0.0,0.0,11.801849905187606,0.0,0.0,0.0,0.0,0.0,0.0,-0.06284882783425177,0.5 -100,my_land,urban,0.0,0.0,0.0,0.0,2009-04-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -101,my_land,rural,2.623798791529112,0.06228707128083,0.0,20.0,2009-04-22,0.0,0.0,0.0005100000000000007,0.0,0.0,0.0,0.0,0.0,11.781481238148451,0.0,0.0,0.0,0.0,0.0,0.0,-0.06228707128083,0.5 -102,my_land,urban,0.0,0.0,0.0,0.0,2009-04-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -103,my_land,rural,2.5620635015828794,0.06173528994623264,0.0,20.0,2009-04-23,0.0,0.0,0.0005200000000000007,0.0,0.0,0.0,0.0,0.0,11.760185154768557,0.0,0.0,0.0,0.0,0.0,0.0,-0.06173528994623264,0.5 -104,my_land,urban,0.0,0.015,0.015,0.0,2009-04-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -105,my_land,rural,2.6508702814952256,0.0611932200876539,0.15,20.0,2009-04-24,0.0,0.0,0.0005300000000000007,0.0,0.0,0.0,0.0,0.0,11.739882089295309,0.0,0.0,0.0,0.0,0.0,0.0,0.0888067799123461,0.5 -106,my_land,urban,0.0,0.0,0.0,0.0,2009-04-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0,,,,, -107,my_land,rural,2.5888957769571364,0.061974504538089406,0.0,20.0,2009-04-25,0.0,0.0,0.0005400000000000008,0.0,0.0,0.0,0.0,0.0,11.717485261161913,0.0,0.0,0.0,0.0,0.0,0.0,-0.061974504538089406,0.5 -108,my_land,urban,0.0,0.02,0.056,0.0,2009-04-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0,,,,, -109,my_land,rural,3.0874675419680004,0.06142823498913598,0.5599999999999999,20.0,2009-04-26,0.0,0.0,0.0005500000000000008,0.0,0.0,0.0,0.0,0.0,11.701133670908279,0.0,0.0,0.0,0.0,0.0,0.0,0.49857176501086403,0.5 -110,my_land,urban,0.0,0.02,0.054000000000000006,0.0,2009-04-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -111,my_land,rural,3.5615045326152734,0.0659630093527269,0.54,20.0,2009-04-27,0.0,0.0,0.0005600000000000008,0.0,0.0,0.0,0.0,0.0,11.679282228854305,0.0,0.0,0.0,0.0,0.0,0.0,0.4740369906472731,0.5 -112,my_land,urban,0.0,0.007,0.007,0.0,2009-04-28,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -113,my_land,rural,3.5609198126034434,0.07058472001183014,0.06999999999999999,20.0,2009-04-28,0.0,0.0,0.0005700000000000008,0.0,0.0,0.0,0.0,0.0,11.766160278606788,0.0,0.0,0.0,0.0,0.0,0.0,-0.0005847200118301392,0.5 -114,my_land,urban,0.0,0.005,0.005,0.0,2009-04-29,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -115,my_land,rural,3.540340988387985,0.07057882421545852,0.05,20.0,2009-04-29,0.0,0.0,0.0005800000000000009,0.0,0.0,0.0,0.0,0.0,11.87077003482585,0.0,0.0,0.0,0.0,0.0,0.0,-0.020578824215458515,0.5 -116,my_land,urban,0.0,0.019,0.019,0.0,2009-04-30,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -117,my_land,rural,3.6599693493665963,0.07037163902138849,0.19,20.0,2009-04-30,0.0,0.0,0.0005900000000000009,0.0,0.0,0.0,0.0,0.0,11.979452102758442,0.0,0.0,0.0,0.0,0.0,0.0,0.11962836097861151,0.5 -118,my_land,urban,0.0,0.002,0.002,0.0,2009-05-01,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -119,my_land,rural,3.608384740346465,0.07158460902013139,0.02,20.0,2009-05-01,0.0,0.0,0.0006000000000000009,0.0,0.0,0.0,0.0,0.0,12.084931512844804,0.0,0.0,0.0,0.0,0.0,0.0,-0.05158460902013139,0.5 -120,my_land,urban,0.0,0.0,0.0,0.0,2009-05-02,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -121,my_land,rural,3.5373257158096973,0.07105902453676755,0.0,20.0,2009-05-02,0.0,0.0,0.000610000000000001,0.0,0.0,0.0,0.0,0.0,12.191866439105599,0.0,0.0,0.0,0.0,0.0,0.0,-0.07105902453676755,0.5 -122,my_land,urban,0.0,0.0,0.0,0.0,2009-05-03,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -123,my_land,rural,3.4669843830710656,0.07034133273863154,0.0,20.0,2009-05-03,0.0,0.0,0.000620000000000001,0.0,0.0,0.0,0.0,0.0,12.2989833048882,0.0,0.0,0.0,0.0,0.0,0.0,-0.07034133273863154,0.5 -124,my_land,urban,0.0,0.001,0.001,0.0,2009-05-04,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -125,my_land,rural,3.4073463540473026,0.06963802902376323,0.01,20.0,2009-05-04,0.0,0.0,0.000630000000000001,0.0,0.0,0.0,0.0,0.0,12.406122913111025,0.0,0.0,0.0,0.0,0.0,0.0,-0.05963802902376323,0.5 -126,my_land,urban,0.0,0.0,0.0,0.0,2009-05-05,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -127,my_land,rural,3.338299101226045,0.0690472528212574,0.0,20.0,2009-05-05,0.0,0.0,0.000640000000000001,0.0,0.0,0.0,0.0,0.0,12.513265364138878,0.0,0.0,0.0,0.0,0.0,0.0,-0.0690472528212574,0.5 -128,my_land,urban,0.0,0.0,0.0,0.0,2009-05-06,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -129,my_land,rural,3.269929575129468,0.06836952609657722,0.0,20.0,2009-05-06,0.0,0.0,0.0006500000000000011,0.0,0.0,0.0,0.0,0.0,12.67665817051736,0.0,0.0,0.0,0.0,0.0,0.0,-0.06836952609657722,0.5 -130,my_land,urban,0.0,0.013,0.013,0.0,2009-05-07,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -131,my_land,rural,3.3322245688425496,0.06770500628691827,0.13,20.0,2009-05-07,0.0,0.0,0.0006600000000000011,0.0,0.0,0.0,0.0,0.0,12.848655763143022,0.0,0.0,0.0,0.0,0.0,0.0,0.06229499371308173,0.5 -132,my_land,urban,0.0,0.007,0.007,0.0,2009-05-08,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -133,my_land,rural,3.3339143474245683,0.06831022141798135,0.06999999999999999,20.0,2009-05-08,0.0,0.0,0.0006700000000000011,0.0,0.0,0.0,0.0,0.0,13.018626404515452,0.0,0.0,0.0,0.0,0.0,0.0,0.0016897785820186467,0.5 -134,my_land,urban,0.0,0.0,0.0,0.0,2009-05-09,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -135,my_land,rural,3.265587634137683,0.06832671328688535,0.0,20.0,2009-05-09,0.0,0.0,0.0006800000000000011,0.0,0.0,0.0,0.0,0.0,13.189828300564434,0.0,0.0,0.0,0.0,0.0,0.0,-0.06832671328688535,0.5 -136,my_land,urban,0.0,0.0,0.0,0.0,2009-05-10,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -137,my_land,rural,3.1979246107063624,0.06766302343132068,0.0,20.0,2009-05-10,0.0,0.0,0.0006900000000000012,0.0,0.0,0.0,0.0,0.0,13.361228537570554,0.0,0.0,0.0,0.0,0.0,0.0,-0.06766302343132068,0.5 -138,my_land,urban,0.0,0.0,0.0,0.0,2009-05-11,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -139,my_land,rural,3.1309124770861776,0.0670121336201849,0.0,20.0,2009-05-11,0.0,0.0,0.0007000000000000012,0.0,0.0,0.0,0.0,0.0,13.532653567196322,0.0,0.0,0.0,0.0,0.0,0.0,-0.0670121336201849,0.5 -140,my_land,urban,0.0,0.008,0.008,0.0,2009-05-12,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -141,my_land,rural,3.1445388005708725,0.06637367651530499,0.08,20.0,2009-05-12,0.0,0.0,0.0007100000000000012,0.0,0.0,0.0,0.0,0.0,13.441834841673717,0.0,0.0,0.0,0.0,0.0,0.0,0.013626323484695023,0.5 -142,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2009-05-13,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0,,,,, -143,my_land,rural,3.19803579404879,0.0665030065220828,0.12,20.0,2009-05-13,0.0,0.0,0.0007200000000000012,0.0,0.0,0.0,0.0,0.0,13.318582832555117,0.0,0.0,0.0,0.0,0.0,0.0,0.0534969934779172,0.5 -144,my_land,urban,0.07700000000000001,0.02,0.137,0.0,2009-05-14,0.0,0.0,1.118803418803419e-05,0.0,0.0,0.0,0.0,0.0,13.7,0.0,0.0,0.0,,,,, -145,my_land,rural,4.50102259604401,0.06701319800478059,1.37,20.0,2009-05-14,0.0,0.0,0.0007300000000000013,0.0,0.0,0.0,0.0,0.0,13.203624760320423,0.0,0.0,0.0,0.0,0.0,0.0,1.3029868019952195,0.5 -146,my_land,urban,0.031000000000000007,0.02,0.014,0.0,2009-05-15,0.0,0.0,5.3215360539304225e-06,0.0,0.0,0.0,0.0,0.0,13.7,0.0,0.0,0.0,,,,, -147,my_land,rural,4.560299029690554,0.08072356635345548,0.13999999999999999,20.0,2009-05-15,0.0,0.0,0.0007400000000000013,0.0,0.0,0.0,0.0,0.0,13.063515884036402,0.0,0.0,0.0,0.0,0.0,0.0,0.05927643364654451,0.5 -148,my_land,urban,0.0050000000000000044,0.02,0.033999999999999996,0.0,2009-05-16,0.0,0.0,7.023928948811583e-07,0.0,0.0,0.0,0.0,0.0,13.60666666666667,0.0,0.0,0.0,,,,, -149,my_land,rural,4.818888988723798,0.081410040966755,0.33999999999999997,20.0,2009-05-16,0.0,0.0,0.0007500000000000013,0.0,0.0,0.0,0.0,0.0,12.935196525819391,0.0,0.0,0.0,0.0,0.0,0.0,0.25858995903324494,0.5 -150,my_land,urban,0.011000000000000003,0.02,0.066,0.0,2009-05-17,0.0,0.0,3.671827812488773e-07,0.0,0.0,0.0,0.0,0.0,13.284967320261439,0.0,0.0,0.0,,,,, -151,my_land,rural,5.394415305770039,0.08447368295375954,0.66,20.0,2009-05-17,0.0,0.0,0.0007600000000000013,0.0,0.0,0.0,0.0,0.0,12.808597835461464,0.0,0.0,0.0,0.0,0.0,0.0,0.5755263170462405,0.5 -152,my_land,urban,0.016,0.02,0.065,0.0,2009-05-18,0.0,0.0,3.9062365178539356e-07,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0,,,,, -153,my_land,rural,5.952702860543271,0.09171244522676819,0.65,20.0,2009-05-18,0.0,0.0,0.0007700000000000014,0.0,0.0,0.0,0.0,0.0,12.67949095492107,0.0,0.0,0.0,0.0,0.0,0.0,0.5582875547732318,0.5 -154,my_land,urban,0.0,0.02,0.035,0.0,2009-05-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, -155,my_land,rural,6.203376256423689,0.09932660411958225,0.35000000000000003,20.0,2009-05-19,0.0,0.0,0.0007800000000000014,0.0,0.0,0.0,0.0,0.0,13.072619484965148,0.0,0.0,0.0,0.0,0.0,0.0,0.25067339588041776,0.5 -156,my_land,urban,0.0,0.001,0.001,0.0,2009-05-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, -157,my_land,rural,6.113376256423689,0.1,0.01,20.0,2009-05-20,0.0,0.0,0.0007900000000000014,0.0,0.0,0.0,0.0,0.0,13.524702435620645,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -158,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-05-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, -159,my_land,rural,6.043376256423689,0.1,0.03,20.0,2009-05-21,0.0,0.0,0.0008000000000000014,0.0,0.0,0.0,0.0,0.0,13.989025304452582,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -160,my_land,urban,0.0,0.0,0.0,0.0,2009-05-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, -161,my_land,rural,5.943376256423689,0.1,0.0,20.0,2009-05-22,0.0,0.0,0.0008100000000000015,0.0,0.0,0.0,0.0,0.0,14.454878163056573,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -162,my_land,urban,0.0,0.0,0.0,0.0,2009-05-23,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, -163,my_land,rural,5.844181904168082,0.09919435225560742,0.0,20.0,2009-05-23,0.0,0.0,0.0008200000000000015,0.0,0.0,0.0,0.0,0.0,14.920922270382071,0.0,0.0,0.0,0.0,0.0,0.0,-0.09919435225560742,0.5 -164,my_land,urban,0.0,0.0,0.0,0.0,2009-05-24,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0,,,,, -165,my_land,rural,5.746383284999338,0.09779861916874427,0.0,20.0,2009-05-24,0.0,0.0,0.0008300000000000015,0.0,0.0,0.0,0.0,0.0,15.386990283797763,0.0,0.0,0.0,0.0,0.0,0.0,-0.09779861916874427,0.5 -166,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2009-05-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -167,my_land,rural,5.889941532341746,0.09644175265759114,0.24,20.0,2009-05-25,0.0,0.0,0.0008400000000000016,0.0,0.0,0.0,0.0,0.0,15.857689987239379,0.0,0.0,0.0,0.0,0.0,0.0,0.14355824734240885,0.5 -168,my_land,urban,0.0,0.008,0.008,0.0,2009-05-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -169,my_land,rural,5.871501500621583,0.0984400317201632,0.08,20.0,2009-05-26,0.0,0.0,0.0008500000000000016,0.0,0.0,0.0,0.0,0.0,16.319711248404925,0.0,0.0,0.0,0.0,0.0,0.0,-0.018440031720163196,0.5 -170,my_land,urban,0.0,0.013,0.013,0.0,2009-05-27,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -171,my_land,rural,5.90332044725493,0.09818105336665264,0.13,20.0,2009-05-27,0.0,0.0,0.0008600000000000016,0.0,0.0,0.0,0.0,0.0,16.653472483832484,0.0,0.0,0.0,0.0,0.0,0.0,0.031818946633347354,0.5 -172,my_land,urban,0.0,0.0,0.0,0.0,2009-05-28,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -173,my_land,rural,5.804692089791312,0.09862835746361767,0.0,20.0,2009-05-28,0.0,0.0,0.0008700000000000016,0.0,0.0,0.0,0.0,0.0,16.969184057979064,0.0,0.0,0.0,0.0,0.0,0.0,-0.09862835746361767,0.5 -174,my_land,urban,0.0,0.0,0.0,0.0,2009-05-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -175,my_land,rural,5.70744363863502,0.097248451156292,0.0,20.0,2009-05-29,0.0,0.0,0.0008800000000000017,0.0,0.0,0.0,0.0,0.0,17.283648007247386,0.0,0.0,0.0,0.0,0.0,0.0,-0.097248451156292,0.5 -176,my_land,urban,0.0,0.0,0.0,0.0,2009-05-30,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -177,my_land,rural,5.611536883374744,0.09590675526027635,0.0,20.0,2009-05-30,0.0,0.0,0.0008900000000000017,0.0,0.0,0.0,0.0,0.0,17.597956003405926,0.0,0.0,0.0,0.0,0.0,0.0,-0.09590675526027635,0.5 -178,my_land,urban,0.0,0.0,0.0,0.0,2009-05-31,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -179,my_land,rural,5.516935182547588,0.09460170082715641,0.0,20.0,2009-05-31,0.0,0.0,0.0009000000000000017,0.0,0.0,0.0,0.0,0.0,17.91224449792574,0.0,0.0,0.0,0.0,0.0,0.0,-0.09460170082715641,0.5 -180,my_land,urban,0.0,0.0,0.0,0.0,2009-06-01,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -181,my_land,rural,5.423603378762304,0.0933318037852833,0.0,20.0,2009-06-01,0.0,0.0,0.0009100000000000017,0.0,0.0,0.0,0.0,0.0,18.22653056224072,0.0,0.0,0.0,0.0,0.0,0.0,-0.0933318037852833,0.5 -182,my_land,urban,0.0,0.0,0.0,0.0,2009-06-02,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -183,my_land,rural,5.331507719492868,0.09209565926943614,0.0,20.0,2009-06-02,0.0,0.0,0.0009200000000000018,0.0,0.0,0.0,0.0,0.0,17.772959175280093,0.0,0.0,0.0,0.0,0.0,0.0,-0.09209565926943614,0.5 -184,my_land,urban,0.0,0.0,0.0,0.0,2009-06-03,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -185,my_land,rural,5.24061578309332,0.09089193639954828,0.0,20.0,2009-06-03,0.0,0.0,0.0009300000000000018,0.0,0.0,0.0,0.0,0.0,17.223405614410012,0.0,0.0,0.0,0.0,0.0,0.0,-0.09089193639954828,0.5 -186,my_land,urban,0.0,0.0,0.0,0.0,2009-06-04,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0,,,,, -187,my_land,rural,5.150896409625811,0.08971937346750859,0.0,20.0,2009-06-04,0.0,0.0,0.0009400000000000018,0.0,0.0,0.0,0.0,0.0,16.661854274301255,0.0,0.0,0.0,0.0,0.0,0.0,-0.08971937346750859,0.5 -188,my_land,urban,0.024,0.02,0.08399999999999999,0.0,2009-06-05,0.0,0.0,4.125e-06,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0,,,,, -189,my_land,rural,5.902319636130534,0.08857677349527637,0.84,20.0,2009-06-05,0.0,0.0,0.0009500000000000018,0.0,0.0,0.0,0.0,0.0,16.104525378963004,0.0,0.0,0.0,0.0,0.0,0.0,0.7514232265047236,0.5 -190,my_land,urban,0.118,0.02,0.154,0.0,2009-06-06,0.0,0.0,3.82753164556962e-06,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0,,,,, -191,my_land,rural,7.343705378852824,0.09861425727771043,1.54,20.0,2009-06-06,0.0,0.0,0.0009600000000000019,0.0,0.0,0.0,0.0,0.0,15.542653012107253,0.0,0.0,0.0,0.0,0.0,0.0,1.4413857427222896,0.5 -192,my_land,urban,0.10699999999999998,0.02,0.049,0.0,2009-06-07,0.0,0.0,3.5139175923533963e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0,,,,, -193,my_land,rural,7.733705378852823,0.1,0.49,20.0,2009-06-07,0.0,0.0,0.0009700000000000019,0.0,0.0,0.0,0.0,0.0,14.97422564577897,0.0,0.0,0.0,0.0,0.0,0.0,0.38999999999999996,0.5 -194,my_land,urban,0.04899999999999998,0.019999999999999997,0.002,0.0,2009-06-08,0.0,0.0,2.4851905845541163e-06,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0,,,,, -195,my_land,rural,7.653705378852823,0.1,0.02,20.0,2009-06-08,0.0,0.0,0.000980000000000002,0.0,0.0,0.0,0.0,0.0,14.409278205722373,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -196,my_land,urban,-6.938893903907228e-18,0.02,0.0,0.0,2009-06-09,0.0,0.0,-8.470329472543003e-22,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0,,,,, -197,my_land,rural,7.553705378852824,0.1,0.0,20.0,2009-06-09,0.0,0.0,0.000990000000000002,0.0,0.0,0.0,0.0,0.0,14.753838348215298,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -198,my_land,urban,0.03499999999999998,0.02,0.095,0.0,2009-06-10,0.0,0.0,4.666666666666662e-07,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -199,my_land,rural,8.403705378852823,0.1,0.95,20.0,2009-06-10,0.0,0.0,0.001000000000000002,0.0,0.0,0.0,0.0,0.0,15.229829243576342,0.0,0.0,0.0,0.0,0.0,0.0,0.8500000000000001,0.5 -200,my_land,urban,0.0,0.02,0.0,0.0,2009-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -201,my_land,rural,8.303705378852824,0.1,0.0,20.0,2009-06-11,0.0,0.0,0.001010000000000002,0.0,0.0,0.0,0.0,0.0,15.686764372947042,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -202,my_land,urban,0.0,0.0,0.0,0.0,2009-06-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -203,my_land,rural,8.203705378852824,0.1,0.0,20.0,2009-06-12,0.0,0.0,0.001020000000000002,0.0,0.0,0.0,0.0,0.0,16.15905982911838,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -204,my_land,urban,0.0,0.0,0.0,0.0,2009-06-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -205,my_land,rural,8.103705378852824,0.1,0.0,20.0,2009-06-13,0.0,0.0,0.001030000000000002,0.0,0.0,0.0,0.0,0.0,16.6332753336398,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -206,my_land,urban,0.0,0.0,0.0,0.0,2009-06-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -207,my_land,rural,8.003705378852825,0.1,0.0,20.0,2009-06-14,0.0,0.0,0.001040000000000002,0.0,0.0,0.0,0.0,0.0,17.107730844204976,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -208,my_land,urban,0.0,0.015,0.015,0.0,2009-06-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -209,my_land,rural,8.053705378852825,0.1,0.15,20.0,2009-06-15,0.0,0.0,0.001050000000000002,0.0,0.0,0.0,0.0,0.0,17.58362662964039,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 -210,my_land,urban,0.0,0.0,0.0,0.0,2009-06-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -211,my_land,rural,7.953705378852826,0.1,0.0,20.0,2009-06-16,0.0,0.0,0.0010600000000000021,0.0,0.0,0.0,0.0,0.0,17.46759618370505,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -212,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2009-06-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -213,my_land,rural,7.973705378852825,0.1,0.12,20.0,2009-06-17,0.0,0.0,0.0010700000000000022,0.0,0.0,0.0,0.0,0.0,17.279296613300197,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 -214,my_land,urban,0.0,0.0,0.0,0.0,2009-06-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0,,,,, -215,my_land,rural,7.873705378852826,0.1,0.0,20.0,2009-06-18,0.0,0.0,0.0010800000000000022,0.0,0.0,0.0,0.0,0.0,17.081340649162527,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -216,my_land,urban,0.0,0.02,0.023,0.0,2009-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, -217,my_land,rural,8.003705378852827,0.1,0.22999999999999998,20.0,2009-06-19,0.0,0.0,0.0010900000000000022,0.0,0.0,0.0,0.0,0.0,16.88434692045113,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 -218,my_land,urban,0.0,0.002,0.002,0.0,2009-06-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, -219,my_land,rural,7.923705378852826,0.1,0.02,20.0,2009-06-20,0.0,0.0,0.0011000000000000022,0.0,0.0,0.0,0.0,0.0,16.683757647556394,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -220,my_land,urban,0.0,0.001,0.001,0.0,2009-06-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, -221,my_land,rural,7.833705378852827,0.1,0.01,20.0,2009-06-21,0.0,0.0,0.0011100000000000023,0.0,0.0,0.0,0.0,0.0,16.484576850944553,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -222,my_land,urban,0.0,0.013,0.013,0.0,2009-06-22,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, -223,my_land,rural,7.863705378852827,0.1,0.13,20.0,2009-06-22,0.0,0.0,0.0011200000000000023,0.0,0.0,0.0,0.0,0.0,16.285960960815387,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -224,my_land,urban,0.0,0.0,0.0,0.0,2009-06-23,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, -225,my_land,rural,7.763705378852827,0.1,0.0,20.0,2009-06-23,0.0,0.0,0.0011300000000000023,0.0,0.0,0.0,0.0,0.0,16.750923692601926,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -226,my_land,urban,0.0,0.0,0.0,0.0,2009-06-24,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0,,,,, -227,my_land,rural,7.6637053788528275,0.1,0.0,20.0,2009-06-24,0.0,0.0,0.0011400000000000023,0.0,0.0,0.0,0.0,0.0,17.299222606575242,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -228,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2009-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0,,,,, -229,my_land,rural,7.933705378852828,0.1,0.37,20.0,2009-06-25,0.0,0.0,0.0011500000000000024,0.0,0.0,0.0,0.0,0.0,17.866282733224903,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.5 -230,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2009-06-26,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -231,my_land,rural,8.333705378852828,0.1,0.5,20.0,2009-06-26,0.0,0.0,0.0011600000000000024,0.0,0.0,0.0,0.0,0.0,18.43128709343402,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 -232,my_land,urban,0.0,0.0040000000000000036,0.004,0.0,2009-06-27,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -233,my_land,rural,8.273705378852828,0.1,0.04,20.0,2009-06-27,0.0,0.0,0.0011700000000000024,0.0,0.0,0.0,0.0,0.0,18.979803741679255,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -234,my_land,urban,0.0,0.001,0.001,0.0,2009-06-28,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -235,my_land,rural,8.183705378852828,0.1,0.01,20.0,2009-06-28,0.0,0.0,0.0011800000000000024,0.0,0.0,0.0,0.0,0.0,19.538546895209908,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -236,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-06-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -237,my_land,rural,8.113705378852828,0.1,0.03,20.0,2009-06-29,0.0,0.0,0.0011900000000000025,0.0,0.0,0.0,0.0,0.0,20.09856836190124,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -238,my_land,urban,0.0,0.001,0.001,0.0,2009-06-30,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -239,my_land,rural,8.023705378852828,0.1,0.01,20.0,2009-06-30,0.0,0.0,0.0012000000000000025,0.0,0.0,0.0,0.0,0.0,19.983749617737658,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -240,my_land,urban,0.0,0.0,0.0,0.0,2009-07-01,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -241,my_land,rural,7.923705378852828,0.1,0.0,20.0,2009-07-01,0.0,0.0,0.0012100000000000025,0.0,0.0,0.0,0.0,0.0,19.78457584721721,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -242,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2009-07-02,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -243,my_land,rural,7.883705378852828,0.1,0.06,20.0,2009-07-02,0.0,0.0,0.0012200000000000025,0.0,0.0,0.0,0.0,0.0,19.574857698402152,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -244,my_land,urban,0.0,0.001,0.001,0.0,2009-07-03,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -245,my_land,rural,7.793705378852828,0.1,0.01,20.0,2009-07-03,0.0,0.0,0.0012300000000000026,0.0,0.0,0.0,0.0,0.0,19.36382149480027,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -246,my_land,urban,0.0,0.0,0.0,0.0,2009-07-04,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -247,my_land,rural,7.693705378852829,0.1,0.0,20.0,2009-07-04,0.0,0.0,0.0012400000000000026,0.0,0.0,0.0,0.0,0.0,19.152620541850034,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -248,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-07-05,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0,,,,, -249,my_land,rural,7.623705378852828,0.1,0.03,20.0,2009-07-05,0.0,0.0,0.0012500000000000026,0.0,0.0,0.0,0.0,0.0,18.941398995231257,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -250,my_land,urban,0.0,0.02,0.025,0.0,2009-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0,,,,, -251,my_land,rural,7.773705378852829,0.1,0.25,20.0,2009-07-06,0.0,0.0,0.0012600000000000027,0.0,0.0,0.0,0.0,0.0,18.73308999245058,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.5 -252,my_land,urban,0.049999999999999996,0.02,0.10999999999999999,0.0,2009-07-07,0.0,0.0,5.555555555555555e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, -253,my_land,rural,8.773705378852828,0.1,1.0999999999999999,20.0,2009-07-07,0.0,0.0,0.0012700000000000027,0.0,0.0,0.0,0.0,0.0,18.593309340316768,0.0,0.0,0.0,0.0,0.0,0.0,0.9999999999999999,0.5 -254,my_land,urban,0.0029999999999999957,0.02,0.013,0.0,2009-07-08,0.0,0.0,1.0852713178294554e-07,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, -255,my_land,rural,8.803705378852827,0.1,0.13,20.0,2009-07-08,0.0,0.0,0.0012800000000000027,0.0,0.0,0.0,0.0,0.0,18.430037853433507,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -256,my_land,urban,0.0,0.0029999999999999957,0.0,0.0,2009-07-09,0.0,0.0,1.1085271317829455e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, -257,my_land,rural,8.703705378852828,0.1,0.0,20.0,2009-07-09,0.0,0.0,0.0012900000000000027,0.0,0.0,0.0,0.0,0.0,18.28054044917919,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -258,my_land,urban,0.0,0.008,0.008,0.0,2009-07-10,0.0,0.0,2.1085271317829452e-06,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0,,,,, -259,my_land,rural,8.683705378852828,0.1,0.08,20.0,2009-07-10,0.0,0.0,0.0013000000000000028,0.0,0.0,0.0,0.0,0.0,18.1332818386474,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 -260,my_land,urban,0.028000000000000004,0.02,0.08800000000000001,0.0,2009-07-11,0.0,0.0,1.2799817601459185e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0,,,,, -261,my_land,rural,9.463705378852827,0.1,0.88,20.0,2009-07-11,0.0,0.0,0.0013100000000000028,0.0,0.0,0.0,0.0,0.0,17.9982496308566,0.0,0.0,0.0,0.0,0.0,0.0,0.78,0.5 -262,my_land,urban,0.0,0.02,0.013,0.0,2009-07-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0,,,,, -263,my_land,rural,9.493705378852827,0.1,0.13,20.0,2009-07-12,0.0,0.0,0.0013200000000000028,0.0,0.0,0.0,0.0,0.0,17.841296285426136,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -264,my_land,urban,0.0,0.009,0.009,0.0,2009-07-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0,,,,, -265,my_land,rural,9.483705378852827,0.1,0.09,20.0,2009-07-13,0.0,0.0,0.0013300000000000028,0.0,0.0,0.0,0.0,0.0,17.692662035678268,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -266,my_land,urban,0.0,0.02,0.025,0.0,2009-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0,,,,, -267,my_land,rural,9.633705378852827,0.1,0.25,20.0,2009-07-14,0.0,0.0,0.0013400000000000029,0.0,0.0,0.0,0.0,0.0,17.579851090800798,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.5 -268,my_land,urban,0.0,0.001,0.001,0.0,2009-07-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0,,,,, -269,my_land,rural,9.543705378852827,0.1,0.01,20.0,2009-07-15,0.0,0.0,0.0013500000000000029,0.0,0.0,0.0,0.0,0.0,17.467124241350103,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -270,my_land,urban,0.022000000000000006,0.02,0.082,0.0,2009-07-16,0.0,0.0,7.096774193548387e-07,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0,,,,, -271,my_land,rural,10.263705378852828,0.1,0.8200000000000001,20.0,2009-07-16,0.0,0.0,0.001360000000000003,0.0,0.0,0.0,0.0,0.0,17.366225561563404,0.0,0.0,0.0,0.0,0.0,0.0,0.7200000000000001,0.5 -272,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2009-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0,,,,, -273,my_land,rural,10.503705378852828,0.1,0.33999999999999997,20.0,2009-07-17,0.0,0.0,0.001370000000000003,0.0,0.0,0.0,0.0,0.0,17.250618516827572,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 -274,my_land,urban,0.0,0.015,0.015,0.0,2009-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0,,,,, -275,my_land,rural,10.553705378852829,0.1,0.15,20.0,2009-07-18,0.0,0.0,0.001380000000000003,0.0,0.0,0.0,0.0,0.0,17.137310142897398,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 -276,my_land,urban,0.005999999999999998,0.02,0.066,0.0,2009-07-19,0.0,0.0,2.6086956521739115e-07,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0,,,,, -277,my_land,rural,11.11370537885283,0.1,0.66,20.0,2009-07-19,0.0,0.0,0.001390000000000003,0.0,0.0,0.0,0.0,0.0,17.03265075518536,0.0,0.0,0.0,0.0,0.0,0.0,0.5599999999999999,0.5 -278,my_land,urban,0.03400000000000001,0.02,0.08800000000000001,0.0,2009-07-20,0.0,0.0,5.793184488836663e-07,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0,,,,, -279,my_land,rural,11.893705378852829,0.1,0.88,20.0,2009-07-20,0.0,0.0,0.001400000000000003,0.0,0.0,0.0,0.0,0.0,16.92492118032061,0.0,0.0,0.0,0.0,0.0,0.0,0.78,0.5 -280,my_land,urban,0.028000000000000004,0.02,0.054000000000000006,0.0,2009-07-21,0.0,0.0,6.503075965991567e-07,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0,,,,, -281,my_land,rural,12.333705378852828,0.1,0.54,20.0,2009-07-21,0.0,0.0,0.001410000000000003,0.0,0.0,0.0,0.0,0.0,16.881187260456155,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.5 -282,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2009-07-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0,,,,, -283,my_land,rural,12.263705378852828,0.1,0.03,20.0,2009-07-22,0.0,0.0,0.001420000000000003,0.0,0.0,0.0,0.0,0.0,16.84407698005702,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -284,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-07-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0,,,,, -285,my_land,rural,12.273705378852828,0.1,0.11,20.0,2009-07-23,0.0,0.0,0.001430000000000003,0.0,0.0,0.0,0.0,0.0,16.812764381382735,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 -286,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2009-07-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0,,,,, -287,my_land,rural,12.383705378852827,0.1,0.21,20.0,2009-07-24,0.0,0.0,0.0014400000000000031,0.0,0.0,0.0,0.0,0.0,16.783167813964948,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 -288,my_land,urban,0.0,0.001,0.001,0.0,2009-07-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0,,,,, -289,my_land,rural,12.293705378852827,0.1,0.01,20.0,2009-07-25,0.0,0.0,0.0014500000000000032,0.0,0.0,0.0,0.0,0.0,16.75146740424562,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -290,my_land,urban,0.012999999999999998,0.02,0.073,0.0,2009-07-26,0.0,0.0,4.90566037735849e-07,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0,,,,, -291,my_land,rural,12.923705378852828,0.1,0.73,20.0,2009-07-26,0.0,0.0,0.0014600000000000032,0.0,0.0,0.0,0.0,0.0,16.727325951198342,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.5 -292,my_land,urban,0.0,0.015999999999999997,0.0029999999999999996,0.0,2009-07-27,0.0,0.0,1.490566037735849e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0,,,,, -293,my_land,rural,12.853705378852828,0.1,0.03,20.0,2009-07-27,0.0,0.0,0.0014700000000000032,0.0,0.0,0.0,0.0,0.0,16.690915743899794,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -294,my_land,urban,0.0,0.004,0.004,0.0,2009-07-28,0.0,0.0,2.4905660377358487e-06,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0,,,,, -295,my_land,rural,12.793705378852827,0.1,0.04,20.0,2009-07-28,0.0,0.0,0.0014800000000000032,0.0,0.0,0.0,0.0,0.0,16.693395717987475,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -296,my_land,urban,0.112,0.02,0.172,0.0,2009-07-29,0.0,0.0,2.571996027805362e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0,,,,, -297,my_land,rural,14.413705378852827,0.1,1.72,20.0,2009-07-29,0.0,0.0,0.0014900000000000033,0.0,0.0,0.0,0.0,0.0,16.716547211740295,0.0,0.0,0.0,0.0,0.0,0.0,1.6199999999999999,0.5 -298,my_land,urban,0.069,0.02,0.016999999999999998,0.0,2009-07-30,0.0,0.0,2.261171797418073e-06,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0,,,,, -299,my_land,rural,14.483705378852827,0.1,0.16999999999999998,20.0,2009-07-30,0.0,0.0,0.0015000000000000033,0.0,0.0,0.0,0.0,0.0,16.711333685815475,0.0,0.0,0.0,0.0,0.0,0.0,0.06999999999999999,0.5 -300,my_land,urban,0.03200000000000001,0.02,0.023,0.0,2009-07-31,0.0,0.0,1.449409687741366e-06,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0,,,,, -301,my_land,rural,14.613705378852828,0.1,0.22999999999999998,20.0,2009-07-31,0.0,0.0,0.0015100000000000033,0.0,0.0,0.0,0.0,0.0,16.718293973731498,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 -302,my_land,urban,0.013000000000000012,0.02,0.041,0.0,2009-08-01,0.0,0.0,6.007986026535429e-07,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0,,,,, -303,my_land,rural,14.923705378852828,0.1,0.41000000000000003,20.0,2009-08-01,0.0,0.0,0.0015200000000000033,0.0,0.0,0.0,0.0,0.0,16.727873402648324,0.0,0.0,0.0,0.0,0.0,0.0,0.31000000000000005,0.5 -304,my_land,urban,0.0,0.013000000000000012,0.0,0.0,2009-08-02,0.0,0.0,1.6007986026535429e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0,,,,, -305,my_land,rural,14.823705378852829,0.1,0.0,20.0,2009-08-02,0.0,0.0,0.0015300000000000034,0.0,0.0,0.0,0.0,0.0,16.733171675331043,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -306,my_land,urban,0.0,0.016,0.016,0.0,2009-08-03,0.0,0.0,2.600798602653543e-06,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0,,,,, -307,my_land,rural,14.883705378852829,0.1,0.16,20.0,2009-08-03,0.0,0.0,0.0015400000000000034,0.0,0.0,0.0,0.0,0.0,16.741435860320767,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 -308,my_land,urban,0.157,0.02,0.217,0.0,2009-08-04,0.0,0.0,2.8696719828254125e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0,,,,, -309,my_land,rural,16.953705378852828,0.1,2.17,20.0,2009-08-04,0.0,0.0,0.0015500000000000034,0.0,0.0,0.0,0.0,0.0,16.766230108839046,0.0,0.0,0.0,0.0,0.0,0.0,2.07,0.5 -310,my_land,urban,0.10299999999999998,0.02,0.005999999999999999,0.0,2009-08-05,0.0,0.0,2.7872462533637584e-06,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0,,,,, -311,my_land,rural,16.910726520569472,0.1,0.06,20.0,2009-08-05,0.0,0.0,0.0015600000000000034,0.0,0.0,0.0,0.0,0.0,16.81140376610488,0.0,0.0,0.0,0.0,0.0,0.0029788582833558063,-0.09957716566711614,0.5 -312,my_land,urban,0.228,0.02,0.185,0.0,2009-08-06,0.0,0.0,3.2219856185333465e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -313,my_land,rural,16.825724586084544,0.1,1.8499999999999999,20.0,2009-08-06,0.0,0.0,0.0014226087102049614,0.0,0.0,0.0,0.0,0.0,16.890065588583212,0.0,0.0,0.0,1.3074388783205093,0.4358129594401698,0.09175009672424628,-0.08500193448492573,0.5 -314,my_land,urban,0.168,0.02,0.0,0.0,2009-08-07,0.0,0.0,3.410065307276934e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -315,my_land,rural,16.725724586084542,0.1,0.0,20.0,2009-08-07,0.0,0.0,0.0014326087102049614,0.0,0.0,0.0,0.0,0.0,16.945633198572903,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -316,my_land,urban,0.10800000000000001,0.02,0.0,0.0,2009-08-08,0.0,0.0,3.218155764769655e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -317,my_land,rural,16.62572458608454,0.1,0.0,20.0,2009-08-08,0.0,0.0,0.0014426087102049614,0.0,0.0,0.0,0.0,0.0,17.011954152321614,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -318,my_land,urban,0.04800000000000001,0.02,0.0,0.0,2009-08-09,0.0,0.0,2.3008122353289026e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -319,my_land,rural,16.52572458608454,0.1,0.0,20.0,2009-08-09,0.0,0.0,0.0014526087102049614,0.0,0.0,0.0,0.0,0.0,17.079619266540202,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -320,my_land,urban,0.0,0.02,0.004,0.0,2009-08-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -321,my_land,rural,16.463777063493325,0.1,0.04,20.0,2009-08-10,0.0,0.0,0.0014626087102049615,0.0,0.0,0.0,0.0,0.0,17.147452408317527,0.0,0.0,0.0,0.0,0.0,0.0019475225912147184,-0.09895045182429438,0.5 -322,my_land,urban,0.0,0.0,0.0,0.0,2009-08-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -323,my_land,rural,16.363777063493323,0.1,0.0,20.0,2009-08-11,0.0,0.0,0.0014726087102049615,0.0,0.0,0.0,0.0,0.0,17.249681551039693,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -324,my_land,urban,0.0,0.02,0.02,0.0,2009-08-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -325,my_land,rural,16.27205333961332,0.1,0.2,20.0,2009-08-12,0.0,0.0,0.0014661971648520322,0.0,0.0,0.0,0.0,0.0,17.357137673706635,0.0,0.0,0.0,0.13660315326450204,0.04553438442150068,0.009586186194000146,-0.09172372388000288,0.5 -326,my_land,urban,0.0,0.0,0.0,0.0,2009-08-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -327,my_land,rural,16.172053339613317,0.1,0.0,20.0,2009-08-13,0.0,0.0,0.0014761971648520323,0.0,0.0,0.0,0.0,0.0,17.463392209213332,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -328,my_land,urban,0.0,0.0,0.0,0.0,2009-08-14,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -329,my_land,rural,16.072053339613316,0.1,0.0,20.0,2009-08-14,0.0,0.0,0.0014861971648520323,0.0,0.0,0.0,0.0,0.0,17.57042402615167,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -330,my_land,urban,0.0,0.0,0.0,0.0,2009-08-15,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -331,my_land,rural,15.972053339613316,0.1,0.0,20.0,2009-08-15,0.0,0.0,0.0014961971648520323,0.0,0.0,0.0,0.0,0.0,17.67755300326896,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -332,my_land,urban,0.0,0.0,0.0,0.0,2009-08-16,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -333,my_land,rural,15.872053339613316,0.1,0.0,20.0,2009-08-16,0.0,0.0,0.0015061971648520323,0.0,0.0,0.0,0.0,0.0,17.784694125408624,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -334,my_land,urban,0.0,0.0,0.0,0.0,2009-08-17,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -335,my_land,rural,15.772053339613317,0.1,0.0,20.0,2009-08-17,0.0,0.0,0.0015161971648520324,0.0,0.0,0.0,0.0,0.0,17.891836765676082,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -336,my_land,urban,0.0,0.0,0.0,0.0,2009-08-18,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -337,my_land,rural,15.672053339613317,0.1,0.0,20.0,2009-08-18,0.0,0.0,0.0015261971648520324,0.0,0.0,0.0,0.0,0.0,17.846301023209513,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -338,my_land,urban,0.0,0.001,0.001,0.0,2009-08-19,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -339,my_land,rural,15.581671395856217,0.1,0.01,20.0,2009-08-19,0.0,0.0,0.0015361971648520324,0.0,0.0,0.0,0.0,0.0,17.78168048290119,0.0,0.0,0.0,0.0,0.0,0.00038194375709914904,-0.09763887514198298,0.5 -340,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-08-20,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0,,,,, -341,my_land,rural,15.510606878991204,0.1,0.03,20.0,2009-08-20,0.0,0.0,0.0015461971648520324,0.0,0.0,0.0,0.0,0.0,17.71467434286265,0.0,0.0,0.0,0.0,0.0,0.0010645168650119724,-0.09129033730023946,0.5 -342,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2009-08-21,0.0,0.0,-1.6940658945086007e-21,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, -343,my_land,rural,15.570663698314464,0.1,0.47000000000000003,20.0,2009-08-21,0.0,0.0,0.001527315167048624,0.0,0.0,0.0,0.0,0.0,17.65071067082799,0.0,0.0,0.0,0.22083451623217662,0.07361150541072554,0.015497159033836957,0.06005681932326089,0.5 -344,my_land,urban,0.0,-6.938893903907228e-18,0.0,0.0,2009-08-22,0.0,0.0,9.999999999999983e-07,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, -345,my_land,rural,15.470663698314464,0.1,0.0,20.0,2009-08-22,0.0,0.0,0.001537315167048624,0.0,0.0,0.0,0.0,0.0,17.5804459788535,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -346,my_land,urban,0.0,0.0,0.0,0.0,2009-08-23,0.0,0.0,1.9999999999999982e-06,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, -347,my_land,rural,15.370663698314464,0.1,0.0,20.0,2009-08-23,0.0,0.0,0.0015473151670486241,0.0,0.0,0.0,0.0,0.0,17.51273431985669,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -348,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-08-24,0.0,0.0,2.9999999999999984e-06,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0,,,,, -349,my_land,rural,15.299858048461077,0.1,0.03,20.0,2009-08-24,0.0,0.0,0.0015573151670486242,0.0,0.0,0.0,0.0,0.0,17.445341789982088,0.0,0.0,0.0,0.0,0.0,0.0008056498533867156,-0.08611299706773431,0.5 -350,my_land,urban,0.0,0.02,0.023,0.0,2009-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0,,,,, -351,my_land,rural,15.323776945035684,0.1,0.22999999999999998,20.0,2009-08-25,0.0,0.0,0.0015570750397627532,0.0,0.0,0.0,0.0,0.0,17.25875225956068,0.0,0.0,0.0,0.07558278619059165,0.02519426206353055,0.005304055171269591,0.023918896574608182,0.5 -352,my_land,urban,0.0,0.02,0.028,0.0,2009-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0,,,,, -353,my_land,rural,15.367131063841644,0.1,0.27999999999999997,20.0,2009-08-26,0.0,0.0,0.0015539480888184277,0.0,0.0,0.0,0.0,0.0,17.05657154204868,0.0,0.0,0.0,0.097360190350754,0.032453396783584665,0.006832294059702034,0.0433541188059593,0.5 -354,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-08-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0,,,,, -355,my_land,rural,15.296330730788169,0.1,0.03,20.0,2009-08-27,0.0,0.0,0.0015639480888184278,0.0,0.0,0.0,0.0,0.0,16.850821440256084,0.0,0.0,0.0,0.0,0.0,0.0008003330534751417,-0.08600666106950285,0.5 -356,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2009-08-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, -357,my_land,rural,15.315754400379888,0.1,0.22,20.0,2009-08-28,0.0,0.0,0.0015641898719129545,0.0,0.0,0.0,0.0,0.0,16.64674602120785,0.0,0.0,0.0,0.07166063541590141,0.023886878471967136,0.005028816520414135,0.019423669591717325,0.5 -358,my_land,urban,0.0,0.0,0.0,0.0,2009-08-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, -359,my_land,rural,15.215754400379888,0.1,0.0,20.0,2009-08-29,0.0,0.0,0.0015741898719129545,0.0,0.0,0.0,0.0,0.0,16.441259922650982,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -360,my_land,urban,0.0,0.002,0.002,0.0,2009-08-30,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, -361,my_land,rural,15.13539773158498,0.1,0.02,20.0,2009-08-30,0.0,0.0,0.0015841898719129545,0.0,0.0,0.0,0.0,0.0,16.236407492831376,0.0,0.0,0.0,0.0,0.0,0.00035666879490721187,-0.08713337589814424,0.5 -362,my_land,urban,0.0,0.001,0.001,0.0,2009-08-31,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0,,,,, -363,my_land,rural,15.045277696363524,0.1,0.01,20.0,2009-08-31,0.0,0.0,0.0015941898719129546,0.0,0.0,0.0,0.0,0.0,16.031634271603924,0.0,0.0,0.0,0.0,0.0,0.0001200352214565932,-0.09240070442913186,0.5 -364,my_land,urban,0.011000000000000003,0.02,0.07100000000000001,0.0,2009-09-01,0.0,0.0,8.627450980392156e-07,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0,,,,, -365,my_land,rural,15.593541080746418,0.1,0.7100000000000001,20.0,2009-09-01,0.0,0.0,0.0015981788673429123,0.0,0.0,0.0,0.0,0.0,15.830420094945344,0.0,0.0,0.0,0.04398733862718857,0.014662446209062858,0.0030868307808553388,0.5482633843828932,0.5 -366,my_land,urban,0.037999999999999985,0.02,0.087,0.0,2009-09-02,0.0,0.0,9.074912016088485e-07,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -367,my_land,rural,15.739417265406848,0.1,0.8699999999999999,20.0,2009-09-02,0.0,0.0,0.0015497966702880492,0.0,0.0,0.0,0.0,0.0,15.62647993052362,0.0,0.0,0.0,0.44468821842944245,0.14822940614314747,0.03120619076697842,0.14587618466043156,0.5 -368,my_land,urban,0.0,0.02,0.008,0.0,2009-09-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -369,my_land,rural,15.716224593340074,0.1,0.08,20.0,2009-09-03,0.0,0.0,0.0015597966702880493,0.0,0.0,0.0,0.0,0.0,15.522059991315455,0.0,0.0,0.0,0.0,0.0,0.0031926720667744325,-0.08385344133548865,0.5 -370,my_land,urban,0.0,0.0,0.0,0.0,2009-09-04,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -371,my_land,rural,15.616224593340075,0.1,0.0,20.0,2009-09-04,0.0,0.0,0.0015697966702880493,0.0,0.0,0.0,0.0,0.0,15.434007498914434,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -372,my_land,urban,0.0,0.0,0.0,0.0,2009-09-05,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -373,my_land,rural,15.516224593340075,0.1,0.0,20.0,2009-09-05,0.0,0.0,0.0015797966702880493,0.0,0.0,0.0,0.0,0.0,15.348000937364306,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -374,my_land,urban,0.0,0.0,0.0,0.0,2009-09-06,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -375,my_land,rural,15.416224593340075,0.1,0.0,20.0,2009-09-06,0.0,0.0,0.0015897966702880493,0.0,0.0,0.0,0.0,0.0,15.262250117170538,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -376,my_land,urban,0.0,0.001,0.001,0.0,2009-09-07,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -377,my_land,rural,15.325934247393072,0.1,0.01,20.0,2009-09-07,0.0,0.0,0.0015997966702880494,0.0,0.0,0.0,0.0,0.0,15.176531264646316,0.0,0.0,0.0,0.0,0.0,0.00029034594700315093,-0.09580691894006302,0.5 -378,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-09-08,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -379,my_land,rural,15.255198680330201,0.1,0.03,20.0,2009-09-08,0.0,0.0,0.0016097966702880494,0.0,0.0,0.0,0.0,0.0,15.22206640808079,0.0,0.0,0.0,0.0,0.0,0.0007355670628696025,-0.08471134125739206,0.5 -380,my_land,urban,0.0,0.0,0.0,0.0,2009-09-09,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -381,my_land,rural,15.155198680330201,0.1,0.0,20.0,2009-09-09,0.0,0.0,0.0016197966702880494,0.0,0.0,0.0,0.0,0.0,15.2840083010101,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -382,my_land,urban,0.0,0.0,0.0,0.0,2009-09-10,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -383,my_land,rural,15.055198680330202,0.1,0.0,20.0,2009-09-10,0.0,0.0,0.0016297966702880494,0.0,0.0,0.0,0.0,0.0,15.348001037626263,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -384,my_land,urban,0.0,0.0,0.0,0.0,2009-09-11,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -385,my_land,rural,14.955198680330202,0.1,0.0,20.0,2009-09-11,0.0,0.0,0.0016397966702880495,0.0,0.0,0.0,0.0,0.0,15.412250129703283,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -386,my_land,urban,0.0,0.0,0.0,0.0,2009-09-12,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -387,my_land,rural,14.855198680330203,0.1,0.0,20.0,2009-09-12,0.0,0.0,0.0016497966702880495,0.0,0.0,0.0,0.0,0.0,15.476531266212909,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -388,my_land,urban,0.0,0.0,0.0,0.0,2009-09-13,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -389,my_land,rural,14.755198680330203,0.1,0.0,20.0,2009-09-13,0.0,0.0,0.0016597966702880495,0.0,0.0,0.0,0.0,0.0,15.540816408276616,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -390,my_land,urban,0.0,0.0,0.0,0.0,2009-09-14,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -391,my_land,rural,14.655198680330203,0.1,0.0,20.0,2009-09-14,0.0,0.0,0.0016697966702880495,0.0,0.0,0.0,0.0,0.0,15.605102051034578,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -392,my_land,urban,0.0,0.0,0.0,0.0,2009-09-15,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -393,my_land,rural,14.555198680330204,0.1,0.0,20.0,2009-09-15,0.0,0.0,0.0016797966702880496,0.0,0.0,0.0,0.0,0.0,15.669387756379324,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -394,my_land,urban,0.0,0.0,0.0,0.0,2009-09-16,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -395,my_land,rural,14.455198680330204,0.1,0.0,20.0,2009-09-16,0.0,0.0,0.0016897966702880496,0.0,0.0,0.0,0.0,0.0,15.714923469547418,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -396,my_land,urban,0.0,0.0,0.0,0.0,2009-09-17,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -397,my_land,rural,14.355198680330204,0.1,0.0,20.0,2009-09-17,0.0,0.0,0.0016997966702880496,0.0,0.0,0.0,0.0,0.0,15.758115433693428,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -398,my_land,urban,0.0,0.0,0.0,0.0,2009-09-18,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -399,my_land,rural,14.255198680330205,0.1,0.0,20.0,2009-09-18,0.0,0.0,0.0017097966702880496,0.0,0.0,0.0,0.0,0.0,15.801014429211678,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -400,my_land,urban,0.0,0.0,0.0,0.0,2009-09-19,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -401,my_land,rural,14.155198680330205,0.1,0.0,20.0,2009-09-19,0.0,0.0,0.0017197966702880497,0.0,0.0,0.0,0.0,0.0,15.843876803651458,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -402,my_land,urban,0.0,0.0,0.0,0.0,2009-09-20,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -403,my_land,rural,14.055198680330205,0.1,0.0,20.0,2009-09-20,0.0,0.0,0.0017297966702880497,0.0,0.0,0.0,0.0,0.0,15.886734600456435,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -404,my_land,urban,0.0,0.0,0.0,0.0,2009-09-21,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -405,my_land,rural,13.955198680330206,0.1,0.0,20.0,2009-09-21,0.0,0.0,0.0017397966702880497,0.0,0.0,0.0,0.0,0.0,15.929591825057056,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -406,my_land,urban,0.0,0.001,0.001,0.0,2009-09-22,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -407,my_land,rural,13.865198680330206,0.1,0.01,20.0,2009-09-22,0.0,0.0,0.0017497966702880498,0.0,0.0,0.0,0.0,0.0,15.972448978132133,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -408,my_land,urban,0.0,0.0,0.0,0.0,2009-09-23,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -409,my_land,rural,13.765198680330206,0.1,0.0,20.0,2009-09-23,0.0,0.0,0.0017597966702880498,0.0,0.0,0.0,0.0,0.0,16.02334183976652,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -410,my_land,urban,0.0,0.0,0.0,0.0,2009-09-24,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -411,my_land,rural,13.665198680330207,0.1,0.0,20.0,2009-09-24,0.0,0.0,0.0017697966702880498,0.0,0.0,0.0,0.0,0.0,16.07523915747082,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -412,my_land,urban,0.0,0.0,0.0,0.0,2009-09-25,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -413,my_land,rural,13.565198680330207,0.1,0.0,20.0,2009-09-25,0.0,0.0,0.0017797966702880498,0.0,0.0,0.0,0.0,0.0,16.127262039683853,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -414,my_land,urban,0.0,0.0,0.0,0.0,2009-09-26,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -415,my_land,rural,13.465198680330207,0.1,0.0,20.0,2009-09-26,0.0,0.0,0.0017897966702880499,0.0,0.0,0.0,0.0,0.0,16.17930060996048,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -416,my_land,urban,0.0,0.0,0.0,0.0,2009-09-27,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -417,my_land,rural,13.365198680330208,0.1,0.0,20.0,2009-09-27,0.0,0.0,0.0017997966702880499,0.0,0.0,0.0,0.0,0.0,16.231341148745063,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -418,my_land,urban,0.0,0.0,0.0,0.0,2009-09-28,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -419,my_land,rural,13.265198680330208,0.1,0.0,20.0,2009-09-28,0.0,0.0,0.00180979667028805,0.0,0.0,0.0,0.0,0.0,16.283381926093135,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -420,my_land,urban,0.0,0.0,0.0,0.0,2009-09-29,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -421,my_land,rural,13.165198680330208,0.1,0.0,20.0,2009-09-29,0.0,0.0,0.00181979667028805,0.0,0.0,0.0,0.0,0.0,16.335422740761643,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -422,my_land,urban,0.0,0.001,0.001,0.0,2009-09-30,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -423,my_land,rural,13.075198680330208,0.1,0.01,20.0,2009-09-30,0.0,0.0,0.00182979667028805,0.0,0.0,0.0,0.0,0.0,15.988802845095208,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -424,my_land,urban,0.0,0.0,0.0,0.0,2009-10-01,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -425,my_land,rural,12.975198680330209,0.1,0.0,20.0,2009-10-01,0.0,0.0,0.00183979667028805,0.0,0.0,0.0,0.0,0.0,15.5923503531369,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -426,my_land,urban,0.0,0.002,0.002,0.0,2009-10-02,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -427,my_land,rural,12.895198680330209,0.1,0.02,20.0,2009-10-02,0.0,0.0,0.00184979667028805,0.0,0.0,0.0,0.0,0.0,15.189668794142113,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -428,my_land,urban,0.0,0.007,0.007,0.0,2009-10-03,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -429,my_land,rural,12.86519868033021,0.1,0.06999999999999999,20.0,2009-10-03,0.0,0.0,0.00185979667028805,0.0,0.0,0.0,0.0,0.0,14.786208601767765,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 -430,my_land,urban,0.0,0.0,0.0,0.0,2009-10-04,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0,,,,, -431,my_land,rural,12.76519868033021,0.1,0.0,20.0,2009-10-04,0.0,0.0,0.00186979667028805,0.0,0.0,0.0,0.0,0.0,14.382651072720972,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -432,my_land,urban,0.0,0.02,0.043,0.0,2009-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0,,,,, -433,my_land,rural,13.09519868033021,0.1,0.43,20.0,2009-10-05,0.0,0.0,0.00187979667028805,0.0,0.0,0.0,0.0,0.0,13.97968728503473,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.5 -434,my_land,urban,0.0,0.02,0.059,0.0,2009-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0,,,,, -435,my_land,rural,13.58519868033021,0.1,0.59,20.0,2009-10-06,0.0,0.0,0.0018897966702880501,0.0,0.0,0.0,0.0,0.0,13.858301908590894,0.0,0.0,0.0,0.0,0.0,0.0,0.49,0.5 -436,my_land,urban,0.0,0.02,0.06,0.0,2009-10-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, -437,my_land,rural,14.08519868033021,0.1,0.6,20.0,2009-10-07,0.0,0.0,0.0018997966702880501,0.0,0.0,0.0,0.0,0.0,13.770545706779874,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.5 -438,my_land,urban,0.0,0.0,0.0,0.0,2009-10-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, -439,my_land,rural,13.98519868033021,0.1,0.0,20.0,2009-10-08,0.0,0.0,0.0019097966702880502,0.0,0.0,0.0,0.0,0.0,13.684599463347485,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -440,my_land,urban,0.0,0.009,0.009,0.0,2009-10-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, -441,my_land,rural,13.97519868033021,0.1,0.09,20.0,2009-10-09,0.0,0.0,0.0019197966702880502,0.0,0.0,0.0,0.0,0.0,13.601199932918437,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -442,my_land,urban,0.0,0.0,0.0,0.0,2009-10-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0,,,,, -443,my_land,rural,13.875198680330211,0.1,0.0,20.0,2009-10-10,0.0,0.0,0.0019297966702880502,0.0,0.0,0.0,0.0,0.0,13.518118741614805,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -444,my_land,urban,0.0,0.02,0.04,0.0,2009-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -445,my_land,rural,14.175198680330212,0.1,0.4,20.0,2009-10-11,0.0,0.0,0.0019397966702880502,0.0,0.0,0.0,0.0,0.0,13.436335608818023,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.5 -446,my_land,urban,0.0,0.0,0.0,0.0,2009-10-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -447,my_land,rural,14.075198680330212,0.1,0.0,20.0,2009-10-12,0.0,0.0,0.0019497966702880503,0.0,0.0,0.0,0.0,0.0,13.352198201102253,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -448,my_land,urban,0.0,0.0,0.0,0.0,2009-10-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -449,my_land,rural,13.975198680330212,0.1,0.0,20.0,2009-10-13,0.0,0.0,0.00195979667028805,0.0,0.0,0.0,0.0,0.0,13.269024775137781,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -450,my_land,urban,0.0,0.0,0.0,0.0,2009-10-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -451,my_land,rural,13.875198680330213,0.1,0.0,20.0,2009-10-14,0.0,0.0,0.00196979667028805,0.0,0.0,0.0,0.0,0.0,12.998806669392224,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -452,my_land,urban,0.0,0.016,0.016,0.0,2009-10-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -453,my_land,rural,13.935198680330213,0.1,0.16,20.0,2009-10-15,0.0,0.0,0.00197979667028805,0.0,0.0,0.0,0.0,0.0,12.705266285803207,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 -454,my_land,urban,0.0,0.0,0.0,0.0,2009-10-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -455,my_land,rural,13.835198680330214,0.1,0.0,20.0,2009-10-16,0.0,0.0,0.00198979667028805,0.0,0.0,0.0,0.0,0.0,12.408694003225401,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -456,my_land,urban,0.0,0.0,0.0,0.0,2009-10-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -457,my_land,rural,13.735198680330214,0.1,0.0,20.0,2009-10-17,0.0,0.0,0.00199979667028805,0.0,0.0,0.0,0.0,0.0,12.111801032903175,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -458,my_land,urban,0.0,0.0,0.0,0.0,2009-10-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -459,my_land,rural,13.635198680330214,0.1,0.0,20.0,2009-10-18,0.0,0.0,0.00200979667028805,0.0,0.0,0.0,0.0,0.0,11.814867984112897,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -460,my_land,urban,0.0,0.004,0.004,0.0,2009-10-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0,,,,, -461,my_land,rural,13.575198680330214,0.1,0.04,20.0,2009-10-19,0.0,0.0,0.0020197966702880502,0.0,0.0,0.0,0.0,0.0,11.517929925514114,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -462,my_land,urban,0.0,0.02,0.053,0.0,2009-10-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0,,,,, -463,my_land,rural,14.005198680330214,0.1,0.53,20.0,2009-10-20,0.0,0.0,0.0020297966702880503,0.0,0.0,0.0,0.0,0.0,11.220442695561722,0.0,0.0,0.0,0.0,0.0,0.0,0.43,0.5 -464,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-10-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0,,,,, -465,my_land,rural,13.935198680330213,0.1,0.03,20.0,2009-10-21,0.0,0.0,0.0020397966702880503,0.0,0.0,0.0,0.0,0.0,11.532019619445217,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -466,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2009-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0,,,,, -467,my_land,rural,14.175198680330213,0.1,0.33999999999999997,20.0,2009-10-22,0.0,0.0,0.0020497966702880503,0.0,0.0,0.0,0.0,0.0,11.920813915928418,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 -468,my_land,urban,0.0,0.02,0.039,0.0,2009-10-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0,,,,, -469,my_land,rural,14.465198680330213,0.1,0.38999999999999996,20.0,2009-10-23,0.0,0.0,0.0020597966702880503,0.0,0.0,0.0,0.0,0.0,12.318117297230998,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.5 -470,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2009-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0,,,,, -471,my_land,rural,14.635198680330213,0.1,0.27,20.0,2009-10-24,0.0,0.0,0.0020697966702880504,0.0,0.0,0.0,0.0,0.0,12.71519895300499,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.5 -472,my_land,urban,0.0,0.009,0.009,0.0,2009-10-25,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0,,,,, -473,my_land,rural,14.625198680330213,0.1,0.09,20.0,2009-10-25,0.0,0.0,0.0020797966702880504,0.0,0.0,0.0,0.0,0.0,13.111721296625626,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -474,my_land,urban,1.734723475976807e-18,0.02,0.033,0.0,2009-10-26,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, -475,my_land,rural,14.855198680330213,0.1,0.33,20.0,2009-10-26,0.0,0.0,0.0020897966702880504,0.0,0.0,0.0,0.0,0.0,13.511531047548925,0.0,0.0,0.0,0.0,0.0,0.0,0.22999999999999998,0.5 -476,my_land,urban,0.0,1.734723475976807e-18,0.0,0.0,2009-10-27,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, -477,my_land,rural,14.755198680330214,0.1,0.0,20.0,2009-10-27,0.0,0.0,0.0020997966702880505,0.0,0.0,0.0,0.0,0.0,13.907691380943618,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -478,my_land,urban,0.0,0.0,0.0,0.0,2009-10-28,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, -479,my_land,rural,14.655198680330214,0.1,0.0,20.0,2009-10-28,0.0,0.0,0.0021097966702880505,0.0,0.0,0.0,0.0,0.0,13.831318567617952,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -480,my_land,urban,0.0,0.0,0.0,0.0,2009-10-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.160714290000001,0.0,0.0,0.0,,,,, -481,my_land,rural,14.555198680330214,0.1,0.0,20.0,2009-10-29,0.0,0.0,0.0021197966702880505,0.0,0.0,0.0,0.0,0.0,13.695879103452244,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -482,my_land,urban,0.012999999999999998,0.02,0.073,0.0,2009-10-30,0.0,0.0,9.81132075471698e-07,0.0,0.0,0.0,0.0,0.0,14.12142857,0.0,0.0,0.0,,,,, -483,my_land,rural,15.185198680330215,0.1,0.73,20.0,2009-10-30,0.0,0.0,0.0021297966702880505,0.0,0.0,0.0,0.0,0.0,13.555263202624522,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.5 -484,my_land,urban,0.013999999999999999,0.02,0.061000000000000006,0.0,2009-10-31,0.0,0.0,5.136268343815513e-07,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0,,,,, -485,my_land,rural,15.503427061151035,0.1,0.61,20.0,2009-10-31,0.0,0.0,0.002114943658126145,0.0,0.0,0.0,0.0,0.0,13.41117485530103,0.0,0.0,0.0,0.1366372786651656,0.045545759555055194,0.00958858095895899,0.3182283808208203,0.5 -486,my_land,urban,0.008,0.02,0.054000000000000006,0.0,2009-11-01,0.0,0.0,2.5227113906359176e-07,0.0,0.0,0.0,0.0,0.0,13.846458887731481,0.0,0.0,0.0,,,,, -487,my_land,rural,15.590284392203404,0.1,0.54,20.0,2009-11-01,0.0,0.0,0.0020801804935011055,0.0,0.0,0.0,0.0,0.0,13.26692414749831,0.0,0.0,0.0,0.25161415162518674,0.08387138387506224,0.017657133447381526,0.08685733105236954,0.5 -488,my_land,urban,0.0020000000000000018,0.02,0.054000000000000006,0.0,2009-11-02,0.0,0.0,5.963195900302817e-08,0.0,0.0,0.0,0.0,0.0,13.661400330044092,0.0,0.0,0.0,,,,, -489,my_land,rural,15.644028872991731,0.1,0.54,20.0,2009-11-02,0.0,0.0,0.0020422773067015534,0.0,0.0,0.0,0.0,0.0,13.122910966093576,0.0,0.0,0.0,0.2752070574383171,0.09173568581277236,0.019312775960583655,0.053744480788326915,0.5 -490,my_land,urban,0.0,0.02,0.056,0.0,2009-11-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0,,,,, -491,my_land,rural,15.685067446875463,0.1,0.5599999999999999,20.0,2009-11-03,0.0,0.0,0.002001488916969903,0.0,0.0,0.0,0.0,0.0,12.978980020964524,0.0,0.0,0.0,0.29851001610784034,0.09950333870261344,0.02094807130581336,0.04103857388373282,0.5 -492,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2009-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0,,,,, -493,my_land,rural,15.635471185843787,0.1,0.22,20.0,2009-11-04,0.0,0.0,0.001990972843690913,0.0,0.0,0.0,0.0,0.0,12.61970932795122,0.0,0.0,0.0,0.12083733598506866,0.04027911199502288,0.008479813051583766,-0.049596261031675304,0.5 -494,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-11-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0,,,,, -495,my_land,rural,15.563724297892488,0.1,0.11,20.0,2009-11-05,0.0,0.0,0.001991038004211257,0.0,0.0,0.0,0.0,0.0,12.234602889597504,0.0,0.0,0.0,0.05824465766530041,0.019414885888433472,0.004087344397564942,-0.07174688795129883,0.5 -496,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2009-11-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0,,,,, -497,my_land,rural,15.527214182301073,0.1,0.21,20.0,2009-11-06,0.0,0.0,0.001983260230420957,0.0,0.0,0.0,0.0,0.0,11.846170596175472,0.0,0.0,0.0,0.1043884573588825,0.03479615245296084,0.0073255057795707035,-0.03651011559141408,0.5 -498,my_land,urban,0.0,0.005,0.005,0.0,2009-11-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0,,,,, -499,my_land,rural,15.47553457348977,0.1,0.05,20.0,2009-11-07,0.0,0.0,0.0019932602304209572,0.0,0.0,0.0,0.0,0.0,11.457557042021934,0.0,0.0,0.0,0.0,0.0,0.001679608811304119,-0.08359217622608238,0.5 -500,my_land,urban,0.0,0.008,0.008,0.0,2009-11-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0,,,,, -501,my_land,rural,15.453006996809986,0.1,0.08,20.0,2009-11-08,0.0,0.0,0.0020032602304209573,0.0,0.0,0.0,0.0,0.0,11.068801775252744,0.0,0.0,0.0,0.0,0.0,0.0025275766797837437,-0.07055153359567487,0.5 -502,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2009-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0,,,,, -503,my_land,rural,15.457456548440684,0.1,0.27,20.0,2009-11-09,0.0,0.0,0.0019929824966531044,0.0,0.0,0.0,0.0,0.0,10.679588321722832,0.0,0.0,0.0,0.11795469446312715,0.03931823148770905,0.008277522418465064,0.004449551630698748,0.5 -504,my_land,urban,0.0,0.015,0.015,0.0,2009-11-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0,,,,, -505,my_land,rural,15.414918731056288,0.1,0.15,20.0,2009-11-10,0.0,0.0,0.0019916243090858134,0.0,0.0,0.0,0.0,0.0,10.291050523446158,0.0,0.0,0.0,0.06593319488638257,0.021977731628794187,0.00462689086921983,-0.04253781738439658,0.5 -506,my_land,urban,0.0,0.02,0.039,0.0,2009-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0,,,,, -507,my_land,rural,15.478915367791325,0.1,0.38999999999999996,20.0,2009-11-11,0.0,0.0,0.0019742402400241294,0.0,0.0,0.0,0.0,0.0,10.167373700677684,0.0,0.0,0.0,0.16102739632628632,0.053675798775428774,0.011300168163248163,0.06399663673503672,0.5 -508,my_land,urban,0.053,0.02,0.11299999999999999,0.0,2009-11-12,0.0,0.0,5.698924731182795e-07,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0,,,,, -509,my_land,rural,15.791777231561056,0.1,1.13,20.0,2009-11-12,0.0,0.0,0.001902177420093762,0.0,0.0,0.0,0.0,0.0,10.076474872675332,0.0,0.0,0.0,0.5109609220640651,0.17032030735468837,0.035856906811513344,0.31286186376973324,0.5 -510,my_land,urban,0.13999999999999999,0.02,0.147,0.0,2009-11-13,0.0,0.0,1.221027479091995e-06,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0,,,,, -511,my_land,rural,15.95396021982234,0.1,1.47,20.0,2009-11-13,0.0,0.0,0.0017838789098033748,0.0,0.0,0.0,0.0,0.0,9.98983800200603,0.0,0.0,0.0,0.8605696208638338,0.2868565402879446,0.060390850586935704,0.16218298826128597,0.5 -512,my_land,urban,0.12599999999999997,0.02,0.046,0.0,2009-11-14,0.0,0.0,1.6858401347324782e-06,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0,,,,, -513,my_land,rural,15.909341025836387,0.1,0.45999999999999996,20.0,2009-11-14,0.0,0.0,0.0017515591967619307,0.0,0.0,0.0,0.0,0.0,9.90468041425231,0.0,0.0,0.0,0.2882911757149913,0.09609705857166376,0.020230959699297637,-0.04461919398595273,0.5 -514,my_land,urban,0.10699999999999996,0.02,0.041,0.0,2009-11-15,0.0,0.0,1.9549992817440487e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, -515,my_land,rural,15.864423896462473,0.1,0.41000000000000003,20.0,2009-11-15,0.0,0.0,0.0017248994018182152,0.0,0.0,0.0,0.0,0.0,9.819042645092537,0.0,0.0,0.0,0.2528784546789132,0.0842928182263044,0.017745856468695663,-0.04491712937391319,0.5 -516,my_land,urban,0.05299999999999996,0.02,0.005999999999999999,0.0,2009-11-16,0.0,0.0,1.6840318487358552e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, -517,my_land,rural,15.821873449962538,0.1,0.06,20.0,2009-11-16,0.0,0.0,0.0017348994018182152,0.0,0.0,0.0,0.0,0.0,9.733630330636569,0.0,0.0,0.0,0.0,0.0,0.0025504464999337043,-0.09100892999867409,0.5 -518,my_land,urban,0.0,0.019999999999999997,0.002,0.0,2009-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, -519,my_land,rural,15.741039452932181,0.1,0.02,20.0,2009-11-17,0.0,0.0,0.0017448994018182153,0.0,0.0,0.0,0.0,0.0,9.64795379132957,0.0,0.0,0.0,0.0,0.0,0.0008339970303573862,-0.09667994060714773,0.5 -520,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2009-11-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0,,,,, -521,my_land,rural,15.669841050188037,0.1,0.03,20.0,2009-11-18,0.0,0.0,0.0017548994018182153,0.0,0.0,0.0,0.0,0.0,9.664029938416197,0.0,0.0,0.0,0.0,0.0,0.0011984027441448166,-0.09396805488289635,0.5 -522,my_land,urban,3.469446951953614e-18,0.02,0.046,0.0,2009-11-19,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0,,,,, -523,my_land,rural,15.67900925630948,0.1,0.45999999999999996,20.0,2009-11-19,0.0,0.0,0.0017281636610553968,0.0,0.0,0.0,0.0,0.0,9.692778115034487,0.0,0.0,0.0,0.24996765313847333,0.08332255104615777,0.017541589693927953,0.009168206121440946,0.5 -524,my_land,urban,0.0,0.008000000000000004,0.008,0.0,2009-11-20,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0,,,,, -525,my_land,rural,15.655938636278245,0.1,0.08,20.0,2009-11-20,0.0,0.0,0.0017381636610553969,0.0,0.0,0.0,0.0,0.0,9.723204407129312,0.0,0.0,0.0,0.0,0.0,0.0030706200312338133,-0.08141240062467626,0.5 -526,my_land,urban,0.052,0.02,0.112,0.0,2009-11-21,0.0,0.0,1.1304347826086956e-06,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0,,,,, -527,my_land,rural,15.830397646932658,0.1,1.1199999999999999,20.0,2009-11-21,0.0,0.0,0.0016637422711766414,0.0,0.0,0.0,0.0,0.0,9.753754119265754,0.0,0.0,0.0,0.6024479549087313,0.2008159849695771,0.042277049467279386,0.17445901065441233,0.5 -528,my_land,urban,0.12,0.02,0.128,0.0,2009-11-22,0.0,0.0,1.5978260869565219e-06,0.0,0.0,0.0,0.0,0.0,9.741964286049999,0.0,0.0,0.0,,,,, -529,my_land,rural,15.93858594626796,0.1,1.28,20.0,2009-11-22,0.0,0.0,0.0015732375171615823,0.0,0.0,0.0,0.0,0.0,9.784396319686051,0.0,0.0,0.0,0.763665836723597,0.25455527890786567,0.05359058503323488,0.10818829933530258,0.5 -530,my_land,urban,0.097,0.02,0.037000000000000005,0.0,2009-11-23,0.0,0.0,1.839336718502063e-06,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0,,,,, -531,my_land,rural,15.884853267270634,0.1,0.37,20.0,2009-11-23,0.0,0.0,0.0015531667149671605,0.0,0.0,0.0,0.0,0.0,9.815023405523638,0.0,0.0,0.0,0.23065953378559695,0.07688651126186564,0.016186633949866452,-0.05373267899732902,0.5 -532,my_land,urban,0.13999999999999999,0.02,0.10300000000000001,0.0,2009-11-24,0.0,0.0,2.2083730032793823e-06,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0,,,,, -533,my_land,rural,15.931742659825426,0.1,1.03,20.0,2009-11-24,0.0,0.0,0.001484969214039827,0.0,0.0,0.0,0.0,0.0,9.84569379736125,0.0,0.0,0.0,0.6292163078047099,0.20973876926823665,0.044155530372260346,0.04688939255479297,0.5 -534,my_land,urban,0.13399999999999998,0.02,0.054000000000000006,0.0,2009-11-25,0.0,0.0,2.470815991031248e-06,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0,,,,, -535,my_land,rural,15.90041437321406,0.1,0.54,20.0,2009-11-25,0.0,0.0,0.0014540233492394586,0.0,0.0,0.0,0.0,0.0,9.480873614336847,0.0,0.0,0.0,0.3358214042105994,0.1119404680701998,0.023566414330568386,-0.03132828661136762,0.5 -536,my_land,urban,0.13099999999999998,0.02,0.057,0.0,2009-11-26,0.0,0.0,2.6589292095034705e-06,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0,,,,, -537,my_land,rural,15.87868060603828,0.1,0.5700000000000001,20.0,2009-11-26,0.0,0.0,0.0014221830555508899,0.0,0.0,0.0,0.0,0.0,9.06776960252139,0.0,0.0,0.0,0.3503603091127438,0.11678676970424795,0.024586688358789043,-0.021733767175780797,0.5 -538,my_land,urban,0.10999999999999996,0.02,0.039,0.0,2009-11-27,0.0,0.0,2.6832147536358783e-06,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0,,,,, -539,my_land,rural,15.835138840304083,0.1,0.38999999999999996,20.0,2009-11-27,0.0,0.0,0.0014040869607571918,0.0,0.0,0.0,0.0,0.0,8.649825196946074,0.0,0.0,0.0,0.237648508085617,0.07921616936187234,0.016677088286709968,-0.04354176573419938,0.5 -540,my_land,urban,0.10299999999999995,0.02,0.053,0.0,2009-11-28,0.0,0.0,2.652944892478989e-06,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0,,,,, -541,my_land,rural,15.820366607156734,0.1,0.53,20.0,2009-11-28,0.0,0.0,0.0013773017021999347,0.0,0.0,0.0,0.0,0.0,8.229667193395695,0.0,0.0,0.0,0.31690021611748637,0.10563340537249545,0.022238611657367464,-0.014772233147349306,0.5 -542,my_land,urban,0.17299999999999993,0.02,0.13,0.0,2009-11-29,0.0,0.0,2.966945851637864e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0,,,,, -543,my_land,rural,15.936950029407171,0.1,1.3,20.0,2009-11-29,0.0,0.0,0.0013031417409428995,0.0,0.0,0.0,0.0,0.0,7.805452019396436,0.0,0.0,0.0,0.7719343116465639,0.2573114372155213,0.05417082888747817,0.11658342225043666,0.5 -544,my_land,urban,0.11299999999999993,0.02,0.0,0.0,2009-11-30,0.0,0.0,2.9298358250658726e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0,,,,, -545,my_land,rural,15.836950029407172,0.1,0.0,20.0,2009-11-30,0.0,0.0,0.0013131417409428996,0.0,0.0,0.0,0.0,0.0,7.392645787924555,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -546,my_land,urban,0.07099999999999992,0.02,0.018,0.0,2009-12-01,0.0,0.0,2.51367877098808e-06,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0,,,,, -547,my_land,rural,15.765769679316602,0.1,0.18,20.0,2009-12-01,0.0,0.0,0.0013111971366590361,0.0,0.0,0.0,0.0,0.0,6.9735157408641655,0.0,0.0,0.0,0.10771599943953056,0.035905333146510184,0.007559017504528461,-0.07118035009056921,0.5 -548,my_land,urban,0.04999999999999991,0.02,0.039,0.0,2009-12-02,0.0,0.0,1.9520437616600427e-06,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0,,,,, -549,my_land,rural,15.739748830005217,0.1,0.38999999999999996,20.0,2009-12-02,0.0,0.0,0.0012964683134204585,0.0,0.0,0.0,0.0,0.0,7.140732601935397,0.0,0.0,0.0,0.2251648551343603,0.07505495171145343,0.015801042465569147,-0.026020849311382932,0.5 -550,my_land,urban,0.0,0.019999999999999997,0.002,0.0,2009-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0,,,,, -551,my_land,rural,15.658950504975001,0.1,0.02,20.0,2009-12-03,0.0,0.0,0.0013064683134204585,0.0,0.0,0.0,0.0,0.0,7.381877289741926,0.0,0.0,0.0,0.0,0.0,0.000798325030215587,-0.09596650060431175,0.5 -552,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2009-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0,,,,, -553,my_land,rural,15.666028445204873,0.1,0.44,20.0,2009-12-04,0.0,0.0,0.0012904165461078555,0.0,0.0,0.0,0.0,0.0,7.631401972515127,0.0,0.0,0.0,0.23720696758621607,0.07906898919540535,0.01664610298850639,0.007077940229872209,0.5 -554,my_land,urban,0.092,0.02,0.152,0.0,2009-12-05,0.0,0.0,6.969696969696969e-07,0.0,0.0,0.0,0.0,0.0,7.571428571,0.0,0.0,0.0,,,,, -555,my_land,rural,15.929946925653065,0.1,1.52,20.0,2009-12-05,0.0,0.0,0.0012165429648775094,0.0,0.0,0.0,0.0,0.0,7.881896968105971,0.0,0.0,0.0,0.8237080826806615,0.2745693608935538,0.05780407597759028,0.2639184804481944,0.5 -556,my_land,urban,0.04499999999999999,0.02,0.013,0.0,2009-12-06,0.0,0.0,8.983957219251335e-07,0.0,0.0,0.0,0.0,0.0,7.571428571,0.0,0.0,0.0,,,,, -557,my_land,rural,15.846552122735352,0.1,0.13,20.0,2009-12-06,0.0,0.0,0.0012182612096875095,0.0,0.0,0.0,0.0,0.0,8.133448049369706,0.0,0.0,0.0,0.08079379707887123,0.026931265692957077,0.0056697401458857015,-0.08339480291771402,0.5 -558,my_land,urban,0.04499999999999999,0.02,0.06,0.0,2009-12-07,0.0,0.0,1.0050330292544823e-06,0.0,0.0,0.0,0.0,0.0,7.847058823235296,0.0,0.0,0.0,,,,, -559,my_land,rural,15.840424724434023,0.1,0.6,20.0,2009-12-07,0.0,0.0,0.0011920768505452636,0.0,0.0,0.0,0.0,0.0,8.3846242925773,0.0,0.0,0.0,0.36061577128969774,0.1202052570965659,0.025306369915066507,-0.0061273983013301545,0.5 -560,my_land,urban,0.014999999999999993,0.02,0.03,0.0,2009-12-08,0.0,0.0,5.468271897966767e-07,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, -561,my_land,rural,15.788058070745501,0.1,0.3,20.0,2009-12-08,0.0,0.0,0.0011840958555424498,0.0,0.0,0.0,0.0,0.0,8.635673575293739,0.0,0.0,0.0,0.17981124075307162,0.05993708025102387,0.012618332684426081,-0.052366653688521586,0.5 -562,my_land,urban,-1.734723475976807e-18,0.02,0.011999999999999999,0.0,2009-12-09,0.0,0.0,-4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, -563,my_land,rural,15.709650671329419,0.1,0.12,20.0,2009-12-09,0.0,0.0,0.0011870319118800396,0.0,0.0,0.0,0.0,0.0,8.474718985512384,0.0,0.0,0.0,0.07011527208395861,0.023371757361319537,0.004920369970804114,-0.07840739941608228,0.5 -564,my_land,urban,0.0,0.0009999999999999983,0.001,0.0,2009-12-10,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, -565,my_land,rural,15.619258863668033,0.1,0.01,20.0,2009-12-10,0.0,0.0,0.0011970319118800397,0.0,0.0,0.0,0.0,0.0,8.26246487318905,0.0,0.0,0.0,0.0,0.0,0.0003918076613856561,-0.09783615322771314,0.5 -566,my_land,urban,0.0,0.001,0.001,0.0,2009-12-11,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, -567,my_land,rural,15.528892137802307,0.1,0.01,20.0,2009-12-11,0.0,0.0,0.0012070319118800397,0.0,0.0,0.0,0.0,0.0,8.043745609148631,0.0,0.0,0.0,0.0,0.0,0.0003667258657255478,-0.09733451731451095,0.5 -568,my_land,urban,0.0,0.001,0.001,0.0,2009-12-12,0.0,0.0,2.9999999999999992e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, -569,my_land,rural,15.43855560154233,0.1,0.01,20.0,2009-12-12,0.0,0.0,0.0012170319118800397,0.0,0.0,0.0,0.0,0.0,7.824218201143579,0.0,0.0,0.0,0.0,0.0,0.0003365362599782337,-0.09673072519956467,0.5 -570,my_land,urban,0.0,0.002,0.002,0.0,2009-12-13,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0,,,,, -571,my_land,rural,15.357954924069375,0.1,0.02,20.0,2009-12-13,0.0,0.0,0.0012270319118800397,0.0,0.0,0.0,0.0,0.0,7.604589775142948,0.0,0.0,0.0,0.0,0.0,0.0006006774729538937,-0.09201354945907789,0.5 -572,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2009-12-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0,,,,, -573,my_land,rural,15.39592709173547,0.1,0.29,20.0,2009-12-14,0.0,0.0,0.0012255353834572243,0.0,0.0,0.0,0.0,0.0,7.3839333314482545,0.0,0.0,0.0,0.10831983053790824,0.036106610179302744,0.007601391616695315,0.03797216766609369,0.5 -574,my_land,urban,0.0,0.015,0.015,0.0,2009-12-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0,,,,, -575,my_land,rural,15.361664584945213,0.1,0.15,20.0,2009-12-15,0.0,0.0,0.0012291304051354206,0.0,0.0,0.0,0.0,0.0,7.164909455879778,0.0,0.0,0.0,0.06003703608805902,0.02001234536268634,0.004213125339512914,-0.03426250679025828,0.5 -576,my_land,urban,0.0,0.02,0.028,0.0,2009-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -577,my_land,rural,15.393818336598887,0.1,0.27999999999999997,20.0,2009-12-16,0.0,0.0,0.0012279267427122785,0.0,0.0,0.0,0.0,0.0,6.944551279043968,0.0,0.0,0.0,0.10534045194675817,0.035113483982252724,0.0073923124173163645,0.03215375165367272,0.5 -578,my_land,urban,0.0,0.0,0.0,0.0,2009-12-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -579,my_land,rural,15.293818336598887,0.1,0.0,20.0,2009-12-17,0.0,0.0,0.0012379267427122785,0.0,0.0,0.0,0.0,0.0,6.775568909880497,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -580,my_land,urban,0.0,0.0,0.0,0.0,2009-12-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -581,my_land,rural,15.193818336598888,0.1,0.0,20.0,2009-12-18,0.0,0.0,0.0012479267427122785,0.0,0.0,0.0,0.0,0.0,6.611946113735063,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -582,my_land,urban,0.0,0.007,0.007,0.0,2009-12-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -583,my_land,rural,15.162675392175545,0.1,0.06999999999999999,20.0,2009-12-19,0.0,0.0,0.0012579267427122785,0.0,0.0,0.0,0.0,0.0,6.448993264216883,0.0,0.0,0.0,0.0,0.0,0.001142944423341944,-0.05285888846683889,0.5 -584,my_land,urban,0.0,0.001,0.001,0.0,2009-12-20,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -585,my_land,rural,15.072534580554477,0.1,0.01,20.0,2009-12-20,0.0,0.0,0.0012679267427122786,0.0,0.0,0.0,0.0,0.0,6.2861241580271106,0.0,0.0,0.0,0.0,0.0,0.00014081162106906905,-0.09281623242138137,0.5 -586,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2009-12-21,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -587,my_land,rural,15.067579409406559,0.1,0.11,20.0,2009-12-21,0.0,0.0,0.001276722904419876,0.0,0.0,0.0,0.0,0.0,6.123201402494958,0.0,0.0,0.0,0.010655559442891363,0.0035518531476304545,0.0007477585573958852,-0.004955171147917698,0.5 -588,my_land,urban,0.0,0.004,0.004,0.0,2009-12-22,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,,,,, -589,my_land,rural,15.007324954099435,0.1,0.04,20.0,2009-12-22,0.0,0.0,0.001286722904419876,0.0,0.0,0.0,0.0,0.0,5.96040017531187,0.0,0.0,0.0,0.0,0.0,0.00025445530712488325,-0.06508910614249766,0.5 -590,my_land,urban,0.0,0.02,0.045,0.0,2009-12-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, -591,my_land,rural,15.350775786571363,0.1,0.44999999999999996,20.0,2009-12-23,0.0,0.0,0.001296197552197617,0.0,0.0,0.0,0.0,0.0,5.795015766011667,0.0,0.0,0.0,0.004666281863749557,0.001555427287916519,0.0003274583764034777,0.3434508324719304,0.5 -592,my_land,urban,0.0,0.01,0.01,0.0,2009-12-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, -593,my_land,rural,15.348191663857646,0.1,0.1,20.0,2009-12-24,0.0,0.0,0.001306197552197617,0.0,0.0,0.0,0.0,0.0,5.634376970751458,0.0,0.0,0.0,0.0,0.0,0.002584122713716708,-0.05168245427433416,0.5 -594,my_land,urban,0.0,0.01,0.01,0.0,2009-12-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, -595,my_land,rural,15.345621002661229,0.1,0.1,20.0,2009-12-25,0.0,0.0,0.0013161975521976171,0.0,0.0,0.0,0.0,0.0,5.471797121343934,0.0,0.0,0.0,0.0,0.0,0.002570661196416977,-0.05141322392833953,0.5 -596,my_land,urban,0.0,0.018,0.018,0.0,2009-12-26,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, -597,my_land,rural,15.333561699673583,0.1,0.18,20.0,2009-12-26,0.0,0.0,0.0013186763638504445,0.0,0.0,0.0,0.0,0.0,5.308380721682459,0.0,0.0,0.0,0.06559225337869778,0.021864084459565933,0.004602965149382301,-0.012059302987646035,0.5 -598,my_land,urban,0.0,0.0,0.0,0.0,2009-12-27,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, -599,my_land,rural,15.233561699673583,0.1,0.0,20.0,2009-12-27,0.0,0.0,0.0013286763638504446,0.0,0.0,0.0,0.0,0.0,5.1460475902103076,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -600,my_land,urban,0.0,0.013,0.013,0.0,2009-12-28,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0,,,,, -601,my_land,rural,15.214133499514844,0.1,0.13,20.0,2009-12-28,0.0,0.0,0.0013345573956834238,0.0,0.0,0.0,0.0,0.0,4.98302459535652,0.0,0.0,0.0,0.03521759261310076,0.01173919753770025,0.002471410007936895,-0.019428200158737904,0.5 -602,my_land,urban,0.10899999999999999,0.02,0.16899999999999998,0.0,2009-12-29,0.0,0.0,4.389261744966442e-06,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0,,,,, -603,my_land,rural,16.205052387942818,0.1,1.69,20.0,2009-12-29,0.0,0.0,0.0012989382347118202,0.0,0.0,0.0,0.0,0.0,4.808136292676586,0.0,0.0,0.0,0.4268452919950684,0.14228176399835613,0.029954055578601292,0.9909188884279739,0.5 -604,my_land,urban,0.09699999999999998,0.02,0.047999999999999994,0.0,2009-12-30,0.0,0.0,3.815754666144123e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, -605,my_land,rural,16.135503211574175,0.1,0.48,20.0,2009-12-30,0.0,0.0,0.001275186810041582,0.0,0.0,0.0,0.0,0.0,4.653134915271009,0.0,0.0,0.0,0.3203037881626581,0.1067679293875527,0.02247745881843215,-0.06954917636864304,0.5 -606,my_land,urban,0.03699999999999997,0.02,0.0,0.0,2009-12-31,0.0,0.0,2.3140639304848372e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, -607,my_land,rural,16.035503211574174,0.1,0.0,20.0,2009-12-31,0.0,0.0,0.001285186810041582,0.0,0.0,0.0,0.0,0.0,4.494141864408876,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -608,my_land,urban,0.0,0.02,0.0,0.0,2010-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, -609,my_land,rural,15.935503211574174,0.1,0.0,20.0,2010-01-01,0.0,0.0,0.001295186810041582,0.0,0.0,0.0,0.0,0.0,4.33176773305111,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -610,my_land,urban,0.0,0.001,0.001,0.0,2010-01-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, -611,my_land,rural,15.845066211176531,0.1,0.01,20.0,2010-01-02,0.0,0.0,0.001305186810041582,0.0,0.0,0.0,0.0,0.0,4.168970966631389,0.0,0.0,0.0,0.0,0.0,0.0004370003976416374,-0.09874000795283275,0.5 -612,my_land,urban,0.0,0.0,0.0,0.0,2010-01-03,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, -613,my_land,rural,15.745066211176532,0.1,0.0,20.0,2010-01-03,0.0,0.0,0.001315186810041582,0.0,0.0,0.0,0.0,0.0,4.006121370828923,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -614,my_land,urban,0.0,0.001,0.001,0.0,2010-01-04,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0,,,,, -615,my_land,rural,15.654665797116056,0.1,0.01,20.0,2010-01-04,0.0,0.0,0.001325186810041582,0.0,0.0,0.0,0.0,0.0,3.8432651713536155,0.0,0.0,0.0,0.0,0.0,0.00040041406047590524,-0.0980082812095181,0.5 -616,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2010-01-05,0.0,0.0,1.6119402985074626e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, -617,my_land,rural,15.768487138179598,0.1,0.8699999999999999,20.0,2010-01-05,0.0,0.0,0.001284410681210202,0.0,0.0,0.0,0.0,0.0,3.673418975013127,0.0,0.0,0.0,0.46752729449222924,0.15584243149740973,0.032808932946823105,0.11382134106353789,0.5 -618,my_land,urban,0.0,0.02,0.016999999999999998,0.0,2010-01-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, -619,my_land,rural,15.700528098982591,0.1,0.16999999999999998,20.0,2010-01-06,0.0,0.0,0.0012836949615679526,0.0,0.0,0.0,0.0,0.0,3.693487123779367,0.0,0.0,0.0,0.0982958154278669,0.03276527180928897,0.006897951959850309,-0.0679590391970062,0.5 -620,my_land,urban,0.0,0.001,0.001,0.0,2010-01-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, -621,my_land,rural,15.610138613952767,0.1,0.01,20.0,2010-01-07,0.0,0.0,0.0012936949615679526,0.0,0.0,0.0,0.0,0.0,3.7313287477224213,0.0,0.0,0.0,0.0,0.0,0.00038948502982424715,-0.09778970059648494,0.5 -622,my_land,urban,0.0,0.0,0.0,0.0,2010-01-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, -623,my_land,rural,15.510138613952767,0.1,0.0,20.0,2010-01-08,0.0,0.0,0.0013036949615679526,0.0,0.0,0.0,0.0,0.0,3.770880378965303,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -624,my_land,urban,0.0,0.0,0.0,0.0,2010-01-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,,,,, -625,my_land,rural,15.410138613952768,0.1,0.0,20.0,2010-01-09,0.0,0.0,0.0013136949615679527,0.0,0.0,0.0,0.0,0.0,3.810645761870663,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -626,my_land,urban,0.0,0.02,0.031,0.0,2010-01-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0,,,,, -627,my_land,rural,15.441860321135648,0.1,0.31,20.0,2010-01-10,0.0,0.0,0.0013093343474342716,0.0,0.0,0.0,0.0,0.0,3.848862367447426,0.0,0.0,0.0,0.12702328363219792,0.04234109454406597,0.008913914640855995,0.0317217071828801,0.5 -628,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-01-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0,,,,, -629,my_land,rural,15.37095497947081,0.1,0.03,20.0,2010-01-11,0.0,0.0,0.0013193343474342716,0.0,0.0,0.0,0.0,0.0,3.890036367680928,0.0,0.0,0.0,0.0,0.0,0.0009053416648387037,-0.08810683329677409,0.5 -630,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2010-01-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0,,,,, -631,my_land,rural,15.465250725929259,0.1,0.42,20.0,2010-01-12,0.0,0.0,0.0013111557378076388,0.0,0.0,0.0,0.0,0.0,3.9276294879914335,0.0,0.0,0.0,0.16081428064835535,0.05360476021611845,0.01128521267707757,0.09429574645844858,0.5 -632,my_land,urban,0.0,0.016,0.016,0.0,2010-01-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0,,,,, -633,my_land,rural,15.425500127665819,0.1,0.16,20.0,2010-01-13,0.0,0.0,0.001313089072319946,0.0,0.0,0.0,0.0,0.0,4.2371168332589075,0.0,0.0,0.0,0.07107230126270062,0.023690767087566872,0.004987529913171974,-0.03975059826343947,0.5 -634,my_land,urban,0.0,0.02,0.031,0.0,2010-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0,,,,, -635,my_land,rural,15.452879131620277,0.1,0.31,20.0,2010-01-14,0.0,0.0,0.001308399629693315,0.0,0.0,0.0,0.0,0.0,4.5779353492629165,0.0,0.0,0.0,0.13011745968244853,0.04337248656081618,0.00913104980227709,0.027379003954458168,0.5 -636,my_land,urban,0.017999999999999995,0.02,0.078,0.0,2010-01-15,0.0,0.0,3.1034482758620683e-07,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0,,,,, -637,my_land,rural,15.654707144173736,0.1,0.7799999999999999,20.0,2010-01-15,0.0,0.0,0.00128122154426437,0.0,0.0,0.0,0.0,0.0,4.921776267713667,0.0,0.0,0.0,0.3406975410556602,0.1135658470185534,0.023908599372327033,0.2018280125534593,0.5 -638,my_land,urban,0.0,0.02,0.031,0.0,2010-01-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0,,,,, -639,my_land,rural,15.630889108352012,0.1,0.31,20.0,2010-01-16,0.0,0.0,0.001273129382076378,0.0,0.0,0.0,0.0,0.0,5.269088235958894,0.0,0.0,0.0,0.16659535052297858,0.05553178350765953,0.011690901791086217,-0.023818035821724336,0.5 -640,my_land,urban,0.0,0.001,0.001,0.0,2010-01-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0,,,,, -641,my_land,rural,15.540518886220532,0.1,0.01,20.0,2010-01-17,0.0,0.0,0.001283129382076378,0.0,0.0,0.0,0.0,0.0,5.615778886744863,0.0,0.0,0.0,0.0,0.0,0.00037022213147976416,-0.09740444262959529,0.5 -642,my_land,urban,0.0,0.001,0.001,0.0,2010-01-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0,,,,, -643,my_land,rural,15.450178148618667,0.1,0.01,20.0,2010-01-18,0.0,0.0,0.001293129382076378,0.0,0.0,0.0,0.0,0.0,5.961793789093107,0.0,0.0,0.0,0.0,0.0,0.00034073760186561743,-0.09681475203731234,0.5 -644,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2010-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0,,,,, -645,my_land,rural,15.564273169744155,0.1,0.5499999999999999,20.0,2010-01-19,0.0,0.0,0.001276948481709884,0.0,0.0,0.0,0.0,0.0,6.30700216338459,0.0,0.0,0.0,0.23933229744809095,0.07977743248269697,0.016795248943725683,0.11409502112548633,0.5 -646,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2010-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0,,,,, -647,my_land,rural,15.618272226179116,0.1,0.51,20.0,2010-01-20,0.0,0.0,0.0012596713305014276,0.0,0.0,0.0,0.0,0.0,6.257719417720576,0.0,0.0,0.0,0.2536506722900914,0.08455022409669713,0.01780004717825203,0.05399905643495946,0.5 -648,my_land,urban,0.024000000000000007,0.02,0.08399999999999999,0.0,2010-01-21,0.0,0.0,3.750000000000001e-07,0.0,0.0,0.0,0.0,0.0,5.507142857,0.0,0.0,0.0,,,,, -649,my_land,rural,15.742677555517119,0.1,0.84,20.0,2010-01-21,0.0,0.0,0.001224194490768934,0.0,0.0,0.0,0.0,0.0,6.15849670361107,0.0,0.0,0.0,0.43861120284667277,0.14620373428222425,0.030779733533099842,0.12440532933800313,0.5 -650,my_land,urban,0.07200000000000001,0.02,0.10800000000000001,0.0,2010-01-22,0.0,0.0,8.839285714285715e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, -651,my_land,rural,15.858993810626771,0.1,1.08,20.0,2010-01-22,0.0,0.0,0.0011734818533185012,0.0,0.0,0.0,0.0,0.0,6.05367231700158,0.0,0.0,0.0,0.6153746682343743,0.2051248894114581,0.0431841872445175,0.11631625510965006,0.5 -652,my_land,urban,0.012000000000000004,0.02,0.0,0.0,2010-01-23,0.0,0.0,4.347527472527473e-07,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, -653,my_land,rural,15.758993810626771,0.1,0.0,20.0,2010-01-23,0.0,0.0,0.0011834818533185013,0.0,0.0,0.0,0.0,0.0,5.954923325125197,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -654,my_land,urban,0.0,0.014000000000000004,0.002,0.0,2010-01-24,0.0,0.0,1.4347527472527472e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, -655,my_land,rural,15.678186558244636,0.1,0.02,20.0,2010-01-24,0.0,0.0,0.0011934818533185013,0.0,0.0,0.0,0.0,0.0,5.85150827289065,0.0,0.0,0.0,0.0,0.0,0.0008072523821347404,-0.09614504764269481,0.5 -656,my_land,urban,0.0,0.0,0.0,0.0,2010-01-25,0.0,0.0,2.434752747252747e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, -657,my_land,rural,15.578186558244637,0.1,0.0,20.0,2010-01-25,0.0,0.0,0.0012034818533185013,0.0,0.0,0.0,0.0,0.0,5.747509962361332,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -658,my_land,urban,0.0,0.0,0.0,0.0,2010-01-26,0.0,0.0,3.4347527472527474e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, -659,my_land,rural,15.478186558244637,0.1,0.0,20.0,2010-01-26,0.0,0.0,0.0012134818533185013,0.0,0.0,0.0,0.0,0.0,5.643438745295167,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -660,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-01-27,0.0,0.0,4.434752747252747e-06,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0,,,,, -661,my_land,rural,15.407235489071896,0.1,0.03,20.0,2010-01-27,0.0,0.0,0.0012234818533185014,0.0,0.0,0.0,0.0,0.0,5.638465557661896,0.0,0.0,0.0,0.0,0.0,0.0009510691727408367,-0.08902138345481675,0.5 -662,my_land,urban,0.020999999999999998,0.02,0.08099999999999999,0.0,2010-01-28,0.0,0.0,1.8709804539722567e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, -663,my_land,rural,15.65359471116825,0.1,0.8099999999999999,20.0,2010-01-28,0.0,0.0,0.0011997241760879386,0.0,0.0,0.0,0.0,0.0,5.6420546552239985,0.0,0.0,0.0,0.33034405425634655,0.11011468475211551,0.02318203889518221,0.2463592220963557,0.5 -664,my_land,urban,0.0,0.02,0.004,0.0,2010-01-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, -665,my_land,rural,15.592087467436079,0.1,0.04,20.0,2010-01-29,0.0,0.0,0.0012097241760879386,0.0,0.0,0.0,0.0,0.0,5.654363974653,0.0,0.0,0.0,0.0,0.0,0.0015072437321718413,-0.09014487464343683,0.5 -666,my_land,urban,0.0,0.0,0.0,0.0,2010-01-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, -667,my_land,rural,15.492087467436079,0.1,0.0,20.0,2010-01-30,0.0,0.0,0.0012197241760879387,0.0,0.0,0.0,0.0,0.0,5.663938354081626,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -668,my_land,urban,0.0,0.0,0.0,0.0,2010-01-31,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, -669,my_land,rural,15.39208746743608,0.1,0.0,20.0,2010-01-31,0.0,0.0,0.0012297241760879387,0.0,0.0,0.0,0.0,0.0,5.673170866010205,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -670,my_land,urban,0.0,0.007,0.007,0.0,2010-02-01,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0,,,,, -671,my_land,rural,15.36013418233202,0.1,0.06999999999999999,20.0,2010-02-01,0.0,0.0,0.0012397241760879387,0.0,0.0,0.0,0.0,0.0,5.682360643751277,0.0,0.0,0.0,0.0,0.0,0.0019532851040592785,-0.06906570208118558,0.5 -672,my_land,urban,0.0,0.02,0.023,0.0,2010-02-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -673,my_land,rural,15.369047755034433,0.1,0.22999999999999998,20.0,2010-02-02,0.0,0.0,0.001240439904429485,0.0,0.0,0.0,0.0,0.0,5.690837302739972,0.0,0.0,0.0,0.08627407944953017,0.02875802648317672,0.0060543213648793105,0.008913572702413788,0.5 -674,my_land,urban,0.0,0.016,0.016,0.0,2010-02-03,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -675,my_land,rural,15.343370709349637,0.1,0.16,20.0,2010-02-03,0.0,0.0,0.0012438415994169296,0.0,0.0,0.0,0.0,0.0,5.72712384274031,0.0,0.0,0.0,0.061044895050417186,0.020348298350139064,0.004283852284239803,-0.025677045684796052,0.5 -676,my_land,urban,0.0,0.016,0.016,0.0,2010-02-04,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -677,my_land,rural,15.3219189740752,0.1,0.16,20.0,2010-02-04,0.0,0.0,0.0012475412346497916,0.0,0.0,0.0,0.0,0.0,5.766484045695794,0.0,0.0,0.0,0.05803436138303644,0.019344787127678814,0.004072586763721856,-0.021451735274437115,0.5 -678,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-02-05,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -679,my_land,rural,15.251189999345634,0.1,0.03,20.0,2010-02-05,0.0,0.0,0.0012575412346497916,0.0,0.0,0.0,0.0,0.0,5.806524791211975,0.0,0.0,0.0,0.0,0.0,0.0007289747295646704,-0.08457949459129341,0.5 -680,my_land,urban,0.0,0.001,0.001,0.0,2010-02-06,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -681,my_land,rural,15.160988618663826,0.1,0.01,20.0,2010-02-06,0.0,0.0,0.0012675412346497916,0.0,0.0,0.0,0.0,0.0,5.846351313401497,0.0,0.0,0.0,0.0,0.0,0.00020138068180881454,-0.09402761363617629,0.5 -682,my_land,urban,0.0,0.005,0.005,0.0,2010-02-07,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -683,my_land,rural,15.110290832837851,0.1,0.05,20.0,2010-02-07,0.0,0.0,0.0012775412346497917,0.0,0.0,0.0,0.0,0.0,5.886151056925188,0.0,0.0,0.0,0.0,0.0,0.0006977858259739543,-0.06395571651947908,0.5 -684,my_land,urban,0.0,0.004,0.004,0.0,2010-02-08,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -685,my_land,rural,15.049890981155084,0.1,0.04,20.0,2010-02-08,0.0,0.0,0.0012875412346497917,0.0,0.0,0.0,0.0,0.0,5.925947453865649,0.0,0.0,0.0,0.0,0.0,0.0003998516827672259,-0.06799703365534453,0.5 -686,my_land,urban,0.0,0.001,0.001,0.0,2010-02-09,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -687,my_land,rural,14.959843271793055,0.1,0.01,20.0,2010-02-09,0.0,0.0,0.0012975412346497917,0.0,0.0,0.0,0.0,0.0,5.965743431733206,0.0,0.0,0.0,0.0,0.0,4.7709362029658815e-05,-0.09095418724059318,0.5 -688,my_land,urban,0.0,0.002,0.002,0.0,2010-02-10,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -689,my_land,rural,14.879843271793055,0.1,0.02,20.0,2010-02-10,0.0,0.0,0.0013075412346497917,0.0,0.0,0.0,0.0,0.0,5.9894679289666515,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -690,my_land,urban,0.0,0.0,0.0,0.0,2010-02-11,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -691,my_land,rural,14.779843271793055,0.1,0.0,20.0,2010-02-11,0.0,0.0,0.0013175412346497918,0.0,0.0,0.0,0.0,0.0,6.011183491120831,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -692,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-02-12,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -693,my_land,rural,14.709843271793055,0.1,0.03,20.0,2010-02-12,0.0,0.0,0.0013275412346497918,0.0,0.0,0.0,0.0,0.0,6.032647936390105,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -694,my_land,urban,0.0,0.004,0.004,0.0,2010-02-13,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -695,my_land,rural,14.649843271793054,0.1,0.04,20.0,2010-02-13,0.0,0.0,0.0013375412346497918,0.0,0.0,0.0,0.0,0.0,6.054080992048764,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -696,my_land,urban,0.0,0.0,0.0,0.0,2010-02-14,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -697,my_land,rural,14.549843271793055,0.1,0.0,20.0,2010-02-14,0.0,0.0,0.0013475412346497918,0.0,0.0,0.0,0.0,0.0,6.0755101240060965,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -698,my_land,urban,0.0,0.015,0.015,0.0,2010-02-15,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0,,,,, -699,my_land,rural,14.599843271793056,0.1,0.15,20.0,2010-02-15,0.0,0.0,0.0013575412346497919,0.0,0.0,0.0,0.0,0.0,6.09667099288141,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 -700,my_land,urban,0.0,0.02,0.025,0.0,2010-02-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0,,,,, -701,my_land,rural,14.749843271793056,0.1,0.25,20.0,2010-02-16,0.0,0.0,0.001367541234649792,0.0,0.0,0.0,0.0,0.0,6.1175436059763575,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.5 -702,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2010-02-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0,,,,, -703,my_land,rural,14.869843271793055,0.1,0.22,20.0,2010-02-17,0.0,0.0,0.001377541234649792,0.0,0.0,0.0,0.0,0.0,6.026418688780782,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 -704,my_land,urban,0.014999999999999993,0.02,0.075,0.0,2010-02-18,0.0,0.0,2.7272727272727253e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, -705,my_land,rural,15.519843271793055,0.1,0.75,20.0,2010-02-18,0.0,0.0,0.001387541234649792,0.0,0.0,0.0,0.0,0.0,5.917856722306717,0.0,0.0,0.0,0.0,0.0,0.0,0.65,0.5 -706,my_land,urban,0.0,0.02,0.005999999999999999,0.0,2010-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, -707,my_land,rural,15.47784408558623,0.1,0.06,20.0,2010-02-19,0.0,0.0,0.001397541234649792,0.0,0.0,0.0,0.0,0.0,5.81473209028834,0.0,0.0,0.0,0.0,0.0,0.001999186206825437,-0.07998372413650875,0.5 -708,my_land,urban,0.0,0.008,0.008,0.0,2010-02-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, -709,my_land,rural,15.455309010166683,0.1,0.08,20.0,2010-02-20,0.0,0.0,0.001407541234649792,0.0,0.0,0.0,0.0,0.0,5.708091511286042,0.0,0.0,0.0,0.0,0.0,0.0025350754195479414,-0.07070150839095882,0.5 -710,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2010-02-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0,,,,, -711,my_land,rural,15.497720579945245,0.1,0.37,20.0,2010-02-21,0.0,0.0,0.0013980371899472523,0.0,0.0,0.0,0.0,0.0,5.5992461251982215,0.0,0.0,0.0,0.16215675653277498,0.05405225217759166,0.01137942151107193,0.042411569778561406,0.5 -712,my_land,urban,0.0,0.018,0.018,0.0,2010-02-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0,,,,, -713,my_land,rural,15.460801338653779,0.1,0.18,20.0,2010-02-22,0.0,0.0,0.0013979937422700357,0.0,0.0,0.0,0.0,0.0,5.4931353652329715,0.0,0.0,0.0,0.08330495942017029,0.027768319806723424,0.005845962064573353,-0.03691924129146707,0.5 -714,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2010-02-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0,,,,, -715,my_land,rural,15.463474190349991,0.1,0.27,20.0,2010-02-23,0.0,0.0,0.0013936671792786565,0.0,0.0,0.0,0.0,0.0,5.385486845256326,0.0,0.0,0.0,0.1192205931664483,0.039740197722149435,0.008366357415189355,0.002672851696212909,0.5 -716,my_land,urban,0.0,0.018,0.018,0.0,2010-02-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0,,,,, -717,my_land,rural,15.431520773432636,0.1,0.18,20.0,2010-02-24,0.0,0.0,0.0013940591694646483,0.0,0.0,0.0,0.0,0.0,5.624702356037304,0.0,0.0,0.0,0.07976680955361576,0.02658893651787192,0.005597670845867772,-0.031953416917355454,0.5 -718,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2010-02-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0,,,,, -719,my_land,rural,15.538337984497964,0.1,0.51,20.0,2010-02-25,0.0,0.0,0.0013785067237769553,0.0,0.0,0.0,0.0,0.0,5.905557525089394,0.0,0.0,0.0,0.2160177371159532,0.0720059123719844,0.01515913944673356,0.10681721106532882,0.5 -720,my_land,urban,0.0010000000000000009,0.02,0.061000000000000006,0.0,2010-02-26,0.0,0.0,2.439024390243907e-08,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0,,,,, -721,my_land,rural,15.633590425610448,0.1,0.61,20.0,2010-02-26,0.0,0.0,0.0013543727445927958,0.0,0.0,0.0,0.0,0.0,6.1924131481070015,0.0,0.0,0.0,0.2955076357073541,0.0985025452357847,0.020737377944375728,0.09525244111248553,0.5 -722,my_land,urban,0.041,0.02,0.1,0.0,2010-02-27,0.0,0.0,5.185185185185186e-07,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -723,my_land,rural,15.791545848825752,0.1,1.0,20.0,2010-02-27,0.0,0.0,0.0013060691763076206,0.0,0.0,0.0,0.0,0.0,6.4795627798327,0.0,0.0,0.0,0.5287067609590959,0.1762355869863653,0.03710222883923481,0.15795542321530404,0.5 -724,my_land,urban,0.0,0.02,0.005,0.0,2010-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -725,my_land,rural,15.739491983487772,0.1,0.05,20.0,2010-02-28,0.0,0.0,0.0013160691763076206,0.0,0.0,0.0,0.0,0.0,6.7688739192290885,0.0,0.0,0.0,0.0,0.0,0.00205386533798053,-0.0910773067596106,0.5 -726,my_land,urban,0.0,0.0,0.0,0.0,2010-03-01,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -727,my_land,rural,15.639491983487773,0.1,0.0,20.0,2010-03-01,0.0,0.0,0.0013260691763076207,0.0,0.0,0.0,0.0,0.0,7.056823525403637,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -728,my_land,urban,0.0,0.0,0.0,0.0,2010-03-02,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -729,my_land,rural,15.539491983487773,0.1,0.0,20.0,2010-03-02,0.0,0.0,0.0013360691763076207,0.0,0.0,0.0,0.0,0.0,7.344602940675455,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -730,my_land,urban,0.0,0.0,0.0,0.0,2010-03-03,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -731,my_land,rural,15.439491983487773,0.1,0.0,20.0,2010-03-03,0.0,0.0,0.0013460691763076207,0.0,0.0,0.0,0.0,0.0,7.289503939334432,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -732,my_land,urban,0.0,0.0,0.0,0.0,2010-03-04,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -733,my_land,rural,15.339491983487774,0.1,0.0,20.0,2010-03-04,0.0,0.0,0.0013560691763076207,0.0,0.0,0.0,0.0,0.0,7.1915451351668045,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -734,my_land,urban,0.0,0.0,0.0,0.0,2010-03-05,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -735,my_land,rural,15.239491983487774,0.1,0.0,20.0,2010-03-05,0.0,0.0,0.0013660691763076208,0.0,0.0,0.0,0.0,0.0,7.088228856395851,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -736,my_land,urban,0.0,0.0,0.0,0.0,2010-03-06,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -737,my_land,rural,15.139491983487774,0.1,0.0,20.0,2010-03-06,0.0,0.0,0.0013760691763076208,0.0,0.0,0.0,0.0,0.0,6.984242892549482,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -738,my_land,urban,0.0,0.0,0.0,0.0,2010-03-07,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -739,my_land,rural,15.039491983487775,0.1,0.0,20.0,2010-03-07,0.0,0.0,0.0013860691763076208,0.0,0.0,0.0,0.0,0.0,6.880173218818685,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -740,my_land,urban,0.0,0.0,0.0,0.0,2010-03-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -741,my_land,rural,14.939491983487775,0.1,0.0,20.0,2010-03-08,0.0,0.0,0.0013960691763076208,0.0,0.0,0.0,0.0,0.0,6.776093080602335,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -742,my_land,urban,0.0,0.0,0.0,0.0,2010-03-09,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -743,my_land,rural,14.839491983487775,0.1,0.0,20.0,2010-03-09,0.0,0.0,0.0014060691763076209,0.0,0.0,0.0,0.0,0.0,6.672011635075291,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -744,my_land,urban,0.0,0.0,0.0,0.0,2010-03-10,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -745,my_land,rural,14.739491983487776,0.1,0.0,20.0,2010-03-10,0.0,0.0,0.001416069176307621,0.0,0.0,0.0,0.0,0.0,6.835787168884411,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -746,my_land,urban,0.0,0.001,0.001,0.0,2010-03-11,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -747,my_land,rural,14.649491983487776,0.1,0.01,20.0,2010-03-11,0.0,0.0,0.001426069176307621,0.0,0.0,0.0,0.0,0.0,7.033044824360552,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -748,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2010-03-12,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -749,my_land,rural,14.659491983487776,0.1,0.11,20.0,2010-03-12,0.0,0.0,0.001436069176307621,0.0,0.0,0.0,0.0,0.0,7.234468483363635,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 -750,my_land,urban,0.0,0.0,0.0,0.0,2010-03-13,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -751,my_land,rural,14.559491983487776,0.1,0.0,20.0,2010-03-13,0.0,0.0,0.001446069176307621,0.0,0.0,0.0,0.0,0.0,7.436451417670455,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -752,my_land,urban,0.0,0.0,0.0,0.0,2010-03-14,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -753,my_land,rural,14.459491983487776,0.1,0.0,20.0,2010-03-14,0.0,0.0,0.001456069176307621,0.0,0.0,0.0,0.0,0.0,7.638484998958808,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -754,my_land,urban,0.0,0.0,0.0,0.0,2010-03-15,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -755,my_land,rural,14.359491983487777,0.1,0.0,20.0,2010-03-15,0.0,0.0,0.001466069176307621,0.0,0.0,0.0,0.0,0.0,7.840524910369851,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -756,my_land,urban,0.0,0.0,0.0,0.0,2010-03-16,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -757,my_land,rural,14.259491983487777,0.1,0.0,20.0,2010-03-16,0.0,0.0,0.001476069176307621,0.0,0.0,0.0,0.0,0.0,8.042565613796231,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -758,my_land,urban,0.0,0.0,0.0,0.0,2010-03-17,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0,,,,, -759,my_land,rural,14.159491983487777,0.1,0.0,20.0,2010-03-17,0.0,0.0,0.001486069176307621,0.0,0.0,0.0,0.0,0.0,8.24996355897453,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -760,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2010-03-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0,,,,, -761,my_land,rural,14.269491983487777,0.1,0.21,20.0,2010-03-18,0.0,0.0,0.001496069176307621,0.0,0.0,0.0,0.0,0.0,8.458017428854738,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 -762,my_land,urban,0.039000000000000014,0.02,0.099,0.0,2010-03-19,0.0,0.0,4.936708860759494e-07,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0,,,,, -763,my_land,rural,15.159491983487777,0.1,0.9900000000000001,20.0,2010-03-19,0.0,0.0,0.0015060691763076211,0.0,0.0,0.0,0.0,0.0,8.666331588690914,0.0,0.0,0.0,0.0,0.0,0.0,0.8900000000000001,0.5 -764,my_land,urban,0.01200000000000001,0.02,0.033,0.0,2010-03-20,0.0,0.0,3.446932814021424e-07,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0,,,,, -765,my_land,rural,15.2981210451992,0.1,0.33,20.0,2010-03-20,0.0,0.0,0.0015075154496326285,0.0,0.0,0.0,0.0,0.0,8.874463792132058,0.0,0.0,0.0,0.06510179353061156,0.021700597843537187,0.004568546914428882,0.13862906171142236,0.5 -766,my_land,urban,0.0,0.01200000000000001,0.0,0.0,2010-03-21,0.0,0.0,1.3446932814021423e-06,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0,,,,, -767,my_land,rural,15.1981210451992,0.1,0.0,20.0,2010-03-21,0.0,0.0,0.0015175154496326285,0.0,0.0,0.0,0.0,0.0,9.082522259516509,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -768,my_land,urban,0.0,0.02,0.026,0.0,2010-03-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0,,,,, -769,my_land,rural,15.27165536856516,0.1,0.26,20.0,2010-03-22,0.0,0.0,0.0015193432842813906,0.0,0.0,0.0,0.0,0.0,9.290830370846436,0.0,0.0,0.0,0.061606794601753084,0.02053559820058436,0.004323283831701971,0.07353432336596057,0.5 -770,my_land,urban,1.734723475976807e-18,0.02,0.035,0.0,2010-03-23,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0,,,,, -771,my_land,rural,15.371853137074124,0.1,0.35000000000000003,20.0,2010-03-23,0.0,0.0,0.0015153145511036222,0.0,0.0,0.0,0.0,0.0,9.499164804137784,0.0,0.0,0.0,0.10673408993736333,0.03557802997912111,0.007490111574551815,0.10019776850896374,0.5 -772,my_land,urban,0.049999999999999996,0.02,0.10999999999999999,0.0,2010-03-24,0.0,0.0,5.555555555555556e-07,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0,,,,, -773,my_land,rural,15.779736468343714,0.1,1.0999999999999999,20.0,2010-03-24,0.0,0.0,0.001472812227140122,0.0,0.0,0.0,0.0,0.0,9.521825597496692,0.0,0.0,0.0,0.42188312647041504,0.1406277088234717,0.02960583343652036,0.4078833312695927,0.5 -774,my_land,urban,0.049999999999999996,0.02,0.06,0.0,2010-03-25,0.0,0.0,8.641975308641975e-07,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0,,,,, -775,my_land,rural,15.789851578483349,0.1,0.6,20.0,2010-03-25,0.0,0.0,0.0014403590338967266,0.0,0.0,0.0,0.0,0.0,9.522082304283485,0.0,0.0,0.0,0.34904298402551087,0.11634766134183695,0.02449424449301831,0.010115110139633822,0.5 -776,my_land,urban,0.014999999999999993,0.02,0.025,0.0,2010-03-26,0.0,0.0,5.084175084175081e-07,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0,,,,, -777,my_land,rural,15.734644978585505,0.1,0.25,20.0,2010-03-26,0.0,0.0,0.0014326095462126,0.0,0.0,0.0,0.0,0.0,9.519633783633617,0.0,0.0,0.0,0.14620970242721482,0.04873656747573828,0.01026032999489227,-0.055206599897845376,0.5 -778,my_land,urban,0.0,0.01799999999999999,0.0029999999999999996,0.0,2010-03-27,0.0,0.0,1.508417508417508e-06,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0,,,,, -779,my_land,rural,15.663451134790071,0.1,0.03,20.0,2010-03-27,0.0,0.0,0.0014426095462126,0.0,0.0,0.0,0.0,0.0,9.516739937454203,0.0,0.0,0.0,0.0,0.0,0.001193843795434583,-0.09387687590869166,0.5 -780,my_land,urban,0.0,0.02,0.028,0.0,2010-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0,,,,, -781,my_land,rural,15.630888474971625,0.1,0.27999999999999997,20.0,2010-03-28,0.0,0.0,0.001434082716136482,0.0,0.0,0.0,0.0,0.0,9.513586512610994,0.0,0.0,0.0,0.15145089512064355,0.05048363170688119,0.010628132990922358,-0.032562659818447144,0.5 -782,my_land,urban,0.0,0.02,0.023,0.0,2010-03-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0,,,,, -783,my_land,rural,15.590586381033605,0.1,0.22999999999999998,20.0,2010-03-29,0.0,0.0,0.0014292510593843805,0.0,0.0,0.0,0.0,0.0,9.510544929537241,0.0,0.0,0.0,0.12134024193083956,0.040446747310279856,0.008515104696901024,-0.04030209393802047,0.5 -784,my_land,urban,0.0,0.02,0.057999999999999996,0.0,2010-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0,,,,, -785,my_land,rural,15.655606289364222,0.1,0.58,20.0,2010-03-30,0.0,0.0,0.001403898831419554,0.0,0.0,0.0,0.0,0.0,9.50726214273335,0.0,0.0,0.0,0.2956733153144343,0.0985577717714781,0.02074900458346908,0.06501990833061838,0.5 -786,my_land,urban,0.0,0.007,0.007,0.0,2010-03-31,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0,,,,, -787,my_land,rural,15.622964630178812,0.1,0.06999999999999999,20.0,2010-03-31,0.0,0.0,0.001413898831419554,0.0,0.0,0.0,0.0,0.0,9.504479196091669,0.0,0.0,0.0,0.0,0.0,0.002641659185410869,-0.08283318370821738,0.5 -788,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2010-04-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0,,,,, -789,my_land,rural,15.63397148749884,0.1,0.42,20.0,2010-04-01,0.0,0.0,0.0013976564309730879,0.0,0.0,0.0,0.0,0.0,9.50124571900311,0.0,0.0,0.0,0.22015761415947888,0.07338587138649295,0.015449657133998517,0.011006857320029631,0.5 -790,my_land,urban,0.0,0.02,0.039,0.0,2010-04-02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0,,,,, -791,my_land,rural,15.634486339895512,0.1,0.38999999999999996,20.0,2010-04-02,0.0,0.0,0.0013833237419753866,0.0,0.0,0.0,0.0,0.0,9.498181750240814,0.0,0.0,0.0,0.20625816766737218,0.06875272255579072,0.014474257380166469,0.0005148523966705919,0.5 -792,my_land,urban,0.014000000000000005,0.02,0.07400000000000001,0.0,2010-04-03,0.0,0.0,2.5925925925925933e-07,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -793,my_land,rural,15.724982046258871,0.1,0.74,20.0,2010-04-03,0.0,0.0,0.0013485551685988044,0.0,0.0,0.0,0.0,0.0,9.494896234465935,0.0,0.0,0.0,0.3915218092161058,0.13050726973870194,0.027475214681831988,0.09049570636336024,0.5 -794,my_land,urban,0.0,0.016000000000000007,0.002,0.0,2010-04-04,0.0,0.0,1.2592592592592593e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -795,my_land,rural,15.644190821688627,0.1,0.02,20.0,2010-04-04,0.0,0.0,0.0013585551685988044,0.0,0.0,0.0,0.0,0.0,9.492219172058242,0.0,0.0,0.0,0.0,0.0,0.0007912245702453736,-0.09582449140490748,0.5 -796,my_land,urban,0.0,0.0,0.0,0.0,2010-04-05,0.0,0.0,2.2592592592592592e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -797,my_land,rural,15.544190821688627,0.1,0.0,20.0,2010-04-05,0.0,0.0,0.0013685551685988044,0.0,0.0,0.0,0.0,0.0,9.48920596825728,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -798,my_land,urban,0.0,0.004,0.004,0.0,2010-04-06,0.0,0.0,3.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -799,my_land,rural,15.482822645210048,0.1,0.04,20.0,2010-04-06,0.0,0.0,0.0013785551685988045,0.0,0.0,0.0,0.0,0.0,9.48615074603216,0.0,0.0,0.0,0.0,0.0,0.0013681764785794563,-0.08736352957158912,0.5 -800,my_land,urban,0.0,0.001,0.001,0.0,2010-04-07,0.0,0.0,4.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -801,my_land,rural,15.392503754773587,0.1,0.01,20.0,2010-04-07,0.0,0.0,0.0013885551685988045,0.0,0.0,0.0,0.0,0.0,9.37059027150402,0.0,0.0,0.0,0.0,0.0,0.00031889043646081227,-0.09637780872921624,0.5 -802,my_land,urban,0.0,0.0,0.0,0.0,2010-04-08,0.0,0.0,5.2592592592592585e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -803,my_land,rural,15.292503754773588,0.1,0.0,20.0,2010-04-08,0.0,0.0,0.0013985551685988045,0.0,0.0,0.0,0.0,0.0,9.240966641188002,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -804,my_land,urban,0.0,0.0,0.0,0.0,2010-04-09,0.0,0.0,6.259259259259258e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -805,my_land,rural,15.192503754773588,0.1,0.0,20.0,2010-04-09,0.0,0.0,0.0014085551685988045,0.0,0.0,0.0,0.0,0.0,9.109585115648501,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -806,my_land,urban,0.0,0.0,0.0,0.0,2010-04-10,0.0,0.0,7.259259259259258e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -807,my_land,rural,15.092503754773588,0.1,0.0,20.0,2010-04-10,0.0,0.0,0.0014185551685988046,0.0,0.0,0.0,0.0,0.0,8.977983853956063,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -808,my_land,urban,0.0,0.0,0.0,0.0,2010-04-11,0.0,0.0,8.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -809,my_land,rural,14.992503754773589,0.1,0.0,20.0,2010-04-11,0.0,0.0,0.0014285551685988046,0.0,0.0,0.0,0.0,0.0,8.846355124494508,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -810,my_land,urban,0.0,0.0,0.0,0.0,2010-04-12,0.0,0.0,9.259259259259259e-06,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -811,my_land,rural,14.892503754773589,0.1,0.0,20.0,2010-04-12,0.0,0.0,0.0014385551685988046,0.0,0.0,0.0,0.0,0.0,8.714722962311814,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -812,my_land,urban,0.0,0.0,0.0,0.0,2010-04-13,0.0,0.0,1.025925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -813,my_land,rural,14.79250375477359,0.1,0.0,20.0,2010-04-13,0.0,0.0,0.0014485551685988046,0.0,0.0,0.0,0.0,0.0,8.583090370288977,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -814,my_land,urban,0.0,0.0,0.0,0.0,2010-04-14,0.0,0.0,1.125925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -815,my_land,rural,14.69250375477359,0.1,0.0,20.0,2010-04-14,0.0,0.0,0.0014585551685988047,0.0,0.0,0.0,0.0,0.0,8.808042546286122,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -816,my_land,urban,0.0,0.0,0.0,0.0,2010-04-15,0.0,0.0,1.2259259259259261e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -817,my_land,rural,14.59250375477359,0.1,0.0,20.0,2010-04-15,0.0,0.0,0.0014685551685988047,0.0,0.0,0.0,0.0,0.0,9.077567818285766,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -818,my_land,urban,0.0,0.0,0.0,0.0,2010-04-16,0.0,0.0,1.3259259259259261e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -819,my_land,rural,14.49250375477359,0.1,0.0,20.0,2010-04-16,0.0,0.0,0.0014785551685988047,0.0,0.0,0.0,0.0,0.0,9.352664727285722,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -820,my_land,urban,0.0,0.0,0.0,0.0,2010-04-17,0.0,0.0,1.4259259259259262e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -821,my_land,rural,14.39250375477359,0.1,0.0,20.0,2010-04-17,0.0,0.0,0.0014885551685988048,0.0,0.0,0.0,0.0,0.0,9.628458090910716,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -822,my_land,urban,0.0,0.0,0.0,0.0,2010-04-18,0.0,0.0,1.525925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -823,my_land,rural,14.292503754773591,0.1,0.0,20.0,2010-04-18,0.0,0.0,0.0014985551685988048,0.0,0.0,0.0,0.0,0.0,9.90433851136384,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -824,my_land,urban,0.0,0.0,0.0,0.0,2010-04-19,0.0,0.0,1.625925925925926e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -825,my_land,rural,14.192503754773591,0.1,0.0,20.0,2010-04-19,0.0,0.0,0.0015085551685988048,0.0,0.0,0.0,0.0,0.0,10.180229813920478,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -826,my_land,urban,0.0,0.0,0.0,0.0,2010-04-20,0.0,0.0,1.7259259259259262e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -827,my_land,rural,14.092503754773592,0.1,0.0,20.0,2010-04-20,0.0,0.0,0.0015185551685988048,0.0,0.0,0.0,0.0,0.0,10.45612247674006,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -828,my_land,urban,0.0,0.0,0.0,0.0,2010-04-21,0.0,0.0,1.8259259259259263e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -829,my_land,rural,13.992503754773592,0.1,0.0,20.0,2010-04-21,0.0,0.0,0.0015285551685988049,0.0,0.0,0.0,0.0,0.0,10.73201530959251,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -830,my_land,urban,0.0,0.0,0.0,0.0,2010-04-22,0.0,0.0,1.9259259259259263e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -831,my_land,rural,13.892503754773593,0.1,0.0,20.0,2010-04-22,0.0,0.0,0.0015385551685988049,0.0,0.0,0.0,0.0,0.0,11.138376911199066,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -832,my_land,urban,0.0,0.0,0.0,0.0,2010-04-23,0.0,0.0,2.0259259259259264e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -833,my_land,rural,13.792503754773593,0.1,0.0,20.0,2010-04-23,0.0,0.0,0.001548555168598805,0.0,0.0,0.0,0.0,0.0,11.561047116399884,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -834,my_land,urban,0.0,0.016,0.016,0.0,2010-04-24,0.0,0.0,2.1259259259259265e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -835,my_land,rural,13.852503754773593,0.1,0.16,20.0,2010-04-24,0.0,0.0,0.001558555168598805,0.0,0.0,0.0,0.0,0.0,11.986203346322906,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 -836,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-04-25,0.0,0.0,2.2259259259259265e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -837,my_land,rural,13.812503754773594,0.1,0.06,20.0,2010-04-25,0.0,0.0,0.001568555168598805,0.0,0.0,0.0,0.0,0.0,12.410775415790363,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -838,my_land,urban,0.0,0.0,0.0,0.0,2010-04-26,0.0,0.0,2.3259259259259266e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -839,my_land,rural,13.712503754773595,0.1,0.0,20.0,2010-04-26,0.0,0.0,0.001578555168598805,0.0,0.0,0.0,0.0,0.0,12.835721929473797,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -840,my_land,urban,0.0,0.0,0.0,0.0,2010-04-27,0.0,0.0,2.4259259259259266e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -841,my_land,rural,13.612503754773595,0.1,0.0,20.0,2010-04-27,0.0,0.0,0.001588555168598805,0.0,0.0,0.0,0.0,0.0,13.260715241184226,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -842,my_land,urban,0.0,0.0,0.0,0.0,2010-04-28,0.0,0.0,2.5259259259259267e-05,0.0,0.0,0.0,0.0,0.0,9.410714285999997,0.0,0.0,0.0,,,,, -843,my_land,rural,13.512503754773595,0.1,0.0,20.0,2010-04-28,0.0,0.0,0.001598555168598805,0.0,0.0,0.0,0.0,0.0,12.946875122648029,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -844,my_land,urban,0.0,0.02,0.041,0.0,2010-04-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0,,,,, -845,my_land,rural,13.822503754773596,0.1,0.41000000000000003,20.0,2010-04-29,0.0,0.0,0.001608555168598805,0.0,0.0,0.0,0.0,0.0,12.540539395990955,0.0,0.0,0.0,0.0,0.0,0.0,0.31000000000000005,0.5 -846,my_land,urban,0.0,0.013,0.013,0.0,2010-04-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0,,,,, -847,my_land,rural,13.852503754773595,0.1,0.13,20.0,2010-04-30,0.0,0.0,0.001618555168598805,0.0,0.0,0.0,0.0,0.0,12.122888457831346,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -848,my_land,urban,0.13899999999999998,0.02,0.199,0.0,2010-05-01,0.0,0.0,1.553072625698324e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -849,my_land,rural,15.742503754773596,0.1,1.9900000000000002,20.0,2010-05-01,0.0,0.0,0.0016285551685988051,0.0,0.0,0.0,0.0,0.0,11.700676977988204,0.0,0.0,0.0,0.0,0.0,0.0,1.8900000000000001,0.5 -850,my_land,urban,0.08199999999999999,0.02,0.0029999999999999996,0.0,2010-05-02,0.0,0.0,1.7159996336660864e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -851,my_land,rural,15.671304316690522,0.1,0.03,20.0,2010-05-02,0.0,0.0,0.0016385551685988051,0.0,0.0,0.0,0.0,0.0,11.284013194748526,0.0,0.0,0.0,0.0,0.0,0.00119943808307371,-0.0939887616614742,0.5 -852,my_land,urban,0.024999999999999988,0.02,0.0029999999999999996,0.0,2010-05-03,0.0,0.0,1.044615243717725e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -853,my_land,rural,15.600159098844511,0.1,0.03,20.0,2010-05-03,0.0,0.0,0.0016485551685988052,0.0,0.0,0.0,0.0,0.0,10.864965931843567,0.0,0.0,0.0,0.0,0.0,0.0011452178460108352,-0.09290435692021672,0.5 -854,my_land,urban,0.0,0.02,0.0,0.0,2010-05-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -855,my_land,rural,15.500159098844511,0.1,0.0,20.0,2010-05-04,0.0,0.0,0.0016585551685988052,0.0,0.0,0.0,0.0,0.0,10.445620741480447,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -856,my_land,urban,0.0,0.004,0.004,0.0,2010-05-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -857,my_land,rural,15.438856209211325,0.1,0.04,20.0,2010-05-05,0.0,0.0,0.0016685551685988052,0.0,0.0,0.0,0.0,0.0,10.468202592685056,0.0,0.0,0.0,0.0,0.0,0.0013028896331860253,-0.0860577926637205,0.5 -858,my_land,urban,0.0,0.0,0.0,0.0,2010-05-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -859,my_land,rural,15.338856209211325,0.1,0.0,20.0,2010-05-06,0.0,0.0,0.0016785551685988053,0.0,0.0,0.0,0.0,0.0,10.546025324085631,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -860,my_land,urban,0.0,0.01,0.01,0.0,2010-05-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -861,my_land,rural,15.336334743703574,0.1,0.1,20.0,2010-05-07,0.0,0.0,0.0016885551685988053,0.0,0.0,0.0,0.0,0.0,10.630753165510706,0.0,0.0,0.0,0.0,0.0,0.0025214655077515215,-0.050429310155030424,0.5 -862,my_land,urban,0.0,0.007,0.007,0.0,2010-05-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -863,my_land,rural,15.304579126144239,0.1,0.06999999999999999,20.0,2010-05-08,0.0,0.0,0.0016985551685988053,0.0,0.0,0.0,0.0,0.0,10.71634414568884,0.0,0.0,0.0,0.0,0.0,0.0017556175593354839,-0.06511235118670967,0.5 -864,my_land,urban,0.0,0.0,0.0,0.0,2010-05-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -865,my_land,rural,15.204579126144239,0.1,0.0,20.0,2010-05-09,0.0,0.0,0.0017085551685988053,0.0,0.0,0.0,0.0,0.0,10.802043018211107,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -866,my_land,urban,0.0,0.0,0.0,0.0,2010-05-10,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -867,my_land,rural,15.10457912614424,0.1,0.0,20.0,2010-05-10,0.0,0.0,0.0017185551685988054,0.0,0.0,0.0,0.0,0.0,10.88775537727639,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -868,my_land,urban,0.0,0.0,0.0,0.0,2010-05-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -869,my_land,rural,15.00457912614424,0.1,0.0,20.0,2010-05-11,0.0,0.0,0.0017285551685988054,0.0,0.0,0.0,0.0,0.0,10.973469422159551,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -870,my_land,urban,0.0,0.008,0.008,0.0,2010-05-12,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -871,my_land,rural,14.984542643739424,0.1,0.08,20.0,2010-05-12,0.0,0.0,0.0017385551685988054,0.0,0.0,0.0,0.0,0.0,11.147576532769945,0.0,0.0,0.0,0.0,0.0,3.6482404815711525e-05,-0.02072964809631423,0.5 -872,my_land,urban,0.0,0.001,0.001,0.0,2010-05-13,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -873,my_land,rural,14.894542643739424,0.1,0.01,20.0,2010-05-13,0.0,0.0,0.0017485551685988054,0.0,0.0,0.0,0.0,0.0,11.332732784096246,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -874,my_land,urban,0.0,0.0,0.0,0.0,2010-05-14,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -875,my_land,rural,14.794542643739424,0.1,0.0,20.0,2010-05-14,0.0,0.0,0.0017585551685988055,0.0,0.0,0.0,0.0,0.0,11.519270170512032,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -876,my_land,urban,0.0,0.002,0.002,0.0,2010-05-15,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0,,,,, -877,my_land,rural,14.714542643739424,0.1,0.02,20.0,2010-05-15,0.0,0.0,0.0017685551685988055,0.0,0.0,0.0,0.0,0.0,11.705980198814004,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -878,my_land,urban,0.0,0.02,0.032,0.0,2010-05-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -879,my_land,rural,14.934542643739425,0.1,0.32,20.0,2010-05-16,0.0,0.0,0.0017785551685988055,0.0,0.0,0.0,0.0,0.0,11.893693819449977,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.5 -880,my_land,urban,0.0,0.0,0.0,0.0,2010-05-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -881,my_land,rural,14.834542643739425,0.1,0.0,20.0,2010-05-17,0.0,0.0,0.0017885551685988055,0.0,0.0,0.0,0.0,0.0,12.079568872431247,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -882,my_land,urban,0.0,0.0,0.0,0.0,2010-05-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -883,my_land,rural,14.734542643739426,0.1,0.0,20.0,2010-05-18,0.0,0.0,0.0017985551685988056,0.0,0.0,0.0,0.0,0.0,12.266196109053908,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -884,my_land,urban,0.0,0.0,0.0,0.0,2010-05-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -885,my_land,rural,14.634542643739426,0.1,0.0,20.0,2010-05-19,0.0,0.0,0.0018085551685988056,0.0,0.0,0.0,0.0,0.0,12.74655576363174,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -886,my_land,urban,0.0,0.0,0.0,0.0,2010-05-20,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -887,my_land,rural,14.534542643739426,0.1,0.0,20.0,2010-05-20,0.0,0.0,0.0018185551685988056,0.0,0.0,0.0,0.0,0.0,13.263631970453968,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -888,my_land,urban,0.0,0.0,0.0,0.0,2010-05-21,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -889,my_land,rural,14.434542643739427,0.1,0.0,20.0,2010-05-21,0.0,0.0,0.0018285551685988056,0.0,0.0,0.0,0.0,0.0,13.785297746306748,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -890,my_land,urban,0.0,0.0,0.0,0.0,2010-05-22,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -891,my_land,rural,14.334542643739427,0.1,0.0,20.0,2010-05-22,0.0,0.0,0.0018385551685988057,0.0,0.0,0.0,0.0,0.0,14.307537218288346,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -892,my_land,urban,0.0,0.0,0.0,0.0,2010-05-23,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -893,my_land,rural,14.234542643739427,0.1,0.0,20.0,2010-05-23,0.0,0.0,0.0018485551685988057,0.0,0.0,0.0,0.0,0.0,14.829848402286045,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -894,my_land,urban,0.0,0.0,0.0,0.0,2010-05-24,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -895,my_land,rural,14.134542643739428,0.1,0.0,20.0,2010-05-24,0.0,0.0,0.0018585551685988057,0.0,0.0,0.0,0.0,0.0,15.352168550285757,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -896,my_land,urban,0.0,0.0,0.0,0.0,2010-05-25,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0,,,,, -897,my_land,rural,14.034542643739428,0.1,0.0,20.0,2010-05-25,0.0,0.0,0.0018685551685988057,0.0,0.0,0.0,0.0,0.0,15.87448981878572,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -898,my_land,urban,0.0,0.02,0.049,0.0,2010-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0,,,,, -899,my_land,rural,14.424542643739429,0.1,0.49,20.0,2010-05-26,0.0,0.0,0.0018785551685988058,0.0,0.0,0.0,0.0,0.0,16.402473876303652,0.0,0.0,0.0,0.0,0.0,0.0,0.38999999999999996,0.5 -900,my_land,urban,0.0,0.0,0.0,0.0,2010-05-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0,,,,, -901,my_land,rural,14.324542643739429,0.1,0.0,20.0,2010-05-27,0.0,0.0,0.0018885551685988058,0.0,0.0,0.0,0.0,0.0,16.245844952037956,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -902,my_land,urban,0.0,0.005,0.005,0.0,2010-05-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0,,,,, -903,my_land,rural,14.274542643739428,0.1,0.05,20.0,2010-05-28,0.0,0.0,0.0018985551685988058,0.0,0.0,0.0,0.0,0.0,16.009302046504743,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -904,my_land,urban,0.0049999999999999975,0.02,0.065,0.0,2010-05-29,0.0,0.0,3.3333333333333325e-07,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0,,,,, -905,my_land,rural,14.824542643739429,0.1,0.65,20.0,2010-05-29,0.0,0.0,0.0019085551685988059,0.0,0.0,0.0,0.0,0.0,15.765890253800666,0.0,0.0,0.0,0.0,0.0,0.0,0.5499999999999999,0.5 -906,my_land,urban,0.0,0.0049999999999999975,0.0,0.0,2010-05-30,0.0,0.0,1.3333333333333332e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0,,,,, -907,my_land,rural,14.72454264373943,0.1,0.0,20.0,2010-05-30,0.0,0.0,0.0019185551685988059,0.0,0.0,0.0,0.0,0.0,15.515379136725084,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -908,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2010-05-31,0.0,0.0,2.333333333333333e-06,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0,,,,, -909,my_land,rural,14.79454264373943,0.1,0.16999999999999998,20.0,2010-05-31,0.0,0.0,0.001928555168598806,0.0,0.0,0.0,0.0,0.0,15.267448841688974,0.0,0.0,0.0,0.0,0.0,0.0,0.06999999999999999,0.5 -910,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2010-06-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, -911,my_land,rural,14.96454264373943,0.1,0.27,20.0,2010-06-01,0.0,0.0,0.001938555168598806,0.0,0.0,0.0,0.0,0.0,15.019921908833636,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.5 -912,my_land,urban,0.0,0.0,0.0,0.0,2010-06-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, -913,my_land,rural,14.86454264373943,0.1,0.0,20.0,2010-06-02,0.0,0.0,0.001948555168598806,0.0,0.0,0.0,0.0,0.0,14.771240238604205,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -914,my_land,urban,0.0,0.0,0.0,0.0,2010-06-03,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, -915,my_land,rural,14.76454264373943,0.1,0.0,20.0,2010-06-03,0.0,0.0,0.0019585551685988058,0.0,0.0,0.0,0.0,0.0,14.880780029825528,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -916,my_land,urban,0.0,0.0,0.0,0.0,2010-06-04,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, -917,my_land,rural,14.66454264373943,0.1,0.0,20.0,2010-06-04,0.0,0.0,0.001968555168598806,0.0,0.0,0.0,0.0,0.0,15.03509750372819,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -918,my_land,urban,0.0,0.0,0.0,0.0,2010-06-05,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0,,,,, -919,my_land,rural,14.564542643739431,0.1,0.0,20.0,2010-06-05,0.0,0.0,0.001978555168598806,0.0,0.0,0.0,0.0,0.0,15.195012187966023,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -920,my_land,urban,0.0,0.02,0.023,0.0,2010-06-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0,,,,, -921,my_land,rural,14.694542643739432,0.1,0.22999999999999998,20.0,2010-06-06,0.0,0.0,0.001988555168598806,0.0,0.0,0.0,0.0,0.0,15.356820830958805,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 -922,my_land,urban,0.069,0.02,0.129,0.0,2010-06-07,0.0,0.0,6.330275229357798e-07,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0,,,,, -923,my_land,rural,15.884542643739431,0.1,1.29,20.0,2010-06-07,0.0,0.0,0.001998555168598806,0.0,0.0,0.0,0.0,0.0,15.526831680791272,0.0,0.0,0.0,0.0,0.0,0.0,1.1900000000000002,0.5 -924,my_land,urban,0.088,0.02,0.07900000000000001,0.0,2010-06-08,0.0,0.0,1.1227064220183485e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, -925,my_land,rural,15.89729045180037,0.1,0.79,20.0,2010-06-08,0.0,0.0,0.0019304275784169992,0.0,0.0,0.0,0.0,0.0,15.683923204595112,0.0,0.0,0.0,0.482542186756583,0.16084739558552766,0.0338626095969532,0.012747808060936151,0.5 -926,my_land,urban,0.03999999999999999,0.02,0.011999999999999999,0.0,2010-06-09,0.0,0.0,1.061353211009174e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, -927,my_land,rural,15.813893541872048,0.1,0.12,20.0,2010-06-09,0.0,0.0,0.0019284491306986542,0.0,0.0,0.0,0.0,0.0,15.593622439613187,0.0,0.0,0.0,0.07367029832392906,0.024556766107976354,0.005169845496416075,-0.08339690992832151,0.5 -928,my_land,urban,0.0,0.02,0.0,0.0,2010-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, -929,my_land,rural,15.713893541872048,0.1,0.0,20.0,2010-06-10,0.0,0.0,0.0019384491306986542,0.0,0.0,0.0,0.0,0.0,15.477774232451647,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -930,my_land,urban,0.0,0.0,0.0,0.0,2010-06-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, -931,my_land,rural,15.613893541872049,0.1,0.0,20.0,2010-06-11,0.0,0.0,0.0019484491306986543,0.0,0.0,0.0,0.0,0.0,15.358828924056457,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -932,my_land,urban,0.0,0.002,0.002,0.0,2010-06-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0,,,,, -933,my_land,rural,15.533163372747156,0.1,0.02,20.0,2010-06-12,0.0,0.0,0.0019584491306986543,0.0,0.0,0.0,0.0,0.0,15.239496470507058,0.0,0.0,0.0,0.0,0.0,0.0007301691248930458,-0.09460338249786092,0.5 -934,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2010-06-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -935,my_land,rural,15.598310422197667,0.1,0.51,20.0,2010-06-13,0.0,0.0,0.0019279563876216156,0.0,0.0,0.0,0.0,0.0,15.122316902713921,0.0,0.0,0.0,0.24570772726651172,0.08190257575550391,0.01724264752747451,0.06514704945050986,0.5 -936,my_land,urban,0.0,0.001,0.001,0.0,2010-06-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -937,my_land,rural,15.507950208325441,0.1,0.01,20.0,2010-06-14,0.0,0.0,0.0019379563876216156,0.0,0.0,0.0,0.0,0.0,15.001003895339242,0.0,0.0,0.0,0.0,0.0,0.0003602138722245492,-0.09720427744449098,0.5 -938,my_land,urban,0.0,0.002,0.002,0.0,2010-06-15,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -939,my_land,rural,15.427292775362783,0.1,0.02,20.0,2010-06-15,0.0,0.0,0.0019479563876216156,0.0,0.0,0.0,0.0,0.0,14.881375486917406,0.0,0.0,0.0,0.0,0.0,0.0006574329626589695,-0.09314865925317939,0.5 -940,my_land,urban,0.0,0.0,0.0,0.0,2010-06-16,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -941,my_land,rural,15.327292775362784,0.1,0.0,20.0,2010-06-16,0.0,0.0,0.0019579563876216156,0.0,0.0,0.0,0.0,0.0,15.201243363364677,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -942,my_land,urban,0.0,0.0,0.0,0.0,2010-06-17,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -943,my_land,rural,15.227292775362784,0.1,0.0,20.0,2010-06-17,0.0,0.0,0.0019679563876216157,0.0,0.0,0.0,0.0,0.0,15.576048275420586,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -944,my_land,urban,0.0,0.007,0.007,0.0,2010-06-18,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -945,my_land,rural,15.195990715908907,0.1,0.06999999999999999,20.0,2010-06-18,0.0,0.0,0.0019779563876216157,0.0,0.0,0.0,0.0,0.0,15.957720316927574,0.0,0.0,0.0,0.0,0.0,0.0013020594538765385,-0.05604118907753077,0.5 -946,my_land,urban,0.0,0.0,0.0,0.0,2010-06-19,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -947,my_land,rural,15.095990715908908,0.1,0.0,20.0,2010-06-19,0.0,0.0,0.0019879563876216157,0.0,0.0,0.0,0.0,0.0,16.340250757115946,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -948,my_land,urban,0.0,0.0,0.0,0.0,2010-06-20,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -949,my_land,rural,14.995990715908908,0.1,0.0,20.0,2010-06-20,0.0,0.0,0.0019979563876216157,0.0,0.0,0.0,0.0,0.0,16.722888489639494,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -950,my_land,urban,0.0,0.0,0.0,0.0,2010-06-21,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -951,my_land,rural,14.895990715908908,0.1,0.0,20.0,2010-06-21,0.0,0.0,0.0020079563876216158,0.0,0.0,0.0,0.0,0.0,17.105539633704936,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -952,my_land,urban,0.0,0.0,0.0,0.0,2010-06-22,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -953,my_land,rural,14.795990715908909,0.1,0.0,20.0,2010-06-22,0.0,0.0,0.002017956387621616,0.0,0.0,0.0,0.0,0.0,17.488192454213117,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -954,my_land,urban,0.0,0.0,0.0,0.0,2010-06-23,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -955,my_land,rural,14.69599071590891,0.1,0.0,20.0,2010-06-23,0.0,0.0,0.002027956387621616,0.0,0.0,0.0,0.0,0.0,17.720845484276637,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -956,my_land,urban,0.0,0.0,0.0,0.0,2010-06-24,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -957,my_land,rural,14.59599071590891,0.1,0.0,20.0,2010-06-24,0.0,0.0,0.002037956387621616,0.0,0.0,0.0,0.0,0.0,17.934748540534578,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -958,my_land,urban,0.0,0.0,0.0,0.0,2010-06-25,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -959,my_land,rural,14.49599071590891,0.1,0.0,20.0,2010-06-25,0.0,0.0,0.002047956387621616,0.0,0.0,0.0,0.0,0.0,18.146307850066826,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -960,my_land,urban,0.0,0.0,0.0,0.0,2010-06-26,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -961,my_land,rural,14.39599071590891,0.1,0.0,20.0,2010-06-26,0.0,0.0,0.002057956387621616,0.0,0.0,0.0,0.0,0.0,18.357574198758357,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -962,my_land,urban,0.0,0.0,0.0,0.0,2010-06-27,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -963,my_land,rural,14.29599071590891,0.1,0.0,20.0,2010-06-27,0.0,0.0,0.002067956387621616,0.0,0.0,0.0,0.0,0.0,18.568803919844797,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -964,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-06-28,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -965,my_land,rural,14.22599071590891,0.1,0.03,20.0,2010-06-28,0.0,0.0,0.002077956387621616,0.0,0.0,0.0,0.0,0.0,18.7800290624806,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -966,my_land,urban,0.0,0.001,0.001,0.0,2010-06-29,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -967,my_land,rural,14.13599071590891,0.1,0.01,20.0,2010-06-29,0.0,0.0,0.002087956387621616,0.0,0.0,0.0,0.0,0.0,18.991253632810075,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -968,my_land,urban,0.0,0.0,0.0,0.0,2010-06-30,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -969,my_land,rural,14.03599071590891,0.1,0.0,20.0,2010-06-30,0.0,0.0,0.002097956387621616,0.0,0.0,0.0,0.0,0.0,18.795335276601257,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -970,my_land,urban,0.0,0.005,0.005,0.0,2010-07-01,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -971,my_land,rural,13.98599071590891,0.1,0.05,20.0,2010-07-01,0.0,0.0,0.002107956387621616,0.0,0.0,0.0,0.0,0.0,18.548524054575157,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -972,my_land,urban,0.0,0.001,0.001,0.0,2010-07-02,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -973,my_land,rural,13.89599071590891,0.1,0.01,20.0,2010-07-02,0.0,0.0,0.002117956387621616,0.0,0.0,0.0,0.0,0.0,18.295351224321895,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -974,my_land,urban,0.0,0.0,0.0,0.0,2010-07-03,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -975,my_land,rural,13.79599071590891,0.1,0.0,20.0,2010-07-03,0.0,0.0,0.002127956387621616,0.0,0.0,0.0,0.0,0.0,18.041383185540237,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -976,my_land,urban,0.0,0.0,0.0,0.0,2010-07-04,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -977,my_land,rural,13.695990715908911,0.1,0.0,20.0,2010-07-04,0.0,0.0,0.002137956387621616,0.0,0.0,0.0,0.0,0.0,17.78731575319253,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -978,my_land,urban,0.0,0.0,0.0,0.0,2010-07-05,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -979,my_land,rural,13.595990715908911,0.1,0.0,20.0,2010-07-05,0.0,0.0,0.002147956387621616,0.0,0.0,0.0,0.0,0.0,17.533235896649067,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -980,my_land,urban,0.0,0.0,0.0,0.0,2010-07-06,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -981,my_land,rural,13.495990715908912,0.1,0.0,20.0,2010-07-06,0.0,0.0,0.002157956387621616,0.0,0.0,0.0,0.0,0.0,17.279154487081133,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -982,my_land,urban,0.0,0.0,0.0,0.0,2010-07-07,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -983,my_land,rural,13.395990715908912,0.1,0.0,20.0,2010-07-07,0.0,0.0,0.002167956387621616,0.0,0.0,0.0,0.0,0.0,17.23668002838514,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -984,my_land,urban,0.0,0.0,0.0,0.0,2010-07-08,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -985,my_land,rural,13.295990715908912,0.1,0.0,20.0,2010-07-08,0.0,0.0,0.0021779563876216162,0.0,0.0,0.0,0.0,0.0,17.22065643104814,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -986,my_land,urban,0.0,0.0,0.0,0.0,2010-07-09,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -987,my_land,rural,13.195990715908913,0.1,0.0,20.0,2010-07-09,0.0,0.0,0.0021879563876216162,0.0,0.0,0.0,0.0,0.0,17.207939198881018,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -988,my_land,urban,0.0,0.002,0.002,0.0,2010-07-10,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -989,my_land,rural,13.115990715908913,0.1,0.02,20.0,2010-07-10,0.0,0.0,0.0021979563876216163,0.0,0.0,0.0,0.0,0.0,17.19563525486013,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -990,my_land,urban,0.0,0.002,0.002,0.0,2010-07-11,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -991,my_land,rural,13.035990715908913,0.1,0.02,20.0,2010-07-11,0.0,0.0,0.0022079563876216163,0.0,0.0,0.0,0.0,0.0,17.183382979357518,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -992,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-07-12,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0,,,,, -993,my_land,rural,12.995990715908913,0.1,0.06,20.0,2010-07-12,0.0,0.0,0.0022179563876216163,0.0,0.0,0.0,0.0,0.0,17.17113715491969,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -994,my_land,urban,0.0,0.02,0.026,0.0,2010-07-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0,,,,, -995,my_land,rural,13.155990715908914,0.1,0.26,20.0,2010-07-13,0.0,0.0,0.0022279563876216163,0.0,0.0,0.0,0.0,0.0,17.16068427522084,0.0,0.0,0.0,0.0,0.0,0.0,0.15999999999999998,0.5 -996,my_land,urban,0.0,0.02,0.038,0.0,2010-07-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0,,,,, -997,my_land,rural,13.435990715908913,0.1,0.38,20.0,2010-07-14,0.0,0.0,0.0022379563876216164,0.0,0.0,0.0,0.0,0.0,17.351970727340774,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 -998,my_land,urban,0.006999999999999999,0.02,0.067,0.0,2010-07-15,0.0,0.0,1.4893617021276598e-07,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0,,,,, -999,my_land,rural,14.005990715908913,0.1,0.67,20.0,2010-07-15,0.0,0.0,0.0022479563876216164,0.0,0.0,0.0,0.0,0.0,17.570409369017607,0.0,0.0,0.0,0.0,0.0,0.0,0.5700000000000001,0.5 -1000,my_land,urban,0.0,0.02,0.035,0.0,2010-07-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, -1001,my_land,rural,14.255990715908913,0.1,0.35000000000000003,20.0,2010-07-16,0.0,0.0,0.0022579563876216164,0.0,0.0,0.0,0.0,0.0,17.784056527721038,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.5 -1002,my_land,urban,0.0,0.0,0.0,0.0,2010-07-17,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, -1003,my_land,rural,14.155990715908914,0.1,0.0,20.0,2010-07-17,0.0,0.0,0.0022679563876216165,0.0,0.0,0.0,0.0,0.0,17.99800706846513,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1004,my_land,urban,0.0,0.0,0.0,0.0,2010-07-18,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, -1005,my_land,rural,14.055990715908914,0.1,0.0,20.0,2010-07-18,0.0,0.0,0.0022779563876216165,0.0,0.0,0.0,0.0,0.0,18.21537588105814,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1006,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-07-19,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, -1007,my_land,rural,13.985990715908914,0.1,0.03,20.0,2010-07-19,0.0,0.0,0.0022879563876216165,0.0,0.0,0.0,0.0,0.0,18.43317198513227,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1008,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-07-20,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, -1009,my_land,rural,13.945990715908914,0.1,0.06,20.0,2010-07-20,0.0,0.0,0.0022979563876216165,0.0,0.0,0.0,0.0,0.0,18.507271498141538,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -1010,my_land,urban,0.0,0.001,0.001,0.0,2010-07-21,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0,,,,, -1011,my_land,rural,13.855990715908915,0.1,0.01,20.0,2010-07-21,0.0,0.0,0.0023079563876216166,0.0,0.0,0.0,0.0,0.0,18.563408937267695,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1012,my_land,urban,0.0010000000000000009,0.02,0.061000000000000006,0.0,2010-07-22,0.0,0.0,1.4634146341463442e-07,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1013,my_land,rural,14.365990715908914,0.1,0.61,20.0,2010-07-22,0.0,0.0,0.0023179563876216166,0.0,0.0,0.0,0.0,0.0,18.62395342935461,0.0,0.0,0.0,0.0,0.0,0.0,0.51,0.5 -1014,my_land,urban,0.0,0.0010000000000000009,0.0,0.0,2010-07-23,0.0,0.0,1.1463414634146344e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1015,my_land,rural,14.265990715908915,0.1,0.0,20.0,2010-07-23,0.0,0.0,0.0023279563876216166,0.0,0.0,0.0,0.0,0.0,18.671744178669325,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1016,my_land,urban,0.0,0.0,0.0,0.0,2010-07-24,0.0,0.0,2.1463414634146343e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1017,my_land,rural,14.165990715908915,0.1,0.0,20.0,2010-07-24,0.0,0.0,0.0023379563876216166,0.0,0.0,0.0,0.0,0.0,18.724593022333664,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1018,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2010-07-25,0.0,0.0,3.1463414634146345e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1019,my_land,rural,14.175990715908915,0.1,0.11,20.0,2010-07-25,0.0,0.0,0.0023479563876216167,0.0,0.0,0.0,0.0,0.0,18.77820863399733,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 -1020,my_land,urban,0.0,0.002,0.002,0.0,2010-07-26,0.0,0.0,4.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1021,my_land,rural,14.095990715908915,0.1,0.02,20.0,2010-07-26,0.0,0.0,0.0023579563876216167,0.0,0.0,0.0,0.0,0.0,18.831651079249667,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1022,my_land,urban,0.0,0.007,0.007,0.0,2010-07-27,0.0,0.0,5.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1023,my_land,rural,14.065990715908915,0.1,0.06999999999999999,20.0,2010-07-27,0.0,0.0,0.0023679563876216167,0.0,0.0,0.0,0.0,0.0,18.88520638490621,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 -1024,my_land,urban,0.0,0.0,0.0,0.0,2010-07-28,0.0,0.0,6.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1025,my_land,rural,13.965990715908916,0.1,0.0,20.0,2010-07-28,0.0,0.0,0.0023779563876216167,0.0,0.0,0.0,0.0,0.0,18.822257943113275,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1026,my_land,urban,0.0,0.0,0.0,0.0,2010-07-29,0.0,0.0,7.1463414634146335e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1027,my_land,rural,13.865990715908916,0.1,0.0,20.0,2010-07-29,0.0,0.0,0.0023879563876216168,0.0,0.0,0.0,0.0,0.0,18.74474652538916,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1028,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2010-07-30,0.0,0.0,8.146341463414633e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1029,my_land,rural,13.875990715908916,0.1,0.11,20.0,2010-07-30,0.0,0.0,0.002397956387621617,0.0,0.0,0.0,0.0,0.0,18.665536507636478,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 -1030,my_land,urban,0.0,0.0,0.0,0.0,2010-07-31,0.0,0.0,9.146341463414634e-06,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1031,my_land,rural,13.775990715908916,0.1,0.0,20.0,2010-07-31,0.0,0.0,0.002407956387621617,0.0,0.0,0.0,0.0,0.0,18.58587063595456,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1032,my_land,urban,0.0,0.0,0.0,0.0,2010-08-01,0.0,0.0,1.0146341463414634e-05,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1033,my_land,rural,13.675990715908917,0.1,0.0,20.0,2010-08-01,0.0,0.0,0.002417956387621617,0.0,0.0,0.0,0.0,0.0,18.50626954699432,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1034,my_land,urban,0.0,0.0,0.0,0.0,2010-08-02,0.0,0.0,1.1146341463414635e-05,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1035,my_land,rural,13.575990715908917,0.1,0.0,20.0,2010-08-02,0.0,0.0,0.002427956387621617,0.0,0.0,0.0,0.0,0.0,18.426676548374292,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1036,my_land,urban,0.0,0.004,0.004,0.0,2010-08-03,0.0,0.0,1.2146341463414636e-05,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0,,,,, -1037,my_land,rural,13.515990715908917,0.1,0.04,20.0,2010-08-03,0.0,0.0,0.002437956387621617,0.0,0.0,0.0,0.0,0.0,18.34708456854679,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1038,my_land,urban,0.0,0.02,0.036,0.0,2010-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, -1039,my_land,rural,13.775990715908916,0.1,0.36,20.0,2010-08-04,0.0,0.0,0.002447956387621617,0.0,0.0,0.0,0.0,0.0,18.08512159988485,0.0,0.0,0.0,0.0,0.0,0.0,0.26,0.5 -1040,my_land,urban,0.0,0.0,0.0,0.0,2010-08-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, -1041,my_land,rural,13.675990715908917,0.1,0.0,20.0,2010-08-05,0.0,0.0,0.002457956387621617,0.0,0.0,0.0,0.0,0.0,17.795461627485608,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1042,my_land,urban,0.0,0.009,0.009,0.0,2010-08-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, -1043,my_land,rural,13.665990715908917,0.1,0.09,20.0,2010-08-06,0.0,0.0,0.002467956387621617,0.0,0.0,0.0,0.0,0.0,17.504789848435703,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1044,my_land,urban,0.0,0.015,0.015,0.0,2010-08-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, -1045,my_land,rural,13.715990715908918,0.1,0.15,20.0,2010-08-07,0.0,0.0,0.002477956387621617,0.0,0.0,0.0,0.0,0.0,17.214384862098754,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.5 -1046,my_land,urban,0.0,0.0,0.0,0.0,2010-08-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0,,,,, -1047,my_land,rural,13.615990715908918,0.1,0.0,20.0,2010-08-08,0.0,0.0,0.002487956387621617,0.0,0.0,0.0,0.0,0.0,16.923226680262342,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1048,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2010-08-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0,,,,, -1049,my_land,rural,13.935990715908918,0.1,0.42,20.0,2010-08-09,0.0,0.0,0.002497956387621617,0.0,0.0,0.0,0.0,0.0,16.6345664107018,0.0,0.0,0.0,0.0,0.0,0.0,0.31999999999999995,0.5 -1050,my_land,urban,0.029000000000000012,0.02,0.089,0.0,2010-08-10,0.0,0.0,4.2028985507246384e-07,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0,,,,, -1051,my_land,rural,14.725990715908917,0.1,0.89,20.0,2010-08-10,0.0,0.0,0.002507956387621617,0.0,0.0,0.0,0.0,0.0,16.346618377834012,0.0,0.0,0.0,0.0,0.0,0.0,0.79,0.5 -1052,my_land,urban,0.0,0.02,0.0,0.0,2010-08-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0,,,,, -1053,my_land,rural,14.625990715908918,0.1,0.0,20.0,2010-08-11,0.0,0.0,0.002517956387621617,0.0,0.0,0.0,0.0,0.0,16.236184442229252,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1054,my_land,urban,0.0,0.013,0.013,0.0,2010-08-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0,,,,, -1055,my_land,rural,14.655990715908917,0.1,0.13,20.0,2010-08-12,0.0,0.0,0.002527956387621617,0.0,0.0,0.0,0.0,0.0,16.15297480925511,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -1056,my_land,urban,0.0,0.02,0.057999999999999996,0.0,2010-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0,,,,, -1057,my_land,rural,15.135990715908918,0.1,0.58,20.0,2010-08-13,0.0,0.0,0.002537956387621617,0.0,0.0,0.0,0.0,0.0,16.07633408596703,0.0,0.0,0.0,0.0,0.0,0.0,0.48,0.5 -1058,my_land,urban,0.0,0.02,0.038,0.0,2010-08-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, -1059,my_land,rural,15.324412132407694,0.1,0.38,20.0,2010-08-14,0.0,0.0,0.0025335728043374413,0.0,0.0,0.0,0.0,0.0,15.995485845994407,0.0,0.0,0.0,0.06524974074462095,0.02174991358154032,0.00457892917506112,0.1884214164987776,0.5 -1060,my_land,urban,0.0,0.0,0.0,0.0,2010-08-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, -1061,my_land,rural,15.224412132407695,0.1,0.0,20.0,2010-08-15,0.0,0.0,0.0025435728043374413,0.0,0.0,0.0,0.0,0.0,15.913721448249301,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1062,my_land,urban,0.0,0.007,0.007,0.0,2010-08-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, -1063,my_land,rural,15.193123375060894,0.1,0.06999999999999999,20.0,2010-08-16,0.0,0.0,0.0025535728043374413,0.0,0.0,0.0,0.0,0.0,15.833858036031161,0.0,0.0,0.0,0.0,0.0,0.0012887573468000444,-0.055775146936000886,0.5 -1064,my_land,urban,0.0,0.002,0.002,0.0,2010-08-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, -1065,my_land,rural,15.11279779392864,0.1,0.02,20.0,2010-08-17,0.0,0.0,0.0025635728043374413,0.0,0.0,0.0,0.0,0.0,15.754232254503895,0.0,0.0,0.0,0.0,0.0,0.0003255811322544887,-0.08651162264508977,0.5 -1066,my_land,urban,0.0,0.008,0.008,0.0,2010-08-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0,,,,, -1067,my_land,rural,15.091981720399174,0.1,0.08,20.0,2010-08-18,0.0,0.0,0.0025735728043374414,0.0,0.0,0.0,0.0,0.0,15.797850459312988,0.0,0.0,0.0,0.0,0.0,0.000816073529466313,-0.036321470589326256,0.5 -1068,my_land,urban,0.0,0.02,0.041,0.0,2010-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0,,,,, -1069,my_land,rural,15.332503997552307,0.1,0.41000000000000003,20.0,2010-08-19,0.0,0.0,0.002572498632779573,0.0,0.0,0.0,0.0,0.0,15.859474429273048,0.0,0.0,0.0,0.049502877528393906,0.016500959176131303,0.0034738861423434324,0.2405222771531314,0.5 -1070,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2010-08-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0,,,,, -1071,my_land,rural,15.353104952031218,0.1,0.24,20.0,2010-08-20,0.0,0.0,0.0025635589998039363,0.0,0.0,0.0,0.0,0.0,15.919291185447067,0.0,0.0,0.0,0.08507181993377468,0.028357273311258226,0.005969952276054364,0.020600954478912706,0.5 -1072,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2010-08-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0,,,,, -1073,my_land,rural,15.464639482977937,0.1,0.44,20.0,2010-08-21,0.0,0.0,0.0025379396761067725,0.0,0.0,0.0,0.0,0.0,15.981990197921604,0.0,0.0,0.0,0.16278164670046202,0.054260548900154006,0.011423273452664001,0.11153453094671999,0.5 -1074,my_land,urban,0.23900000000000002,0.02,0.299,0.0,2010-08-22,0.0,0.0,8.566308243727598e-07,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0,,,,, -1075,my_land,rural,16.492068723987334,0.1,2.9899999999999998,20.0,2010-08-22,0.0,0.0,0.002301058021399201,0.0,0.0,0.0,0.0,0.0,16.061189264451972,0.0,0.0,0.0,1.3270816657808033,0.4423605552602678,0.09312853794953006,1.0274292410093988,0.5 -1076,my_land,urban,0.24400000000000002,0.02,0.065,0.0,2010-08-23,0.0,0.0,1.595133525165329e-06,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0,,,,, -1077,my_land,rural,16.410849956023643,0.1,0.65,20.0,2010-08-23,0.0,0.0,0.002229588140865344,0.0,0.0,0.0,0.0,0.0,16.108143633329803,0.0,0.0,0.0,0.44974337217412824,0.1499144573913761,0.03156093839818445,-0.0812187679636889,0.5 -1078,my_land,urban,0.18500000000000003,0.02,0.001,0.0,2010-08-24,0.0,0.0,2.133776454024826e-06,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0,,,,, -1079,my_land,rural,16.320368118961806,0.1,0.01,20.0,2010-08-24,0.0,0.0,0.002239588140865344,0.0,0.0,0.0,0.0,0.0,16.163517954166227,0.0,0.0,0.0,0.0,0.0,0.0004818370618362331,-0.09963674123672467,0.5 -1080,my_land,urban,0.47400000000000003,0.02,0.349,0.0,2010-08-25,0.0,0.0,2.8899028000151115e-06,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0,,,,, -1081,my_land,rural,16.38298630552844,0.1,3.49,20.0,2010-08-25,0.0,0.0,0.0018857436316655645,0.0,0.0,0.0,0.0,0.0,15.922093479762975,0.0,0.0,0.0,2.3707595420712733,0.7902531806904244,0.1663690906716683,0.06261818656663407,0.5 -1082,my_land,urban,0.47100000000000003,0.02,0.057,0.0,2010-08-26,0.0,0.0,3.585409430150915e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1083,my_land,rural,16.305356839104544,0.1,0.5700000000000001,20.0,2010-08-26,0.0,0.0,0.001837127205709609,0.0,0.0,0.0,0.0,0.0,15.617162003971504,0.0,0.0,0.0,0.39018599482702754,0.13006199827567583,0.027381473321194914,-0.07762946642389827,0.5 -1084,my_land,urban,0.41200000000000003,0.02,0.001,0.0,2010-08-27,0.0,0.0,4.179620985004816e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1085,my_land,rural,16.214881104923588,0.1,0.01,20.0,2010-08-27,0.0,0.0,0.0018471272057096091,0.0,0.0,0.0,0.0,0.0,15.314645250496438,0.0,0.0,0.0,0.0,0.0,0.00047573418095675285,-0.09951468361913504,0.5 -1086,my_land,urban,0.35200000000000004,0.02,0.0,0.0,2010-08-28,0.0,0.0,4.651088231432896e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1087,my_land,rural,16.114881104923587,0.1,0.0,20.0,2010-08-28,0.0,0.0,0.0018571272057096092,0.0,0.0,0.0,0.0,0.0,15.014330656312056,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1088,my_land,urban,0.30300000000000005,0.02,0.011000000000000001,0.0,2010-08-29,0.0,0.0,4.992069195697281e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1089,my_land,rural,16.023706533020405,0.1,0.11,20.0,2010-08-29,0.0,0.0,0.0018559942973095972,0.0,0.0,0.0,0.0,0.0,14.714308025464808,0.0,0.0,0.0,0.0720868824810161,0.024028960827005372,0.0050587285951590255,-0.09117457190318051,0.5 -1090,my_land,urban,0.24300000000000002,0.02,0.0,0.0,2010-08-30,0.0,0.0,5.145133620333708e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1091,my_land,rural,15.923706533020406,0.1,0.0,20.0,2010-08-30,0.0,0.0,0.0018659942973095972,0.0,0.0,0.0,0.0,0.0,14.4142885031831,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1092,my_land,urban,0.18300000000000002,0.02,0.0,0.0,2010-08-31,0.0,0.0,5.042867500094478e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1093,my_land,rural,15.823706533020406,0.1,0.0,20.0,2010-08-31,0.0,0.0,0.0018759942973095973,0.0,0.0,0.0,0.0,0.0,14.114286062897888,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1094,my_land,urban,0.12300000000000003,0.02,0.0,0.0,2010-09-01,0.0,0.0,4.559955230132643e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1095,my_land,rural,15.723706533020406,0.1,0.0,20.0,2010-09-01,0.0,0.0,0.0018859942973095973,0.0,0.0,0.0,0.0,0.0,14.145535760362236,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1096,my_land,urban,0.06300000000000003,0.02,0.0,0.0,2010-09-02,0.0,0.0,3.4007493155180243e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1097,my_land,rural,15.623706533020407,0.1,0.0,20.0,2010-09-02,0.0,0.0,0.0018959942973095973,0.0,0.0,0.0,0.0,0.0,14.21819196754528,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1098,my_land,urban,0.0030000000000000235,0.02,0.0,0.0,2010-09-03,0.0,0.0,3.0702902201288783e-07,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1099,my_land,rural,15.523706533020407,0.1,0.0,20.0,2010-09-03,0.0,0.0,0.0019059942973095973,0.0,0.0,0.0,0.0,0.0,14.296023995943163,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1100,my_land,urban,0.0,0.0050000000000000235,0.002,0.0,2010-09-04,0.0,0.0,1.3070290220128878e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1101,my_land,rural,15.443037272066238,0.1,0.02,20.0,2010-09-04,0.0,0.0,0.0019159942973095974,0.0,0.0,0.0,0.0,0.0,14.374503001992897,0.0,0.0,0.0,0.0,0.0,0.0006692609541691597,-0.09338521908338321,0.5 -1102,my_land,urban,0.0,0.019,0.019,0.0,2010-09-05,0.0,0.0,2.3070290220128877e-06,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0,,,,, -1103,my_land,rural,15.41816639553898,0.1,0.19,20.0,2010-09-05,0.0,0.0,0.0019124582217937283,0.0,0.0,0.0,0.0,0.0,14.45362845415143,0.0,0.0,0.0,0.08184549952567267,0.027281833175224226,0.005743543826362995,-0.024870876527259902,0.5 -1104,my_land,urban,0.04599999999999999,0.02,0.106,0.0,2010-09-06,0.0,0.0,1.7688759885185212e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1105,my_land,rural,15.760753701249751,0.1,1.06,20.0,2010-09-06,0.0,0.0,0.0018534802928839458,0.0,0.0,0.0,0.0,0.0,14.537716697020807,0.0,0.0,0.0,0.43990654468107676,0.14663551489369225,0.030870634714461533,0.34258730571076945,0.5 -1106,my_land,urban,0.0,0.02,0.005,0.0,2010-09-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1107,my_land,rural,15.708733574411994,0.1,0.05,20.0,2010-09-07,0.0,0.0,0.0018634802928839459,0.0,0.0,0.0,0.0,0.0,14.5609645871276,0.0,0.0,0.0,0.0,0.0,0.00202012683775721,-0.0904025367551442,0.5 -1108,my_land,urban,0.0,0.0,0.0,0.0,2010-09-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1109,my_land,rural,15.608733574411994,0.1,0.0,20.0,2010-09-08,0.0,0.0,0.001873480292883946,0.0,0.0,0.0,0.0,0.0,14.582620573390951,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1110,my_land,urban,0.0,0.004,0.004,0.0,2010-09-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1111,my_land,rural,15.547279618645591,0.1,0.04,20.0,2010-09-09,0.0,0.0,0.001883480292883946,0.0,0.0,0.0,0.0,0.0,14.60407757167387,0.0,0.0,0.0,0.0,0.0,0.0014539557664029752,-0.08907911532805951,0.5 -1112,my_land,urban,0.0,0.01,0.01,0.0,2010-09-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1113,my_land,rural,15.54384826193452,0.1,0.1,20.0,2010-09-10,0.0,0.0,0.001893480292883946,0.0,0.0,0.0,0.0,0.0,14.625509696459234,0.0,0.0,0.0,0.0,0.0,0.003431356711069605,-0.0686271342213921,0.5 -1114,my_land,urban,0.0,0.001,0.001,0.0,2010-09-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1115,my_land,rural,15.453506339292364,0.1,0.01,20.0,2010-09-11,0.0,0.0,0.001903480292883946,0.0,0.0,0.0,0.0,0.0,14.646938712057405,0.0,0.0,0.0,0.0,0.0,0.00034192264215623485,-0.0968384528431247,0.5 -1116,my_land,urban,0.0,0.0,0.0,0.0,2010-09-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1117,my_land,rural,15.353506339292364,0.1,0.0,20.0,2010-09-12,0.0,0.0,0.001913480292883946,0.0,0.0,0.0,0.0,0.0,14.668367339007176,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1118,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-09-13,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1119,my_land,rural,15.311947374862875,0.1,0.06,20.0,2010-09-13,0.0,0.0,0.001923480292883946,0.0,0.0,0.0,0.0,0.0,14.689795917375898,0.0,0.0,0.0,0.0,0.0,0.0015589644294888149,-0.0711792885897763,0.5 -1120,my_land,urban,0.0,0.02,0.02,0.0,2010-09-14,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1121,my_land,rural,15.316963196315696,0.1,0.2,20.0,2010-09-14,0.0,0.0,0.0019221565250184401,0.0,0.0,0.0,0.0,0.0,14.711850597830727,0.0,0.0,0.0,0.06767622721486417,0.022558742404954726,0.00474920892735889,0.005015821452822203,0.5 -1122,my_land,urban,0.0,0.002,0.002,0.0,2010-09-15,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1123,my_land,rural,15.236482684489818,0.1,0.02,20.0,2010-09-15,0.0,0.0,0.0019321565250184402,0.0,0.0,0.0,0.0,0.0,14.550588469728842,0.0,0.0,0.0,0.0,0.0,0.00048051182587770307,-0.08961023651755406,0.5 -1124,my_land,urban,0.0,0.002,0.002,0.0,2010-09-16,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1125,my_land,rural,15.156098679847094,0.1,0.02,20.0,2010-09-16,0.0,0.0,0.0019421565250184402,0.0,0.0,0.0,0.0,0.0,14.367037841216105,0.0,0.0,0.0,0.0,0.0,0.0003840046427236764,-0.08768009285447353,0.5 -1126,my_land,urban,0.0,0.0,0.0,0.0,2010-09-17,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1127,my_land,rural,15.056098679847095,0.1,0.0,20.0,2010-09-17,0.0,0.0,0.0019521565250184402,0.0,0.0,0.0,0.0,0.0,14.180701157652013,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1128,my_land,urban,0.0,0.001,0.001,0.0,2010-09-18,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1129,my_land,rural,14.96604533042253,0.1,0.01,20.0,2010-09-18,0.0,0.0,0.0019621565250184402,0.0,0.0,0.0,0.0,0.0,13.994016217206504,0.0,0.0,0.0,0.0,0.0,5.3349424564661355e-05,-0.09106698849129322,0.5 -1130,my_land,urban,0.0,0.001,0.001,0.0,2010-09-19,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1131,my_land,rural,14.87604533042253,0.1,0.01,20.0,2010-09-19,0.0,0.0,0.0019721565250184403,0.0,0.0,0.0,0.0,0.0,13.807287744650814,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1132,my_land,urban,0.0,0.0,0.0,0.0,2010-09-20,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1133,my_land,rural,14.77604533042253,0.1,0.0,20.0,2010-09-20,0.0,0.0,0.0019821565250184403,0.0,0.0,0.0,0.0,0.0,13.620553823081353,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1134,my_land,urban,0.0,0.0,0.0,0.0,2010-09-21,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0,,,,, -1135,my_land,rural,14.67604533042253,0.1,0.0,20.0,2010-09-21,0.0,0.0,0.0019921565250184403,0.0,0.0,0.0,0.0,0.0,13.43381922788517,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1136,my_land,urban,0.0,0.02,0.053,0.0,2010-09-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0,,,,, -1137,my_land,rural,15.10604533042253,0.1,0.53,20.0,2010-09-22,0.0,0.0,0.0020021565250184403,0.0,0.0,0.0,0.0,0.0,13.242852430991487,0.0,0.0,0.0,0.0,0.0,0.0,0.43,0.5 -1138,my_land,urban,0.0,0.02,0.032,0.0,2010-09-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, -1139,my_land,rural,15.26430069917166,0.1,0.32,20.0,2010-09-23,0.0,0.0,0.002004453843280228,0.0,0.0,0.0,0.0,0.0,13.049605816238184,0.0,0.0,0.0,0.043993049766245136,0.014664349922081711,0.003087231562543519,0.15825536874912965,0.5 -1140,my_land,urban,0.0,0.001,0.001,0.0,2010-09-24,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, -1141,my_land,rural,15.17409117576737,0.1,0.01,20.0,2010-09-24,0.0,0.0,0.002014453843280228,0.0,0.0,0.0,0.0,0.0,12.856200727029774,0.0,0.0,0.0,0.0,0.0,0.00020952340429017773,-0.09419046808580356,0.5 -1142,my_land,urban,0.0,0.0,0.0,0.0,2010-09-25,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, -1143,my_land,rural,15.07409117576737,0.1,0.0,20.0,2010-09-25,0.0,0.0,0.002024453843280228,0.0,0.0,0.0,0.0,0.0,12.663275090878722,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1144,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-09-26,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, -1145,my_land,rural,15.003883153135343,0.1,0.03,20.0,2010-09-26,0.0,0.0,0.002034453843280228,0.0,0.0,0.0,0.0,0.0,12.47040938635984,0.0,0.0,0.0,0.0,0.0,0.00020802263202740907,-0.07416045264054819,0.5 -1146,my_land,urban,0.0,0.004,0.004,0.0,2010-09-27,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0,,,,, -1147,my_land,rural,14.943867674694493,0.1,0.04,20.0,2010-09-27,0.0,0.0,0.002044453843280228,0.0,0.0,0.0,0.0,0.0,12.27755117329498,0.0,0.0,0.0,0.0,0.0,1.5478440849844067e-05,-0.06030956881699688,0.5 -1148,my_land,urban,0.0,0.02,0.038,0.0,2010-09-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0,,,,, -1149,my_land,rural,15.223867674694493,0.1,0.38,20.0,2010-09-28,0.0,0.0,0.002054453843280228,0.0,0.0,0.0,0.0,0.0,12.084975409154378,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 -1150,my_land,urban,0.0,0.02,0.043,0.0,2010-09-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0,,,,, -1151,my_land,rural,15.395844511657737,0.1,0.43,20.0,2010-09-29,0.0,0.0,0.0020445181287901825,0.0,0.0,0.0,0.0,0.0,12.198516680537638,0.0,0.0,0.0,0.11259150366368784,0.03753050122122927,0.007901158151837742,0.17197683696324517,0.5 -1152,my_land,urban,0.01900000000000001,0.02,0.07900000000000001,0.0,2010-09-30,0.0,0.0,3.2203389830508484e-07,0.0,0.0,0.0,0.0,0.0,12.76428571,0.0,0.0,0.0,,,,, -1153,my_land,rural,15.642124079544889,0.1,0.79,20.0,2010-09-30,0.0,0.0,0.0020006045020262504,0.0,0.0,0.0,0.0,0.0,12.350968954866211,0.0,0.0,0.0,0.3161508078804041,0.10538360262680137,0.022186021605642398,0.24627956788715216,0.5 -1154,my_land,urban,0.08200000000000002,0.02,0.123,0.0,2010-10-01,0.0,0.0,8.885801611558769e-07,0.0,0.0,0.0,0.0,0.0,12.918062059016393,0.0,0.0,0.0,,,,, -1155,my_land,rural,15.853262522859788,0.1,1.23,20.0,2010-10-01,0.0,0.0,0.0019056735663093688,0.0,0.0,0.0,0.0,0.0,12.508516661502183,0.0,0.0,0.0,0.6546888591381358,0.2182296197127119,0.04594307783425515,0.21113844331489723,0.5 -1156,my_land,urban,0.139,0.02,0.117,0.0,2010-10-02,0.0,0.0,1.466551074864061e-06,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0,,,,, -1157,my_land,rural,15.933378084360733,0.1,1.17,20.0,2010-10-02,0.0,0.0,0.0018089113631204615,0.0,0.0,0.0,0.0,0.0,12.664680678616817,0.0,0.0,0.0,0.705292662430577,0.23509755414352565,0.049494221924952765,0.08011556150094475,0.5 -1158,my_land,urban,0.091,0.02,0.011999999999999999,0.0,2010-10-03,0.0,0.0,1.7134057084933551e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0,,,,, -1159,my_land,rural,15.848577229797959,0.1,0.12,20.0,2010-10-03,0.0,0.0,0.0018075562888481688,0.0,0.0,0.0,0.0,0.0,12.816195540115263,0.0,0.0,0.0,0.07467060887597708,0.02489020295865903,0.005240042728138744,-0.08480085456277489,0.5 -1160,my_land,urban,0.04399999999999999,0.02,0.013,0.0,2010-10-04,0.0,0.0,1.4213077520679477e-06,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0,,,,, -1161,my_land,rural,15.768817343112016,0.1,0.13,20.0,2010-10-04,0.0,0.0,0.0018056165819088034,0.0,0.0,0.0,0.0,0.0,12.97179791428286,0.0,0.0,0.0,0.07820391926373317,0.026067973087911055,0.005487994334297064,-0.07975988668594129,0.5 -1162,my_land,urban,0.03199999999999998,0.02,0.047999999999999994,0.0,2010-10-05,0.0,0.0,1.0761367786968652e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1163,my_land,rural,15.759215366188531,0.1,0.48,20.0,2010-10-05,0.0,0.0,0.0017739534057356293,0.0,0.0,0.0,0.0,0.0,13.129689469318858,0.0,0.0,0.0,0.2775914085579805,0.09253046951932682,0.01948009884617407,-0.009601976923481444,0.5 -1164,my_land,urban,0.0,0.02,0.001,0.0,2010-10-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1165,my_land,rural,15.668811689662393,0.1,0.01,20.0,2010-10-06,0.0,0.0,0.0017839534057356294,0.0,0.0,0.0,0.0,0.0,13.026925466164856,0.0,0.0,0.0,0.0,0.0,0.00040367652613772025,-0.09807353052275442,0.5 -1166,my_land,urban,0.0,0.005,0.005,0.0,2010-10-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1167,my_land,rural,15.616906407039254,0.1,0.05,20.0,2010-10-07,0.0,0.0,0.0017939534057356294,0.0,0.0,0.0,0.0,0.0,12.893544255770609,0.0,0.0,0.0,0.0,0.0,0.0019052826231389039,-0.08810565246277807,0.5 -1168,my_land,urban,0.0,0.0,0.0,0.0,2010-10-08,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1169,my_land,rural,15.516906407039254,0.1,0.0,20.0,2010-10-08,0.0,0.0,0.0018039534057356294,0.0,0.0,0.0,0.0,0.0,12.756335886971325,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1170,my_land,urban,0.0,0.0,0.0,0.0,2010-10-09,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1171,my_land,rural,15.416906407039255,0.1,0.0,20.0,2010-10-09,0.0,0.0,0.0018139534057356294,0.0,0.0,0.0,0.0,0.0,12.618649130871416,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1172,my_land,urban,0.0,0.0,0.0,0.0,2010-10-10,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1173,my_land,rural,15.316906407039255,0.1,0.0,20.0,2010-10-10,0.0,0.0,0.0018239534057356295,0.0,0.0,0.0,0.0,0.0,12.480902568858928,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1174,my_land,urban,0.0,0.0,0.0,0.0,2010-10-11,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1175,my_land,rural,15.216906407039255,0.1,0.0,20.0,2010-10-11,0.0,0.0,0.0018339534057356295,0.0,0.0,0.0,0.0,0.0,12.343148538607368,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1176,my_land,urban,0.0,0.0,0.0,0.0,2010-10-12,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1177,my_land,rural,15.116906407039256,0.1,0.0,20.0,2010-10-12,0.0,0.0,0.0018439534057356295,0.0,0.0,0.0,0.0,0.0,12.205393567325922,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1178,my_land,urban,0.0,0.0,0.0,0.0,2010-10-13,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1179,my_land,rural,15.016906407039256,0.1,0.0,20.0,2010-10-13,0.0,0.0,0.0018539534057356295,0.0,0.0,0.0,0.0,0.0,11.901567050915741,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1180,my_land,urban,0.0,0.0,0.0,0.0,2010-10-14,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1181,my_land,rural,14.916906407039257,0.1,0.0,20.0,2010-10-14,0.0,0.0,0.0018639534057356296,0.0,0.0,0.0,0.0,0.0,11.576981598864467,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1182,my_land,urban,0.0,0.007,0.007,0.0,2010-10-15,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1183,my_land,rural,14.886906407039257,0.1,0.06999999999999999,20.0,2010-10-15,0.0,0.0,0.0018739534057356296,0.0,0.0,0.0,0.0,0.0,11.24980127235806,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 -1184,my_land,urban,0.0,0.001,0.001,0.0,2010-10-16,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1185,my_land,rural,14.796906407039257,0.1,0.01,20.0,2010-10-16,0.0,0.0,0.0018839534057356296,0.0,0.0,0.0,0.0,0.0,10.922296586544757,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1186,my_land,urban,0.0,0.0,0.0,0.0,2010-10-17,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1187,my_land,rural,14.696906407039258,0.1,0.0,20.0,2010-10-17,0.0,0.0,0.0018939534057356296,0.0,0.0,0.0,0.0,0.0,10.594751355818095,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1188,my_land,urban,0.0,0.01,0.01,0.0,2010-10-18,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0,,,,, -1189,my_land,rural,14.696906407039258,0.1,0.1,20.0,2010-10-18,0.0,0.0,0.0019039534057356297,0.0,0.0,0.0,0.0,0.0,10.267201064477263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -1190,my_land,urban,0.0,0.02,0.031,0.0,2010-10-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0,,,,, -1191,my_land,rural,14.906906407039259,0.1,0.31,20.0,2010-10-19,0.0,0.0,0.0019139534057356297,0.0,0.0,0.0,0.0,0.0,9.938959494931169,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.5 -1192,my_land,urban,0.0,0.0,0.0,0.0,2010-10-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0,,,,, -1193,my_land,rural,14.806906407039259,0.1,0.0,20.0,2010-10-20,0.0,0.0,0.0019239534057356297,0.0,0.0,0.0,0.0,0.0,9.614691365116396,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1194,my_land,urban,0.0,0.0,0.0,0.0,2010-10-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0,,,,, -1195,my_land,rural,14.70690640703926,0.1,0.0,20.0,2010-10-21,0.0,0.0,0.0019339534057356297,0.0,0.0,0.0,0.0,0.0,9.29022927788955,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1196,my_land,urban,0.0,0.02,0.052,0.0,2010-10-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, -1197,my_land,rural,15.12690640703926,0.1,0.52,20.0,2010-10-22,0.0,0.0,0.0019439534057356298,0.0,0.0,0.0,0.0,0.0,8.963830820157483,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.5 -1198,my_land,urban,0.0,0.018,0.018,0.0,2010-10-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, -1199,my_land,rural,15.166100237800553,0.1,0.18,20.0,2010-10-23,0.0,0.0,0.0019489716659952096,0.0,0.0,0.0,0.0,0.0,8.640628023176916,0.0,0.0,0.0,0.029074395582578516,0.009691465194192839,0.0020403084619353344,0.039193830761293305,0.5 -1200,my_land,urban,0.0,0.001,0.001,0.0,2010-10-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, -1201,my_land,rural,15.075956891198041,0.1,0.01,20.0,2010-10-24,0.0,0.0,0.0019589716659952094,0.0,0.0,0.0,0.0,0.0,8.316685645647116,0.0,0.0,0.0,0.0,0.0,0.00014334660251144512,-0.0928669320502289,0.5 -1202,my_land,urban,0.0,0.007,0.007,0.0,2010-10-25,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0,,,,, -1203,my_land,rural,15.045460106479808,0.1,0.06999999999999999,20.0,2010-10-25,0.0,0.0,0.0019689716659952094,0.0,0.0,0.0,0.0,0.0,7.99226427745589,0.0,0.0,0.0,0.0,0.0,0.0004967847182327096,-0.039935694364654196,0.5 -1204,my_land,urban,0.0,0.02,0.054000000000000006,0.0,2010-10-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1205,my_land,rural,15.43832401082222,0.1,0.54,20.0,2010-10-26,0.0,0.0,0.0019732482043520456,0.0,0.0,0.0,0.0,0.0,7.665072111818053,0.0,0.0,0.0,0.03358446815603205,0.011194822718677349,0.002356804782879442,0.3928639043424112,0.5 -1206,my_land,urban,0.0,0.007,0.007,0.0,2010-10-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1207,my_land,rural,15.40622234942415,0.1,0.06999999999999999,20.0,2010-10-27,0.0,0.0,0.0019832482043520457,0.0,0.0,0.0,0.0,0.0,7.9992054422272565,0.0,0.0,0.0,0.0,0.0,0.002101661398070194,-0.07203322796140388,0.5 -1208,my_land,urban,0.0,0.002,0.002,0.0,2010-10-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1209,my_land,rural,15.325650897610801,0.1,0.02,20.0,2010-10-28,0.0,0.0,0.0019932482043520457,0.0,0.0,0.0,0.0,0.0,8.413293537528407,0.0,0.0,0.0,0.0,0.0,0.0005714518133476659,-0.09142903626695331,0.5 -1210,my_land,urban,0.0,0.002,0.002,0.0,2010-10-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1211,my_land,rural,15.245160828594642,0.1,0.02,20.0,2010-10-29,0.0,0.0,0.0020032482043520457,0.0,0.0,0.0,0.0,0.0,8.837375977691051,0.0,0.0,0.0,0.0,0.0,0.0004900690161586151,-0.08980138032317231,0.5 -1212,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2010-10-30,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1213,my_land,rural,15.203975422842994,0.1,0.06,20.0,2010-10-30,0.0,0.0,0.0020132482043520457,0.0,0.0,0.0,0.0,0.0,9.262707711711382,0.0,0.0,0.0,0.0,0.0,0.00118540575164834,-0.0637081150329668,0.5 -1214,my_land,urban,0.0,0.002,0.002,0.0,2010-10-31,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1215,my_land,rural,15.123634769724292,0.1,0.02,20.0,2010-10-31,0.0,0.0,0.0020232482043520458,0.0,0.0,0.0,0.0,0.0,9.688195606713922,0.0,0.0,0.0,0.0,0.0,0.0003406531187026372,-0.08681306237405274,0.5 -1216,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-11-01,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1217,my_land,rural,15.053302529402838,0.1,0.03,20.0,2010-11-01,0.0,0.0,0.002033248204352046,0.0,0.0,0.0,0.0,0.0,10.11370302333924,0.0,0.0,0.0,0.0,0.0,0.000332240321453425,-0.07664480642906851,0.5 -1218,my_land,urban,0.0,0.004,0.004,0.0,2010-11-02,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1219,my_land,rural,14.993099262048952,0.1,0.04,20.0,2010-11-02,0.0,0.0,0.002043248204352046,0.0,0.0,0.0,0.0,0.0,10.539212877917405,0.0,0.0,0.0,0.0,0.0,0.00020326735388613652,-0.06406534707772274,0.5 -1220,my_land,urban,0.0,0.004,0.004,0.0,2010-11-03,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1221,my_land,rural,14.933099262048952,0.1,0.04,20.0,2010-11-03,0.0,0.0,0.002053248204352046,0.0,0.0,0.0,0.0,0.0,10.311151609739676,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1222,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-11-04,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0,,,,, -1223,my_land,rural,14.863099262048951,0.1,0.03,20.0,2010-11-04,0.0,0.0,0.002063248204352046,0.0,0.0,0.0,0.0,0.0,10.001393951217459,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1224,my_land,urban,0.055,0.02,0.11499999999999999,0.0,2010-11-05,0.0,0.0,5.789473684210527e-06,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0,,,,, -1225,my_land,rural,15.913099262048952,0.1,1.15,20.0,2010-11-05,0.0,0.0,0.002073248204352046,0.0,0.0,0.0,0.0,0.0,9.677907379891238,0.0,0.0,0.0,0.0,0.0,0.0,1.0499999999999998,0.5 -1226,my_land,urban,0.04499999999999999,0.02,0.05,0.0,2010-11-06,0.0,0.0,3.594427244582043e-06,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0,,,,, -1227,my_land,rural,15.879658885839438,0.1,0.5,20.0,2010-11-06,0.0,0.0,0.0020305937819768325,0.0,0.0,0.0,0.0,0.0,9.358351145826031,0.0,0.0,0.0,0.3088262680492786,0.10294208934975953,0.021672018810475688,-0.03344037620951375,0.5 -1228,my_land,urban,0.10699999999999998,0.02,0.12200000000000001,0.0,2010-11-07,0.0,0.0,3.344242960342031e-06,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0,,,,, -1229,my_land,rural,15.955853044239761,0.1,1.22,20.0,2010-11-07,0.0,0.0,0.0019211963325426128,0.0,0.0,0.0,0.0,0.0,9.034343284092348,0.0,0.0,0.0,0.7437116621397686,0.24790388737992286,0.05219029207998376,0.0761941584003249,0.5 -1230,my_land,urban,0.09299999999999997,0.02,0.046,0.0,2010-11-08,0.0,0.0,3.037703724148939e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0,,,,, -1231,my_land,rural,15.910975311675383,0.1,0.45999999999999996,20.0,2010-11-08,0.0,0.0,0.0018856132883336325,0.0,0.0,0.0,0.0,0.0,8.715269998717039,0.0,0.0,0.0,0.2884753844521202,0.09615846148404006,0.020243886628218962,-0.044877732564379234,0.5 -1232,my_land,urban,0.03499999999999997,0.019999999999999997,0.002,0.0,2010-11-09,0.0,0.0,1.8842617379361704e-06,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0,,,,, -1233,my_land,rural,15.830109124359957,0.1,0.02,20.0,2010-11-09,0.0,0.0,0.0018956132883336326,0.0,0.0,0.0,0.0,0.0,8.39565874983963,0.0,0.0,0.0,0.0,0.0,0.0008661873154258566,-0.09732374630851715,0.5 -1234,my_land,urban,0.017999999999999967,0.02,0.043,0.0,2010-11-10,0.0,0.0,8.951157117732933e-07,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0,,,,, -1235,my_land,rural,15.800095791180663,0.1,0.43,20.0,2010-11-10,0.0,0.0,0.0018652379009542579,0.0,0.0,0.0,0.0,0.0,8.105023008735586,0.0,0.0,0.0,0.25650949989024674,0.08550316663008224,0.018000666658964683,-0.03001333317929366,0.5 -1236,my_land,urban,0.0,0.02,0.031,0.0,2010-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0,,,,, -1237,my_land,rural,15.75430280732313,0.1,0.31,20.0,2010-11-11,0.0,0.0,0.0018467525385328064,0.0,0.0,0.0,0.0,0.0,7.820093684934367,0.0,0.0,0.0,0.1822525009984918,0.060750833666163934,0.012789649192876618,-0.045792983857532346,0.5 -1238,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2010-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, -1239,my_land,rural,15.710820981144815,0.1,0.29,20.0,2010-11-12,0.0,0.0,0.0018309035664563393,0.0,0.0,0.0,0.0,0.0,7.535402846607912,0.0,0.0,0.0,0.16635580115204918,0.05545193371734973,0.011674091308915734,-0.043481826178314684,0.5 -1240,my_land,urban,0.0,0.01,0.01,0.0,2010-11-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, -1241,my_land,rural,15.706899956909794,0.1,0.1,20.0,2010-11-13,0.0,0.0,0.0018409035664563394,0.0,0.0,0.0,0.0,0.0,7.251746784075989,0.0,0.0,0.0,0.0,0.0,0.003921024235021004,-0.07842048470042007,0.5 -1242,my_land,urban,0.0,0.004,0.004,0.0,2010-11-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, -1243,my_land,rural,15.645335508940489,0.1,0.04,20.0,2010-11-14,0.0,0.0,0.0018509035664563394,0.0,0.0,0.0,0.0,0.0,6.967182633509499,0.0,0.0,0.0,0.0,0.0,0.0015644479693051703,-0.09128895938610342,0.5 -1244,my_land,urban,0.0,0.002,0.002,0.0,2010-11-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, -1245,my_land,rural,15.564586609081719,0.1,0.02,20.0,2010-11-15,0.0,0.0,0.0018609035664563394,0.0,0.0,0.0,0.0,0.0,6.682504971938688,0.0,0.0,0.0,0.0,0.0,0.0007488998587710609,-0.09497799717542123,0.5 -1246,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2010-11-16,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0,,,,, -1247,my_land,rural,15.500796084733597,0.1,0.12,20.0,2010-11-16,0.0,0.0,0.00186134503014278,0.0,0.0,0.0,0.0,0.0,6.397694837075927,0.0,0.0,0.0,0.059700748598035674,0.019900249532678556,0.004189526217406012,-0.06379052434812026,0.5 -1248,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2010-11-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1249,my_land,rural,15.55394340514805,0.1,0.44,20.0,2010-11-17,0.0,0.0,0.0018391230088860232,0.0,0.0,0.0,0.0,0.0,6.457305190712142,0.0,0.0,0.0,0.20438253420470182,0.06812751140156727,0.01434263397927732,0.05314732041445361,0.5 -1250,my_land,urban,0.0,0.005,0.005,0.0,2010-11-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1251,my_land,rural,15.502216067642141,0.1,0.05,20.0,2010-11-18,0.0,0.0,0.0018491230088860233,0.0,0.0,0.0,0.0,0.0,6.562520291589017,0.0,0.0,0.0,0.0,0.0,0.0017273375059093617,-0.08454675011818724,0.5 -1252,my_land,urban,0.0,0.009,0.009,0.0,2010-11-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1253,my_land,rural,15.489277410773482,0.1,0.09,20.0,2010-11-19,0.0,0.0,0.0018591230088860233,0.0,0.0,0.0,0.0,0.0,6.672100750948627,0.0,0.0,0.0,0.0,0.0,0.0029386568686596967,-0.06877313737319395,0.5 -1254,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2010-11-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1255,my_land,rural,15.418313025368324,0.1,0.03,20.0,2010-11-20,0.0,0.0,0.0018691230088860233,0.0,0.0,0.0,0.0,0.0,6.7822268793685785,0.0,0.0,0.0,0.0,0.0,0.0009643854051577074,-0.08928770810315416,0.5 -1256,my_land,urban,0.0,0.001,0.001,0.0,2010-11-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1257,my_land,rural,15.328021726164264,0.1,0.01,20.0,2010-11-21,0.0,0.0,0.0018791230088860233,0.0,0.0,0.0,0.0,0.0,6.892421217171073,0.0,0.0,0.0,0.0,0.0,0.00029129920405924673,-0.09582598408118494,0.5 -1258,my_land,urban,0.0,0.0,0.0,0.0,2010-11-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1259,my_land,rural,15.228021726164265,0.1,0.0,20.0,2010-11-22,0.0,0.0,0.0018891230088860234,0.0,0.0,0.0,0.0,0.0,7.0026240803963855,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1260,my_land,urban,0.0,0.0,0.0,0.0,2010-11-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1261,my_land,rural,15.128021726164265,0.1,0.0,20.0,2010-11-23,0.0,0.0,0.0018991230088860234,0.0,0.0,0.0,0.0,0.0,7.112828010049548,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1262,my_land,urban,0.0,0.0,0.0,0.0,2010-11-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1263,my_land,rural,15.028021726164265,0.1,0.0,20.0,2010-11-24,0.0,0.0,0.0019091230088860234,0.0,0.0,0.0,0.0,0.0,6.566782073006194,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1264,my_land,urban,0.0,0.0,0.0,0.0,2010-11-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1265,my_land,rural,14.928021726164266,0.1,0.0,20.0,2010-11-25,0.0,0.0,0.0019191230088860234,0.0,0.0,0.0,0.0,0.0,5.9387049018757745,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1266,my_land,urban,0.0,0.0,0.0,0.0,2010-11-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1267,my_land,rural,14.828021726164266,0.1,0.0,20.0,2010-11-26,0.0,0.0,0.0019291230088860235,0.0,0.0,0.0,0.0,0.0,5.3003738272344725,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1268,my_land,urban,0.0,0.001,0.001,0.0,2010-11-27,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1269,my_land,rural,14.738021726164266,0.1,0.01,20.0,2010-11-27,0.0,0.0,0.0019391230088860235,0.0,0.0,0.0,0.0,0.0,4.660761013904309,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1270,my_land,urban,0.0,0.0,0.0,0.0,2010-11-28,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1271,my_land,rural,14.638021726164267,0.1,0.0,20.0,2010-11-28,0.0,0.0,0.0019491230088860235,0.0,0.0,0.0,0.0,0.0,4.020987983988039,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1272,my_land,urban,0.0,0.009,0.009,0.0,2010-11-29,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1273,my_land,rural,14.628021726164267,0.1,0.09,20.0,2010-11-29,0.0,0.0,0.0019591230088860235,0.0,0.0,0.0,0.0,0.0,3.3811949262485057,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1274,my_land,urban,0.0,0.008,0.008,0.0,2010-11-30,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1275,my_land,rural,14.608021726164267,0.1,0.08,20.0,2010-11-30,0.0,0.0,0.0019691230088860236,0.0,0.0,0.0,0.0,0.0,2.7413993657810636,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 -1276,my_land,urban,0.0,0.002,0.002,0.0,2010-12-01,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1277,my_land,rural,14.528021726164267,0.1,0.02,20.0,2010-12-01,0.0,0.0,0.0019791230088860236,0.0,0.0,0.0,0.0,0.0,2.6828534924726335,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1278,my_land,urban,0.0,0.0,0.0,0.0,2010-12-02,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0,,,,, -1279,my_land,rural,14.428021726164268,0.1,0.0,20.0,2010-12-02,0.0,0.0,0.0019891230088860236,0.0,0.0,0.0,0.0,0.0,2.6969638293090794,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1280,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2010-12-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0,,,,, -1281,my_land,rural,14.548021726164267,0.1,0.22,20.0,2010-12-03,0.0,0.0,0.0019991230088860236,0.0,0.0,0.0,0.0,0.0,2.718933089192211,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 -1282,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2010-12-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1283,my_land,rural,14.668021726164266,0.1,0.22,20.0,2010-12-04,0.0,0.0,0.0020091230088860237,0.0,0.0,0.0,0.0,0.0,2.7431245755610387,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 -1284,my_land,urban,0.0,0.001,0.001,0.0,2010-12-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1285,my_land,rural,14.578021726164266,0.1,0.01,20.0,2010-12-05,0.0,0.0,0.0020191230088860237,0.0,0.0,0.0,0.0,0.0,2.76878342919513,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1286,my_land,urban,0.0,0.0,0.0,0.0,2010-12-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1287,my_land,rural,14.478021726164267,0.1,0.0,20.0,2010-12-06,0.0,0.0,0.0020291230088860237,0.0,0.0,0.0,0.0,0.0,2.793419356899391,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1288,my_land,urban,0.0,0.0,0.0,0.0,2010-12-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1289,my_land,rural,14.378021726164267,0.1,0.0,20.0,2010-12-07,0.0,0.0,0.0020391230088860238,0.0,0.0,0.0,0.0,0.0,2.817927419612424,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1290,my_land,urban,0.0,0.001,0.001,0.0,2010-12-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1291,my_land,rural,14.288021726164267,0.1,0.01,20.0,2010-12-08,0.0,0.0,0.0020491230088860238,0.0,0.0,0.0,0.0,0.0,2.9924194992015534,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1292,my_land,urban,0.0,0.001,0.001,0.0,2010-12-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1293,my_land,rural,14.198021726164267,0.1,0.01,20.0,2010-12-09,0.0,0.0,0.002059123008886024,0.0,0.0,0.0,0.0,0.0,3.1856595801501943,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1294,my_land,urban,0.0,0.0,0.0,0.0,2010-12-10,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1295,my_land,rural,14.098021726164268,0.1,0.0,20.0,2010-12-10,0.0,0.0,0.002069123008886024,0.0,0.0,0.0,0.0,0.0,3.381243162018775,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1296,my_land,urban,0.0,0.0,0.0,0.0,2010-12-11,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1297,my_land,rural,13.998021726164268,0.1,0.0,20.0,2010-12-11,0.0,0.0,0.002079123008886024,0.0,0.0,0.0,0.0,0.0,3.5771196807523467,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1298,my_land,urban,0.0,0.0,0.0,0.0,2010-12-12,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1299,my_land,rural,13.898021726164268,0.1,0.0,20.0,2010-12-12,0.0,0.0,0.002089123008886024,0.0,0.0,0.0,0.0,0.0,3.7730328173440433,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1300,my_land,urban,0.0,0.0,0.0,0.0,2010-12-13,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1301,my_land,rural,13.798021726164269,0.1,0.0,20.0,2010-12-13,0.0,0.0,0.002099123008886024,0.0,0.0,0.0,0.0,0.0,3.968950530418006,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1302,my_land,urban,0.0,0.009,0.009,0.0,2010-12-14,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1303,my_land,rural,13.788021726164269,0.1,0.09,20.0,2010-12-14,0.0,0.0,0.002109123008886024,0.0,0.0,0.0,0.0,0.0,4.164868816302251,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1304,my_land,urban,0.0,0.001,0.001,0.0,2010-12-15,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0,,,,, -1305,my_land,rural,13.698021726164269,0.1,0.01,20.0,2010-12-15,0.0,0.0,0.002119123008886024,0.0,0.0,0.0,0.0,0.0,3.875965744787782,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1306,my_land,urban,0.0,0.02,0.036,0.0,2010-12-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0,,,,, -1307,my_land,rural,13.958021726164269,0.1,0.36,20.0,2010-12-16,0.0,0.0,0.002129123008886024,0.0,0.0,0.0,0.0,0.0,3.522998402667588,0.0,0.0,0.0,0.0,0.0,0.0,0.26,0.5 -1308,my_land,urban,0.0,0.02,0.038,0.0,2010-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0,,,,, -1309,my_land,rural,14.238021726164268,0.1,0.38,20.0,2010-12-17,0.0,0.0,0.002139123008886024,0.0,0.0,0.0,0.0,0.0,3.165132149271533,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 -1310,my_land,urban,0.0,0.02,0.049,0.0,2010-12-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1311,my_land,rural,14.628021726164269,0.1,0.49,20.0,2010-12-18,0.0,0.0,0.002149123008886024,0.0,0.0,0.0,0.0,0.0,2.805449331014135,0.0,0.0,0.0,0.0,0.0,0.0,0.38999999999999996,0.5 -1312,my_land,urban,0.0,0.0,0.0,0.0,2010-12-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1313,my_land,rural,14.528021726164269,0.1,0.0,20.0,2010-12-19,0.0,0.0,0.002159123008886024,0.0,0.0,0.0,0.0,0.0,2.452466880876767,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1314,my_land,urban,0.0,0.009,0.009,0.0,2010-12-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1315,my_land,rural,14.51802172616427,0.1,0.09,20.0,2010-12-20,0.0,0.0,0.002169123008886024,0.0,0.0,0.0,0.0,0.0,2.094951217359596,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1316,my_land,urban,0.0,0.005,0.005,0.0,2010-12-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1317,my_land,rural,14.468021726164269,0.1,0.05,20.0,2010-12-21,0.0,0.0,0.002179123008886024,0.0,0.0,0.0,0.0,0.0,1.7368689021699497,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1318,my_land,urban,0.0,0.001,0.001,0.0,2010-12-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1319,my_land,rural,14.378021726164269,0.1,0.01,20.0,2010-12-22,0.0,0.0,0.002189123008886024,0.0,0.0,0.0,0.0,0.0,1.867555041021244,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1320,my_land,urban,0.0,0.0,0.0,0.0,2010-12-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1321,my_land,rural,14.278021726164269,0.1,0.0,20.0,2010-12-23,0.0,0.0,0.002199123008886024,0.0,0.0,0.0,0.0,0.0,2.0593372373776555,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1322,my_land,urban,0.0,0.0,0.0,0.0,2010-12-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1323,my_land,rural,14.17802172616427,0.1,0.0,20.0,2010-12-24,0.0,0.0,0.002209123008886024,0.0,0.0,0.0,0.0,0.0,2.258756440172207,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1324,my_land,urban,0.0,0.0,0.0,0.0,2010-12-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1325,my_land,rural,14.07802172616427,0.1,0.0,20.0,2010-12-25,0.0,0.0,0.0022191230088860242,0.0,0.0,0.0,0.0,0.0,2.4591302695215265,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1326,my_land,urban,0.0,0.001,0.001,0.0,2010-12-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0,,,,, -1327,my_land,rural,13.98802172616427,0.1,0.01,20.0,2010-12-26,0.0,0.0,0.0022291230088860243,0.0,0.0,0.0,0.0,0.0,2.659623426440191,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1328,my_land,urban,0.001999999999999995,0.02,0.062,0.0,2010-12-27,0.0,0.0,4.285714285714276e-07,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1329,my_land,rural,14.50802172616427,0.1,0.62,20.0,2010-12-27,0.0,0.0,0.0022391230088860243,0.0,0.0,0.0,0.0,0.0,2.855848119384209,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.5 -1330,my_land,urban,0.0,0.02,0.019,0.0,2010-12-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1331,my_land,rural,14.59802172616427,0.1,0.19,20.0,2010-12-28,0.0,0.0,0.0022491230088860243,0.0,0.0,0.0,0.0,0.0,3.0593982877708905,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.5 -1332,my_land,urban,0.0,0.009,0.009,0.0,2010-12-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1333,my_land,rural,14.58802172616427,0.1,0.09,20.0,2010-12-29,0.0,0.0,0.0022591230088860243,0.0,0.0,0.0,0.0,0.0,3.2609962142213615,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1334,my_land,urban,0.0,0.001,0.001,0.0,2010-12-30,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1335,my_land,rural,14.49802172616427,0.1,0.01,20.0,2010-12-30,0.0,0.0,0.0022691230088860244,0.0,0.0,0.0,0.0,0.0,3.4616423840276704,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1336,my_land,urban,0.0,0.0,0.0,0.0,2010-12-31,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1337,my_land,rural,14.39802172616427,0.1,0.0,20.0,2010-12-31,0.0,0.0,0.0022791230088860244,0.0,0.0,0.0,0.0,0.0,3.662169583503459,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1338,my_land,urban,0.0,0.009,0.009,0.0,2011-01-01,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1339,my_land,rural,14.38802172616427,0.1,0.09,20.0,2011-01-01,0.0,0.0,0.0022891230088860244,0.0,0.0,0.0,0.0,0.0,3.8626819124379326,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1340,my_land,urban,0.0,0.0,0.0,0.0,2011-01-02,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1341,my_land,rural,14.28802172616427,0.1,0.0,20.0,2011-01-02,0.0,0.0,0.0022991230088860244,0.0,0.0,0.0,0.0,0.0,4.0631923818047415,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1342,my_land,urban,0.0,0.002,0.002,0.0,2011-01-03,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1343,my_land,rural,14.20802172616427,0.1,0.02,20.0,2011-01-03,0.0,0.0,0.0023091230088860245,0.0,0.0,0.0,0.0,0.0,4.263702619475593,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1344,my_land,urban,0.0,0.005,0.005,0.0,2011-01-04,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1345,my_land,rural,14.15802172616427,0.1,0.05,20.0,2011-01-04,0.0,0.0,0.0023191230088860245,0.0,0.0,0.0,0.0,0.0,4.46421282743445,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1346,my_land,urban,0.0,0.018,0.018,0.0,2011-01-05,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0,,,,, -1347,my_land,rural,14.23802172616427,0.1,0.18,20.0,2011-01-05,0.0,0.0,0.0023291230088860245,0.0,0.0,0.0,0.0,0.0,4.6950952142663684,0.0,0.0,0.0,0.0,0.0,0.0,0.07999999999999999,0.5 -1348,my_land,urban,0.04599999999999999,0.02,0.106,0.0,2011-01-06,0.0,0.0,4.813953488372093e-06,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0,,,,, -1349,my_land,rural,15.19802172616427,0.1,1.06,20.0,2011-01-06,0.0,0.0,0.0023391230088860245,0.0,0.0,0.0,0.0,0.0,4.926135564244465,0.0,0.0,0.0,0.0,0.0,0.0,0.9600000000000001,0.5 -1350,my_land,urban,0.03599999999999998,0.02,0.05,0.0,2011-01-07,0.0,0.0,2.753977968176254e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0,,,,, -1351,my_land,rural,15.431810609724911,0.1,0.5,20.0,2011-01-07,0.0,0.0,0.0023253298907192194,0.0,0.0,0.0,0.0,0.0,5.164114559667942,0.0,0.0,0.0,0.11842542046304368,0.03947514015434789,0.008310555821967977,0.23378888356064045,0.5 -1352,my_land,urban,0.0,0.02,0.0,0.0,2011-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0,,,,, -1353,my_land,rural,15.331810609724911,0.1,0.0,20.0,2011-01-08,0.0,0.0,0.0023353298907192194,0.0,0.0,0.0,0.0,0.0,5.4017643199584935,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1354,my_land,urban,0.0,0.001,0.001,0.0,2011-01-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0,,,,, -1355,my_land,rural,15.241562235214705,0.1,0.01,20.0,2011-01-09,0.0,0.0,0.0023453298907192195,0.0,0.0,0.0,0.0,0.0,5.637720539994813,0.0,0.0,0.0,0.0,0.0,0.00024837451020699546,-0.09496749020413991,0.5 -1356,my_land,urban,0.016,0.02,0.076,0.0,2011-01-10,0.0,0.0,5.714285714285713e-07,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0,,,,, -1357,my_land,rural,15.604750432873434,0.1,0.76,20.0,2011-01-10,0.0,0.0,0.0023135254681762624,0.0,0.0,0.0,0.0,0.0,5.871369996014671,0.0,0.0,0.0,0.21147840916815452,0.07049280305605152,0.014840590117063478,0.36318819765873045,0.5 -1358,my_land,urban,0.025,0.02,0.069,0.0,2011-01-11,0.0,0.0,6.043956043956042e-07,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0,,,,, -1359,my_land,rural,15.69485145224883,0.1,0.69,20.0,2011-01-11,0.0,0.0,0.002255283767585958,0.0,0.0,0.0,0.0,0.0,6.107299194025051,0.0,0.0,0.0,0.35617802369503015,0.11872600789834338,0.02499494903123019,0.09010101937539623,0.5 -1360,my_land,urban,0.063,0.02,0.098,0.0,2011-01-12,0.0,0.0,9.81329350261389e-07,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0,,,,, -1361,my_land,rural,15.814337766040055,0.1,0.98,20.0,2011-01-12,0.0,0.0,0.0021663143301653234,0.0,0.0,0.0,0.0,0.0,6.291222791475223,0.0,0.0,0.0,0.5418660014237533,0.18062200047458446,0.038025684310438845,0.11948631379122311,0.5 -1362,my_land,urban,0.060000000000000005,0.02,0.057,0.0,2011-01-13,0.0,0.0,1.1887976101568336e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0,,,,, -1363,my_land,rural,15.81067997692028,0.1,0.5700000000000001,20.0,2011-01-13,0.0,0.0,0.002116090013876364,0.0,0.0,0.0,0.0,0.0,6.470823878807919,0.0,0.0,0.0,0.33748117474784023,0.11249372491594675,0.023682889455988794,-0.0036577891197758262,0.5 -1364,my_land,urban,0.012000000000000004,0.02,0.011999999999999999,0.0,2011-01-14,0.0,0.0,5.051071408054234e-07,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0,,,,, -1365,my_land,rural,15.731140492701877,0.1,0.12,20.0,2011-01-14,0.0,0.0,0.002113386097457639,0.0,0.0,0.0,0.0,0.0,6.649882953847024,0.0,0.0,0.0,0.07092188250561242,0.023640627501870806,0.0049769742109201705,-0.07953948421840341,0.5 -1366,my_land,urban,0.0,0.016000000000000004,0.004,0.0,2011-01-15,0.0,0.0,1.5051071408054234e-06,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0,,,,, -1367,my_land,rural,15.669552067308501,0.1,0.04,20.0,2011-01-15,0.0,0.0,0.002123386097457639,0.0,0.0,0.0,0.0,0.0,6.827663940980878,0.0,0.0,0.0,0.0,0.0,0.0015884253933765246,-0.0917685078675305,0.5 -1368,my_land,urban,0.001999999999999995,0.02,0.062,0.0,2011-01-16,0.0,0.0,1.1929081622882934e-07,0.0,0.0,0.0,0.0,0.0,6.535714286,0.0,0.0,0.0,,,,, -1369,my_land,rural,15.716790049900549,0.1,0.62,20.0,2011-01-16,0.0,0.0,0.0020741160356741754,0.0,0.0,0.0,0.0,0.0,7.004123196046826,0.0,0.0,0.0,0.336842937403165,0.11228097913438834,0.02363810087039755,0.04723798259204902,0.5 -1370,my_land,urban,0.007999999999999993,0.02,0.066,0.0,2011-01-17,0.0,0.0,1.8654846937147137e-07,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1371,my_land,rural,15.757245151905337,0.1,0.66,20.0,2011-01-17,0.0,0.0,0.0020208175242181978,0.0,0.0,0.0,0.0,0.0,7.181585064147456,0.0,0.0,0.0,0.370175739821586,0.12339191327386202,0.02597724489976043,0.040455102004791424,0.5 -1372,my_land,urban,0.0,0.007999999999999993,0.0,0.0,2011-01-18,0.0,0.0,1.1865484693714713e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1373,my_land,rural,15.657245151905338,0.1,0.0,20.0,2011-01-18,0.0,0.0,0.002030817524218198,0.0,0.0,0.0,0.0,0.0,7.360198133018432,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1374,my_land,urban,0.0,0.001,0.001,0.0,2011-01-19,0.0,0.0,2.186548469371471e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1375,my_land,rural,15.566867310238697,0.1,0.01,20.0,2011-01-19,0.0,0.0,0.002040817524218198,0.0,0.0,0.0,0.0,0.0,7.270024766627305,0.0,0.0,0.0,0.0,0.0,0.0003778416666401325,-0.09755683333280264,0.5 -1376,my_land,urban,0.0,0.0,0.0,0.0,2011-01-20,0.0,0.0,3.186548469371471e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1377,my_land,rural,15.466867310238698,0.1,0.0,20.0,2011-01-20,0.0,0.0,0.002050817524218198,0.0,0.0,0.0,0.0,0.0,7.146253095828413,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1378,my_land,urban,0.0,0.0,0.0,0.0,2011-01-21,0.0,0.0,4.1865484693714706e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1379,my_land,rural,15.366867310238698,0.1,0.0,20.0,2011-01-21,0.0,0.0,0.002060817524218198,0.0,0.0,0.0,0.0,0.0,7.018281636978553,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1380,my_land,urban,0.0,0.001,0.001,0.0,2011-01-22,0.0,0.0,5.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1381,my_land,rural,15.276600665363894,0.1,0.01,20.0,2011-01-22,0.0,0.0,0.002070817524218198,0.0,0.0,0.0,0.0,0.0,6.889785204622319,0.0,0.0,0.0,0.0,0.0,0.0002666448748045194,-0.09533289749609038,0.5 -1382,my_land,urban,0.0,0.0,0.0,0.0,2011-01-23,0.0,0.0,6.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1383,my_land,rural,15.176600665363894,0.1,0.0,20.0,2011-01-23,0.0,0.0,0.002080817524218198,0.0,0.0,0.0,0.0,0.0,6.76122315057779,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1384,my_land,urban,0.0,0.0,0.0,0.0,2011-01-24,0.0,0.0,7.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1385,my_land,rural,15.076600665363895,0.1,0.0,20.0,2011-01-24,0.0,0.0,0.002090817524218198,0.0,0.0,0.0,0.0,0.0,6.6326528938222244,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1386,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2011-01-25,0.0,0.0,8.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1387,my_land,rural,15.122280521622555,0.1,0.16999999999999998,20.0,2011-01-25,0.0,0.0,0.002097612747578277,0.0,0.0,0.0,0.0,0.0,6.503665686410261,0.0,0.0,0.0,0.01732810241570433,0.0057760341385681094,0.0012160071870669707,0.04567985625866058,0.5 -1388,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-01-26,0.0,0.0,9.18654846937147e-06,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1389,my_land,rural,15.051951528420787,0.1,0.03,20.0,2011-01-26,0.0,0.0,0.002107612747578277,0.0,0.0,0.0,0.0,0.0,6.204029639051283,0.0,0.0,0.0,0.0,0.0,0.00032899320176825334,-0.07657986403536508,0.5 -1390,my_land,urban,0.0,0.0,0.0,0.0,2011-01-27,0.0,0.0,1.018654846937147e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1391,my_land,rural,14.951951528420787,0.1,0.0,20.0,2011-01-27,0.0,0.0,0.002117612747578277,0.0,0.0,0.0,0.0,0.0,5.882646562131411,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1392,my_land,urban,0.0,0.0,0.0,0.0,2011-01-28,0.0,0.0,1.1186548469371471e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1393,my_land,rural,14.851951528420788,0.1,0.0,20.0,2011-01-28,0.0,0.0,0.002127612747578277,0.0,0.0,0.0,0.0,0.0,5.558545105766426,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1394,my_land,urban,0.0,0.0,0.0,0.0,2011-01-29,0.0,0.0,1.2186548469371472e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1395,my_land,rural,14.751951528420788,0.1,0.0,20.0,2011-01-29,0.0,0.0,0.002137612747578277,0.0,0.0,0.0,0.0,0.0,5.234103852720804,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1396,my_land,urban,0.0,0.0,0.0,0.0,2011-01-30,0.0,0.0,1.3186548469371472e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1397,my_land,rural,14.651951528420788,0.1,0.0,20.0,2011-01-30,0.0,0.0,0.002147612747578277,0.0,0.0,0.0,0.0,0.0,4.909620124340101,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1398,my_land,urban,0.0,0.0,0.0,0.0,2011-01-31,0.0,0.0,1.4186548469371473e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1399,my_land,rural,14.551951528420789,0.1,0.0,20.0,2011-01-31,0.0,0.0,0.0021576127475782772,0.0,0.0,0.0,0.0,0.0,4.585131087292512,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1400,my_land,urban,0.0,0.001,0.001,0.0,2011-02-01,0.0,0.0,1.5186548469371474e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1401,my_land,rural,14.461951528420789,0.1,0.01,20.0,2011-02-01,0.0,0.0,0.0021676127475782772,0.0,0.0,0.0,0.0,0.0,4.260641385911565,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1402,my_land,urban,0.0,0.01,0.01,0.0,2011-02-02,0.0,0.0,1.6186548469371473e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1403,my_land,rural,14.461951528420789,0.1,0.1,20.0,2011-02-02,0.0,0.0,0.0021776127475782773,0.0,0.0,0.0,0.0,0.0,4.6352587449889455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -1404,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-02-03,0.0,0.0,1.7186548469371473e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1405,my_land,rural,14.391951528420789,0.1,0.03,20.0,2011-02-03,0.0,0.0,0.0021876127475782773,0.0,0.0,0.0,0.0,0.0,5.097264485873619,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1406,my_land,urban,0.0,0.005,0.005,0.0,2011-02-04,0.0,0.0,1.8186548469371474e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1407,my_land,rural,14.341951528420788,0.1,0.05,20.0,2011-02-04,0.0,0.0,0.0021976127475782773,0.0,0.0,0.0,0.0,0.0,5.570193775234203,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1408,my_land,urban,0.0,0.002,0.002,0.0,2011-02-05,0.0,0.0,1.9186548469371474e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1409,my_land,rural,14.261951528420788,0.1,0.02,20.0,2011-02-05,0.0,0.0,0.0022076127475782773,0.0,0.0,0.0,0.0,0.0,6.044488507404276,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1410,my_land,urban,0.0,0.0,0.0,0.0,2011-02-06,0.0,0.0,2.0186548469371475e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1411,my_land,rural,14.161951528420788,0.1,0.0,20.0,2011-02-06,0.0,0.0,0.0022176127475782774,0.0,0.0,0.0,0.0,0.0,6.518953920675535,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1412,my_land,urban,0.0,0.002,0.002,0.0,2011-02-07,0.0,0.0,2.1186548469371476e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1413,my_land,rural,14.081951528420788,0.1,0.02,20.0,2011-02-07,0.0,0.0,0.0022276127475782774,0.0,0.0,0.0,0.0,0.0,6.993440668334443,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1414,my_land,urban,0.0,0.001,0.001,0.0,2011-02-08,0.0,0.0,2.2186548469371476e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1415,my_land,rural,13.991951528420788,0.1,0.01,20.0,2011-02-08,0.0,0.0,0.0022376127475782774,0.0,0.0,0.0,0.0,0.0,7.467930083541805,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1416,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-02-09,0.0,0.0,2.3186548469371477e-05,0.0,0.0,0.0,0.0,0.0,6.734226190625,0.0,0.0,0.0,,,,, -1417,my_land,rural,13.921951528420788,0.1,0.03,20.0,2011-02-09,0.0,0.0,0.0022476127475782775,0.0,0.0,0.0,0.0,0.0,7.545991260442727,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1418,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2011-02-10,0.0,0.0,3.3881317890172014e-21,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0,,,,, -1419,my_land,rural,14.321951528420788,0.1,0.5,20.0,2011-02-10,0.0,0.0,0.0022576127475782775,0.0,0.0,0.0,0.0,0.0,7.573203723516676,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 -1420,my_land,urban,0.0,0.008000000000000004,0.008,0.0,2011-02-11,0.0,0.0,1.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0,,,,, -1421,my_land,rural,14.301951528420789,0.1,0.08,20.0,2011-02-11,0.0,0.0,0.0022676127475782775,0.0,0.0,0.0,0.0,0.0,7.596650465439586,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 -1422,my_land,urban,0.0,0.014,0.014,0.0,2011-02-12,0.0,0.0,2.0000000000000033e-06,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0,,,,, -1423,my_land,rural,14.341951528420788,0.1,0.13999999999999999,20.0,2011-02-12,0.0,0.0,0.0022776127475782775,0.0,0.0,0.0,0.0,0.0,7.61820174057379,0.0,0.0,0.0,0.0,0.0,0.0,0.039999999999999994,0.5 -1424,my_land,urban,0.048999999999999995,0.02,0.109,0.0,2011-02-13,0.0,0.0,1.6516853932584288e-06,0.0,0.0,0.0,0.0,0.0,7.25,0.0,0.0,0.0,,,,, -1425,my_land,rural,15.331951528420788,0.1,1.09,20.0,2011-02-13,0.0,0.0,0.0022876127475782776,0.0,0.0,0.0,0.0,0.0,7.6368033215732565,0.0,0.0,0.0,0.0,0.0,0.0,0.9899999999999999,0.5 -1426,my_land,urban,0.0,0.02,0.011000000000000001,0.0,2011-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.25,0.0,0.0,0.0,,,,, -1427,my_land,rural,15.287292427636594,0.1,0.11,20.0,2011-02-14,0.0,0.0,0.0022898348954128933,0.0,0.0,0.0,0.0,0.0,7.660828989390381,0.0,0.0,0.0,0.03894460930873799,0.012981536436245996,0.002732955039209684,-0.04465910078419367,0.5 -1428,my_land,urban,3.469446951953614e-18,0.02,0.046,0.0,2011-02-15,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0,,,,, -1429,my_land,rural,15.441836337522622,0.1,0.45999999999999996,20.0,2011-02-15,0.0,0.0,0.0022711280611144163,0.0,0.0,0.0,0.0,0.0,7.556913083638807,0.0,0.0,0.0,0.1463874642062047,0.04879582140206823,0.010272804505698575,0.1545439098860285,0.5 -1430,my_land,urban,0.0,0.0010000000000000035,0.001,0.0,2011-02-16,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0,,,,, -1431,my_land,rural,15.351534567397657,0.1,0.01,20.0,2011-02-16,0.0,0.0,0.0022811280611144164,0.0,0.0,0.0,0.0,0.0,7.439926635454851,0.0,0.0,0.0,0.0,0.0,0.0003017701249652223,-0.09603540249930444,0.5 -1432,my_land,urban,0.0,0.0,0.0,0.0,2011-02-17,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0,,,,, -1433,my_land,rural,15.251534567397657,0.1,0.0,20.0,2011-02-17,0.0,0.0,0.0022911280611144164,0.0,0.0,0.0,0.0,0.0,7.319834579431857,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1434,my_land,urban,0.01900000000000001,0.02,0.07900000000000001,0.0,2011-02-18,0.0,0.0,9.661016949152546e-07,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0,,,,, -1435,my_land,rural,15.623010855944486,0.1,0.79,20.0,2011-02-18,0.0,0.0,0.002257405043360061,0.0,0.0,0.0,0.0,0.0,7.196141035950563,0.0,0.0,0.0,0.22694814441038447,0.07564938147012816,0.015926185572658562,0.37147628854682885,0.5 -1436,my_land,urban,0.0,0.02,0.005,0.0,2011-02-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0,,,,, -1437,my_land,rural,15.57117154126871,0.1,0.05,20.0,2011-02-19,0.0,0.0,0.002267405043360061,0.0,0.0,0.0,0.0,0.0,7.078423879493821,0.0,0.0,0.0,0.0,0.0,0.0018393146757764549,-0.08678629351552909,0.5 -1438,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2011-02-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0,,,,, -1439,my_land,rural,15.53360362680533,0.1,0.21,20.0,2011-02-20,0.0,0.0,0.0022570354803550835,0.0,0.0,0.0,0.0,0.0,6.957710826758719,0.0,0.0,0.0,0.10514213905515787,0.03504737968505262,0.007378395723168974,-0.03756791446337948,0.5 -1440,my_land,urban,0.0,0.02,0.02,0.0,2011-02-21,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0,,,,, -1441,my_land,rural,15.49830337257616,0.1,0.2,20.0,2011-02-21,0.0,0.0,0.002248388461582275,0.0,0.0,0.0,0.0,0.0,6.837185095978555,0.0,0.0,0.0,0.09640143113828378,0.032133810379427925,0.006765012711458511,-0.03530025422917023,0.5 -1442,my_land,urban,0.0,0.02,0.026,0.0,2011-02-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0,,,,, -1443,my_land,rural,15.489302147770937,0.1,0.26,20.0,2011-02-22,0.0,0.0,0.00223521975270843,0.0,0.0,0.0,0.0,0.0,6.71631631722607,0.0,0.0,0.0,0.12041337267372298,0.04013779089124099,0.008450061240261262,-0.009001224805225257,0.5 -1444,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-02-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0,,,,, -1445,my_land,rural,15.4473733182154,0.1,0.06,20.0,2011-02-23,0.0,0.0,0.00224521975270843,0.0,0.0,0.0,0.0,0.0,6.61632525415326,0.0,0.0,0.0,0.0,0.0,0.0019288295555369996,-0.07857659111073999,0.5 -1446,my_land,urban,0.0,0.0,0.0,0.0,2011-02-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0,,,,, -1447,my_land,rural,15.3473733182154,0.1,0.0,20.0,2011-02-24,0.0,0.0,0.00225521975270843,0.0,0.0,0.0,0.0,0.0,6.518112085019158,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1448,my_land,urban,0.052,0.02,0.112,0.0,2011-02-25,0.0,0.0,1.6956521739130435e-06,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0,,,,, -1449,my_land,rural,15.792503275046013,0.1,1.1199999999999999,20.0,2011-02-25,0.0,0.0,0.0021895036956030484,0.0,0.0,0.0,0.0,0.0,6.414729384950562,0.0,0.0,0.0,0.40959490575818686,0.13653163525272896,0.02874350215846926,0.4451299568306149,0.5 -1450,my_land,urban,0.008,0.02,0.016,0.0,2011-02-26,0.0,0.0,4.4927536231884043e-07,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0,,,,, -1451,my_land,rural,15.720991002471672,0.1,0.16,20.0,2011-02-26,0.0,0.0,0.0021821617861270703,0.0,0.0,0.0,0.0,0.0,6.321179807239788,0.0,0.0,0.0,0.09370249420921728,0.03123416473640576,0.006575613628717002,-0.07151227257434004,0.5 -1452,my_land,urban,-6.938893903907228e-18,0.02,0.04,0.0,2011-02-27,0.0,0.0,-4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1453,my_land,rural,15.70528408672091,0.1,0.4,20.0,2011-02-27,0.0,0.0,0.002151082863518286,0.0,0.0,0.0,0.0,0.0,6.222427676275343,0.0,0.0,0.0,0.22494117747241604,0.07498039249080535,0.01578534578753797,-0.01570691575075939,0.5 -1454,my_land,urban,0.0,0.000999999999999993,0.001,0.0,2011-02-28,0.0,0.0,9.999999999999995e-07,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1455,my_land,rural,15.61489338526455,0.1,0.01,20.0,2011-02-28,0.0,0.0,0.002161082863518286,0.0,0.0,0.0,0.0,0.0,6.126017745034418,0.0,0.0,0.0,0.0,0.0,0.00039070145636025587,-0.09781402912720512,0.5 -1456,my_land,urban,0.0,0.0,0.0,0.0,2011-03-01,0.0,0.0,1.9999999999999995e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1457,my_land,rural,15.51489338526455,0.1,0.0,20.0,2011-03-01,0.0,0.0,0.002171082863518286,0.0,0.0,0.0,0.0,0.0,6.028252218129302,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1458,my_land,urban,0.0,0.0,0.0,0.0,2011-03-02,0.0,0.0,2.9999999999999992e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1459,my_land,rural,15.41489338526455,0.1,0.0,20.0,2011-03-02,0.0,0.0,0.002181082863518286,0.0,0.0,0.0,0.0,0.0,6.0294243845161635,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1460,my_land,urban,0.0,0.0,0.0,0.0,2011-03-03,0.0,0.0,3.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1461,my_land,rural,15.31489338526455,0.1,0.0,20.0,2011-03-03,0.0,0.0,0.002191082863518286,0.0,0.0,0.0,0.0,0.0,6.042963762564521,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1462,my_land,urban,0.0,0.0,0.0,0.0,2011-03-04,0.0,0.0,4.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1463,my_land,rural,15.214893385264551,0.1,0.0,20.0,2011-03-04,0.0,0.0,0.002201082863518286,0.0,0.0,0.0,0.0,0.0,6.058049042070566,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1464,my_land,urban,0.0,0.002,0.002,0.0,2011-03-05,0.0,0.0,5.9999999999999985e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1465,my_land,rural,15.134537875203433,0.1,0.02,20.0,2011-03-05,0.0,0.0,0.002211082863518286,0.0,0.0,0.0,0.0,0.0,6.073327558508821,0.0,0.0,0.0,0.0,0.0,0.00035551006111861415,-0.08711020122237229,0.5 -1466,my_land,urban,0.0,0.0,0.0,0.0,2011-03-06,0.0,0.0,6.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1467,my_land,rural,15.034537875203434,0.1,0.0,20.0,2011-03-06,0.0,0.0,0.002221082863518286,0.0,0.0,0.0,0.0,0.0,6.088630230313604,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1468,my_land,urban,0.0,0.0,0.0,0.0,2011-03-07,0.0,0.0,7.999999999999998e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1469,my_land,rural,14.934537875203434,0.1,0.0,20.0,2011-03-07,0.0,0.0,0.002231082863518286,0.0,0.0,0.0,0.0,0.0,6.103935921539201,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1470,my_land,urban,0.0,0.008,0.008,0.0,2011-03-08,0.0,0.0,8.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1471,my_land,rural,14.914537875203434,0.1,0.08,20.0,2011-03-08,0.0,0.0,0.002241082863518286,0.0,0.0,0.0,0.0,0.0,6.119241990192401,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 -1472,my_land,urban,0.0,0.005,0.005,0.0,2011-03-09,0.0,0.0,9.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1473,my_land,rural,14.864537875203434,0.1,0.05,20.0,2011-03-09,0.0,0.0,0.002251082863518286,0.0,0.0,0.0,0.0,0.0,6.455976677024051,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1474,my_land,urban,0.0,0.0,0.0,0.0,2011-03-10,0.0,0.0,1.1e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1475,my_land,rural,14.764537875203434,0.1,0.0,20.0,2011-03-10,0.0,0.0,0.002261082863518286,0.0,0.0,0.0,0.0,0.0,6.832889941878007,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1476,my_land,urban,0.0,0.0,0.0,0.0,2011-03-11,0.0,0.0,1.2e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1477,my_land,rural,14.664537875203434,0.1,0.0,20.0,2011-03-11,0.0,0.0,0.002271082863518286,0.0,0.0,0.0,0.0,0.0,7.214825528234751,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1478,my_land,urban,0.0,0.013,0.013,0.0,2011-03-12,0.0,0.0,1.3000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1479,my_land,rural,14.694537875203434,0.1,0.13,20.0,2011-03-12,0.0,0.0,0.002281082863518286,0.0,0.0,0.0,0.0,0.0,7.597400616196469,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -1480,my_land,urban,0.0,0.0,0.0,0.0,2011-03-13,0.0,0.0,1.4000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1481,my_land,rural,14.594537875203434,0.1,0.0,20.0,2011-03-13,0.0,0.0,0.0022910828635182862,0.0,0.0,0.0,0.0,0.0,7.980032219774559,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1482,my_land,urban,0.0,0.0,0.0,0.0,2011-03-14,0.0,0.0,1.5000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1483,my_land,rural,14.494537875203434,0.1,0.0,20.0,2011-03-14,0.0,0.0,0.0023010828635182863,0.0,0.0,0.0,0.0,0.0,8.36268259922182,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1484,my_land,urban,0.0,0.0,0.0,0.0,2011-03-15,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1485,my_land,rural,14.394537875203435,0.1,0.0,20.0,2011-03-15,0.0,0.0,0.0023110828635182863,0.0,0.0,0.0,0.0,0.0,8.745335324902728,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1486,my_land,urban,0.0,0.0,0.0,0.0,2011-03-16,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1487,my_land,rural,14.294537875203435,0.1,0.0,20.0,2011-03-16,0.0,0.0,0.0023210828635182863,0.0,0.0,0.0,0.0,0.0,8.929774058362842,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1488,my_land,urban,0.0,0.004,0.004,0.0,2011-03-17,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1489,my_land,rural,14.234537875203435,0.1,0.04,20.0,2011-03-17,0.0,0.0,0.0023310828635182863,0.0,0.0,0.0,0.0,0.0,9.089436042795356,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1490,my_land,urban,0.0,0.02,0.02,0.0,2011-03-18,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1491,my_land,rural,14.334537875203434,0.1,0.2,20.0,2011-03-18,0.0,0.0,0.0023410828635182864,0.0,0.0,0.0,0.0,0.0,9.246050632209082,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 -1492,my_land,urban,0.0,0.0,0.0,0.0,2011-03-19,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1493,my_land,rural,14.234537875203435,0.1,0.0,20.0,2011-03-19,0.0,0.0,0.0023510828635182864,0.0,0.0,0.0,0.0,0.0,9.402184900776136,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1494,my_land,urban,0.0,0.0,0.0,0.0,2011-03-20,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1495,my_land,rural,14.134537875203435,0.1,0.0,20.0,2011-03-20,0.0,0.0,0.0023610828635182864,0.0,0.0,0.0,0.0,0.0,9.558308827097019,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1496,my_land,urban,0.0,0.0,0.0,0.0,2011-03-21,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1497,my_land,rural,14.034537875203435,0.1,0.0,20.0,2011-03-21,0.0,0.0,0.0023710828635182864,0.0,0.0,0.0,0.0,0.0,9.714431460637128,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1498,my_land,urban,0.0,0.0,0.0,0.0,2011-03-22,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1499,my_land,rural,13.934537875203436,0.1,0.0,20.0,2011-03-22,0.0,0.0,0.0023810828635182865,0.0,0.0,0.0,0.0,0.0,9.870553932579641,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1500,my_land,urban,0.0,0.0,0.0,0.0,2011-03-23,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1501,my_land,rural,13.834537875203436,0.1,0.0,20.0,2011-03-23,0.0,0.0,0.0023910828635182865,0.0,0.0,0.0,0.0,0.0,9.927569241572456,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1502,my_land,urban,0.0,0.0,0.0,0.0,2011-03-24,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1503,my_land,rural,13.734537875203436,0.1,0.0,20.0,2011-03-24,0.0,0.0,0.0024010828635182865,0.0,0.0,0.0,0.0,0.0,9.972196155196558,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1504,my_land,urban,0.0,0.0,0.0,0.0,2011-03-25,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1505,my_land,rural,13.634537875203437,0.1,0.0,20.0,2011-03-25,0.0,0.0,0.0024110828635182865,0.0,0.0,0.0,0.0,0.0,10.015274519399568,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1506,my_land,urban,0.0,0.0,0.0,0.0,2011-03-26,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1507,my_land,rural,13.534537875203437,0.1,0.0,20.0,2011-03-26,0.0,0.0,0.0024210828635182866,0.0,0.0,0.0,0.0,0.0,10.058159314924945,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1508,my_land,urban,0.0,0.0,0.0,0.0,2011-03-27,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1509,my_land,rural,13.434537875203437,0.1,0.0,20.0,2011-03-27,0.0,0.0,0.0024310828635182866,0.0,0.0,0.0,0.0,0.0,10.101019914365619,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1510,my_land,urban,0.0,0.0,0.0,0.0,2011-03-28,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1511,my_land,rural,13.334537875203438,0.1,0.0,20.0,2011-03-28,0.0,0.0,0.0024410828635182866,0.0,0.0,0.0,0.0,0.0,10.143877489295704,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1512,my_land,urban,0.0,0.002,0.002,0.0,2011-03-29,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0,,,,, -1513,my_land,rural,13.254537875203438,0.1,0.02,20.0,2011-03-29,0.0,0.0,0.0024510828635182867,0.0,0.0,0.0,0.0,0.0,10.186734686161962,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1514,my_land,urban,0.0,0.02,0.052,0.0,2011-03-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1515,my_land,rural,13.674537875203438,0.1,0.52,20.0,2011-03-30,0.0,0.0,0.0024610828635182867,0.0,0.0,0.0,0.0,0.0,10.227238424452441,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.5 -1516,my_land,urban,0.0,0.0,0.0,0.0,2011-03-31,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1517,my_land,rural,13.574537875203438,0.1,0.0,20.0,2011-03-31,0.0,0.0,0.0024710828635182867,0.0,0.0,0.0,0.0,0.0,10.266797658056555,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1518,my_land,urban,0.0,0.001,0.001,0.0,2011-04-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1519,my_land,rural,13.484537875203438,0.1,0.01,20.0,2011-04-01,0.0,0.0,0.0024810828635182867,0.0,0.0,0.0,0.0,0.0,10.306563989757072,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1520,my_land,urban,0.0,0.0,0.0,0.0,2011-04-02,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1521,my_land,rural,13.384537875203439,0.1,0.0,20.0,2011-04-02,0.0,0.0,0.0024910828635182868,0.0,0.0,0.0,0.0,0.0,10.346356216219634,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1522,my_land,urban,0.0,0.013,0.013,0.0,2011-04-03,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1523,my_land,rural,13.414537875203438,0.1,0.13,20.0,2011-04-03,0.0,0.0,0.0025010828635182868,0.0,0.0,0.0,0.0,0.0,10.386182642152407,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -1524,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-04-04,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1525,my_land,rural,13.374537875203439,0.1,0.06,20.0,2011-04-04,0.0,0.0,0.002511082863518287,0.0,0.0,0.0,0.0,0.0,10.42595140276905,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -1526,my_land,urban,0.0,0.0,0.0,0.0,2011-04-05,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1527,my_land,rural,13.274537875203439,0.1,0.0,20.0,2011-04-05,0.0,0.0,0.002521082863518287,0.0,0.0,0.0,0.0,0.0,10.465743925346132,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1528,my_land,urban,0.0,0.0,0.0,0.0,2011-04-06,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1529,my_land,rural,13.17453787520344,0.1,0.0,20.0,2011-04-06,0.0,0.0,0.002531082863518287,0.0,0.0,0.0,0.0,0.0,10.817592990668267,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1530,my_land,urban,0.0,0.0,0.0,0.0,2011-04-07,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1531,my_land,rural,13.07453787520344,0.1,0.0,20.0,2011-04-07,0.0,0.0,0.002541082863518287,0.0,0.0,0.0,0.0,0.0,11.208449123833534,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1532,my_land,urban,0.0,0.0,0.0,0.0,2011-04-08,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1533,my_land,rural,12.97453787520344,0.1,0.0,20.0,2011-04-08,0.0,0.0,0.002551082863518287,0.0,0.0,0.0,0.0,0.0,11.604181140479191,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1534,my_land,urban,0.0,0.0,0.0,0.0,2011-04-09,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1535,my_land,rural,12.87453787520344,0.1,0.0,20.0,2011-04-09,0.0,0.0,0.002561082863518287,0.0,0.0,0.0,0.0,0.0,12.0005226425599,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1536,my_land,urban,0.0,0.0,0.0,0.0,2011-04-10,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1537,my_land,rural,12.77453787520344,0.1,0.0,20.0,2011-04-10,0.0,0.0,0.002571082863518287,0.0,0.0,0.0,0.0,0.0,12.396940330319989,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1538,my_land,urban,0.0,0.002,0.002,0.0,2011-04-11,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1539,my_land,rural,12.69453787520344,0.1,0.02,20.0,2011-04-11,0.0,0.0,0.002581082863518287,0.0,0.0,0.0,0.0,0.0,12.793367541289998,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1540,my_land,urban,0.0,0.0,0.0,0.0,2011-04-12,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1541,my_land,rural,12.594537875203441,0.1,0.0,20.0,2011-04-12,0.0,0.0,0.002591082863518287,0.0,0.0,0.0,0.0,0.0,12.80542094266125,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1542,my_land,urban,0.0,0.007,0.007,0.0,2011-04-13,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1543,my_land,rural,12.564537875203442,0.1,0.06999999999999999,20.0,2011-04-13,0.0,0.0,0.002601082863518287,0.0,0.0,0.0,0.0,0.0,12.769427617832656,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 -1544,my_land,urban,0.0,0.0,0.0,0.0,2011-04-14,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1545,my_land,rural,12.464537875203442,0.1,0.0,20.0,2011-04-14,0.0,0.0,0.002611082863518287,0.0,0.0,0.0,0.0,0.0,12.727428452229082,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1546,my_land,urban,0.0,0.0,0.0,0.0,2011-04-15,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1547,my_land,rural,12.364537875203442,0.1,0.0,20.0,2011-04-15,0.0,0.0,0.002621082863518287,0.0,0.0,0.0,0.0,0.0,12.684678556528636,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1548,my_land,urban,0.0,0.0,0.0,0.0,2011-04-16,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1549,my_land,rural,12.264537875203443,0.1,0.0,20.0,2011-04-16,0.0,0.0,0.002631082863518287,0.0,0.0,0.0,0.0,0.0,12.641834819566078,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1550,my_land,urban,0.0,0.0,0.0,0.0,2011-04-17,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1551,my_land,rural,12.164537875203443,0.1,0.0,20.0,2011-04-17,0.0,0.0,0.002641082863518287,0.0,0.0,0.0,0.0,0.0,12.598979352445761,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1552,my_land,urban,0.0,0.0,0.0,0.0,2011-04-18,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1553,my_land,rural,12.064537875203444,0.1,0.0,20.0,2011-04-18,0.0,0.0,0.002651082863518287,0.0,0.0,0.0,0.0,0.0,12.55612241905572,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1554,my_land,urban,0.0,0.0,0.0,0.0,2011-04-19,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1555,my_land,rural,11.964537875203444,0.1,0.0,20.0,2011-04-19,0.0,0.0,0.002661082863518287,0.0,0.0,0.0,0.0,0.0,12.513265302381967,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1556,my_land,urban,0.0,0.0,0.0,0.0,2011-04-20,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1557,my_land,rural,11.864537875203444,0.1,0.0,20.0,2011-04-20,0.0,0.0,0.0026710828635182872,0.0,0.0,0.0,0.0,0.0,12.695408162797747,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1558,my_land,urban,0.0,0.0,0.0,0.0,2011-04-21,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1559,my_land,rural,11.764537875203445,0.1,0.0,20.0,2011-04-21,0.0,0.0,0.0026810828635182873,0.0,0.0,0.0,0.0,0.0,12.90567602034972,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1560,my_land,urban,0.0,0.0,0.0,0.0,2011-04-22,0.0,0.0,2.3000000000000007e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1561,my_land,rural,11.664537875203445,0.1,0.0,20.0,2011-04-22,0.0,0.0,0.0026910828635182873,0.0,0.0,0.0,0.0,0.0,13.119459502543716,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1562,my_land,urban,0.0,0.001,0.001,0.0,2011-04-23,0.0,0.0,2.4000000000000007e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1563,my_land,rural,11.574537875203445,0.1,0.01,20.0,2011-04-23,0.0,0.0,0.0027010828635182873,0.0,0.0,0.0,0.0,0.0,13.333682437817965,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1564,my_land,urban,0.0,0.0,0.0,0.0,2011-04-24,0.0,0.0,2.5000000000000008e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1565,my_land,rural,11.474537875203445,0.1,0.0,20.0,2011-04-24,0.0,0.0,0.0027110828635182873,0.0,0.0,0.0,0.0,0.0,13.547960304727248,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1566,my_land,urban,0.0,0.0,0.0,0.0,2011-04-25,0.0,0.0,2.600000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1567,my_land,rural,11.374537875203446,0.1,0.0,20.0,2011-04-25,0.0,0.0,0.0027210828635182874,0.0,0.0,0.0,0.0,0.0,13.762245038090906,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1568,my_land,urban,0.0,0.001,0.001,0.0,2011-04-26,0.0,0.0,2.700000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1569,my_land,rural,11.284537875203446,0.1,0.01,20.0,2011-04-26,0.0,0.0,0.0027310828635182874,0.0,0.0,0.0,0.0,0.0,13.976530629761365,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1570,my_land,urban,0.0,0.0,0.0,0.0,2011-04-27,0.0,0.0,2.800000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1571,my_land,rural,11.184537875203446,0.1,0.0,20.0,2011-04-27,0.0,0.0,0.0027410828635182874,0.0,0.0,0.0,0.0,0.0,13.810459183720171,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1572,my_land,urban,0.0,0.001,0.001,0.0,2011-04-28,0.0,0.0,2.900000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1573,my_land,rural,11.094537875203446,0.1,0.01,20.0,2011-04-28,0.0,0.0,0.0027510828635182874,0.0,0.0,0.0,0.0,0.0,13.596843115465022,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1574,my_land,urban,0.0,0.007,0.007,0.0,2011-04-29,0.0,0.0,3.000000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1575,my_land,rural,11.064537875203447,0.1,0.06999999999999999,20.0,2011-04-29,0.0,0.0,0.0027610828635182875,0.0,0.0,0.0,0.0,0.0,13.377283961933127,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 -1576,my_land,urban,0.0,0.001,0.001,0.0,2011-04-30,0.0,0.0,3.100000000000001e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1577,my_land,rural,10.974537875203447,0.1,0.01,20.0,2011-04-30,0.0,0.0,0.0027710828635182875,0.0,0.0,0.0,0.0,0.0,13.156981922741641,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1578,my_land,urban,0.0,0.0,0.0,0.0,2011-05-01,0.0,0.0,3.2000000000000005e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1579,my_land,rural,10.874537875203448,0.1,0.0,20.0,2011-05-01,0.0,0.0,0.0027810828635182875,0.0,0.0,0.0,0.0,0.0,12.936587022842707,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1580,my_land,urban,0.0,0.0,0.0,0.0,2011-05-02,0.0,0.0,3.3e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1581,my_land,rural,10.774537875203448,0.1,0.0,20.0,2011-05-02,0.0,0.0,0.0027910828635182875,0.0,0.0,0.0,0.0,0.0,12.716180522855339,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1582,my_land,urban,0.0,0.0,0.0,0.0,2011-05-03,0.0,0.0,3.4e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1583,my_land,rural,10.674537875203448,0.1,0.0,20.0,2011-05-03,0.0,0.0,0.0028010828635182876,0.0,0.0,0.0,0.0,0.0,12.49577256535692,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1584,my_land,urban,0.0,0.0,0.0,0.0,2011-05-04,0.0,0.0,3.5e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1585,my_land,rural,10.574537875203449,0.1,0.0,20.0,2011-05-04,0.0,0.0,0.0028110828635182876,0.0,0.0,0.0,0.0,0.0,12.808846573169614,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1586,my_land,urban,0.0,0.0,0.0,0.0,2011-05-05,0.0,0.0,3.5999999999999994e-05,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0,,,,, -1587,my_land,rural,10.474537875203449,0.1,0.0,20.0,2011-05-05,0.0,0.0,0.0028210828635182876,0.0,0.0,0.0,0.0,0.0,13.188605819146202,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1588,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2011-05-06,0.0,0.0,1.615492957746479e-05,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0,,,,, -1589,my_land,rural,11.28453787520345,0.1,0.91,20.0,2011-05-06,0.0,0.0,0.0028310828635182876,0.0,0.0,0.0,0.0,0.0,13.586111882461028,0.0,0.0,0.0,0.0,0.0,0.0,0.8099999999999999,0.5 -1590,my_land,urban,0.13999999999999999,0.02,0.16899999999999998,0.0,2011-05-07,0.0,0.0,1.3342723004694836e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1591,my_land,rural,12.87453787520345,0.1,1.69,20.0,2011-05-07,0.0,0.0,0.0028410828635182877,0.0,0.0,0.0,0.0,0.0,13.984080931580932,0.0,0.0,0.0,0.0,0.0,0.0,1.5899999999999999,0.5 -1592,my_land,urban,0.08499999999999999,0.02,0.005,0.0,2011-05-08,0.0,0.0,9.753051643192489e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1593,my_land,rural,12.824537875203449,0.1,0.05,20.0,2011-05-08,0.0,0.0,0.0028510828635182877,0.0,0.0,0.0,0.0,0.0,14.357385113947617,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1594,my_land,urban,0.030999999999999993,0.02,0.005999999999999999,0.0,2011-05-09,0.0,0.0,4.694994379422072e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1595,my_land,rural,12.78453787520345,0.1,0.06,20.0,2011-05-09,0.0,0.0,0.0028610828635182877,0.0,0.0,0.0,0.0,0.0,14.744673139243453,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -1596,my_land,urban,0.0,0.02,0.001,0.0,2011-05-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1597,my_land,rural,12.69453787520345,0.1,0.01,20.0,2011-05-10,0.0,0.0,0.0028710828635182878,0.0,0.0,0.0,0.0,0.0,14.589512714905432,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1598,my_land,urban,0.0,0.001,0.001,0.0,2011-05-11,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1599,my_land,rural,12.60453787520345,0.1,0.01,20.0,2011-05-11,0.0,0.0,0.0028810828635182878,0.0,0.0,0.0,0.0,0.0,14.36654623436318,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1600,my_land,urban,0.0,0.004,0.004,0.0,2011-05-12,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1601,my_land,rural,12.54453787520345,0.1,0.04,20.0,2011-05-12,0.0,0.0,0.002891082863518288,0.0,0.0,0.0,0.0,0.0,14.135103996795399,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1602,my_land,urban,0.0,0.0,0.0,0.0,2011-05-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1603,my_land,rural,12.44453787520345,0.1,0.0,20.0,2011-05-13,0.0,0.0,0.002901082863518288,0.0,0.0,0.0,0.0,0.0,13.902602282099425,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1604,my_land,urban,0.0,0.002,0.002,0.0,2011-05-14,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1605,my_land,rural,12.36453787520345,0.1,0.02,20.0,2011-05-14,0.0,0.0,0.002911082863518288,0.0,0.0,0.0,0.0,0.0,13.669968140262428,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1606,my_land,urban,0.0,0.0,0.0,0.0,2011-05-15,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1607,my_land,rural,12.26453787520345,0.1,0.0,20.0,2011-05-15,0.0,0.0,0.002921082863518288,0.0,0.0,0.0,0.0,0.0,13.437317445032805,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1608,my_land,urban,0.0,0.0,0.0,0.0,2011-05-16,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1609,my_land,rural,12.16453787520345,0.1,0.0,20.0,2011-05-16,0.0,0.0,0.002931082863518288,0.0,0.0,0.0,0.0,0.0,13.2046646806291,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1610,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-05-17,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1611,my_land,rural,12.09453787520345,0.1,0.03,20.0,2011-05-17,0.0,0.0,0.002941082863518288,0.0,0.0,0.0,0.0,0.0,13.199020585078639,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1612,my_land,urban,0.0,0.002,0.002,0.0,2011-05-18,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1613,my_land,rural,12.01453787520345,0.1,0.02,20.0,2011-05-18,0.0,0.0,0.002951082863518288,0.0,0.0,0.0,0.0,0.0,13.221752573134829,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1614,my_land,urban,0.0,0.0,0.0,0.0,2011-05-19,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1615,my_land,rural,11.91453787520345,0.1,0.0,20.0,2011-05-19,0.0,0.0,0.002961082863518288,0.0,0.0,0.0,0.0,0.0,13.248031571641853,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1616,my_land,urban,0.0,0.0,0.0,0.0,2011-05-20,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1617,my_land,rural,11.81453787520345,0.1,0.0,20.0,2011-05-20,0.0,0.0,0.002971082863518288,0.0,0.0,0.0,0.0,0.0,13.274753946455233,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1618,my_land,urban,0.0,0.016,0.016,0.0,2011-05-21,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1619,my_land,rural,11.874537875203451,0.1,0.16,20.0,2011-05-21,0.0,0.0,0.002981082863518288,0.0,0.0,0.0,0.0,0.0,13.30189901826509,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 -1620,my_land,urban,0.0,0.004,0.004,0.0,2011-05-22,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1621,my_land,rural,11.81453787520345,0.1,0.04,20.0,2011-05-22,0.0,0.0,0.002991082863518288,0.0,0.0,0.0,0.0,0.0,13.328362377283137,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1622,my_land,urban,0.0,0.005,0.005,0.0,2011-05-23,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1623,my_land,rural,11.76453787520345,0.1,0.05,20.0,2011-05-23,0.0,0.0,0.003001082863518288,0.0,0.0,0.0,0.0,0.0,13.355107797160391,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1624,my_land,urban,0.0,0.0,0.0,0.0,2011-05-24,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1625,my_land,rural,11.66453787520345,0.1,0.0,20.0,2011-05-24,0.0,0.0,0.003011082863518288,0.0,0.0,0.0,0.0,0.0,13.381888474645049,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1626,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2011-05-25,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0,,,,, -1627,my_land,rural,11.67453787520345,0.1,0.11,20.0,2011-05-25,0.0,0.0,0.003021082863518288,0.0,0.0,0.0,0.0,0.0,13.358507345932319,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 -1628,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2011-05-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, -1629,my_land,rural,11.86453787520345,0.1,0.29,20.0,2011-05-26,0.0,0.0,0.003031082863518288,0.0,0.0,0.0,0.0,0.0,13.329783036092527,0.0,0.0,0.0,0.0,0.0,0.0,0.18999999999999997,0.5 -1630,my_land,urban,0.0,0.001,0.001,0.0,2011-05-27,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, -1631,my_land,rural,11.77453787520345,0.1,0.01,20.0,2011-05-27,0.0,0.0,0.003041082863518288,0.0,0.0,0.0,0.0,0.0,13.298365734511565,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1632,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-05-28,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, -1633,my_land,rural,11.70453787520345,0.1,0.03,20.0,2011-05-28,0.0,0.0,0.0030510828635182882,0.0,0.0,0.0,0.0,0.0,13.267652861813946,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1634,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2011-05-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0,,,,, -1635,my_land,rural,11.71453787520345,0.1,0.11,20.0,2011-05-29,0.0,0.0,0.0030610828635182883,0.0,0.0,0.0,0.0,0.0,13.237081790623836,0.0,0.0,0.0,0.0,0.0,0.0,0.010000000000000005,0.5 -1636,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2011-05-30,0.0,0.0,8.470329472543003e-22,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1637,my_land,rural,12.11453787520345,0.1,0.5,20.0,2011-05-30,0.0,0.0,0.0030710828635182883,0.0,0.0,0.0,0.0,0.0,13.208478933570495,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 -1638,my_land,urban,0.0,3.469446951953614e-18,0.0,0.0,2011-05-31,0.0,0.0,1.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1639,my_land,rural,12.01453787520345,0.1,0.0,20.0,2011-05-31,0.0,0.0,0.0030810828635182883,0.0,0.0,0.0,0.0,0.0,13.176059866696312,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1640,my_land,urban,0.0,0.0,0.0,0.0,2011-06-01,0.0,0.0,2.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1641,my_land,rural,11.91453787520345,0.1,0.0,20.0,2011-06-01,0.0,0.0,0.0030910828635182883,0.0,0.0,0.0,0.0,0.0,13.354150338337039,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1642,my_land,urban,0.0,0.0,0.0,0.0,2011-06-02,0.0,0.0,3.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1643,my_land,rural,11.81453787520345,0.1,0.0,20.0,2011-06-02,0.0,0.0,0.0031010828635182884,0.0,0.0,0.0,0.0,0.0,13.558554509792133,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1644,my_land,urban,0.0,0.0,0.0,0.0,2011-06-03,0.0,0.0,4.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1645,my_land,rural,11.714537875203451,0.1,0.0,20.0,2011-06-03,0.0,0.0,0.0031110828635182884,0.0,0.0,0.0,0.0,0.0,13.766247886224019,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1646,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-06-04,0.0,0.0,5e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1647,my_land,rural,11.674537875203452,0.1,0.06,20.0,2011-06-04,0.0,0.0,0.0031210828635182884,0.0,0.0,0.0,0.0,0.0,13.974352413278003,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -1648,my_land,urban,0.0,0.014,0.014,0.0,2011-06-05,0.0,0.0,6e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1649,my_land,rural,11.714537875203451,0.1,0.13999999999999999,20.0,2011-06-05,0.0,0.0,0.0031310828635182884,0.0,0.0,0.0,0.0,0.0,14.182909516565209,0.0,0.0,0.0,0.0,0.0,0.0,0.039999999999999994,0.5 -1650,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-06-06,0.0,0.0,7e-06,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0,,,,, -1651,my_land,rural,11.64453787520345,0.1,0.03,20.0,2011-06-06,0.0,0.0,0.0031410828635182885,0.0,0.0,0.0,0.0,0.0,14.390720834570653,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1652,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2011-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0,,,,, -1653,my_land,rural,11.75453787520345,0.1,0.21,20.0,2011-06-07,0.0,0.0,0.0031510828635182885,0.0,0.0,0.0,0.0,0.0,14.600020719728931,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 -1654,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-06-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0,,,,, -1655,my_land,rural,11.714537875203451,0.1,0.06,20.0,2011-06-08,0.0,0.0,0.0031610828635182885,0.0,0.0,0.0,0.0,0.0,14.600895444966117,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -1656,my_land,urban,0.0,0.001,0.001,0.0,2011-06-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0,,,,, -1657,my_land,rural,11.624537875203451,0.1,0.01,20.0,2011-06-09,0.0,0.0,0.0031710828635182885,0.0,0.0,0.0,0.0,0.0,14.576897648120765,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1658,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2011-06-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0,,,,, -1659,my_land,rural,11.89453787520345,0.1,0.37,20.0,2011-06-10,0.0,0.0,0.0031810828635182886,0.0,0.0,0.0,0.0,0.0,14.55185266947679,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.5 -1660,my_land,urban,0.0,0.02,0.039,0.0,2011-06-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0,,,,, -1661,my_land,rural,12.18453787520345,0.1,0.38999999999999996,20.0,2011-06-11,0.0,0.0,0.0031910828635182886,0.0,0.0,0.0,0.0,0.0,14.52469380853458,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.5 -1662,my_land,urban,0.11299999999999999,0.02,0.173,0.0,2011-06-12,0.0,0.0,7.385620915032679e-07,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1663,my_land,rural,13.814537875203449,0.1,1.73,20.0,2011-06-12,0.0,0.0,0.0032010828635182886,0.0,0.0,0.0,0.0,0.0,14.505590492495918,0.0,0.0,0.0,0.0,0.0,0.0,1.63,0.5 -1664,my_land,urban,0.052999999999999985,0.02,0.0,0.0,2011-06-13,0.0,0.0,9.90793449996486e-07,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1665,my_land,rural,13.71453787520345,0.1,0.0,20.0,2011-06-13,0.0,0.0,0.0032110828635182886,0.0,0.0,0.0,0.0,0.0,14.468555956561989,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1666,my_land,urban,0.0,0.02,0.0,0.0,2011-06-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1667,my_land,rural,13.61453787520345,0.1,0.0,20.0,2011-06-14,0.0,0.0,0.0032210828635182887,0.0,0.0,0.0,0.0,0.0,14.439819494570251,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1668,my_land,urban,0.0,0.016,0.016,0.0,2011-06-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1669,my_land,rural,13.67453787520345,0.1,0.16,20.0,2011-06-15,0.0,0.0,0.0032310828635182887,0.0,0.0,0.0,0.0,0.0,14.54921292699662,0.0,0.0,0.0,0.0,0.0,0.0,0.060000000000000005,0.5 -1670,my_land,urban,0.0,0.009,0.009,0.0,2011-06-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1671,my_land,rural,13.66453787520345,0.1,0.09,20.0,2011-06-16,0.0,0.0,0.0032410828635182887,0.0,0.0,0.0,0.0,0.0,14.67490161587458,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1672,my_land,urban,0.0,0.02,0.039,0.0,2011-06-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, -1673,my_land,rural,13.95453787520345,0.1,0.38999999999999996,20.0,2011-06-17,0.0,0.0,0.0032510828635182887,0.0,0.0,0.0,0.0,0.0,14.805580792775473,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.5 -1674,my_land,urban,1.734723475976807e-18,0.02,0.033,0.0,2011-06-18,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0,,,,, -1675,my_land,rural,14.18453787520345,0.1,0.33,20.0,2011-06-18,0.0,0.0,0.0032610828635182888,0.0,0.0,0.0,0.0,0.0,14.93391247116065,0.0,0.0,0.0,0.0,0.0,0.0,0.22999999999999998,0.5 -1676,my_land,urban,0.0,1.734723475976807e-18,0.0,0.0,2011-06-19,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0,,,,, -1677,my_land,rural,14.08453787520345,0.1,0.0,20.0,2011-06-19,0.0,0.0,0.003271082863518289,0.0,0.0,0.0,0.0,0.0,15.060489058895083,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1678,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2011-06-20,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, -1679,my_land,rural,14.48453787520345,0.1,0.5,20.0,2011-06-20,0.0,0.0,0.003281082863518289,0.0,0.0,0.0,0.0,0.0,15.192313180372826,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.5 -1680,my_land,urban,0.0,0.010000000000000004,0.01,0.0,2011-06-21,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, -1681,my_land,rural,14.48453787520345,0.1,0.1,20.0,2011-06-21,0.0,0.0,0.003291082863518289,0.0,0.0,0.0,0.0,0.0,15.317789147546607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -1682,my_land,urban,0.0,0.004,0.004,0.0,2011-06-22,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, -1683,my_land,rural,14.42453787520345,0.1,0.04,20.0,2011-06-22,0.0,0.0,0.003301082863518289,0.0,0.0,0.0,0.0,0.0,15.550437925943326,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1684,my_land,urban,0.0,0.008,0.008,0.0,2011-06-23,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0,,,,, -1685,my_land,rural,14.40453787520345,0.1,0.08,20.0,2011-06-23,0.0,0.0,0.003311082863518289,0.0,0.0,0.0,0.0,0.0,15.796483313242918,0.0,0.0,0.0,0.0,0.0,0.0,-0.019999999999999997,0.5 -1686,my_land,urban,0.007999999999999993,0.02,0.06799999999999999,0.0,2011-06-24,0.0,0.0,6.666666666666661e-07,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1687,my_land,rural,14.98453787520345,0.1,0.6799999999999999,20.0,2011-06-24,0.0,0.0,0.003321082863518289,0.0,0.0,0.0,0.0,0.0,16.050475541495203,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.5 -1688,my_land,urban,0.0,0.007999999999999993,0.0,0.0,2011-06-25,0.0,0.0,1.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1689,my_land,rural,14.884537875203451,0.1,0.0,20.0,2011-06-25,0.0,0.0,0.003331082863518289,0.0,0.0,0.0,0.0,0.0,16.2929165876869,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1690,my_land,urban,0.0,0.0,0.0,0.0,2011-06-26,0.0,0.0,2.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1691,my_land,rural,14.784537875203451,0.1,0.0,20.0,2011-06-26,0.0,0.0,0.003341082863518289,0.0,0.0,0.0,0.0,0.0,16.540186000960862,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1692,my_land,urban,0.0,0.001,0.001,0.0,2011-06-27,0.0,0.0,3.6666666666666657e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1693,my_land,rural,14.694537875203451,0.1,0.01,20.0,2011-06-27,0.0,0.0,0.003351082863518289,0.0,0.0,0.0,0.0,0.0,16.788058967620106,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1694,my_land,urban,0.0,0.0,0.0,0.0,2011-06-28,0.0,0.0,4.6666666666666655e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1695,my_land,rural,14.594537875203452,0.1,0.0,20.0,2011-06-28,0.0,0.0,0.003361082863518289,0.0,0.0,0.0,0.0,0.0,17.036007370952515,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1696,my_land,urban,0.0,0.0,0.0,0.0,2011-06-29,0.0,0.0,5.666666666666665e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1697,my_land,rural,14.494537875203452,0.1,0.0,20.0,2011-06-29,0.0,0.0,0.003371082863518289,0.0,0.0,0.0,0.0,0.0,17.037536638869067,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1698,my_land,urban,0.0,0.0,0.0,0.0,2011-06-30,0.0,0.0,6.666666666666665e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1699,my_land,rural,14.394537875203453,0.1,0.0,20.0,2011-06-30,0.0,0.0,0.003381082863518289,0.0,0.0,0.0,0.0,0.0,17.008263507358635,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1700,my_land,urban,0.0,0.0,0.0,0.0,2011-07-01,0.0,0.0,7.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1701,my_land,rural,14.294537875203453,0.1,0.0,20.0,2011-07-01,0.0,0.0,0.003391082863518289,0.0,0.0,0.0,0.0,0.0,16.975140083419827,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1702,my_land,urban,0.0,0.0,0.0,0.0,2011-07-02,0.0,0.0,8.666666666666666e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1703,my_land,rural,14.194537875203453,0.1,0.0,20.0,2011-07-02,0.0,0.0,0.003401082863518289,0.0,0.0,0.0,0.0,0.0,16.94153536542748,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1704,my_land,urban,0.0,0.0,0.0,0.0,2011-07-03,0.0,0.0,9.666666666666667e-06,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1705,my_land,rural,14.094537875203454,0.1,0.0,20.0,2011-07-03,0.0,0.0,0.003411082863518289,0.0,0.0,0.0,0.0,0.0,16.90787049317844,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1706,my_land,urban,0.0,0.0,0.0,0.0,2011-07-04,0.0,0.0,1.0666666666666667e-05,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0,,,,, -1707,my_land,rural,13.994537875203454,0.1,0.0,20.0,2011-07-04,0.0,0.0,0.003421082863518289,0.0,0.0,0.0,0.0,0.0,16.874198094147307,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1708,my_land,urban,0.0,0.02,0.026,0.0,2011-07-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0,,,,, -1709,my_land,rural,14.154537875203454,0.1,0.26,20.0,2011-07-05,0.0,0.0,0.0034310828635182892,0.0,0.0,0.0,0.0,0.0,16.84208016670718,0.0,0.0,0.0,0.0,0.0,0.0,0.15999999999999998,0.5 -1710,my_land,urban,0.0,0.02,0.041,0.0,2011-07-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0,,,,, -1711,my_land,rural,14.464537875203455,0.1,0.41000000000000003,20.0,2011-07-06,0.0,0.0,0.0034410828635182892,0.0,0.0,0.0,0.0,0.0,16.745460203442025,0.0,0.0,0.0,0.0,0.0,0.0,0.31000000000000005,0.5 -1712,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2011-07-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0,,,,, -1713,my_land,rural,14.704537875203455,0.1,0.33999999999999997,20.0,2011-07-07,0.0,0.0,0.0034510828635182893,0.0,0.0,0.0,0.0,0.0,16.638930969321937,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 -1714,my_land,urban,0.05599999999999999,0.02,0.11599999999999999,0.0,2011-07-08,0.0,0.0,5.833333333333332e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1715,my_land,rural,15.764537875203455,0.1,1.16,20.0,2011-07-08,0.0,0.0,0.0034610828635182893,0.0,0.0,0.0,0.0,0.0,16.537944099010673,0.0,0.0,0.0,0.0,0.0,0.0,1.0599999999999998,0.5 -1716,my_land,urban,0.003999999999999983,0.02,0.008,0.0,2011-07-09,0.0,0.0,1.4393939393939329e-07,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1717,my_land,rural,15.741298845968815,0.1,0.08,20.0,2011-07-09,0.0,0.0,0.0034710828635182893,0.0,0.0,0.0,0.0,0.0,16.423493012376337,0.0,0.0,0.0,0.0,0.0,0.003239029234640413,-0.08478058469280826,0.5 -1718,my_land,urban,0.0,0.003999999999999983,0.0,0.0,2011-07-10,0.0,0.0,1.1439393939393932e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1719,my_land,rural,15.641298845968816,0.1,0.0,20.0,2011-07-10,0.0,0.0,0.0034810828635182894,0.0,0.0,0.0,0.0,0.0,16.315436626547044,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1720,my_land,urban,0.0,0.0,0.0,0.0,2011-07-11,0.0,0.0,2.1439393939393934e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1721,my_land,rural,15.541298845968816,0.1,0.0,20.0,2011-07-11,0.0,0.0,0.0034910828635182894,0.0,0.0,0.0,0.0,0.0,16.208179578318383,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1722,my_land,urban,0.0,0.0,0.0,0.0,2011-07-12,0.0,0.0,3.143939393939393e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1723,my_land,rural,15.441298845968817,0.1,0.0,20.0,2011-07-12,0.0,0.0,0.0035010828635182894,0.0,0.0,0.0,0.0,0.0,16.101022447289797,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1724,my_land,urban,0.0,0.0,0.0,0.0,2011-07-13,0.0,0.0,4.143939393939393e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1725,my_land,rural,15.341298845968817,0.1,0.0,20.0,2011-07-13,0.0,0.0,0.0035110828635182894,0.0,0.0,0.0,0.0,0.0,15.993877805911227,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1726,my_land,urban,0.0,0.0,0.0,0.0,2011-07-14,0.0,0.0,5.143939393939393e-06,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0,,,,, -1727,my_land,rural,15.241298845968817,0.1,0.0,20.0,2011-07-14,0.0,0.0,0.0035210828635182895,0.0,0.0,0.0,0.0,0.0,15.886734725738906,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1728,my_land,urban,0.0,0.02,0.053,0.0,2011-07-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0,,,,, -1729,my_land,rural,15.464490506753846,0.1,0.53,20.0,2011-07-15,0.0,0.0,0.00348678515871001,0.0,0.0,0.0,0.0,0.0,15.782399667398817,0.0,0.0,0.0,0.14735094169066731,0.049116980563555776,0.010340416960748586,0.22319166078502828,0.5 -1730,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2011-07-16,0.0,0.0,4.0298507462686564e-07,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0,,,,, -1731,my_land,rural,15.69264625207895,0.1,0.8699999999999999,20.0,2011-07-16,0.0,0.0,0.003385726167746629,0.0,0.0,0.0,0.0,0.0,15.677484560195461,0.0,0.0,0.0,0.38606403145586426,0.1286880104852881,0.027092212733744864,0.2281557453251027,0.5 -1732,my_land,urban,0.0,0.02,0.031,0.0,2011-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1733,my_land,rural,15.66243205082174,0.1,0.31,20.0,2011-07-17,0.0,0.0,0.0033469605557878853,0.0,0.0,0.0,0.0,0.0,15.567177649952761,0.0,0.0,0.0,0.17115261839575974,0.057050872798586574,0.012010710062860332,-0.03021420125720667,0.5 -1734,my_land,urban,0.0,0.011000000000000001,0.011000000000000001,0.0,2011-07-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1735,my_land,rural,15.588987616296457,0.1,0.11,20.0,2011-07-18,0.0,0.0,0.0033399763026264614,0.0,0.0,0.0,0.0,0.0,15.45843360239732,0.0,0.0,0.0,0.05945415959926334,0.019818053199754448,0.004172221726264094,-0.07344443452528188,0.5 -1736,my_land,urban,0.0,0.002,0.002,0.0,2011-07-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1737,my_land,rural,15.508273166666333,0.1,0.02,20.0,2011-07-19,0.0,0.0,0.0033499763026264614,0.0,0.0,0.0,0.0,0.0,15.351054200299668,0.0,0.0,0.0,0.0,0.0,0.000714449630123085,-0.09428899260246171,0.5 -1738,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-07-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1739,my_land,rural,15.466300129146104,0.1,0.06,20.0,2011-07-20,0.0,0.0,0.0033599763026264614,0.0,0.0,0.0,0.0,0.0,15.385846057537462,0.0,0.0,0.0,0.0,0.0,0.0019730375202293518,-0.07946075040458704,0.5 -1740,my_land,urban,0.0,0.008,0.008,0.0,2011-07-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1741,my_land,rural,15.44380288218248,0.1,0.08,20.0,2011-07-21,0.0,0.0,0.0033699763026264614,0.0,0.0,0.0,0.0,0.0,15.438409329692183,0.0,0.0,0.0,0.0,0.0,0.0024972469636243767,-0.06994493927248753,0.5 -1742,my_land,urban,0.0,0.001,0.001,0.0,2011-07-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1743,my_land,rural,15.353500258485838,0.1,0.01,20.0,2011-07-22,0.0,0.0,0.0033799763026264615,0.0,0.0,0.0,0.0,0.0,15.493194021211522,0.0,0.0,0.0,0.0,0.0,0.00030262369664302985,-0.0960524739328606,0.5 -1744,my_land,urban,0.0,0.0,0.0,0.0,2011-07-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1745,my_land,rural,15.253500258485838,0.1,0.0,20.0,2011-07-23,0.0,0.0,0.0033899763026264615,0.0,0.0,0.0,0.0,0.0,15.548256397651443,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1746,my_land,urban,0.0,0.0,0.0,0.0,2011-07-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1747,my_land,rural,15.153500258485838,0.1,0.0,20.0,2011-07-24,0.0,0.0,0.0033999763026264615,0.0,0.0,0.0,0.0,0.0,15.603353477206431,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1748,my_land,urban,0.0,0.0,0.0,0.0,2011-07-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1749,my_land,rural,15.053500258485839,0.1,0.0,20.0,2011-07-25,0.0,0.0,0.0034099763026264615,0.0,0.0,0.0,0.0,0.0,15.658454902150806,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1750,my_land,urban,0.0,0.0,0.0,0.0,2011-07-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1751,my_land,rural,14.953500258485839,0.1,0.0,20.0,2011-07-26,0.0,0.0,0.0034199763026264616,0.0,0.0,0.0,0.0,0.0,15.713556862768852,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1752,my_land,urban,0.0,0.0,0.0,0.0,2011-07-27,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1753,my_land,rural,14.85350025848584,0.1,0.0,20.0,2011-07-27,0.0,0.0,0.0034299763026264616,0.0,0.0,0.0,0.0,0.0,16.00973032534611,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1754,my_land,urban,0.0,0.002,0.002,0.0,2011-07-28,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1755,my_land,rural,14.77350025848584,0.1,0.02,20.0,2011-07-28,0.0,0.0,0.0034399763026264616,0.0,0.0,0.0,0.0,0.0,16.336037718168264,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1756,my_land,urban,0.0,0.0,0.0,0.0,2011-07-29,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1757,my_land,rural,14.67350025848584,0.1,0.0,20.0,2011-07-29,0.0,0.0,0.0034499763026264616,0.0,0.0,0.0,0.0,0.0,16.666111859771036,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1758,my_land,urban,0.0,0.0,0.0,0.0,2011-07-30,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1759,my_land,rural,14.57350025848584,0.1,0.0,20.0,2011-07-30,0.0,0.0,0.0034599763026264617,0.0,0.0,0.0,0.0,0.0,16.99665683747138,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1760,my_land,urban,0.0,0.002,0.002,0.0,2011-07-31,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1761,my_land,rural,14.49350025848584,0.1,0.02,20.0,2011-07-31,0.0,0.0,0.0034699763026264617,0.0,0.0,0.0,0.0,0.0,17.327260677183922,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1762,my_land,urban,0.0,0.0,0.0,0.0,2011-08-01,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1763,my_land,rural,14.39350025848584,0.1,0.0,20.0,2011-08-01,0.0,0.0,0.0034799763026264617,0.0,0.0,0.0,0.0,0.0,17.657871867147993,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1764,my_land,urban,0.0,0.01,0.01,0.0,2011-08-02,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0,,,,, -1765,my_land,rural,14.39350025848584,0.1,0.1,20.0,2011-08-02,0.0,0.0,0.0034899763026264618,0.0,0.0,0.0,0.0,0.0,17.9884839833935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -1766,my_land,urban,0.0,0.02,0.043,0.0,2011-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0,,,,, -1767,my_land,rural,14.72350025848584,0.1,0.43,20.0,2011-08-03,0.0,0.0,0.0034999763026264618,0.0,0.0,0.0,0.0,0.0,17.678802819295708,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.5 -1768,my_land,urban,0.0,0.02,0.051000000000000004,0.0,2011-08-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0,,,,, -1769,my_land,rural,15.13350025848584,0.1,0.51,20.0,2011-08-04,0.0,0.0,0.003509976302626462,0.0,0.0,0.0,0.0,0.0,17.28650870344009,0.0,0.0,0.0,0.0,0.0,0.0,0.41000000000000003,0.5 -1770,my_land,urban,0.0,0.0,0.0,0.0,2011-08-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0,,,,, -1771,my_land,rural,15.03350025848584,0.1,0.0,20.0,2011-08-05,0.0,0.0,0.003519976302626462,0.0,0.0,0.0,0.0,0.0,16.88134930543001,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1772,my_land,urban,0.0,0.004,0.004,0.0,2011-08-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0,,,,, -1773,my_land,rural,14.97337022626906,0.1,0.04,20.0,2011-08-06,0.0,0.0,0.003529976302626462,0.0,0.0,0.0,0.0,0.0,16.477132945678754,0.0,0.0,0.0,0.0,0.0,0.0001300322167810906,-0.06260064433562182,0.5 -1774,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2011-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1775,my_land,rural,15.21337022626906,0.1,0.33999999999999997,20.0,2011-08-07,0.0,0.0,0.003539976302626462,0.0,0.0,0.0,0.0,0.0,16.074100754092278,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.5 -1776,my_land,urban,0.0,0.0,0.0,0.0,2011-08-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1777,my_land,rural,15.11337022626906,0.1,0.0,20.0,2011-08-08,0.0,0.0,0.003549976302626462,0.0,0.0,0.0,0.0,0.0,15.669084021761536,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1778,my_land,urban,0.0,0.0,0.0,0.0,2011-08-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1779,my_land,rural,15.01337022626906,0.1,0.0,20.0,2011-08-09,0.0,0.0,0.003559976302626462,0.0,0.0,0.0,0.0,0.0,15.264885502720192,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1780,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-08-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1781,my_land,rural,14.943330594824529,0.1,0.03,20.0,2011-08-10,0.0,0.0,0.003569976302626462,0.0,0.0,0.0,0.0,0.0,15.286682115340023,0.0,0.0,0.0,0.0,0.0,3.963144453209744e-05,-0.07079262889064196,0.5 -1782,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-08-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1783,my_land,rural,14.873330594824528,0.1,0.03,20.0,2011-08-11,0.0,0.0,0.003579976302626462,0.0,0.0,0.0,0.0,0.0,15.361728119417505,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1784,my_land,urban,0.0,0.02,0.02,0.0,2011-08-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1785,my_land,rural,14.973330594824528,0.1,0.2,20.0,2011-08-12,0.0,0.0,0.003589976302626462,0.0,0.0,0.0,0.0,0.0,15.444267250154768,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 -1786,my_land,urban,0.0,0.0,0.0,0.0,2011-08-13,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1787,my_land,rural,14.873330594824528,0.1,0.0,20.0,2011-08-13,0.0,0.0,0.003599976302626462,0.0,0.0,0.0,0.0,0.0,15.526069123769345,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1788,my_land,urban,0.0,0.0,0.0,0.0,2011-08-14,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1789,my_land,rural,14.773330594824529,0.1,0.0,20.0,2011-08-14,0.0,0.0,0.003609976302626462,0.0,0.0,0.0,0.0,0.0,15.608615785471168,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1790,my_land,urban,0.0,0.007,0.007,0.0,2011-08-15,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1791,my_land,rural,14.74333059482453,0.1,0.06999999999999999,20.0,2011-08-15,0.0,0.0,0.003619976302626462,0.0,0.0,0.0,0.0,0.0,15.691255545683896,0.0,0.0,0.0,0.0,0.0,0.0,-0.030000000000000002,0.5 -1792,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-08-16,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1793,my_land,rural,14.67333059482453,0.1,0.03,20.0,2011-08-16,0.0,0.0,0.003629976302626462,0.0,0.0,0.0,0.0,0.0,15.773906943210486,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -1794,my_land,urban,0.0,0.01,0.01,0.0,2011-08-17,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0,,,,, -1795,my_land,rural,14.67333059482453,0.1,0.1,20.0,2011-08-17,0.0,0.0,0.003639976302626462,0.0,0.0,0.0,0.0,0.0,15.65566694040131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -1796,my_land,urban,0.031999999999999994,0.02,0.092,0.0,2011-08-18,0.0,0.0,4.888888888888889e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, -1797,my_land,rural,15.49333059482453,0.1,0.9199999999999999,20.0,2011-08-18,0.0,0.0,0.003649976302626462,0.0,0.0,0.0,0.0,0.0,15.517287089273932,0.0,0.0,0.0,0.0,0.0,0.0,0.8199999999999998,0.5 -1798,my_land,urban,0.0,0.02,0.0,0.0,2011-08-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, -1799,my_land,rural,15.39333059482453,0.1,0.0,20.0,2011-08-19,0.0,0.0,0.003659976302626462,0.0,0.0,0.0,0.0,0.0,15.366446603659243,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1800,my_land,urban,0.0,0.004,0.004,0.0,2011-08-20,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, -1801,my_land,rural,15.332212050375784,0.1,0.04,20.0,2011-08-20,0.0,0.0,0.0036699763026264622,0.0,0.0,0.0,0.0,0.0,15.219020107957407,0.0,0.0,0.0,0.0,0.0,0.0011185444487459436,-0.08237088897491887,0.5 -1802,my_land,urban,0.0,0.0,0.0,0.0,2011-08-21,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0,,,,, -1803,my_land,rural,15.232212050375784,0.1,0.0,20.0,2011-08-21,0.0,0.0,0.0036799763026264623,0.0,0.0,0.0,0.0,0.0,15.072020368494675,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1804,my_land,urban,0.0,0.02,0.038,0.0,2011-08-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0,,,,, -1805,my_land,rural,15.368397353484188,0.1,0.38,20.0,2011-08-22,0.0,0.0,0.0036574617273759636,0.0,0.0,0.0,0.0,0.0,14.926502257427375,0.0,0.0,0.0,0.10246797153526206,0.034155990511754025,0.007190734844579795,0.1361853031084041,0.5 -1806,my_land,urban,0.0,0.001,0.001,0.0,2011-08-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0,,,,, -1807,my_land,rural,15.278129939122882,0.1,0.01,20.0,2011-08-23,0.0,0.0,0.0036674617273759636,0.0,0.0,0.0,0.0,0.0,14.778312782178423,0.0,0.0,0.0,0.0,0.0,0.0002674143613047554,-0.0953482872260951,0.5 -1808,my_land,urban,0.034999999999999996,0.02,0.095,0.0,2011-08-24,0.0,0.0,9.333333333333332e-07,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0,,,,, -1809,my_land,rural,15.714128815603102,0.1,0.95,20.0,2011-08-24,0.0,0.0,0.0035876677855116454,0.0,0.0,0.0,0.0,0.0,14.74854610549609,0.0,0.0,0.0,0.29497580050784333,0.09832526683594778,0.020700056175989006,0.43599887648021995,0.5 -1810,my_land,urban,0.0,0.02,0.023,0.0,2011-08-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0,,,,, -1811,my_land,rural,15.663380255362075,0.1,0.22999999999999998,20.0,2011-08-25,0.0,0.0,0.0035586557208690623,0.0,0.0,0.0,0.0,0.0,14.724649763136096,0.0,0.0,0.0,0.12878334917173218,0.04292778305724406,0.009037428012051383,-0.05074856024102764,0.5 -1812,my_land,urban,0.042,0.02,0.10200000000000001,0.0,2011-08-26,0.0,0.0,5.121951219512195e-07,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1813,my_land,rural,15.809085007740531,0.1,1.02,20.0,2011-08-26,0.0,0.0,0.003409992282921242,0.0,0.0,0.0,0.0,0.0,14.709934394020735,0.0,0.0,0.0,0.5516853639303497,0.1838951213101166,0.038714762381077183,0.14570475237845637,0.5 -1814,my_land,urban,0.0,0.02,0.007,0.0,2011-08-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1815,my_land,rural,15.776184048700573,0.1,0.06999999999999999,20.0,2011-08-27,0.0,0.0,0.003419992282921242,0.0,0.0,0.0,0.0,0.0,14.686956081752593,0.0,0.0,0.0,0.0,0.0,0.0029009590399579586,-0.08801918079915917,0.5 -1816,my_land,urban,0.0,0.004,0.004,0.0,2011-08-28,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1817,my_land,rural,15.714554200454904,0.1,0.04,20.0,2011-08-28,0.0,0.0,0.003429992282921242,0.0,0.0,0.0,0.0,0.0,14.668012365219075,0.0,0.0,0.0,0.0,0.0,0.001629848245668764,-0.09259696491337528,0.5 -1818,my_land,urban,0.0,0.0,0.0,0.0,2011-08-29,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1819,my_land,rural,15.614554200454904,0.1,0.0,20.0,2011-08-29,0.0,0.0,0.003439992282921242,0.0,0.0,0.0,0.0,0.0,14.649572973152386,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1820,my_land,urban,0.0,0.0,0.0,0.0,2011-08-30,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1821,my_land,rural,15.514554200454905,0.1,0.0,20.0,2011-08-30,0.0,0.0,0.0034499922829212422,0.0,0.0,0.0,0.0,0.0,14.631196621644051,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1822,my_land,urban,0.0,0.0,0.0,0.0,2011-08-31,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1823,my_land,rural,15.414554200454905,0.1,0.0,20.0,2011-08-31,0.0,0.0,0.0034599922829212423,0.0,0.0,0.0,0.0,0.0,14.626221005205508,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1824,my_land,urban,0.0,0.0,0.0,0.0,2011-09-01,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1825,my_land,rural,15.314554200454905,0.1,0.0,20.0,2011-09-01,0.0,0.0,0.0034699922829212423,0.0,0.0,0.0,0.0,0.0,14.622920480650691,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1826,my_land,urban,0.0,0.0,0.0,0.0,2011-09-02,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1827,my_land,rural,15.214554200454906,0.1,0.0,20.0,2011-09-02,0.0,0.0,0.0034799922829212423,0.0,0.0,0.0,0.0,0.0,14.619829342581335,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1828,my_land,urban,0.0,0.018,0.018,0.0,2011-09-03,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0,,,,, -1829,my_land,rural,15.230644646281167,0.1,0.18,20.0,2011-09-03,0.0,0.0,0.0034761353286655995,0.0,0.0,0.0,0.0,0.0,14.617245240462676,0.0,0.0,0.0,0.045535557348788974,0.015178519116262992,0.0031954777086869455,0.016090445826261082,0.5 -1830,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2011-09-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0,,,,, -1831,my_land,rural,15.311484760965639,0.1,0.29,20.0,2011-09-04,0.0,0.0,0.0034626832074426167,0.0,0.0,0.0,0.0,0.0,14.61490741594927,0.0,0.0,0.0,0.07777641828731367,0.025925472762437892,0.005457994265776399,0.080840114684472,0.5 -1832,my_land,urban,1.734723475976807e-18,0.02,0.035,0.0,2011-09-05,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0,,,,, -1833,my_land,rural,15.39544387965206,0.1,0.35000000000000003,20.0,2011-09-05,0.0,0.0,0.0034374635986176593,0.0,0.0,0.0,0.0,0.0,14.612275426025837,0.0,0.0,0.0,0.1183041279359258,0.03943470931197527,0.008302044065679005,0.0839591186864199,0.5 -1834,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2011-09-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0,,,,, -1835,my_land,rural,15.391960108093732,0.1,0.22,20.0,2011-09-06,0.0,0.0,0.0034213875469950136,0.0,0.0,0.0,0.0,0.0,14.608484152879642,0.0,0.0,0.0,0.08798218723530808,0.02932739574510269,0.006174188577916358,-0.003483771558327126,0.5 -1836,my_land,urban,0.0,0.01,0.01,0.0,2011-09-07,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0,,,,, -1837,my_land,rural,15.389170311593496,0.1,0.1,20.0,2011-09-07,0.0,0.0,0.0034313875469950137,0.0,0.0,0.0,0.0,0.0,14.556417664109956,0.0,0.0,0.0,0.0,0.0,0.0027897965002364393,-0.05579593000472878,0.5 -1838,my_land,urban,0.0,0.02,0.026,0.0,2011-09-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1839,my_land,rural,15.404798604284505,0.1,0.26,20.0,2011-09-08,0.0,0.0,0.003411018320902806,0.0,0.0,0.0,0.0,0.0,14.499855586753856,0.0,0.0,0.0,0.1028648414576555,0.03428828048588516,0.007218585365449509,0.015628292691009814,0.5 -1840,my_land,urban,0.0,0.001,0.001,0.0,2011-09-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1841,my_land,rural,15.31451354340246,0.1,0.01,20.0,2011-09-09,0.0,0.0,0.003421018320902806,0.0,0.0,0.0,0.0,0.0,14.441053375844232,0.0,0.0,0.0,0.0,0.0,0.0002850608820435218,-0.09570121764087043,0.5 -1842,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-09-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0,,,,, -1843,my_land,rural,15.24379686136313,0.1,0.03,20.0,2011-09-10,0.0,0.0,0.003431018320902806,0.0,0.0,0.0,0.0,0.0,14.38281024448053,0.0,0.0,0.0,0.0,0.0,0.000716682039330536,-0.08433364078661074,0.5 -1844,my_land,urban,0.0,0.02,0.025,0.0,2011-09-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1845,my_land,rural,15.295447385969586,0.1,0.25,20.0,2011-09-11,0.0,0.0,0.0034201265313677258,0.0,0.0,0.0,0.0,0.0,14.325406425173018,0.0,0.0,0.0,0.07007400121789956,0.02335800040596652,0.004917473769677163,0.05165052460645676,0.5 -1846,my_land,urban,0.0,0.001,0.001,0.0,2011-09-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1847,my_land,rural,15.205219313550925,0.1,0.01,20.0,2011-09-12,0.0,0.0,0.003430126531367726,0.0,0.0,0.0,0.0,0.0,14.266568658146626,0.0,0.0,0.0,0.0,0.0,0.00022807241866091755,-0.09456144837321834,0.5 -1848,my_land,urban,0.0,0.02,0.02,0.0,2011-09-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1849,my_land,rural,15.236747074002364,0.1,0.2,20.0,2011-09-13,0.0,0.0,0.0034255023974490185,0.0,0.0,0.0,0.0,0.0,14.208820815373594,0.0,0.0,0.0,0.04878647067834858,0.016262156892782858,0.003423611977427971,0.03152776045144059,0.5 -1850,my_land,urban,0.0,0.0,0.0,0.0,2011-09-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1851,my_land,rural,15.136747074002365,0.1,0.0,20.0,2011-09-14,0.0,0.0,0.0034355023974490186,0.0,0.0,0.0,0.0,0.0,14.1502097469217,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1852,my_land,urban,0.0,0.0,0.0,0.0,2011-09-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1853,my_land,rural,15.036747074002365,0.1,0.0,20.0,2011-09-15,0.0,0.0,0.0034455023974490186,0.0,0.0,0.0,0.0,0.0,14.091990500865213,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1854,my_land,urban,0.0,0.008,0.008,0.0,2011-09-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1855,my_land,rural,15.01646263179533,0.1,0.08,20.0,2011-09-16,0.0,0.0,0.0034555023974490186,0.0,0.0,0.0,0.0,0.0,14.03382024010815,0.0,0.0,0.0,0.0,0.0,0.0002844422070354513,-0.025688844140709023,0.5 -1856,my_land,urban,0.0,0.02,0.02,0.0,2011-09-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1857,my_land,rural,15.109974293920747,0.1,0.2,20.0,2011-09-17,0.0,0.0,0.0034640892664870525,0.0,0.0,0.0,0.0,0.0,13.976146325039378,0.0,0.0,0.0,0.004622940735640803,0.0015409802452136011,0.0003244168937291792,0.09351166212541642,0.5 -1858,my_land,urban,0.0,0.008,0.008,0.0,2011-09-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1859,my_land,rural,15.089176662894385,0.1,0.08,20.0,2011-09-18,0.0,0.0,0.0034740892664870526,0.0,0.0,0.0,0.0,0.0,13.917554008129922,0.0,0.0,0.0,0.0,0.0,0.000797631026361279,-0.03595262052722558,0.5 -1860,my_land,urban,0.0,0.001,0.001,0.0,2011-09-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0,,,,, -1861,my_land,rural,14.999094313457384,0.1,0.01,20.0,2011-09-19,0.0,0.0,0.0034840892664870526,0.0,0.0,0.0,0.0,0.0,13.85933710601624,0.0,0.0,0.0,0.0,0.0,8.234943700090154e-05,-0.09164698874001803,0.5 -1862,my_land,urban,0.034999999999999996,0.02,0.095,0.0,2011-09-20,0.0,0.0,4.2000000000000004e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, -1863,my_land,rural,15.849094313457384,0.1,0.95,20.0,2011-09-20,0.0,0.0,0.0034940892664870526,0.0,0.0,0.0,0.0,0.0,13.804959259195796,0.0,0.0,0.0,0.0,0.0,0.0,0.8500000000000001,0.5 -1864,my_land,urban,3.469446951953614e-18,0.02,0.008,0.0,2011-09-21,0.0,0.0,8.470329472543003e-22,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, -1865,my_land,rural,15.825716310910023,0.1,0.08,20.0,2011-09-21,0.0,0.0,0.0035040892664870526,0.0,0.0,0.0,0.0,0.0,13.838119904899473,0.0,0.0,0.0,0.0,0.0,0.003378002547361473,-0.08756005094722946,0.5 -1866,my_land,urban,0.0,3.469446951953614e-18,0.0,0.0,2011-09-22,0.0,0.0,1.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, -1867,my_land,rural,15.725716310910023,0.1,0.0,20.0,2011-09-22,0.0,0.0,0.0035140892664870527,0.0,0.0,0.0,0.0,0.0,13.886014990612436,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1868,my_land,urban,0.0,0.0,0.0,0.0,2011-09-23,0.0,0.0,2.0000000000000008e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, -1869,my_land,rural,15.625716310910024,0.1,0.0,20.0,2011-09-23,0.0,0.0,0.0035240892664870527,0.0,0.0,0.0,0.0,0.0,13.935751873826556,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1870,my_land,urban,0.0,0.002,0.002,0.0,2011-09-24,0.0,0.0,3.000000000000001e-06,0.0,0.0,0.0,0.0,0.0,14.425,0.0,0.0,0.0,,,,, -1871,my_land,rural,15.544978956074473,0.1,0.02,20.0,2011-09-24,0.0,0.0,0.0035340892664870527,0.0,0.0,0.0,0.0,0.0,13.98571898172832,0.0,0.0,0.0,0.0,0.0,0.0007373548355501053,-0.09474709671100212,0.5 -1872,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2011-09-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1873,my_land,rural,15.618423340935188,0.1,0.5499999999999999,20.0,2011-09-25,0.0,0.0,0.0034647322696581308,0.0,0.0,0.0,0.0,0.0,14.038180772144566,0.0,0.0,0.0,0.2682958757867416,0.08943195859558054,0.018827780756964327,0.0734443848607135,0.5 -1874,my_land,urban,0.0,0.0,0.0,0.0,2011-09-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1875,my_land,rural,15.518423340935188,0.1,0.0,20.0,2011-09-26,0.0,0.0,0.003474732269658131,0.0,0.0,0.0,0.0,0.0,14.086022596518072,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1876,my_land,urban,0.0,0.001,0.001,0.0,2011-09-27,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1877,my_land,rural,15.42809067264815,0.1,0.01,20.0,2011-09-27,0.0,0.0,0.003484732269658131,0.0,0.0,0.0,0.0,0.0,14.192784074564761,0.0,0.0,0.0,0.0,0.0,0.00033266828703820635,-0.09665336574076412,0.5 -1878,my_land,urban,0.0,0.0,0.0,0.0,2011-09-28,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1879,my_land,rural,15.32809067264815,0.1,0.0,20.0,2011-09-28,0.0,0.0,0.003494732269658131,0.0,0.0,0.0,0.0,0.0,14.306910509320595,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1880,my_land,urban,0.0,0.0,0.0,0.0,2011-09-29,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1881,my_land,rural,15.22809067264815,0.1,0.0,20.0,2011-09-29,0.0,0.0,0.003504732269658131,0.0,0.0,0.0,0.0,0.0,14.421957563665075,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1882,my_land,urban,0.0,0.0,0.0,0.0,2011-09-30,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1883,my_land,rural,15.12809067264815,0.1,0.0,20.0,2011-09-30,0.0,0.0,0.003514732269658131,0.0,0.0,0.0,0.0,0.0,14.537119695458134,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1884,my_land,urban,0.0,0.0,0.0,0.0,2011-10-01,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1885,my_land,rural,15.028090672648151,0.1,0.0,20.0,2011-10-01,0.0,0.0,0.003524732269658131,0.0,0.0,0.0,0.0,0.0,14.652296211932267,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1886,my_land,urban,0.0,0.0,0.0,0.0,2011-10-02,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1887,my_land,rural,14.928090672648151,0.1,0.0,20.0,2011-10-02,0.0,0.0,0.003534732269658131,0.0,0.0,0.0,0.0,0.0,14.767474526491537,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1888,my_land,urban,0.0,0.002,0.002,0.0,2011-10-03,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1889,my_land,rural,14.848090672648151,0.1,0.02,20.0,2011-10-03,0.0,0.0,0.003544732269658131,0.0,0.0,0.0,0.0,0.0,14.882653065811441,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -1890,my_land,urban,0.0,0.005,0.005,0.0,2011-10-04,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0,,,,, -1891,my_land,rural,14.79809067264815,0.1,0.05,20.0,2011-10-04,0.0,0.0,0.003554732269658131,0.0,0.0,0.0,0.0,0.0,14.997831633226431,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.5 -1892,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2011-10-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1893,my_land,rural,15.118090672648151,0.1,0.42,20.0,2011-10-05,0.0,0.0,0.003564732269658131,0.0,0.0,0.0,0.0,0.0,14.88545865302968,0.0,0.0,0.0,0.0,0.0,0.0,0.31999999999999995,0.5 -1894,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-10-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1895,my_land,rural,15.04777177709574,0.1,0.03,20.0,2011-10-06,0.0,0.0,0.003574732269658131,0.0,0.0,0.0,0.0,0.0,14.741039476628709,0.0,0.0,0.0,0.0,0.0,0.0003188955524110314,-0.07637791104822064,0.5 -1896,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2011-10-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1897,my_land,rural,15.056787141682443,0.1,0.12,20.0,2011-10-07,0.0,0.0,0.003582249520891919,0.0,0.0,0.0,0.0,0.0,14.594511612713768,0.0,0.0,0.0,0.007826552731973708,0.002608850910657903,0.0005492317706648217,0.009015364586703553,0.5 -1898,my_land,urban,0.0,0.001,0.001,0.0,2011-10-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1899,my_land,rural,14.966733170665272,0.1,0.01,20.0,2011-10-08,0.0,0.0,0.003592249520891919,0.0,0.0,0.0,0.0,0.0,14.447528234089221,0.0,0.0,0.0,0.0,0.0,5.3971017172606716e-05,-0.09107942034345214,0.5 -1900,my_land,urban,0.0,0.0,0.0,0.0,2011-10-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1901,my_land,rural,14.866733170665272,0.1,0.0,20.0,2011-10-09,0.0,0.0,0.003602249520891919,0.0,0.0,0.0,0.0,0.0,14.300583884261155,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1902,my_land,urban,0.0,0.0,0.0,0.0,2011-10-10,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1903,my_land,rural,14.766733170665272,0.1,0.0,20.0,2011-10-10,0.0,0.0,0.003612249520891919,0.0,0.0,0.0,0.0,0.0,14.153644413032646,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1904,my_land,urban,0.0,0.0,0.0,0.0,2011-10-11,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1905,my_land,rural,14.666733170665273,0.1,0.0,20.0,2011-10-11,0.0,0.0,0.003622249520891919,0.0,0.0,0.0,0.0,0.0,14.00670555162908,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1906,my_land,urban,0.0,0.0,0.0,0.0,2011-10-12,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1907,my_land,rural,14.566733170665273,0.1,0.0,20.0,2011-10-12,0.0,0.0,0.003632249520891919,0.0,0.0,0.0,0.0,0.0,13.589231048953636,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1908,my_land,urban,0.0,0.0,0.0,0.0,2011-10-13,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1909,my_land,rural,14.466733170665274,0.1,0.0,20.0,2011-10-13,0.0,0.0,0.003642249520891919,0.0,0.0,0.0,0.0,0.0,13.137939598619207,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1910,my_land,urban,0.0,0.0,0.0,0.0,2011-10-14,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1911,my_land,rural,14.366733170665274,0.1,0.0,20.0,2011-10-14,0.0,0.0,0.003652249520891919,0.0,0.0,0.0,0.0,0.0,12.6824210223274,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1912,my_land,urban,0.0,0.0,0.0,0.0,2011-10-15,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1913,my_land,rural,14.266733170665274,0.1,0.0,20.0,2011-10-15,0.0,0.0,0.0036622495208919192,0.0,0.0,0.0,0.0,0.0,12.226374055290925,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1914,my_land,urban,0.0,0.0,0.0,0.0,2011-10-16,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0,,,,, -1915,my_land,rural,14.166733170665275,0.1,0.0,20.0,2011-10-16,0.0,0.0,0.0036722495208919193,0.0,0.0,0.0,0.0,0.0,11.770261039411368,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1916,my_land,urban,0.0,0.02,0.053,0.0,2011-10-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1917,my_land,rural,14.596733170665274,0.1,0.53,20.0,2011-10-17,0.0,0.0,0.0036822495208919193,0.0,0.0,0.0,0.0,0.0,11.312986770213204,0.0,0.0,0.0,0.0,0.0,0.0,0.43,0.5 -1918,my_land,urban,0.0,0.0,0.0,0.0,2011-10-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1919,my_land,rural,14.496733170665275,0.1,0.0,20.0,2011-10-18,0.0,0.0,0.0036922495208919193,0.0,0.0,0.0,0.0,0.0,10.857873346276653,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1920,my_land,urban,0.0,0.009,0.009,0.0,2011-10-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1921,my_land,rural,14.486733170665275,0.1,0.09,20.0,2011-10-19,0.0,0.0,0.0037022495208919193,0.0,0.0,0.0,0.0,0.0,10.822412740784582,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -1922,my_land,urban,0.0,0.0,0.0,0.0,2011-10-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1923,my_land,rural,14.386733170665275,0.1,0.0,20.0,2011-10-20,0.0,0.0,0.0037122495208919194,0.0,0.0,0.0,0.0,0.0,10.839408737598074,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1924,my_land,urban,0.0,0.0,0.0,0.0,2011-10-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1925,my_land,rural,14.286733170665276,0.1,0.0,20.0,2011-10-21,0.0,0.0,0.0037222495208919194,0.0,0.0,0.0,0.0,0.0,10.86296180969976,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1926,my_land,urban,0.0,0.0,0.0,0.0,2011-10-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1927,my_land,rural,14.186733170665276,0.1,0.0,20.0,2011-10-22,0.0,0.0,0.0037322495208919194,0.0,0.0,0.0,0.0,0.0,10.88733450871247,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1928,my_land,urban,0.0,0.0,0.0,0.0,2011-10-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0,,,,, -1929,my_land,rural,14.086733170665276,0.1,0.0,20.0,2011-10-23,0.0,0.0,0.0037422495208919195,0.0,0.0,0.0,0.0,0.0,10.91180966858906,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1930,my_land,urban,0.0,0.02,0.023,0.0,2011-10-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0,,,,, -1931,my_land,rural,14.216733170665277,0.1,0.22999999999999998,20.0,2011-10-24,0.0,0.0,0.0037522495208919195,0.0,0.0,0.0,0.0,0.0,10.936508659035937,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 -1932,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2011-10-25,0.0,0.0,-2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0,,,,, -1933,my_land,rural,14.586733170665276,0.1,0.47000000000000003,20.0,2011-10-25,0.0,0.0,0.0037622495208919195,0.0,0.0,0.0,0.0,0.0,10.961411229873116,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.5 -1934,my_land,urban,0.025,0.02,0.085,0.0,2011-10-26,0.0,0.0,3.8461538461538447e-07,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0,,,,, -1935,my_land,rural,15.336733170665276,0.1,0.8500000000000001,20.0,2011-10-26,0.0,0.0,0.0037722495208919195,0.0,0.0,0.0,0.0,0.0,11.099946524571386,0.0,0.0,0.0,0.0,0.0,0.0,0.7500000000000001,0.5 -1936,my_land,urban,0.020999999999999998,0.02,0.056,0.0,2011-10-27,0.0,0.0,4.766708701134929e-07,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, -1937,my_land,rural,15.515596010663645,0.1,0.5599999999999999,20.0,2011-10-27,0.0,0.0,0.0037182448917483565,0.0,0.0,0.0,0.0,0.0,11.250450341219876,0.0,0.0,0.0,0.20031022650116198,0.06677007550038734,0.014056858000081546,0.1788628399983691,0.5 -1938,my_land,urban,0.0,0.02,0.0,0.0,2011-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, -1939,my_land,rural,15.415596010663645,0.1,0.0,20.0,2011-10-28,0.0,0.0,0.0037282448917483565,0.0,0.0,0.0,0.0,0.0,11.401842010152484,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1940,my_land,urban,0.0,0.005,0.005,0.0,2011-10-29,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, -1941,my_land,rural,15.364145719330901,0.1,0.05,20.0,2011-10-29,0.0,0.0,0.0037382448917483565,0.0,0.0,0.0,0.0,0.0,11.554694533769062,0.0,0.0,0.0,0.0,0.0,0.0014502913327432913,-0.07900582665486583,0.5 -1942,my_land,urban,0.0,0.002,0.002,0.0,2011-10-30,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, -1943,my_land,rural,15.283615178385046,0.1,0.02,20.0,2011-10-30,0.0,0.0,0.0037482448917483565,0.0,0.0,0.0,0.0,0.0,11.707729671721133,0.0,0.0,0.0,0.0,0.0,0.0005305409458545031,-0.09061081891709007,0.5 -1944,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2011-10-31,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, -1945,my_land,rural,15.278422353922526,0.1,0.16999999999999998,20.0,2011-10-31,0.0,0.0,0.0037407552550960226,0.0,0.0,0.0,0.0,0.0,11.861051251245403,0.0,0.0,0.0,0.05357488742954661,0.017858295809848868,0.0037596412231260777,-0.005192824462521561,0.5 -1946,my_land,urban,0.0,0.001,0.001,0.0,2011-11-01,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0,,,,, -1947,my_land,rural,15.188204283941952,0.1,0.01,20.0,2011-11-01,0.0,0.0,0.0037507552550960226,0.0,0.0,0.0,0.0,0.0,12.013881406405677,0.0,0.0,0.0,0.0,0.0,0.00021806998057401098,-0.09436139961148021,0.5 -1948,my_land,urban,0.0049999999999999975,0.02,0.065,0.0,2011-11-02,0.0,0.0,5.555555555555554e-07,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0,,,,, -1949,my_land,rural,15.531083321764946,0.1,0.65,20.0,2011-11-02,0.0,0.0,0.0037137059274636253,0.0,0.0,0.0,0.0,0.0,11.584654522470174,0.0,0.0,0.0,0.1475736855511164,0.049191228517038804,0.010356048108850274,0.3428790378229945,0.5 -1950,my_land,urban,-6.938893903907228e-18,0.02,0.04,0.0,2011-11-03,0.0,0.0,-4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0,,,,, -1951,my_land,rural,15.561214847663257,0.1,0.4,20.0,2011-11-03,0.0,0.0,0.003663351265282586,0.0,0.0,0.0,0.0,0.0,11.083777615414606,0.0,0.0,0.0,0.19228128779745352,0.06409376259915117,0.01349342370508446,0.03013152589831083,0.5 -1952,my_land,urban,0.0,0.02,0.041,0.0,2011-11-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1953,my_land,rural,15.585874255609436,0.1,0.41000000000000003,20.0,2011-11-04,0.0,0.0,0.0036105555479074938,0.0,0.0,0.0,0.0,0.0,10.573596805791018,0.0,0.0,0.0,0.20330517183834648,0.06776839061278216,0.014267029602690981,0.024659407946180406,0.5 -1954,my_land,urban,0.0,0.0,0.0,0.0,2011-11-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1955,my_land,rural,15.485874255609437,0.1,0.0,20.0,2011-11-05,0.0,0.0,0.003620555547907494,0.0,0.0,0.0,0.0,0.0,10.063663886223878,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1956,my_land,urban,0.0,0.0,0.0,0.0,2011-11-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1957,my_land,rural,15.385874255609437,0.1,0.0,20.0,2011-11-06,0.0,0.0,0.003630555547907494,0.0,0.0,0.0,0.0,0.0,9.552600843027985,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1958,my_land,urban,0.0,0.007,0.007,0.0,2011-11-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1959,my_land,rural,15.353941953083565,0.1,0.06999999999999999,20.0,2011-11-07,0.0,0.0,0.003640555547907494,0.0,0.0,0.0,0.0,0.0,9.041396533628498,0.0,0.0,0.0,0.0,0.0,0.0019323025258729763,-0.06864605051745952,0.5 -1960,my_land,urban,0.0,0.009,0.009,0.0,2011-11-08,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1961,my_land,rural,15.341601480814468,0.1,0.09,20.0,2011-11-08,0.0,0.0,0.003650555547907494,0.0,0.0,0.0,0.0,0.0,8.530174566703561,0.0,0.0,0.0,0.0,0.0,0.002340472269095986,-0.056809445381919725,0.5 -1962,my_land,urban,0.0,0.008,0.008,0.0,2011-11-09,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1963,my_land,rural,15.319572661061219,0.1,0.08,20.0,2011-11-09,0.0,0.0,0.003660555547907494,0.0,0.0,0.0,0.0,0.0,8.699307535337946,0.0,0.0,0.0,0.0,0.0,0.0020288197532486022,-0.06057639506497203,0.5 -1964,my_land,urban,0.0,0.002,0.002,0.0,2011-11-10,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0,,,,, -1965,my_land,rural,15.239089261809761,0.1,0.02,20.0,2011-11-10,0.0,0.0,0.003670555547907494,0.0,0.0,0.0,0.0,0.0,8.953484870167244,0.0,0.0,0.0,0.0,0.0,0.00048339925145697376,-0.08966798502913947,0.5 -1966,my_land,urban,0.0,0.02,0.057,0.0,2011-11-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1967,my_land,rural,15.488290039641639,0.1,0.5700000000000001,20.0,2011-11-11,0.0,0.0,0.0036313755130362936,0.0,0.0,0.0,0.0,0.0,9.218945674019542,0.0,0.0,0.0,0.15731944579478707,0.052439815264929024,0.011039961108406111,0.2492007778318778,0.5 -1968,my_land,urban,0.0,0.0,0.0,0.0,2011-11-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1969,my_land,rural,15.388290039641639,0.1,0.0,20.0,2011-11-12,0.0,0.0,0.0036413755130362936,0.0,0.0,0.0,0.0,0.0,9.484511066502442,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1970,my_land,urban,0.0,0.0,0.0,0.0,2011-11-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1971,my_land,rural,15.28829003964164,0.1,0.0,20.0,2011-11-13,0.0,0.0,0.0036513755130362937,0.0,0.0,0.0,0.0,0.0,9.750742455062808,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1972,my_land,urban,0.0,0.001,0.001,0.0,2011-11-14,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1973,my_land,rural,15.198066132674523,0.1,0.01,20.0,2011-11-14,0.0,0.0,0.0036613755130362937,0.0,0.0,0.0,0.0,0.0,10.01705708938285,0.0,0.0,0.0,0.0,0.0,0.00022390696711645477,-0.0944781393423291,0.5 -1974,my_land,urban,0.0,0.0,0.0,0.0,2011-11-15,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1975,my_land,rural,15.098066132674523,0.1,0.0,20.0,2011-11-15,0.0,0.0,0.0036713755130362937,0.0,0.0,0.0,0.0,0.0,10.283382136172857,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1976,my_land,urban,0.0,0.007,0.007,0.0,2011-11-16,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1977,my_land,rural,15.06743719406746,0.1,0.06999999999999999,20.0,2011-11-16,0.0,0.0,0.0036813755130362938,0.0,0.0,0.0,0.0,0.0,10.214887049521609,0.0,0.0,0.0,0.0,0.0,0.0006289386070628726,-0.04257877214125745,0.5 -1978,my_land,urban,0.0,0.0,0.0,0.0,2011-11-17,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1979,my_land,rural,14.967437194067461,0.1,0.0,20.0,2011-11-17,0.0,0.0,0.0036913755130362938,0.0,0.0,0.0,0.0,0.0,10.104539453690203,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1980,my_land,urban,0.0,0.0,0.0,0.0,2011-11-18,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1981,my_land,rural,14.867437194067461,0.1,0.0,20.0,2011-11-18,0.0,0.0,0.003701375513036294,0.0,0.0,0.0,0.0,0.0,9.988960288961275,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1982,my_land,urban,0.0,0.001,0.001,0.0,2011-11-19,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1983,my_land,rural,14.777437194067462,0.1,0.01,20.0,2011-11-19,0.0,0.0,0.003711375513036294,0.0,0.0,0.0,0.0,0.0,9.872727178870159,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1984,my_land,urban,0.0,0.0,0.0,0.0,2011-11-20,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0,,,,, -1985,my_land,rural,14.677437194067462,0.1,0.0,20.0,2011-11-20,0.0,0.0,0.003721375513036294,0.0,0.0,0.0,0.0,0.0,9.756412325608771,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -1986,my_land,urban,0.0,0.02,0.037000000000000005,0.0,2011-11-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1987,my_land,rural,14.947437194067462,0.1,0.37,20.0,2011-11-21,0.0,0.0,0.003731375513036294,0.0,0.0,0.0,0.0,0.0,9.639645386220412,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.5 -1988,my_land,urban,0.0,0.001,0.001,0.0,2011-11-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1989,my_land,rural,14.857437194067462,0.1,0.01,20.0,2011-11-22,0.0,0.0,0.003741375513036294,0.0,0.0,0.0,0.0,0.0,9.523705673277552,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1990,my_land,urban,0.0,0.001,0.001,0.0,2011-11-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1991,my_land,rural,14.767437194067462,0.1,0.01,20.0,2011-11-23,0.0,0.0,0.003751375513036294,0.0,0.0,0.0,0.0,0.0,9.428856066409695,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1992,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2011-11-24,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1993,my_land,rural,14.727437194067463,0.1,0.06,20.0,2011-11-24,0.0,0.0,0.003761375513036294,0.0,0.0,0.0,0.0,0.0,9.336642722801212,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -1994,my_land,urban,0.0,0.001,0.001,0.0,2011-11-25,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1995,my_land,rural,14.637437194067463,0.1,0.01,20.0,2011-11-25,0.0,0.0,0.003771375513036294,0.0,0.0,0.0,0.0,0.0,9.244758912100153,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -1996,my_land,urban,0.0,0.004,0.004,0.0,2011-11-26,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1997,my_land,rural,14.577437194067462,0.1,0.04,20.0,2011-11-26,0.0,0.0,0.003781375513036294,0.0,0.0,0.0,0.0,0.0,9.15291629226252,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -1998,my_land,urban,0.0,0.0,0.0,0.0,2011-11-27,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -1999,my_land,rural,14.477437194067463,0.1,0.0,20.0,2011-11-27,0.0,0.0,0.003791375513036294,0.0,0.0,0.0,0.0,0.0,9.061078822032815,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2000,my_land,urban,0.0,0.019,0.019,0.0,2011-11-28,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0,,,,, -2001,my_land,rural,14.567437194067463,0.1,0.19,20.0,2011-11-28,0.0,0.0,0.003801375513036294,0.0,0.0,0.0,0.0,0.0,8.969026581525322,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.5 -2002,my_land,urban,0.0,0.02,0.038,0.0,2011-11-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0,,,,, -2003,my_land,rural,14.847437194067462,0.1,0.38,20.0,2011-11-29,0.0,0.0,0.003811375513036294,0.0,0.0,0.0,0.0,0.0,8.876685211130814,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 -2004,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2011-11-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2005,my_land,rural,14.967437194067461,0.1,0.22,20.0,2011-11-30,0.0,0.0,0.003821375513036294,0.0,0.0,0.0,0.0,0.0,8.490132439610306,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 -2006,my_land,urban,0.0,0.0,0.0,0.0,2011-12-01,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2007,my_land,rural,14.867437194067461,0.1,0.0,20.0,2011-12-01,0.0,0.0,0.003831375513036294,0.0,0.0,0.0,0.0,0.0,8.06751655495129,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2008,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2011-12-02,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2009,my_land,rural,14.887437194067461,0.1,0.12,20.0,2011-12-02,0.0,0.0,0.003841375513036294,0.0,0.0,0.0,0.0,0.0,7.639539691901199,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 -2010,my_land,urban,0.0,0.0,0.0,0.0,2011-12-03,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2011,my_land,rural,14.787437194067461,0.1,0.0,20.0,2011-12-03,0.0,0.0,0.003851375513036294,0.0,0.0,0.0,0.0,0.0,7.21119246148765,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2012,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2011-12-04,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2013,my_land,rural,14.717437194067461,0.1,0.03,20.0,2011-12-04,0.0,0.0,0.0038613755130362942,0.0,0.0,0.0,0.0,0.0,6.782649057685956,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -2014,my_land,urban,0.0,0.0,0.0,0.0,2011-12-05,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2015,my_land,rural,14.617437194067461,0.1,0.0,20.0,2011-12-05,0.0,0.0,0.0038713755130362943,0.0,0.0,0.0,0.0,0.0,6.354081132210745,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2016,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2011-12-06,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2017,my_land,rural,14.637437194067461,0.1,0.12,20.0,2011-12-06,0.0,0.0,0.0038813755130362943,0.0,0.0,0.0,0.0,0.0,5.925308760451812,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 -2018,my_land,urban,0.0,0.0,0.0,0.0,2011-12-07,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0,,,,, -2019,my_land,rural,14.537437194067461,0.1,0.0,20.0,2011-12-07,0.0,0.0,0.0038913755130362943,0.0,0.0,0.0,0.0,0.0,5.904056452306477,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2020,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2011-12-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0,,,,, -2021,my_land,rural,14.98743719406746,0.1,0.5499999999999999,20.0,2011-12-08,0.0,0.0,0.0039013755130362943,0.0,0.0,0.0,0.0,0.0,5.931128215675298,0.0,0.0,0.0,0.0,0.0,0.0,0.44999999999999996,0.5 -2022,my_land,urban,0.0,0.0,0.0,0.0,2011-12-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0,,,,, -2023,my_land,rural,14.887437194067461,0.1,0.0,20.0,2011-12-09,0.0,0.0,0.003911375513036294,0.0,0.0,0.0,0.0,0.0,5.969069598709413,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2024,my_land,urban,0.0,0.002,0.002,0.0,2011-12-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0,,,,, -2025,my_land,rural,14.807437194067461,0.1,0.02,20.0,2011-12-10,0.0,0.0,0.0039213755130362935,0.0,0.0,0.0,0.0,0.0,6.005955128088677,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2026,my_land,urban,0.005999999999999998,0.02,0.066,0.0,2011-12-11,0.0,0.0,3.9130434782608684e-07,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0,,,,, -2027,my_land,rural,15.367437194067461,0.1,0.66,20.0,2011-12-11,0.0,0.0,0.003931375513036293,0.0,0.0,0.0,0.0,0.0,6.039899694216831,0.0,0.0,0.0,0.0,0.0,0.0,0.5599999999999999,0.5 -2028,my_land,urban,0.13400000000000004,0.02,0.188,0.0,2011-12-12,0.0,0.0,1.071464267866067e-06,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0,,,,, -2029,my_land,rural,16.14377382507794,0.1,1.8800000000000001,20.0,2011-12-12,0.0,0.0,0.0037215727593927794,0.0,0.0,0.0,0.0,0.0,6.071408370198682,0.0,0.0,0.0,0.7151101504050345,0.2383700501350115,0.05018316844947611,0.7763366310104778,0.5 -2030,my_land,urban,0.18100000000000002,0.02,0.107,0.0,2011-12-13,0.0,0.0,1.6965386085237925e-06,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0,,,,, -2031,my_land,rural,16.123446374815693,0.1,1.0699999999999998,20.0,2011-12-13,0.0,0.0,0.003525838346440872,0.0,0.0,0.0,0.0,0.0,6.11115459865552,0.0,0.0,0.0,0.7056083083118513,0.2352027694372838,0.04951637251311238,-0.020327450262247644,0.5 -2032,my_land,urban,0.212,0.02,0.091,0.0,2011-12-14,0.0,0.0,2.2685166071708094e-06,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0,,,,, -2033,my_land,rural,16.094862997646526,0.1,0.91,20.0,2011-12-14,0.0,0.0,0.003369077689937792,0.0,0.0,0.0,0.0,0.0,5.836295756498775,0.0,0.0,0.0,0.5974906562330325,0.1991635520776775,0.04192916885845842,-0.028583377169168374,0.5 -2034,my_land,urban,0.224,0.02,0.072,0.0,2011-12-15,0.0,0.0,2.773286818205535e-06,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0,,,,, -2035,my_land,rural,16.05567582559574,0.1,0.72,20.0,2011-12-15,0.0,0.0,0.003252229311058008,0.0,0.0,0.0,0.0,0.0,5.524685276554899,0.0,0.0,0.0,0.4696708600861854,0.15655695336206182,0.03295935860253933,-0.03918717205078663,0.5 -2036,my_land,urban,0.19,0.02,0.026,0.0,2011-12-16,0.0,0.0,3.1170630237350073e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0,,,,, -2037,my_land,rural,15.97994188844201,0.1,0.26,20.0,2011-12-16,0.0,0.0,0.003217143390905135,0.0,0.0,0.0,0.0,0.0,5.2111318788879695,0.0,0.0,0.0,0.16796043022203078,0.05598681007401026,0.011786696857686373,-0.07573393715372746,0.5 -2038,my_land,urban,0.13499999999999998,0.02,0.005,0.0,2011-12-17,0.0,0.0,3.176020046881291e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0,,,,, -2039,my_land,rural,15.927724092513754,0.1,0.05,20.0,2011-12-17,0.0,0.0,0.003227143390905135,0.0,0.0,0.0,0.0,0.0,4.8951414851109964,0.0,0.0,0.0,0.0,0.0,0.0022177959282548513,-0.09435591856509702,0.5 -2040,my_land,urban,0.07999999999999999,0.02,0.005,0.0,2011-12-18,0.0,0.0,2.784013364587527e-06,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0,,,,, -2041,my_land,rural,15.875545171523285,0.1,0.05,20.0,2011-12-18,0.0,0.0,0.003237143390905135,0.0,0.0,0.0,0.0,0.0,4.577517685388875,0.0,0.0,0.0,0.0,0.0,0.002178920990468581,-0.09357841980937162,0.5 -2042,my_land,urban,0.06199999999999998,0.02,0.041999999999999996,0.0,2011-12-19,0.0,0.0,2.300086554945359e-06,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0,,,,, -2043,my_land,rural,15.836810499422008,0.1,0.42,20.0,2011-12-19,0.0,0.0,0.0031787389800882497,0.0,0.0,0.0,0.0,0.0,4.2565913360762115,0.0,0.0,0.0,0.25559845387215985,0.08519948462405329,0.017936733605063853,-0.038734672101277054,0.5 -2044,my_land,urban,0.046999999999999965,0.02,0.045,0.0,2011-12-20,0.0,0.0,1.782805380257837e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0,,,,, -2045,my_land,rural,15.808883776030767,0.1,0.44999999999999996,20.0,2011-12-20,0.0,0.0,0.0031179287210028788,0.0,0.0,0.0,0.0,0.0,4.452799257838773,0.0,0.0,0.0,0.26927279041625835,0.08975759680541945,0.01889633616956199,-0.027926723391239826,0.5 -2046,my_land,urban,0.0,0.02,0.001,0.0,2011-12-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0,,,,, -2047,my_land,rural,15.718469394410588,0.1,0.01,20.0,2011-12-21,0.0,0.0,0.003127928721002879,0.0,0.0,0.0,0.0,0.0,4.714099907479847,0.0,0.0,0.0,0.0,0.0,0.0004143816201772698,-0.0982876324035454,0.5 -2048,my_land,urban,0.0,0.0,0.0,0.0,2011-12-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0,,,,, -2049,my_land,rural,15.618469394410589,0.1,0.0,20.0,2011-12-22,0.0,0.0,0.003137928721002879,0.0,0.0,0.0,0.0,0.0,4.981762488434981,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2050,my_land,urban,0.011999999999999997,0.02,0.072,0.0,2011-12-23,0.0,0.0,4.615384615384614e-07,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, -2051,my_land,rural,15.710730284918325,0.1,0.72,20.0,2011-12-23,0.0,0.0,0.0030505802865304224,0.0,0.0,0.0,0.0,0.0,5.2480305721586955,0.0,0.0,0.0,0.37601411551323755,0.12533803850441252,0.026386955474613165,0.09226089050773673,0.5 -2052,my_land,urban,0.0,0.014999999999999996,0.0029999999999999996,0.0,2011-12-24,0.0,0.0,1.4615384615384614e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, -2053,my_land,rural,15.639554046100319,0.1,0.03,20.0,2011-12-24,0.0,0.0,0.0030605802865304225,0.0,0.0,0.0,0.0,0.0,5.518503821769837,0.0,0.0,0.0,0.0,0.0,0.0011762388180060843,-0.09352477636012169,0.5 -2054,my_land,urban,0.0,0.007,0.007,0.0,2011-12-25,0.0,0.0,2.461538461538461e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, -2055,my_land,rural,15.606944634595264,0.1,0.06999999999999999,20.0,2011-12-25,0.0,0.0,0.0030705802865304225,0.0,0.0,0.0,0.0,0.0,5.78731297772123,0.0,0.0,0.0,0.0,0.0,0.0026094115050545367,-0.08218823010109073,0.5 -2056,my_land,urban,0.0,0.002,0.002,0.0,2011-12-26,0.0,0.0,3.461538461538461e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, -2057,my_land,rural,15.52621877100678,0.1,0.02,20.0,2011-12-26,0.0,0.0,0.0030805802865304225,0.0,0.0,0.0,0.0,0.0,6.055914121965154,0.0,0.0,0.0,0.0,0.0,0.000725863588483023,-0.09451727176966046,0.5 -2058,my_land,urban,0.0,0.002,0.002,0.0,2011-12-27,0.0,0.0,4.461538461538461e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, -2059,my_land,rural,15.445547658521033,0.1,0.02,20.0,2011-12-27,0.0,0.0,0.0030905802865304225,0.0,0.0,0.0,0.0,0.0,6.324489265495645,0.0,0.0,0.0,0.0,0.0,0.0006711124857470734,-0.09342224971494147,0.5 -2060,my_land,urban,0.0,0.001,0.001,0.0,2011-12-28,0.0,0.0,5.46153846153846e-06,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0,,,,, -2061,my_land,rural,15.3552442802814,0.1,0.01,20.0,2011-12-28,0.0,0.0,0.0031005802865304226,0.0,0.0,0.0,0.0,0.0,6.5930611581869565,0.0,0.0,0.0,0.0,0.0,0.000303378239631525,-0.0960675647926305,0.5 -2062,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2011-12-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0,,,,, -2063,my_land,rural,15.39402423345362,0.1,0.29,20.0,2011-12-29,0.0,0.0,0.0030818203366867023,0.0,0.0,0.0,0.0,0.0,6.861324824065812,0.0,0.0,0.0,0.10774428336479314,0.035914761121597714,0.007561002341388993,0.03877995317222013,0.5 -2064,my_land,urban,0.0029999999999999957,0.02,0.063,0.0,2011-12-30,0.0,0.0,6.976744186046499e-08,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0,,,,, -2065,my_land,rural,15.571264937379567,0.1,0.63,20.0,2011-12-30,0.0,0.0,0.003026680780172768,0.0,0.0,0.0,0.0,0.0,7.12950262592446,0.0,0.0,0.0,0.25134099845276214,0.08378033281758739,0.01763796480370261,0.17724070392594782,0.5 -2066,my_land,urban,0.0,0.009999999999999995,0.007,0.0,2011-12-31,0.0,0.0,1.069767441860465e-06,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0,,,,, -2067,my_land,rural,15.53880525272907,0.1,0.06999999999999999,20.0,2011-12-31,0.0,0.0,0.003036680780172768,0.0,0.0,0.0,0.0,0.0,7.398687828240557,0.0,0.0,0.0,0.0,0.0,0.002459684650498012,-0.07919369300996024,0.5 -2068,my_land,urban,0.0,0.02,0.036,0.0,2012-01-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0,,,,, -2069,my_land,rural,15.553915577490086,0.1,0.36,20.0,2012-01-01,0.0,0.0,0.0030017821069376178,0.0,0.0,0.0,0.0,0.0,7.66718815086422,0.0,0.0,0.0,0.17448389360777578,0.05816129786925859,0.012244483761949176,0.015110324761016466,0.5 -2070,my_land,urban,0.025,0.02,0.085,0.0,2012-01-02,0.0,0.0,3.846153846153846e-07,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0,,,,, -2071,my_land,rural,15.716637268541254,0.1,0.8500000000000001,20.0,2012-01-02,0.0,0.0,0.002908534003859641,0.0,0.0,0.0,0.0,0.0,7.935729582944045,0.0,0.0,0.0,0.41843579512604206,0.13947859837534737,0.029363915447441553,0.16272169105116902,0.5 -2072,my_land,urban,0.04299999999999999,0.02,0.078,0.0,2012-01-03,0.0,0.0,7.17330861909175e-07,0.0,0.0,0.0,0.0,0.0,7.8556224900602425,0.0,0.0,0.0,,,,, -2073,my_land,rural,15.782688880524516,0.1,0.7799999999999999,20.0,2012-01-03,0.0,0.0,0.0028145230029406197,0.0,0.0,0.0,0.0,0.0,8.204536968464637,0.0,0.0,0.0,0.4374382264619273,0.14581274215397577,0.030697419400837013,0.06605161198325978,0.5 -2074,my_land,urban,0.03599999999999998,0.02,0.053,0.0,2012-01-04,0.0,0.0,8.134725135359249e-07,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2075,my_land,rural,15.779278896062953,0.1,0.53,20.0,2012-01-04,0.0,0.0,0.002752695053648801,0.0,0.0,0.0,0.0,0.0,8.264163010537619,0.0,0.0,0.0,0.30880461392886105,0.10293487130962034,0.021670499223077972,-0.003409984461559372,0.5 -2076,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2012-01-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2077,my_land,rural,15.708054482458353,0.1,0.03,20.0,2012-01-05,0.0,0.0,0.002762695053648801,0.0,0.0,0.0,0.0,0.0,8.299091804567203,0.0,0.0,0.0,0.0,0.0,0.0012244136045998664,-0.09448827209199734,0.5 -2078,my_land,urban,0.0,0.005,0.005,0.0,2012-01-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2079,my_land,rural,15.656097460127341,0.1,0.05,20.0,2012-01-06,0.0,0.0,0.002772695053648801,0.0,0.0,0.0,0.0,0.0,8.330243618320901,0.0,0.0,0.0,0.0,0.0,0.0019570223310119944,-0.08914044662023989,0.5 -2080,my_land,urban,0.0,0.0,0.0,0.0,2012-01-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2081,my_land,rural,15.556097460127342,0.1,0.0,20.0,2012-01-07,0.0,0.0,0.002782695053648801,0.0,0.0,0.0,0.0,0.0,8.360923309540114,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2082,my_land,urban,0.0,0.0,0.0,0.0,2012-01-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2083,my_land,rural,15.456097460127342,0.1,0.0,20.0,2012-01-08,0.0,0.0,0.002792695053648801,0.0,0.0,0.0,0.0,0.0,8.391543985442516,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2084,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-01-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2085,my_land,rural,15.385173803487065,0.1,0.03,20.0,2012-01-09,0.0,0.0,0.002802695053648801,0.0,0.0,0.0,0.0,0.0,8.422157283680315,0.0,0.0,0.0,0.0,0.0,0.0009236566402764921,-0.08847313280552986,0.5 -2086,my_land,urban,0.0,0.0,0.0,0.0,2012-01-10,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2087,my_land,rural,15.285173803487066,0.1,0.0,20.0,2012-01-10,0.0,0.0,0.002812695053648801,0.0,0.0,0.0,0.0,0.0,8.452769660460039,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2088,my_land,urban,0.0,0.0,0.0,0.0,2012-01-11,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2089,my_land,rural,15.185173803487066,0.1,0.0,20.0,2012-01-11,0.0,0.0,0.002822695053648801,0.0,0.0,0.0,0.0,0.0,7.815971207307506,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2090,my_land,urban,0.0,0.0,0.0,0.0,2012-01-12,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2091,my_land,rural,15.085173803487066,0.1,0.0,20.0,2012-01-12,0.0,0.0,0.002832695053648801,0.0,0.0,0.0,0.0,0.0,7.095746401163438,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2092,my_land,urban,0.0,0.001,0.001,0.0,2012-01-13,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2093,my_land,rural,14.995094870874203,0.1,0.01,20.0,2012-01-13,0.0,0.0,0.0028426950536488012,0.0,0.0,0.0,0.0,0.0,6.365093300145431,0.0,0.0,0.0,0.0,0.0,7.89326128631125e-05,-0.09157865225726225,0.5 -2094,my_land,urban,0.0,0.0,0.0,0.0,2012-01-14,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2095,my_land,rural,14.895094870874203,0.1,0.0,20.0,2012-01-14,0.0,0.0,0.0028526950536488013,0.0,0.0,0.0,0.0,0.0,5.633136662268179,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2096,my_land,urban,0.0,0.0,0.0,0.0,2012-01-15,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2097,my_land,rural,14.795094870874204,0.1,0.0,20.0,2012-01-15,0.0,0.0,0.0028626950536488013,0.0,0.0,0.0,0.0,0.0,4.901017083033523,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2098,my_land,urban,0.0,0.0,0.0,0.0,2012-01-16,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2099,my_land,rural,14.695094870874204,0.1,0.0,20.0,2012-01-16,0.0,0.0,0.0028726950536488013,0.0,0.0,0.0,0.0,0.0,4.168877135379191,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2100,my_land,urban,0.0,0.004,0.004,0.0,2012-01-17,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0,,,,, -2101,my_land,rural,14.635094870874203,0.1,0.04,20.0,2012-01-17,0.0,0.0,0.0028826950536488013,0.0,0.0,0.0,0.0,0.0,4.353922141922399,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -2102,my_land,urban,0.0,0.02,0.041999999999999996,0.0,2012-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, -2103,my_land,rural,14.955094870874204,0.1,0.42,20.0,2012-01-18,0.0,0.0,0.0028926950536488014,0.0,0.0,0.0,0.0,0.0,4.652167140138043,0.0,0.0,0.0,0.0,0.0,0.0,0.31999999999999995,0.5 -2104,my_land,urban,0.0,0.004,0.004,0.0,2012-01-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, -2105,my_land,rural,14.895094870874203,0.1,0.04,20.0,2012-01-19,0.0,0.0,0.0029026950536488014,0.0,0.0,0.0,0.0,0.0,4.967458392517256,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -2106,my_land,urban,0.0,0.001,0.001,0.0,2012-01-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, -2107,my_land,rural,14.805094870874203,0.1,0.01,20.0,2012-01-20,0.0,0.0,0.0029126950536488014,0.0,0.0,0.0,0.0,0.0,5.283432299064657,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -2108,my_land,urban,0.0,0.002,0.002,0.0,2012-01-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, -2109,my_land,rural,14.725094870874203,0.1,0.02,20.0,2012-01-21,0.0,0.0,0.0029226950536488014,0.0,0.0,0.0,0.0,0.0,5.5994915373830825,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2110,my_land,urban,0.0,0.0,0.0,0.0,2012-01-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0,,,,, -2111,my_land,rural,14.625094870874204,0.1,0.0,20.0,2012-01-22,0.0,0.0,0.0029326950536488015,0.0,0.0,0.0,0.0,0.0,5.915561442172886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2112,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2012-01-23,0.0,0.0,2.014925373134328e-06,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0,,,,, -2113,my_land,rural,15.395094870874203,0.1,0.8699999999999999,20.0,2012-01-23,0.0,0.0,0.0029426950536488015,0.0,0.0,0.0,0.0,0.0,6.2300114673776035,0.0,0.0,0.0,0.0,0.0,0.0,0.7699999999999999,0.5 -2114,my_land,urban,0.0,0.02,0.016999999999999998,0.0,2012-01-24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0,,,,, -2115,my_land,rural,15.369732141639462,0.1,0.16999999999999998,20.0,2012-01-24,0.0,0.0,0.0029353928186725666,0.0,0.0,0.0,0.0,0.0,6.547393307634391,0.0,0.0,0.0,0.06794594457975285,0.022648648193250954,0.004768136461737043,-0.025362729234740863,0.5 -2116,my_land,urban,0.0,0.02,0.04,0.0,2012-01-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0,,,,, -2117,my_land,rural,15.455265113993406,0.1,0.4,20.0,2012-01-25,0.0,0.0,0.00290706950147189,0.0,0.0,0.0,0.0,0.0,6.381769651963475,0.0,0.0,0.0,0.1528077571978155,0.0509359190659385,0.010723351382302843,0.08553297235394317,0.5 -2118,my_land,urban,1.734723475976807e-18,0.02,0.035,0.0,2012-01-26,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2119,my_land,rural,15.489991773342439,0.1,0.35000000000000003,20.0,2012-01-26,0.0,0.0,0.002879058167777453,0.0,0.0,0.0,0.0,0.0,6.157614186675556,0.0,0.0,0.0,0.1533822552138135,0.0511274184046045,0.010763667032548316,0.03472665934903369,0.5 -2120,my_land,urban,0.0,0.014000000000000002,0.014,0.0,2012-01-27,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2121,my_land,rural,15.43990335505742,0.1,0.13999999999999999,20.0,2012-01-27,0.0,0.0,0.0028731322814576016,0.0,0.0,0.0,0.0,0.0,5.927466878291346,0.0,0.0,0.0,0.06418799802807645,0.021395999342692148,0.004504420914250979,-0.05008841828501957,0.5 -2122,my_land,urban,0.0,0.0,0.0,0.0,2012-01-28,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2123,my_land,rural,15.33990335505742,0.1,0.0,20.0,2012-01-28,0.0,0.0,0.0028831322814576016,0.0,0.0,0.0,0.0,0.0,5.695397645286419,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2124,my_land,urban,0.0,0.002,0.002,0.0,2012-01-29,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2125,my_land,rural,15.259397949454305,0.1,0.02,20.0,2012-01-29,0.0,0.0,0.0028931322814576017,0.0,0.0,0.0,0.0,0.0,5.462817562910803,0.0,0.0,0.0,0.0,0.0,0.0005054056031138788,-0.09010811206227759,0.5 -2126,my_land,urban,0.0,0.0,0.0,0.0,2012-01-30,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2127,my_land,rural,15.159397949454306,0.1,0.0,20.0,2012-01-30,0.0,0.0,0.0029031322814576017,0.0,0.0,0.0,0.0,0.0,5.230173623613851,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2128,my_land,urban,0.0,0.0,0.0,0.0,2012-01-31,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2129,my_land,rural,15.059397949454306,0.1,0.0,20.0,2012-01-31,0.0,0.0,0.0029131322814576017,0.0,0.0,0.0,0.0,0.0,4.997521702951732,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2130,my_land,urban,0.0,0.0,0.0,0.0,2012-02-01,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2131,my_land,rural,14.959397949454306,0.1,0.0,20.0,2012-02-01,0.0,0.0,0.0029231322814576017,0.0,0.0,0.0,0.0,0.0,4.813083070118966,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2132,my_land,urban,0.0,0.0,0.0,0.0,2012-02-02,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2133,my_land,rural,14.859397949454307,0.1,0.0,20.0,2012-02-02,0.0,0.0,0.0029331322814576018,0.0,0.0,0.0,0.0,0.0,4.634671098264871,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2134,my_land,urban,0.0,0.0,0.0,0.0,2012-02-03,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0,,,,, -2135,my_land,rural,14.759397949454307,0.1,0.0,20.0,2012-02-03,0.0,0.0,0.002943132281457602,0.0,0.0,0.0,0.0,0.0,4.457012459033109,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2136,my_land,urban,0.04099999999999999,0.02,0.10099999999999999,0.0,2012-02-04,0.0,0.0,4.555555555555555e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, -2137,my_land,rural,15.669397949454307,0.1,1.01,20.0,2012-02-04,0.0,0.0,0.002953132281457602,0.0,0.0,0.0,0.0,0.0,4.271022874614049,0.0,0.0,0.0,0.0,0.0,0.0,0.91,0.5 -2138,my_land,urban,0.0,0.02,0.013,0.0,2012-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, -2139,my_land,rural,15.600281418751997,0.1,0.13,20.0,2012-02-05,0.0,0.0,0.0029453546108671232,0.0,0.0,0.0,0.0,0.0,4.100606427381303,0.0,0.0,0.0,0.07062052812539509,0.02354017604179836,0.004955826535115444,-0.06911653070230889,0.5 -2140,my_land,urban,0.0,0.008,0.008,0.0,2012-02-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, -2141,my_land,rural,15.577394710357458,0.1,0.08,20.0,2012-02-06,0.0,0.0,0.0029553546108671233,0.0,0.0,0.0,0.0,0.0,3.9241829461726625,0.0,0.0,0.0,0.0,0.0,0.002886708394538389,-0.07773416789076777,0.5 -2142,my_land,urban,0.0,0.0,0.0,0.0,2012-02-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, -2143,my_land,rural,15.477394710357459,0.1,0.0,20.0,2012-02-07,0.0,0.0,0.0029653546108671233,0.0,0.0,0.0,0.0,0.0,3.746772868271583,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2144,my_land,urban,0.0,0.0,0.0,0.0,2012-02-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0,,,,, -2145,my_land,rural,15.377394710357459,0.1,0.0,20.0,2012-02-08,0.0,0.0,0.0029753546108671233,0.0,0.0,0.0,0.0,0.0,3.845132323033948,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2146,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2012-02-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2147,my_land,rural,15.47812862417082,0.1,0.44,20.0,2012-02-09,0.0,0.0,0.0029421479398501764,0.0,0.0,0.0,0.0,0.0,3.9757471271216187,0.0,0.0,0.0,0.17047708640798204,0.056825695469327336,0.011963304309332071,0.10073391381335861,0.5 -2148,my_land,urban,0.0,0.001,0.001,0.0,2012-02-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2149,my_land,rural,15.38781162455784,0.1,0.01,20.0,2012-02-10,0.0,0.0,0.0029521479398501764,0.0,0.0,0.0,0.0,0.0,4.114825533640203,0.0,0.0,0.0,0.0,0.0,0.000316999612979966,-0.09633999225959931,0.5 -2150,my_land,urban,0.0,0.001,0.001,0.0,2012-02-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2151,my_land,rural,15.297534642769804,0.1,0.01,20.0,2012-02-11,0.0,0.0,0.0029621479398501765,0.0,0.0,0.0,0.0,0.0,4.252746048955025,0.0,0.0,0.0,0.0,0.0,0.0002769817880357109,-0.09553963576071421,0.5 -2152,my_land,urban,0.0,0.002,0.002,0.0,2012-02-12,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2153,my_land,rural,15.217076089835906,0.1,0.02,20.0,2012-02-12,0.0,0.0,0.0029721479398501765,0.0,0.0,0.0,0.0,0.0,4.390521827869378,0.0,0.0,0.0,0.0,0.0,0.00045855293389813296,-0.08917105867796266,0.5 -2154,my_land,urban,0.0,0.007,0.007,0.0,2012-02-13,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2155,my_land,rural,15.185821536376602,0.1,0.06999999999999999,20.0,2012-02-13,0.0,0.0,0.0029821479398501765,0.0,0.0,0.0,0.0,0.0,4.528279513983673,0.0,0.0,0.0,0.0,0.0,0.0012545534593041906,-0.05509106918608381,0.5 -2156,my_land,urban,0.0,0.0,0.0,0.0,2012-02-14,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2157,my_land,rural,15.085821536376603,0.1,0.0,20.0,2012-02-14,0.0,0.0,0.0029921479398501765,0.0,0.0,0.0,0.0,0.0,4.666034939247959,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2158,my_land,urban,0.0,0.0,0.0,0.0,2012-02-15,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2159,my_land,rural,14.985821536376603,0.1,0.0,20.0,2012-02-15,0.0,0.0,0.0030021479398501766,0.0,0.0,0.0,0.0,0.0,4.927004367405996,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2160,my_land,urban,0.0,0.0,0.0,0.0,2012-02-16,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2161,my_land,rural,14.885821536376604,0.1,0.0,20.0,2012-02-16,0.0,0.0,0.0030121479398501766,0.0,0.0,0.0,0.0,0.0,5.203375545925749,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2162,my_land,urban,0.0,0.001,0.001,0.0,2012-02-17,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0,,,,, -2163,my_land,rural,14.795821536376604,0.1,0.01,20.0,2012-02-17,0.0,0.0,0.0030221479398501766,0.0,0.0,0.0,0.0,0.0,5.48167194324072,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -2164,my_land,urban,0.0,0.02,0.027000000000000003,0.0,2012-02-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2165,my_land,rural,14.965821536376604,0.1,0.27,20.0,2012-02-18,0.0,0.0,0.0030321479398501766,0.0,0.0,0.0,0.0,0.0,5.759667056147782,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.5 -2166,my_land,urban,0.0,0.0,0.0,0.0,2012-02-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2167,my_land,rural,14.865821536376604,0.1,0.0,20.0,2012-02-19,0.0,0.0,0.0030421479398501767,0.0,0.0,0.0,0.0,0.0,6.0387083820184735,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2168,my_land,urban,0.0,0.0,0.0,0.0,2012-02-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2169,my_land,rural,14.765821536376604,0.1,0.0,20.0,2012-02-20,0.0,0.0,0.0030521479398501767,0.0,0.0,0.0,0.0,0.0,6.31733854775231,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2170,my_land,urban,0.0,0.002,0.002,0.0,2012-02-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2171,my_land,rural,14.685821536376604,0.1,0.02,20.0,2012-02-21,0.0,0.0,0.0030621479398501767,0.0,0.0,0.0,0.0,0.0,6.59591731846904,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2172,my_land,urban,0.0,0.009,0.009,0.0,2012-02-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2173,my_land,rural,14.675821536376604,0.1,0.09,20.0,2012-02-22,0.0,0.0,0.0030721479398501767,0.0,0.0,0.0,0.0,0.0,6.949489664808631,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -2174,my_land,urban,0.0,0.0,0.0,0.0,2012-02-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2175,my_land,rural,14.575821536376605,0.1,0.0,20.0,2012-02-23,0.0,0.0,0.0030821479398501768,0.0,0.0,0.0,0.0,0.0,7.312436208101079,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2176,my_land,urban,0.0,0.002,0.002,0.0,2012-02-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2177,my_land,rural,14.495821536376605,0.1,0.02,20.0,2012-02-24,0.0,0.0,0.003092147939850177,0.0,0.0,0.0,0.0,0.0,7.676554526012635,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2178,my_land,urban,0.0,0.0,0.0,0.0,2012-02-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2179,my_land,rural,14.395821536376605,0.1,0.0,20.0,2012-02-25,0.0,0.0,0.003102147939850177,0.0,0.0,0.0,0.0,0.0,8.04081931575158,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2180,my_land,urban,0.0,0.001,0.001,0.0,2012-02-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2181,my_land,rural,14.305821536376605,0.1,0.01,20.0,2012-02-26,0.0,0.0,0.003112147939850177,0.0,0.0,0.0,0.0,0.0,8.405102414468947,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -2182,my_land,urban,0.0,0.009,0.009,0.0,2012-02-27,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2183,my_land,rural,14.295821536376605,0.1,0.09,20.0,2012-02-27,0.0,0.0,0.003122147939850177,0.0,0.0,0.0,0.0,0.0,8.76938780180862,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -2184,my_land,urban,0.0,0.0,0.0,0.0,2012-02-28,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2185,my_land,rural,14.195821536376606,0.1,0.0,20.0,2012-02-28,0.0,0.0,0.003132147939850177,0.0,0.0,0.0,0.0,0.0,8.632110975226079,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2186,my_land,urban,0.0,0.0,0.0,0.0,2012-02-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2187,my_land,rural,14.095821536376606,0.1,0.0,20.0,2012-02-29,0.0,0.0,0.003142147939850177,0.0,0.0,0.0,0.0,0.0,8.432138871903259,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2188,my_land,urban,0.0,0.0,0.0,0.0,2012-03-01,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2189,my_land,rural,13.995821536376607,0.1,0.0,20.0,2012-03-01,0.0,0.0,0.003152147939850177,0.0,0.0,0.0,0.0,0.0,8.22432985898791,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2190,my_land,urban,0.0,0.004,0.004,0.0,2012-03-02,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0,,,,, -2191,my_land,rural,13.935821536376606,0.1,0.04,20.0,2012-03-02,0.0,0.0,0.003162147939850177,0.0,0.0,0.0,0.0,0.0,8.01554123237349,0.0,0.0,0.0,0.0,0.0,0.0,-0.060000000000000005,0.5 -2192,my_land,urban,0.001999999999999995,0.02,0.062,0.0,2012-03-03,0.0,0.0,6.666666666666648e-07,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0,,,,, -2193,my_land,rural,14.455821536376606,0.1,0.62,20.0,2012-03-03,0.0,0.0,0.003172147939850177,0.0,0.0,0.0,0.0,0.0,7.8038905013742585,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.5 -2194,my_land,urban,0.021000000000000005,0.02,0.07900000000000001,0.0,2012-03-04,0.0,0.0,5.737704918032781e-07,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2195,my_land,rural,15.145821536376605,0.1,0.79,20.0,2012-03-04,0.0,0.0,0.003182147939850177,0.0,0.0,0.0,0.0,0.0,7.593708824715902,0.0,0.0,0.0,0.0,0.0,0.0,0.6900000000000001,0.5 -2196,my_land,urban,0.0,0.02,0.0,0.0,2012-03-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2197,my_land,rural,15.045821536376605,0.1,0.0,20.0,2012-03-05,0.0,0.0,0.003192147939850177,0.0,0.0,0.0,0.0,0.0,7.388276103089489,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2198,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-03-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2199,my_land,rural,15.05526697679811,0.1,0.12,20.0,2012-03-06,0.0,0.0,0.0032000167236549844,0.0,0.0,0.0,0.0,0.0,7.179669271968202,0.0,0.0,0.0,0.00752012369967785,0.0025067078998926165,0.0005277279789247614,0.009445440421504758,0.5 -2200,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-03-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2201,my_land,rural,15.107383839113368,0.1,0.16999999999999998,20.0,2012-03-07,0.0,0.0,0.0032064109600880037,0.0,0.0,0.0,0.0,0.0,7.421481542572029,0.0,0.0,0.0,0.012741735600379464,0.0042472452001264885,0.0008941568842371555,0.05211686231525688,0.5 -2202,my_land,urban,0.0,0.0,0.0,0.0,2012-03-08,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2203,my_land,rural,15.007383839113368,0.1,0.0,20.0,2012-03-08,0.0,0.0,0.0032164109600880037,0.0,0.0,0.0,0.0,0.0,7.719649478321504,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2204,my_land,urban,0.0,0.0,0.0,0.0,2012-03-09,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2205,my_land,rural,14.907383839113368,0.1,0.0,20.0,2012-03-09,0.0,0.0,0.0032264109600880038,0.0,0.0,0.0,0.0,0.0,8.024777613040188,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2206,my_land,urban,0.0,0.0,0.0,0.0,2012-03-10,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2207,my_land,rural,14.807383839113369,0.1,0.0,20.0,2012-03-10,0.0,0.0,0.003236410960088004,0.0,0.0,0.0,0.0,0.0,8.330775773380024,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2208,my_land,urban,0.0,0.0,0.0,0.0,2012-03-11,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2209,my_land,rural,14.707383839113369,0.1,0.0,20.0,2012-03-11,0.0,0.0,0.003246410960088004,0.0,0.0,0.0,0.0,0.0,8.636882686172504,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2210,my_land,urban,0.0,0.002,0.002,0.0,2012-03-12,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2211,my_land,rural,14.627383839113369,0.1,0.02,20.0,2012-03-12,0.0,0.0,0.003256410960088004,0.0,0.0,0.0,0.0,0.0,8.943003193021562,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2212,my_land,urban,0.0,0.0,0.0,0.0,2012-03-13,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2213,my_land,rural,14.52738383911337,0.1,0.0,20.0,2012-03-13,0.0,0.0,0.003266410960088004,0.0,0.0,0.0,0.0,0.0,9.249125399127696,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2214,my_land,urban,0.0,0.001,0.001,0.0,2012-03-14,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2215,my_land,rural,14.43738383911337,0.1,0.01,20.0,2012-03-14,0.0,0.0,0.003276410960088004,0.0,0.0,0.0,0.0,0.0,9.231140674890963,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -2216,my_land,urban,0.0,0.0,0.0,0.0,2012-03-15,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2217,my_land,rural,14.33738383911337,0.1,0.0,20.0,2012-03-15,0.0,0.0,0.003286410960088004,0.0,0.0,0.0,0.0,0.0,9.172642584361371,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2218,my_land,urban,0.0,0.02,0.02,0.0,2012-03-16,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0,,,,, -2219,my_land,rural,14.43738383911337,0.1,0.2,20.0,2012-03-16,0.0,0.0,0.003296410960088004,0.0,0.0,0.0,0.0,0.0,9.108887557351917,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 -2220,my_land,urban,0.0,0.02,0.036,0.0,2012-03-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2221,my_land,rural,14.69738383911337,0.1,0.36,20.0,2012-03-17,0.0,0.0,0.003306410960088004,0.0,0.0,0.0,0.0,0.0,9.044343754283467,0.0,0.0,0.0,0.0,0.0,0.0,0.26,0.5 -2222,my_land,urban,0.0,0.01,0.01,0.0,2012-03-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2223,my_land,rural,14.69738383911337,0.1,0.1,20.0,2012-03-18,0.0,0.0,0.003316410960088004,0.0,0.0,0.0,0.0,0.0,8.980542969285436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -2224,my_land,urban,0.0,0.0,0.0,0.0,2012-03-19,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2225,my_land,rural,14.59738383911337,0.1,0.0,20.0,2012-03-19,0.0,0.0,0.003326410960088004,0.0,0.0,0.0,0.0,0.0,8.91631787116068,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2226,my_land,urban,0.0,0.0,0.0,0.0,2012-03-20,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2227,my_land,rural,14.49738383911337,0.1,0.0,20.0,2012-03-20,0.0,0.0,0.003336410960088004,0.0,0.0,0.0,0.0,0.0,8.852039733895086,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2228,my_land,urban,0.0,0.0,0.0,0.0,2012-03-21,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2229,my_land,rural,14.39738383911337,0.1,0.0,20.0,2012-03-21,0.0,0.0,0.003346410960088004,0.0,0.0,0.0,0.0,0.0,9.039540681236886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2230,my_land,urban,0.0,0.0,0.0,0.0,2012-03-22,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2231,my_land,rural,14.29738383911337,0.1,0.0,20.0,2012-03-22,0.0,0.0,0.003356410960088004,0.0,0.0,0.0,0.0,0.0,9.25851401340461,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2232,my_land,urban,0.0,0.0,0.0,0.0,2012-03-23,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2233,my_land,rural,14.197383839113371,0.1,0.0,20.0,2012-03-23,0.0,0.0,0.003366410960088004,0.0,0.0,0.0,0.0,0.0,9.481421394425578,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2234,my_land,urban,0.0,0.0,0.0,0.0,2012-03-24,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2235,my_land,rural,14.097383839113371,0.1,0.0,20.0,2012-03-24,0.0,0.0,0.003376410960088004,0.0,0.0,0.0,0.0,0.0,9.704820531553198,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2236,my_land,urban,0.0,0.0,0.0,0.0,2012-03-25,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2237,my_land,rural,13.997383839113372,0.1,0.0,20.0,2012-03-25,0.0,0.0,0.003386410960088004,0.0,0.0,0.0,0.0,0.0,9.92828113819415,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2238,my_land,urban,0.0,0.0,0.0,0.0,2012-03-26,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2239,my_land,rural,13.897383839113372,0.1,0.0,20.0,2012-03-26,0.0,0.0,0.003396410960088004,0.0,0.0,0.0,0.0,0.0,10.151749424774268,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2240,my_land,urban,0.0,0.0,0.0,0.0,2012-03-27,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2241,my_land,rural,13.797383839113373,0.1,0.0,20.0,2012-03-27,0.0,0.0,0.0034064109600880042,0.0,0.0,0.0,0.0,0.0,10.375218678096783,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2242,my_land,urban,0.0,0.0,0.0,0.0,2012-03-28,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2243,my_land,rural,13.697383839113373,0.1,0.0,20.0,2012-03-28,0.0,0.0,0.0034164109600880043,0.0,0.0,0.0,0.0,0.0,10.381723762262096,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2244,my_land,urban,0.0,0.0,0.0,0.0,2012-03-29,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2245,my_land,rural,13.597383839113373,0.1,0.0,20.0,2012-03-29,0.0,0.0,0.0034264109600880043,0.0,0.0,0.0,0.0,0.0,10.361108325282762,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2246,my_land,urban,0.0,0.0,0.0,0.0,2012-03-30,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2247,my_land,rural,13.497383839113374,0.1,0.0,20.0,2012-03-30,0.0,0.0,0.0034364109600880043,0.0,0.0,0.0,0.0,0.0,10.337102823160345,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2248,my_land,urban,0.0,0.0,0.0,0.0,2012-03-31,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2249,my_land,rural,13.397383839113374,0.1,0.0,20.0,2012-03-31,0.0,0.0,0.0034464109600880043,0.0,0.0,0.0,0.0,0.0,10.312673570395043,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2250,my_land,urban,0.0,0.0,0.0,0.0,2012-04-01,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2251,my_land,rural,13.297383839113374,0.1,0.0,20.0,2012-04-01,0.0,0.0,0.0034564109600880044,0.0,0.0,0.0,0.0,0.0,10.288191341299381,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2252,my_land,urban,0.0,0.0,0.0,0.0,2012-04-02,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0,,,,, -2253,my_land,rural,13.197383839113375,0.1,0.0,20.0,2012-04-02,0.0,0.0,0.0034664109600880044,0.0,0.0,0.0,0.0,0.0,10.263702490162423,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2254,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2012-04-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0,,,,, -2255,my_land,rural,13.317383839113374,0.1,0.22,20.0,2012-04-03,0.0,0.0,0.0034764109600880044,0.0,0.0,0.0,0.0,0.0,10.239225536190576,0.0,0.0,0.0,0.0,0.0,0.0,0.12000000000000001,0.5 -2256,my_land,urban,0.0,0.02,0.028,0.0,2012-04-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, -2257,my_land,rural,13.497383839113374,0.1,0.27999999999999997,20.0,2012-04-04,0.0,0.0,0.0034864109600880044,0.0,0.0,0.0,0.0,0.0,10.174468751384405,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.5 -2258,my_land,urban,0.0,0.0,0.0,0.0,2012-04-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, -2259,my_land,rural,13.397383839113374,0.1,0.0,20.0,2012-04-05,0.0,0.0,0.0034964109600880045,0.0,0.0,0.0,0.0,0.0,10.104844311423053,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2260,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-04-06,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, -2261,my_land,rural,13.327383839113374,0.1,0.03,20.0,2012-04-06,0.0,0.0,0.0035064109600880045,0.0,0.0,0.0,0.0,0.0,10.034534111427883,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -2262,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2012-04-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0,,,,, -2263,my_land,rural,13.287383839113375,0.1,0.06,20.0,2012-04-07,0.0,0.0,0.0035164109600880045,0.0,0.0,0.0,0.0,0.0,9.964138192178487,0.0,0.0,0.0,0.0,0.0,0.0,-0.04000000000000001,0.5 -2264,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-04-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0,,,,, -2265,my_land,rural,13.397383839113374,0.1,0.21,20.0,2012-04-08,0.0,0.0,0.0035264109600880045,0.0,0.0,0.0,0.0,0.0,9.893629078949129,0.0,0.0,0.0,0.0,0.0,0.0,0.10999999999999999,0.5 -2266,my_land,urban,0.03599999999999998,0.02,0.09599999999999999,0.0,2012-04-09,0.0,0.0,4.736842105263157e-07,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2267,my_land,rural,14.257383839113373,0.1,0.96,20.0,2012-04-09,0.0,0.0,0.0035364109600880046,0.0,0.0,0.0,0.0,0.0,9.822470176776665,0.0,0.0,0.0,0.0,0.0,0.0,0.86,0.5 -2268,my_land,urban,3.469446951953614e-18,0.02,0.014,0.0,2012-04-10,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2269,my_land,rural,14.297383839113373,0.1,0.13999999999999999,20.0,2012-04-10,0.0,0.0,0.0035464109600880046,0.0,0.0,0.0,0.0,0.0,9.752765942521354,0.0,0.0,0.0,0.0,0.0,0.0,0.039999999999999994,0.5 -2270,my_land,urban,0.0,0.009000000000000003,0.009,0.0,2012-04-11,0.0,0.0,1.0000000000000002e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2271,my_land,rural,14.287383839113373,0.1,0.09,20.0,2012-04-11,0.0,0.0,0.0035564109600880046,0.0,0.0,0.0,0.0,0.0,9.73070288556517,0.0,0.0,0.0,0.0,0.0,0.0,-0.010000000000000005,0.5 -2272,my_land,urban,0.0,0.013,0.013,0.0,2012-04-12,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2273,my_land,rural,14.317383839113372,0.1,0.13,20.0,2012-04-12,0.0,0.0,0.0035664109600880047,0.0,0.0,0.0,0.0,0.0,9.714534750252634,0.0,0.0,0.0,0.0,0.0,0.0,0.029999999999999992,0.5 -2274,my_land,urban,0.0,0.02,0.02,0.0,2012-04-13,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2275,my_land,rural,14.417383839113372,0.1,0.2,20.0,2012-04-13,0.0,0.0,0.0035764109600880047,0.0,0.0,0.0,0.0,0.0,9.699079223368509,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 -2276,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-04-14,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2277,my_land,rural,14.347383839113371,0.1,0.03,20.0,2012-04-14,0.0,0.0,0.0035864109600880047,0.0,0.0,0.0,0.0,0.0,9.683813474671064,0.0,0.0,0.0,0.0,0.0,0.0,-0.07,0.5 -2278,my_land,urban,0.0,0.0,0.0,0.0,2012-04-15,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0,,,,, -2279,my_land,rural,14.247383839113372,0.1,0.0,20.0,2012-04-15,0.0,0.0,0.0035964109600880047,0.0,0.0,0.0,0.0,0.0,9.668512398833883,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2280,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2012-04-16,0.0,0.0,-1.6940658945086007e-21,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0,,,,, -2281,my_land,rural,14.617383839113371,0.1,0.47000000000000003,20.0,2012-04-16,0.0,0.0,0.0036064109600880048,0.0,0.0,0.0,0.0,0.0,9.652967530782124,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.5 -2282,my_land,urban,0.0,0.02,0.038,0.0,2012-04-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0,,,,, -2283,my_land,rural,14.89738383911337,0.1,0.38,20.0,2012-04-17,0.0,0.0,0.0036164109600880048,0.0,0.0,0.0,0.0,0.0,9.637687763978716,0.0,0.0,0.0,0.0,0.0,0.0,0.27999999999999997,0.5 -2284,my_land,urban,0.038,0.02,0.098,0.0,2012-04-18,0.0,0.0,4.871794871794872e-07,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0,,,,, -2285,my_land,rural,15.77738383911337,0.1,0.98,20.0,2012-04-18,0.0,0.0,0.003626410960088005,0.0,0.0,0.0,0.0,0.0,9.705814168810612,0.0,0.0,0.0,0.0,0.0,0.0,0.8799999999999999,0.5 -2286,my_land,urban,0.006999999999999999,0.02,0.028999999999999998,0.0,2012-04-19,0.0,0.0,2.21494817239498e-07,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0,,,,, -2287,my_land,rural,15.730903580924119,0.1,0.29,20.0,2012-04-19,0.0,0.0,0.0035852098464018546,0.0,0.0,0.0,0.0,0.0,9.783839119410155,0.0,0.0,0.0,0.16849218395984014,0.056164061319946716,0.011824012909462467,-0.04648025818924936,0.5 -2288,my_land,urban,0.0,0.02,0.018,0.0,2012-04-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0,,,,, -2289,my_land,rural,15.66796585794536,0.1,0.18,20.0,2012-04-20,0.0,0.0,0.003564318675204368,0.0,0.0,0.0,0.0,0.0,9.863198643703777,0.0,0.0,0.0,0.10184312762236696,0.033947709207455656,0.007146886148938034,-0.06293772297876067,0.5 -2290,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-04-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0,,,,, -2291,my_land,rural,15.618019762262866,0.1,0.21,20.0,2012-04-21,0.0,0.0,0.0035398789488883704,0.0,0.0,0.0,0.0,0.0,9.942788551783963,0.0,0.0,0.0,0.11396159317377647,0.03798719772459216,0.007997304784124666,-0.04994609568249333,0.5 -2292,my_land,urban,0.0,0.02,0.028,0.0,2012-04-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0,,,,, -2293,my_land,rural,15.592864648750295,0.1,0.27999999999999997,20.0,2012-04-22,0.0,0.0,0.0035060562698100654,0.0,0.0,0.0,0.0,0.0,10.022442537715095,0.0,0.0,0.0,0.14617301837770758,0.048724339459235856,0.010257755675628604,-0.025155113512572054,0.5 -2294,my_land,urban,0.0,0.02,0.044000000000000004,0.0,2012-04-23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0,,,,, -2295,my_land,rural,15.617406845016781,0.1,0.44,20.0,2012-04-23,0.0,0.0,0.003449856424057657,0.0,0.0,0.0,0.0,0.0,10.102191783171536,0.0,0.0,0.0,0.22476368516012815,0.0749212283867094,0.015772890186675662,0.024542196266486797,0.5 -2296,my_land,urban,0.014000000000000005,0.02,0.07400000000000001,0.0,2012-04-24,0.0,0.0,2.5925925925925933e-07,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0,,,,, -2297,my_land,rural,15.715488035385995,0.1,0.74,20.0,2012-04-24,0.0,0.0,0.003350110330988048,0.0,0.0,0.0,0.0,0.0,10.182103672625233,0.0,0.0,0.0,0.38611715186193507,0.1287057172873117,0.027095940481539304,0.09808119036921392,0.5 -2298,my_land,urban,0.053000000000000026,0.02,0.099,0.0,2012-04-25,0.0,0.0,7.176423735563522e-07,0.0,0.0,0.0,0.0,0.0,10.33421659107527,0.0,0.0,0.0,,,,, -2299,my_land,rural,15.82681200043467,0.1,0.9900000000000001,20.0,2012-04-25,0.0,0.0,0.003210072158595561,0.0,0.0,0.0,0.0,0.0,10.289042623651481,0.0,0.0,0.0,0.5548066749028199,0.18493555830093997,0.03893380174756631,0.11132396504867394,0.5 -2300,my_land,urban,0.05700000000000003,0.02,0.064,0.0,2012-04-26,0.0,0.0,1.0093362401310525e-06,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0,,,,, -2301,my_land,rural,15.831804778990566,0.1,0.64,20.0,2012-04-26,0.0,0.0,0.003119911963265809,0.0,0.0,0.0,0.0,0.0,10.398495645024342,0.0,0.0,0.0,0.3811926452789219,0.12706421509297397,0.026750361072205044,0.004992778555899108,0.5 -2302,my_land,urban,0.08800000000000002,0.02,0.091,0.0,2012-04-27,0.0,0.0,1.3814186650900988e-06,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0,,,,, -2303,my_land,rural,15.879314914576037,0.1,0.91,20.0,2012-04-27,0.0,0.0,0.0029933639328259517,0.0,0.0,0.0,0.0,0.0,10.509080881453844,0.0,0.0,0.0,0.5432740283953531,0.18109134279845102,0.03812449322072654,0.04751013558546933,0.5 -2304,my_land,urban,0.205,0.02,0.177,0.0,2012-04-28,0.0,0.0,1.99261561772845e-06,0.0,0.0,0.0,0.0,0.0,10.659612098855122,0.0,0.0,0.0,,,,, -2305,my_land,rural,16.03515434564476,0.1,1.77,20.0,2012-04-28,0.0,0.0,0.0027561226787833756,0.0,0.0,0.0,0.0,0.0,10.620724878881829,0.0,0.0,0.0,1.0788394053635335,0.3596131351211779,0.07570802844656377,0.1558394310687246,0.5 -2306,my_land,urban,0.255,0.02,0.10999999999999999,0.0,2012-04-29,0.0,0.0,2.5868372288839148e-06,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0,,,,, -2307,my_land,rural,16.043286659711313,0.1,1.0999999999999999,20.0,2012-04-29,0.0,0.0,0.002612671973132652,0.0,0.0,0.0,0.0,0.0,10.730211963380642,0.0,0.0,0.0,0.7067057262275797,0.23556857540919324,0.04959338429667226,0.008132314066554638,0.5 -2308,my_land,urban,0.34500000000000003,0.02,0.15,0.0,2012-04-30,0.0,0.0,3.214178815493378e-06,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0,,,,, -2309,my_land,rural,16.08774315962399,0.1,1.5,20.0,2012-04-30,0.0,0.0,0.0024282955923012467,0.0,0.0,0.0,0.0,0.0,10.841149357745566,0.0,0.0,0.0,0.9658247438122152,0.32194158127073835,0.06777717500436597,0.04445649991268036,0.5 -2310,my_land,urban,0.29900000000000004,0.02,0.014,0.0,2012-05-01,0.0,0.0,3.7169305776770506e-06,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0,,,,, -2311,my_land,rural,15.999785241561993,0.1,0.13999999999999999,20.0,2012-05-01,0.0,0.0,0.002419910075374375,0.0,0.0,0.0,0.0,0.0,10.948967624300407,0.0,0.0,0.0,0.09117001661917247,0.03039000553972416,0.006397895903099823,-0.08795791806199646,0.5 -2312,my_land,urban,0.31200000000000006,0.02,0.073,0.0,2012-05-02,0.0,0.0,4.180915739304658e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0,,,,, -2313,my_land,rural,15.978210488491827,0.1,0.73,20.0,2012-05-02,0.0,0.0,0.002339286110785917,0.0,0.0,0.0,0.0,0.0,10.936216584312037,0.0,0.0,0.0,0.46424701156249293,0.15474900385416432,0.03257873765350827,-0.0215747530701655,0.5 -2314,my_land,urban,0.26000000000000006,0.02,0.008,0.0,2012-05-03,0.0,0.0,4.490126974064037e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0,,,,, -2315,my_land,rural,15.954663963460757,0.1,0.08,20.0,2012-05-03,0.0,0.0,0.0023492861107859172,0.0,0.0,0.0,0.0,0.0,10.907205645539005,0.0,0.0,0.0,0.0,0.0,0.0035465250310708365,-0.09093050062141673,0.5 -2316,my_land,urban,0.20600000000000004,0.02,0.005999999999999999,0.0,2012-05-04,0.0,0.0,4.597423401045494e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0,,,,, -2317,my_land,rural,15.912024514908731,0.1,0.06,20.0,2012-05-04,0.0,0.0,0.0023592861107859173,0.0,0.0,0.0,0.0,0.0,10.876793560692379,0.0,0.0,0.0,0.0,0.0,0.0026394485520255177,-0.09278897104051036,0.5 -2318,my_land,urban,0.14600000000000005,0.02,0.0,0.0,2012-05-05,0.0,0.0,4.393676433078721e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0,,,,, -2319,my_land,rural,15.812024514908732,0.1,0.0,20.0,2012-05-05,0.0,0.0,0.0023692861107859173,0.0,0.0,0.0,0.0,0.0,10.846206340086548,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2320,my_land,urban,0.09900000000000003,0.02,0.013,0.0,2012-05-06,0.0,0.0,3.841539330034485e-06,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0,,,,, -2321,my_land,rural,15.734119037250204,0.1,0.13,20.0,2012-05-06,0.0,0.0,0.002363885036457216,0.0,0.0,0.0,0.0,0.0,10.81561668391062,0.0,0.0,0.0,0.07688265283170147,0.02562755094390049,0.005395273882926419,-0.07790547765852839,0.5 -2322,my_land,urban,0.18300000000000002,0.02,0.144,0.0,2012-05-07,0.0,0.0,3.973101782046236e-06,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0,,,,, -2323,my_land,rural,15.928391601656228,0.1,1.44,20.0,2012-05-07,0.0,0.0,0.002222045149138042,0.0,0.0,0.0,0.0,0.0,10.785883849551517,0.0,0.0,0.0,0.816330797860709,0.27211026595356963,0.05728637177969887,0.19427256440602247,0.5 -2324,my_land,urban,0.158,0.02,0.035,0.0,2012-05-08,0.0,0.0,3.968434755370229e-06,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0,,,,, -2325,my_land,rural,15.87326903555895,0.1,0.35000000000000003,20.0,2012-05-08,0.0,0.0,0.0021920160980025616,0.0,0.0,0.0,0.0,0.0,10.754647265012288,0.0,0.0,0.0,0.21739982834431149,0.07246660944810382,0.015256128304863965,-0.05512256609727928,0.5 -2326,my_land,urban,0.19299999999999998,0.02,0.095,0.0,2012-05-09,0.0,0.0,4.115484582774481e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, -2327,my_land,rural,15.91261202663004,0.1,0.95,20.0,2012-05-09,0.0,0.0,0.002100364559812297,0.0,0.0,0.0,0.0,0.0,10.8269173817894,0.0,0.0,0.0,0.5775931188618492,0.1925310396206164,0.04053285044644556,0.03934299107108876,0.5 -2328,my_land,urban,0.15299999999999997,0.02,0.02,0.0,2012-05-10,0.0,0.0,4.055280524168371e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, -2329,my_land,rural,15.839267633815039,0.1,0.2,20.0,2012-05-10,0.0,0.0,0.00208864935932465,0.0,0.0,0.0,0.0,0.0,10.909791645304134,0.0,0.0,0.0,0.12350787988068737,0.041169293293562455,0.008667219640749992,-0.07334439281499981,0.5 -2330,my_land,urban,0.09299999999999997,0.02,0.0,0.0,2012-05-11,0.0,0.0,3.5348954041177326e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, -2331,my_land,rural,15.73926763381504,0.1,0.0,20.0,2012-05-11,0.0,0.0,0.00209864935932465,0.0,0.0,0.0,0.0,0.0,10.994973955663017,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2332,my_land,urban,0.03299999999999997,0.02,0.0,0.0,2012-05-12,0.0,0.0,2.050021210080618e-06,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, -2333,my_land,rural,15.63926763381504,0.1,0.0,20.0,2012-05-12,0.0,0.0,0.00210864935932465,0.0,0.0,0.0,0.0,0.0,11.080621744457877,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2334,my_land,urban,0.0,0.02,0.011000000000000001,0.0,2012-05-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0,,,,, -2335,my_land,rural,15.567275948327165,0.1,0.11,20.0,2012-05-13,0.0,0.0,0.002108101307056382,0.0,0.0,0.0,0.0,0.0,11.166341595777205,0.0,0.0,0.0,0.05841907591011096,0.01947302530337032,0.0040995842743937515,-0.07199168548787503,0.5 -2336,my_land,urban,0.0,0.02,0.026,0.0,2012-05-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, -2337,my_land,rural,15.545255416094797,0.1,0.26,20.0,2012-05-14,0.0,0.0,0.0020947995539778584,0.0,0.0,0.0,0.0,0.0,11.252413100588669,0.0,0.0,0.0,0.12968962921556304,0.04322987640518768,0.00910102661161846,-0.022020532232369206,0.5 -2338,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-05-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, -2339,my_land,rural,15.498832239796023,0.1,0.16999999999999998,20.0,2012-05-15,0.0,0.0,0.002089885811863185,0.0,0.0,0.0,0.0,0.0,11.438817739816518,0.0,0.0,0.0,0.08295151311287549,0.027650504370958496,0.005821158814938632,-0.04642317629877264,0.5 -2340,my_land,urban,0.0,0.0,0.0,0.0,2012-05-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, -2341,my_land,rural,15.398832239796024,0.1,0.0,20.0,2012-05-16,0.0,0.0,0.002099885811863185,0.0,0.0,0.0,0.0,0.0,11.637664717477067,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2342,my_land,urban,0.0,0.0,0.0,0.0,2012-05-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0,,,,, -2343,my_land,rural,15.298832239796024,0.1,0.0,20.0,2012-05-17,0.0,0.0,0.002109885811863185,0.0,0.0,0.0,0.0,0.0,11.838301839684634,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2344,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-05-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2345,my_land,rural,15.312222758797045,0.1,0.21,20.0,2012-05-18,0.0,0.0,0.002107255261853071,0.0,0.0,0.0,0.0,0.0,12.039652766163835,0.0,0.0,0.0,0.06883425521177333,0.022944751737257775,0.004830474049949006,0.013390519001019879,0.5 -2346,my_land,urban,0.0,0.0,0.0,0.0,2012-05-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2347,my_land,rural,15.212222758797045,0.1,0.0,20.0,2012-05-19,0.0,0.0,0.002117255261853071,0.0,0.0,0.0,0.0,0.0,12.24011284577048,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2348,my_land,urban,0.0,0.0,0.0,0.0,2012-05-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2349,my_land,rural,15.112222758797046,0.1,0.0,20.0,2012-05-20,0.0,0.0,0.002127255261853071,0.0,0.0,0.0,0.0,0.0,12.44095160572131,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2350,my_land,urban,0.0,0.0,0.0,0.0,2012-05-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2351,my_land,rural,15.012222758797046,0.1,0.0,20.0,2012-05-21,0.0,0.0,0.002137255261853071,0.0,0.0,0.0,0.0,0.0,12.641837700715165,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2352,my_land,urban,0.0,0.0,0.0,0.0,2012-05-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2353,my_land,rural,14.912222758797046,0.1,0.0,20.0,2012-05-22,0.0,0.0,0.002147255261853071,0.0,0.0,0.0,0.0,0.0,12.842729712589398,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2354,my_land,urban,0.0,0.0,0.0,0.0,2012-05-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2355,my_land,rural,14.812222758797047,0.1,0.0,20.0,2012-05-23,0.0,0.0,0.002157255261853071,0.0,0.0,0.0,0.0,0.0,13.363376931573676,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2356,my_land,urban,0.0,0.0,0.0,0.0,2012-05-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2357,my_land,rural,14.712222758797047,0.1,0.0,20.0,2012-05-24,0.0,0.0,0.0021672552618530712,0.0,0.0,0.0,0.0,0.0,13.92399354394671,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2358,my_land,urban,0.0,0.0,0.0,0.0,2012-05-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2359,my_land,rural,14.612222758797047,0.1,0.0,20.0,2012-05-25,0.0,0.0,0.0021772552618530712,0.0,0.0,0.0,0.0,0.0,14.489606337993338,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2360,my_land,urban,0.0,0.0,0.0,0.0,2012-05-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2361,my_land,rural,14.512222758797048,0.1,0.0,20.0,2012-05-26,0.0,0.0,0.0021872552618530713,0.0,0.0,0.0,0.0,0.0,15.05584364724917,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2362,my_land,urban,0.0,0.0,0.0,0.0,2012-05-27,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2363,my_land,rural,14.412222758797048,0.1,0.0,20.0,2012-05-27,0.0,0.0,0.0021972552618530713,0.0,0.0,0.0,0.0,0.0,15.622159028406147,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2364,my_land,urban,0.0,0.0,0.0,0.0,2012-05-28,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2365,my_land,rural,14.312222758797049,0.1,0.0,20.0,2012-05-28,0.0,0.0,0.0022072552618530713,0.0,0.0,0.0,0.0,0.0,16.18848416105077,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2366,my_land,urban,0.0,0.0,0.0,0.0,2012-05-29,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2367,my_land,rural,14.212222758797049,0.1,0.0,20.0,2012-05-29,0.0,0.0,0.0022172552618530714,0.0,0.0,0.0,0.0,0.0,16.754810520131347,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2368,my_land,urban,0.0,0.002,0.002,0.0,2012-05-30,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2369,my_land,rural,14.132222758797049,0.1,0.02,20.0,2012-05-30,0.0,0.0,0.0022272552618530714,0.0,0.0,0.0,0.0,0.0,16.44122631501642,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2370,my_land,urban,0.0,0.002,0.002,0.0,2012-05-31,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2371,my_land,rural,14.052222758797049,0.1,0.02,20.0,2012-05-31,0.0,0.0,0.0022372552618530714,0.0,0.0,0.0,0.0,0.0,16.017653289377055,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2372,my_land,urban,0.0,0.002,0.002,0.0,2012-06-01,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0,,,,, -2373,my_land,rural,13.972222758797049,0.1,0.02,20.0,2012-06-01,0.0,0.0,0.0022472552618530714,0.0,0.0,0.0,0.0,0.0,15.580331661172131,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2374,my_land,urban,0.051,0.02,0.111,0.0,2012-06-02,0.0,0.0,8.406593406593409e-06,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0,,,,, -2375,my_land,rural,14.982222758797048,0.1,1.11,20.0,2012-06-02,0.0,0.0,0.0022572552618530715,0.0,0.0,0.0,0.0,0.0,15.144195858313733,0.0,0.0,0.0,0.0,0.0,0.0,1.0100000000000002,0.5 -2376,my_land,urban,0.18400000000000002,0.02,0.193,0.0,2012-06-03,0.0,0.0,7.726844583987444e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0,,,,, -2377,my_land,rural,16.81222275879705,0.1,1.9300000000000002,20.0,2012-06-03,0.0,0.0,0.0022672552618530715,0.0,0.0,0.0,0.0,0.0,14.706050074676153,0.0,0.0,0.0,0.0,0.0,0.0,1.83,0.5 -2378,my_land,urban,0.12400000000000003,0.02,0.0,0.0,2012-06-04,0.0,0.0,6.598345904966117e-06,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0,,,,, -2379,my_land,rural,16.712222758797047,0.1,0.0,20.0,2012-06-04,0.0,0.0,0.0022772552618530715,0.0,0.0,0.0,0.0,0.0,14.263256259334518,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2380,my_land,urban,0.11600000000000002,0.02,0.052,0.0,2012-06-05,0.0,0.0,5.650052083179933e-06,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0,,,,, -2381,my_land,rural,16.620081032455314,0.1,0.52,20.0,2012-06-05,0.0,0.0,0.0022222027151204984,0.0,0.0,0.0,0.0,0.0,13.823890087246495,0.0,0.0,0.0,0.36490098001848625,0.12163366000616208,0.025607086317086757,-0.09214172634173512,0.5 -2382,my_land,urban,0.093,0.02,0.037000000000000005,0.0,2012-06-06,0.0,0.0,4.6500364190656675e-06,0.0,0.0,0.0,0.0,0.0,15.113490499944916,0.0,0.0,0.0,,,,, -2383,my_land,rural,16.527452680027388,0.1,0.37,20.0,2012-06-06,0.0,0.0,0.0021866248767093564,0.0,0.0,0.0,0.0,0.0,13.384331633562534,0.0,0.0,0.0,0.2583727011048979,0.08612423370163264,0.018131417621396348,-0.09262835242792689,0.5 -2384,my_land,urban,0.20099999999999998,0.02,0.16799999999999998,0.0,2012-06-07,0.0,0.0,4.71227103830788e-06,0.0,0.0,0.0,0.0,0.0,14.230102143132271,0.0,0.0,0.0,,,,, -2385,my_land,rural,16.47131493585876,0.1,1.68,20.0,2012-06-07,0.0,0.0,0.002007212421462071,0.0,0.0,0.0,0.0,0.0,13.182311299848203,0.0,0.0,0.0,1.1657481427201484,0.3885827142400495,0.08180688720843149,-0.0561377441686297,0.5 -2386,my_land,urban,0.16199999999999998,0.02,0.020999999999999998,0.0,2012-06-08,0.0,0.0,4.5811282584449336e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710825,0.0,0.0,0.0,,,,, -2387,my_land,rural,16.37775141318291,0.1,0.21,20.0,2012-06-08,0.0,0.0,0.0019936715305244324,0.0,0.0,0.0,0.0,0.0,13.004259301102351,0.0,0.0,0.0,0.1450390099065424,0.04834633663551414,0.010178176133792452,-0.09356352267584903,0.5 -2388,my_land,urban,0.10199999999999998,0.02,0.0,0.0,2012-06-09,0.0,0.0,4.008979453249178e-06,0.0,0.0,0.0,0.0,0.0,14.226364013710825,0.0,0.0,0.0,,,,, -2389,my_land,rural,16.27775141318291,0.1,0.0,20.0,2012-06-09,0.0,0.0,0.0020036715305244324,0.0,0.0,0.0,0.0,0.0,12.831782412637795,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2390,my_land,urban,0.11499999999999996,0.02,0.073,0.0,2012-06-10,0.0,0.0,3.7163395943461635e-06,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0,,,,, -2391,my_land,rural,16.215917405085182,0.1,0.73,20.0,2012-06-10,0.0,0.0,0.0019352351175356435,0.0,0.0,0.0,0.0,0.0,12.661295613167683,0.0,0.0,0.0,0.49293173076963054,0.16431057692321016,0.03459170040488635,-0.061834008097727024,0.5 -2392,my_land,urban,0.22899999999999995,0.02,0.174,0.0,2012-06-11,0.0,0.0,4.015025156525172e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0,,,,, -2393,my_land,rural,16.22318172323604,0.1,1.7399999999999998,20.0,2012-06-11,0.0,0.0,0.0017754812967749013,0.0,0.0,0.0,0.0,0.0,12.49125402291328,0.0,0.0,0.0,1.1633241733175155,0.3877747244391718,0.08163678409245723,0.007264318150855195,0.5 -2394,my_land,urban,0.16899999999999996,0.02,0.0,0.0,2012-06-12,0.0,0.0,4.055211729439014e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0,,,,, -2395,my_land,rural,16.123181723236037,0.1,0.0,20.0,2012-06-12,0.0,0.0,0.0017854812967749013,0.0,0.0,0.0,0.0,0.0,12.317656752864162,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2396,my_land,urban,0.10999999999999996,0.02,0.001,0.0,2012-06-13,0.0,0.0,3.7071552682552765e-06,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0,,,,, -2397,my_land,rural,16.032720989935928,0.1,0.01,20.0,2012-06-13,0.0,0.0,0.0017954812967749013,0.0,0.0,0.0,0.0,0.0,12.58524281160802,0.0,0.0,0.0,0.0,0.0,0.00046073330010722906,-0.09921466600214458,0.5 -2398,my_land,urban,0.20999999999999996,0.02,0.16,0.0,2012-06-14,0.0,0.0,3.954010425334432e-06,0.0,0.0,0.0,0.0,0.0,13.375141981393652,0.0,0.0,0.0,,,,, -2399,my_land,rural,16.09097232574013,0.1,1.6,20.0,2012-06-14,0.0,0.0,0.0016638542631721989,0.0,0.0,0.0,0.0,0.0,12.916780139112259,0.0,0.0,0.0,1.0272459232395066,0.34241530774650225,0.07208743320978994,0.058251335804201075,0.5 -2400,my_land,urban,0.16199999999999995,0.02,0.011999999999999999,0.0,2012-06-15,0.0,0.0,3.973018261901871e-06,0.0,0.0,0.0,0.0,0.0,13.375141981393654,0.0,0.0,0.0,,,,, -2401,my_land,rural,16.001209230276714,0.1,0.12,20.0,2012-06-15,0.0,0.0,0.0016630168954679093,0.0,0.0,0.0,0.0,0.0,13.23880776082736,0.0,0.0,0.0,0.07820620551768091,0.026068735172560302,0.005488154773170591,-0.08976309546341182,0.5 -2402,my_land,urban,0.12399999999999994,0.02,0.022000000000000002,0.0,2012-06-16,0.0,0.0,3.7600869785111698e-06,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0,,,,, -2403,my_land,rural,15.924760235412506,0.1,0.22,20.0,2012-06-16,0.0,0.0,0.001653637473486216,0.0,0.0,0.0,0.0,0.0,13.5690807274729,0.0,0.0,0.0,0.13996990884074725,0.04665663628024908,0.009822449743210334,-0.07644899486420666,0.5 -2404,my_land,urban,0.09999999999999995,0.02,0.036,0.0,2012-06-17,0.0,0.0,3.4000621275079777e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0,,,,, -2405,my_land,rural,15.871333224328644,0.1,0.36,20.0,2012-06-17,0.0,0.0,0.0016330013950820903,0.0,0.0,0.0,0.0,0.0,13.90076766744458,0.0,0.0,0.0,0.22331674539725171,0.07443891513241724,0.015671350554193105,-0.053427011083862073,0.5 -2406,my_land,urban,0.039999999999999945,0.02,0.0,0.0,2012-06-18,0.0,0.0,2.2000310637539875e-06,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0,,,,, -2407,my_land,rural,15.771333224328645,0.1,0.0,20.0,2012-06-18,0.0,0.0,0.0016430013950820904,0.0,0.0,0.0,0.0,0.0,14.229560240930576,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2408,my_land,urban,0.0,0.02,0.0,0.0,2012-06-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0,,,,, -2409,my_land,rural,15.671333224328645,0.1,0.0,20.0,2012-06-19,0.0,0.0,0.0016530013950820904,0.0,0.0,0.0,0.0,0.0,14.559945030116323,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2410,my_land,urban,0.037,0.02,0.097,0.0,2012-06-20,0.0,0.0,4.805194805194805e-07,0.0,0.0,0.0,0.0,0.0,15.345833330000001,0.0,0.0,0.0,,,,, -2411,my_land,rural,15.80074369632518,0.1,0.97,20.0,2012-06-20,0.0,0.0,0.0015921095013548463,0.0,0.0,0.0,0.0,0.0,14.58432608903779,0.0,0.0,0.0,0.5276700387024695,0.17589001290082318,0.0370294764001733,0.1294104719965339,0.5 -2412,my_land,urban,0.059000000000000004,0.02,0.082,0.0,2012-06-21,0.0,0.0,8.823297914207005e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909091,0.0,0.0,0.0,,,,, -2413,my_land,rural,15.843908953341094,0.1,0.8200000000000001,20.0,2012-06-21,0.0,0.0,0.0015396268586786441,0.0,0.0,0.0,0.0,0.0,14.56435061782559,0.0,0.0,0.0,0.48224475437615866,0.16074825145871957,0.033841737149204125,0.04316525701591762,0.5 -2414,my_land,urban,0.012000000000000004,0.02,0.013,0.0,2012-06-22,0.0,0.0,4.3438379802016183e-07,0.0,0.0,0.0,0.0,0.0,15.327567340909091,0.0,0.0,0.0,,,,, -2415,my_land,rural,15.764377821979478,0.1,0.13,20.0,2012-06-22,0.0,0.0,0.0015394654413541933,0.0,0.0,0.0,0.0,0.0,14.536308523706426,0.0,0.0,0.0,0.07804093109515012,0.02601364369838337,0.0054765565680807106,-0.07953113136161422,0.5 -2416,my_land,urban,0.099,0.02,0.147,0.0,2012-06-23,0.0,0.0,1.0216114820431369e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0,,,,, -2417,my_land,rural,15.94414027528128,0.1,1.47,20.0,2012-06-23,0.0,0.0,0.0014468572947362096,0.0,0.0,0.0,0.0,0.0,14.517715447016045,0.0,0.0,0.0,0.848044252022467,0.28268141734082236,0.05951187733490998,0.17976245330180057,0.5 -2418,my_land,urban,0.042,0.02,0.0029999999999999996,0.0,2012-06-24,0.0,0.0,1.0354595395830701e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, -2419,my_land,rural,15.872825296048367,0.1,0.03,20.0,2012-06-24,0.0,0.0,0.0014568572947362096,0.0,0.0,0.0,0.0,0.0,14.486589433377006,0.0,0.0,0.0,0.0,0.0,0.0013149792329128758,-0.09629958465825753,0.5 -2420,my_land,urban,0.0,0.02,0.0,0.0,2012-06-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, -2421,my_land,rural,15.772825296048367,0.1,0.0,20.0,2012-06-25,0.0,0.0,0.0014668572947362096,0.0,0.0,0.0,0.0,0.0,14.460823679172126,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2422,my_land,urban,0.0,0.018,0.018,0.0,2012-06-26,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, -2423,my_land,rural,15.706404812064507,0.1,0.18,20.0,2012-06-26,0.0,0.0,0.001463892730885641,0.0,0.0,0.0,0.0,0.0,14.436916884534485,0.0,0.0,0.0,0.10432459483850011,0.0347748649461667,0.00732102419919299,-0.0664204839838598,0.5 -2424,my_land,urban,0.0,0.008,0.008,0.0,2012-06-27,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, -2425,my_land,rural,15.683276921335676,0.1,0.08,20.0,2012-06-27,0.0,0.0,0.001473892730885641,0.0,0.0,0.0,0.0,0.0,14.412427110566812,0.0,0.0,0.0,0.0,0.0,0.003127890728831821,-0.08255781457663643,0.5 -2426,my_land,urban,0.0,0.018,0.018,0.0,2012-06-28,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0,,,,, -2427,my_land,rural,15.624687791247856,0.1,0.18,20.0,2012-06-28,0.0,0.0,0.0014714933576795539,0.0,0.0,0.0,0.0,0.0,14.38867977653702,0.0,0.0,0.0,0.09874475518757099,0.032914918395857,0.006929456504390948,-0.058589130087818964,0.5 -2428,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2012-06-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0,,,,, -2429,my_land,rural,15.614197337883143,0.1,0.33999999999999997,20.0,2012-06-29,0.0,0.0,0.0014592538096943497,0.0,0.0,0.0,0.0,0.0,14.365463463950286,0.0,0.0,0.0,0.17847444802235835,0.059491482674119446,0.012524522668235673,-0.010490453364713501,0.5 -2430,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2012-06-30,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0,,,,, -2431,my_land,rural,15.649019357733318,0.1,0.5,20.0,2012-06-30,0.0,0.0,0.0014373887094645777,0.0,0.0,0.0,0.0,0.0,14.342284197163128,0.0,0.0,0.0,0.26018931085674996,0.08672977028558332,0.018258899007491225,0.034822019850175516,0.5 -2432,my_land,urban,0.0,0.02,0.023,0.0,2012-07-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0,,,,, -2433,my_land,rural,15.606285681412501,0.1,0.22999999999999998,20.0,2012-07-01,0.0,0.0,0.0014323280645126117,0.0,0.0,0.0,0.0,0.0,14.316885779445785,0.0,0.0,0.0,0.12307274437858322,0.0410242481261944,0.008636683816040928,-0.042733676320818564,0.5 -2434,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2012-07-02,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0,,,,, -2435,my_land,rural,15.643559626716417,0.1,0.5,20.0,2012-07-02,0.0,0.0,0.0014112418231831416,0.0,0.0,0.0,0.0,0.0,14.294003254310999,0.0,0.0,0.0,0.25844231397095907,0.0861474379903197,0.018136302734804148,0.03727394530391708,0.5 -2436,my_land,urban,0.022000000000000013,0.02,0.082,0.0,2012-07-03,0.0,0.0,3.5483870967741957e-07,0.0,0.0,0.0,0.0,0.0,14.974999999999998,0.0,0.0,0.0,,,,, -2437,my_land,rural,15.750302977655172,0.1,0.8200000000000001,20.0,2012-07-03,0.0,0.0,0.0013705461806084417,0.0,0.0,0.0,0.0,0.0,14.27159312807475,0.0,0.0,0.0,0.4369453624561375,0.14564845415204586,0.03066283245306229,0.1067433509387543,0.5 -2438,my_land,urban,0.0,0.02,0.028999999999999998,0.0,2012-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0,,,,, -2439,my_land,rural,15.707355866608108,0.1,0.29,20.0,2012-07-04,0.0,0.0,0.0013613659974551395,0.0,0.0,0.0,0.0,0.0,14.411096425922032,0.0,0.0,0.0,0.1659748166210342,0.055324938873678065,0.011647355552353278,-0.04294711104706555,0.5 -2440,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-07-05,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0,,,,, -2441,my_land,rural,15.633461249399831,0.1,0.12,20.0,2012-07-05,0.0,0.0,0.0013635857820031765,0.0,0.0,0.0,0.0,0.0,14.57203832176613,0.0,0.0,0.0,0.06689991476089764,0.022299971586965884,0.004694730860413871,-0.07389461720827742,0.5 -2442,my_land,urban,0.07299999999999998,0.02,0.133,0.0,2012-07-06,0.0,0.0,1.2920353982300884e-06,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0,,,,, -2443,my_land,rural,15.876643473062336,0.1,1.3299999999999998,20.0,2012-07-06,0.0,0.0,0.0012970010486933294,0.0,0.0,0.0,0.0,0.0,14.745298562195318,0.0,0.0,0.0,0.7031076656404646,0.23436922188015485,0.049340888816874706,0.24318222366250564,0.5 -2444,my_land,urban,0.07599999999999998,0.02,0.063,0.0,2012-07-07,0.0,0.0,1.5016783643576438e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0,,,,, -2445,my_land,rural,15.868297042680327,0.1,0.63,20.0,2012-07-07,0.0,0.0,0.0012661921624255248,0.0,0.0,0.0,0.0,0.0,14.906827303835536,0.0,0.0,0.0,0.38357183164718023,0.12785727721572673,0.026917321519100368,-0.008346430382007337,0.5 -2446,my_land,urban,0.03299999999999998,0.02,0.016999999999999998,0.0,2012-07-08,0.0,0.0,1.1308956989561946e-06,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0,,,,, -2447,my_land,rural,15.79353416241109,0.1,0.16999999999999998,20.0,2012-07-08,0.0,0.0,0.0012651754439722434,0.0,0.0,0.0,0.0,0.0,15.068326128457846,0.0,0.0,0.0,0.10314355219183179,0.03438118406394393,0.007238144013461879,-0.07476288026923761,0.5 -2448,my_land,urban,0.0,0.02,0.005999999999999999,0.0,2012-07-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0,,,,, -2449,my_land,rural,15.751067000023012,0.1,0.06,20.0,2012-07-09,0.0,0.0,0.0012751754439722434,0.0,0.0,0.0,0.0,0.0,15.23264791105723,0.0,0.0,0.0,0.0,0.0,0.0024671623880786293,-0.0893432477615726,0.5 -2450,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2012-07-10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0,,,,, -2451,my_land,rural,15.698198366055603,0.1,0.24,20.0,2012-07-10,0.0,0.0,0.001270348276265271,0.0,0.0,0.0,0.0,0.0,15.398951757976619,0.0,0.0,0.0,0.13741890170177756,0.04580630056725919,0.009643431698370357,-0.052868633967407166,0.5 -2452,my_land,urban,0.0040000000000000036,0.02,0.064,0.0,2012-07-11,0.0,0.0,9.090909090909091e-08,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0,,,,, -2453,my_land,rural,15.740425917204995,0.1,0.64,20.0,2012-07-11,0.0,0.0,0.001243005130319773,0.0,0.0,0.0,0.0,0.0,15.324908672439957,0.0,0.0,0.0,0.35466286980605866,0.11822095660201953,0.02488862244253043,0.042227551149391376,0.5 -2454,my_land,urban,0.11400000000000002,0.02,0.17,0.0,2012-07-12,0.0,0.0,8.075560802833531e-07,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0,,,,, -2455,my_land,rural,15.98272886351376,0.1,1.7000000000000002,20.0,2012-07-12,0.0,0.0,0.0011594380460689141,0.0,0.0,0.0,0.0,0.0,15.223838047126973,0.0,0.0,0.0,0.9673591507550049,0.3224530502516683,0.06788485268456176,0.242302946308765,0.5 -2456,my_land,urban,0.11200000000000002,0.02,0.057999999999999996,0.0,2012-07-13,0.0,0.0,1.3318834275772077e-06,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0,,,,, -2457,my_land,rural,15.947747730088427,0.1,0.58,20.0,2012-07-13,0.0,0.0,0.0011346307633054867,0.0,0.0,0.0,0.0,0.0,15.108570093342765,0.0,0.0,0.0,0.3669240575655507,0.12230801918851689,0.025749056671266715,-0.03498113342533431,0.5 -2458,my_land,urban,0.086,0.02,0.033999999999999996,0.0,2012-07-14,0.0,0.0,1.5916029743780943e-06,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0,,,,, -2459,my_land,rural,15.889314245243174,0.1,0.33999999999999997,20.0,2012-07-14,0.0,0.0,0.001124565232454166,0.0,0.0,0.0,0.0,0.0,14.996038590767698,0.0,0.0,0.0,0.21263385795224407,0.07087795265074803,0.014921674242262744,-0.05843348484525488,0.5 -2460,my_land,urban,0.04699999999999999,0.02,0.020999999999999998,0.0,2012-07-15,0.0,0.0,1.4000613769628783e-06,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0,,,,, -2461,my_land,rural,15.818939495749705,0.1,0.21,20.0,2012-07-15,0.0,0.0,0.0011224069472296015,0.0,0.0,0.0,0.0,0.0,14.884419084171702,0.0,0.0,0.0,0.12851700901409624,0.04283900300469874,0.009018737474673421,-0.07037474949346842,0.5 -2462,my_land,urban,0.006999999999999992,0.02,0.02,0.0,2012-07-16,0.0,0.0,3.574559497604282e-07,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0,,,,, -2463,my_land,rural,15.752373968209362,0.1,0.2,20.0,2012-07-16,0.0,0.0,0.0011211447172588455,0.0,0.0,0.0,0.0,0.0,14.773531742889665,0.0,0.0,0.0,0.11867793837249485,0.039559312790831615,0.008328276377017184,-0.06656552754034366,0.5 -2464,my_land,urban,0.0,0.02,0.016,0.0,2012-07-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0,,,,, -2465,my_land,rural,15.683698362116541,0.1,0.16,20.0,2012-07-17,0.0,0.0,0.0011223965381676588,0.0,0.0,0.0,0.0,0.0,14.975267190475078,0.0,0.0,0.0,0.09168136934113523,0.030560456447045074,0.006433780304641069,-0.06867560609282136,0.5 -2466,my_land,urban,0.0,0.02,0.032,0.0,2012-07-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2467,my_land,rural,15.65724584357956,0.1,0.32,20.0,2012-07-18,0.0,0.0,0.0011157127793619626,0.0,0.0,0.0,0.0,0.0,15.217536567625066,0.0,0.0,0.0,0.1755974194575998,0.058532473152533265,0.01232262592684911,-0.026452518536982175,0.5 -2468,my_land,urban,0.0,0.0,0.0,0.0,2012-07-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2469,my_land,rural,15.55724584357956,0.1,0.0,20.0,2012-07-19,0.0,0.0,0.0011257127793619626,0.0,0.0,0.0,0.0,0.0,15.461567070953134,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2470,my_land,urban,0.0,0.002,0.002,0.0,2012-07-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2471,my_land,rural,15.476552620564744,0.1,0.02,20.0,2012-07-20,0.0,0.0,0.0011357127793619626,0.0,0.0,0.0,0.0,0.0,15.707695883869143,0.0,0.0,0.0,0.0,0.0,0.0006932230148152763,-0.09386446029630553,0.5 -2472,my_land,urban,0.0,0.0,0.0,0.0,2012-07-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2473,my_land,rural,15.376552620564745,0.1,0.0,20.0,2012-07-21,0.0,0.0,0.0011457127793619627,0.0,0.0,0.0,0.0,0.0,15.954086985483645,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2474,my_land,urban,0.0,0.0,0.0,0.0,2012-07-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2475,my_land,rural,15.276552620564745,0.1,0.0,20.0,2012-07-22,0.0,0.0,0.0011557127793619627,0.0,0.0,0.0,0.0,0.0,16.200510873185454,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2476,my_land,urban,0.0,0.0,0.0,0.0,2012-07-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2477,my_land,rural,15.176552620564745,0.1,0.0,20.0,2012-07-23,0.0,0.0,0.0011657127793619627,0.0,0.0,0.0,0.0,0.0,16.446938859148183,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2478,my_land,urban,0.0,0.0,0.0,0.0,2012-07-24,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2479,my_land,rural,15.076552620564746,0.1,0.0,20.0,2012-07-24,0.0,0.0,0.0011757127793619628,0.0,0.0,0.0,0.0,0.0,16.693367357393527,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2480,my_land,urban,0.0,0.0,0.0,0.0,2012-07-25,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2481,my_land,rural,14.976552620564746,0.1,0.0,20.0,2012-07-25,0.0,0.0,0.0011857127793619628,0.0,0.0,0.0,0.0,0.0,16.46970663717419,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2482,my_land,urban,0.0,0.0,0.0,0.0,2012-07-26,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2483,my_land,rural,14.876552620564746,0.1,0.0,20.0,2012-07-26,0.0,0.0,0.0011957127793619628,0.0,0.0,0.0,0.0,0.0,16.187284757146774,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2484,my_land,urban,0.0,0.0,0.0,0.0,2012-07-27,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2485,my_land,rural,14.776552620564747,0.1,0.0,20.0,2012-07-27,0.0,0.0,0.0012057127793619628,0.0,0.0,0.0,0.0,0.0,15.897517739643348,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2486,my_land,urban,0.0,0.001,0.001,0.0,2012-07-28,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0,,,,, -2487,my_land,rural,14.686552620564747,0.1,0.01,20.0,2012-07-28,0.0,0.0,0.0012157127793619629,0.0,0.0,0.0,0.0,0.0,15.606832572455419,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -2488,my_land,urban,0.0,0.02,0.023,0.0,2012-07-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0,,,,, -2489,my_land,rural,14.816552620564748,0.1,0.22999999999999998,20.0,2012-07-29,0.0,0.0,0.0012257127793619629,0.0,0.0,0.0,0.0,0.0,15.316632277903114,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.5 -2490,my_land,urban,0.0,0.02,0.05499999999999999,0.0,2012-07-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0,,,,, -2491,my_land,rural,15.266552620564747,0.1,0.5499999999999999,20.0,2012-07-30,0.0,0.0,0.001235712779361963,0.0,0.0,0.0,0.0,0.0,15.027126933919483,0.0,0.0,0.0,0.0,0.0,0.0,0.44999999999999996,0.5 -2492,my_land,urban,0.0,0.014,0.014,0.0,2012-07-31,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0,,,,, -2493,my_land,rural,15.247500136822254,0.1,0.13999999999999999,20.0,2012-07-31,0.0,0.0,0.0012411462517485205,0.0,0.0,0.0,0.0,0.0,14.734776394669634,0.0,0.0,0.0,0.042074894666526974,0.014024964888842325,0.0029526241871247,-0.019052483742494002,0.5 -2494,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-08-01,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0,,,,, -2495,my_land,rural,15.21972759525849,0.1,0.12,20.0,2012-08-01,0.0,0.0,0.0012474265334574317,0.0,0.0,0.0,0.0,0.0,14.714278316683941,0.0,0.0,0.0,0.03403793586418121,0.011345978621393736,0.002388627078188155,-0.027772541563763114,0.5 -2496,my_land,urban,0.04800000000000001,0.02,0.10800000000000001,0.0,2012-08-02,0.0,0.0,1.6363636363636365e-06,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0,,,,, -2497,my_land,rural,15.808776693739423,0.1,1.08,20.0,2012-08-02,0.0,0.0,0.0012285632925319112,0.0,0.0,0.0,0.0,0.0,14.733640180626388,0.0,0.0,0.0,0.27855251733233505,0.09285083911077835,0.01954754507595334,0.5890490984809332,0.5 -2498,my_land,urban,0.0,0.02,0.011000000000000001,0.0,2012-08-03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0,,,,, -2499,my_land,rural,15.727617550430187,0.1,0.11,20.0,2012-08-03,0.0,0.0,0.0012317807222365265,0.0,0.0,0.0,0.0,0.0,14.746203960263873,0.0,0.0,0.0,0.06495088960783066,0.021650296535943553,0.004557957165461801,-0.08115914330923601,0.5 -2500,my_land,urban,3.469446951953614e-18,0.02,0.05,0.0,2012-08-04,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0,,,,, -2501,my_land,rural,15.731363508263547,0.1,0.5,20.0,2012-08-04,0.0,0.0,0.0012127601571415877,0.0,0.0,0.0,0.0,0.0,14.766214290453,0.0,0.0,0.0,0.28233100504373226,0.09411033501457741,0.019812702108332088,0.0037459578333582516,0.5 -2502,my_land,urban,0.017000000000000008,0.02,0.077,0.0,2012-08-05,0.0,0.0,2.9824561403508795e-07,0.0,0.0,0.0,0.0,0.0,15.582142859999996,0.0,0.0,0.0,,,,, -2503,my_land,rural,15.789736969902348,0.1,0.77,20.0,2012-08-05,0.0,0.0,0.001179360952010133,0.0,0.0,0.0,0.0,0.0,14.786367552534141,0.0,0.0,0.0,0.43578390858235344,0.1452613028607845,0.030581326918059898,0.05837346163880212,0.5 -2504,my_land,urban,0.0,0.02,0.03,0.0,2012-08-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0,,,,, -2505,my_land,rural,15.743503684198638,0.1,0.3,20.0,2012-08-06,0.0,0.0,0.001171947805835181,0.0,0.0,0.0,0.0,0.0,14.802174488032504,0.0,0.0,0.0,0.175441216063894,0.05848040535463133,0.012311664285185542,-0.04623328570371086,0.5 -2506,my_land,urban,0.0,0.02,0.025,0.0,2012-08-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, -2507,my_land,rural,15.693479809702577,0.1,0.25,20.0,2012-08-07,0.0,0.0,0.0011678075435894194,0.0,0.0,0.0,0.0,0.0,14.819928369471864,0.0,0.0,0.0,0.1425170105784427,0.047505670192814244,0.010001193724803,-0.05002387449605998,0.5 -2508,my_land,urban,0.0,0.0,0.0,0.0,2012-08-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, -2509,my_land,rural,15.593479809702577,0.1,0.0,20.0,2012-08-08,0.0,0.0,0.0011778075435894195,0.0,0.0,0.0,0.0,0.0,14.981955328683986,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2510,my_land,urban,0.0,0.0,0.0,0.0,2012-08-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, -2511,my_land,rural,15.493479809702578,0.1,0.0,20.0,2012-08-09,0.0,0.0,0.0011878075435894195,0.0,0.0,0.0,0.0,0.0,15.1629229885855,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2512,my_land,urban,0.0,0.0,0.0,0.0,2012-08-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, -2513,my_land,rural,15.393479809702578,0.1,0.0,20.0,2012-08-10,0.0,0.0,0.0011978075435894195,0.0,0.0,0.0,0.0,0.0,15.34625822857319,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2514,my_land,urban,0.0,0.001,0.001,0.0,2012-08-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0,,,,, -2515,my_land,rural,15.303200102222608,0.1,0.01,20.0,2012-08-11,0.0,0.0,0.0012078075435894195,0.0,0.0,0.0,0.0,0.0,15.52988942357165,0.0,0.0,0.0,0.0,0.0,0.00027970747996949625,-0.09559414959938993,0.5 -2516,my_land,urban,0.0,0.02,0.023999999999999997,0.0,2012-08-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0,,,,, -2517,my_land,rural,15.33159027329383,0.1,0.24,20.0,2012-08-12,0.0,0.0,0.0012094433442968262,0.0,0.0,0.0,0.0,0.0,15.714827276732613,0.0,0.0,0.0,0.07952200311175303,0.026507334370584345,0.00558049144643881,0.02839017107122378,0.5 -2518,my_land,urban,0.0,0.02,0.028,0.0,2012-08-13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0,,,,, -2519,my_land,rural,15.372567070719185,0.1,0.27999999999999997,20.0,2012-08-13,0.0,0.0,0.001209055848531665,0.0,0.0,0.0,0.0,0.0,15.899057554027804,0.0,0.0,0.0,0.09905403183443416,0.03301801061147805,0.0069511601287322216,0.04097679742535558,0.5 -2520,my_land,urban,0.0,0.001,0.001,0.0,2012-08-14,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0,,,,, -2521,my_land,rural,15.282297570909538,0.1,0.01,20.0,2012-08-14,0.0,0.0,0.001219055848531665,0.0,0.0,0.0,0.0,0.0,16.081132194253478,0.0,0.0,0.0,0.0,0.0,0.00026949980964756354,-0.09538999619295126,0.5 -2522,my_land,urban,0.09800000000000002,0.02,0.15800000000000003,0.0,2012-08-15,0.0,0.0,1.4202898550724638e-06,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0,,,,, -2523,my_land,rural,16.065911360482318,0.1,1.58,20.0,2012-08-15,0.0,0.0,0.0011804470472008785,0.0,0.0,0.0,0.0,0.0,16.21298179716408,0.0,0.0,0.0,0.4961751749293957,0.16539172497646526,0.03481931052136111,0.783613789572778,0.5 -2524,my_land,urban,0.067,0.02,0.028999999999999998,0.0,2012-08-16,0.0,0.0,1.515508600839767e-06,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0,,,,, -2525,my_land,rural,15.992283135557424,0.1,0.29,20.0,2012-08-16,0.0,0.0,0.0011720915324101744,0.0,0.0,0.0,0.0,0.0,16.314820807635943,0.0,0.0,0.0,0.18783511025898544,0.06261170341966181,0.013181411246244595,-0.07362822492489188,0.5 -2526,my_land,urban,0.03400000000000001,0.02,0.027000000000000003,0.0,2012-08-17,0.0,0.0,1.1557742220074606e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2527,my_land,rural,15.921838345020719,0.1,0.27,20.0,2012-08-17,0.0,0.0,0.0011653725230332634,0.0,0.0,0.0,0.0,0.0,16.423850559338128,0.0,0.0,0.0,0.171316913257401,0.057105637752467,0.012022239526835158,-0.07044479053670313,0.5 -2528,my_land,urban,0.0,0.02,0.0,0.0,2012-08-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2529,my_land,rural,15.82183834502072,0.1,0.0,20.0,2012-08-18,0.0,0.0,0.0011753725230332634,0.0,0.0,0.0,0.0,0.0,16.532445602417265,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2530,my_land,urban,0.0,0.004,0.004,0.0,2012-08-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2531,my_land,rural,15.760170378856454,0.1,0.04,20.0,2012-08-19,0.0,0.0,0.0011853725230332635,0.0,0.0,0.0,0.0,0.0,16.642448555302156,0.0,0.0,0.0,0.0,0.0,0.0016679661642647185,-0.09335932328529438,0.5 -2532,my_land,urban,0.0,0.0,0.0,0.0,2012-08-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2533,my_land,rural,15.660170378856455,0.1,0.0,20.0,2012-08-20,0.0,0.0,0.0011953725230332635,0.0,0.0,0.0,0.0,0.0,16.752627496912773,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2534,my_land,urban,0.0,0.019,0.019,0.0,2012-08-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2535,my_land,rural,15.606278811005133,0.1,0.19,20.0,2012-08-21,0.0,0.0,0.0011949062174781157,0.0,0.0,0.0,0.0,0.0,16.863664995453632,0.0,0.0,0.0,0.10252274209406612,0.0341742473646887,0.007194578392566043,-0.053891567851320855,0.5 -2536,my_land,urban,0.0,0.002,0.002,0.0,2012-08-22,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2537,my_land,rural,15.525553363188848,0.1,0.02,20.0,2012-08-22,0.0,0.0,0.0012049062174781158,0.0,0.0,0.0,0.0,0.0,16.654386696931702,0.0,0.0,0.0,0.0,0.0,0.0007254478162839054,-0.09450895632567811,0.5 -2538,my_land,urban,0.0,0.0,0.0,0.0,2012-08-23,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0,,,,, -2539,my_land,rural,15.425553363188849,0.1,0.0,20.0,2012-08-23,0.0,0.0,0.0012149062174781158,0.0,0.0,0.0,0.0,0.0,16.405905482116463,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2540,my_land,urban,-6.938893903907228e-18,0.02,0.047,0.0,2012-08-24,0.0,0.0,-1.6940658945086007e-21,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0,,,,, -2541,my_land,rural,15.518653895763977,0.1,0.47000000000000003,20.0,2012-08-24,0.0,0.0,0.0012044890942273943,0.0,0.0,0.0,0.0,0.0,16.154582655443495,0.0,0.0,0.0,0.1972908705402226,0.06576362351340753,0.01384497337124369,0.09310053257512622,0.5 -2542,my_land,urban,0.026999999999999982,0.02,0.087,0.0,2012-08-25,0.0,0.0,4.029850746268648e-07,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0,,,,, -2543,my_land,rural,15.709661325100651,0.1,0.8699999999999999,20.0,2012-08-25,0.0,0.0,0.0011734046351502307,0.0,0.0,0.0,0.0,0.0,15.902687857677241,0.0,0.0,0.0,0.4125322065976187,0.13751073553253956,0.028949628533166225,0.19100742933667547,0.5 -2544,my_land,urban,0.0,0.02,0.0,0.0,2012-08-26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0,,,,, -2545,my_land,rural,15.609661325100651,0.1,0.0,20.0,2012-08-26,0.0,0.0,0.0011834046351502307,0.0,0.0,0.0,0.0,0.0,15.644978837209656,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2546,my_land,urban,0.049999999999999996,0.02,0.10999999999999999,0.0,2012-08-27,0.0,0.0,5.555555555555555e-07,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0,,,,, -2547,my_land,rural,15.809351755909136,0.1,1.0999999999999999,20.0,2012-08-27,0.0,0.0,0.0011386455594068732,0.0,0.0,0.0,0.0,0.0,15.394799506160844,0.0,0.0,0.0,0.5702205680489553,0.19007352268298508,0.040015478459575815,0.19969043080848362,0.5 -2548,my_land,urban,0.022,0.02,0.032,0.0,2012-08-28,0.0,0.0,5.519713261648747e-07,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0,,,,, -2549,my_land,rural,15.764086364801864,0.1,0.32,20.0,2012-08-28,0.0,0.0,0.0011305724126377142,0.0,0.0,0.0,0.0,0.0,15.137745758861188,0.0,0.0,0.0,0.18900159116393198,0.06300053038797732,0.013263269555363649,-0.04526539110727293,0.5 -2550,my_land,urban,0.10199999999999998,0.02,0.14,0.0,2012-08-29,0.0,0.0,1.1147963047099803e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2551,my_land,rural,15.930710193486467,0.1,1.4000000000000001,20.0,2012-08-29,0.0,0.0,0.001068364935495728,0.0,0.0,0.0,0.0,0.0,15.104007097781501,0.0,0.0,0.0,0.807530522062221,0.269176840687407,0.05666880856576989,0.1666238286846023,0.5 -2552,my_land,urban,0.057999999999999975,0.02,0.016,0.0,2012-08-30,0.0,0.0,1.2516141395222328e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2553,my_land,rural,15.851109065095484,0.1,0.16,20.0,2012-08-30,0.0,0.0,0.001069417467508253,0.0,0.0,0.0,0.0,0.0,15.08477135703012,0.0,0.0,0.0,0.09946580397857442,0.03315526799285814,0.006980056419549084,-0.07960112839098166,0.5 -2554,my_land,urban,0.0,0.02,0.0,0.0,2012-08-31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2555,my_land,rural,15.751109065095484,0.1,0.0,20.0,2012-08-31,0.0,0.0,0.001079417467508253,0.0,0.0,0.0,0.0,0.0,15.073989274628767,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2556,my_land,urban,0.0,0.001,0.001,0.0,2012-09-01,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2557,my_land,rural,15.660707245720827,0.1,0.01,20.0,2012-09-01,0.0,0.0,0.001089417467508253,0.0,0.0,0.0,0.0,0.0,15.064605804328595,0.0,0.0,0.0,0.0,0.0,0.00040181937465686725,-0.09803638749313734,0.5 -2558,my_land,urban,0.0,0.001,0.001,0.0,2012-09-02,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2559,my_land,rural,15.570328433680247,0.1,0.01,20.0,2012-09-02,0.0,0.0,0.0010994174675082531,0.0,0.0,0.0,0.0,0.0,15.055397153041076,0.0,0.0,0.0,0.0,0.0,0.00037881204058066363,-0.09757624081161327,0.5 -2560,my_land,urban,0.0,0.0,0.0,0.0,2012-09-03,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2561,my_land,rural,15.470328433680248,0.1,0.0,20.0,2012-09-03,0.0,0.0,0.0011094174675082532,0.0,0.0,0.0,0.0,0.0,15.046210361630136,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2562,my_land,urban,0.0,0.0,0.0,0.0,2012-09-04,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2563,my_land,rural,15.370328433680248,0.1,0.0,20.0,2012-09-04,0.0,0.0,0.0011194174675082532,0.0,0.0,0.0,0.0,0.0,15.03702629520377,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2564,my_land,urban,0.0,0.0,0.0,0.0,2012-09-05,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2565,my_land,rural,15.270328433680248,0.1,0.0,20.0,2012-09-05,0.0,0.0,0.0011294174675082532,0.0,0.0,0.0,0.0,0.0,14.963556859400471,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2566,my_land,urban,0.0,0.0,0.0,0.0,2012-09-06,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2567,my_land,rural,15.170328433680249,0.1,0.0,20.0,2012-09-06,0.0,0.0,0.0011394174675082532,0.0,0.0,0.0,0.0,0.0,14.88205175242506,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2568,my_land,urban,0.0,0.0,0.0,0.0,2012-09-07,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2569,my_land,rural,15.070328433680249,0.1,0.0,20.0,2012-09-07,0.0,0.0,0.0011494174675082533,0.0,0.0,0.0,0.0,0.0,14.799542186553133,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2570,my_land,urban,0.0,0.0,0.0,0.0,2012-09-08,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2571,my_land,rural,14.97032843368025,0.1,0.0,20.0,2012-09-08,0.0,0.0,0.0011594174675082533,0.0,0.0,0.0,0.0,0.0,14.716907055819142,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2572,my_land,urban,0.0,0.01,0.01,0.0,2012-09-09,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2573,my_land,rural,14.97032843368025,0.1,0.1,20.0,2012-09-09,0.0,0.0,0.0011694174675082533,0.0,0.0,0.0,0.0,0.0,14.634256236977393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5 -2574,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-09-10,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2575,my_land,rural,15.04032843368025,0.1,0.16999999999999998,20.0,2012-09-10,0.0,0.0,0.0011794174675082533,0.0,0.0,0.0,0.0,0.0,14.551988688597636,0.0,0.0,0.0,0.0,0.0,0.0,0.06999999999999999,0.5 -2576,my_land,urban,0.0,0.0,0.0,0.0,2012-09-11,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2577,my_land,rural,14.94032843368025,0.1,0.0,20.0,2012-09-11,0.0,0.0,0.0011894174675082534,0.0,0.0,0.0,0.0,0.0,14.468998586074704,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2578,my_land,urban,0.0,0.02,0.02,0.0,2012-09-12,0.0,0.0,1.2000000000000002e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2579,my_land,rural,15.04032843368025,0.1,0.2,20.0,2012-09-12,0.0,0.0,0.0011994174675082534,0.0,0.0,0.0,0.0,0.0,14.311747678647079,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.5 -2580,my_land,urban,0.0,0.0,0.0,0.0,2012-09-13,0.0,0.0,1.3000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2581,my_land,rural,14.94032843368025,0.1,0.0,20.0,2012-09-13,0.0,0.0,0.0012094174675082534,0.0,0.0,0.0,0.0,0.0,14.144325604830886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2582,my_land,urban,0.0,0.0,0.0,0.0,2012-09-14,0.0,0.0,1.4000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2583,my_land,rural,14.84032843368025,0.1,0.0,20.0,2012-09-14,0.0,0.0,0.0012194174675082534,0.0,0.0,0.0,0.0,0.0,13.976076418103863,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2584,my_land,urban,0.0,0.002,0.002,0.0,2012-09-15,0.0,0.0,1.5000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2585,my_land,rural,14.76032843368025,0.1,0.02,20.0,2012-09-15,0.0,0.0,0.0012294174675082535,0.0,0.0,0.0,0.0,0.0,13.807723834762985,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2586,my_land,urban,0.0,0.002,0.002,0.0,2012-09-16,0.0,0.0,1.6000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2587,my_land,rural,14.68032843368025,0.1,0.02,20.0,2012-09-16,0.0,0.0,0.0012394174675082535,0.0,0.0,0.0,0.0,0.0,13.639358334345374,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.5 -2588,my_land,urban,0.0,0.001,0.001,0.0,2012-09-17,0.0,0.0,1.7000000000000003e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2589,my_land,rural,14.59032843368025,0.1,0.01,20.0,2012-09-17,0.0,0.0,0.0012494174675082535,0.0,0.0,0.0,0.0,0.0,13.470991219293172,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 -2590,my_land,urban,0.0,0.0,0.0,0.0,2012-09-18,0.0,0.0,1.8000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2591,my_land,rural,14.49032843368025,0.1,0.0,20.0,2012-09-18,0.0,0.0,0.0012594174675082536,0.0,0.0,0.0,0.0,0.0,13.302623902411646,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2592,my_land,urban,0.0,0.0,0.0,0.0,2012-09-19,0.0,0.0,1.9000000000000004e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2593,my_land,rural,14.390328433680251,0.1,0.0,20.0,2012-09-19,0.0,0.0,0.0012694174675082536,0.0,0.0,0.0,0.0,0.0,13.022202990301455,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2594,my_land,urban,0.0,0.0,0.0,0.0,2012-09-20,0.0,0.0,2.0000000000000005e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2595,my_land,rural,14.290328433680251,0.1,0.0,20.0,2012-09-20,0.0,0.0,0.0012794174675082536,0.0,0.0,0.0,0.0,0.0,12.727775371287683,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2596,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-09-21,0.0,0.0,2.1000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2597,my_land,rural,14.310328433680251,0.1,0.12,20.0,2012-09-21,0.0,0.0,0.0012894174675082536,0.0,0.0,0.0,0.0,0.0,12.431607355243594,0.0,0.0,0.0,0.0,0.0,0.0,0.019999999999999987,0.5 -2598,my_land,urban,0.0,0.0,0.0,0.0,2012-09-22,0.0,0.0,2.2000000000000006e-05,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0,,,,, -2599,my_land,rural,14.210328433680251,0.1,0.0,20.0,2012-09-22,0.0,0.0,0.0012994174675082537,0.0,0.0,0.0,0.0,0.0,12.13520092190545,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2600,my_land,urban,0.296,0.02,0.356,0.0,2012-09-23,0.0,0.0,2.0261904761904768e-05,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0,,,,, -2601,my_land,rural,17.67032843368025,0.1,3.56,20.0,2012-09-23,0.0,0.0,0.0013094174675082537,0.0,0.0,0.0,0.0,0.0,11.837811549238896,0.0,0.0,0.0,0.0,0.0,0.0,3.46,0.5 -2602,my_land,urban,0.311,0.02,0.075,0.0,2012-09-24,0.0,0.0,1.883889567222901e-05,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0,,,,, -2603,my_land,rural,17.570690100120395,0.1,0.75,20.0,2012-09-24,0.0,0.0,0.001268023303303123,0.0,0.0,0.0,0.0,0.0,11.541858707141682,0.0,0.0,0.0,0.5341173126613961,0.17803910422046534,0.037481916677992715,-0.09963833355985428,0.5 -2604,my_land,urban,0.279,0.02,0.028,0.0,2012-09-25,0.0,0.0,1.7351259851259854e-05,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0,,,,, -2605,my_land,rural,17.470895352021323,0.1,0.27999999999999997,20.0,2012-09-25,0.0,0.0,0.0012588706429517127,0.0,0.0,0.0,0.0,0.0,11.577910101357297,0.0,0.0,0.0,0.19935375802058933,0.06645125267352978,0.013989737404953637,-0.09979474809907277,0.5 -2606,my_land,urban,0.333,0.02,0.114,0.0,2012-09-26,0.0,0.0,1.6383296328336545e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, -2607,my_land,rural,17.37214524493338,0.1,1.1400000000000001,20.0,2012-09-26,0.0,0.0,0.0011944865859965358,0.0,0.0,0.0,0.0,0.0,11.656811758599337,0.0,0.0,0.0,0.8113594513001563,0.27045315043338547,0.05693750535439695,-0.09875010708793891,0.5 -2608,my_land,urban,0.279,0.02,0.005999999999999999,0.0,2012-09-27,0.0,0.0,1.5203572650802183e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, -2609,my_land,rural,17.329150069238715,0.1,0.06,20.0,2012-09-27,0.0,0.0,0.0012044865859965359,0.0,0.0,0.0,0.0,0.0,11.736565752324918,0.0,0.0,0.0,0.0,0.0,0.0029951756946676087,-0.0999035138933522,0.5 -2610,my_land,urban,0.22,0.02,0.001,0.0,2012-09-28,0.0,0.0,1.3710715319909538e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, -2611,my_land,rural,17.238651014963622,0.1,0.01,20.0,2012-09-28,0.0,0.0,0.0012144865859965359,0.0,0.0,0.0,0.0,0.0,11.818856436540615,0.0,0.0,0.0,0.0,0.0,0.000499054275091928,-0.09998108550183855,0.5 -2612,my_land,urban,0.16,0.02,0.0,0.0,2012-09-29,0.0,0.0,1.1768572255927632e-05,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, -2613,my_land,rural,17.13865101496362,0.1,0.0,20.0,2012-09-29,0.0,0.0,0.001224486585996536,0.0,0.0,0.0,0.0,0.0,11.901464199567576,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2614,my_land,urban,0.11599999999999999,0.02,0.016,0.0,2012-09-30,0.0,0.0,9.494579369792341e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, -2615,my_land,rural,17.03925375249888,0.1,0.16,20.0,2012-09-30,0.0,0.0,0.0012236123750453652,0.0,0.0,0.0,0.0,0.0,11.984273185339587,0.0,0.0,0.0,0.11357054950612812,0.037856849835376044,0.00796986312323706,-0.0993972624647412,0.5 -2616,my_land,urban,0.064,0.02,0.008,0.0,2012-10-01,0.0,0.0,6.45820268910298e-06,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0,,,,, -2617,my_land,rural,17.01527495425444,0.1,0.08,20.0,2012-10-01,0.0,0.0,0.0012336123750453652,0.0,0.0,0.0,0.0,0.0,12.06678414816745,0.0,0.0,0.0,0.0,0.0,0.003978798244437572,-0.09957596488875144,0.5 -2618,my_land,urban,0.054,0.02,0.05,0.0,2012-10-02,0.0,0.0,4.284499417144265e-06,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0,,,,, -2619,my_land,rural,16.91814780629968,0.1,0.5,20.0,2012-10-02,0.0,0.0,0.0012098396515057876,0.0,0.0,0.0,0.0,0.0,11.927524644759421,0.0,0.0,0.0,0.3542030929177668,0.11806769763925559,0.02485635739773802,-0.0971271479547604,0.5 -2620,my_land,urban,0.028000000000000004,0.02,0.033999999999999996,0.0,2012-10-03,0.0,0.0,2.1759703482358737e-06,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0,,,,, -2621,my_land,rural,16.82083870242864,0.1,0.33999999999999997,20.0,2012-10-03,0.0,0.0,0.0011970356476557044,0.0,0.0,0.0,0.0,0.0,11.759849189783086,0.0,0.0,0.0,0.24033273650811512,0.08011091216937172,0.01686545519355194,-0.09730910387103883,0.5 -2622,my_land,urban,0.10599999999999998,0.02,0.138,0.0,2012-10-04,0.0,0.0,2.305841485705497e-06,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0,,,,, -2623,my_land,rural,16.73574276519769,0.1,1.38,20.0,2012-10-04,0.0,0.0,0.0011202298136182933,0.0,0.0,0.0,0.0,0.0,11.589278395460891,0.0,0.0,0.0,0.9726308552770546,0.32421028509235156,0.0682547968615477,-0.0850959372309541,0.5 -2624,my_land,urban,0.19799999999999998,0.02,0.152,0.0,2012-10-05,0.0,0.0,2.7502378746625567e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0,,,,, -2625,my_land,rural,16.657121760803605,0.1,1.52,20.0,2012-10-05,0.0,0.0,0.0010412350905426814,0.0,0.0,0.0,0.0,0.0,11.417741974930728,0.0,0.0,0.0,1.0677674656307847,0.35592248854359493,0.07493105021970421,-0.07862100439408395,0.5 -2626,my_land,urban,0.13799999999999998,0.02,0.0,0.0,2012-10-06,0.0,0.0,2.907487790468724e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0,,,,, -2627,my_land,rural,16.557121760803604,0.1,0.0,20.0,2012-10-06,0.0,0.0,0.0010512350905426814,0.0,0.0,0.0,0.0,0.0,11.245967746866341,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2628,my_land,urban,0.08799999999999997,0.02,0.01,0.0,2012-10-07,0.0,0.0,2.6863978559472473e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, -2629,my_land,rural,16.552241569018726,0.1,0.1,20.0,2012-10-07,0.0,0.0,0.0010612350905426814,0.0,0.0,0.0,0.0,0.0,11.074495968358292,0.0,0.0,0.0,0.0,0.0,0.004880191784877407,-0.09760383569754813,0.5 -2630,my_land,urban,0.04099999999999996,0.02,0.013,0.0,2012-10-08,0.0,0.0,1.8659544702942849e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, -2631,my_land,rural,16.455401019845127,0.1,0.13,20.0,2012-10-08,0.0,0.0,0.0010634477457596187,0.0,0.0,0.0,0.0,0.0,10.903053165647247,0.0,0.0,0.0,0.09037389128618814,0.030124630428729378,0.00634202745867987,-0.09684054917359741,0.5 -2632,my_land,urban,0.0,0.02,0.0,0.0,2012-10-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, -2633,my_land,rural,16.355401019845125,0.1,0.0,20.0,2012-10-09,0.0,0.0,0.0010734477457596187,0.0,0.0,0.0,0.0,0.0,10.776162895705907,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2634,my_land,urban,0.0,0.002,0.002,0.0,2012-10-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0,,,,, -2635,my_land,rural,16.274443364388087,0.1,0.02,20.0,2012-10-10,0.0,0.0,0.0010834477457596187,0.0,0.0,0.0,0.0,0.0,10.65483286196324,0.0,0.0,0.0,0.0,0.0,0.0009576554570385828,-0.09915310914077166,0.5 -2636,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2012-10-11,0.0,0.0,8.732394366197184e-07,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, -2637,my_land,rural,16.222444669752804,0.1,0.91,20.0,2012-10-11,0.0,0.0,0.0010409035900292916,0.0,0.0,0.0,0.0,0.0,10.53390698599813,0.0,0.0,0.0,0.6141740699276376,0.20472468997587917,0.043099934731764045,-0.05199869463528087,0.5 -2638,my_land,urban,0.0,0.02,0.004,0.0,2012-10-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, -2639,my_land,rural,16.160565851802634,0.1,0.04,20.0,2012-10-12,0.0,0.0,0.0010509035900292917,0.0,0.0,0.0,0.0,0.0,10.413613373249767,0.0,0.0,0.0,0.0,0.0,0.0018788179501686465,-0.09757635900337293,0.5 -2640,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2012-10-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, -2641,my_land,rural,16.06911954038837,0.1,0.12,20.0,2012-10-13,0.0,0.0,0.0010539594078242376,0.0,0.0,0.0,0.0,0.0,10.293097693118137,0.0,0.0,0.0,0.07940549688266141,0.026468498960887137,0.005572315570713082,-0.09144631141426166,0.5 -2642,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-10-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0,,,,, -2643,my_land,rural,15.997754837829968,0.1,0.03,20.0,2012-10-14,0.0,0.0,0.0010639594078242377,0.0,0.0,0.0,0.0,0.0,10.172574711639767,0.0,0.0,0.0,0.0,0.0,0.0013647025584030159,-0.09729405116806034,0.5 -2644,my_land,urban,0.0,0.02,0.038,0.0,2012-10-15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0,,,,, -2645,my_land,rural,15.938786625295846,0.1,0.38,20.0,2012-10-15,0.0,0.0,0.001052691323900331,0.0,0.0,0.0,0.0,0.0,10.05177376961302,0.0,0.0,0.0,0.24151485143056026,0.08050495047685342,0.016948410626705983,-0.058968212534119685,0.5 -2646,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2012-10-16,0.0,0.0,4.366197183098592e-07,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0,,,,, -2647,my_land,rural,15.952523011898677,0.1,0.91,20.0,2012-10-16,0.0,0.0,0.0010145810486351255,0.0,0.0,0.0,0.0,0.0,9.930597234827111,0.0,0.0,0.0,0.5673378245454832,0.1891126081818277,0.03981318066985847,0.013736386602830608,0.5 -2648,my_land,urban,0.063,0.02,0.092,0.0,2012-10-17,0.0,0.0,8.787091480924382e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, -2649,my_land,rural,15.963678693612682,0.1,0.9199999999999999,20.0,2012-10-17,0.0,0.0,0.0009775283095633436,0.0,0.0,0.0,0.0,0.0,10.121298641584865,0.0,0.0,0.0,0.5763015767787719,0.19210052559292398,0.040442215914299785,0.01115568171400419,0.5 -2650,my_land,urban,0.005999999999999998,0.02,0.0029999999999999996,0.0,2012-10-18,0.0,0.0,2.4504901931640474e-07,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, -2651,my_land,rural,15.892354992073171,0.1,0.03,20.0,2012-10-18,0.0,0.0,0.0009875283095633436,0.0,0.0,0.0,0.0,0.0,10.347305185198108,0.0,0.0,0.0,0.0,0.0,0.0013237015395099862,-0.09647403079019973,0.5 -2652,my_land,urban,0.0,0.016,0.01,0.0,2012-10-19,0.0,0.0,1.2450490193164047e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, -2653,my_land,rural,15.888055154819108,0.1,0.1,20.0,2012-10-19,0.0,0.0,0.0009975283095633436,0.0,0.0,0.0,0.0,0.0,10.579127430649764,0.0,0.0,0.0,0.0,0.0,0.004299837254062968,-0.08599674508125935,0.5 -2654,my_land,urban,0.0,0.001,0.001,0.0,2012-10-20,0.0,0.0,2.2450490193164046e-06,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0,,,,, -2655,my_land,rural,15.797625907478425,0.1,0.01,20.0,2012-10-20,0.0,0.0,0.0010075283095633436,0.0,0.0,0.0,0.0,0.0,10.811676646331222,0.0,0.0,0.0,0.0,0.0,0.00042924734068268584,-0.09858494681365372,0.5 -2656,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2012-10-21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2657,my_land,rural,15.736322234214606,0.1,0.22,20.0,2012-10-21,0.0,0.0,0.0010065117542502845,0.0,0.0,0.0,0.0,0.0,11.044705020759247,0.0,0.0,0.0,0.12917886720047025,0.04305962240015675,0.009065183663190896,-0.06130367326381788,0.5 -2658,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2012-10-22,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2659,my_land,rural,15.693932143098063,0.1,0.06,20.0,2012-10-22,0.0,0.0,0.0010165117542502845,0.0,0.0,0.0,0.0,0.0,11.277016700094904,0.0,0.0,0.0,0.0,0.0,0.002390091116542013,-0.08780182233084027,0.5 -2660,my_land,urban,0.0,0.001,0.001,0.0,2012-10-23,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2661,my_land,rural,15.603544365266039,0.1,0.01,20.0,2012-10-23,0.0,0.0,0.0010265117542502845,0.0,0.0,0.0,0.0,0.0,11.509627087511863,0.0,0.0,0.0,0.0,0.0,0.00038777783202349655,-0.09775555664046993,0.5 -2662,my_land,urban,0.0,0.002,0.002,0.0,2012-10-24,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2663,my_land,rural,15.522820630926889,0.1,0.02,20.0,2012-10-24,0.0,0.0,0.0010365117542502846,0.0,0.0,0.0,0.0,0.0,11.132453383438984,0.0,0.0,0.0,0.0,0.0,0.0007237343391509358,-0.09447468678301872,0.5 -2664,my_land,urban,0.0,0.002,0.002,0.0,2012-10-25,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2665,my_land,rural,15.442152025120777,0.1,0.02,20.0,2012-10-25,0.0,0.0,0.0010465117542502846,0.0,0.0,0.0,0.0,0.0,10.679056675429873,0.0,0.0,0.0,0.0,0.0,0.0006686058061115449,-0.0933721161222309,0.5 -2666,my_land,urban,0.0,0.0,0.0,0.0,2012-10-26,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2667,my_land,rural,15.342152025120777,0.1,0.0,20.0,2012-10-26,0.0,0.0,0.0010565117542502846,0.0,0.0,0.0,0.0,0.0,10.216132084428736,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2668,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2012-10-27,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0,,,,, -2669,my_land,rural,15.300628664032269,0.1,0.06,20.0,2012-10-27,0.0,0.0,0.0010665117542502846,0.0,0.0,0.0,0.0,0.0,9.752016510303593,0.0,0.0,0.0,0.0,0.0,0.0015233610885080182,-0.07046722177016036,0.5 -2670,my_land,urban,0.0,0.02,0.031,0.0,2012-10-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0,,,,, -2671,my_land,rural,15.367376146624988,0.1,0.31,20.0,2012-10-28,0.0,0.0,0.0010670621016684993,0.0,0.0,0.0,0.0,0.0,9.28667211498097,0.0,0.0,0.0,0.10206741865268784,0.03402247288422928,0.00716262587036406,0.06674748259271879,0.5 -2672,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-10-29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0,,,,, -2673,my_land,rural,15.365277713288949,0.1,0.21,20.0,2012-10-29,0.0,0.0,0.0010696485920046867,0.0,0.0,0.0,0.0,0.0,8.822712681640002,0.0,0.0,0.0,0.07987013375192743,0.026623377917309145,0.005604921666801926,-0.0020984333360385236,0.5 -2674,my_land,urban,0.0,0.0,0.0,0.0,2012-10-30,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0,,,,, -2675,my_land,rural,15.265277713288949,0.1,0.0,20.0,2012-10-30,0.0,0.0,0.0010796485920046867,0.0,0.0,0.0,0.0,0.0,8.519245335205001,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2676,my_land,urban,0.07999999999999999,0.02,0.14,0.0,2012-10-31,0.0,0.0,1.3333333333333332e-06,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0,,,,, -2677,my_land,rural,15.976935761640144,0.1,1.4000000000000001,20.0,2012-10-31,0.0,0.0,0.001052817628414479,0.0,0.0,0.0,0.0,0.0,8.229210438478416,0.0,0.0,0.0,0.41919364054977243,0.1397312135165908,0.029417097582440172,0.7116580483511967,0.5 -2678,my_land,urban,0.05099999999999998,0.02,0.031,0.0,2012-11-01,0.0,0.0,1.3076923076923073e-06,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0,,,,, -2679,my_land,rural,15.912191622441014,0.1,0.31,20.0,2012-11-01,0.0,0.0,0.001045665624264879,0.0,0.0,0.0,0.0,0.0,7.951863473372493,0.0,0.0,0.0,0.1957551991793806,0.06525173305979354,0.013737206959956534,-0.06474413919913069,0.5 -2680,my_land,urban,0.001999999999999981,0.02,0.011000000000000001,0.0,2012-11-02,0.0,0.0,1.0989010989010882e-07,0.0,0.0,0.0,0.0,0.0,7.854086538461537,0.0,0.0,0.0,,,,, -2681,my_land,rural,15.826867292370416,0.1,0.11,20.0,2012-11-02,0.0,0.0,0.001049659685172784,0.0,0.0,0.0,0.0,0.0,7.672078573080948,0.0,0.0,0.0,0.06791858517530049,0.022639528391766826,0.004766216503529859,-0.08532433007059717,0.5 -2682,my_land,urban,0.07399999999999998,0.02,0.132,0.0,2012-11-03,0.0,0.0,7.204549836128776e-07,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0,,,,, -2683,my_land,rural,15.943386208750402,0.1,1.32,20.0,2012-11-03,0.0,0.0,0.0009942836993185261,0.0,0.0,0.0,0.0,0.0,7.384505400804381,0.0,0.0,0.0,0.7862302720792599,0.26207675735975333,0.0551740541810007,0.11651891637998596,0.5 -2684,my_land,urban,0.12399999999999997,0.02,0.10999999999999999,0.0,2012-11-04,0.0,0.0,1.3008318168780294e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, -2685,my_land,rural,15.979320575915917,0.1,1.0999999999999999,20.0,2012-11-04,0.0,0.0,0.0009498429966584433,0.0,0.0,0.0,0.0,0.0,7.103344211822023,0.0,0.0,0.0,0.6868967633945717,0.22896558779819057,0.048203281641724334,0.03593436716551324,0.5 -2686,my_land,urban,0.06399999999999997,0.02,0.0,0.0,2012-11-05,0.0,0.0,1.4158965026941718e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, -2687,my_land,rural,15.879320575915918,0.1,0.0,20.0,2012-11-05,0.0,0.0,0.0009598429966584433,0.0,0.0,0.0,0.0,0.0,6.827761776477753,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2688,my_land,urban,0.0069999999999999715,0.02,0.0029999999999999996,0.0,2012-11-06,0.0,0.0,3.598143727416836e-07,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, -2689,my_land,rural,15.808037386014355,0.1,0.03,20.0,2012-11-06,0.0,0.0,0.0009698429966584433,0.0,0.0,0.0,0.0,0.0,6.547220222059719,0.0,0.0,0.0,0.0,0.0,0.0012831899015630724,-0.09566379803126145,0.5 -2690,my_land,urban,0.0,0.007999999999999972,0.001,0.0,2012-11-07,0.0,0.0,1.3598143727416836e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, -2691,my_land,rural,15.717623177456504,0.1,0.01,20.0,2012-11-07,0.0,0.0,0.0009798429966584434,0.0,0.0,0.0,0.0,0.0,6.874652527507465,0.0,0.0,0.0,0.0,0.0,0.00041420855785013095,-0.09828417115700261,0.5 -2692,my_land,urban,0.0,0.0,0.0,0.0,2012-11-08,0.0,0.0,2.3598143727416835e-06,0.0,0.0,0.0,0.0,0.0,6.736784863483756,0.0,0.0,0.0,,,,, -2693,my_land,rural,15.617623177456505,0.1,0.0,20.0,2012-11-08,0.0,0.0,0.0009898429966584434,0.0,0.0,0.0,0.0,0.0,7.278081566188433,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2694,my_land,urban,0.0,0.02,0.020999999999999998,0.0,2012-11-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0,,,,, -2695,my_land,rural,15.57380766598181,0.1,0.21,20.0,2012-11-09,0.0,0.0,0.0009905489494517494,0.0,0.0,0.0,0.0,0.0,7.69108904192841,0.0,0.0,0.0,0.10959355192571874,0.03653118397523958,0.007690775573734649,-0.04381551147469298,0.5 -2696,my_land,urban,0.0,0.001,0.001,0.0,2012-11-10,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0,,,,, -2697,my_land,rural,15.483455431389922,0.1,0.01,20.0,2012-11-10,0.0,0.0,0.0010005489494517494,0.0,0.0,0.0,0.0,0.0,8.10513612999105,0.0,0.0,0.0,0.0,0.0,0.0003522345918878256,-0.0970446918377565,0.5 -2698,my_land,urban,0.0,0.0029999999999999996,0.0029999999999999996,0.0,2012-11-11,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0,,,,, -2699,my_land,rural,15.412497999441298,0.1,0.03,20.0,2012-11-11,0.0,0.0,0.0010105489494517494,0.0,0.0,0.0,0.0,0.0,8.519392016498882,0.0,0.0,0.0,0.0,0.0,0.0009574319486246781,-0.08914863897249357,0.5 -2700,my_land,urban,0.0,0.02,0.033999999999999996,0.0,2012-11-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2701,my_land,rural,15.456226051683444,0.1,0.33999999999999997,20.0,2012-11-12,0.0,0.0,0.0010083841656655605,0.0,0.0,0.0,0.0,0.0,8.934236140252038,0.0,0.0,0.0,0.1398437627774708,0.04661458759249026,0.009813597387892687,0.04372805224214624,0.5 -2702,my_land,urban,0.0,0.001,0.001,0.0,2012-11-13,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2703,my_land,rural,15.365918111775592,0.1,0.01,20.0,2012-11-13,0.0,0.0,0.0010183841656655605,0.0,0.0,0.0,0.0,0.0,8.851600945781504,0.0,0.0,0.0,0.0,0.0,0.0003079399078513986,-0.09615879815702796,0.5 -2704,my_land,urban,0.0,0.001,0.001,0.0,2012-11-14,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2705,my_land,rural,15.27565194542074,0.1,0.01,20.0,2012-11-14,0.0,0.0,0.0010283841656655605,0.0,0.0,0.0,0.0,0.0,8.70734297547269,0.0,0.0,0.0,0.0,0.0,0.00026616635485061593,-0.09532332709701231,0.5 -2706,my_land,urban,0.0,0.0,0.0,0.0,2012-11-15,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2707,my_land,rural,15.175651945420741,0.1,0.0,20.0,2012-11-15,0.0,0.0,0.0010383841656655605,0.0,0.0,0.0,0.0,0.0,8.555382157434087,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2708,my_land,urban,0.0,0.016999999999999998,0.016999999999999998,0.0,2012-11-16,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2709,my_land,rural,15.194539174274114,0.1,0.16999999999999998,20.0,2012-11-16,0.0,0.0,0.0010450445207593076,0.0,0.0,0.0,0.0,0.0,8.402212550380453,0.0,0.0,0.0,0.03641784944197127,0.012139283147323756,0.002555638557331317,0.01888722885337365,0.5 -2710,my_land,urban,0.0,0.0,0.0,0.0,2012-11-17,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2711,my_land,rural,15.094539174274114,0.1,0.0,20.0,2012-11-17,0.0,0.0,0.0010550445207593076,0.0,0.0,0.0,0.0,0.0,8.249383711547557,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2712,my_land,urban,0.0,0.0,0.0,0.0,2012-11-18,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0,,,,, -2713,my_land,rural,14.994539174274115,0.1,0.0,20.0,2012-11-18,0.0,0.0,0.0010650445207593077,0.0,0.0,0.0,0.0,0.0,8.096351535693445,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2714,my_land,urban,0.0,0.02,0.047999999999999994,0.0,2012-11-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0,,,,, -2715,my_land,rural,15.374539174274116,0.1,0.48,20.0,2012-11-19,0.0,0.0,0.0010750445207593077,0.0,0.0,0.0,0.0,0.0,7.9416832141431275,0.0,0.0,0.0,0.0,0.0,0.0,0.37999999999999995,0.5 -2716,my_land,urban,0.144,0.02,0.20400000000000001,0.0,2012-11-20,0.0,0.0,7.826086956521739e-07,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0,,,,, -2717,my_land,rural,16.210979690216668,0.1,2.04,20.0,2012-11-20,0.0,0.0,0.0010191359045743486,0.0,0.0,0.0,0.0,0.0,7.9489554747901865,0.0,0.0,0.0,0.7862861323909294,0.2620953774636431,0.05517797420287224,0.8364405159425553,0.5 -2718,my_land,urban,0.25900000000000006,0.02,0.17500000000000002,0.0,2012-11-21,0.0,0.0,1.5441326159662643e-06,0.0,0.0,0.0,0.0,0.0,7.634651218431438,0.0,0.0,0.0,,,,, -2719,my_land,rural,16.220276462589077,0.1,1.7500000000000002,20.0,2012-11-21,0.0,0.0,0.0009389122544760077,0.0,0.0,0.0,0.0,0.0,7.980541683732893,0.0,0.0,0.0,1.1690010496846601,0.38966701656155334,0.08203516138137966,0.009296772372406961,0.5 -2720,my_land,urban,0.37300000000000005,0.02,0.174,0.0,2012-11-22,0.0,0.0,2.297727519988902e-06,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0,,,,, -2721,my_land,rural,16.226311539637678,0.1,1.7399999999999998,20.0,2012-11-22,0.0,0.0,0.0008660617107541417,0.0,0.0,0.0,0.0,0.0,8.01405860500816,0.0,0.0,0.0,1.164200007602872,0.38806666920095734,0.08169824614756999,0.006035077048600207,0.5 -2722,my_land,urban,0.31500000000000006,0.019999999999999997,0.002,0.0,2012-11-23,0.0,0.0,2.9261525881591664e-06,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0,,,,, -2723,my_land,rural,16.145371513275784,0.1,0.02,20.0,2012-11-23,0.0,0.0,0.0008760617107541418,0.0,0.0,0.0,0.0,0.0,8.050864468376021,0.0,0.0,0.0,0.0,0.0,0.0009400263618926733,-0.09880052723785349,0.5 -2724,my_land,urban,0.534,0.02,0.279,0.0,2012-11-24,0.0,0.0,3.6525531046637538e-06,0.0,0.0,0.0,0.0,0.0,7.70827850780309,0.0,0.0,0.0,,,,, -2725,my_land,rural,16.2522567145521,0.1,2.79,20.0,2012-11-24,0.0,0.0,0.0007698244563518479,0.0,0.0,0.0,0.0,0.0,8.080147708493191,0.0,0.0,0.0,1.8404692940906253,0.6134897646968751,0.12915573993618423,0.10688520127631537,0.5 -2726,my_land,urban,0.518,0.02,0.044000000000000004,0.0,2012-11-25,0.0,0.0,4.319036753074954e-06,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0,,,,, -2727,my_land,rural,16.17688595283935,0.1,0.44,20.0,2012-11-25,0.0,0.0,0.000761255184766919,0.0,0.0,0.0,0.0,0.0,8.117405385807483,0.0,0.0,0.0,0.2959516677203357,0.09865055590677857,0.020768538085637594,-0.07537076171275185,0.5 -2728,my_land,urban,0.48100000000000004,0.02,0.023,0.0,2012-11-26,0.0,0.0,4.910665409268816e-06,0.0,0.0,0.0,0.0,0.0,7.7134750328633945,0.0,0.0,0.0,,,,, -2729,my_land,rural,16.092596826237557,0.1,0.22999999999999998,20.0,2012-11-26,0.0,0.0,0.0007616205279416702,0.0,0.0,0.0,0.0,0.0,8.15193100228564,0.0,0.0,0.0,0.1526810027037775,0.05089366756792583,0.010714456330089647,-0.08428912660179295,0.5 -2730,my_land,urban,0.42400000000000004,0.02,0.0029999999999999996,0.0,2012-11-27,0.0,0.0,5.401125287780125e-06,0.0,0.0,0.0,0.0,0.0,7.7134750328633945,0.0,0.0,0.0,,,,, -2731,my_land,rural,16.021224256760366,0.1,0.03,20.0,2012-11-27,0.0,0.0,0.0007716205279416702,0.0,0.0,0.0,0.0,0.0,7.9057101252857045,0.0,0.0,0.0,0.0,0.0,0.0013725694771897772,-0.09745138954379555,0.5 -2732,my_land,urban,0.36400000000000005,0.02,0.0,0.0,2012-11-28,0.0,0.0,5.767350506811795e-06,0.0,0.0,0.0,0.0,0.0,7.7134750328633945,0.0,0.0,0.0,,,,, -2733,my_land,rural,15.921224256760366,0.1,0.0,20.0,2012-11-28,0.0,0.0,0.0007816205279416702,0.0,0.0,0.0,0.0,0.0,7.624151265660713,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2734,my_land,urban,0.30400000000000005,0.02,0.0,0.0,2012-11-29,0.0,0.0,5.980449285089494e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0,,,,, -2735,my_land,rural,15.821224256760367,0.1,0.0,20.0,2012-11-29,0.0,0.0,0.0007916205279416702,0.0,0.0,0.0,0.0,0.0,7.338175158207589,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2736,my_land,urban,0.24400000000000002,0.02,0.0,0.0,2012-11-30,0.0,0.0,5.997287413950128e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0,,,,, -2737,my_land,rural,15.721224256760367,0.1,0.0,20.0,2012-11-30,0.0,0.0,0.0008016205279416703,0.0,0.0,0.0,0.0,0.0,7.051646894775948,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2738,my_land,urban,0.18400000000000002,0.02,0.0,0.0,2012-12-01,0.0,0.0,5.747771804316176e-06,0.0,0.0,0.0,0.0,0.0,7.713475032863393,0.0,0.0,0.0,,,,, -2739,my_land,rural,15.621224256760367,0.1,0.0,20.0,2012-12-01,0.0,0.0,0.0008116205279416703,0.0,0.0,0.0,0.0,0.0,6.765049611846995,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2740,my_land,urban,0.20800000000000002,0.02,0.08399999999999999,0.0,2012-12-02,0.0,0.0,5.659421513297438e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, -2741,my_land,rural,15.744122311637657,0.1,0.84,20.0,2012-12-02,0.0,0.0,0.0007921250254246348,0.0,0.0,0.0,0.0,0.0,6.473442781743086,0.0,0.0,0.0,0.4396851358999325,0.14656171196664416,0.03085509725613562,0.12289805487728762,0.5 -2742,my_land,urban,0.152,0.02,0.004,0.0,2012-12-03,0.0,0.0,5.272042031360471e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, -2743,my_land,rural,15.682521539950189,0.1,0.04,20.0,2012-12-03,0.0,0.0,0.0008021250254246348,0.0,0.0,0.0,0.0,0.0,6.191211597717887,0.0,0.0,0.0,0.0,0.0,0.0016007716874682095,-0.09201543374936419,0.5 -2744,my_land,urban,0.09899999999999998,0.02,0.007,0.0,2012-12-04,0.0,0.0,4.467137849674004e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, -2745,my_land,rural,15.649828161455313,0.1,0.06999999999999999,20.0,2012-12-04,0.0,0.0,0.0008121250254246349,0.0,0.0,0.0,0.0,0.0,5.905151449714737,0.0,0.0,0.0,0.0,0.0,0.002693378494876126,-0.08386756989752252,0.5 -2746,my_land,urban,0.03899999999999997,0.02,0.0,0.0,2012-12-05,0.0,0.0,2.698966786547925e-06,0.0,0.0,0.0,0.0,0.0,7.230965346963163,0.0,0.0,0.0,,,,, -2747,my_land,rural,15.549828161455313,0.1,0.0,20.0,2012-12-05,0.0,0.0,0.0008221250254246349,0.0,0.0,0.0,0.0,0.0,5.789036788464343,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2748,my_land,urban,0.03699999999999996,0.02,0.057999999999999996,0.0,2012-12-06,0.0,0.0,1.77742559873082e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2749,my_land,rural,15.630751986678039,0.1,0.58,20.0,2012-12-06,0.0,0.0,0.0008124198608787787,0.0,0.0,0.0,0.0,0.0,5.691190066313447,0.0,0.0,0.0,0.28434177452880716,0.0947805915096024,0.019953808738863665,0.08092382522272672,0.5 -2750,my_land,urban,0.0,0.02,0.001,0.0,2012-12-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2751,my_land,rural,15.540381805282243,0.1,0.01,20.0,2012-12-07,0.0,0.0,0.0008224198608787788,0.0,0.0,0.0,0.0,0.0,5.601577330039181,0.0,0.0,0.0,0.0,0.0,0.0003701813957958731,-0.09740362791591746,0.5 -2752,my_land,urban,0.0,0.0,0.0,0.0,2012-12-08,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2753,my_land,rural,15.440381805282243,0.1,0.0,20.0,2012-12-08,0.0,0.0,0.0008324198608787788,0.0,0.0,0.0,0.0,0.0,5.510018594504898,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2754,my_land,urban,0.0,0.001,0.001,0.0,2012-12-09,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2755,my_land,rural,15.350080668627584,0.1,0.01,20.0,2012-12-09,0.0,0.0,0.0008424198608787788,0.0,0.0,0.0,0.0,0.0,5.418216609813112,0.0,0.0,0.0,0.0,0.0,0.000301136654659115,-0.0960227330931823,0.5 -2756,my_land,urban,0.0,0.0,0.0,0.0,2012-12-10,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2757,my_land,rural,15.250080668627584,0.1,0.0,20.0,2012-12-10,0.0,0.0,0.0008524198608787788,0.0,0.0,0.0,0.0,0.0,5.326384218976639,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2758,my_land,urban,0.0,0.001,0.001,0.0,2012-12-11,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2759,my_land,rural,15.159879986259734,0.1,0.01,20.0,2012-12-11,0.0,0.0,0.0008624198608787789,0.0,0.0,0.0,0.0,0.0,5.234548027372079,0.0,0.0,0.0,0.0,0.0,0.00020068236785046145,-0.09401364735700923,0.5 -2760,my_land,urban,0.0,0.0,0.0,0.0,2012-12-12,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2761,my_land,rural,15.059879986259734,0.1,0.0,20.0,2012-12-12,0.0,0.0,0.0008724198608787789,0.0,0.0,0.0,0.0,0.0,5.4074435031715105,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2762,my_land,urban,0.0,0.007,0.007,0.0,2012-12-13,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0,,,,, -2763,my_land,rural,15.029482709206876,0.1,0.06999999999999999,20.0,2012-12-13,0.0,0.0,0.0008824198608787789,0.0,0.0,0.0,0.0,0.0,5.613430438146439,0.0,0.0,0.0,0.0,0.0,0.0003972770528578975,-0.03794554105715795,0.5 -2764,my_land,urban,0.1,0.02,0.16,0.0,2012-12-14,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0,,,,, -2765,my_land,rural,16.437602462413274,0.1,1.6,20.0,2012-12-14,0.0,0.0,0.0008877060034581982,0.0,0.0,0.0,0.0,0.0,5.818452983141059,0.0,0.0,0.0,0.06546467584044041,0.021821558613480136,0.0045940123396800295,1.4081197532063994,0.5 -2766,my_land,urban,0.059000000000000004,0.02,0.019,0.0,2012-12-15,0.0,0.0,3.5757575757575753e-06,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0,,,,, -2767,my_land,rural,16.34400684660527,0.1,0.19,20.0,2012-12-15,0.0,0.0,0.000888227244789087,0.0,0.0,0.0,0.0,0.0,6.033305796938316,0.0,0.0,0.0,0.13081187626320145,0.043603958754400485,0.009179780790400103,-0.09359561580800203,0.5 -2768,my_land,urban,0.054,0.02,0.05499999999999999,0.0,2012-12-16,0.0,0.0,2.6286266924564796e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0,,,,, -2769,my_land,rural,16.268034778023708,0.1,0.5499999999999999,20.0,2012-12-16,0.0,0.0,0.0008714603000528684,0.0,0.0,0.0,0.0,0.0,6.243590671685604,0.0,0.0,0.0,0.37475509886436587,0.12491836628812196,0.02629860342907831,-0.07597206858156623,0.5 -2770,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2012-12-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0,,,,, -2771,my_land,rural,16.196615272688266,0.1,0.03,20.0,2012-12-17,0.0,0.0,0.0008814603000528684,0.0,0.0,0.0,0.0,0.0,6.455448833960701,0.0,0.0,0.0,0.0,0.0,0.001419505335440522,-0.09839010670881045,0.5 -2772,my_land,urban,0.0,0.001,0.001,0.0,2012-12-18,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0,,,,, -2773,my_land,rural,16.106147704599543,0.1,0.01,20.0,2012-12-18,0.0,0.0,0.0008914603000528685,0.0,0.0,0.0,0.0,0.0,6.579252532995088,0.0,0.0,0.0,0.0,0.0,0.00046756808872426754,-0.09935136177448535,0.5 -2774,my_land,urban,0.15000000000000002,0.02,0.21000000000000002,0.0,2012-12-19,0.0,0.0,1.5789473684210526e-06,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0,,,,, -2775,my_land,rural,16.17845909484016,0.1,2.1,20.0,2012-12-19,0.0,0.0,0.0008097962404087799,0.0,0.0,0.0,0.0,0.0,6.686503806173279,0.0,0.0,0.0,1.3734781344535596,0.4578260448178532,0.0963844304879691,0.07231139024061785,0.5 -2776,my_land,urban,0.13100000000000003,0.02,0.041,0.0,2012-12-20,0.0,0.0,1.9756848261003385e-06,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0,,,,, -2777,my_land,rural,16.10635040652912,0.1,0.41000000000000003,20.0,2012-12-20,0.0,0.0,0.000801727000477721,0.0,0.0,0.0,0.0,0.0,6.8019002643145585,0.0,0.0,0.0,0.27225244042161795,0.09075081347387266,0.019105434415552142,-0.07210868831104278,0.5 -2778,my_land,urban,0.18100000000000002,0.02,0.10999999999999999,0.0,2012-12-21,0.0,0.0,2.4370993372133997e-06,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0,,,,, -2779,my_land,rural,16.096561779094007,0.1,1.0999999999999999,20.0,2012-12-21,0.0,0.0,0.0007660717820096883,0.0,0.0,0.0,0.0,0.0,6.911859041173583,0.0,0.0,0.0,0.7194743970475209,0.23982479901584033,0.050489431371755863,-0.009788627435117388,0.5 -2780,my_land,urban,0.24500000000000002,0.02,0.124,0.0,2012-12-22,0.0,0.0,2.9546994302360805e-06,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0,,,,, -2781,my_land,rural,16.10084027161472,0.1,1.24,20.0,2012-12-22,0.0,0.0,0.0007273324178929581,0.0,0.0,0.0,0.0,0.0,7.022728162358923,0.0,0.0,0.0,0.8092015740789897,0.26973385802632993,0.0567860753739642,0.004278492520716146,0.5 -2782,my_land,urban,0.2840000000000001,0.02,0.099,0.0,2012-12-23,0.0,0.0,3.4664649326760704e-06,0.0,0.0,0.0,0.0,0.0,6.448791676696903,0.0,0.0,0.0,,,,, -2783,my_land,rural,16.083186822768646,0.1,0.9900000000000001,20.0,2012-12-23,0.0,0.0,0.0006998132070529227,0.0,0.0,0.0,0.0,0.0,7.134625354137086,0.0,0.0,0.0,0.6467030823028267,0.21556769410094223,0.04538267244230363,-0.017653448846072402,0.5 -2784,my_land,urban,0.2840000000000001,0.02,0.06,0.0,2012-12-24,0.0,0.0,3.915049508888901e-06,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0,,,,, -2785,my_land,rural,16.035399958867128,0.1,0.6,20.0,2012-12-24,0.0,0.0,0.000687501685450247,0.0,0.0,0.0,0.0,0.0,7.246913855680599,0.0,0.0,0.0,0.39029814052983314,0.13009938017661105,0.027389343195076014,-0.047786863901520205,0.5 -2786,my_land,urban,0.2320000000000001,0.02,0.008,0.0,2012-12-25,0.0,0.0,4.192248110522887e-06,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0,,,,, -2787,my_land,rural,16.011792923766084,0.1,0.08,20.0,2012-12-25,0.0,0.0,0.000697501685450247,0.0,0.0,0.0,0.0,0.0,7.3594356604600755,0.0,0.0,0.0,0.0,0.0,0.0036070351010422975,-0.09214070202084595,0.5 -2788,my_land,urban,0.23300000000000007,0.02,0.061000000000000006,0.0,2012-12-26,0.0,0.0,4.4314791566001195e-06,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0,,,,, -2789,my_land,rural,15.975385554118597,0.1,0.61,20.0,2012-12-26,0.0,0.0,0.0006852363522006556,0.0,0.0,0.0,0.0,0.0,7.469755752881277,0.0,0.0,0.0,0.38931525087383423,0.12977175029127808,0.02732036848237433,-0.0364073696474866,0.5 -2790,my_land,urban,0.23800000000000007,0.02,0.065,0.0,2012-12-27,0.0,0.0,4.6499713642835555e-06,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0,,,,, -2791,my_land,rural,15.94959447741049,0.1,0.65,20.0,2012-12-27,0.0,0.0,0.0006721833936749275,0.0,0.0,0.0,0.0,0.0,7.580858984189492,0.0,0.0,0.0,0.41025114215452585,0.13675038071817527,0.028789553835405327,-0.025791076708106542,0.5 -2792,my_land,urban,0.19500000000000006,0.02,0.016999999999999998,0.0,2012-12-28,0.0,0.0,4.688274110788483e-06,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0,,,,, -2793,my_land,rural,15.870283212718167,0.1,0.16999999999999998,20.0,2012-12-28,0.0,0.0,0.0006761401759043693,0.0,0.0,0.0,0.0,0.0,7.69301934406249,0.0,0.0,0.0,0.10638427609327887,0.03546142536442629,0.007465563234616063,-0.07931126469232126,0.5 -2794,my_land,urban,0.2750000000000001,0.02,0.14,0.0,2012-12-29,0.0,0.0,4.9659535887835954e-06,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0,,,,, -2795,my_land,rural,15.977121381131193,0.1,1.4000000000000001,20.0,2012-12-29,0.0,0.0,0.0006406864037568952,0.0,0.0,0.0,0.0,0.0,7.802347237529968,0.0,0.0,0.0,0.8501278050057175,0.28337593500190583,0.05965809157934861,0.10683816841302804,0.5 -2796,my_land,urban,0.22700000000000006,0.02,0.011999999999999999,0.0,2012-12-30,0.0,0.0,5.072177770239237e-06,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0,,,,, -2797,my_land,rural,15.89076251566083,0.1,0.12,20.0,2012-12-30,0.0,0.0,0.0006465751754922392,0.0,0.0,0.0,0.0,0.0,7.915447251504478,0.0,0.0,0.0,0.07578069164763297,0.02526023054921099,0.0053179432735181035,-0.08635886547036208,0.5 -2798,my_land,urban,0.22100000000000006,0.02,0.054000000000000006,0.0,2012-12-31,0.0,0.0,5.14157581311445e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913954,0.0,0.0,0.0,,,,, -2799,my_land,rural,15.866673762940684,0.1,0.54,20.0,2012-12-31,0.0,0.0,0.0006388242838404582,0.0,0.0,0.0,0.0,0.0,8.02629584176058,0.0,0.0,0.0,0.3306632363131054,0.11022107877103514,0.023204437636007397,-0.024088752720147905,0.5 -2800,my_land,urban,0.16200000000000006,0.02,0.001,0.0,2013-01-01,0.0,0.0,4.925422186755153e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913954,0.0,0.0,0.0,,,,, -2801,my_land,rural,15.776248281904815,0.1,0.01,20.0,2013-01-01,0.0,0.0,0.0006488242838404582,0.0,0.0,0.0,0.0,0.0,8.138108408470073,0.0,0.0,0.0,0.0,0.0,0.00042548103586871724,-0.09850962071737435,0.5 -2802,my_land,urban,0.10300000000000006,0.02,0.001,0.0,2013-01-02,0.0,0.0,4.267961435215251e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, -2803,my_land,rural,15.685840805771758,0.1,0.01,20.0,2013-01-02,0.0,0.0,0.0006588242838404582,0.0,0.0,0.0,0.0,0.0,8.24940640805876,0.0,0.0,0.0,0.0,0.0,0.0004074761330567377,-0.09814952266113475,0.5 -2804,my_land,urban,0.04300000000000006,0.02,0.0,0.0,2013-01-03,0.0,0.0,2.729184839930794e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, -2805,my_land,rural,15.585840805771758,0.1,0.0,20.0,2013-01-03,0.0,0.0,0.0006688242838404582,0.0,0.0,0.0,0.0,0.0,8.360640086757346,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2806,my_land,urban,3.469446951953614e-18,0.02,0.0,0.0,2013-01-04,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, -2807,my_land,rural,15.485840805771758,0.1,0.0,20.0,2013-01-04,0.0,0.0,0.0006788242838404583,0.0,0.0,0.0,0.0,0.0,8.47186572534467,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2808,my_land,urban,0.0,3.469446951953614e-18,0.0,0.0,2013-01-05,0.0,0.0,1.0000000000000004e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, -2809,my_land,rural,15.385840805771759,0.1,0.0,20.0,2013-01-05,0.0,0.0,0.0006888242838404583,0.0,0.0,0.0,0.0,0.0,8.583090358168084,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2810,my_land,urban,0.0,0.002,0.002,0.0,2013-01-06,0.0,0.0,2.0000000000000003e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, -2811,my_land,rural,15.305288751808089,0.1,0.02,20.0,2013-01-06,0.0,0.0,0.0006988242838404583,0.0,0.0,0.0,0.0,0.0,8.694314866021012,0.0,0.0,0.0,0.0,0.0,0.0005520539636696665,-0.09104107927339333,0.5 -2812,my_land,urban,0.0,0.0,0.0,0.0,2013-01-07,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0,,,,, -2813,my_land,rural,15.205288751808089,0.1,0.0,20.0,2013-01-07,0.0,0.0,0.0007088242838404583,0.0,0.0,0.0,0.0,0.0,8.805539358252627,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2814,my_land,urban,0.0,0.02,0.028,0.0,2013-01-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0,,,,, -2815,my_land,rural,15.289400951094114,0.1,0.27999999999999997,20.0,2013-01-08,0.0,0.0,0.0007145669333188687,0.0,0.0,0.0,0.0,0.0,8.395167557748477,0.0,0.0,0.0,0.06832005800870761,0.022773352669569202,0.00479439003569878,0.08411219928602441,0.5 -2816,my_land,urban,0.0,0.002,0.002,0.0,2013-01-09,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0,,,,, -2817,my_land,rural,15.208951836614235,0.1,0.02,20.0,2013-01-09,0.0,0.0,0.0007245669333188688,0.0,0.0,0.0,0.0,0.0,7.92171737296856,0.0,0.0,0.0,0.0,0.0,0.00044911447987869903,-0.08898228959757398,0.5 -2818,my_land,urban,0.0,0.005999999999999999,0.005999999999999999,0.0,2013-01-10,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0,,,,, -2819,my_land,rural,15.167909448435363,0.1,0.06,20.0,2013-01-10,0.0,0.0,0.0007345669333188688,0.0,0.0,0.0,0.0,0.0,7.43932181437107,0.0,0.0,0.0,0.0,0.0,0.0010423881788714459,-0.06084776357742893,0.5 -2820,my_land,urban,0.0,0.02,0.038,0.0,2013-01-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0,,,,, -2821,my_land,rural,15.33795323888821,0.1,0.38,20.0,2013-01-11,0.0,0.0,0.0007395303968193742,0.0,0.0,0.0,0.0,0.0,6.953427307931365,0.0,0.0,0.0,0.07834379930234699,0.026114599767448995,0.005497810477357684,0.17004379045284632,0.5 -2822,my_land,urban,0.0,0.001,0.001,0.0,2013-01-12,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0,,,,, -2823,my_land,rural,15.247701572905127,0.1,0.01,20.0,2013-01-12,0.0,0.0,0.0007495303968193742,0.0,0.0,0.0,0.0,0.0,6.471856985241422,0.0,0.0,0.0,0.0,0.0,0.0002516659830816748,-0.09503331966163349,0.5 -2824,my_land,urban,0.0,0.007,0.007,0.0,2013-01-13,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0,,,,, -2825,my_land,rural,15.216307314376797,0.1,0.06999999999999999,20.0,2013-01-13,0.0,0.0,0.0007595303968193742,0.0,0.0,0.0,0.0,0.0,5.988446408655179,0.0,0.0,0.0,0.0,0.0,0.0013942585283298935,-0.05788517056659788,0.5 -2826,my_land,urban,0.0,0.02,0.053,0.0,2013-01-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0,,,,, -2827,my_land,rural,15.456879004975445,0.1,0.53,20.0,2013-01-14,0.0,0.0,0.0007606742381378722,0.0,0.0,0.0,0.0,0.0,5.500390411655781,0.0,0.0,0.0,0.13496767044846525,0.04498922348282175,0.009471415470067737,0.24057169059864525,0.5 -2828,my_land,urban,0.0,0.0,0.0,0.0,2013-01-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0,,,,, -2829,my_land,rural,15.356879004975445,0.1,0.0,20.0,2013-01-15,0.0,0.0,0.0007706742381378722,0.0,0.0,0.0,0.0,0.0,5.277727373206973,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2830,my_land,urban,0.0,0.0,0.0,0.0,2013-01-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0,,,,, -2831,my_land,rural,15.256879004975445,0.1,0.0,20.0,2013-01-16,0.0,0.0,0.0007806742381378722,0.0,0.0,0.0,0.0,0.0,5.083823064400872,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2832,my_land,urban,1.734723475976807e-18,0.02,0.033,0.0,2013-01-17,0.0,0.0,4.235164736271502e-22,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0,,,,, -2833,my_land,rural,15.351619348220046,0.1,0.33,20.0,2013-01-17,0.0,0.0,0.0007841110438047175,0.0,0.0,0.0,0.0,0.0,4.891579199881204,0.0,0.0,0.0,0.09637250543822144,0.03212416847940715,0.006762982837769927,0.09474034324460147,0.5 -2834,my_land,urban,0.0,0.02,0.06,0.0,2013-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, -2835,my_land,rural,15.540999043719523,0.1,0.6,20.0,2013-01-18,0.0,0.0,0.0007793135977059915,0.0,0.0,0.0,0.0,0.0,4.69919641626273,0.0,0.0,0.0,0.2213169669566236,0.07377232231887453,0.015531015225026219,0.18937969549947564,0.5 -2836,my_land,urban,0.0,0.001,0.001,0.0,2013-01-19,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, -2837,my_land,rural,15.45065813472105,0.1,0.01,20.0,2013-01-19,0.0,0.0,0.0007893135977059915,0.0,0.0,0.0,0.0,0.0,4.513292409282841,0.0,0.0,0.0,0.0,0.0,0.00034090899847364324,-0.09681817996947287,0.5 -2838,my_land,urban,0.0,0.013,0.013,0.0,2013-01-20,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, -2839,my_land,rural,15.401209052500993,0.1,0.13,20.0,2013-01-20,0.0,0.0,0.0007954155089031578,0.0,0.0,0.0,0.0,0.0,4.323737686242265,0.0,0.0,0.0,0.05660747108178929,0.018869157027263096,0.003972454111002758,-0.04944908222005515,0.5 -2840,my_land,urban,0.0,0.01,0.01,0.0,2013-01-21,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0,,,,, -2841,my_land,rural,15.398375292840656,0.1,0.1,20.0,2013-01-21,0.0,0.0,0.0008054155089031579,0.0,0.0,0.0,0.0,0.0,4.1342172107802835,0.0,0.0,0.0,0.0,0.0,0.0028337596603368598,-0.056675193206737196,0.5 -2842,my_land,urban,0.0,0.02,0.038,0.0,2013-01-22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0,,,,, -2843,my_land,rural,15.464026847154328,0.1,0.38,20.0,2013-01-22,0.0,0.0,0.0008048176329508202,0.0,0.0,0.0,0.0,0.0,4.261474877502777,0.0,0.0,0.0,0.15272326755150933,0.05090775585050311,0.010717422284316446,0.06565155431367109,0.5 -2844,my_land,urban,0.0,0.011999999999999999,0.011999999999999999,0.0,2013-01-23,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0,,,,, -2845,my_land,rural,15.40933600154138,0.1,0.12,20.0,2013-01-23,0.0,0.0,0.0008110827908699661,0.0,0.0,0.0,0.0,0.0,4.431695711940895,0.0,0.0,0.0,0.05321722749922549,0.017739075833075164,0.0037345422806474033,-0.05469084561294807,0.5 -2846,my_land,urban,0.0,0.0,0.0,0.0,2013-01-24,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0,,,,, -2847,my_land,rural,15.30933600154138,0.1,0.0,20.0,2013-01-24,0.0,0.0,0.0008210827908699661,0.0,0.0,0.0,0.0,0.0,4.605747678492612,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2848,my_land,urban,0.02699999999999999,0.02,0.087,0.0,2013-01-25,0.0,0.0,1.208955223880597e-06,0.0,0.0,0.0,0.0,0.0,3.9392857140000004,0.0,0.0,0.0,,,,, -2849,my_land,rural,15.668705818293656,0.1,0.8699999999999999,20.0,2013-01-25,0.0,0.0,0.0008108942211089126,0.0,0.0,0.0,0.0,0.0,4.776294751633669,0.0,0.0,0.0,0.29257400556400215,0.09752466852133404,0.020531509162386115,0.35936981675227764,0.5 -2850,my_land,urban,0.10799999999999998,0.02,0.141,0.0,2013-01-26,0.0,0.0,1.6119402985074626e-06,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0,,,,, -2851,my_land,rural,15.90420841792064,0.1,1.41,20.0,2013-01-26,0.0,0.0,0.0007713847845077432,0.0,0.0,0.0,0.0,0.0,4.948302501722026,0.0,0.0,0.0,0.765579397765774,0.25519313258859133,0.05372487001865081,0.23550259962698394,0.5 -2852,my_land,urban,0.08399999999999999,0.02,0.036,0.0,2013-01-27,0.0,0.0,1.7693789118921516e-06,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0,,,,, -2853,my_land,rural,15.8531841513214,0.1,0.36,20.0,2013-01-27,0.0,0.0,0.0007670877352155564,0.0,0.0,0.0,0.0,0.0,5.127220389680056,0.0,0.0,0.0,0.22160478995196078,0.07386826331732026,0.015551213329962163,-0.05102426659924324,0.5 -2854,my_land,urban,0.05799999999999999,0.02,0.033999999999999996,0.0,2013-01-28,0.0,0.0,1.6390201723443344e-06,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0,,,,, -2855,my_land,rural,15.805535318718732,0.1,0.33999999999999997,20.0,2013-01-28,0.0,0.0,0.0007638807833104662,0.0,0.0,0.0,0.0,0.0,5.302390104986648,0.0,0.0,0.0,0.20494979322939957,0.0683165977431332,0.014382441630133306,-0.047648832602666114,0.5 -2856,my_land,urban,0.09599999999999997,0.02,0.098,0.0,2013-01-29,0.0,0.0,1.8628377687136477e-06,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0,,,,, -2857,my_land,rural,15.874692893819791,0.1,0.98,20.0,2013-01-29,0.0,0.0,0.0007380669745991166,0.0,0.0,0.0,0.0,0.0,5.542044663906372,0.0,0.0,0.0,0.5777252277404938,0.19257507591349796,0.04054212124494694,0.06915757510106112,0.5 -2858,my_land,urban,0.06199999999999998,0.02,0.026,0.0,2013-01-30,0.0,0.0,1.7401562907867269e-06,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0,,,,, -2859,my_land,rural,15.812697492741504,0.1,0.26,20.0,2013-01-30,0.0,0.0,0.0007382212392863184,0.0,0.0,0.0,0.0,0.0,5.794069316217952,0.0,0.0,0.0,0.15817172326827944,0.052723907756093154,0.011099770053914349,-0.061995401078286966,0.5 -2860,my_land,urban,0.04999999999999997,0.02,0.047999999999999994,0.0,2013-01-31,0.0,0.0,1.52230905043707e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, -2861,my_land,rural,15.794146269407982,0.1,0.48,20.0,2013-01-31,0.0,0.0,0.0007307044955913183,0.0,0.0,0.0,0.0,0.0,6.0446700503205735,0.0,0.0,0.0,0.283967746625134,0.09465591554171134,0.019927561166676072,-0.018551223333521452,0.5 -2862,my_land,urban,0.0,0.02,0.0029999999999999996,0.0,2013-02-01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, -2863,my_land,rural,15.722912300786405,0.1,0.03,20.0,2013-02-01,0.0,0.0,0.0007407044955913183,0.0,0.0,0.0,0.0,0.0,6.296655184540072,0.0,0.0,0.0,0.0,0.0,0.001233968621577905,-0.0946793724315581,0.5 -2864,my_land,urban,0.0,0.0,0.0,0.0,2013-02-02,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, -2865,my_land,rural,15.622912300786405,0.1,0.0,20.0,2013-02-02,0.0,0.0,0.0007507044955913184,0.0,0.0,0.0,0.0,0.0,6.547796183567509,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2866,my_land,urban,0.0,0.0,0.0,0.0,2013-02-03,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, -2867,my_land,rural,15.522912300786405,0.1,0.0,20.0,2013-02-03,0.0,0.0,0.0007607044955913184,0.0,0.0,0.0,0.0,0.0,6.798831665695938,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2868,my_land,urban,0.0,0.018,0.018,0.0,2013-02-04,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0,,,,, -2869,my_land,rural,15.48255104333027,0.1,0.18,20.0,2013-02-04,0.0,0.0,0.0007650543441726194,0.0,0.0,0.0,0.0,0.0,7.049736066537807,0.0,0.0,0.0,0.08575739593749779,0.02858579864583259,0.006018062872806862,-0.040361257456137244,0.5 -2870,my_land,urban,0.0,0.02,0.022000000000000002,0.0,2013-02-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0,,,,, -2871,my_land,rural,15.462287177951374,0.1,0.22,20.0,2013-02-05,0.0,0.0,0.0007684321607458175,0.0,0.0,0.0,0.0,0.0,6.804583736991428,0.0,0.0,0.0,0.0999380040824626,0.03331266802748754,0.007013193268944746,-0.020263865378894897,0.5 -2872,my_land,urban,0.0,0.0,0.0,0.0,2013-02-06,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0,,,,, -2873,my_land,rural,15.362287177951375,0.1,0.0,20.0,2013-02-06,0.0,0.0,0.0007784321607458175,0.0,0.0,0.0,0.0,0.0,6.498787252623929,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2874,my_land,urban,0.0,0.008,0.008,0.0,2013-02-07,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0,,,,, -2875,my_land,rural,15.340172556120592,0.1,0.08,20.0,2013-02-07,0.0,0.0,0.0007884321607458175,0.0,0.0,0.0,0.0,0.0,6.184669834827992,0.0,0.0,0.0,0.0,0.0,0.0021146218307818397,-0.06229243661563679,0.5 -2876,my_land,urban,0.0,0.02,0.028,0.0,2013-02-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0,,,,, -2877,my_land,rural,15.378579008210481,0.1,0.27999999999999997,20.0,2013-02-08,0.0,0.0,0.0007915089636035798,0.0,0.0,0.0,0.0,0.0,5.868040795078995,0.0,0.0,0.0,0.10088540288595371,0.03362846762865124,0.007079677395505524,0.03840645208988951,0.5 -2878,my_land,urban,0.010000000000000002,0.02,0.07,0.0,2013-02-09,0.0,0.0,2.000000000000001e-07,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0,,,,, -2879,my_land,rural,15.597111195382572,0.1,0.7000000000000001,20.0,2013-02-09,0.0,0.0,0.000783309002733697,0.0,0.0,0.0,0.0,0.0,5.549002473022487,0.0,0.0,0.0,0.27179581663988606,0.09059860554662869,0.019073390641395516,0.21853218717208972,0.5 -2880,my_land,urban,0.112,0.02,0.16199999999999998,0.0,2013-02-10,0.0,0.0,8.842105263157895e-07,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0,,,,, -2881,my_land,rural,15.951253694655565,0.1,1.6199999999999999,20.0,2013-02-10,0.0,0.0,0.0007418024462905808,0.0,0.0,0.0,0.0,0.0,5.22588493857554,0.0,0.0,0.0,0.8306734692679949,0.276891156422665,0.05829287503635053,0.35414249927298924,0.5 -2882,my_land,urban,0.055,0.02,0.0029999999999999996,0.0,2013-02-11,0.0,0.0,1.0908587257617728e-06,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0,,,,, -2883,my_land,rural,15.879935495904647,0.1,0.03,20.0,2013-02-11,0.0,0.0,0.0007518024462905809,0.0,0.0,0.0,0.0,0.0,4.921985617321942,0.0,0.0,0.0,0.0,0.0,0.0013181987509182744,-0.0963639750183655,0.5 -2884,my_land,urban,0.0,0.02,0.0,0.0,2013-02-12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0,,,,, -2885,my_land,rural,15.779935495904647,0.1,0.0,20.0,2013-02-12,0.0,0.0,0.0007618024462905809,0.0,0.0,0.0,0.0,0.0,5.079533916665242,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2886,my_land,urban,0.031000000000000007,0.02,0.091,0.0,2013-02-13,0.0,0.0,4.366197183098592e-07,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2887,my_land,rural,15.846864668755211,0.1,0.91,20.0,2013-02-13,0.0,0.0,0.0007388878166199245,0.0,0.0,0.0,0.0,0.0,5.291651843558389,0.0,0.0,0.0,0.529437964343972,0.17647932144799067,0.037153541357471724,0.06692917285056549,0.5 -2888,my_land,urban,0.0,0.02,0.001,0.0,2013-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2889,my_land,rural,15.756442837077454,0.1,0.01,20.0,2013-02-14,0.0,0.0,0.0007488878166199245,0.0,0.0,0.0,0.0,0.0,5.516813623194799,0.0,0.0,0.0,0.0,0.0,0.0004218316777566894,-0.09843663355513378,0.5 -2890,my_land,urban,0.0,0.0,0.0,0.0,2013-02-15,0.0,0.0,1e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2891,my_land,rural,15.656442837077455,0.1,0.0,20.0,2013-02-15,0.0,0.0,0.0007588878166199245,0.0,0.0,0.0,0.0,0.0,5.74049456014935,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2892,my_land,urban,0.0,0.001,0.001,0.0,2013-02-16,0.0,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2893,my_land,rural,15.566065221283486,0.1,0.01,20.0,2013-02-16,0.0,0.0,0.0007688878166199246,0.0,0.0,0.0,0.0,0.0,5.963990391768669,0.0,0.0,0.0,0.0,0.0,0.000377615793968375,-0.0975523158793675,0.5 -2894,my_land,urban,0.0,0.0,0.0,0.0,2013-02-17,0.0,0.0,3e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2895,my_land,rural,15.466065221283486,0.1,0.0,20.0,2013-02-17,0.0,0.0,0.0007788878166199246,0.0,0.0,0.0,0.0,0.0,6.187463084471084,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2896,my_land,urban,0.0,0.0,0.0,0.0,2013-02-18,0.0,0.0,4e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2897,my_land,rural,15.366065221283487,0.1,0.0,20.0,2013-02-18,0.0,0.0,0.0007888878166199246,0.0,0.0,0.0,0.0,0.0,6.410932885558886,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2898,my_land,urban,0.0,0.0,0.0,0.0,2013-02-19,0.0,0.0,4.9999999999999996e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2899,my_land,rural,15.266065221283487,0.1,0.0,20.0,2013-02-19,0.0,0.0,0.0007988878166199246,0.0,0.0,0.0,0.0,0.0,6.278152325194862,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2900,my_land,urban,0.0,0.0,0.0,0.0,2013-02-20,0.0,0.0,5.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2901,my_land,rural,15.166065221283487,0.1,0.0,20.0,2013-02-20,0.0,0.0,0.0008088878166199247,0.0,0.0,0.0,0.0,0.0,6.100840468899358,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2902,my_land,urban,0.0,0.0,0.0,0.0,2013-02-21,0.0,0.0,6.999999999999999e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2903,my_land,rural,15.066065221283488,0.1,0.0,20.0,2013-02-21,0.0,0.0,0.0008188878166199247,0.0,0.0,0.0,0.0,0.0,5.91796220136242,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2904,my_land,urban,0.0,0.0,0.0,0.0,2013-02-22,0.0,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2905,my_land,rural,14.966065221283488,0.1,0.0,20.0,2013-02-22,0.0,0.0,0.0008288878166199247,0.0,0.0,0.0,0.0,0.0,5.734388132420303,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2906,my_land,urban,0.0,0.0,0.0,0.0,2013-02-23,0.0,0.0,9e-06,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2907,my_land,rural,14.866065221283488,0.1,0.0,20.0,2013-02-23,0.0,0.0,0.0008388878166199248,0.0,0.0,0.0,0.0,0.0,5.550727088302539,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2908,my_land,urban,0.0,0.0,0.0,0.0,2013-02-24,0.0,0.0,1e-05,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2909,my_land,rural,14.766065221283489,0.1,0.0,20.0,2013-02-24,0.0,0.0,0.0008488878166199248,0.0,0.0,0.0,0.0,0.0,5.367055171537818,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.5 -2910,my_land,urban,0.0,0.001,0.001,0.0,2013-02-25,0.0,0.0,1.1000000000000001e-05,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0,,,,, -2911,my_land,rural,14.676065221283489,0.1,0.01,20.0,2013-02-25,0.0,0.0,0.0008588878166199248,0.0,0.0,0.0,0.0,0.0,5.183381896442228,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,0.5 diff --git a/docs/demo/data/processed/tanks.csv b/docs/demo/data/processed/tanks.csv deleted file mode 100644 index 19583a34..00000000 --- a/docs/demo/data/processed/tanks.csv +++ /dev/null @@ -1,11649 +0,0 @@ -,node,time,storage,prop,do,org-phosphorus,phosphate,ammonia,solids,bod,cod,ph,temperature,nitrate,nitrite,org-nitrogen -0,my_sewer,2009-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0 -1,my_land,2009-03-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,my_land,2009-03-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3,my_land,2009-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4,my_groundwater,2009-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5,my_reservoir,2009-03-03,5.965000000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6,gw1,2009-03-03,225.25,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7,gw2,2009-03-03,299.75,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8,my_sewer,2009-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -9,my_land,2009-03-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10,my_land,2009-03-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11,my_land,2009-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -12,my_groundwater,2009-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -13,my_reservoir,2009-03-04,5.855500000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -14,gw1,2009-03-04,225.49833333333333,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -15,gw2,2009-03-04,299.50166666666667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -16,my_sewer,2009-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -17,my_land,2009-03-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -18,my_land,2009-03-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -19,my_land,2009-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -20,my_groundwater,2009-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -21,my_reservoir,2009-03-05,5.745500000000002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -22,gw1,2009-03-05,225.74501111111113,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -23,gw2,2009-03-05,299.2549888888889,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -24,my_sewer,2009-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -25,my_land,2009-03-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -26,my_land,2009-03-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -27,my_land,2009-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -28,my_groundwater,2009-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -29,my_reservoir,2009-03-06,5.635500000000002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -30,gw1,2009-03-06,225.99004437037038,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -31,gw2,2009-03-06,299.0099556296296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -32,my_sewer,2009-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.625000000000001,0.0,0.0,0.0 -33,my_land,2009-03-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -34,my_land,2009-03-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -35,my_land,2009-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -36,my_groundwater,2009-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -37,my_reservoir,2009-03-07,5.5340000000000025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -38,gw1,2009-03-07,226.23344407456793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -39,gw2,2009-03-07,298.76655592543204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -40,my_sewer,2009-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -41,my_land,2009-03-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -42,my_land,2009-03-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -43,my_land,2009-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -44,my_groundwater,2009-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -45,my_reservoir,2009-03-08,5.442500000000003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -46,gw1,2009-03-08,226.47522111407082,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -47,gw2,2009-03-08,298.52477888592915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -48,my_sewer,2009-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -49,my_land,2009-03-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -50,my_land,2009-03-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -51,my_land,2009-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -52,my_groundwater,2009-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -53,my_reservoir,2009-03-09,5.339000000000003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -54,gw1,2009-03-09,226.7153863066437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -55,gw2,2009-03-09,298.2846136933563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -56,my_sewer,2009-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -57,my_land,2009-03-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -58,my_land,2009-03-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -59,my_land,2009-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -60,my_groundwater,2009-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -61,my_reservoir,2009-03-10,5.229500000000003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -62,gw1,2009-03-10,226.95395039793274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -63,gw2,2009-03-10,298.0460496020672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -64,my_sewer,2009-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -65,my_land,2009-03-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -66,my_land,2009-03-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -67,my_land,2009-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -68,my_groundwater,2009-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -69,my_reservoir,2009-03-11,5.120000000000004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -70,gw1,2009-03-11,227.19092406194653,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -71,gw2,2009-03-11,297.80907593805347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -72,my_sewer,2009-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -73,my_land,2009-03-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -74,my_land,2009-03-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -75,my_land,2009-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -76,my_groundwater,2009-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -77,my_reservoir,2009-03-12,5.010500000000004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -78,gw1,2009-03-12,227.42631790153357,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -79,gw2,2009-03-12,297.57368209846646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -80,my_sewer,2009-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -81,my_land,2009-03-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -82,my_land,2009-03-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -83,my_land,2009-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -84,my_groundwater,2009-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -85,my_reservoir,2009-03-13,4.9005000000000045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -86,gw1,2009-03-13,227.66014244885667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -87,gw2,2009-03-13,297.3398575511434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -88,my_sewer,2009-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -89,my_land,2009-03-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -90,my_land,2009-03-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -91,my_land,2009-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -92,my_groundwater,2009-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -93,my_reservoir,2009-03-14,4.790500000000005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -94,gw1,2009-03-14,227.8924081658643,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -95,gw2,2009-03-14,297.10759183413575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -96,my_sewer,2009-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -97,my_land,2009-03-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -98,my_land,2009-03-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -99,my_land,2009-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -100,my_groundwater,2009-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -101,my_reservoir,2009-03-15,4.680500000000006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -102,gw1,2009-03-15,228.12312544475856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -103,gw2,2009-03-15,296.8768745552415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -104,my_sewer,2009-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -105,my_land,2009-03-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -106,my_land,2009-03-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -107,my_land,2009-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -108,my_groundwater,2009-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -109,my_reservoir,2009-03-16,4.570500000000006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -110,gw1,2009-03-16,228.35230460846017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -111,gw2,2009-03-16,296.6476953915399,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -112,my_sewer,2009-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -113,my_land,2009-03-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -114,my_land,2009-03-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -115,my_land,2009-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -116,my_groundwater,2009-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -117,my_reservoir,2009-03-17,4.460500000000007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -118,gw1,2009-03-17,228.57995591107044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -119,gw2,2009-03-17,296.42004408892967,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -120,my_sewer,2009-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -121,my_land,2009-03-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -122,my_land,2009-03-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -123,my_land,2009-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -124,my_groundwater,2009-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -125,my_reservoir,2009-03-18,4.350500000000007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -126,gw1,2009-03-18,228.80608953832999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -127,gw2,2009-03-18,296.19391046167016,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -128,my_sewer,2009-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -129,my_land,2009-03-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -130,my_land,2009-03-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -131,my_land,2009-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -132,my_groundwater,2009-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -133,my_reservoir,2009-03-19,4.240500000000008,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -134,gw1,2009-03-19,229.03071560807444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -135,gw2,2009-03-19,295.96928439192567,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -136,my_sewer,2009-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -137,my_land,2009-03-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -138,my_land,2009-03-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -139,my_land,2009-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -140,my_groundwater,2009-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -141,my_reservoir,2009-03-20,4.1305000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -142,gw1,2009-03-20,229.25384417068727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -143,gw2,2009-03-20,295.74615582931284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -144,my_sewer,2009-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -145,my_land,2009-03-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -146,my_land,2009-03-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -147,my_land,2009-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -148,my_groundwater,2009-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -149,my_reservoir,2009-03-21,4.020500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -150,gw1,2009-03-21,229.47548520954936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -151,gw2,2009-03-21,295.5245147904508,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -152,my_sewer,2009-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -153,my_land,2009-03-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -154,my_land,2009-03-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -155,my_land,2009-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -156,my_groundwater,2009-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -157,my_reservoir,2009-03-22,3.910500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -158,gw1,2009-03-22,229.6956486414857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -159,gw2,2009-03-22,295.30435135851445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -160,my_sewer,2009-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -161,my_land,2009-03-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -162,my_land,2009-03-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -163,my_land,2009-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -164,my_groundwater,2009-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -165,my_reservoir,2009-03-23,3.8030000000000093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -166,gw1,2009-03-23,229.91434431720913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -167,gw2,2009-03-23,295.085655682791,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -168,my_sewer,2009-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -169,my_land,2009-03-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -170,my_land,2009-03-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -171,my_land,2009-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -172,my_groundwater,2009-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -173,my_reservoir,2009-03-24,3.6955000000000093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -174,gw1,2009-03-24,230.13158202176106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -175,gw2,2009-03-24,294.86841797823905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -176,my_sewer,2009-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -177,my_land,2009-03-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -178,my_land,2009-03-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -179,my_land,2009-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -180,my_groundwater,2009-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -181,my_reservoir,2009-03-25,3.590000000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -182,gw1,2009-03-25,230.3473714749493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -183,gw2,2009-03-25,294.6526285250508,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -184,my_sewer,2009-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -185,my_land,2009-03-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -186,my_land,2009-03-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -187,my_land,2009-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -188,my_groundwater,2009-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -189,my_reservoir,2009-03-26,3.484500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -190,gw1,2009-03-26,230.561722331783,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -191,gw2,2009-03-26,294.4382776682171,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -192,my_sewer,2009-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -193,my_land,2009-03-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -194,my_land,2009-03-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -195,my_land,2009-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -196,my_groundwater,2009-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -197,my_reservoir,2009-03-27,3.376500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -198,gw1,2009-03-27,230.77464418290444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -199,gw2,2009-03-27,294.22535581709565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -200,my_sewer,2009-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -201,my_land,2009-03-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -202,my_land,2009-03-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -203,my_land,2009-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -204,my_groundwater,2009-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -205,my_reservoir,2009-03-28,3.274500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -206,gw1,2009-03-28,230.98614655501842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -207,gw2,2009-03-28,294.0138534449817,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -208,my_sewer,2009-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -209,my_land,2009-03-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -210,my_land,2009-03-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -211,my_land,2009-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -212,my_groundwater,2009-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -213,my_reservoir,2009-03-29,3.164500000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -214,gw1,2009-03-29,231.1962389113183,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -215,gw2,2009-03-29,293.8037610886818,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -216,my_sewer,2009-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -217,my_land,2009-03-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -218,my_land,2009-03-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -219,my_land,2009-03-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -220,my_groundwater,2009-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -221,my_reservoir,2009-03-30,3.0545000000000093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -222,gw1,2009-03-30,231.4049306519095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -223,gw2,2009-03-30,293.5950693480906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -224,my_sewer,2009-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -225,my_land,2009-03-31,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -226,my_land,2009-03-31,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -227,my_land,2009-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -228,my_groundwater,2009-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -229,my_reservoir,2009-03-31,2.9445000000000094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -230,gw1,2009-03-31,231.6122311142301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -231,gw2,2009-03-31,293.38776888576996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -232,my_sewer,2009-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -233,my_land,2009-04-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -234,my_land,2009-04-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -235,my_land,2009-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -236,my_groundwater,2009-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -237,my_reservoir,2009-04-01,2.8345000000000096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -238,gw1,2009-04-01,231.81814957346856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -239,gw2,2009-04-01,293.18185042653147,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -240,my_sewer,2009-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -241,my_land,2009-04-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -242,my_land,2009-04-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -243,my_land,2009-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -244,my_groundwater,2009-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -245,my_reservoir,2009-04-02,2.7245000000000097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -246,gw1,2009-04-02,232.02269524297876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -247,gw2,2009-04-02,292.9773047570213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -248,my_sewer,2009-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -249,my_land,2009-04-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -250,my_land,2009-04-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -251,my_land,2009-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -252,my_groundwater,2009-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -253,my_reservoir,2009-04-03,2.6155000000000097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -254,gw1,2009-04-03,232.22587727469224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -255,gw2,2009-04-03,292.7741227253078,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -256,my_sewer,2009-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -257,my_land,2009-04-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -258,my_land,2009-04-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -259,my_land,2009-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -260,my_groundwater,2009-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -261,my_reservoir,2009-04-04,2.50550000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -262,gw1,2009-04-04,232.42770475952761,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -263,gw2,2009-04-04,292.5722952404724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -264,my_sewer,2009-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -265,my_land,2009-04-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -266,my_land,2009-04-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -267,my_land,2009-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -268,my_groundwater,2009-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -269,my_reservoir,2009-04-05,2.39550000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -270,gw1,2009-04-05,232.62818672779744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -271,gw2,2009-04-05,292.3718132722026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -272,my_sewer,2009-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.979166667,0.0,0.0,0.0 -273,my_land,2009-04-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -274,my_land,2009-04-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -275,my_land,2009-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -276,my_groundwater,2009-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -277,my_reservoir,2009-04-06,2.29000000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -278,gw1,2009-04-06,232.82733214961212,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -279,gw2,2009-04-06,292.1726678503879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -280,my_sewer,2009-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -281,my_land,2009-04-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -282,my_land,2009-04-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -283,my_land,2009-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -284,my_groundwater,2009-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -285,my_reservoir,2009-04-07,2.20500000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -286,gw1,2009-04-07,233.02514993528138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -287,gw2,2009-04-07,291.9748500647186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -288,my_sewer,2009-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -289,my_land,2009-04-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -290,my_land,2009-04-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -291,my_land,2009-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -292,my_groundwater,2009-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -293,my_reservoir,2009-04-08,2.1020000000000096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -294,gw1,2009-04-08,233.22164893571284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -295,gw2,2009-04-08,291.77835106428716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -296,my_sewer,2009-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -297,my_land,2009-04-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -298,my_land,2009-04-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -299,my_land,2009-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -300,my_groundwater,2009-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -301,my_reservoir,2009-04-09,2.0005000000000095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -302,gw1,2009-04-09,233.4168379428081,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -303,gw2,2009-04-09,291.58316205719194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -304,my_sewer,2009-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -305,my_land,2009-04-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -306,my_land,2009-04-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -307,my_land,2009-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -308,my_groundwater,2009-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -309,my_reservoir,2009-04-10,1.9000000000000092,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -310,gw1,2009-04-10,233.61072568985603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -311,gw2,2009-04-10,291.389274310144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -312,my_sewer,2009-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -313,my_land,2009-04-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -314,my_land,2009-04-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -315,my_land,2009-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -316,my_groundwater,2009-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -317,my_reservoir,2009-04-11,1.7900000000000091,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -318,gw1,2009-04-11,233.80332085192364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -319,gw2,2009-04-11,291.1966791480764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -320,my_sewer,2009-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -321,my_land,2009-04-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -322,my_land,2009-04-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -323,my_land,2009-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -324,my_groundwater,2009-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -325,my_reservoir,2009-04-12,1.680000000000009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -326,gw1,2009-04-12,233.99463204624416,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -327,gw2,2009-04-12,291.00536795375587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -328,my_sewer,2009-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23125,0.0,0.0,0.0 -329,my_land,2009-04-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -330,my_land,2009-04-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -331,my_land,2009-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -332,my_groundwater,2009-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -333,my_reservoir,2009-04-13,1.5705000000000089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -334,gw1,2009-04-13,234.18466783260254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -335,gw2,2009-04-13,290.8153321673975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -336,my_sewer,2009-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 -337,my_land,2009-04-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -338,my_land,2009-04-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -339,my_land,2009-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -340,my_groundwater,2009-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -341,my_reservoir,2009-04-14,1.4860000000000089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -342,gw1,2009-04-14,234.37343671371852,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -343,gw2,2009-04-14,290.6265632862815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -344,my_sewer,2009-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 -345,my_land,2009-04-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -346,my_land,2009-04-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -347,my_land,2009-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -348,my_groundwater,2009-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -349,my_reservoir,2009-04-15,1.3815000000000088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -350,gw1,2009-04-15,234.56094713562706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -351,gw2,2009-04-15,290.43905286437297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -352,my_sewer,2009-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -353,my_land,2009-04-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -354,my_land,2009-04-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -355,my_land,2009-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -356,my_groundwater,2009-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -357,my_reservoir,2009-04-16,1.3125000000000087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -358,gw1,2009-04-16,234.7472074880562,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -359,gw2,2009-04-16,290.2527925119438,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -360,my_sewer,2009-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -361,my_land,2009-04-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -362,my_land,2009-04-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -363,my_land,2009-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -364,my_groundwater,2009-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -365,my_reservoir,2009-04-17,1.2070000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -366,gw1,2009-04-17,234.9322261048025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -367,gw2,2009-04-17,290.06777389519755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -368,my_sewer,2009-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -369,my_land,2009-04-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -370,my_land,2009-04-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -371,my_land,2009-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -372,my_groundwater,2009-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -373,my_reservoir,2009-04-18,1.0970000000000084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -374,gw1,2009-04-18,235.11601126410383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -375,gw2,2009-04-18,289.88398873589625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -376,my_sewer,2009-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -377,my_land,2009-04-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -378,my_land,2009-04-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -379,my_land,2009-04-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -380,my_groundwater,2009-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -381,my_reservoir,2009-04-19,0.9870000000000084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -382,gw1,2009-04-19,235.2985711890098,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -383,gw2,2009-04-19,289.70142881099025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -384,my_sewer,2009-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -385,my_land,2009-04-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -386,my_land,2009-04-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -387,my_land,2009-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -388,my_groundwater,2009-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -389,my_reservoir,2009-04-20,0.8770000000000084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -390,gw1,2009-04-20,235.47991404774973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -391,gw2,2009-04-20,289.5200859522503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -392,my_sewer,2009-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -393,my_land,2009-04-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -394,my_land,2009-04-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -395,my_land,2009-04-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -396,my_groundwater,2009-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -397,my_reservoir,2009-04-21,0.7670000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -398,gw1,2009-04-21,235.66004795409808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -399,gw2,2009-04-21,289.339952045902,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -400,my_sewer,2009-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -401,my_land,2009-04-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -402,my_land,2009-04-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -403,my_land,2009-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -404,my_groundwater,2009-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -405,my_reservoir,2009-04-22,0.6570000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -406,gw1,2009-04-22,235.83898096773743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -407,gw2,2009-04-22,289.1610190322627,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -408,my_sewer,2009-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -409,my_land,2009-04-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -410,my_land,2009-04-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -411,my_land,2009-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -412,my_groundwater,2009-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -413,my_reservoir,2009-04-23,0.5470000000000085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -414,gw1,2009-04-23,236.0167210946192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -415,gw2,2009-04-23,288.9832789053809,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -416,my_sewer,2009-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -417,my_land,2009-04-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -418,my_land,2009-04-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -419,my_land,2009-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -420,my_groundwater,2009-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -421,my_reservoir,2009-04-24,0.44450000000000855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -422,gw1,2009-04-24,236.19327628732174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -423,gw2,2009-04-24,288.8067237126784,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -424,my_sewer,2009-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.90833333,0.0,0.0,0.0 -425,my_land,2009-04-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -426,my_land,2009-04-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -427,my_land,2009-04-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -428,my_groundwater,2009-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -429,my_reservoir,2009-04-25,0.33450000000000857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -430,gw1,2009-04-25,236.36865444540626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -431,gw2,2009-04-25,288.63134555459385,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -432,my_sewer,2009-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.975,0.0,0.0,0.0 -433,my_land,2009-04-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -434,my_land,2009-04-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -435,my_land,2009-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -436,my_groundwater,2009-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -437,my_reservoir,2009-04-26,0.2525000000000086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -438,gw1,2009-04-26,236.54286341577023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -439,gw2,2009-04-26,288.4571365842299,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -440,my_sewer,2009-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -441,my_land,2009-04-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -442,my_land,2009-04-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -443,my_land,2009-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -444,my_groundwater,2009-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -445,my_reservoir,2009-04-27,0.16950000000000862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -446,gw1,2009-04-27,236.71591099299843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -447,gw2,2009-04-27,288.2840890070017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -448,my_sewer,2009-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -449,my_land,2009-04-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -450,my_land,2009-04-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -451,my_land,2009-04-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -452,my_groundwater,2009-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -453,my_reservoir,2009-04-28,0.0630000000000086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -454,gw1,2009-04-28,236.88780491971178,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -455,gw2,2009-04-28,288.11219508028836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -456,my_sewer,2009-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -457,my_land,2009-04-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -458,my_land,2009-04-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -459,my_land,2009-04-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -460,my_groundwater,2009-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -461,my_reservoir,2009-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -462,gw1,2009-04-29,237.0585528869137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -463,gw2,2009-04-29,287.94144711308644,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -464,my_sewer,2009-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -465,my_land,2009-04-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -466,my_land,2009-04-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -467,my_land,2009-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -468,my_groundwater,2009-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -469,my_reservoir,2009-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -470,gw1,2009-04-30,237.22816253433427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -471,gw2,2009-04-30,287.77183746566584,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -472,my_sewer,2009-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -473,my_land,2009-05-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -474,my_land,2009-05-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -475,my_land,2009-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -476,my_groundwater,2009-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -477,my_reservoir,2009-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -478,gw1,2009-05-01,237.39664145077205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -479,gw2,2009-05-01,287.60335854922806,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -480,my_sewer,2009-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -481,my_land,2009-05-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -482,my_land,2009-05-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -483,my_land,2009-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -484,my_groundwater,2009-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -485,my_reservoir,2009-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -486,gw1,2009-05-02,237.56399717443358,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -487,gw2,2009-05-02,287.43600282556656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -488,my_sewer,2009-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -489,my_land,2009-05-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -490,my_land,2009-05-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -491,my_land,2009-05-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -492,my_groundwater,2009-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -493,my_reservoir,2009-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -494,gw1,2009-05-03,237.73023719327068,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -495,gw2,2009-05-03,287.26976280672943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -496,my_sewer,2009-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -497,my_land,2009-05-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -498,my_land,2009-05-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -499,my_land,2009-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -500,my_groundwater,2009-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -501,my_reservoir,2009-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -502,gw1,2009-05-04,237.89536894531554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -503,gw2,2009-05-04,287.10463105468455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -504,my_sewer,2009-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -505,my_land,2009-05-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -506,my_land,2009-05-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -507,my_land,2009-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -508,my_groundwater,2009-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -509,my_reservoir,2009-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -510,gw1,2009-05-05,238.05939981901344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -511,gw2,2009-05-05,286.9406001809866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -512,my_sewer,2009-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -513,my_land,2009-05-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -514,my_land,2009-05-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -515,my_land,2009-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -516,my_groundwater,2009-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -517,my_reservoir,2009-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -518,gw1,2009-05-06,238.22233715355335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -519,gw2,2009-05-06,286.77766284644673,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -520,my_sewer,2009-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -521,my_land,2009-05-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -522,my_land,2009-05-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -523,my_land,2009-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -524,my_groundwater,2009-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -525,my_reservoir,2009-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -526,gw1,2009-05-07,238.38418823919633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -527,gw2,2009-05-07,286.61581176080375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -528,my_sewer,2009-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -529,my_land,2009-05-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -530,my_land,2009-05-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -531,my_land,2009-05-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -532,my_groundwater,2009-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -533,my_reservoir,2009-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -534,gw1,2009-05-08,238.5449603176017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -535,gw2,2009-05-08,286.4550396823984,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -536,my_sewer,2009-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -537,my_land,2009-05-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -538,my_land,2009-05-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -539,my_land,2009-05-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -540,my_groundwater,2009-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -541,my_reservoir,2009-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -542,gw1,2009-05-09,238.704660582151,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -543,gw2,2009-05-09,286.2953394178491,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -544,my_sewer,2009-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -545,my_land,2009-05-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -546,my_land,2009-05-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -547,my_land,2009-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -548,my_groundwater,2009-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -549,my_reservoir,2009-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -550,gw1,2009-05-10,238.86329617827,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -551,gw2,2009-05-10,286.1367038217301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -552,my_sewer,2009-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -553,my_land,2009-05-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -554,my_land,2009-05-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -555,my_land,2009-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -556,my_groundwater,2009-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -557,my_reservoir,2009-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -558,gw1,2009-05-11,239.02087420374818,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -559,gw2,2009-05-11,285.97912579625194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -560,my_sewer,2009-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -561,my_land,2009-05-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -562,my_land,2009-05-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -563,my_land,2009-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -564,my_groundwater,2009-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -565,my_reservoir,2009-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -566,gw1,2009-05-12,239.1774017090565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -567,gw2,2009-05-12,285.8225982909436,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -568,my_sewer,2009-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.95,0.0,0.0,0.0 -569,my_land,2009-05-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -570,my_land,2009-05-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -571,my_land,2009-05-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -572,my_groundwater,2009-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -573,my_reservoir,2009-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -574,gw1,2009-05-13,239.3328856976628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -575,gw2,2009-05-13,285.66711430233727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -576,my_sewer,2009-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -577,my_land,2009-05-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -578,my_land,2009-05-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -579,my_land,2009-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -580,my_groundwater,2009-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -581,my_reservoir,2009-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -582,gw1,2009-05-14,239.48733312634505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -583,gw2,2009-05-14,285.512666873655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -584,my_sewer,2009-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.699999999999998,0.0,0.0,0.0 -585,my_land,2009-05-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -586,my_land,2009-05-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -587,my_land,2009-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -588,my_groundwater,2009-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -589,my_reservoir,2009-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -590,gw1,2009-05-15,239.64075090550276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -591,gw2,2009-05-15,285.35924909449733,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -592,my_sewer,2009-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.606666666666667,0.0,0.0,0.0 -593,my_land,2009-05-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -594,my_land,2009-05-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -595,my_land,2009-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -596,my_groundwater,2009-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -597,my_reservoir,2009-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -598,gw1,2009-05-16,239.79314589946608,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -599,gw2,2009-05-16,285.20685410053403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -600,my_sewer,2009-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.28496732026144,0.0,0.0,0.0 -601,my_land,2009-05-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -602,my_land,2009-05-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -603,my_land,2009-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -604,my_groundwater,2009-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -605,my_reservoir,2009-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -606,gw1,2009-05-17,239.94452492680298,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -607,gw2,2009-05-17,285.05547507319716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -608,my_sewer,2009-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.136332866479924,0.0,0.0,0.0 -609,my_land,2009-05-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -610,my_land,2009-05-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -611,my_land,2009-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -612,my_groundwater,2009-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -613,my_reservoir,2009-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -614,gw1,2009-05-18,240.0948947606243,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -615,gw2,2009-05-18,284.90510523937587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -616,my_sewer,2009-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -617,my_land,2009-05-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -618,my_land,2009-05-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -619,my_land,2009-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -620,my_groundwater,2009-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -621,my_reservoir,2009-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -622,gw1,2009-05-19,240.24426212888682,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -623,gw2,2009-05-19,284.75573787111335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -624,my_sewer,2009-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -625,my_land,2009-05-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -626,my_land,2009-05-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -627,my_land,2009-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -628,my_groundwater,2009-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -629,my_reservoir,2009-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -630,gw1,2009-05-20,240.39263371469423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -631,gw2,2009-05-20,284.60736628530594,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -632,my_sewer,2009-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -633,my_land,2009-05-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -634,my_land,2009-05-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -635,my_land,2009-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -636,my_groundwater,2009-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -637,my_reservoir,2009-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -638,gw1,2009-05-21,240.54001615659627,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -639,gw2,2009-05-21,284.4599838434039,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -640,my_sewer,2009-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -641,my_land,2009-05-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -642,my_land,2009-05-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -643,my_land,2009-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -644,my_groundwater,2009-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -645,my_reservoir,2009-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -646,gw1,2009-05-22,240.68641604888563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -647,gw2,2009-05-22,284.31358395111454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -648,my_sewer,2009-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -649,my_land,2009-05-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -650,my_land,2009-05-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -651,my_land,2009-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -652,my_groundwater,2009-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -653,my_reservoir,2009-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -654,gw1,2009-05-23,240.83183994189307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -655,gw2,2009-05-23,284.1681600581071,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -656,my_sewer,2009-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.381857285925124,0.0,0.0,0.0 -657,my_land,2009-05-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -658,my_land,2009-05-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -659,my_land,2009-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -660,my_groundwater,2009-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -661,my_reservoir,2009-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -662,gw1,2009-05-24,240.97629434228045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -663,gw2,2009-05-24,284.02370565771974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -664,my_sewer,2009-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -665,my_land,2009-05-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -666,my_land,2009-05-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -667,my_land,2009-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -668,my_groundwater,2009-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -669,my_reservoir,2009-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -670,gw1,2009-05-25,241.1197857133319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -671,gw2,2009-05-25,283.88021428666826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -672,my_sewer,2009-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -673,my_land,2009-05-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -674,my_land,2009-05-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -675,my_land,2009-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -676,my_groundwater,2009-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -677,my_reservoir,2009-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -678,gw1,2009-05-26,241.26232047524303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -679,gw2,2009-05-26,283.73767952475714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -680,my_sewer,2009-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -681,my_land,2009-05-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -682,my_land,2009-05-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -683,my_land,2009-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -684,my_groundwater,2009-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -685,my_reservoir,2009-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -686,gw1,2009-05-27,241.40390500540806,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -687,gw2,2009-05-27,283.5960949945921,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -688,my_sewer,2009-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -689,my_land,2009-05-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -690,my_land,2009-05-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -691,my_land,2009-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -692,my_groundwater,2009-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -693,my_reservoir,2009-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -694,gw1,2009-05-28,241.54454563870533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -695,gw2,2009-05-28,283.4554543612948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -696,my_sewer,2009-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -697,my_land,2009-05-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -698,my_land,2009-05-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -699,my_land,2009-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -700,my_groundwater,2009-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -701,my_reservoir,2009-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -702,gw1,2009-05-29,241.68424866778062,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -703,gw2,2009-05-29,283.3157513322195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -704,my_sewer,2009-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -705,my_land,2009-05-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -706,my_land,2009-05-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -707,my_land,2009-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -708,my_groundwater,2009-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -709,my_reservoir,2009-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -710,gw1,2009-05-30,241.82302034332875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -711,gw2,2009-05-30,283.1769796566714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -712,my_sewer,2009-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -713,my_land,2009-05-31,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -714,my_land,2009-05-31,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -715,my_land,2009-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -716,my_groundwater,2009-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -717,my_reservoir,2009-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -718,gw1,2009-05-31,241.96086687437324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -719,gw2,2009-05-31,283.0391331256269,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -720,my_sewer,2009-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -721,my_land,2009-06-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -722,my_land,2009-06-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -723,my_land,2009-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -724,my_groundwater,2009-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -725,my_reservoir,2009-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -726,gw1,2009-06-01,242.0977944285441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -727,gw2,2009-06-01,282.9022055714561,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -728,my_sewer,2009-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -729,my_land,2009-06-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -730,my_land,2009-06-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -731,my_land,2009-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -732,my_groundwater,2009-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -733,my_reservoir,2009-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -734,gw1,2009-06-02,242.2338091323538,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -735,gw2,2009-06-02,282.7661908676464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -736,my_sewer,2009-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -737,my_land,2009-06-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -738,my_land,2009-06-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -739,my_land,2009-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -740,my_groundwater,2009-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -741,my_reservoir,2009-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -742,gw1,2009-06-03,242.36891707147143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -743,gw2,2009-06-03,282.63108292852877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -744,my_sewer,2009-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.90625,0.0,0.0,0.0 -745,my_land,2009-06-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -746,my_land,2009-06-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -747,my_land,2009-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -748,my_groundwater,2009-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -749,my_reservoir,2009-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -750,gw1,2009-06-04,242.50312429099495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -751,gw2,2009-06-04,282.4968757090052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -752,my_sewer,2009-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.02142857,0.0,0.0,0.0 -753,my_land,2009-06-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -754,my_land,2009-06-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -755,my_land,2009-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -756,my_groundwater,2009-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -757,my_reservoir,2009-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -758,gw1,2009-06-05,242.63643679572164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -759,gw2,2009-06-05,282.36356320427853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -760,my_sewer,2009-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.464104878607596,0.0,0.0,0.0 -761,my_land,2009-06-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -762,my_land,2009-06-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -763,my_land,2009-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -764,my_groundwater,2009-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -765,my_reservoir,2009-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -766,gw1,2009-06-06,242.76886055041683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -767,gw2,2009-06-06,282.23113944958334,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -768,my_sewer,2009-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -769,my_land,2009-06-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -770,my_land,2009-06-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -771,my_land,2009-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -772,my_groundwater,2009-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -773,my_reservoir,2009-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -774,gw1,2009-06-07,242.90040148008072,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -775,gw2,2009-06-07,282.0995985199194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -776,my_sewer,2009-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -777,my_land,2009-06-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -778,my_land,2009-06-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -779,my_land,2009-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -780,my_groundwater,2009-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -781,my_reservoir,2009-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -782,gw1,2009-06-08,243.03106547021352,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -783,gw2,2009-06-08,281.9689345297866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -784,my_sewer,2009-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.31477223548093,0.0,0.0,0.0 -785,my_land,2009-06-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -786,my_land,2009-06-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -787,my_land,2009-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -788,my_groundwater,2009-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -789,my_reservoir,2009-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -790,gw1,2009-06-09,243.16085836707876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -791,gw2,2009-06-09,281.8391416329214,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -792,my_sewer,2009-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -793,my_land,2009-06-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -794,my_land,2009-06-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -795,my_land,2009-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -796,my_groundwater,2009-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -797,my_reservoir,2009-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -798,gw1,2009-06-10,243.2897859779649,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -799,gw2,2009-06-10,281.71021402203525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -800,my_sewer,2009-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -801,my_land,2009-06-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -802,my_land,2009-06-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -803,my_land,2009-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -804,my_groundwater,2009-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -805,my_reservoir,2009-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -806,gw1,2009-06-11,243.41785407144513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -807,gw2,2009-06-11,281.582145928555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -808,my_sewer,2009-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -809,my_land,2009-06-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -810,my_land,2009-06-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -811,my_land,2009-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -812,my_groundwater,2009-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -813,my_reservoir,2009-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -814,gw1,2009-06-12,243.5450683776355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -815,gw2,2009-06-12,281.45493162236465,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -816,my_sewer,2009-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -817,my_land,2009-06-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -818,my_land,2009-06-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -819,my_land,2009-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -820,my_groundwater,2009-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -821,my_reservoir,2009-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -822,gw1,2009-06-13,243.67143458845126,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -823,gw2,2009-06-13,281.3285654115489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -824,my_sewer,2009-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -825,my_land,2009-06-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -826,my_land,2009-06-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -827,my_land,2009-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -828,my_groundwater,2009-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -829,my_reservoir,2009-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -830,gw1,2009-06-14,243.7969583578616,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -831,gw2,2009-06-14,281.20304164213854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -832,my_sewer,2009-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -833,my_land,2009-06-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -834,my_land,2009-06-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -835,my_land,2009-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -836,my_groundwater,2009-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -837,my_reservoir,2009-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -838,gw1,2009-06-15,243.9216453021425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -839,gw2,2009-06-15,281.0783546978576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -840,my_sewer,2009-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -841,my_land,2009-06-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -842,my_land,2009-06-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -843,my_land,2009-06-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -844,my_groundwater,2009-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -845,my_reservoir,2009-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -846,gw1,2009-06-16,244.0455010001282,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -847,gw2,2009-06-16,280.9544989998719,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -848,my_sewer,2009-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -849,my_land,2009-06-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -850,my_land,2009-06-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -851,my_land,2009-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -852,my_groundwater,2009-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -853,my_reservoir,2009-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -854,gw1,2009-06-17,244.16853099346068,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -855,gw2,2009-06-17,280.8314690065394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -856,my_sewer,2009-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15714286,0.0,0.0,0.0 -857,my_land,2009-06-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -858,my_land,2009-06-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -859,my_land,2009-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -860,my_groundwater,2009-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -861,my_reservoir,2009-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -862,gw1,2009-06-18,244.2907407868376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -863,gw2,2009-06-18,280.70925921316245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -864,my_sewer,2009-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -865,my_land,2009-06-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -866,my_land,2009-06-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -867,my_land,2009-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -868,my_groundwater,2009-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -869,my_reservoir,2009-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -870,gw1,2009-06-19,244.41213584825869,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -871,gw2,2009-06-19,280.58786415174137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -872,my_sewer,2009-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -873,my_land,2009-06-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -874,my_land,2009-06-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -875,my_land,2009-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -876,my_groundwater,2009-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -877,my_reservoir,2009-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -878,gw1,2009-06-20,244.53272160927028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -879,gw2,2009-06-20,280.46727839072975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -880,my_sewer,2009-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -881,my_land,2009-06-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -882,my_land,2009-06-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -883,my_land,2009-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -884,my_groundwater,2009-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -885,my_reservoir,2009-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -886,gw1,2009-06-21,244.65250346520847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -887,gw2,2009-06-21,280.34749653479156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -888,my_sewer,2009-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -889,my_land,2009-06-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -890,my_land,2009-06-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -891,my_land,2009-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -892,my_groundwater,2009-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -893,my_reservoir,2009-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -894,gw1,2009-06-22,244.77148677544042,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -895,gw2,2009-06-22,280.2285132245596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -896,my_sewer,2009-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -897,my_land,2009-06-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -898,my_land,2009-06-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -899,my_land,2009-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -900,my_groundwater,2009-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -901,my_reservoir,2009-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -902,gw1,2009-06-23,244.88967686360417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -903,gw2,2009-06-23,280.1103231363959,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -904,my_sewer,2009-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99642857,0.0,0.0,0.0 -905,my_land,2009-06-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -906,my_land,2009-06-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -907,my_land,2009-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -908,my_groundwater,2009-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -909,my_reservoir,2009-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -910,gw1,2009-06-24,245.0070790178468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -911,gw2,2009-06-24,279.99292098215324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -912,my_sewer,2009-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.26071429,0.0,0.0,0.0 -913,my_land,2009-06-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -914,my_land,2009-06-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -915,my_land,2009-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -916,my_groundwater,2009-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -917,my_reservoir,2009-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -918,gw1,2009-06-25,245.12369849106113,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -919,gw2,2009-06-25,279.87630150893887,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -920,my_sewer,2009-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -921,my_land,2009-06-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -922,my_land,2009-06-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -923,my_land,2009-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -924,my_groundwater,2009-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -925,my_reservoir,2009-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -926,gw1,2009-06-26,245.23954050112073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -927,gw2,2009-06-26,279.7604594988793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -928,my_sewer,2009-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -929,my_land,2009-06-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -930,my_land,2009-06-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -931,my_land,2009-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -932,my_groundwater,2009-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -933,my_reservoir,2009-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -934,gw1,2009-06-27,245.35461023111327,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -935,gw2,2009-06-27,279.6453897688868,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -936,my_sewer,2009-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -937,my_land,2009-06-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -938,my_land,2009-06-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -939,my_land,2009-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -940,my_groundwater,2009-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -941,my_reservoir,2009-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -942,gw1,2009-06-28,245.4689128295725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -943,gw2,2009-06-28,279.53108717042755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -944,my_sewer,2009-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -945,my_land,2009-06-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -946,my_land,2009-06-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -947,my_land,2009-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -948,my_groundwater,2009-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -949,my_reservoir,2009-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -950,gw1,2009-06-29,245.5824534107087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -951,gw2,2009-06-29,279.41754658929136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -952,my_sewer,2009-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -953,my_land,2009-06-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -954,my_land,2009-06-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -955,my_land,2009-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -956,my_groundwater,2009-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -957,my_reservoir,2009-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -958,gw1,2009-06-30,245.69523705463732,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -959,gw2,2009-06-30,279.30476294536277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -960,my_sewer,2009-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -961,my_land,2009-07-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -962,my_land,2009-07-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -963,my_land,2009-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -964,my_groundwater,2009-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -965,my_reservoir,2009-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -966,gw1,2009-07-01,245.8072688076064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -967,gw2,2009-07-01,279.1927311923937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -968,my_sewer,2009-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -969,my_land,2009-07-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -970,my_land,2009-07-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -971,my_land,2009-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -972,my_groundwater,2009-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -973,my_reservoir,2009-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -974,gw1,2009-07-02,245.91855368222235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -975,gw2,2009-07-02,279.08144631777776,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -976,my_sewer,2009-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -977,my_land,2009-07-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -978,my_land,2009-07-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -979,my_land,2009-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -980,my_groundwater,2009-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -981,my_reservoir,2009-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -982,gw1,2009-07-03,246.02909665767422,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -983,gw2,2009-07-03,278.9709033423259,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -984,my_sewer,2009-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -985,my_land,2009-07-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -986,my_land,2009-07-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -987,my_land,2009-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -988,my_groundwater,2009-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -989,my_reservoir,2009-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -990,gw1,2009-07-04,246.1389026799564,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -991,gw2,2009-07-04,278.86109732004377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -992,my_sewer,2009-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.91428571,0.0,0.0,0.0 -993,my_land,2009-07-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -994,my_land,2009-07-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -995,my_land,2009-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -996,my_groundwater,2009-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -997,my_reservoir,2009-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -998,gw1,2009-07-05,246.24797666209003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -999,gw2,2009-07-05,278.75202333791015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1000,my_sewer,2009-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.15,0.0,0.0,0.0 -1001,my_land,2009-07-06,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1002,my_land,2009-07-06,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1003,my_land,2009-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1004,my_groundwater,2009-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1005,my_reservoir,2009-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1006,gw1,2009-07-06,246.35632348434277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1007,gw2,2009-07-06,278.64367651565743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1008,my_sewer,2009-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1009,my_land,2009-07-07,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1010,my_land,2009-07-07,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1011,my_land,2009-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1012,my_groundwater,2009-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1013,my_reservoir,2009-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1014,gw1,2009-07-07,246.46394799444715,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1015,gw2,2009-07-07,278.5360520055531,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1016,my_sewer,2009-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1017,my_land,2009-07-08,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1018,my_land,2009-07-08,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1019,my_land,2009-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1020,my_groundwater,2009-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1021,my_reservoir,2009-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1022,gw1,2009-07-08,246.5708550078175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1023,gw2,2009-07-08,278.4291449921827,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1024,my_sewer,2009-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1025,my_land,2009-07-09,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1026,my_land,2009-07-09,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1027,my_land,2009-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1028,my_groundwater,2009-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1029,my_reservoir,2009-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1030,gw1,2009-07-09,246.67704930776537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1031,gw2,2009-07-09,278.3229506922348,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1032,my_sewer,2009-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97857143,0.0,0.0,0.0 -1033,my_land,2009-07-10,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1034,my_land,2009-07-10,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1035,my_land,2009-07-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1036,my_groundwater,2009-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1037,my_reservoir,2009-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1038,gw1,2009-07-10,246.7825356457136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1039,gw2,2009-07-10,278.2174643542866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1040,my_sewer,2009-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1041,my_land,2009-07-11,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1042,my_land,2009-07-11,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1043,my_land,2009-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1044,my_groundwater,2009-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1045,my_reservoir,2009-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1046,gw1,2009-07-11,246.88731874140885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1047,gw2,2009-07-11,278.11268125859135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1048,my_sewer,2009-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1049,my_land,2009-07-12,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1050,my_land,2009-07-12,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1051,my_land,2009-07-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1052,my_groundwater,2009-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1053,my_reservoir,2009-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1054,gw1,2009-07-12,246.9914032831328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1055,gw2,2009-07-12,278.00859671686743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1056,my_sewer,2009-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.29285714,0.0,0.0,0.0 -1057,my_land,2009-07-13,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1058,my_land,2009-07-13,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1059,my_land,2009-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1060,my_groundwater,2009-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1061,my_reservoir,2009-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1062,gw1,2009-07-13,247.09479392791192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1063,gw2,2009-07-13,277.90520607208833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1064,my_sewer,2009-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 -1065,my_land,2009-07-14,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1066,my_land,2009-07-14,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1067,my_land,2009-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1068,my_groundwater,2009-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1069,my_reservoir,2009-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1070,gw1,2009-07-14,247.19749530172584,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1071,gw2,2009-07-14,277.8025046982744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1072,my_sewer,2009-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.82142857,0.0,0.0,0.0 -1073,my_land,2009-07-15,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1074,my_land,2009-07-15,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1075,my_land,2009-07-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1076,my_groundwater,2009-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1077,my_reservoir,2009-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1078,gw1,2009-07-15,247.29951199971433,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1079,gw2,2009-07-15,277.7004880002859,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1080,my_sewer,2009-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.56428571,0.0,0.0,0.0 -1081,my_land,2009-07-16,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1082,my_land,2009-07-16,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1083,my_land,2009-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1084,my_groundwater,2009-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1085,my_reservoir,2009-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1086,gw1,2009-07-16,247.4008485863829,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1087,gw2,2009-07-16,277.5991514136173,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1088,my_sewer,2009-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 -1089,my_land,2009-07-17,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1090,my_land,2009-07-17,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1091,my_land,2009-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1092,my_groundwater,2009-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1093,my_reservoir,2009-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1094,gw1,2009-07-17,247.501509595807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1095,gw2,2009-07-17,277.49849040419315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1096,my_sewer,2009-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.514285713333333,0.0,0.0,0.0 -1097,my_land,2009-07-18,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1098,my_land,2009-07-18,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1099,my_land,2009-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1100,my_groundwater,2009-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1101,my_reservoir,2009-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1102,gw1,2009-07-18,247.60149953183495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1103,gw2,2009-07-18,277.3985004681652,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1104,my_sewer,2009-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.17857143,0.0,0.0,0.0 -1105,my_land,2009-07-19,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1106,my_land,2009-07-19,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1107,my_land,2009-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1108,my_groundwater,2009-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1109,my_reservoir,2009-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1110,gw1,2009-07-19,247.70082286828938,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1111,gw2,2009-07-19,277.29917713171074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1112,my_sewer,2009-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.06042471054054,0.0,0.0,0.0 -1113,my_land,2009-07-20,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1114,my_land,2009-07-20,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1115,my_land,2009-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1116,my_groundwater,2009-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1117,my_reservoir,2009-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1118,gw1,2009-07-20,247.79948404916746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1119,gw2,2009-07-20,277.20051595083265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1120,my_sewer,2009-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1121,my_land,2009-07-21,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1122,my_land,2009-07-21,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1123,my_land,2009-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1124,my_groundwater,2009-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1125,my_reservoir,2009-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1126,gw1,2009-07-21,247.8974874888397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1127,gw2,2009-07-21,277.10251251116046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1128,my_sewer,2009-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1129,my_land,2009-07-22,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1130,my_land,2009-07-22,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1131,my_land,2009-07-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1132,my_groundwater,2009-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1133,my_reservoir,2009-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1134,gw1,2009-07-22,247.99483757224743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1135,gw2,2009-07-22,277.00516242775274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1136,my_sewer,2009-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03735521027027,0.0,0.0,0.0 -1137,my_land,2009-07-23,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1138,my_land,2009-07-23,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1139,my_land,2009-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1140,my_groundwater,2009-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1141,my_reservoir,2009-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1142,gw1,2009-07-23,248.09153865509913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1143,gw2,2009-07-23,276.90846134490107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1144,my_sewer,2009-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 -1145,my_land,2009-07-24,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1146,my_land,2009-07-24,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1147,my_land,2009-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1148,my_groundwater,2009-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1149,my_reservoir,2009-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1150,gw1,2009-07-24,248.18759506406514,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1151,gw2,2009-07-24,276.8124049359351,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1152,my_sewer,2009-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90714286,0.0,0.0,0.0 -1153,my_land,2009-07-25,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1154,my_land,2009-07-25,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1155,my_land,2009-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1156,my_groundwater,2009-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1157,my_reservoir,2009-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1158,gw1,2009-07-25,248.28301109697136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1159,gw2,2009-07-25,276.71698890302883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1160,my_sewer,2009-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 -1161,my_land,2009-07-26,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1162,my_land,2009-07-26,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1163,my_land,2009-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1164,my_groundwater,2009-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1165,my_reservoir,2009-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1166,gw1,2009-07-26,248.37779102299154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1167,gw2,2009-07-26,276.62220897700865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1168,my_sewer,2009-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 -1169,my_land,2009-07-27,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1170,my_land,2009-07-27,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1171,my_land,2009-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1172,my_groundwater,2009-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1173,my_reservoir,2009-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1174,gw1,2009-07-27,248.47193908283828,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1175,gw2,2009-07-27,276.52806091716195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1176,my_sewer,2009-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.83571429,0.0,0.0,0.0 -1177,my_land,2009-07-28,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1178,my_land,2009-07-28,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1179,my_land,2009-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1180,my_groundwater,2009-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1181,my_reservoir,2009-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1182,gw1,2009-07-28,248.56545948895268,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1183,gw2,2009-07-28,276.43454051104754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1184,my_sewer,2009-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1185,my_land,2009-07-29,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1186,my_land,2009-07-29,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1187,my_land,2009-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1188,my_groundwater,2009-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1189,my_reservoir,2009-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1190,gw1,2009-07-29,248.658356425693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1191,gw2,2009-07-29,276.3416435743072,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1192,my_sewer,2009-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.81875,0.0,0.0,0.0 -1193,my_land,2009-07-30,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1194,my_land,2009-07-30,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1195,my_land,2009-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1196,my_groundwater,2009-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1197,my_reservoir,2009-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1198,gw1,2009-07-30,248.75063404952172,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1199,gw2,2009-07-30,276.24936595047853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1200,my_sewer,2009-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.819531250000004,0.0,0.0,0.0 -1201,my_land,2009-07-31,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1202,my_land,2009-07-31,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1203,my_land,2009-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1204,my_groundwater,2009-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1205,my_reservoir,2009-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1206,gw1,2009-07-31,248.84229648919157,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1207,gw2,2009-07-31,276.1577035108087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1208,my_sewer,2009-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 -1209,my_land,2009-08-01,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1210,my_land,2009-08-01,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1211,my_land,2009-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1212,my_groundwater,2009-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1213,my_reservoir,2009-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1214,gw1,2009-08-01,248.93334784593029,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1215,gw2,2009-08-01,276.06665215406997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1216,my_sewer,2009-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 -1217,my_land,2009-08-02,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1218,my_land,2009-08-02,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1219,my_land,2009-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1220,my_groundwater,2009-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1221,my_reservoir,2009-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1222,gw1,2009-08-02,249.02379219362408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1223,gw2,2009-08-02,275.9762078063762,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1224,my_sewer,2009-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.830365566037738,0.0,0.0,0.0 -1225,my_land,2009-08-03,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1226,my_land,2009-08-03,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1227,my_land,2009-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1228,my_groundwater,2009-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1229,my_reservoir,2009-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1230,gw1,2009-08-03,249.11363357899992,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1231,gw2,2009-08-03,275.88636642100033,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1232,my_sewer,2009-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1233,my_land,2009-08-04,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1234,my_land,2009-08-04,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1235,my_land,2009-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1236,my_groundwater,2009-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1237,my_reservoir,2009-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1238,gw1,2009-08-04,249.2028760218066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1239,gw2,2009-08-04,275.79712397819367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1240,my_sewer,2009-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.875,0.0,0.0,0.0 -1241,my_land,2009-08-05,0.0,percolation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1242,my_land,2009-08-05,0.0,subsurface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1243,my_land,2009-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.95416667,0.0,0.0,0.0 -1244,my_groundwater,2009-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1245,my_reservoir,2009-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1246,gw1,2009-08-05,249.29152351499454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1247,gw2,2009-08-05,275.7084764850057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1248,my_sewer,2009-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.972481341231344,0.0,0.0,0.0 -1249,my_land,2009-08-06,1.281290100754099,percolation,0.0,0.0,0.00010833259799935578,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1250,my_land,2009-08-06,0.34865036755213585,subsurface_runoff,0.0,0.0,2.9478257959008383e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1251,my_land,2009-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 -1252,my_groundwater,2009-08-06,0.02608340562249416,tank,0.0,0.0,2.205342173558314e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1253,my_reservoir,2009-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1254,gw1,2009-08-06,249.37958002489458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1255,gw2,2009-08-06,275.6204199751057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1256,my_sewer,2009-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1257,my_land,2009-08-07,1.2556642987390172,percolation,0.0,0.0,0.00010616594603936867,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1258,my_land,2009-08-07,0.2789202940417087,subsurface_runoff,0.0,0.0,2.3582606367206706e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1259,my_land,2009-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 -1260,my_groundwater,2009-08-07,0.051579934618482204,tank,0.0,0.0,4.3610641482115656e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1261,my_reservoir,2009-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1262,gw1,2009-08-07,249.46704949139527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1263,gw2,2009-08-07,275.532950508605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1264,my_sewer,2009-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1265,my_land,2009-08-08,1.230551012764237,percolation,0.0,0.0,0.0001040426271185813,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1266,my_land,2009-08-08,0.22313623523336695,subsurface_runoff,0.0,0.0,1.8866085093765366e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1267,my_land,2009-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 -1268,my_groundwater,2009-08-08,0.07650148754177939,tank,0.0,0.0,6.468172111326441e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1269,my_reservoir,2009-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1270,gw1,2009-08-08,249.5539358281193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1271,gw2,2009-08-08,275.44606417188095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1272,my_sewer,2009-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1273,my_land,2009-08-09,1.2059399925089522,percolation,0.0,0.0,0.00010196177457620967,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1274,my_land,2009-08-09,0.17850898818669356,subsurface_runoff,0.0,0.0,1.5092868075012294e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1275,my_land,2009-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.03333333,0.0,0.0,0.0 -1276,my_groundwater,2009-08-09,0.10085972652757147,tank,0.0,0.0,8.527652092063821e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1277,my_reservoir,2009-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1278,gw1,2009-08-09,249.6402429225985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1279,gw2,2009-08-09,275.35975707740175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1280,my_sewer,2009-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1281,my_land,2009-08-10,1.1818211926587732,percolation,0.0,0.0,9.992253908468548e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1282,my_land,2009-08-10,0.14280719054935484,subsurface_runoff,0.0,0.0,1.2074294460009835e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1283,my_land,2009-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 -1284,my_groundwater,2009-08-10,0.12466608006180614,tank,0.0,0.0,1.0540470364629044e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1285,my_reservoir,2009-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1286,gw1,2009-08-10,249.72597463644786,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1287,gw2,2009-08-10,275.2740253635524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1288,my_sewer,2009-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1289,my_land,2009-08-11,1.1581847688055977,percolation,0.0,0.0,9.792408830299177e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1290,my_land,2009-08-11,0.11424575243948387,subsurface_runoff,0.0,0.0,9.659435568007869e-06,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1291,my_land,2009-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 -1292,my_groundwater,2009-08-11,0.14793174765519415,tank,0.0,0.0,1.2507573843456947e-05,0.0,0.0,0.0,0.0,0.0,16.92052472866569,0.0,0.0,0.0 -1293,my_reservoir,2009-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1294,gw1,2009-08-11,249.81113480553822,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1295,gw2,2009-08-11,275.1888651944621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1296,my_sewer,2009-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1297,my_land,2009-08-12,1.2688921636286978,percolation,0.0,0.0,0.00010802809237133491,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1298,my_land,2009-08-12,0.12782410948878764,subsurface_runoff,0.0,0.0,1.1009857524992139e-05,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1299,my_land,2009-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1300,my_groundwater,2009-08-12,0.17339293733135466,tank,0.0,0.0,1.4675448217836194e-05,0.0,0.0,0.0,0.0,0.0,16.925814735320973,0.0,0.0,0.0 -1301,my_reservoir,2009-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1302,gw1,2009-08-12,249.89572724016796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1303,gw2,2009-08-12,275.1042727598323,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1304,my_sewer,2009-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1305,my_land,2009-08-13,1.2435143203561239,percolation,0.0,0.0,0.0001058675305239082,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1306,my_land,2009-08-13,0.10225928759103012,subsurface_runoff,0.0,0.0,8.80788601999371e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1307,my_land,2009-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1308,my_groundwater,2009-08-13,0.19827385365241879,tank,0.0,0.0,1.6793920040099736e-05,0.0,0.0,0.0,0.0,0.0,16.929672992197066,0.0,0.0,0.0 -1309,my_reservoir,2009-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1310,gw1,2009-08-13,249.9797557252335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1311,gw2,2009-08-13,275.02024427476675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1312,my_sewer,2009-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1313,my_land,2009-08-14,1.2186440339490014,percolation,0.0,0.0,0.00010375017991343005,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1314,my_land,2009-08-14,0.0818074300728241,subsurface_runoff,0.0,0.0,7.046308815994968e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1315,my_land,2009-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1316,my_groundwater,2009-08-14,0.2225862797093924,tank,0.0,0.0,1.8863992473951454e-05,0.0,0.0,0.0,0.0,0.0,16.932611068915975,0.0,0.0,0.0 -1317,my_reservoir,2009-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1318,gw1,2009-08-14,250.06322402039862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1319,gw2,2009-08-14,274.93677597960163,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1320,my_sewer,2009-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1321,my_land,2009-08-15,1.1942711532700214,percolation,0.0,0.0,0.00010167517631516145,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1322,my_land,2009-08-15,0.06544594405825928,subsurface_runoff,0.0,0.0,5.637047052795974e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1323,my_land,2009-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1324,my_groundwater,2009-08-15,0.2463417624874015,tank,0.0,0.0,2.0886648582039505e-05,0.0,0.0,0.0,0.0,0.0,16.93492275849501,0.0,0.0,0.0 -1325,my_reservoir,2009-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1326,gw1,2009-08-15,250.14613586026263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1327,gw2,2009-08-15,274.85386413973765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1328,my_sewer,2009-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1329,my_land,2009-08-16,1.170385730204621,percolation,0.0,0.0,9.964167278885822e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1330,my_land,2009-08-16,0.05235675524660742,subsurface_runoff,0.0,0.0,4.5096376422367795e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1331,my_land,2009-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1332,my_groundwater,2009-08-16,0.26955161758891993,tank,0.0,0.0,2.2862851728071876e-05,0.0,0.0,0.0,0.0,0.0,16.936788815659256,0.0,0.0,0.0 -1333,my_reservoir,2009-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1334,gw1,2009-08-16,250.22849495452755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1335,gw2,2009-08-16,274.77150504547274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1336,my_sewer,2009-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1337,my_land,2009-08-17,1.1469780156005285,percolation,0.0,0.0,9.764883933308106e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1338,my_land,2009-08-17,0.04188540419728594,subsurface_runoff,0.0,0.0,3.6077101137894236e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1339,my_land,2009-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1340,my_groundwater,2009-08-17,0.2922269338625298,tank,0.0,0.0,2.479354597088942e-05,0.0,0.0,0.0,0.0,0.0,16.93832655146428,0.0,0.0,0.0 -1341,my_reservoir,2009-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1342,gw1,2009-08-17,250.31030498816403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1343,gw2,2009-08-17,274.68969501183625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1344,my_sewer,2009-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1345,my_land,2009-08-18,1.1240384552885179,percolation,0.0,0.0,9.569586254641945e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1346,my_land,2009-08-18,0.03350832335782875,subsurface_runoff,0.0,0.0,2.886168091031539e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1347,my_land,2009-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.6,0.0,0.0,0.0 -1348,my_groundwater,2009-08-18,0.314378577939104,tank,0.0,0.0,2.6679656450657162e-05,0.0,0.0,0.0,0.0,0.0,16.93961542321208,0.0,0.0,0.0 -1349,my_reservoir,2009-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1350,gw1,2009-08-18,250.39156962157628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1351,gw2,2009-08-18,274.60843037842403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1352,my_sewer,2009-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1353,my_land,2009-08-19,1.1015576861827474,percolation,0.0,0.0,9.378194529549106e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1354,my_land,2009-08-19,0.026806658686263002,subsurface_runoff,0.0,0.0,2.308934472825231e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1355,my_land,2009-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.06785714,0.0,0.0,0.0 -1356,my_groundwater,2009-08-19,0.33601719867726215,tank,0.0,0.0,2.8522089767331588e-05,0.0,0.0,0.0,0.0,0.0,16.940711162966547,0.0,0.0,0.0 -1357,my_reservoir,2009-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1358,gw1,2009-08-19,250.47229249076577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1359,gw2,2009-08-19,274.5277075092345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1360,my_sewer,2009-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.97248134123134,0.0,0.0,0.0 -1361,my_land,2009-08-20,1.0795265324590924,percolation,0.0,0.0,9.190630638958124e-05,0.0,0.0,0.0,0.0,0.0,16.956034353386784,0.0,0.0,0.0 -1362,my_land,2009-08-20,0.021445326949010402,subsurface_runoff,0.0,0.0,1.8471475782601847e-06,0.0,0.0,0.0,0.0,0.0,17.016442853219797,0.0,0.0,0.0 -1363,my_land,2009-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.98928571,0.0,0.0,0.0 -1364,my_groundwater,2009-08-20,0.3571532315199148,tank,0.0,0.0,3.0321734351558305e-05,0.0,0.0,0.0,0.0,0.0,16.94165401764364,0.0,0.0,0.0 -1365,my_reservoir,2009-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1366,gw1,2009-08-20,250.552477207494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1367,gw2,2009-08-20,274.4475227925063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1368,my_sewer,2009-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1369,my_land,2009-08-21,1.2743538277174435,percolation,0.0,0.0,0.0001112964486472949,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1370,my_land,2009-08-21,0.07604546588778875,subsurface_runoff,0.0,0.0,7.25411762328986e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 -1371,my_land,2009-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1372,my_groundwater,2009-08-21,0.3822025513625058,tank,0.0,0.0,3.251160772028505e-05,0.0,0.0,0.0,0.0,0.0,16.95168299570742,0.0,0.0,0.0 -1373,my_reservoir,2009-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1374,gw1,2009-08-21,250.63212735944404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1375,gw2,2009-08-21,274.36787264055624,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1376,my_sewer,2009-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1377,my_land,2009-08-22,1.2488667511630946,percolation,0.0,0.0,0.000109070519674349,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1378,my_land,2009-08-22,0.060836372710231,subsurface_runoff,0.0,0.0,5.803294098631889e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 -1379,my_land,2009-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1380,my_groundwater,2009-08-22,0.4066704038470625,tank,0.0,0.0,3.465069285149787e-05,0.0,0.0,0.0,0.0,0.0,16.960293085455767,0.0,0.0,0.0 -1381,my_reservoir,2009-08-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1382,gw1,2009-08-22,250.71124651038107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1383,gw2,2009-08-22,274.2887534896192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1384,my_sewer,2009-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1385,my_land,2009-08-23,1.2238894161398328,percolation,0.0,0.0,0.00010688910928086203,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1386,my_land,2009-08-23,0.0486690981681848,subsurface_runoff,0.0,0.0,4.642635278905511e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 -1387,my_land,2009-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1388,my_groundwater,2009-08-23,0.43056861952314857,tank,0.0,0.0,3.6740022986872385e-05,0.0,0.0,0.0,0.0,0.0,16.967764414536127,0.0,0.0,0.0 -1389,my_reservoir,2009-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1390,gw1,2009-08-23,250.78983820031186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1391,gw2,2009-08-23,274.21016179968836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1392,my_sewer,2009-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.91071429,0.0,0.0,0.0 -1393,my_land,2009-08-24,1.1994116278170361,percolation,0.0,0.0,0.00010475132709524478,0.0,0.0,0.0,0.0,0.0,17.08940943437327,0.0,0.0,0.0 -1394,my_land,2009-08-24,0.03893527853454784,subsurface_runoff,0.0,0.0,3.714108223124409e-06,0.0,0.0,0.0,0.0,0.0,17.577845522793524,0.0,0.0,0.0 -1395,my_land,2009-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.675,0.0,0.0,0.0 -1396,my_groundwater,2009-08-24,0.45390879182633037,tank,0.0,0.0,3.87806106595584e-05,0.0,0.0,0.0,0.0,0.0,16.9743079252523,0.0,0.0,0.0 -1397,my_reservoir,2009-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1398,gw1,2009-08-24,250.86790594564312,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1399,gw2,2009-08-24,274.1320940543571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1400,my_sewer,2009-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 -1401,my_land,2009-08-25,1.2494945257274752,percolation,0.0,0.0,0.00011018279410845504,0.0,0.0,0.0,0.0,0.0,17.11098423400969,0.0,0.0,0.0 -1402,my_land,2009-08-25,0.051303632478462716,subsurface_runoff,0.0,0.0,5.019312035673719e-06,0.0,0.0,0.0,0.0,0.0,17.528936126118616,0.0,0.0,0.0 -1403,my_land,2009-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43611111,0.0,0.0,0.0 -1404,my_groundwater,2009-08-25,0.4782101584062167,tank,0.0,0.0,4.092666601297448e-05,0.0,0.0,0.0,0.0,0.0,16.98157777819506,0.0,0.0,0.0 -1405,my_reservoir,2009-08-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1406,gw1,2009-08-25,250.94545323933883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1407,gw2,2009-08-25,274.05454676066137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1408,my_sewer,2009-08-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 -1409,my_land,2009-08-26,1.3199176217566646,percolation,0.0,0.0,0.0001176274471703652,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 -1410,my_land,2009-08-26,0.06700562340963791,subsurface_runoff,0.0,0.0,6.640839817404078e-06,0.0,0.0,0.0,0.0,0.0,17.428311098943603,0.0,0.0,0.0 -1411,my_land,2009-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 -1412,my_groundwater,2009-08-26,0.5038843845959619,tank,0.0,0.0,4.321890809391019e-05,0.0,0.0,0.0,0.0,0.0,16.989088436127652,0.0,0.0,0.0 -1413,my_reservoir,2009-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1414,gw1,2009-08-26,251.02248355107656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1415,gw2,2009-08-26,273.9775164489236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1416,my_sewer,2009-08-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19722222,0.0,0.0,0.0 -1417,my_land,2009-08-27,1.2935192693215314,percolation,0.0,0.0,0.0001152748982269579,0.0,0.0,0.0,0.0,0.0,17.122424009623554,0.0,0.0,0.0 -1418,my_land,2009-08-27,0.05360449872771032,subsurface_runoff,0.0,0.0,5.312671853923262e-06,0.0,0.0,0.0,0.0,0.0,17.428311098943603,0.0,0.0,0.0 -1419,my_land,2009-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.95833333,0.0,0.0,0.0 -1420,my_groundwater,2009-08-27,0.5289570301885175,tank,0.0,0.0,4.5457528394724204e-05,0.0,0.0,0.0,0.0,0.0,16.99572610168884,0.0,0.0,0.0 -1421,my_reservoir,2009-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1422,gw1,2009-08-27,251.0990003274027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1423,gw2,2009-08-27,273.90099967259744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1424,my_sewer,2009-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1425,my_land,2009-08-28,1.3378763066426842,percolation,0.0,0.0,0.00012014168968794171,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1426,my_land,2009-08-28,0.061993101759741966,subsurface_runoff,0.0,0.0,6.201780864233299e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 -1427,my_land,2009-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1428,my_groundwater,2009-08-28,0.554869976712558,tank,0.0,0.0,4.778962611381335e-05,0.0,0.0,0.0,0.0,0.0,17.00126187340013,0.0,0.0,0.0 -1429,my_reservoir,2009-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1430,gw1,2009-08-28,251.17500699188668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1431,gw2,2009-08-28,273.82499300811344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1432,my_sewer,2009-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1433,my_land,2009-08-29,1.3111187805098306,percolation,0.0,0.0,0.00011773885589418288,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1434,my_land,2009-08-29,0.04959448140779357,subsurface_runoff,0.0,0.0,4.961424691386639e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 -1435,my_land,2009-08-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1436,my_groundwater,2009-08-29,0.5801734340882981,tank,0.0,0.0,5.006697875780326e-05,0.0,0.0,0.0,0.0,0.0,17.006195652567865,0.0,0.0,0.0 -1437,my_reservoir,2009-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1438,gw1,2009-08-29,251.2505069452741,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1439,gw2,2009-08-29,273.74949305472603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1440,my_sewer,2009-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1441,my_land,2009-08-30,1.2848964048996339,percolation,0.0,0.0,0.00011538407877629922,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1442,my_land,2009-08-30,0.039675585126234855,subsurface_runoff,0.0,0.0,3.969139753109311e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 -1443,my_land,2009-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.24166667,0.0,0.0,0.0 -1444,my_groundwater,2009-08-30,0.6048798201742485,tank,0.0,0.0,5.2290701485997696e-05,0.0,0.0,0.0,0.0,0.0,17.010619914362486,0.0,0.0,0.0 -1445,my_reservoir,2009-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1446,gw1,2009-08-30,251.32550356563894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1447,gw2,2009-08-30,273.6744964343612,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1448,my_sewer,2009-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.71944444,0.0,0.0,0.0 -1449,my_land,2009-08-31,1.259198476801641,percolation,0.0,0.0,0.00011307639720077323,0.0,0.0,0.0,0.0,0.0,17.108507275784227,0.0,0.0,0.0 -1450,my_land,2009-08-31,0.031740468100987886,subsurface_runoff,0.0,0.0,3.1753118024874486e-06,0.0,0.0,0.0,0.0,0.0,17.252296209537327,0.0,0.0,0.0 -1451,my_land,2009-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.00277778,0.0,0.0,0.0 -1452,my_groundwater,2009-08-31,0.6290013039015605,tank,0.0,0.0,5.446188710386987e-05,0.0,0.0,0.0,0.0,0.0,17.014609116934906,0.0,0.0,0.0 -1453,my_reservoir,2009-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1454,gw1,2009-08-31,251.4000002085347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1455,gw2,2009-08-31,273.59999979146545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1456,my_sewer,2009-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 -1457,my_land,2009-09-01,1.277122099120253,percolation,0.0,0.0,0.00011523295761573871,0.0,0.0,0.0,0.0,0.0,17.073117204826293,0.0,0.0,0.0 -1458,my_land,2009-09-01,0.0371223314480406,subsurface_runoff,0.0,0.0,3.7424503559983776e-06,0.0,0.0,0.0,0.0,0.0,16.875561746633984,0.0,0.0,0.0 -1459,my_land,2009-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.76388889,0.0,0.0,0.0 -1460,my_groundwater,2009-09-01,0.6534273576596118,tank,0.0,0.0,5.667154616614487e-05,0.0,0.0,0.0,0.0,0.0,17.016937035778856,0.0,0.0,0.0 -1461,my_reservoir,2009-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1462,gw1,2009-09-01,251.47400020714446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1463,gw2,2009-09-01,273.52599979285566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1464,my_sewer,2009-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1465,my_land,2009-09-02,1.6873741111987015,percolation,0.0,0.0,0.00015583921329874844,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1466,my_land,2009-09-02,0.14828139007295044,subsurface_runoff,0.0,0.0,1.467039969577135e-05,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1467,my_land,2009-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.525,0.0,0.0,0.0 -1468,my_groundwater,2009-09-02,0.6861439051005791,tank,0.0,0.0,5.9702308428596884e-05,0.0,0.0,0.0,0.0,0.0,17.00408828559599,0.0,0.0,0.0 -1469,my_reservoir,2009-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1470,gw1,2009-09-02,251.54750687243015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1471,gw2,2009-09-02,273.45249312756994,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1472,my_sewer,2009-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1473,my_land,2009-09-03,1.6536266289747275,percolation,0.0,0.0,0.00015272242903277347,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1474,my_land,2009-09-03,0.11862511205836035,subsurface_runoff,0.0,0.0,1.173631975661708e-05,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1475,my_land,2009-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 -1476,my_groundwater,2009-09-03,0.7180916588562418,tank,0.0,0.0,6.266204496283542e-05,0.0,0.0,0.0,0.0,0.0,16.992659047062975,0.0,0.0,0.0 -1477,my_reservoir,2009-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1478,gw1,2009-09-03,251.62052349328061,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1479,gw2,2009-09-03,273.37947650671947,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1480,my_sewer,2009-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1481,my_land,2009-09-04,1.620554096395233,percolation,0.0,0.0,0.000149667980452118,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1482,my_land,2009-09-04,0.09490008964668828,subsurface_runoff,0.0,0.0,9.389055805293664e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1483,my_land,2009-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 -1484,my_groundwater,2009-09-04,0.749286280957147,tank,0.0,0.0,6.555220230963215e-05,0.0,0.0,0.0,0.0,0.0,16.98242791464239,0.0,0.0,0.0 -1485,my_reservoir,2009-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1486,gw1,2009-09-04,251.69305333665875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1487,gw2,2009-09-04,273.30694666334136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1488,my_sewer,2009-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1489,my_land,2009-09-05,1.5881430144673283,percolation,0.0,0.0,0.00014667462084307564,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1490,my_land,2009-09-05,0.07592007171735063,subsurface_runoff,0.0,0.0,7.511244644234931e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1491,my_land,2009-09-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 -1492,my_groundwater,2009-09-05,0.779743119477839,tank,0.0,0.0,6.837419801387783e-05,0.0,0.0,0.0,0.0,0.0,16.97321724901053,0.0,0.0,0.0 -1493,my_reservoir,2009-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1494,gw1,2009-09-05,251.7650996477477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1495,gw2,2009-09-05,273.2349003522524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1496,my_sewer,2009-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1497,my_land,2009-09-06,1.5563801541779818,percolation,0.0,0.0,0.00014374112842621413,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1498,my_land,2009-09-06,0.060736057373880506,subsurface_runoff,0.0,0.0,6.008995715387945e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1499,my_land,2009-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.425,0.0,0.0,0.0 -1500,my_groundwater,2009-09-06,0.8094772148177677,tank,0.0,0.0,7.112942120466249e-05,0.0,0.0,0.0,0.0,0.0,16.96488287186836,0.0,0.0,0.0 -1501,my_reservoir,2009-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1502,gw1,2009-09-06,251.83666565009605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1503,gw2,2009-09-06,273.16333434990406,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1504,my_sewer,2009-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1505,my_land,2009-09-07,1.5252525510944221,percolation,0.0,0.0,0.00014086630585768983,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1506,my_land,2009-09-07,0.04858884589910441,subsurface_runoff,0.0,0.0,4.807196572310356e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1507,my_land,2009-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.025,0.0,0.0,0.0 -1508,my_groundwater,2009-09-07,0.8385033058565741,tank,0.0,0.0,7.38192331637538e-05,0.0,0.0,0.0,0.0,0.0,16.95730654155062,0.0,0.0,0.0 -1509,my_reservoir,2009-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1510,gw1,2009-09-07,251.9077545457621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1511,gw2,2009-09-07,273.092245454238,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1512,my_sewer,2009-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1513,my_land,2009-09-08,1.4947475000725337,percolation,0.0,0.0,0.00013804897974053603,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1514,my_land,2009-09-08,0.038871076719283526,subsurface_runoff,0.0,0.0,3.845757257848285e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1515,my_land,2009-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1516,my_groundwater,2009-09-08,0.8668358359862665,tank,0.0,0.0,7.644496788270533e-05,0.0,0.0,0.0,0.0,0.0,16.95039037166423,0.0,0.0,0.0 -1517,my_reservoir,2009-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1518,gw1,2009-09-08,251.97836951545702,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1519,gw2,2009-09-08,273.0216304845431,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1520,my_sewer,2009-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1521,my_land,2009-09-09,1.464852550071083,percolation,0.0,0.0,0.00013528800014572532,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1522,my_land,2009-09-09,0.03109686137542682,subsurface_runoff,0.0,0.0,3.0766058062786277e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1523,my_land,2009-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1524,my_groundwater,2009-09-09,0.8944889590227478,tank,0.0,0.0,7.900793260882226e-05,0.0,0.0,0.0,0.0,0.0,16.944052631535158,0.0,0.0,0.0 -1525,my_reservoir,2009-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1526,gw1,2009-09-09,252.0485137186873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1527,gw2,2009-09-09,272.9514862813128,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1528,my_sewer,2009-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1529,my_land,2009-09-10,1.4355554990696613,percolation,0.0,0.0,0.00013258224014281081,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1530,my_land,2009-09-10,0.024877489100341457,subsurface_runoff,0.0,0.0,2.4612846450229022e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1531,my_land,2009-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1532,my_groundwater,2009-09-10,0.921476544999109,tank,0.0,0.0,8.150940838020743e-05,0.0,0.0,0.0,0.0,0.0,16.938224545160864,0.0,0.0,0.0 -1533,my_reservoir,2009-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1534,gw1,2009-09-10,252.11819029389605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1535,gw2,2009-09-10,272.88180970610404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1536,my_sewer,2009-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1537,my_land,2009-09-11,1.406844389088268,percolation,0.0,0.0,0.0001299305953399546,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1538,my_land,2009-09-11,0.019901991280273167,subsurface_runoff,0.0,0.0,1.9690277160183216e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1539,my_land,2009-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1540,my_groundwater,2009-09-11,0.947812185843051,tank,0.0,0.0,8.3950650550106e-05,0.0,0.0,0.0,0.0,0.0,16.93284782224831,0.0,0.0,0.0 -1541,my_reservoir,2009-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1542,gw1,2009-09-11,252.1874023586034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1543,gw2,2009-09-11,272.8125976413967,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1544,my_sewer,2009-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1545,my_land,2009-09-12,1.3787075013065027,percolation,0.0,0.0,0.00012733198343315553,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1546,my_land,2009-09-12,0.015921593024218535,subsurface_runoff,0.0,0.0,1.5752221728146574e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1547,my_land,2009-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1548,my_groundwater,2009-09-12,0.9735092009407543,tank,0.0,0.0,8.633288930076283e-05,0.0,0.0,0.0,0.0,0.0,16.92787273317549,0.0,0.0,0.0 -1549,my_reservoir,2009-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1550,gw1,2009-09-12,252.25615300954604,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1551,gw2,2009-09-12,272.743846990454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1552,my_sewer,2009-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1553,my_land,2009-09-13,1.3511333512803727,percolation,0.0,0.0,0.0001247853437644924,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1554,my_land,2009-09-13,0.012737274419374828,subsurface_runoff,0.0,0.0,1.2601777382517259e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1555,my_land,2009-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1556,my_groundwater,2009-09-13,0.9985806425894672,tank,0.0,0.0,8.865733014700238e-05,0.0,0.0,0.0,0.0,0.0,16.92325659302749,0.0,0.0,0.0 -1557,my_reservoir,2009-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1558,gw1,2009-09-13,252.32444532281573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1559,gw2,2009-09-13,272.6755546771843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1560,my_sewer,2009-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1561,my_land,2009-09-14,1.3241106842547652,percolation,0.0,0.0,0.00012228963688920257,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1562,my_land,2009-09-14,0.010189819535499862,subsurface_runoff,0.0,0.0,1.0081421906013808e-06,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1563,my_land,2009-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1564,my_groundwater,2009-09-14,1.023039301341037,tank,0.0,0.0,9.09251544297365e-05,0.0,0.0,0.0,0.0,0.0,16.9189625567588,0.0,0.0,0.0 -1565,my_reservoir,2009-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1566,gw1,2009-09-14,252.39228235399696,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1567,gw2,2009-09-14,272.6077176460031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1568,my_sewer,2009-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1569,my_land,2009-09-15,1.29762847056967,percolation,0.0,0.0,0.00011984384415141852,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1570,my_land,2009-09-15,0.00815185562839989,subsurface_runoff,0.0,0.0,8.065137524811046e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1571,my_land,2009-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1572,my_groundwater,2009-09-15,1.046897711238567,tank,0.0,0.0,9.313751979960174e-05,0.0,0.0,0.0,0.0,0.0,16.914958653450107,0.0,0.0,0.0 -1573,my_reservoir,2009-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1574,gw1,2009-09-15,252.45966713830364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1575,gw2,2009-09-15,272.5403328616964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1576,my_sewer,2009-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1577,my_land,2009-09-16,1.2716759011582766,percolation,0.0,0.0,0.00011744696726839015,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1578,my_land,2009-09-16,0.006521484502719913,subsurface_runoff,0.0,0.0,6.452110019848837e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1579,my_land,2009-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1580,my_groundwater,2009-09-16,1.0701681549483353,tank,0.0,0.0,9.529556069092354e-05,0.0,0.0,0.0,0.0,0.0,16.91121700607666,0.0,0.0,0.0 -1581,my_reservoir,2009-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1582,gw1,2009-09-16,252.52660269071495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1583,gw2,2009-09-16,272.4733973092851,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1584,my_sewer,2009-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1585,my_land,2009-09-17,1.246242383135111,percolation,0.0,0.0,0.00011509802792302235,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1586,my_land,2009-09-17,0.0052171876021759305,subsurface_runoff,0.0,0.0,5.16168801587907e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1587,my_land,2009-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1588,my_groundwater,2009-09-17,1.0928626687890721,tank,0.0,0.0,9.740038878620062e-05,0.0,0.0,0.0,0.0,0.0,16.907713196503536,0.0,0.0,0.0 -1589,my_reservoir,2009-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1590,gw1,2009-09-17,252.5930920061102,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1591,gw2,2009-09-17,272.40690799388983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1592,my_sewer,2009-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1593,my_land,2009-09-18,1.2213175354724088,percolation,0.0,0.0,0.0001127960673645619,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1594,my_land,2009-09-18,0.004173750081740745,subsurface_runoff,0.0,0.0,4.129350412703256e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1595,my_land,2009-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1596,my_groundwater,2009-09-18,1.1149930476606449,tank,0.0,0.0,9.945309347129942e-05,0.0,0.0,0.0,0.0,0.0,16.904425745119838,0.0,0.0,0.0 -1597,my_reservoir,2009-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1598,gw1,2009-09-18,252.6591380594028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1599,gw2,2009-09-18,272.3408619405972,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1600,my_sewer,2009-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1601,my_land,2009-09-19,1.1968911847629606,percolation,0.0,0.0,0.00011054014601727066,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1602,my_land,2009-09-19,0.003339000065392596,subsurface_runoff,0.0,0.0,3.303480330162605e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1603,my_land,2009-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1604,my_groundwater,2009-09-19,1.1365708498741678,tank,0.0,0.0,0.00010145474228154418,0.0,0.0,0.0,0.0,0.0,16.901335681671835,0.0,0.0,0.0 -1605,my_reservoir,2009-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1606,gw1,2009-09-19,252.72474380567346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1607,gw2,2009-09-19,272.2752561943266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1608,my_sewer,2009-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1609,my_land,2009-09-20,1.1729533610677014,percolation,0.0,0.0,0.00010832934309692525,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1610,my_land,2009-09-20,0.0026712000523140766,subsurface_runoff,0.0,0.0,2.642784264130084e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1611,my_land,2009-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1612,my_groundwater,2009-09-20,1.1576074018855034,tank,0.0,0.0,0.00010340638133888487,0.0,0.0,0.0,0.0,0.0,16.898426189176842,0.0,0.0,0.0 -1613,my_reservoir,2009-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1614,gw1,2009-09-20,252.7899121803023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1615,gw2,2009-09-20,272.2100878196977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1616,my_sewer,2009-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1617,my_land,2009-09-21,1.1494942938463475,percolation,0.0,0.0,0.00010616275623498675,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1618,my_land,2009-09-21,0.0021369600418512614,subsurface_runoff,0.0,0.0,2.1142274113040672e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1619,my_land,2009-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1620,my_groundwater,2009-09-21,1.17811380293409,tank,0.0,0.0,0.00010530903578032131,0.0,0.0,0.0,0.0,0.0,16.8956823067999,0.0,0.0,0.0 -1621,my_reservoir,2009-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1622,gw1,2009-09-21,252.8546460991003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1623,gw2,2009-09-21,272.14535390089975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1624,my_sewer,2009-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1625,my_land,2009-09-22,1.1265044079694206,percolation,0.0,0.0,0.00010403950111028701,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1626,my_land,2009-09-22,0.001709568033481009,subsurface_runoff,0.0,0.0,1.6913819290432538e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1627,my_land,2009-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1628,my_groundwater,2009-09-22,1.1981009295889893,tank,0.0,0.0,0.0001071637101777585,0.0,0.0,0.0,0.0,0.0,16.893090680608534,0.0,0.0,0.0 -1629,my_reservoir,2009-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1630,gw1,2009-09-22,252.91894845843964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1631,gw2,2009-09-22,272.08105154156044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1632,my_sewer,2009-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1633,my_land,2009-09-23,1.1039743198100322,percolation,0.0,0.0,0.00010195871108808127,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1634,my_land,2009-09-23,0.0013676544267848072,subsurface_runoff,0.0,0.0,1.353105543234603e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1635,my_land,2009-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1636,my_groundwater,2009-09-23,1.2175794402040068,tank,0.0,0.0,0.00010897138894946432,0.0,0.0,0.0,0.0,0.0,16.89063935344019,0.0,0.0,0.0 -1637,my_reservoir,2009-09-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1638,gw1,2009-09-23,252.98282213538337,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1639,gw2,2009-09-23,272.0171778646167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1640,my_sewer,2009-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1641,my_land,2009-09-24,1.0818948334138316,percolation,0.0,0.0,9.991953686631965e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1642,my_land,2009-09-24,0.0010941235414278457,subsurface_runoff,0.0,0.0,1.0824844345876823e-07,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1643,my_land,2009-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1644,my_groundwater,2009-09-24,1.2365597792837069,tank,0.0,0.0,0.00011073303676329788,0.0,0.0,0.0,0.0,0.0,16.88831758690411,0.0,0.0,0.0 -1645,my_reservoir,2009-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1646,gw1,2009-09-24,253.04626998781416,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1647,gw2,2009-09-24,271.95373001218593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1648,my_sewer,2009-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1649,my_land,2009-09-25,1.060256936745555,percolation,0.0,0.0,9.792114612899325e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1650,my_land,2009-09-25,0.0008752988331422766,subsurface_runoff,0.0,0.0,8.659875476701459e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1651,my_land,2009-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1652,my_groundwater,2009-09-25,1.2550521817621036,tank,0.0,0.0,0.0001124495989318727,0.0,0.0,0.0,0.0,0.0,16.886115709927022,0.0,0.0,0.0 -1653,my_reservoir,2009-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1654,gw1,2009-09-25,253.10929485456205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1655,gw2,2009-09-25,271.890705145438,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1656,my_sewer,2009-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1657,my_land,2009-09-26,1.039051798010644,percolation,0.0,0.0,9.596272320641339e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1658,my_land,2009-09-26,0.0007002390665138212,subsurface_runoff,0.0,0.0,6.927900381361168e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1659,my_land,2009-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1660,my_groundwater,2009-09-26,1.2730666771957722,tank,0.0,0.0,0.00011412200179981643,0.0,0.0,0.0,0.0,0.0,16.884024989336616,0.0,0.0,0.0 -1661,my_reservoir,2009-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1662,gw1,2009-09-26,253.17189955553164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1663,gw2,2009-09-26,271.8281004444684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1664,my_sewer,2009-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1665,my_land,2009-09-27,1.018270762050431,percolation,0.0,0.0,9.404346874228512e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1666,my_land,2009-09-27,0.000560191253211057,subsurface_runoff,0.0,0.0,5.5423203050889344e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1667,my_land,2009-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1668,my_groundwater,2009-09-27,1.290613093873095,tank,0.0,0.0,0.00011575115312328484,0.0,0.0,0.0,0.0,0.0,16.882037518830213,0.0,0.0,0.0 -1669,my_reservoir,2009-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1670,gw1,2009-09-27,253.2340868918281,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1671,gw2,2009-09-27,271.76591310817196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1672,my_sewer,2009-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1673,my_land,2009-09-28,0.9979053468094223,percolation,0.0,0.0,9.216259936743942e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1674,my_land,2009-09-28,0.0004481530025688456,subsurface_runoff,0.0,0.0,4.433856244071148e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1675,my_land,2009-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1676,my_groundwater,2009-09-28,1.3077010628413184,tank,0.0,0.0,0.00011733794244188521,0.0,0.0,0.0,0.0,0.0,16.880146123352027,0.0,0.0,0.0 -1677,my_reservoir,2009-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1678,gw1,2009-09-28,253.2958596458826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1679,gw2,2009-09-28,271.7041403541175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1680,my_sewer,2009-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1681,my_land,2009-09-29,0.9779472398732338,percolation,0.0,0.0,9.031934738009064e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1682,my_land,2009-09-29,0.00035852240205507647,subsurface_runoff,0.0,0.0,3.5470849952569185e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1683,my_land,2009-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1684,my_groundwater,2009-09-29,1.324340021853063,tank,0.0,0.0,0.00011888324144316091,0.0,0.0,0.0,0.0,0.0,16.878344276440632,0.0,0.0,0.0 -1685,my_reservoir,2009-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1686,gw1,2009-09-29,253.3572205815767,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1687,gw2,2009-09-29,271.6427794184234,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1688,my_sewer,2009-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1689,my_land,2009-09-30,0.9583882950757692,percolation,0.0,0.0,8.851296043248882e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1690,my_land,2009-09-30,0.0002868179216440612,subsurface_runoff,0.0,0.0,2.8376679962055346e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1691,my_land,2009-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1692,my_groundwater,2009-09-30,1.3405392192339014,tank,0.0,0.0,0.00012038790431978581,0.0,0.0,0.0,0.0,0.0,16.876626028539576,0.0,0.0,0.0 -1693,my_reservoir,2009-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1694,gw1,2009-09-30,253.4181724443662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1695,gw2,2009-09-30,271.58182755563394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1696,my_sewer,2009-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1697,my_land,2009-10-01,0.9392205291742538,percolation,0.0,0.0,8.674270122383905e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1698,my_land,2009-10-01,0.00022945433731524895,subsurface_runoff,0.0,0.0,2.2701343969644278e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1699,my_land,2009-10-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1700,my_groundwater,2009-10-01,1.3563077176725784,tank,0.0,0.0,0.0001218527681196145,0.0,0.0,0.0,0.0,0.0,16.87498594461123,0.0,0.0,0.0 -1701,my_reservoir,2009-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1702,gw1,2009-10-01,253.47871796140376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1703,gw2,2009-10-01,271.5212820385964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1704,my_sewer,2009-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1705,my_land,2009-10-02,0.9204361185907687,percolation,0.0,0.0,8.500784719936227e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1706,my_land,2009-10-02,0.00018356346985219917,subsurface_runoff,0.0,0.0,1.8161075175715424e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1707,my_land,2009-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1708,my_groundwater,2009-10-02,1.3716543979354234,tank,0.0,0.0,0.00012327865308873104,0.0,0.0,0.0,0.0,0.0,16.873419049675295,0.0,0.0,0.0 -1709,my_reservoir,2009-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1710,gw1,2009-10-02,253.53885984166106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1711,gw2,2009-10-02,271.46114015833905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1712,my_sewer,2009-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1713,my_land,2009-10-03,0.9020273962189533,percolation,0.0,0.0,8.330769025537503e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1714,my_land,2009-10-03,0.00014685077588175933,subsurface_runoff,0.0,0.0,1.452886014057234e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1715,my_land,2009-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1716,my_groundwater,2009-10-03,1.3865879625064708,tank,0.0,0.0,0.00012466636300763648,0.0,0.0,0.0,0.0,0.0,16.87192078112182,0.0,0.0,0.0 -1717,my_reservoir,2009-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1718,gw1,2009-10-03,253.59860077604998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1719,gw2,2009-10-03,271.40139922395014,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1720,my_sewer,2009-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.558689458846157,0.0,0.0,0.0 -1721,my_land,2009-10-04,0.8839868482945743,percolation,0.0,0.0,8.164153645026752e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1722,my_land,2009-10-04,0.00011748062070540748,subsurface_runoff,0.0,0.0,1.1623088112457872e-08,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1723,my_land,2009-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1724,my_groundwater,2009-10-04,1.4011169391547726,tank,0.0,0.0,0.00012601668552071214,0.0,0.0,0.0,0.0,0.0,16.870486946835605,0.0,0.0,0.0 -1725,my_reservoir,2009-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1726,gw1,2009-10-04,253.65794343754297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1727,gw2,2009-10-04,271.3420565624571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1728,my_sewer,2009-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.575,0.0,0.0,0.0 -1729,my_land,2009-10-05,0.8663071113286828,percolation,0.0,0.0,8.000870572126217e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1730,my_land,2009-10-05,9.398449656432598e-05,subsurface_runoff,0.0,0.0,9.298470489966297e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1731,my_land,2009-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1732,my_groundwater,2009-10-05,1.4152496844303624,tank,0.0,0.0,0.0001273303924590932,0.0,0.0,0.0,0.0,0.0,16.86911368832221,0.0,0.0,0.0 -1733,my_reservoir,2009-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1734,gw1,2009-10-05,253.7168904812927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1735,gw2,2009-10-05,271.2831095187074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1736,my_sewer,2009-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.478125,0.0,0.0,0.0 -1737,my_land,2009-10-06,0.8489809691021091,percolation,0.0,0.0,7.840853160683693e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1738,my_land,2009-10-06,7.518759725146078e-05,subsurface_runoff,0.0,0.0,7.438776391973037e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1739,my_land,2009-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1740,my_groundwater,2009-10-06,1.4289943870902937,tank,0.0,0.0,0.00012860824015708467,0.0,0.0,0.0,0.0,0.0,16.867797448152178,0.0,0.0,0.0 -1741,my_reservoir,2009-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1742,gw1,2009-10-06,253.77544454475074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1743,gw2,2009-10-06,271.22455545524934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1744,my_sewer,2009-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 -1745,my_land,2009-10-07,0.8320013497200669,percolation,0.0,0.0,7.68403609747002e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1746,my_land,2009-10-07,6.015007780116862e-05,subsurface_runoff,0.0,0.0,5.9510211135784294e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1747,my_land,2009-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1748,my_groundwater,2009-10-07,1.442359071456155,tank,0.0,0.0,0.00012985096976224835,0.0,0.0,0.0,0.0,0.0,16.866534941144867,0.0,0.0,0.0 -1749,my_reservoir,2009-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1750,gw1,2009-10-07,253.83360824778575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1751,gw2,2009-10-07,271.16639175221434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1752,my_sewer,2009-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 -1753,my_land,2009-10-08,0.8153613227256655,percolation,0.0,0.0,7.53035537552062e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1754,my_land,2009-10-08,4.81200622409349e-05,subsurface_runoff,0.0,0.0,4.760816890862744e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1755,my_land,2009-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1756,my_groundwater,2009-10-08,1.4553516007044298,tank,0.0,0.0,0.000131059307539288,0.0,0.0,0.0,0.0,0.0,16.865323128800053,0.0,0.0,0.0 -1757,my_reservoir,2009-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1758,gw1,2009-10-08,253.8913841928005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1759,gw2,2009-10-08,271.10861580719956,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1760,my_sewer,2009-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 -1761,my_land,2009-10-09,0.7990540962711522,percolation,0.0,0.0,7.379748268010208e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1762,my_land,2009-10-09,3.849604979274792e-05,subsurface_runoff,0.0,0.0,3.808653512690195e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1763,my_land,2009-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1764,my_groundwater,2009-10-09,1.4679796800910456,tank,0.0,0.0,0.00013223396516785614,0.0,0.0,0.0,0.0,0.0,16.864159196558244,0.0,0.0,0.0 -1765,my_reservoir,2009-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1766,gw1,2009-10-09,253.9487749648485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1767,gw2,2009-10-09,271.05122503515156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1768,my_sewer,2009-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.381250000000001,0.0,0.0,0.0 -1769,my_land,2009-10-10,0.7830730143457292,percolation,0.0,0.0,7.232153302650003e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1770,my_land,2009-10-10,3.0796839834198334e-05,subsurface_runoff,0.0,0.0,3.0469228101521557e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1771,my_land,2009-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1772,my_groundwater,2009-10-10,1.4802508601114275,tank,0.0,0.0,0.00013337564003440452,0.0,0.0,0.0,0.0,0.0,16.863040533531098,0.0,0.0,0.0 -1773,my_reservoir,2009-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1774,gw1,2009-10-10,254.0057831317495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1775,gw2,2009-10-10,270.99421686825053,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1776,my_sewer,2009-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1777,my_land,2009-10-11,0.7674115540588146,percolation,0.0,0.0,7.087510236597003e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1778,my_land,2009-10-11,2.4637471867358668e-05,subsurface_runoff,0.0,0.0,2.4375382481217244e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1779,my_land,2009-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1780,my_groundwater,2009-10-11,1.4921725395973462,tank,0.0,0.0,0.00013448501551819718,0.0,0.0,0.0,0.0,0.0,16.861964714394563,0.0,0.0,0.0 -1781,my_reservoir,2009-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1782,gw1,2009-10-11,254.0624112442045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1783,gw2,2009-10-11,270.9375887557955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1784,my_sewer,2009-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1785,my_land,2009-10-12,0.7520633229776382,percolation,0.0,0.0,6.945760031865063e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1786,my_land,2009-10-12,1.9709977493886934e-05,subsurface_runoff,0.0,0.0,1.9500305984973796e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1787,my_land,2009-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1788,my_groundwater,2009-10-12,1.5037519687518262,tank,0.0,0.0,0.0001355627612716028,0.0,0.0,0.0,0.0,0.0,16.86092948318018,0.0,0.0,0.0 -1789,my_reservoir,2009-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1790,gw1,2009-10-12,254.1186618359098,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1791,gw2,2009-10-12,270.8813381640902,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1792,my_sewer,2009-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1793,my_land,2009-10-13,0.7370220565180855,percolation,0.0,0.0,6.806844831227763e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1794,my_land,2009-10-13,1.5767981995109546e-05,subsurface_runoff,0.0,0.0,1.5600244787979038e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1795,my_land,2009-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1796,my_groundwater,2009-10-13,1.5149962521233504,tank,0.0,0.0,0.00013660953349478087,0.0,0.0,0.0,0.0,0.0,16.85993273873641,0.0,0.0,0.0 -1797,my_reservoir,2009-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1798,gw1,2009-10-13,254.1745374236704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1799,gw2,2009-10-13,270.8254625763296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1800,my_sewer,2009-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1801,my_land,2009-10-14,0.7222816153877238,percolation,0.0,0.0,6.670707934603207e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1802,my_land,2009-10-14,1.2614385596087637e-05,subsurface_runoff,0.0,0.0,1.248019583038323e-09,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1803,my_land,2009-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1804,my_groundwater,2009-10-14,1.525912351520578,tank,0.0,0.0,0.00013762597520487386,0.0,0.0,0.0,0.0,0.0,16.85897252166262,0.0,0.0,0.0 -1805,my_reservoir,2009-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1806,gw1,2009-10-14,254.2300405075126,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1807,gw2,2009-10-14,270.7699594924874,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1808,my_sewer,2009-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1809,my_land,2009-10-15,0.7078359830799693,percolation,0.0,0.0,6.537293775911144e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1810,my_land,2009-10-15,1.009150847687011e-05,subsurface_runoff,0.0,0.0,9.984156664306585e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1811,my_land,2009-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1812,my_groundwater,2009-10-15,1.5365070888687615,tank,0.0,0.0,0.00013861271649981503,0.0,0.0,0.0,0.0,0.0,16.858047002544577,0.0,0.0,0.0 -1813,my_reservoir,2009-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1814,gw1,2009-10-15,254.28517357079585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1815,gw2,2009-10-15,270.71482642920415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1816,my_sewer,2009-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1817,my_land,2009-10-16,0.6936792634183699,percolation,0.0,0.0,6.40654790039292e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1818,my_land,2009-10-16,8.073206781496088e-06,subsurface_runoff,0.0,0.0,7.987325331445268e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1819,my_land,2009-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1820,my_groundwater,2009-10-16,1.546787149009035,tank,0.0,0.0,0.00013957037481685975,0.0,0.0,0.0,0.0,0.0,16.857154471342714,0.0,0.0,0.0 -1821,my_reservoir,2009-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1822,gw1,2009-10-16,254.3399390803239,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1823,gw2,2009-10-16,270.66006091967614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1824,my_sewer,2009-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1825,my_land,2009-10-17,0.6798056781500026,percolation,0.0,0.0,6.278416942385061e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1826,my_land,2009-10-17,6.4585654251968705e-06,subsurface_runoff,0.0,0.0,6.389860265156214e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1827,my_land,2009-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1828,my_groundwater,2009-10-17,1.5567590824417088,tank,0.0,0.0,0.000140499555185946,0.0,0.0,0.0,0.0,0.0,16.856293327803442,0.0,0.0,0.0 -1829,my_reservoir,2009-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1830,gw1,2009-10-17,254.39433948645507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1831,gw2,2009-10-17,270.605660513545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1832,my_sewer,2009-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1833,my_land,2009-10-18,0.6662095645870025,percolation,0.0,0.0,6.152848603537361e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1834,my_land,2009-10-18,5.166852340157496e-06,subsurface_runoff,0.0,0.0,5.111888212124971e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1835,my_land,2009-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1836,my_groundwater,2009-10-18,1.5664293080146972,tank,0.0,0.0,0.00014140085047798697,0.0,0.0,0.0,0.0,0.0,16.855462072780295,0.0,0.0,0.0 -1837,my_reservoir,2009-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1838,gw1,2009-10-18,254.44837722321202,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1839,gw2,2009-10-18,270.551622776788,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1840,my_sewer,2009-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993750000000002,0.0,0.0,0.0 -1841,my_land,2009-10-19,0.6528853732952625,percolation,0.0,0.0,6.0297916314666134e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1842,my_land,2009-10-19,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1843,my_land,2009-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1844,my_groundwater,2009-10-19,1.5758041155581712,tank,0.0,0.0,0.0001422748416481977,0.0,0.0,0.0,0.0,0.0,16.854659300365785,0.0,0.0,0.0 -1845,my_reservoir,2009-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1846,gw1,2009-10-19,254.5020547083906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1847,gw2,2009-10-19,270.4979452916094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1848,my_sewer,2009-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 -1849,my_land,2009-10-20,0.6398276658293572,percolation,0.0,0.0,5.9091957988372814e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1850,my_land,2009-10-20,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1851,my_land,2009-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1852,my_groundwater,2009-10-20,1.5848896684665164,tank,0.0,0.0,0.0001431220979745548,0.0,0.0,0.0,0.0,0.0,16.853883690746912,0.0,0.0,0.0 -1853,my_reservoir,2009-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1854,gw1,2009-10-20,254.555374343668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1855,gw2,2009-10-20,270.44462565633205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1856,my_sewer,2009-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.375,0.0,0.0,0.0 -1857,my_land,2009-10-21,0.6270311125127701,percolation,0.0,0.0,5.7910118828605355e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1858,my_land,2009-10-21,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1859,my_land,2009-10-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1860,my_groundwater,2009-10-21,1.593692006228646,tank,0.0,0.0,0.00014394317729148642,0.0,0.0,0.0,0.0,0.0,16.853134003707886,0.0,0.0,0.0 -1861,my_reservoir,2009-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1862,gw1,2009-10-21,254.60833851471023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1863,gw2,2009-10-21,270.39166148528983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1864,my_sewer,2009-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.30357143,0.0,0.0,0.0 -1865,my_land,2009-10-22,0.6144904902625147,percolation,0.0,0.0,5.6751916452033246e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1866,my_land,2009-10-22,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1867,my_land,2009-10-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1868,my_groundwater,2009-10-22,1.602217046907704,tank,0.0,0.0,0.0001447386262188884,0.0,0.0,0.0,0.0,0.0,16.852409072712693,0.0,0.0,0.0 -1869,my_reservoir,2009-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1870,gw1,2009-10-22,254.66094959127884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1871,gw2,2009-10-22,270.3390504087212,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1872,my_sewer,2009-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.76785714,0.0,0.0,0.0 -1873,my_land,2009-10-23,0.6022006804572644,percolation,0.0,0.0,5.561687812299258e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1874,my_land,2009-10-23,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1875,my_land,2009-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1876,my_groundwater,2009-10-23,1.6104705895711717,tank,0.0,0.0,0.00014550898038655924,0.0,0.0,0.0,0.0,0.0,16.851707799507963,0.0,0.0,0.0 -1877,my_reservoir,2009-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1878,gw1,2009-10-23,254.71320992733698,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1879,gw2,2009-10-23,270.28679007266305,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1880,my_sewer,2009-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 -1881,my_land,2009-10-24,0.5901566668481191,percolation,0.0,0.0,5.450454056053273e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1882,my_land,2009-10-24,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1883,my_land,2009-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1884,my_groundwater,2009-10-24,1.6184583166723663,tank,0.0,0.0,0.00014625476465414655,0.0,0.0,0.0,0.0,0.0,16.851029149193607,0.0,0.0,0.0 -1885,my_reservoir,2009-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1886,gw1,2009-10-24,254.76512186115474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1887,gw2,2009-10-24,270.2348781388453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1888,my_sewer,2009-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.23214286,0.0,0.0,0.0 -1889,my_land,2009-10-25,0.5783535335111567,percolation,0.0,0.0,5.3414449749322075e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1890,my_land,2009-10-25,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1891,my_land,2009-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1892,my_groundwater,2009-10-25,1.6261857963843054,tank,0.0,0.0,0.0001469764933266938,0.0,0.0,0.0,0.0,0.0,16.850372145714548,0.0,0.0,0.0 -1893,my_reservoir,2009-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1894,gw1,2009-10-25,254.8166877154137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1895,gw2,2009-10-25,270.18331228458635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1896,my_sewer,2009-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 -1897,my_land,2009-10-26,0.5667864628409336,percolation,0.0,0.0,5.2346160754335634e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1898,my_land,2009-10-26,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1899,my_land,2009-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1900,my_groundwater,2009-10-26,1.6336584848868922,tank,0.0,0.0,0.00014767467036587607,0.0,0.0,0.0,0.0,0.0,16.849735867732175,0.0,0.0,0.0 -1901,my_reservoir,2009-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1902,gw1,2009-10-26,254.86790979731094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1903,gw2,2009-10-26,270.1320902026891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1904,my_sewer,2009-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 -1905,my_land,2009-10-27,0.5554507335841149,percolation,0.0,0.0,5.129923753924892e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1906,my_land,2009-10-27,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1907,my_land,2009-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1908,my_groundwater,2009-10-27,1.6408817286083515,tank,0.0,0.0,0.0001483497895970104,0.0,0.0,0.0,0.0,0.0,16.84911944483876,0.0,0.0,0.0 -1909,my_reservoir,2009-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1910,gw1,2009-10-27,254.9187903986622,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1911,gw2,2009-10-27,270.08120960133783,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1912,my_sewer,2009-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 -1913,my_land,2009-10-28,0.5443417189124325,percolation,0.0,0.0,5.027325278846395e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1914,my_land,2009-10-28,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1915,my_land,2009-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1916,my_groundwater,2009-10-28,1.6478607664218337,tank,0.0,0.0,0.00014900233491192588,0.0,0.0,0.0,0.0,0.0,16.84852205408199,0.0,0.0,0.0 -1917,my_reservoir,2009-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1918,gw1,2009-10-28,254.96933179600444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1919,gw2,2009-10-28,270.03066820399556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1920,my_sewer,2009-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.16071429,0.0,0.0,0.0 -1921,my_land,2009-10-29,0.5334548845341839,percolation,0.0,0.0,4.926778773269467e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1922,my_land,2009-10-29,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1923,my_land,2009-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1924,my_groundwater,2009-10-29,1.6546007317980822,tank,0.0,0.0,0.00014963278046777593,0.0,0.0,0.0,0.0,0.0,16.847942916770435,0.0,0.0,0.0 -1925,my_reservoir,2009-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1926,gw1,2009-10-29,255.01953625069774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1927,gw2,2009-10-29,269.98046374930226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1928,my_sewer,2009-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.121428570000003,0.0,0.0,0.0 -1929,my_land,2009-10-30,0.5227857868435002,percolation,0.0,0.0,4.828243197804078e-05,0.0,0.0,0.0,0.0,0.0,16.760283123214123,0.0,0.0,0.0 -1930,my_land,2009-10-30,4.133481872125997e-06,subsurface_runoff,0.0,0.0,4.089510569699977e-10,0.0,0.0,0.0,0.0,0.0,16.064868214227452,0.0,0.0,0.0 -1931,my_land,2009-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.1,0.0,0.0,0.0 -1932,my_groundwater,2009-10-30,1.661106654915044,tank,0.0,0.0,0.00015024159088187377,0.0,0.0,0.0,0.0,0.0,16.847381295533783,0.0,0.0,0.0 -1933,my_reservoir,2009-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1934,gw1,2009-10-30,255.0694060090264,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1935,gw2,2009-10-30,269.9305939909736,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1936,my_sewer,2009-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.993981482222223,0.0,0.0,0.0 -1937,my_land,2009-10-31,0.6462346041984925,percolation,0.0,0.0,6.558374727748086e-05,0.0,0.0,0.0,0.0,0.0,16.098812566960742,0.0,0.0,0.0 -1938,my_land,2009-10-31,0.03643991442954186,subsurface_runoff,0.0,0.0,4.970929593226771e-06,0.0,0.0,0.0,0.0,0.0,13.56819684652802,0.0,0.0,0.0 -1939,my_land,2009-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.953571429999998,0.0,0.0,0.0 -1940,my_groundwater,2009-10-31,1.6701093784346543,tank,0.0,0.0,0.0001512010846171035,0.0,0.0,0.0,0.0,0.0,16.841484802365333,0.0,0.0,0.0 -1941,my_reservoir,2009-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1942,gw1,2009-10-31,255.11894330229956,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1943,gw2,2009-10-31,269.88105669770044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1944,my_sewer,2009-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.84645888773148,0.0,0.0,0.0 -1945,my_land,2009-11-01,0.8798917807072058,percolation,0.0,0.0,9.717299833133554e-05,0.0,0.0,0.0,0.0,0.0,15.348409451228905,0.0,0.0,0.0 -1946,my_land,2009-11-01,0.09624903864368328,subsurface_runoff,0.0,0.0,1.2929376599589388e-05,0.0,0.0,0.0,0.0,0.0,13.465657914159694,0.0,0.0,0.0 -1947,my_land,2009-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.78571429,0.0,0.0,0.0 -1948,my_groundwater,2009-11-01,1.6838461876672501,tank,0.0,0.0,0.00015280124651444865,0.0,0.0,0.0,0.0,0.0,16.82560206359089,0.0,0.0,0.0 -1949,my_reservoir,2009-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1950,gw1,2009-11-01,255.16815034695088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1951,gw2,2009-11-01,269.8318496530491,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1952,my_sewer,2009-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.661400330044094,0.0,0.0,0.0 -1953,my_land,2009-11-02,1.1319968613826126,percolation,0.0,0.0,0.00013043838066237987,0.0,0.0,0.0,0.0,0.0,14.854683881052152,0.0,0.0,0.0 -1954,my_land,2009-11-02,0.15038777956516453,subsurface_runoff,0.0,0.0,1.9924138639581993e-05,0.0,0.0,0.0,0.0,0.0,13.373176424470538,0.0,0.0,0.0 -1955,my_land,2009-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.617857139999998,0.0,0.0,0.0 -1956,my_groundwater,2009-11-02,1.7026807940190851,tank,0.0,0.0,0.00015507459614736097,0.0,0.0,0.0,0.0,0.0,16.79892749490543,0.0,0.0,0.0 -1957,my_reservoir,2009-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1958,gw1,2009-11-02,255.21702934463787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1959,gw2,2009-11-02,269.78297065536213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1960,my_sewer,2009-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.461126333160214,0.0,0.0,0.0 -1961,my_land,2009-11-03,1.401896739940644,percolation,0.0,0.0,0.00016515907950189528,0.0,0.0,0.0,0.0,0.0,14.495170681422227,0.0,0.0,0.0 -1962,my_land,2009-11-03,0.19991289461422238,subsurface_runoff,0.0,0.0,2.6096988857995663e-05,0.0,0.0,0.0,0.0,0.0,13.277079518492013,0.0,0.0,0.0 -1963,my_land,2009-11-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.45,0.0,0.0,0.0 -1964,my_groundwater,2009-11-03,1.726962704239972,tank,0.0,0.0,0.00015804907663256686,0.0,0.0,0.0,0.0,0.0,16.76085717517278,0.0,0.0,0.0 -1965,my_reservoir,2009-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1966,gw1,2009-11-03,255.26558248234028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1967,gw2,2009-11-03,269.7344175176597,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1968,my_sewer,2009-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 -1969,my_land,2009-11-04,1.4922793944071984,percolation,0.0,0.0,0.00017693521177191475,0.0,0.0,0.0,0.0,0.0,14.374862376716369,0.0,0.0,0.0 -1970,my_land,2009-11-04,0.1921536052873962,subsurface_runoff,0.0,0.0,2.4980805742194456e-05,0.0,0.0,0.0,0.0,0.0,13.227110239628656,0.0,0.0,0.0 -1971,my_land,2009-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 -1972,my_groundwater,2009-11-04,1.75302384229409,tank,0.0,0.0,0.00016125584932348512,0.0,0.0,0.0,0.0,0.0,16.719509734160376,0.0,0.0,0.0 -1973,my_reservoir,2009-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1974,gw1,2009-11-04,255.313811932458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1975,gw2,2009-11-04,269.686188067542,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1976,my_sewer,2009-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.99642857,0.0,0.0,0.0 -1977,my_land,2009-11-05,1.5195135710310488,percolation,0.0,0.0,0.0001806986145540236,0.0,0.0,0.0,0.0,0.0,14.308929842219781,0.0,0.0,0.0 -1978,my_land,2009-11-05,0.16925479294066373,subsurface_runoff,0.0,0.0,2.1971612489686763e-05,0.0,0.0,0.0,0.0,0.0,13.171368558301827,0.0,0.0,0.0 -1979,my_land,2009-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.54285714,0.0,0.0,0.0 -1980,my_groundwater,2009-11-05,1.7795742375272012,tank,0.0,0.0,0.00016453121721074046,0.0,0.0,0.0,0.0,0.0,16.6776084988197,0.0,0.0,0.0 -1981,my_reservoir,2009-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1982,gw1,2009-11-05,255.3617198529083,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1983,gw2,2009-11-05,269.63828014709173,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1984,my_sewer,2009-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 -1985,my_land,2009-11-06,1.5914239878221326,percolation,0.0,0.0,0.0001901513059988137,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 -1986,my_land,2009-11-06,0.16324075631489965,subsurface_runoff,0.0,0.0,2.1132844749809424e-05,0.0,0.0,0.0,0.0,0.0,13.011462510699811,0.0,0.0,0.0 -1987,my_land,2009-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 -1988,my_groundwater,2009-11-06,1.8075221473997625,tank,0.0,0.0,0.00016799082646840372,0.0,0.0,0.0,0.0,0.0,16.63276280278416,0.0,0.0,0.0 -1989,my_reservoir,2009-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1990,gw1,2009-11-06,255.40930838722224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1991,gw2,2009-11-06,269.5906916127778,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1992,my_sewer,2009-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 -1993,my_land,2009-11-07,1.5595955080656898,percolation,0.0,0.0,0.00018634827987883742,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 -1994,my_land,2009-11-07,0.13059260505191972,subsurface_runoff,0.0,0.0,1.690627579984754e-05,0.0,0.0,0.0,0.0,0.0,13.011462510699811,0.0,0.0,0.0 -1995,my_land,2009-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.635714289999997,0.0,0.0,0.0 -1996,my_groundwater,2009-11-07,1.8347522505883147,tank,0.0,0.0,0.00017136436795690905,0.0,0.0,0.0,0.0,0.0,16.590242296216488,0.0,0.0,0.0 -1997,my_reservoir,2009-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1998,gw1,2009-11-07,255.45657966464077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1999,gw2,2009-11-07,269.54342033535926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2000,my_sewer,2009-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.08928571,0.0,0.0,0.0 -2001,my_land,2009-11-08,1.528403597904376,percolation,0.0,0.0,0.00018262131428126066,0.0,0.0,0.0,0.0,0.0,14.175525730177245,0.0,0.0,0.0 -2002,my_land,2009-11-08,0.10447408404153577,subsurface_runoff,0.0,0.0,1.3525020639878031e-05,0.0,0.0,0.0,0.0,0.0,13.011462510699811,0.0,0.0,0.0 -2003,my_land,2009-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.18214286,0.0,0.0,0.0 -2004,my_groundwater,2009-11-08,1.8612793003477546,tank,0.0,0.0,0.00017465360522059959,0.0,0.0,0.0,0.0,0.0,16.549876874904697,0.0,0.0,0.0 -2005,my_reservoir,2009-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2006,gw1,2009-11-08,255.50353580020985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2007,gw2,2009-11-08,269.4964641997902,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2008,my_sewer,2009-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 -2009,my_land,2009-11-09,1.613431126520153,percolation,0.0,0.0,0.0001938730223150074,0.0,0.0,0.0,0.0,0.0,13.952689472023808,0.0,0.0,0.0 -2010,my_land,2009-11-09,0.11503385242339585,subsurface_runoff,0.0,0.0,1.4875563265473027e-05,0.0,0.0,0.0,0.0,0.0,12.479302408316718,0.0,0.0,0.0 -2011,my_land,2009-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 -2012,my_groundwater,2009-11-09,1.8894709500296167,tank,0.0,0.0,0.00017816367201896075,0.0,0.0,0.0,0.0,0.0,16.504729726546003,0.0,0.0,0.0 -2013,my_reservoir,2009-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2014,gw1,2009-11-09,255.5501788948751,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2015,gw2,2009-11-09,269.4498211051249,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2016,my_sewer,2009-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.72857143,0.0,0.0,0.0 -2017,my_land,2009-11-10,1.6457770349784049,percolation,0.0,0.0,0.00019834382973066606,0.0,0.0,0.0,0.0,0.0,13.824138396464011,0.0,0.0,0.0 -2018,my_land,2009-11-10,0.10960926724175205,subsurface_runoff,0.0,0.0,1.4172088125836594e-05,0.0,0.0,0.0,0.0,0.0,12.19042422286866,0.0,0.0,0.0 -2019,my_land,2009-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 -2020,my_groundwater,2009-11-10,1.9182505908666032,tank,0.0,0.0,0.00018175597651557334,0.0,0.0,0.0,0.0,0.0,16.45791170143717,0.0,0.0,0.0 -2021,my_reservoir,2009-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2022,gw1,2009-11-10,255.59651103557593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2023,gw2,2009-11-10,269.40348896442407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2024,my_sewer,2009-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 -2025,my_land,2009-11-11,1.7706683426785974,percolation,0.0,0.0,0.00021450424389639038,0.0,0.0,0.0,0.0,0.0,13.509076181879701,0.0,0.0,0.0 -2026,my_land,2009-11-11,0.13062805281374465,subsurface_runoff,0.0,0.0,1.6814484313006053e-05,0.0,0.0,0.0,0.0,0.0,11.565376112835184,0.0,0.0,0.0 -2027,my_land,2009-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.175,0.0,0.0,0.0 -2028,my_groundwater,2009-11-11,1.9495007127939652,tank,0.0,0.0,0.00018566828011074663,0.0,0.0,0.0,0.0,0.0,16.4033885188978,0.0,0.0,0.0 -2029,my_reservoir,2009-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2030,gw1,2009-11-11,255.64253429533875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2031,gw2,2009-11-11,269.35746570466125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2032,my_sewer,2009-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 -2033,my_land,2009-11-12,2.235996679447809,percolation,0.0,0.0,0.0002705303316672826,0.0,0.0,0.0,0.0,0.0,12.75946805264111,0.0,0.0,0.0 -2034,my_land,2009-11-12,0.24075868813474643,subsurface_runoff,0.0,0.0,2.9864151436478318e-05,0.0,0.0,0.0,0.0,0.0,10.771028244357666,0.0,0.0,0.0 -2035,my_land,2009-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.075,0.0,0.0,0.0 -2036,my_groundwater,2009-11-12,1.9901454648435963,tank,0.0,0.0,0.00019071133401941086,0.0,0.0,0.0,0.0,0.0,16.32004495902468,0.0,0.0,0.0 -2037,my_reservoir,2009-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2038,gw1,2009-11-12,255.6882507333698,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2039,gw2,2009-11-12,269.31174926663016,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2040,my_sewer,2009-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.004444444444443,0.0,0.0,0.0 -2041,my_land,2009-11-13,3.03463497430541,percolation,0.0,0.0,0.0003594191300973716,0.0,0.0,0.0,0.0,0.0,12.01167531635391,0.0,0.0,0.0 -2042,my_land,2009-11-13,0.42209218273815285,subsurface_runoff,0.0,0.0,4.9551023207260116e-05,0.0,0.0,0.0,0.0,0.0,10.389185023312798,0.0,0.0,0.0 -2043,my_land,2009-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.975,0.0,0.0,0.0 -2044,my_groundwater,2009-11-13,2.0469465988727045,tank,0.0,0.0,0.00019755130226134453,0.0,0.0,0.0,0.0,0.0,16.190019101276395,0.0,0.0,0.0 -2045,my_reservoir,2009-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2046,gw1,2009-11-13,255.73366239514735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2047,gw2,2009-11-13,269.26633760485265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2048,my_sewer,2009-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.984170013386882,0.0,0.0,0.0 -2049,my_land,2009-11-14,3.256467627019993,percolation,0.0,0.0,0.0003833357365808856,0.0,0.0,0.0,0.0,0.0,11.836056540152816,0.0,0.0,0.0 -2050,my_land,2009-11-14,0.41455139304785327,subsurface_runoff,0.0,0.0,4.8104761174096916e-05,0.0,0.0,0.0,0.0,0.0,10.314682904219874,0.0,0.0,0.0 -2051,my_land,2009-11-14,2.2665994004164814e-18,surface_runoff,0.0,0.0,2.766844971211525e-22,0.0,0.0,0.0,0.0,0.0,10.242871386355551,0.0,0.0,0.0 -2052,my_groundwater,2009-11-14,2.10812160906843,tank,0.0,0.0,0.00020486104435751633,0.0,0.0,0.0,0.0,0.0,16.053103600307562,0.0,0.0,0.0 -2053,my_reservoir,2009-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2054,gw1,2009-11-14,255.77877131251304,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2055,gw2,2009-11-14,269.221228687487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2056,my_sewer,2009-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903043,0.0,0.0,0.0 -2057,my_land,2009-11-15,3.439159160064928,percolation,0.0,0.0,0.00040261397113289883,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 -2058,my_land,2009-11-15,0.39907536901932616,subsurface_runoff,0.0,0.0,4.581576792802065e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 -2059,my_land,2009-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.775,0.0,0.0,0.0 -2060,my_groundwater,2009-11-15,2.172862759375652,tank,0.0,0.0,0.00021254496187325656,0.0,0.0,0.0,0.0,0.0,15.912737143321793,0.0,0.0,0.0 -2061,my_reservoir,2009-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2062,gw1,2009-11-15,255.82357950376294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2063,gw2,2009-11-15,269.1764204962371,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2064,my_sewer,2009-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2065,my_land,2009-11-16,3.3703759768636297,percolation,0.0,0.0,0.0003945616917102409,0.0,0.0,0.0,0.0,0.0,11.696715778212928,0.0,0.0,0.0 -2066,my_land,2009-11-16,0.31926029521546095,subsurface_runoff,0.0,0.0,3.6652614342416525e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 -2067,my_land,2009-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.675,0.0,0.0,0.0 -2068,my_groundwater,2009-11-16,2.236041827720508,tank,0.0,0.0,0.00022004574819267477,0.0,0.0,0.0,0.0,0.0,15.78337176744825,0.0,0.0,0.0 -2069,my_reservoir,2009-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2070,gw1,2009-11-16,255.86808897373785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2071,gw2,2009-11-16,269.1319110262622,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2072,my_sewer,2009-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2073,my_land,2009-11-17,3.302968457326357,percolation,0.0,0.0,0.00038667045787603606,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 -2074,my_land,2009-11-17,0.25540823617236874,subsurface_runoff,0.0,0.0,2.932209147393322e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 -2075,my_land,2009-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -2076,my_groundwater,2009-11-17,2.297690723889636,tank,0.0,0.0,0.00022736713957181238,0.0,0.0,0.0,0.0,0.0,15.663780970383648,0.0,0.0,0.0 -2077,my_reservoir,2009-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2078,gw1,2009-11-17,255.91230171391294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2079,gw2,2009-11-17,269.0876982860871,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2080,my_sewer,2009-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.954288582903045,0.0,0.0,0.0 -2081,my_land,2009-11-18,3.23690908817983,percolation,0.0,0.0,0.0003789370487185153,0.0,0.0,0.0,0.0,0.0,11.696715778212926,0.0,0.0,0.0 -2082,my_land,2009-11-18,0.204326588937895,subsurface_runoff,0.0,0.0,2.3457673179146577e-05,0.0,0.0,0.0,0.0,0.0,10.245006947589118,0.0,0.0,0.0 -2083,my_land,2009-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.610714286,0.0,0.0,0.0 -2084,my_groundwater,2009-11-18,2.357840717803573,tank,0.0,0.0,0.00023451279735750978,0.0,0.0,0.0,0.0,0.0,15.552913994754537,0.0,0.0,0.0 -2085,my_reservoir,2009-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2086,gw1,2009-11-18,255.95621970248686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2087,gw2,2009-11-18,269.0437802975132,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2088,my_sewer,2009-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 -2089,my_land,2009-11-19,3.417139206491937,percolation,0.0,0.0,0.0003983590772048164,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 -2090,my_land,2009-11-19,0.23011931198724217,subsurface_runoff,0.0,0.0,2.6113286695880912e-05,0.0,0.0,0.0,0.0,0.0,10.076607859755114,0.0,0.0,0.0 -2091,my_land,2009-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 -2092,my_groundwater,2009-11-19,2.4215093069983644,tank,0.0,0.0,0.00024203596800721405,0.0,0.0,0.0,0.0,0.0,15.437949316158864,0.0,0.0,0.0 -2093,my_reservoir,2009-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2094,gw1,2009-11-19,255.99984490447028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2095,gw2,2009-11-19,269.00015509552975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2096,my_sewer,2009-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.646428571,0.0,0.0,0.0 -2097,my_land,2009-11-20,3.3487964223620983,percolation,0.0,0.0,0.0003903918956607201,0.0,0.0,0.0,0.0,0.0,11.55096935655767,0.0,0.0,0.0 -2098,my_land,2009-11-20,0.18409544958979374,subsurface_runoff,0.0,0.0,2.089062935670473e-05,0.0,0.0,0.0,0.0,0.0,10.076607859755114,0.0,0.0,0.0 -2099,my_land,2009-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.682142857,0.0,0.0,0.0 -2100,my_groundwater,2009-11-20,2.4836274609003826,tank,0.0,0.0,0.0002493781416774321,0.0,0.0,0.0,0.0,0.0,15.331257423398412,0.0,0.0,0.0 -2101,my_reservoir,2009-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2102,gw1,2009-11-20,256.0431792717738,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2103,gw2,2009-11-20,268.9568207282262,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2104,my_sewer,2009-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 -2105,my_land,2009-11-21,3.872219489725413,percolation,0.0,0.0,0.00044463377930839093,0.0,0.0,0.0,0.0,0.0,11.272241313768573,0.0,0.0,0.0 -2106,my_land,2009-11-21,0.3079291476474967,subsurface_runoff,0.0,0.0,3.359678146111487e-05,0.0,0.0,0.0,0.0,0.0,9.892066236080755,0.0,0.0,0.0 -2107,my_land,2009-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.717857143,0.0,0.0,0.0 -2108,my_groundwater,2009-11-21,2.5562457175746847,tank,0.0,0.0,0.0002578061696877308,0.0,0.0,0.0,0.0,0.0,15.206088946369885,0.0,0.0,0.0 -2109,my_reservoir,2009-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2110,gw1,2009-11-21,256.0862247432953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2111,gw2,2009-11-21,268.9137752567047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2112,my_sewer,2009-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.74196428605,0.0,0.0,0.0 -2113,my_land,2009-11-22,4.5431676199200295,percolation,0.0,0.0,0.0005096120979232915,0.0,0.0,0.0,0.0,0.0,11.022100082921758,0.0,0.0,0.0 -2114,my_land,2009-11-22,0.44998754124428986,subsurface_runoff,0.0,0.0,4.697837597190371e-05,0.0,0.0,0.0,0.0,0.0,9.829466869705396,0.0,0.0,0.0 -2115,my_land,2009-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.753571429,0.0,0.0,0.0 -2116,my_groundwater,2009-11-22,2.6423410155434057,tank,0.0,0.0,0.0002675359005426642,0.0,0.0,0.0,0.0,0.0,15.059643039253228,0.0,0.0,0.0 -2117,my_reservoir,2009-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2118,gw1,2009-11-22,256.1289832450067,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2119,gw2,2009-11-22,268.8710167549933,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2120,my_sewer,2009-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.747836288058393,0.0,0.0,0.0 -2121,my_land,2009-11-23,4.678350610631514,percolation,0.0,0.0,0.0005215218955777257,0.0,0.0,0.0,0.0,0.0,10.962300998049502,0.0,0.0,0.0 -2122,my_land,2009-11-23,0.4214992420049244,subsurface_runoff,0.0,0.0,4.359686121640733e-05,0.0,0.0,0.0,0.0,0.0,9.822900927210629,0.0,0.0,0.0 -2123,my_land,2009-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.789285714,0.0,0.0,0.0 -2124,my_groundwater,2009-11-23,2.7309730147209743,tank,0.0,0.0,0.00027748375652271126,0.0,0.0,0.0,0.0,0.0,14.916755485385723,0.0,0.0,0.0 -2125,my_reservoir,2009-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2126,gw1,2009-11-23,256.17145669004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2127,gw2,2009-11-23,268.82854330996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2128,my_sewer,2009-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.783417333009245,0.0,0.0,0.0 -2129,my_land,2009-11-24,5.2014155800675,percolation,0.0,0.0,0.0005685666208477613,0.0,0.0,0.0,0.0,0.0,10.826352793976191,0.0,0.0,0.0 -2130,my_land,2009-11-24,0.5049904090185289,subsurface_runoff,0.0,0.0,5.051698915859255e-05,0.0,0.0,0.0,0.0,0.0,9.820458591782971,0.0,0.0,0.0 -2131,my_land,2009-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.825,0.0,0.0,0.0 -2132,my_groundwater,2009-11-24,2.830031542206975,tank,0.0,0.0,0.0002883644390558053,0.0,0.0,0.0,0.0,0.0,14.763712591905465,0.0,0.0,0.0 -2133,my_reservoir,2009-11-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2134,gw1,2009-11-24,256.21364697877306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2135,gw2,2009-11-24,268.78635302122694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2136,my_sewer,2009-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.695935128421233,0.0,0.0,0.0 -2137,my_land,2009-11-25,5.426492244592537,percolation,0.0,0.0,0.0005872904990590769,0.0,0.0,0.0,0.0,0.0,10.766090102794985,0.0,0.0,0.0 -2138,my_land,2009-11-25,0.49354470167098297,subsurface_runoff,0.0,0.0,4.860276428694773e-05,0.0,0.0,0.0,0.0,0.0,9.82268034316541,0.0,0.0,0.0 -2139,my_land,2009-11-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.335714286,0.0,0.0,0.0 -2140,my_groundwater,2009-11-25,2.9334243411878056,tank,0.0,0.0,0.00029959908454615415,0.0,0.0,0.0,0.0,0.0,14.6131687832371,0.0,0.0,0.0 -2141,my_reservoir,2009-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2142,gw1,2009-11-25,256.2555559989146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2143,gw2,2009-11-25,268.7444440010854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2144,my_sewer,2009-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.512123768043539,0.0,0.0,0.0 -2145,my_land,2009-11-26,5.661315502631175,percolation,0.0,0.0,0.0006062973049389933,0.0,0.0,0.0,0.0,0.0,10.687094499550522,0.0,0.0,0.0 -2146,my_land,2009-11-26,0.48826517710018474,subsurface_runoff,0.0,0.0,4.7250270167271926e-05,0.0,0.0,0.0,0.0,0.0,9.75396761725,0.0,0.0,0.0 -2147,my_land,2009-11-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.846428571,0.0,0.0,0.0 -2148,my_groundwater,2009-11-26,3.0413389887812565,tank,0.0,0.0,0.00031119256768533256,0.0,0.0,0.0,0.0,0.0,14.464394500234944,0.0,0.0,0.0 -2149,my_reservoir,2009-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2150,gw1,2009-11-26,256.2971856255885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2151,gw2,2009-11-26,268.7028143744115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2152,my_sewer,2009-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.365826185978026,0.0,0.0,0.0 -2153,my_land,2009-11-27,5.780984730502456,percolation,0.0,0.0,0.0006148219885135815,0.0,0.0,0.0,0.0,0.0,10.621373144302098,0.0,0.0,0.0 -2154,my_land,2009-11-27,0.45398507716964565,subsurface_runoff,0.0,0.0,4.3419435092557156e-05,0.0,0.0,0.0,0.0,0.0,9.65650086117824,0.0,0.0,0.0 -2155,my_land,2009-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.357142857,0.0,0.0,0.0 -2156,my_groundwater,2009-11-27,3.151419973323103,tank,0.0,0.0,0.00032293060531800283,0.0,0.0,0.0,0.0,0.0,14.320883509946073,0.0,0.0,0.0 -2157,my_reservoir,2009-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2158,gw1,2009-11-27,256.3385377214179,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2159,gw2,2009-11-27,268.6614622785821,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2160,my_sewer,2009-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.020141022213865,0.0,0.0,0.0 -2161,my_land,2009-11-28,5.975927247687543,percolation,0.0,0.0,0.0006295627137828939,0.0,0.0,0.0,0.0,0.0,10.51789384151351,0.0,0.0,0.0 -2162,my_land,2009-11-28,0.4476947860337129,subsurface_runoff,0.0,0.0,4.209259978549712e-05,0.0,0.0,0.0,0.0,0.0,9.462775637143407,0.0,0.0,0.0 -2163,my_land,2009-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.867857143,0.0,0.0,0.0 -2164,my_groundwater,2009-11-28,3.265194228074863,tank,0.0,0.0,0.00033493937690671675,0.0,0.0,0.0,0.0,0.0,14.179193819521153,0.0,0.0,0.0 -2165,my_reservoir,2009-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2166,gw1,2009-11-28,256.37961413660844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2167,gw2,2009-11-28,268.62038586339156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2168,my_sewer,2009-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2169,my_land,2009-11-29,6.612904328147424,percolation,0.0,0.0,0.000678829031031157,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 -2170,my_land,2009-11-29,0.5640049785993874,subsurface_runoff,0.0,0.0,5.0506072079804765e-05,0.0,0.0,0.0,0.0,0.0,8.991739983011426,0.0,0.0,0.0 -2171,my_land,2009-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.378571429,0.0,0.0,0.0 -2172,my_groundwater,2009-11-29,3.3916510806133915,tank,0.0,0.0,0.0003479210480247271,0.0,0.0,0.0,0.0,0.0,14.023220317493983,0.0,0.0,0.0 -2173,my_reservoir,2009-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2174,gw1,2009-11-29,256.42041670903103,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2175,gw2,2009-11-29,268.57958329096897,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2176,my_sewer,2009-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2177,my_land,2009-11-30,6.480646241584476,percolation,0.0,0.0,0.0006652524504105338,0.0,0.0,0.0,0.0,0.0,10.249552363034685,0.0,0.0,0.0 -2178,my_land,2009-11-30,0.4512039828795099,subsurface_runoff,0.0,0.0,4.040485766384381e-05,0.0,0.0,0.0,0.0,0.0,8.991739983011426,0.0,0.0,0.0 -2179,my_land,2009-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.378571429,0.0,0.0,0.0 -2180,my_groundwater,2009-11-30,3.515099394258399,tank,0.0,0.0,0.0003605938845737369,0.0,0.0,0.0,0.0,0.0,13.88158837430158,0.0,0.0,0.0 -2181,my_reservoir,2009-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2182,gw1,2009-11-30,256.46094726430414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2183,gw2,2009-11-30,268.53905273569586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2184,my_sewer,2009-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.172382077361634,0.0,0.0,0.0 -2185,my_land,2009-12-01,6.456594996203527,percolation,0.0,0.0,0.0006607266855509628,0.0,0.0,0.0,0.0,0.0,10.202769657847302,0.0,0.0,0.0 -2186,my_land,2009-12-01,0.38968745282081607,subsurface_runoff,0.0,0.0,3.4712806987847764e-05,0.0,0.0,0.0,0.0,0.0,8.873535926902688,0.0,0.0,0.0 -2187,my_land,2009-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2188,my_groundwater,2009-12-01,3.637749472481182,tank,0.0,0.0,0.00037314290738959,0.0,0.0,0.0,0.0,0.0,13.748666648766907,0.0,0.0,0.0 -2189,my_reservoir,2009-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2190,gw1,2009-12-01,256.50120761587544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2191,gw2,2009-12-01,268.49879238412456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2192,my_sewer,2009-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.860037924551956,0.0,0.0,0.0 -2193,my_land,2009-12-02,6.548124654311129,percolation,0.0,0.0,0.0006656878369202981,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 -2194,my_land,2009-12-02,0.3717939236258156,subsurface_runoff,0.0,0.0,3.271601023799374e-05,0.0,0.0,0.0,0.0,0.0,8.565911704710665,0.0,0.0,0.0 -2195,my_land,2009-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692857143,0.0,0.0,0.0 -2196,my_groundwater,2009-12-02,3.7619562078341704,tank,0.0,0.0,0.0003857615525155649,0.0,0.0,0.0,0.0,0.0,13.619159695360839,0.0,0.0,0.0 -2197,my_reservoir,2009-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2198,gw1,2009-12-02,256.54119956510294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2199,gw2,2009-12-02,268.45880043489706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2200,my_sewer,2009-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.860037924551955,0.0,0.0,0.0 -2201,my_land,2009-12-03,6.417162161224907,percolation,0.0,0.0,0.0006523740801818922,0.0,0.0,0.0,0.0,0.0,10.093787174368236,0.0,0.0,0.0 -2202,my_land,2009-12-03,0.2974351389006525,subsurface_runoff,0.0,0.0,2.617280819039499e-05,0.0,0.0,0.0,0.0,0.0,8.565911704710665,0.0,0.0,0.0 -2203,my_land,2009-12-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.985714285999999,0.0,0.0,0.0 -2204,my_groundwater,2009-12-03,3.883186404168092,tank,0.0,0.0,0.00039807762098083597,0.0,0.0,0.0,0.0,0.0,13.500561900267483,0.0,0.0,0.0 -2205,my_reservoir,2009-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2206,gw1,2009-12-03,256.5809249013356,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2207,gw2,2009-12-03,268.4190750986644,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2208,my_sewer,2009-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278571429000001,0.0,0.0,0.0 -2209,my_land,2009-12-04,6.5212817462349,percolation,0.0,0.0,0.0006584746475530175,0.0,0.0,0.0,0.0,0.0,9.997041759433309,0.0,0.0,0.0 -2210,my_land,2009-12-04,0.30120330247684624,subsurface_runoff,0.0,0.0,2.6148600014836598e-05,0.0,0.0,0.0,0.0,0.0,8.31681572364492,0.0,0.0,0.0 -2211,my_land,2009-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278571429,0.0,0.0,0.0 -2212,my_groundwater,2009-12-04,4.006233102277454,tank,0.0,0.0,0.00041048708939642745,0.0,0.0,0.0,0.0,0.0,13.384465650334114,0.0,0.0,0.0 -2213,my_reservoir,2009-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2214,gw1,2009-12-04,256.62038540199336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2215,gw2,2009-12-04,268.37961459800664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2216,my_sewer,2009-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 -2217,my_land,2009-12-05,7.19809003233725,percolation,0.0,0.0,0.0007069522368062617,0.0,0.0,0.0,0.0,0.0,9.73120769774238,0.0,0.0,0.0 -2218,my_land,2009-12-05,0.46061813069632007,subsurface_runoff,0.0,0.0,3.769359625793854e-05,0.0,0.0,0.0,0.0,0.0,7.9876738307539705,0.0,0.0,0.0 -2219,my_land,2009-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571428571,0.0,0.0,0.0 -2220,my_groundwater,2009-12-05,4.142750066608626,tank,0.0,0.0,0.00042385239935077815,0.0,0.0,0.0,0.0,0.0,13.255246850176844,0.0,0.0,0.0 -2221,my_reservoir,2009-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2222,gw1,2009-12-05,256.6595828326467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2223,gw2,2009-12-05,268.3404171673533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2224,my_sewer,2009-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.571428571000001,0.0,0.0,0.0 -2225,my_land,2009-12-06,7.133306152827799,percolation,0.0,0.0,0.0006989002821347866,0.0,0.0,0.0,0.0,0.0,9.710680511264533,0.0,0.0,0.0 -2226,my_land,2009-12-06,0.3900395171114217,subsurface_runoff,0.0,0.0,3.181122804435085e-05,0.0,0.0,0.0,0.0,0.0,7.981829442246385,0.0,0.0,0.0 -2227,my_land,2009-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.864285714,0.0,0.0,0.0 -2228,my_groundwater,2009-12-06,4.277606923838956,tank,0.0,0.0,0.00043702038123871647,0.0,0.0,0.0,0.0,0.0,13.134917956717,0.0,0.0,0.0 -2229,my_reservoir,2009-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2230,gw1,2009-12-06,256.69851894709575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2231,gw2,2009-12-06,268.30148105290425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2232,my_sewer,2009-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8470588232352965,0.0,0.0,0.0 -2233,my_land,2009-12-07,7.344043485635146,percolation,0.0,0.0,0.0007115177804616415,0.0,0.0,0.0,0.0,0.0,9.6348155118132,0.0,0.0,0.0 -2234,my_land,2009-12-07,0.4081958193663901,subsurface_runoff,0.0,0.0,3.268585426392986e-05,0.0,0.0,0.0,0.0,0.0,8.017710638758228,0.0,0.0,0.0 -2235,my_land,2009-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.157142857,0.0,0.0,0.0 -2236,my_groundwater,2009-12-07,4.416416648915503,tank,0.0,0.0,0.00045041229938787454,0.0,0.0,0.0,0.0,0.0,13.01643311802396,0.0,0.0,0.0 -2237,my_reservoir,2009-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2238,gw1,2009-12-07,256.73719548744845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2239,gw2,2009-12-07,268.26280451255155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2240,my_sewer,2009-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2241,my_land,2009-12-08,7.373377631860453,percolation,0.0,0.0,0.0007105034561794769,0.0,0.0,0.0,0.0,0.0,9.604955684505141,0.0,0.0,0.0 -2242,my_land,2009-12-08,0.3745063196939312,subsurface_runoff,0.0,0.0,2.9744882411706664e-05,0.0,0.0,0.0,0.0,0.0,8.064786038988245,0.0,0.0,0.0 -2243,my_land,2009-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.45,0.0,0.0,0.0 -2244,my_groundwater,2009-12-08,4.555476509084659,tank,0.0,0.0,0.00046375008899734424,0.0,0.0,0.0,0.0,0.0,12.904026471169088,0.0,0.0,0.0 -2245,my_reservoir,2009-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2246,gw1,2009-12-08,256.7756141841988,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2247,gw2,2009-12-08,268.2243858158012,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2248,my_sewer,2009-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2249,my_land,2009-12-09,7.2946230458655235,percolation,0.0,0.0,0.0007014853856477588,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2250,my_land,2009-12-09,0.3183024616442006,subsurface_runoff,0.0,0.0,2.520869466184735e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 -2251,my_land,2009-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.19375,0.0,0.0,0.0 -2252,my_groundwater,2009-12-09,4.692585501245639,tank,0.0,0.0,0.00047687095198268025,0.0,0.0,0.0,0.0,0.0,12.799337746683024,0.0,0.0,0.0 -2253,my_reservoir,2009-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2254,gw1,2009-12-09,256.81377675630415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2255,gw2,2009-12-09,268.18622324369585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2256,my_sewer,2009-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2257,my_land,2009-12-10,7.148730584948213,percolation,0.0,0.0,0.0006874556779348036,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2258,my_land,2009-12-10,0.2546419693153605,subsurface_runoff,0.0,0.0,2.0166955729477878e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 -2259,my_land,2009-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9375,0.0,0.0,0.0 -2260,my_groundwater,2009-12-10,4.826381767257542,tank,0.0,0.0,0.0004896734080463963,0.0,0.0,0.0,0.0,0.0,12.702743551501422,0.0,0.0,0.0 -2261,my_reservoir,2009-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2262,gw1,2009-12-10,256.8516849112621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2263,gw2,2009-12-10,268.1483150887379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2264,my_sewer,2009-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2265,my_land,2009-12-11,7.005755973249249,percolation,0.0,0.0,0.0006737065643761075,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2266,my_land,2009-12-11,0.20371357545228838,subsurface_runoff,0.0,0.0,1.61335645835823e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 -2267,my_land,2009-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.681250000000001,0.0,0.0,0.0 -2268,my_groundwater,2009-12-11,4.9569329880091155,tank,0.0,0.0,0.0005021639653010797,0.0,0.0,0.0,0.0,0.0,12.613353506686268,0.0,0.0,0.0 -2269,my_reservoir,2009-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2270,gw1,2009-12-11,256.889340345187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2271,gw2,2009-12-11,268.110659654813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2272,my_sewer,2009-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2273,my_land,2009-12-12,6.865640853784264,percolation,0.0,0.0,0.0006602324330885854,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2274,my_land,2009-12-12,0.1629708603618307,subsurface_runoff,0.0,0.0,1.290685166686584e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 -2275,my_land,2009-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.425,0.0,0.0,0.0 -2276,my_groundwater,2009-12-12,5.084305487205415,tank,0.0,0.0,0.0005143490013471303,0.0,0.0,0.0,0.0,0.0,12.530403166821744,0.0,0.0,0.0 -2277,my_reservoir,2009-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2278,gw1,2009-12-12,256.9267447428858,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2279,gw2,2009-12-12,268.0732552571142,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2280,my_sewer,2009-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.9566844917379695,0.0,0.0,0.0 -2281,my_land,2009-12-13,6.728328036708579,percolation,0.0,0.0,0.0006470277844268136,0.0,0.0,0.0,0.0,0.0,9.595821391414018,0.0,0.0,0.0 -2282,my_land,2009-12-13,0.13037668828946455,subsurface_runoff,0.0,0.0,1.0325481333492673e-05,0.0,0.0,0.0,0.0,0.0,8.098295774969499,0.0,0.0,0.0 -2283,my_land,2009-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.168750000000001,0.0,0.0,0.0 -2284,my_groundwater,2009-12-13,5.208564258520397,tank,0.0,0.0,0.0005262347658838797,0.0,0.0,0.0,0.0,0.0,12.4532325145376,0.0,0.0,0.0 -2285,my_reservoir,2009-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2286,gw1,2009-12-13,256.9638997779332,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2287,gw2,2009-12-13,268.0361002220668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2288,my_sewer,2009-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 -2289,my_land,2009-12-14,6.699914909901557,percolation,0.0,0.0,0.0006425371771290467,0.0,0.0,0.0,0.0,0.0,9.564143620259403,0.0,0.0,0.0 -2290,my_land,2009-12-14,0.13318663877501385,subsurface_runoff,0.0,0.0,1.0559690751357204e-05,0.0,0.0,0.0,0.0,0.0,7.989459941577913,0.0,0.0,0.0 -2291,my_land,2009-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 -2292,my_groundwater,2009-12-14,5.331933972825664,tank,0.0,0.0,0.0005379994000750114,0.0,0.0,0.0,0.0,0.0,12.379329483032722,0.0,0.0,0.0 -2293,my_reservoir,2009-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2294,gw1,2009-12-14,257.000807112747,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2295,gw2,2009-12-14,267.999192887253,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2296,my_sewer,2009-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.9125,0.0,0.0,0.0 -2297,my_land,2009-12-15,6.624752907069825,percolation,0.0,0.0,0.0006343940926529914,0.0,0.0,0.0,0.0,0.0,9.544761395975481,0.0,0.0,0.0 -2298,my_land,2009-12-15,0.12255918731016016,subsurface_runoff,0.0,0.0,9.728748265446514e-06,0.0,0.0,0.0,0.0,0.0,7.910078292657331,0.0,0.0,0.0 -2299,my_land,2009-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.65625,0.0,0.0,0.0 -2300,my_groundwater,2009-12-15,5.453465179216092,tank,0.0,0.0,0.0005495688527466883,0.0,0.0,0.0,0.0,0.0,12.309232252857504,0.0,0.0,0.0 -2301,my_reservoir,2009-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2302,gw1,2009-12-15,257.03746839866204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2303,gw2,2009-12-15,267.96253160133796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2304,my_sewer,2009-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2305,my_land,2009-12-16,6.595491491836251,percolation,0.0,0.0,0.000629940902680941,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2306,my_land,2009-12-16,0.12613813703393031,subsurface_runoff,0.0,0.0,1.002373109698564e-05,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 -2307,my_land,2009-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2308,my_groundwater,2009-12-16,5.574096878780433,tank,0.0,0.0,0.0005610187275622551,0.0,0.0,0.0,0.0,0.0,12.241742951854071,0.0,0.0,0.0 -2309,my_reservoir,2009-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2310,gw1,2009-12-16,257.0738852760043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2311,gw2,2009-12-16,267.9261147239957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2312,my_sewer,2009-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2313,my_land,2009-12-17,6.463581661999526,percolation,0.0,0.0,0.0006173420846273222,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2314,my_land,2009-12-17,0.10091050962714425,subsurface_runoff,0.0,0.0,8.018984877588512e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 -2315,my_land,2009-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2316,my_groundwater,2009-12-17,5.691741691845615,tank,0.0,0.0,0.0005721835017518342,0.0,0.0,0.0,0.0,0.0,12.178530698460241,0.0,0.0,0.0 -2317,my_reservoir,2009-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2318,gw1,2009-12-17,257.1100593741643,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2319,gw2,2009-12-17,267.8899406258357,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2320,my_sewer,2009-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2321,my_land,2009-12-18,6.3343100287595355,percolation,0.0,0.0,0.0006049952429347757,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2322,my_land,2009-12-18,0.0807284077017154,subsurface_runoff,0.0,0.0,6.41518790207081e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 -2323,my_land,2009-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2324,my_groundwater,2009-12-18,5.806460791772891,tank,0.0,0.0,0.0005830690175857697,0.0,0.0,0.0,0.0,0.0,12.119210408233748,0.0,0.0,0.0 -2325,my_reservoir,2009-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2326,gw1,2009-12-18,257.14599231166983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2327,gw2,2009-12-18,267.85400768833017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2328,my_sewer,2009-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2329,my_land,2009-12-19,6.207623828184345,percolation,0.0,0.0,0.0005928953380760802,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2330,my_land,2009-12-19,0.06458272616137231,subsurface_runoff,0.0,0.0,5.132150321656648e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808717,0.0,0.0,0.0 -2331,my_land,2009-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.83,0.0,0.0,0.0 -2332,my_groundwater,2009-12-19,5.918314124867211,tank,0.0,0.0,0.000593681000138354,0.0,0.0,0.0,0.0,0.0,12.063441849979558,0.0,0.0,0.0 -2333,my_reservoir,2009-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2334,gw1,2009-12-19,257.1816856962587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2335,gw2,2009-12-19,267.8183143037413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2336,my_sewer,2009-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2337,my_land,2009-12-20,6.083471351620658,percolation,0.0,0.0,0.0005810374313145586,0.0,0.0,0.0,0.0,0.0,9.5073785577944,0.0,0.0,0.0 -2338,my_land,2009-12-20,0.051666180929097846,subsurface_runoff,0.0,0.0,4.105720257325319e-06,0.0,0.0,0.0,0.0,0.0,7.742237466808716,0.0,0.0,0.0 -2339,my_land,2009-12-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.64,0.0,0.0,0.0 -2340,my_groundwater,2009-12-20,6.027360434927321,tank,0.0,0.0,0.000604025059632626,0.0,0.0,0.0,0.0,0.0,12.010923299375875,0.0,0.0,0.0 -2341,my_reservoir,2009-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2342,gw1,2009-12-20,257.2171411249503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2343,gw2,2009-12-20,267.7828588750497,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2344,my_sewer,2009-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2345,my_land,2009-12-21,5.972244372842278,percolation,0.0,0.0,0.0005703015038331835,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 -2346,my_land,2009-12-21,0.04417442726138264,subsurface_runoff,0.0,0.0,3.525343864340801e-06,0.0,0.0,0.0,0.0,0.0,7.648541220531589,0.0,0.0,0.0 -2347,my_land,2009-12-21,1.1000883128224178e-19,surface_runoff,0.0,0.0,6.714406206191515e-24,0.0,0.0,0.0,0.0,0.0,7.50911902814999,0.0,0.0,0.0 -2348,my_groundwater,2009-12-21,6.13386986571572,tank,0.0,0.0,0.0006141247061687199,0.0,0.0,0.0,0.0,0.0,11.961189538056397,0.0,0.0,0.0 -2349,my_reservoir,2009-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2350,gw1,2009-12-21,257.25236018411726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2351,gw2,2009-12-21,267.74763981588274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2352,my_sewer,2009-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0 -2353,my_land,2009-12-22,5.852799485385432,percolation,0.0,0.0,0.0005588954737565198,0.0,0.0,0.0,0.0,0.0,9.501745308949985,0.0,0.0,0.0 -2354,my_land,2009-12-22,0.03533954180910611,subsurface_runoff,0.0,0.0,2.820275091472641e-06,0.0,0.0,0.0,0.0,0.0,7.64854122053159,0.0,0.0,0.0 -2355,my_land,2009-12-22,4.8563433426110564e-20,surface_runoff,0.0,0.0,2.964076747199131e-24,0.0,0.0,0.0,0.0,0.0,7.581674215988696,0.0,0.0,0.0 -2356,my_groundwater,2009-12-22,6.237681466289635,tank,0.0,0.0,0.0006239669094047701,0.0,0.0,0.0,0.0,0.0,11.914211567052623,0.0,0.0,0.0 -2357,my_reservoir,2009-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2358,gw1,2009-12-22,257.2873444495565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2359,gw2,2009-12-22,267.7126555504435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2360,my_sewer,2009-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2361,my_land,2009-12-23,5.7403164519041985,percolation,0.0,0.0,0.0005481036981647497,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 -2362,my_land,2009-12-23,0.02951597527761811,subsurface_runoff,0.0,0.0,2.361290517629915e-06,0.0,0.0,0.0,0.0,0.0,7.576517431952746,0.0,0.0,0.0 -2363,my_land,2009-12-23,7.371092670390645e-20,surface_runoff,0.0,0.0,8.997915857410455e-24,0.0,0.0,0.0,0.0,0.0,7.470011856126202,0.0,0.0,0.0 -2364,my_groundwater,2009-12-23,6.338943704680531,tank,0.0,0.0,0.0006335648174153263,0.0,0.0,0.0,0.0,0.0,11.869686201935572,0.0,0.0,0.0 -2365,my_reservoir,2009-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2366,gw1,2009-12-23,257.3220954865594,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2367,gw2,2009-12-23,267.6779045134406,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2368,my_sewer,2009-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2369,my_land,2009-12-24,5.625510122866115,percolation,0.0,0.0,0.0005371416242014547,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 -2370,my_land,2009-12-24,0.02361278022209449,subsurface_runoff,0.0,0.0,1.889032414103932e-06,0.0,0.0,0.0,0.0,0.0,7.576517431952746,0.0,0.0,0.0 -2371,my_land,2009-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.88,0.0,0.0,0.0 -2372,my_groundwater,2009-12-24,6.437615658634319,tank,0.0,0.0,0.0006429155741501748,0.0,0.0,0.0,0.0,0.0,11.827512218987213,0.0,0.0,0.0 -2373,my_reservoir,2009-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2374,gw1,2009-12-24,257.35661484998235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2375,gw2,2009-12-24,267.64338515001765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2376,my_sewer,2009-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2377,my_land,2009-12-25,5.5129999204087925,percolation,0.0,0.0,0.0005263987917174256,0.0,0.0,0.0,0.0,0.0,9.498907986522573,0.0,0.0,0.0 -2378,my_land,2009-12-25,0.01889022417767559,subsurface_runoff,0.0,0.0,1.5112259312831457e-06,0.0,0.0,0.0,0.0,0.0,7.576517431952746,0.0,0.0,0.0 -2379,my_land,2009-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.69,0.0,0.0,0.0 -2380,my_groundwater,2009-12-25,6.533750546438912,tank,0.0,0.0,0.0006520242606176184,0.0,0.0,0.0,0.0,0.0,11.78751424960561,0.0,0.0,0.0 -2381,my_reservoir,2009-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2382,gw1,2009-12-25,257.3909040843158,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2383,gw2,2009-12-25,267.6090959156842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2384,my_sewer,2009-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2385,my_land,2009-12-26,5.46702033031174,percolation,0.0,0.0,0.0005213988893182491,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 -2386,my_land,2009-12-26,0.03260344690979322,subsurface_runoff,0.0,0.0,2.7132184144610445e-06,0.0,0.0,0.0,0.0,0.0,6.444817053548904,0.0,0.0,0.0 -2387,my_land,2009-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0 -2388,my_groundwater,2009-12-26,6.628709083939876,tank,0.0,0.0,0.0006610083916414815,0.0,0.0,0.0,0.0,0.0,11.748293699716982,0.0,0.0,0.0 -2389,my_reservoir,2009-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2390,gw1,2009-12-26,257.4249647237537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2391,gw2,2009-12-26,267.5750352762463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2392,my_sewer,2009-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2393,my_land,2009-12-27,5.357679923705506,percolation,0.0,0.0,0.0005109709115318841,0.0,0.0,0.0,0.0,0.0,9.451501952951979,0.0,0.0,0.0 -2394,my_land,2009-12-27,0.026082757527834576,subsurface_runoff,0.0,0.0,2.1705747315688355e-06,0.0,0.0,0.0,0.0,0.0,6.444817053548904,0.0,0.0,0.0 -2395,my_land,2009-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0 -2396,my_groundwater,2009-12-27,6.721204366819745,tank,0.0,0.0,0.000669757778504277,0.0,0.0,0.0,0.0,0.0,11.711022951879126,0.0,0.0,0.0 -2397,my_reservoir,2009-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2398,gw1,2009-12-27,257.45879829226203,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2399,gw2,2009-12-27,267.54120170773797,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2400,my_sewer,2009-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.07,0.0,0.0,0.0 -2401,my_land,2009-12-28,5.285039565992235,percolation,0.0,0.0,0.0005037789349040067,0.0,0.0,0.0,0.0,0.0,9.423373675159528,0.0,0.0,0.0 -2402,my_land,2009-12-28,0.03025756405242786,subsurface_runoff,0.0,0.0,2.5602534186592234e-06,0.0,0.0,0.0,0.0,0.0,6.0411298700710905,0.0,0.0,0.0 -2403,my_land,2009-12-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.12,0.0,0.0,0.0 -2404,my_groundwater,2009-12-28,6.811989661353253,tank,0.0,0.0,0.0006783388838042764,0.0,0.0,0.0,0.0,0.0,11.674891906269382,0.0,0.0,0.0 -2405,my_reservoir,2009-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2406,gw1,2009-12-28,257.49240630364693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2407,gw2,2009-12-28,267.50759369635307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2408,my_sewer,2009-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9300000000000006,0.0,0.0,0.0 -2409,my_land,2009-12-29,5.597647160827557,percolation,0.0,0.0,0.0005272334395200553,0.0,0.0,0.0,0.0,0.0,9.084230831262616,0.0,0.0,0.0 -2410,my_land,2009-12-29,0.1380314624406272,subsurface_runoff,0.0,0.0,1.1172034929248117e-05,0.0,0.0,0.0,0.0,0.0,5.087820585471736,0.0,0.0,0.0 -2411,my_land,2009-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.93,0.0,0.0,0.0 -2412,my_groundwater,2009-12-29,6.908911790116716,tank,0.0,0.0,0.0006873760030421383,0.0,0.0,0.0,0.0,0.0,11.632162850462919,0.0,0.0,0.0 -2413,my_reservoir,2009-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2414,gw1,2009-12-29,257.5257902616226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2415,gw2,2009-12-29,267.4742097383774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2416,my_sewer,2009-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 -2417,my_land,2009-12-30,5.79959193001041,percolation,0.0,0.0,0.0005414960678622793,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2418,my_land,2009-12-30,0.1958395134625439,subsurface_runoff,0.0,0.0,1.5687912877446142e-05,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2419,my_land,2009-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,0.0,0.0 -2420,my_groundwater,2009-12-30,7.009702632073779,tank,0.0,0.0,0.0006966808758445865,0.0,0.0,0.0,0.0,0.0,11.585329387879021,0.0,0.0,0.0 -2421,my_reservoir,2009-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2422,gw1,2009-12-30,257.55895165987846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2423,gw2,2009-12-30,267.44104834012154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2424,my_sewer,2009-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8911678832116796,0.0,0.0,0.0 -2425,my_land,2009-12-31,5.683600091410202,percolation,0.0,0.0,0.0005306661465050337,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2426,my_land,2009-12-31,0.15667161077003514,subsurface_runoff,0.0,0.0,1.2550330301956913e-05,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2427,my_land,2009-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,0.0,0.0 -2428,my_groundwater,2009-12-31,7.107880234497302,tank,0.0,0.0,0.0007057420202088274,0.0,0.0,0.0,0.0,0.0,11.540828897732194,0.0,0.0,0.0 -2429,my_reservoir,2009-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2430,gw1,2009-12-31,257.5918919821459,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2431,gw2,2009-12-31,267.4081080178541,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2432,my_sewer,2010-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 -2433,my_land,2010-01-01,5.569928089581998,percolation,0.0,0.0,0.0005200528235749331,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2434,my_land,2010-01-01,0.1253372886160281,subsurface_runoff,0.0,0.0,1.004026424156553e-05,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2435,my_land,2010-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,0.0,0.0 -2436,my_groundwater,2010-01-01,7.203498355734692,tank,0.0,0.0,0.0007145644547810807,0.0,0.0,0.0,0.0,0.0,11.498497763254639,0.0,0.0,0.0 -2437,my_reservoir,2010-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2438,gw1,2010-01-01,257.6246127022649,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2439,gw2,2010-01-01,267.3753872977351,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2440,my_sewer,2010-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 -2441,my_land,2010-01-02,5.458529527790358,percolation,0.0,0.0,0.0005096517671034344,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2442,my_land,2010-01-02,0.10026983089282249,subsurface_runoff,0.0,0.0,8.032211393252424e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2443,my_land,2010-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.17,0.0,0.0,0.0 -2444,my_groundwater,2010-01-02,7.296609675232516,tank,0.0,0.0,0.0007231530974744479,0.0,0.0,0.0,0.0,0.0,11.458187292075037,0.0,0.0,0.0 -2445,my_reservoir,2010-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2446,gw1,2010-01-02,257.6571152842498,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2447,gw2,2010-01-02,267.3428847157502,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2448,my_sewer,2010-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 -2449,my_land,2010-01-03,5.34935893723455,percolation,0.0,0.0,0.0004994587317613657,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2450,my_land,2010-01-03,0.08021586471425798,subsurface_runoff,0.0,0.0,6.42576911460194e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2451,my_land,2010-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.17,0.0,0.0,0.0 -2452,my_groundwater,2010-01-03,7.387265815123853,tank,0.0,0.0,0.0007315127674844753,0.0,0.0,0.0,0.0,0.0,11.419762052007016,0.0,0.0,0.0 -2453,my_reservoir,2010-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2454,gw1,2010-01-03,257.6894011823548,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2455,gw2,2010-01-03,267.3105988176452,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2456,my_sewer,2010-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.89116788321168,0.0,0.0,0.0 -2457,my_land,2010-01-04,5.242371758489859,percolation,0.0,0.0,0.0004894695571261384,0.0,0.0,0.0,0.0,0.0,8.851543111118001,0.0,0.0,0.0 -2458,my_land,2010-01-04,0.06417269177140639,subsurface_runoff,0.0,0.0,5.1406152916815516e-06,0.0,0.0,0.0,0.0,0.0,4.955781622540848,0.0,0.0,0.0 -2459,my_land,2010-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7899999999999996,0.0,0.0,0.0 -2460,my_groundwater,2010-01-04,7.475517361383873,tank,0.0,0.0,0.0007396481872644034,0.0,0.0,0.0,0.0,0.0,11.383098424676954,0.0,0.0,0.0 -2461,my_reservoir,2010-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2462,gw1,2010-01-04,257.7214718411391,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2463,gw2,2010-01-04,267.2785281588609,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2464,my_sewer,2010-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2465,my_land,2010-01-05,5.595701071922447,percolation,0.0,0.0,0.00051700062067468,0.0,0.0,0.0,0.0,0.0,8.43688645248716,0.0,0.0,0.0 -2466,my_land,2010-01-05,0.1760120986150529,subsurface_runoff,0.0,0.0,1.4267717999621283e-05,0.0,0.0,0.0,0.0,0.0,4.128152403889333,0.0,0.0,0.0 -2467,my_land,2010-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2468,my_groundwater,2010-01-05,7.570741054087406,tank,0.0,0.0,0.0007483237222885484,0.0,0.0,0.0,0.0,0.0,11.338768506647448,0.0,0.0,0.0 -2469,my_reservoir,2010-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2470,gw1,2010-01-05,257.7533286955315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2471,gw2,2010-01-05,267.2466713044685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2472,my_sewer,2010-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2473,my_land,2010-01-06,5.580116949603307,percolation,0.0,0.0,0.0005145366621982396,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2474,my_land,2010-01-06,0.16702189633947348,subsurface_runoff,0.0,0.0,1.3557318328146888e-05,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 -2475,my_land,2010-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.646428571,0.0,0.0,0.0 -2476,my_groundwater,2010-01-06,7.665409439354826,tank,0.0,0.0,0.0007569274093204341,0.0,0.0,0.0,0.0,0.0,11.294545275112634,0.0,0.0,0.0 -2477,my_reservoir,2010-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2478,gw1,2010-01-06,257.7849731708946,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2479,gw2,2010-01-06,267.2150268291054,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2480,my_sewer,2010-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2481,my_land,2010-01-07,5.4685146106112414,percolation,0.0,0.0,0.0005042459289542748,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2482,my_land,2010-01-07,0.1336175170715788,subsurface_runoff,0.0,0.0,1.084585466251751e-05,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 -2483,my_land,2010-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.692857143,0.0,0.0,0.0 -2484,my_groundwater,2010-01-07,7.757569248901024,tank,0.0,0.0,0.000765300097207988,0.0,0.0,0.0,0.0,0.0,11.252355988123506,0.0,0.0,0.0 -2485,my_reservoir,2010-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2486,gw1,2010-01-07,257.81640668308864,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2487,gw2,2010-01-07,267.18359331691136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2488,my_sewer,2010-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2489,my_land,2010-01-08,5.359144318399016,percolation,0.0,0.0,0.0004941610103751893,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2490,my_land,2010-01-08,0.10689401365726303,subsurface_runoff,0.0,0.0,8.676683730014009e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 -2491,my_land,2010-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.692857143,0.0,0.0,0.0 -2492,my_groundwater,2010-01-08,7.847272192260466,tank,0.0,0.0,0.0007734465532476057,0.0,0.0,0.0,0.0,0.0,11.212069648830404,0.0,0.0,0.0 -2493,my_reservoir,2010-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2494,gw1,2010-01-08,257.8476306385347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2495,gw2,2010-01-08,267.1523693614653,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2496,my_sewer,2010-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0 -2497,my_land,2010-01-09,5.2519614320310355,percolation,0.0,0.0,0.00048427779016768554,0.0,0.0,0.0,0.0,0.0,8.35458375819629,0.0,0.0,0.0 -2498,my_land,2010-01-09,0.08551521092581042,subsurface_runoff,0.0,0.0,6.941346984011207e-06,0.0,0.0,0.0,0.0,0.0,4.056144666249389,0.0,0.0,0.0 -2499,my_land,2010-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.692857143,0.0,0.0,0.0 -2500,my_groundwater,2010-01-09,7.934568940931875,tank,0.0,0.0,0.0007813714490214717,0.0,0.0,0.0,0.0,0.0,11.173566246336268,0.0,0.0,0.0 -2501,my_reservoir,2010-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2502,gw1,2010-01-09,257.8786464342778,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2503,gw2,2010-01-09,267.1213535657222,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2504,my_sewer,2010-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 -2505,my_land,2010-01-10,5.271405021349969,percolation,0.0,0.0,0.0004851472857525874,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 -2506,my_land,2010-01-10,0.10228504437590111,subsurface_runoff,0.0,0.0,8.425200413945183e-06,0.0,0.0,0.0,0.0,0.0,3.9706709156643982,0.0,0.0,0.0 -2507,my_land,2010-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 -2508,my_groundwater,2010-01-10,8.022043263657027,tank,0.0,0.0,0.0007892942330017385,0.0,0.0,0.0,0.0,0.0,11.134417378656101,0.0,0.0,0.0 -2509,my_reservoir,2010-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2510,gw1,2010-01-10,257.9094554580493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2511,gw2,2010-01-10,267.0905445419507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2512,my_sewer,2010-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.832142857,0.0,0.0,0.0 -2513,my_land,2010-01-11,5.16597692092297,percolation,0.0,0.0,0.00047544434003753567,0.0,0.0,0.0,0.0,0.0,8.246982239984115,0.0,0.0,0.0 -2514,my_land,2010-01-11,0.08182803550072089,subsurface_runoff,0.0,0.0,6.740160331156146e-06,0.0,0.0,0.0,0.0,0.0,3.9706709156643987,0.0,0.0,0.0 -2515,my_land,2010-01-11,1.470360143031558e-19,surface_runoff,0.0,0.0,8.97436610737035e-24,0.0,0.0,0.0,0.0,0.0,3.924387471079308,0.0,0.0,0.0 -2516,my_groundwater,2010-01-11,8.107152685673817,tank,0.0,0.0,0.0007969996857699982,0.0,0.0,0.0,0.0,0.0,11.096962088057158,0.0,0.0,0.0 -2517,my_reservoir,2010-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2518,gw1,2010-01-11,257.940059088329,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2519,gw2,2010-01-11,267.059940911671,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2520,my_sewer,2010-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 -2521,my_land,2010-01-12,5.220255377539899,percolation,0.0,0.0,0.00047929673131235994,0.0,0.0,0.0,0.0,0.0,8.114873689909818,0.0,0.0,0.0 -2522,my_land,2010-01-12,0.10834623657347146,subsurface_runoff,0.0,0.0,9.02785019025145e-06,0.0,0.0,0.0,0.0,0.0,3.9312350398500895,0.0,0.0,0.0 -2523,my_land,2010-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 -2524,my_groundwater,2010-01-12,8.193154288430982,tank,0.0,0.0,0.0008047642985858606,0.0,0.0,0.0,0.0,0.0,11.058282846148265,0.0,0.0,0.0 -2525,my_reservoir,2010-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2526,gw1,2010-01-12,257.97045869440683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2527,gw2,2010-01-12,267.02954130559317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2528,my_sewer,2010-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.925,0.0,0.0,0.0 -2529,my_land,2010-01-13,5.185501125226548,percolation,0.0,0.0,0.000475639795819567,0.0,0.0,0.0,0.0,0.0,8.058602747324542,0.0,0.0,0.0 -2530,my_land,2010-01-13,0.10562960292883065,subsurface_runoff,0.0,0.0,8.835613249739743e-06,0.0,0.0,0.0,0.0,0.0,3.930207122192752,0.0,0.0,0.0 -2531,my_land,2010-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3285714290000006,0.0,0.0,0.0 -2532,my_groundwater,2010-01-13,8.278233389902015,tank,0.0,0.0,0.0008124350551114371,0.0,0.0,0.0,0.0,0.0,11.020031666547709,0.0,0.0,0.0 -2533,my_reservoir,2010-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2534,gw1,2010-01-13,258.0006556364441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2535,gw2,2010-01-13,266.9993443635559,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2536,my_sewer,2010-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 -2537,my_land,2010-01-14,5.209306213210817,percolation,0.0,0.0,0.0004769237402337495,0.0,0.0,0.0,0.0,0.0,7.964900265215151,0.0,0.0,0.0 -2538,my_land,2010-01-14,0.11920167159171746,subsurface_runoff,0.0,0.0,1.0006379125118009e-05,0.0,0.0,0.0,0.0,0.0,4.017654880112094,0.0,0.0,0.0 -2539,my_land,2010-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.732142857,0.0,0.0,0.0 -2540,my_groundwater,2010-01-14,8.363584397196195,tank,0.0,0.0,0.0008201127721855599,0.0,0.0,0.0,0.0,0.0,10.98129393711545,0.0,0.0,0.0 -2541,my_reservoir,2010-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2542,gw1,2010-01-14,258.03065126553446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2543,gw2,2010-01-14,266.96934873446554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2544,my_sewer,2010-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 -2545,my_land,2010-01-15,5.439003679181147,percolation,0.0,0.0,0.0004947111582193492,0.0,0.0,0.0,0.0,0.0,7.755879344286624,0.0,0.0,0.0 -2546,my_land,2010-01-15,0.1862140148882167,subsurface_runoff,0.0,0.0,1.5440720385883434e-05,0.0,0.0,0.0,0.0,0.0,4.2822248709157815,0.0,0.0,0.0 -2547,my_land,2010-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.135714286,0.0,0.0,0.0 -2548,my_groundwater,2010-01-15,8.45339801110082,tank,0.0,0.0,0.0008281333959759898,0.0,0.0,0.0,0.0,0.0,10.939047469084326,0.0,0.0,0.0 -2549,my_reservoir,2010-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2550,gw1,2010-01-15,258.06044692376423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2551,gw2,2010-01-15,266.93955307623577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2552,my_sewer,2010-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 -2553,my_land,2010-01-16,5.493487049110043,percolation,0.0,0.0,0.0004981146742631363,0.0,0.0,0.0,0.0,0.0,7.671509146608003,0.0,0.0,0.0 -2554,my_land,2010-01-16,0.19339663871670099,subsurface_runoff,0.0,0.0,1.597100874630516e-05,0.0,0.0,0.0,0.0,0.0,4.4280380722832415,0.0,0.0,0.0 -2555,my_land,2010-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.539285714,0.0,0.0,0.0 -2556,my_groundwater,2010-01-16,8.544096216715666,tank,0.0,0.0,0.0008362032540692637,0.0,0.0,0.0,0.0,0.0,10.896279415185015,0.0,0.0,0.0 -2557,my_reservoir,2010-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2558,gw1,2010-01-16,258.09004394427245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2559,gw2,2010-01-16,266.90995605572755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2560,my_sewer,2010-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 -2561,my_land,2010-01-17,5.3836173081278424,percolation,0.0,0.0,0.00048815238077787364,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 -2562,my_land,2010-01-17,0.15471731097336078,subsurface_runoff,0.0,0.0,1.2776806997044128e-05,0.0,0.0,0.0,0.0,0.0,4.4280380722832415,0.0,0.0,0.0 -2563,my_land,2010-01-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.942857143,0.0,0.0,0.0 -2564,my_groundwater,2010-01-17,8.632331042803623,tank,0.0,0.0,0.0008440501336856401,0.0,0.0,0.0,0.0,0.0,10.855338108520813,0.0,0.0,0.0 -2565,my_reservoir,2010-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2566,gw1,2010-01-17,258.11944365131063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2567,gw2,2010-01-17,266.88055634868937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2568,my_sewer,2010-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.288793103517241,0.0,0.0,0.0 -2569,my_land,2010-01-18,5.275944961965285,percolation,0.0,0.0,0.00047838933316231617,0.0,0.0,0.0,0.0,0.0,7.6715091466080025,0.0,0.0,0.0 -2570,my_land,2010-01-18,0.12377384877868863,subsurface_runoff,0.0,0.0,1.0221445597635302e-05,0.0,0.0,0.0,0.0,0.0,4.4280380722832415,0.0,0.0,0.0 -2571,my_land,2010-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.346428571,0.0,0.0,0.0 -2572,my_groundwater,2010-01-18,8.718153380493764,tank,0.0,0.0,0.0008516786483479445,0.0,0.0,0.0,0.0,0.0,10.816114973373951,0.0,0.0,0.0 -2573,my_reservoir,2010-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2574,gw1,2010-01-18,258.1486473603019,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2575,gw2,2010-01-18,266.8513526396981,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2576,my_sewer,2010-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 -2577,my_land,2010-01-19,5.404971714225109,percolation,0.0,0.0,0.0004880645082684431,0.0,0.0,0.0,0.0,0.0,7.597066360888079,0.0,0.0,0.0 -2578,my_land,2010-01-19,0.1628410250091085,subsurface_runoff,0.0,0.0,1.3413336551407082e-05,0.0,0.0,0.0,0.0,0.0,5.026895812128009,0.0,0.0,0.0 -2579,my_land,2010-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 -2580,my_groundwater,2010-01-19,8.806387778367826,tank,0.0,0.0,0.0008594850506453965,0.0,0.0,0.0,0.0,0.0,10.775895166590361,0.0,0.0,0.0 -2581,my_reservoir,2010-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2582,gw1,2010-01-19,258.1776563778999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2583,gw2,2010-01-19,266.8223436221001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2584,my_sewer,2010-01-20,3.469446951953614e-18,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 -2585,my_land,2010-01-20,5.545449938784897,percolation,0.0,0.0,0.0004983519242412896,0.0,0.0,0.0,0.0,0.0,7.538491083432965,0.0,0.0,0.0 -2586,my_land,2010-01-20,0.1979129992846445,subsurface_runoff,0.0,0.0,1.618609948281693e-05,0.0,0.0,0.0,0.0,0.0,5.458695121181545,0.0,0.0,0.0 -2587,my_land,2010-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.628571429,0.0,0.0,0.0 -2588,my_groundwater,2010-01-20,8.897261325532886,tank,0.0,0.0,0.000867481359333695,0.0,0.0,0.0,0.0,0.0,10.73481859609858,0.0,0.0,0.0 -2589,my_reservoir,2010-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2590,gw1,2010-01-20,258.20647200204724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2591,gw2,2010-01-20,266.79352799795276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2592,my_sewer,2010-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.507142857000001,0.0,0.0,0.0 -2593,my_land,2010-01-21,5.864379918798938,percolation,0.0,0.0,0.0005218103629598466,0.0,0.0,0.0,0.0,0.0,7.442225220176505,0.0,0.0,0.0 -2594,my_land,2010-01-21,0.275293386853495,subsurface_runoff,0.0,0.0,2.204424753275226e-05,0.0,0.0,0.0,0.0,0.0,5.784322022665175,0.0,0.0,0.0 -2595,my_land,2010-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.507142857,0.0,0.0,0.0 -2596,my_groundwater,2010-01-21,8.994400191994602,tank,0.0,0.0,0.0008759352240384719,0.0,0.0,0.0,0.0,0.0,10.691116243620753,0.0,0.0,0.0 -2597,my_reservoir,2010-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2598,gw1,2010-01-21,258.2350955220336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2599,gw2,2010-01-21,266.7649044779664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2600,my_sewer,2010-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2601,my_land,2010-01-22,6.350159495292647,percolation,0.0,0.0,0.0005559979442267178,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 -2602,my_land,2010-01-22,0.38433462101196253,subsurface_runoff,0.0,0.0,2.977792551628838e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2603,my_land,2010-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.385714286,0.0,0.0,0.0 -2604,my_groundwater,2010-01-22,9.10118529552593,tank,0.0,0.0,0.0008850639155572768,0.0,0.0,0.0,0.0,0.0,10.643179567872199,0.0,0.0,0.0 -2605,my_reservoir,2010-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2606,gw1,2010-01-22,258.26352821855335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2607,gw2,2010-01-22,266.73647178144665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2608,my_sewer,2010-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2609,my_land,2010-01-23,6.2231563053867935,percolation,0.0,0.0,0.0005448779853421834,0.0,0.0,0.0,0.0,0.0,7.316189017804241,0.0,0.0,0.0 -2610,my_land,2010-01-23,0.30746769680957003,subsurface_runoff,0.0,0.0,2.3822340413030704e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2611,my_land,2010-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.385714286,0.0,0.0,0.0 -2612,my_groundwater,2010-01-23,9.205118014218204,tank,0.0,0.0,0.0008939434147557066,0.0,0.0,0.0,0.0,0.0,10.597391771782826,0.0,0.0,0.0 -2613,my_reservoir,2010-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2614,gw1,2010-01-23,258.291771363763,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2615,gw2,2010-01-23,266.708228636237,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2616,my_sewer,2010-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2617,my_land,2010-01-24,6.098693179279057,percolation,0.0,0.0,0.0005339804256353398,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2618,my_land,2010-01-24,0.24597415744765605,subsurface_runoff,0.0,0.0,1.9057872330424564e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2619,my_land,2010-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142857143,0.0,0.0,0.0 -2620,my_groundwater,2010-01-24,9.306257187475126,tank,0.0,0.0,0.0009025788720263938,0.0,0.0,0.0,0.0,0.0,10.553618236185576,0.0,0.0,0.0 -2621,my_reservoir,2010-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2622,gw1,2010-01-24,258.3198262213379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2623,gw2,2010-01-24,266.6801737786621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2624,my_sewer,2010-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2625,my_land,2010-01-25,5.976719315693476,percolation,0.0,0.0,0.000523300817122633,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2626,my_land,2010-01-25,0.19677932595812483,subsurface_runoff,0.0,0.0,1.5246297864339652e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2627,my_land,2010-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142857143,0.0,0.0,0.0 -2628,my_groundwater,2010-01-25,9.404660473433054,tank,0.0,0.0,0.0009109753343377529,0.0,0.0,0.0,0.0,0.0,10.511735326474067,0.0,0.0,0.0 -2629,my_reservoir,2010-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2630,gw1,2010-01-25,258.347694046529,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2631,gw2,2010-01-25,266.652305953471,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2632,my_sewer,2010-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2633,my_land,2010-01-26,5.857184929379606,percolation,0.0,0.0,0.0005128348007801803,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2634,my_land,2010-01-26,0.15742346076649988,subsurface_runoff,0.0,0.0,1.219703829147172e-05,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2635,my_land,2010-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.142857143,0.0,0.0,0.0 -2636,my_groundwater,2010-01-26,9.500384372597557,tank,0.0,0.0,0.000919137747303505,0.0,0.0,0.0,0.0,0.0,10.47162929414594,0.0,0.0,0.0 -2637,my_reservoir,2010-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2638,gw1,2010-01-26,258.3753760862188,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2639,gw2,2010-01-26,266.6246239137812,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2640,my_sewer,2010-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.411734694071429,0.0,0.0,0.0 -2641,my_land,2010-01-27,5.740041230792015,percolation,0.0,0.0,0.0005025781047645767,0.0,0.0,0.0,0.0,0.0,7.31618901780424,0.0,0.0,0.0 -2642,my_land,2010-01-27,0.12593876861319991,subsurface_runoff,0.0,0.0,9.757630633177377e-06,0.0,0.0,0.0,0.0,0.0,5.9255517105819955,0.0,0.0,0.0 -2643,my_land,2010-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.910714286,0.0,0.0,0.0 -2644,my_groundwater,2010-01-27,9.593484251007185,tank,0.0,0.0,0.0009270709572108108,0.0,0.0,0.0,0.0,0.0,10.433195307584425,0.0,0.0,0.0 -2645,my_reservoir,2010-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2646,gw1,2010-01-27,258.40287357897734,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2647,gw2,2010-01-27,266.59712642102266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2648,my_sewer,2010-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2649,my_land,2010-01-28,5.948977579347393,percolation,0.0,0.0,0.0005173384354337487,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 -2650,my_land,2010-01-28,0.18884276269225234,subsurface_runoff,0.0,0.0,1.4557639952654421e-05,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -2651,my_land,2010-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2652,my_groundwater,2010-01-28,9.690604726816382,tank,0.0,0.0,0.0009352848122533994,0.0,0.0,0.0,0.0,0.0,10.393080062630078,0.0,0.0,0.0 -2653,my_reservoir,2010-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2654,gw1,2010-01-28,258.43018775511746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2655,gw2,2010-01-28,266.56981224488254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2656,my_sewer,2010-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2657,my_land,2010-01-29,5.829998027760445,percolation,0.0,0.0,0.0005069916667250737,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 -2658,my_land,2010-01-29,0.15107421015380187,subsurface_runoff,0.0,0.0,1.1646111962123537e-05,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -2659,my_land,2010-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.932142857,0.0,0.0,0.0 -2660,my_groundwater,2010-01-29,9.785060317707321,tank,0.0,0.0,0.0009432675020096692,0.0,0.0,0.0,0.0,0.0,10.354633166148314,0.0,0.0,0.0 -2661,my_reservoir,2010-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2662,gw1,2010-01-29,258.45731983675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2663,gw2,2010-01-29,266.54268016325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2664,my_sewer,2010-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2665,my_land,2010-01-30,5.713398067205237,percolation,0.0,0.0,0.0004968518333905722,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 -2666,my_land,2010-01-30,0.1208593681230415,subsurface_runoff,0.0,0.0,9.31688956969883e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -2667,my_land,2010-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.932142857,0.0,0.0,0.0 -2668,my_groundwater,2010-01-30,9.876906127566874,tank,0.0,0.0,0.0009510238170058103,0.0,0.0,0.0,0.0,0.0,10.317758319609332,0.0,0.0,0.0 -2669,my_reservoir,2010-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2670,gw1,2010-01-30,258.4842710378383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2671,gw2,2010-01-30,266.5157289621617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2672,my_sewer,2010-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2673,my_land,2010-01-31,5.599130105861132,percolation,0.0,0.0,0.0004869147967227608,0.0,0.0,0.0,0.0,0.0,7.223223845737997,0.0,0.0,0.0 -2674,my_land,2010-01-31,0.0966874944984332,subsurface_runoff,0.0,0.0,7.453511655759064e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -2675,my_land,2010-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.932142857,0.0,0.0,0.0 -2676,my_groundwater,2010-01-31,9.966196153688701,tank,0.0,0.0,0.0009585584515394378,0.0,0.0,0.0,0.0,0.0,10.282366468512393,0.0,0.0,0.0 -2677,my_reservoir,2010-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2678,gw1,2010-01-31,258.5110425642527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2679,gw2,2010-01-31,266.4889574357473,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2680,my_sewer,2010-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.921428571,0.0,0.0,0.0 -2681,my_land,2010-02-01,5.487147503743909,percolation,0.0,0.0,0.00047717650078830557,0.0,0.0,0.0,0.0,0.0,7.223223845737998,0.0,0.0,0.0 -2682,my_land,2010-02-01,0.07734999559874656,subsurface_runoff,0.0,0.0,5.962809324607251e-06,0.0,0.0,0.0,0.0,0.0,5.7773569620779055,0.0,0.0,0.0 -2683,my_land,2010-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.964285714,0.0,0.0,0.0 -2684,my_groundwater,2010-02-01,10.052983308916408,tank,0.0,0.0,0.0009658760056052083,0.0,0.0,0.0,0.0,0.0,10.248375133426316,0.0,0.0,0.0 -2685,my_reservoir,2010-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2686,gw1,2010-02-01,258.53763561382436,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2687,gw2,2010-02-01,266.46236438617564,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2688,my_sewer,2010-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2689,my_land,2010-02-02,5.4619531515295705,percolation,0.0,0.0,0.000474456910441503,0.0,0.0,0.0,0.0,0.0,7.199284322180771,0.0,0.0,0.0 -2690,my_land,2010-02-02,0.08488641766553862,subsurface_runoff,0.0,0.0,6.627101791376562e-06,0.0,0.0,0.0,0.0,0.0,5.75007588655856,0.0,0.0,0.0 -2691,my_land,2010-02-02,7.700984001047825e-19,surface_runoff,0.0,0.0,4.7003076178270417e-23,0.0,0.0,0.0,0.0,0.0,5.578035584901133,0.0,0.0,0.0 -2692,my_groundwater,2010-02-02,10.139040611228827,tank,0.0,0.0,0.0009731199026966116,0.0,0.0,0.0,0.0,0.0,10.21493728754887,0.0,0.0,0.0 -2693,my_reservoir,2010-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2694,gw1,2010-02-02,258.5640513763989,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2695,gw2,2010-02-02,266.4359486236011,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2696,my_sewer,2010-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2697,my_land,2010-02-03,5.412538085648388,percolation,0.0,0.0,0.00046981752641690126,0.0,0.0,0.0,0.0,0.0,7.1825849507588515,0.0,0.0,0.0 -2698,my_land,2010-02-03,0.08418777281254215,subsurface_runoff,0.0,0.0,6.621342435612355e-06,0.0,0.0,0.0,0.0,0.0,5.738153905466668,0.0,0.0,0.0 -2699,my_land,2010-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.021428571,0.0,0.0,0.0 -2700,my_groundwater,2010-02-03,10.223876820730025,tank,0.0,0.0,0.0009802512454419286,0.0,0.0,0.0,0.0,0.0,10.182257302968697,0.0,0.0,0.0 -2701,my_reservoir,2010-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2702,gw1,2010-02-03,258.59029103388957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2703,gw2,2010-02-03,266.40970896611043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2704,my_sewer,2010-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2705,my_land,2010-02-04,5.361160998090796,percolation,0.0,0.0,0.0004650519439924097,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -2706,my_land,2010-02-04,0.08282604795217677,subsurface_runoff,0.0,0.0,6.5571469019174934e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2707,my_land,2010-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.067857143,0.0,0.0,0.0 -2708,my_groundwater,2010-02-04,10.307455048996477,tank,0.0,0.0,0.0009872677461881692,0.0,0.0,0.0,0.0,0.0,10.150332265750546,0.0,0.0,0.0 -2709,my_reservoir,2010-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2710,gw1,2010-02-04,258.6163557603303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2711,gw2,2010-02-04,266.3836442396697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2712,my_sewer,2010-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2713,my_land,2010-02-05,5.2539377781289796,percolation,0.0,0.0,0.0004557509051125615,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -2714,my_land,2010-02-05,0.06626083836174142,subsurface_runoff,0.0,0.0,5.245717521533995e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2715,my_land,2010-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.114285714,0.0,0.0,0.0 -2716,my_groundwater,2010-02-05,10.388641573285897,tank,0.0,0.0,0.0009940773631053473,0.0,0.0,0.0,0.0,0.0,10.119618912270518,0.0,0.0,0.0 -2717,my_reservoir,2010-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2718,gw1,2010-02-05,258.6422467219281,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2719,gw2,2010-02-05,266.3577532780719,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2720,my_sewer,2010-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2721,my_land,2010-02-06,5.1488590225664,percolation,0.0,0.0,0.0004466358870103103,0.0,0.0,0.0,0.0,0.0,7.167119346299052,0.0,0.0,0.0 -2722,my_land,2010-02-06,0.053008670689393134,subsurface_runoff,0.0,0.0,4.196574017227196e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2723,my_land,2010-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.160714285999999,0.0,0.0,0.0 -2724,my_groundwater,2010-02-06,10.467486028026356,tank,0.0,0.0,0.0010006844002545796,0.0,0.0,0.0,0.0,0.0,10.090054089646225,0.0,0.0,0.0 -2725,my_reservoir,2010-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2726,gw1,2010-02-06,258.66796507711524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2727,gw2,2010-02-06,266.33203492288476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2728,my_sewer,2010-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2729,my_land,2010-02-07,5.045881842115072,percolation,0.0,0.0,0.00043770316927010407,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2730,my_land,2010-02-07,0.04240693655151451,subsurface_runoff,0.0,0.0,3.357259213781757e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2731,my_land,2010-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.207142857,0.0,0.0,0.0 -2732,my_groundwater,2010-02-07,10.544037050456488,tank,0.0,0.0,0.0010070930751997988,0.0,0.0,0.0,0.0,0.0,10.061578934624475,0.0,0.0,0.0 -2733,my_reservoir,2010-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2734,gw1,2010-02-07,258.69351197660114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2735,gw2,2010-02-07,266.30648802339886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2736,my_sewer,2010-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2737,my_land,2010-02-08,4.944964205272771,percolation,0.0,0.0,0.00042894910588470197,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2738,my_land,2010-02-08,0.033925549241211606,subsurface_runoff,0.0,0.0,2.6858073710254054e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2739,my_land,2010-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.253571429,0.0,0.0,0.0 -2740,my_groundwater,2010-02-08,10.618342300580542,tank,0.0,0.0,0.001013307520738738,0.0,0.0,0.0,0.0,0.0,10.034138515179773,0.0,0.0,0.0 -2741,my_reservoir,2010-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2742,gw1,2010-02-08,258.7188885634238,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2743,gw2,2010-02-08,266.2811114365762,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2744,my_sewer,2010-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2745,my_land,2010-02-09,4.846064921167316,percolation,0.0,0.0,0.0004203701237670079,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2746,my_land,2010-02-09,0.027140439392969284,subsurface_runoff,0.0,0.0,2.1486458968203244e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2747,my_land,2010-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2748,my_groundwater,2010-02-09,10.690448480724282,tank,0.0,0.0,0.0010193317865992908,0.0,0.0,0.0,0.0,0.0,10.007681507462033,0.0,0.0,0.0 -2749,my_reservoir,2010-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2750,gw1,2010-02-09,258.7440959730009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2751,gw2,2010-02-09,266.2559040269991,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2752,my_sewer,2010-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2753,my_land,2010-02-10,4.749143622743969,percolation,0.0,0.0,0.00041196272129166776,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2754,my_land,2010-02-10,0.02171235151437543,subsurface_runoff,0.0,0.0,1.7189167174562595e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2755,my_land,2010-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2756,my_groundwater,2010-02-10,10.76040135469976,tank,0.0,0.0,0.0010251698411019444,0.0,0.0,0.0,0.0,0.0,9.982159904091736,0.0,0.0,0.0 -2757,my_reservoir,2010-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2758,gw1,2010-02-10,258.76913533318094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2759,gw2,2010-02-10,266.23086466681906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2760,my_sewer,2010-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2761,my_land,2010-02-11,4.65416075028909,percolation,0.0,0.0,0.0004037234668658344,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 -2762,my_land,2010-02-11,0.017369881211500342,subsurface_runoff,0.0,0.0,1.3751333739650077e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2763,my_land,2010-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2764,my_groundwater,2010-02-11,10.828245766586752,tank,0.0,0.0,0.0010308255727889584,0.0,0.0,0.0,0.0,0.0,9.957528750310253,0.0,0.0,0.0 -2765,my_reservoir,2010-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2766,gw1,2010-02-11,258.79400776429304,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2767,gw2,2010-02-11,266.20599223570696,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2768,my_sewer,2010-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2769,my_land,2010-02-12,4.5610775352833075,percolation,0.0,0.0,0.0003956489975285177,0.0,0.0,0.0,0.0,0.0,7.167119346299054,0.0,0.0,0.0 -2770,my_land,2010-02-12,0.013895904969200273,subsurface_runoff,0.0,0.0,1.1001066991720063e-06,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2771,my_land,2010-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2772,my_groundwater,2010-02-12,10.894025659138553,tank,0.0,0.0,0.0010363027920209595,0.0,0.0,0.0,0.0,0.0,9.933745904930765,0.0,0.0,0.0 -2773,my_reservoir,2010-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2774,gw1,2010-02-12,258.81871437919773,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2775,gw2,2010-02-12,266.18128562080227,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2776,my_sewer,2010-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2777,my_land,2010-02-13,4.4698559845776416,percolation,0.0,0.0,0.00038773601757794736,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2778,my_land,2010-02-13,0.011116723975360218,subsurface_runoff,0.0,0.0,8.80085359337605e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2779,my_land,2010-02-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2780,my_groundwater,2010-02-13,10.957784091819608,tank,0.0,0.0,0.0010416052325416011,0.0,0.0,0.0,0.0,0.0,9.91077182341208,0.0,0.0,0.0 -2781,my_reservoir,2010-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2782,gw1,2010-02-13,258.8432562833364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2783,gw2,2010-02-13,266.1567437166636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2784,my_sewer,2010-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2785,my_land,2010-02-14,4.380458864886089,percolation,0.0,0.0,0.0003799812972263884,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2786,my_land,2010-02-14,0.008893379180288175,subsurface_runoff,0.0,0.0,7.04068287470084e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2787,my_land,2010-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2788,my_groundwater,2010-02-14,11.019563258482382,tank,0.0,0.0,0.0010467365530109271,0.0,0.0,0.0,0.0,0.0,9.888569360703048,0.0,0.0,0.0 -2789,my_reservoir,2010-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2790,gw1,2010-02-14,258.8676345747808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2791,gw2,2010-02-14,266.1323654252192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2792,my_sewer,2010-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2793,my_land,2010-02-15,4.292849687588367,percolation,0.0,0.0,0.00037238167128186064,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2794,my_land,2010-02-15,0.00711470334423054,subsurface_runoff,0.0,0.0,5.632546299760672e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2795,my_land,2010-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2796,my_groundwater,2010-02-15,11.079404504690654,tank,0.0,0.0,0.0010517003385080662,0.0,0.0,0.0,0.0,0.0,9.86710359178685,0.0,0.0,0.0 -2797,my_reservoir,2010-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2798,gw1,2010-02-15,258.89185034428226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2799,gw2,2010-02-15,266.10814965571774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2800,my_sewer,2010-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.475,0.0,0.0,0.0 -2801,my_land,2010-02-16,4.206992693836599,percolation,0.0,0.0,0.00036493403785622345,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2802,my_land,2010-02-16,0.005691762675384432,subsurface_runoff,0.0,0.0,4.506037039808538e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2803,my_land,2010-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2804,my_groundwater,2010-02-16,11.137348344696315,tank,0.0,0.0,0.0010565001020038693,0.0,0.0,0.0,0.0,0.0,9.84634164809865,0.0,0.0,0.0 -2805,my_reservoir,2010-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2806,gw1,2010-02-16,258.9159046753204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2807,gw2,2010-02-16,266.0840953246796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2808,my_sewer,2010-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.35,0.0,0.0,0.0 -2809,my_land,2010-02-17,4.122852839959867,percolation,0.0,0.0,0.00035763535709909896,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2810,my_land,2010-02-17,0.004553410140307546,subsurface_runoff,0.0,0.0,3.6048296318468305e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2811,my_land,2010-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2812,my_groundwater,2010-02-17,11.193434478076615,tank,0.0,0.0,0.0010611392858040913,0.0,0.0,0.0,0.0,0.0,9.826252568202333,0.0,0.0,0.0 -2813,my_reservoir,2010-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2814,gw1,2010-02-17,258.9397986441516,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2815,gw2,2010-02-17,266.0602013558484,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2816,my_sewer,2010-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -2817,my_land,2010-02-18,4.04039578316067,percolation,0.0,0.0,0.000350482649957117,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2818,my_land,2010-02-18,0.0036427281122460367,subsurface_runoff,0.0,0.0,2.883863705477464e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2819,my_land,2010-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.3,0.0,0.0,0.0 -2820,my_groundwater,2010-02-18,11.247701806038624,tank,0.0,0.0,0.0010656212629637082,0.0,0.0,0.0,0.0,0.0,9.806807161297083,0.0,0.0,0.0 -2821,my_reservoir,2010-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2822,gw1,2010-02-18,258.9635333198573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2823,gw2,2010-02-18,266.0364666801427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2824,my_sewer,2010-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -2825,my_land,2010-02-19,3.9595878674974565,percolation,0.0,0.0,0.00034347299695797466,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2826,my_land,2010-02-19,0.0029141824897968294,subsurface_runoff,0.0,0.0,2.3070909643819713e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2827,my_land,2010-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -2828,my_groundwater,2010-02-19,11.300188447397582,tank,0.0,0.0,0.0010699493386729434,0.0,0.0,0.0,0.0,0.0,9.787977882285835,0.0,0.0,0.0 -2829,my_reservoir,2010-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2830,gw1,2010-02-19,258.98710976439156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2831,gw2,2010-02-19,266.01289023560844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2832,my_sewer,2010-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -2833,my_land,2010-02-20,3.8803961101475073,percolation,0.0,0.0,0.00033660353701881515,0.0,0.0,0.0,0.0,0.0,7.167119346299053,0.0,0.0,0.0 -2834,my_land,2010-02-20,0.0023313459918374636,subsurface_runoff,0.0,0.0,1.845672771505577e-07,0.0,0.0,0.0,0.0,0.0,5.735645591948206,0.0,0.0,0.0 -2835,my_land,2010-02-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.975,0.0,0.0,0.0 -2836,my_groundwater,2010-02-20,11.350931754235663,tank,0.0,0.0,0.0010741267516155726,0.0,0.0,0.0,0.0,0.0,9.769738717278955,0.0,0.0,0.0 -2837,my_reservoir,2010-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2838,gw1,2010-02-20,259.01052903262894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2839,gw2,2010-02-20,265.98947096737106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2840,my_sewer,2010-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 -2841,my_land,2010-02-21,3.9617018093466765,percolation,0.0,0.0,0.00034420693913480557,0.0,0.0,0.0,0.0,0.0,7.108027656057285,0.0,0.0,0.0 -2842,my_land,2010-02-21,0.0451068785355433,subsurface_runoff,0.0,0.0,4.048462762228392e-06,0.0,0.0,0.0,0.0,0.0,5.695692243007906,0.0,0.0,0.0 -2843,my_land,2010-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 -2844,my_groundwater,2010-02-21,11.403203354540345,tank,0.0,0.0,0.0010784485045689208,0.0,0.0,0.0,0.0,0.0,9.750913818558999,0.0,0.0,0.0 -2845,my_reservoir,2010-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2846,gw1,2010-02-21,259.03379217241144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2847,gw2,2010-02-21,265.96620782758856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2848,my_sewer,2010-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.85,0.0,0.0,0.0 -2849,my_land,2010-02-22,3.9641066333915096,percolation,0.0,0.0,0.0003447047343948637,0.0,0.0,0.0,0.0,0.0,7.076869290474284,0.0,0.0,0.0 -2850,my_land,2010-02-22,0.05830015867381337,subsurface_runoff,0.0,0.0,5.247459745226035e-06,0.0,0.0,0.0,0.0,0.0,5.6573561304673055,0.0,0.0,0.0 -2851,my_land,2010-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.725,0.0,0.0,0.0 -2852,my_groundwater,2010-02-22,11.455393231190893,tank,0.0,0.0,0.0010827695868291082,0.0,0.0,0.0,0.0,0.0,9.73207642611372,0.0,0.0,0.0 -2853,my_reservoir,2010-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2854,gw1,2010-02-22,259.0569002245954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2855,gw2,2010-02-22,265.9430997754046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2856,my_sewer,2010-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 -2857,my_land,2010-02-23,4.001660682026799,percolation,0.0,0.0,0.0003483406635056302,0.0,0.0,0.0,0.0,0.0,7.0303593348325935,0.0,0.0,0.0 -2858,my_land,2010-02-23,0.07843228511677025,subsurface_runoff,0.0,0.0,7.063280394456678e-06,0.0,0.0,0.0,0.0,0.0,5.5870443799653655,0.0,0.0,0.0 -2859,my_land,2010-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 -2860,my_groundwater,2010-02-23,11.508217126282748,tank,0.0,0.0,0.0010871538835119715,0.0,0.0,0.0,0.0,0.0,9.712951978166416,0.0,0.0,0.0 -2861,my_reservoir,2010-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2862,gw1,2010-02-23,259.0798542230981,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2863,gw2,2010-02-23,265.9201457769019,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2864,my_sewer,2010-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,0.0,0.0 -2865,my_land,2010-02-24,3.999798941748806,percolation,0.0,0.0,0.00034843573744881357,0.0,0.0,0.0,0.0,0.0,6.998170100625107,0.0,0.0,0.0 -2866,my_land,2010-02-24,0.08401697730771374,subsurface_runoff,0.0,0.0,7.572226278366969e-06,0.0,0.0,0.0,0.0,0.0,5.535469418753849,0.0,0.0,0.0 -2867,my_land,2010-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.935714286,0.0,0.0,0.0 -2868,my_groundwater,2010-02-24,11.56087106192407,tank,0.0,0.0,0.0010915291548869708,0.0,0.0,0.0,0.0,0.0,9.693831472685524,0.0,0.0,0.0 -2869,my_reservoir,2010-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2870,gw1,2010-02-24,259.10265519494413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2871,gw2,2010-02-24,265.89734480505587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2872,my_sewer,2010-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.271428571,0.0,0.0,0.0 -2873,my_land,2010-02-25,4.131500345287464,percolation,0.0,0.0,0.00036024807028029154,0.0,0.0,0.0,0.0,0.0,6.927342238119208,0.0,0.0,0.0 -2874,my_land,2010-02-25,0.12481831174375851,subsurface_runoff,0.0,0.0,1.1168270160232146e-05,0.0,0.0,0.0,0.0,0.0,5.572583646738271,0.0,0.0,0.0 -2875,my_land,2010-02-25,2.2687494927818128e-18,surface_runoff,0.0,0.0,1.384734797840462e-22,0.0,0.0,0.0,0.0,0.0,5.474117603764888,0.0,0.0,0.0 -2876,my_groundwater,2010-02-25,11.616074427012611,tank,0.0,0.0,0.0010961339534304594,0.0,0.0,0.0,0.0,0.0,9.673800860792598,0.0,0.0,0.0 -2877,my_reservoir,2010-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2878,gw1,2010-02-25,259.12530416031115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2879,gw2,2010-02-25,265.87469583968885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2880,my_sewer,2010-02-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 -2881,my_land,2010-02-26,4.338467821374922,percolation,0.0,0.0,0.000378131583575043,0.0,0.0,0.0,0.0,0.0,6.858528920498261,0.0,0.0,0.0 -2882,my_land,2010-02-26,0.17865668558363457,subsurface_runoff,0.0,0.0,1.5761411965017625e-05,0.0,0.0,0.0,0.0,0.0,5.715434017994769,0.0,0.0,0.0 -2883,my_land,2010-02-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.607142857,0.0,0.0,0.0 -2884,my_groundwater,2010-02-26,11.675353050165926,tank,0.0,0.0,0.001101091297212518,0.0,0.0,0.0,0.0,0.0,9.652504591263847,0.0,0.0,0.0 -2885,my_reservoir,2010-02-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2886,gw1,2010-02-26,259.14780213257575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2887,gw2,2010-02-26,265.85219786742425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2888,my_sewer,2010-02-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2889,my_land,2010-02-27,4.769831090687338,percolation,0.0,0.0,0.00041342207459314594,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2890,my_land,2010-02-27,0.2839138180559999,subsurface_runoff,0.0,0.0,2.4269843229049154e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2891,my_land,2010-02-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.942857143,0.0,0.0,0.0 -2892,my_groundwater,2010-02-27,11.743264800458075,tank,0.0,0.0,0.0011067546612022758,0.0,0.0,0.0,0.0,0.0,9.628792353636069,0.0,0.0,0.0 -2893,my_reservoir,2010-02-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2894,gw1,2010-02-27,259.17015011835855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2895,gw2,2010-02-27,265.82984988164145,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2896,my_sewer,2010-02-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2897,my_land,2010-02-28,4.67443446887359,percolation,0.0,0.0,0.00040515363310128304,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2898,my_land,2010-02-28,0.22713105444479992,subsurface_runoff,0.0,0.0,1.9415874583239322e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2899,my_land,2010-02-28,2.4222247140415e-19,surface_runoff,0.0,0.0,2.9568172778826906e-23,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2900,my_groundwater,2010-02-28,11.80906476871614,tank,0.0,0.0,0.0011122355449374034,0.0,0.0,0.0,0.0,0.0,9.605874917169388,0.0,0.0,0.0 -2901,my_reservoir,2010-02-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2902,gw1,2010-02-28,259.1923491175695,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2903,gw2,2010-02-28,265.8076508824305,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2904,my_sewer,2010-03-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2905,my_land,2010-03-01,4.580945779496118,percolation,0.0,0.0,0.00039705056043925737,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2906,my_land,2010-03-01,0.18170484355583993,subsurface_runoff,0.0,0.0,1.553269966659146e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2907,my_land,2010-03-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2908,my_groundwater,2010-03-01,11.872797074448378,tank,0.0,0.0,0.0011175377710554305,0.0,0.0,0.0,0.0,0.0,9.583716393336248,0.0,0.0,0.0 -2909,my_reservoir,2010-03-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2910,gw1,2010-03-01,259.2144001234524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2911,gw2,2010-03-01,265.7855998765476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2912,my_sewer,2010-03-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2913,my_land,2010-03-02,4.489326863906196,percolation,0.0,0.0,0.0003891095492304722,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2914,my_land,2010-03-02,0.14536387484467195,subsurface_runoff,0.0,0.0,1.2426159733273167e-05,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2915,my_land,2010-03-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2916,my_groundwater,2010-03-02,11.934504950063205,tank,0.0,0.0,0.0011226650853085553,0.0,0.0,0.0,0.0,0.0,9.56228300164578,0.0,0.0,0.0 -2917,my_reservoir,2010-03-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2918,gw1,2010-03-02,259.23630412262935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2919,gw2,2010-03-02,265.76369587737065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2920,my_sewer,2010-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2921,my_land,2010-03-03,4.399540326628072,percolation,0.0,0.0,0.00038132735824586276,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2922,my_land,2010-03-03,0.11629109987573756,subsurface_runoff,0.0,0.0,9.940927786618535e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2923,my_land,2010-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2924,my_groundwater,2010-03-03,11.994230758622976,tank,0.0,0.0,0.0011276211581024318,0.0,0.0,0.0,0.0,0.0,9.541542916941623,0.0,0.0,0.0 -2925,my_reservoir,2010-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2926,gw1,2010-03-03,259.25806209514514,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2927,gw2,2010-03-03,265.74193790485486,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2928,my_sewer,2010-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2929,my_land,2010-03-04,4.311549520095511,percolation,0.0,0.0,0.0003737008110809455,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2930,my_land,2010-03-04,0.09303287990059005,subsurface_runoff,0.0,0.0,7.952742229294828e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2931,my_land,2010-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2932,my_groundwater,2010-03-04,12.052016011242648,tank,0.0,0.0,0.0011324095860041807,0.0,0.0,0.0,0.0,0.0,9.52146612978894,0.0,0.0,0.0 -2933,my_reservoir,2010-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2934,gw1,2010-03-04,259.2796750145108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2935,gw2,2010-03-04,265.7203249854892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2936,my_sewer,2010-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2937,my_land,2010-03-05,4.225318529693601,percolation,0.0,0.0,0.00036622679485932657,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2938,my_land,2010-03-05,0.07442630392047203,subsurface_runoff,0.0,0.0,6.362193783435863e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2939,my_land,2010-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2940,my_groundwater,2010-03-05,12.107901384140447,tank,0.0,0.0,0.0011370338932202352,0.0,0.0,0.0,0.0,0.0,9.502024318660116,0.0,0.0,0.0 -2941,my_reservoir,2010-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2942,gw1,2010-03-05,259.3011438477474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2943,gw2,2010-03-05,265.6988561522526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2944,my_sewer,2010-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2945,my_land,2010-03-06,4.140812159099728,percolation,0.0,0.0,0.00035890225896214,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2946,my_land,2010-03-06,0.059541043136377626,subsurface_runoff,0.0,0.0,5.08975502674869e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2947,my_land,2010-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2948,my_groundwater,2010-03-06,12.161926735347484,tank,0.0,0.0,0.0011414975330446282,0.0,0.0,0.0,0.0,0.0,9.483190732771986,0.0,0.0,0.0 -2949,my_reservoir,2010-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2950,gw1,2010-03-06,259.3224695554291,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2951,gw2,2010-03-06,265.6775304445709,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2952,my_sewer,2010-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2953,my_land,2010-03-07,4.057995915917734,percolation,0.0,0.0,0.0003517242137828972,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2954,my_land,2010-03-07,0.0476328345091021,subsurface_runoff,0.0,0.0,4.071804021398952e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2955,my_land,2010-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2956,my_groundwater,2010-03-07,12.214131121083154,tank,0.0,0.0,0.0011458038892783113,0.0,0.0,0.0,0.0,0.0,9.464940084553216,0.0,0.0,0.0 -2957,my_reservoir,2010-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2958,gw1,2010-03-07,259.34365309172625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2959,gw2,2010-03-07,265.65634690827375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2960,my_sewer,2010-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2961,my_land,2010-03-08,3.976835997599379,percolation,0.0,0.0,0.00034468972950723925,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2962,my_land,2010-03-08,0.03810626760728168,subsurface_runoff,0.0,0.0,3.2574432171191618e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2963,my_land,2010-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2964,my_groundwater,2010-03-08,12.264552811803005,tank,0.0,0.0,0.0011499562776200842,0.0,0.0,0.0,0.0,0.0,9.447248450830843,0.0,0.0,0.0 -2965,my_reservoir,2010-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2966,gw1,2010-03-08,259.36469540444807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2967,gw2,2010-03-08,265.63530459555193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2968,my_sewer,2010-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2969,my_land,2010-03-09,3.8972992776473916,percolation,0.0,0.0,0.0003377959349170945,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2970,my_land,2010-03-09,0.030485014085825345,subsurface_runoff,0.0,0.0,2.6059545736953293e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2971,my_land,2010-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2972,my_groundwater,2010-03-09,12.313229307925605,tank,0.0,0.0,0.0011539579470297033,0.0,0.0,0.0,0.0,0.0,9.430093181922118,0.0,0.0,0.0 -2973,my_reservoir,2010-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2974,gw1,2010-03-09,259.38559743508506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2975,gw2,2010-03-09,265.61440256491494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2976,my_sewer,2010-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2977,my_land,2010-03-10,3.8193532920944437,percolation,0.0,0.0,0.0003310400162187526,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2978,my_land,2010-03-10,0.024388011268660276,subsurface_runoff,0.0,0.0,2.0847636589562634e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2979,my_land,2010-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2980,my_groundwater,2010-03-10,12.360197355244855,tank,0.0,0.0,0.001157812081063725,0.0,0.0,0.0,0.0,0.0,9.413452817903572,0.0,0.0,0.0 -2981,my_reservoir,2010-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2982,gw1,2010-03-10,259.4063601188512,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2983,gw2,2010-03-10,265.5936398811488,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2984,my_sewer,2010-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2985,my_land,2010-03-11,3.742966226252555,percolation,0.0,0.0,0.0003244192158943775,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2986,my_land,2010-03-11,0.01951040901492822,subsurface_runoff,0.0,0.0,1.6678109271650108e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2987,my_land,2010-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2988,my_groundwater,2010-03-11,12.405492960034028,tank,0.0,0.0,0.0011615217991846297,0.0,0.0,0.0,0.0,0.0,9.397307011404749,0.0,0.0,0.0 -2989,my_reservoir,2010-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2990,gw1,2010-03-11,259.42698438472553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2991,gw2,2010-03-11,265.57301561527447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2992,my_sewer,2010-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -2993,my_land,2010-03-12,3.6681069017275036,percolation,0.0,0.0,0.00031793083157649,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -2994,my_land,2010-03-12,0.015608327211942576,subsurface_runoff,0.0,0.0,1.3342487417320086e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -2995,my_land,2010-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -2996,my_groundwater,2010-03-12,12.449151403847681,tank,0.0,0.0,0.0011650901580437612,0.0,0.0,0.0,0.0,0.0,9.381636456341065,0.0,0.0,0.0 -2997,my_reservoir,2010-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2998,gw1,2010-03-12,259.44747115549404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2999,gw2,2010-03-12,265.55252884450596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3000,my_sewer,2010-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3001,my_land,2010-03-13,3.5947447636929537,percolation,0.0,0.0,0.0003115722149449602,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3002,my_land,2010-03-13,0.01248666176955406,subsurface_runoff,0.0,0.0,1.0673989933856069e-06,0.0,0.0,0.0,0.0,0.0,5.945814234547168,0.0,0.0,0.0 -3003,my_land,2010-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3004,my_groundwater,2010-03-13,12.491207258027526,tank,0.0,0.0,0.0011685201527386027,0.0,0.0,0.0,0.0,0.0,9.366422822059517,0.0,0.0,0.0 -3005,my_reservoir,2010-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3006,gw1,2010-03-13,259.46782134779073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3007,gw2,2010-03-13,265.53217865220927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3008,my_sewer,2010-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3009,my_land,2010-03-14,3.5228498684190948,percolation,0.0,0.0,0.000305340770646061,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3010,my_land,2010-03-14,0.009989329415643249,subsurface_runoff,0.0,0.0,8.539191947084855e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3011,my_land,2010-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3012,my_groundwater,2010-03-14,12.531694397918132,tank,0.0,0.0,0.0011718147180449082,0.0,0.0,0.0,0.0,0.0,9.351648692423591,0.0,0.0,0.0 -3013,my_reservoir,2010-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3014,gw1,2010-03-14,259.48803587213877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3015,gw2,2010-03-14,265.51196412786123,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3016,my_sewer,2010-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3017,my_land,2010-03-15,3.452392871050713,percolation,0.0,0.0,0.00029923395523313975,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3018,my_land,2010-03-15,0.007991463532514599,subsurface_runoff,0.0,0.0,6.831353557667884e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3019,my_land,2010-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3020,my_groundwater,2010-03-15,12.570646016798298,tank,0.0,0.0,0.001174976729624185,0.0,0.0,0.0,0.0,0.0,9.337297509410492,0.0,0.0,0.0 -3021,my_reservoir,2010-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3022,gw1,2010-03-15,259.5081156329912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3023,gw2,2010-03-15,265.4918843670088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3024,my_sewer,2010-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3025,my_land,2010-03-16,3.383345013629699,percolation,0.0,0.0,0.00029324927612847695,0.0,0.0,0.0,0.0,0.0,6.784752744716021,0.0,0.0,0.0 -3026,my_land,2010-03-16,0.006393170826011679,subsurface_runoff,0.0,0.0,5.465082846134307e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3027,my_land,2010-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3028,my_groundwater,2010-03-16,12.608094639533762,tank,0.0,0.0,0.0011780090052070256,0.0,0.0,0.0,0.0,0.0,9.32335352083551,0.0,0.0,0.0 -3029,my_reservoir,2010-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3030,gw1,2010-03-16,259.5280615287712,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3031,gw2,2010-03-16,265.4719384712288,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3032,my_sewer,2010-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9387125221851855,0.0,0.0,0.0 -3033,my_land,2010-03-17,3.315678113357105,percolation,0.0,0.0,0.0002873842906059074,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3034,my_land,2010-03-17,0.005114536660809343,subsurface_runoff,0.0,0.0,4.372066276907446e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3035,my_land,2010-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3036,my_groundwater,2010-03-17,12.64407213595684,tank,0.0,0.0,0.0011809143057527711,0.0,0.0,0.0,0.0,0.0,9.309801731855403,0.0,0.0,0.0 -3037,my_reservoir,2010-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3038,gw1,2010-03-17,259.5478744519127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3039,gw2,2010-03-17,265.4521255480873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3040,my_sewer,2010-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.235714286,0.0,0.0,0.0 -3041,my_land,2010-03-18,3.249364551089963,percolation,0.0,0.0,0.00028163660479378925,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3042,my_land,2010-03-18,0.004091629328647475,subsurface_runoff,0.0,0.0,3.497653021525957e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3043,my_land,2010-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3044,my_groundwater,2010-03-18,12.678609733978423,tank,0.0,0.0,0.0011836953365859772,0.0,0.0,0.0,0.0,0.0,9.296627859935871,0.0,0.0,0.0 -3045,my_reservoir,2010-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3046,gw1,2010-03-18,259.56755528889994,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3047,gw2,2010-03-18,265.43244471110006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3048,my_sewer,2010-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.478571429,0.0,0.0,0.0 -3049,my_land,2010-03-19,3.1843772600681635,percolation,0.0,0.0,0.0002760038726979135,0.0,0.0,0.0,0.0,0.0,6.784752744716022,0.0,0.0,0.0 -3050,my_land,2010-03-19,0.00327330346291798,subsurface_runoff,0.0,0.0,2.798122417220765e-07,0.0,0.0,0.0,0.0,0.0,5.945814234547167,0.0,0.0,0.0 -3051,my_land,2010-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.957430101734947,0.0,0.0,0.0 -3052,my_groundwater,2010-03-19,12.71173803243772,tank,0.0,0.0,0.0011863547485101485,0.0,0.0,0.0,0.0,0.0,9.283818292997825,0.0,0.0,0.0 -3053,my_reservoir,2010-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3054,gw1,2010-03-19,259.5871049203073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3055,gw2,2010-03-19,265.4128950796927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3056,my_sewer,2010-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 -3057,my_land,2010-03-20,3.1844894725267996,percolation,0.0,0.0,0.0002767707843500748,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 -3058,my_land,2010-03-20,0.019979121045164132,subsurface_runoff,0.0,0.0,1.9345951283761967e-06,0.0,0.0,0.0,0.0,0.0,8.310457695012751,0.0,0.0,0.0 -3059,my_land,2010-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.721428571,0.0,0.0,0.0 -3060,my_groundwater,2010-03-20,12.744785794475922,tank,0.0,0.0,0.001189023124034571,0.0,0.0,0.0,0.0,0.0,9.271298476219844,0.0,0.0,0.0 -3061,my_reservoir,2010-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3062,gw1,2010-03-20,259.6065242208386,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3063,gw2,2010-03-20,265.3934757791614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3064,my_sewer,2010-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.539285714500002,0.0,0.0,0.0 -3065,my_land,2010-03-21,3.1207996830762634,percolation,0.0,0.0,0.0002712353686630733,0.0,0.0,0.0,0.0,0.0,6.822465471440712,0.0,0.0,0.0 -3066,my_land,2010-03-21,0.015983296836131304,subsurface_runoff,0.0,0.0,1.5476761027009574e-06,0.0,0.0,0.0,0.0,0.0,8.310457695012751,0.0,0.0,0.0 -3067,my_land,2010-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.721428571,0.0,0.0,0.0 -3068,my_groundwater,2010-03-21,12.77645439496664,tank,0.0,0.0,0.0011915721433722684,0.0,0.0,0.0,0.0,0.0,9.259121722050157,0.0,0.0,0.0 -3069,my_reservoir,2010-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3070,gw1,2010-03-21,259.62581405936635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3071,gw2,2010-03-21,265.37418594063365,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3072,my_sewer,2010-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 -3073,my_land,2010-03-22,3.118758348124456,percolation,0.0,0.0,0.0002718172028229718,0.0,0.0,0.0,0.0,0.0,6.86624136855303,0.0,0.0,0.0 -3074,my_land,2010-03-22,0.029215116029372535,subsurface_runoff,0.0,0.0,2.8725739524083586e-06,0.0,0.0,0.0,0.0,0.0,8.745321776578425,0.0,0.0,0.0 -3075,my_land,2010-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.207142857,0.0,0.0,0.0 -3076,my_groundwater,2010-03-22,12.808002268208899,tank,0.0,0.0,0.001194126634642734,0.0,0.0,0.0,0.0,0.0,9.247260262341818,0.0,0.0,0.0 -3077,my_reservoir,2010-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3078,gw1,2010-03-22,259.64497529897056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3079,gw2,2010-03-22,265.35502470102944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3080,my_sewer,2010-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 -3081,my_land,2010-03-23,3.1609825893005827,percolation,0.0,0.0,0.000276691977652172,0.0,0.0,0.0,0.0,0.0,6.946555263769654,0.0,0.0,0.0 -3082,my_land,2010-03-23,0.05183451680679492,subsurface_runoff,0.0,0.0,5.103805797480334e-06,0.0,0.0,0.0,0.0,0.0,9.046227700666567,0.0,0.0,0.0 -3083,my_land,2010-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.45,0.0,0.0,0.0 -3084,my_groundwater,2010-03-23,12.84033083667771,tank,0.0,0.0,0.0011967739761726177,0.0,0.0,0.0,0.0,0.0,9.235730412522804,0.0,0.0,0.0 -3085,my_reservoir,2010-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3086,gw1,2010-03-23,259.66400879697744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3087,gw2,2010-03-23,265.33599120302256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3088,my_sewer,2010-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 -3089,my_land,2010-03-24,3.511208401455578,percolation,0.0,0.0,0.0003097473462123012,0.0,0.0,0.0,0.0,0.0,7.246756798766779,0.0,0.0,0.0 -3090,my_land,2010-03-24,0.15396978050421328,subsurface_runoff,0.0,0.0,1.4583509430684298e-05,0.0,0.0,0.0,0.0,0.0,9.374890316061649,0.0,0.0,0.0 -3091,my_land,2010-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.446428571,0.0,0.0,0.0 -3092,my_groundwater,2010-03-24,12.879708180615648,tank,0.0,0.0,0.0012000876122086508,0.0,0.0,0.0,0.0,0.0,9.224692259006915,0.0,0.0,0.0 -3093,my_reservoir,2010-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3094,gw1,2010-03-24,259.6829154049976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3095,gw2,2010-03-24,265.3170845950024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3096,my_sewer,2010-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.444841269666666,0.0,0.0,0.0 -3097,my_land,2010-03-25,3.783046357771467,percolation,0.0,0.0,0.0003347554963219509,0.0,0.0,0.0,0.0,0.0,7.452259090315155,0.0,0.0,0.0 -3098,my_land,2010-03-25,0.21625395347684018,subsurface_runoff,0.0,0.0,2.015744619322654e-05,0.0,0.0,0.0,0.0,0.0,9.437138651503991,0.0,0.0,0.0 -3099,my_land,2010-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.442857143,0.0,0.0,0.0 -3100,my_groundwater,2010-03-25,12.924520925304456,tank,0.0,0.0,0.001203902058638969,0.0,0.0,0.0,0.0,0.0,9.214131043561373,0.0,0.0,0.0 -3101,my_reservoir,2010-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3102,gw1,2010-03-25,259.70169596896426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3103,gw2,2010-03-25,265.29830403103574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3104,my_sewer,2010-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 -3105,my_land,2010-03-26,3.8506709389947082,percolation,0.0,0.0,0.00034110625984334496,0.0,0.0,0.0,0.0,0.0,7.52925128340214,0.0,0.0,0.0 -3106,my_land,2010-03-26,0.21199241676206276,subsurface_runoff,0.0,0.0,1.967585449140656e-05,0.0,0.0,0.0,0.0,0.0,9.452627748039065,0.0,0.0,0.0 -3107,my_land,2010-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.439285714,0.0,0.0,0.0 -3108,my_groundwater,2010-03-26,12.970598281392158,tank,0.0,0.0,0.0012078362523534683,0.0,0.0,0.0,0.0,0.0,9.203948362616323,0.0,0.0,0.0 -3109,my_reservoir,2010-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3110,gw1,2010-03-26,259.72035132917114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3111,gw2,2010-03-26,265.27964867082886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3112,my_sewer,2010-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.444336219151515,0.0,0.0,0.0 -3113,my_land,2010-03-27,3.773657520214814,percolation,0.0,0.0,0.00033428413464647806,0.0,0.0,0.0,0.0,0.0,7.52925128340214,0.0,0.0,0.0 -3114,my_land,2010-03-27,0.1695939334096502,subsurface_runoff,0.0,0.0,1.574068359312525e-05,0.0,0.0,0.0,0.0,0.0,9.452627748039065,0.0,0.0,0.0 -3115,my_land,2010-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.435714286,0.0,0.0,0.0 -3116,my_groundwater,2010-03-27,13.014992670921622,tank,0.0,0.0,0.0012116217316064594,0.0,0.0,0.0,0.0,0.0,9.194063477132701,0.0,0.0,0.0 -3117,my_reservoir,2010-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3118,gw1,2010-03-27,259.73888232031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3119,gw2,2010-03-27,265.26111767969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3120,my_sewer,2010-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 -3121,my_land,2010-03-28,3.846606247028748,percolation,0.0,0.0,0.00034121567205949526,0.0,0.0,0.0,0.0,0.0,7.605903911571309,0.0,0.0,0.0 -3122,my_land,2010-03-28,0.17606205209322512,subsurface_runoff,0.0,0.0,1.629791288972382e-05,0.0,0.0,0.0,0.0,0.0,9.467126861349522,0.0,0.0,0.0 -3123,my_land,2010-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.432142857,0.0,0.0,0.0 -3124,my_groundwater,2010-03-28,13.060761102130261,tank,0.0,0.0,0.0012155388534586544,0.0,0.0,0.0,0.0,0.0,9.184541651902352,0.0,0.0,0.0 -3125,my_reservoir,2010-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3126,gw1,2010-03-28,259.75728977150794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3127,gw2,2010-03-28,265.24271022849206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3128,my_sewer,2010-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 -3129,my_land,2010-03-29,3.8885875591803956,percolation,0.0,0.0,0.00034529262633109997,0.0,0.0,0.0,0.0,0.0,7.664221006374286,0.0,0.0,0.0 -3130,my_land,2010-03-29,0.17320703952280397,subsurface_runoff,0.0,0.0,1.6004661662199363e-05,0.0,0.0,0.0,0.0,0.0,9.475683663000375,0.0,0.0,0.0 -3131,my_land,2010-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.428571429,0.0,0.0,0.0 -3132,my_groundwater,2010-03-29,13.107269731829678,tank,0.0,0.0,0.001219529177646748,0.0,0.0,0.0,0.0,0.0,9.175359770834499,0.0,0.0,0.0 -3133,my_reservoir,2010-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3134,gw1,2010-03-29,259.77557450636453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3135,gw2,2010-03-29,265.22442549363547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3136,my_sewer,2010-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 -3137,my_land,2010-03-30,4.100575657004933,percolation,0.0,0.0,0.00036437066135862534,0.0,0.0,0.0,0.0,0.0,7.794515217553473,0.0,0.0,0.0 -3138,my_land,2010-03-30,0.21741184903542568,subsurface_runoff,0.0,0.0,1.9874174922724756e-05,0.0,0.0,0.0,0.0,0.0,9.487438681014742,0.0,0.0,0.0 -3139,my_land,2010-03-30,3.834124390341163e-18,surface_runoff,0.0,0.0,2.3401638124640885e-22,0.0,0.0,0.0,0.0,0.0,9.470188260912154,0.0,0.0,0.0 -3140,my_groundwater,2010-03-30,13.157977561946277,tank,0.0,0.0,0.0012238979003088603,0.0,0.0,0.0,0.0,0.0,9.166599504636558,0.0,0.0,0.0 -3141,my_reservoir,2010-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3142,gw1,2010-03-30,259.7937373429888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3143,gw2,2010-03-30,265.2062626570112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3144,my_sewer,2010-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.425,0.0,0.0,0.0 -3145,my_land,2010-03-31,4.018564143864834,percolation,0.0,0.0,0.00035708324813145284,0.0,0.0,0.0,0.0,0.0,7.794515217553473,0.0,0.0,0.0 -3146,my_land,2010-03-31,0.17392947922834054,subsurface_runoff,0.0,0.0,1.5899339938179803e-05,0.0,0.0,0.0,0.0,0.0,9.487438681014742,0.0,0.0,0.0 -3147,my_land,2010-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.421428571,0.0,0.0,0.0 -3148,my_groundwater,2010-03-31,13.20688910239866,tank,0.0,0.0,0.0012281073502521927,0.0,0.0,0.0,0.0,0.0,9.1581005015104,0.0,0.0,0.0 -3149,my_reservoir,2010-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3150,gw1,2010-03-31,259.8117790940355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3151,gw2,2010-03-31,265.1882209059645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3152,my_sewer,2010-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 -3153,my_land,2010-04-01,4.153947322863827,percolation,0.0,0.0,0.00036922974749697664,0.0,0.0,0.0,0.0,0.0,7.883244075867958,0.0,0.0,0.0 -3154,my_land,2010-04-01,0.19785228049186682,subsurface_runoff,0.0,0.0,1.796795203983713e-05,0.0,0.0,0.0,0.0,0.0,9.492003637757367,0.0,0.0,0.0 -3155,my_land,2010-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.417857143,0.0,0.0,0.0 -3156,my_groundwater,2010-04-01,13.258434378715249,tank,0.0,0.0,0.0012325535445934649,0.0,0.0,0.0,0.0,0.0,9.149969447553973,0.0,0.0,0.0 -3157,my_reservoir,2010-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3158,gw1,2010-04-01,259.8297005667419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3159,gw2,2010-04-01,265.1702994332581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3160,my_sewer,2010-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 -3161,my_land,2010-04-02,4.273001380720576,percolation,0.0,0.0,0.0003797296789603476,0.0,0.0,0.0,0.0,0.0,7.959711900583409,0.0,0.0,0.0 -3162,my_land,2010-04-02,0.21328400243812604,subsurface_runoff,0.0,0.0,1.924089943140998e-05,0.0,0.0,0.0,0.0,0.0,9.493998636228733,0.0,0.0,0.0 -3163,my_land,2010-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.414285714,0.0,0.0,0.0 -3164,my_groundwater,2010-04-02,13.312274392304559,tank,0.0,0.0,0.0012372023720536739,0.0,0.0,0.0,0.0,0.0,9.142191974043193,0.0,0.0,0.0 -3165,my_reservoir,2010-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3166,gw1,2010-04-02,259.84750256296365,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3167,gw2,2010-04-02,265.15249743703635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3168,my_sewer,2010-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3169,my_land,2010-04-03,4.571232726137948,percolation,0.0,0.0,0.0004050399868129286,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3170,my_land,2010-04-03,0.2750330177414624,subsurface_runoff,0.0,0.0,2.434643422044444e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516737,0.0,0.0,0.0 -3171,my_land,2010-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3172,my_groundwater,2010-04-03,13.372050943963036,tank,0.0,0.0,0.0012423548229979458,0.0,0.0,0.0,0.0,0.0,9.134859717093654,0.0,0.0,0.0 -3173,my_reservoir,2010-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3174,gw1,2010-04-03,259.86518587921057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3175,gw2,2010-04-03,265.13481412078943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3176,my_sewer,2010-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3177,my_land,2010-04-04,4.47980807161519,percolation,0.0,0.0,0.00039693918707667003,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3178,my_land,2010-04-04,0.2200264141931699,subsurface_runoff,0.0,0.0,1.947714737635555e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516737,0.0,0.0,0.0 -3179,my_land,2010-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.407142857,0.0,0.0,0.0 -3180,my_groundwater,2010-04-04,13.429816909489581,tank,0.0,0.0,0.001247329483677369,0.0,0.0,0.0,0.0,0.0,9.127754803106262,0.0,0.0,0.0 -3181,my_reservoir,2010-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3182,gw1,2010-04-04,259.8827513066825,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3183,gw2,2010-04-04,265.1172486933175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3184,my_sewer,2010-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3185,my_land,2010-04-05,4.390211910182885,percolation,0.0,0.0,0.00038900040333513663,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3186,my_land,2010-04-05,0.17602113135453593,subsurface_runoff,0.0,0.0,1.558171790108444e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3187,my_land,2010-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.407142857,0.0,0.0,0.0 -3188,my_groundwater,2010-04-05,13.485614538244581,tank,0.0,0.0,0.001252130096750355,0.0,0.0,0.0,0.0,0.0,9.120867882359953,0.0,0.0,0.0 -3189,my_reservoir,2010-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3190,gw1,2010-04-05,259.90019963130464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3191,gw2,2010-04-05,265.09980036869536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3192,my_sewer,2010-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3193,my_land,2010-04-06,4.3024076719792275,percolation,0.0,0.0,0.0003812203952684339,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3194,my_land,2010-04-06,0.14081690508362874,subsurface_runoff,0.0,0.0,1.2465374320867552e-05,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3195,my_land,2010-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.4,0.0,0.0,0.0 -3196,my_groundwater,2010-04-06,13.539485229507118,tank,0.0,0.0,0.001256760329555015,0.0,0.0,0.0,0.0,0.0,9.114190103939347,0.0,0.0,0.0 -3197,my_reservoir,2010-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3198,gw1,2010-04-06,259.9175316337626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3199,gw2,2010-04-06,265.0824683662374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3200,my_sewer,2010-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3201,my_land,2010-04-07,4.216359518539643,percolation,0.0,0.0,0.0003735959873630652,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3202,my_land,2010-04-07,0.11265352406690299,subsurface_runoff,0.0,0.0,9.972299456694043e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3203,my_land,2010-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3204,my_groundwater,2010-04-07,13.591469549489336,tank,0.0,0.0,0.0012612237756167326,0.0,0.0,0.0,0.0,0.0,9.107713082867459,0.0,0.0,0.0 -3205,my_reservoir,2010-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3206,gw1,2010-04-07,259.93474808953755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3207,gw2,2010-04-07,265.06525191046245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3208,my_sewer,2010-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3209,my_land,2010-04-08,4.13203232816885,percolation,0.0,0.0,0.0003661240676158039,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3210,my_land,2010-04-08,0.09012281925352239,subsurface_runoff,0.0,0.0,7.977839565355234e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3211,my_land,2010-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3212,my_groundwater,2010-04-08,13.641607248010478,tank,0.0,0.0,0.0012655239561255838,0.0,0.0,0.0,0.0,0.0,9.101428869805058,0.0,0.0,0.0 -3213,my_reservoir,2010-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3214,gw1,2010-04-08,259.95184976894063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3215,gw2,2010-04-08,265.04815023105937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3216,my_sewer,2010-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3217,my_land,2010-04-09,4.049391681605473,percolation,0.0,0.0,0.00035880158626348785,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3218,my_land,2010-04-09,0.07209825540281792,subsurface_runoff,0.0,0.0,6.382271652284187e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3219,my_land,2010-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3220,my_groundwater,2010-04-09,13.68993727483742,tank,0.0,0.0,0.001269664321384205,0.0,0.0,0.0,0.0,0.0,9.095329923085828,0.0,0.0,0.0 -3221,my_reservoir,2010-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3222,gw1,2010-04-09,259.96883743714767,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3223,gw2,2010-04-09,265.03116256285233,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3224,my_sewer,2010-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3225,my_land,2010-04-10,3.968403847973364,percolation,0.0,0.0,0.0003516255545382181,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3226,my_land,2010-04-10,0.057678604322254336,subsurface_runoff,0.0,0.0,5.1058173218273495e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3227,my_land,2010-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3228,my_groundwater,2010-04-10,13.736497795698357,tank,0.0,0.0,0.0012736482522267012,0.0,0.0,0.0,0.0,0.0,9.08940908287991,0.0,0.0,0.0 -3229,my_reservoir,2010-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3230,gw1,2010-04-10,259.98571185423333,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3231,gw2,2010-04-10,265.01428814576667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3232,my_sewer,2010-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3233,my_land,2010-04-11,3.8890357710138965,percolation,0.0,0.0,0.0003445930434474537,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3234,my_land,2010-04-11,0.04614288345780347,subsurface_runoff,0.0,0.0,4.084653857461879e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3235,my_land,2010-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3236,my_groundwater,2010-04-11,13.781326207976178,tank,0.0,0.0,0.001277479061409172,0.0,0.0,0.0,0.0,0.0,9.083659547299238,0.0,0.0,0.0 -3237,my_reservoir,2010-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3238,gw1,2010-04-11,260.0024737752051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3239,gw2,2010-04-11,264.9975262247949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3240,my_sewer,2010-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3241,my_land,2010-04-12,3.8112550555936187,percolation,0.0,0.0,0.00033770118257850465,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3242,my_land,2010-04-12,0.03691430676624278,subsurface_runoff,0.0,0.0,3.2677230859695036e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3243,my_land,2010-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3244,my_groundwater,2010-04-12,13.824459156087965,tank,0.0,0.0,0.0012811599949724257,0.0,0.0,0.0,0.0,0.0,9.07807485027645,0.0,0.0,0.0 -3245,my_reservoir,2010-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3246,gw1,2010-04-12,260.01912395003706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3247,gw2,2010-04-12,264.98087604996294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3248,my_sewer,2010-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3249,my_land,2010-04-13,3.7350299544817465,percolation,0.0,0.0,0.00033094715892693455,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3250,my_land,2010-04-13,0.029531445412994226,subsurface_runoff,0.0,0.0,2.614178468775603e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3251,my_land,2010-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3252,my_groundwater,2010-04-13,13.865932546556836,tank,0.0,0.0,0.001284694233577436,0.0,0.0,0.0,0.0,0.0,9.072648841065728,0.0,0.0,0.0 -3253,my_reservoir,2010-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3254,gw1,2010-04-13,260.0356631237035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3255,gw2,2010-04-13,264.9643368762965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3256,my_sewer,2010-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3257,my_land,2010-04-14,3.6603293553921117,percolation,0.0,0.0,0.00032432821574839585,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3258,my_land,2010-04-14,0.02362515633039538,subsurface_runoff,0.0,0.0,2.091342775020482e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3259,my_land,2010-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3260,my_groundwater,2010-04-14,13.905781562782355,tank,0.0,0.0,0.0012880848938140847,0.0,0.0,0.0,0.0,0.0,9.067375665228457,0.0,0.0,0.0 -3261,my_reservoir,2010-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3262,gw1,2010-04-14,260.0520920362121,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3263,gw2,2010-04-14,264.9479079637879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3264,my_sewer,2010-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3265,my_land,2010-04-15,3.5871227682842695,percolation,0.0,0.0,0.00031784165143342795,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3266,my_land,2010-04-15,0.018900125064316303,subsurface_runoff,0.0,0.0,1.6730742200163856e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3267,my_land,2010-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3268,my_groundwater,2010-04-15,13.944040679515473,tank,0.0,0.0,0.0012913350294837301,0.0,0.0,0.0,0.0,0.0,9.062249746979719,0.0,0.0,0.0 -3269,my_reservoir,2010-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3270,gw1,2010-04-15,260.0684114226374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3271,gw2,2010-04-15,264.9315885773626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3272,my_sewer,2010-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3273,my_land,2010-04-16,3.515380312918584,percolation,0.0,0.0,0.0003114848184047594,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3274,my_land,2010-04-16,0.015120100051453042,subsurface_runoff,0.0,0.0,1.3384593760131085e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3275,my_land,2010-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3276,my_groundwater,2010-04-16,13.980743677043955,tank,0.0,0.0,0.0012944476328561176,0.0,0.0,0.0,0.0,0.0,9.057265772783351,0.0,0.0,0.0 -3277,my_reservoir,2010-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3278,gw1,2010-04-16,260.08462201315314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3279,gw2,2010-04-16,264.91537798684686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3280,my_sewer,2010-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3281,my_land,2010-04-17,3.4450727066602123,percolation,0.0,0.0,0.0003052551220366642,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3282,my_land,2010-04-17,0.012096080041162433,subsurface_runoff,0.0,0.0,1.0707675008104867e-06,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3283,my_land,2010-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3284,my_groundwater,2010-04-17,14.01592365509407,tank,0.0,0.0,0.001297425635901152,0.0,0.0,0.0,0.0,0.0,9.05241867609373,0.0,0.0,0.0 -3285,my_reservoir,2010-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3286,gw1,2010-04-17,260.10072453306543,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3287,gw2,2010-04-17,264.89927546693457,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3288,my_sewer,2010-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3289,my_land,2010-04-18,3.376171252527008,percolation,0.0,0.0,0.0002991500195959309,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3290,my_land,2010-04-18,0.009676864032929947,subsurface_runoff,0.0,0.0,8.566140006483894e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3291,my_land,2010-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3292,my_groundwater,2010-04-18,14.049613046454207,tank,0.0,0.0,0.0013002719114960308,0.0,0.0,0.0,0.0,0.0,9.04770362315182,0.0,0.0,0.0 -3293,my_reservoir,2010-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3294,gw1,2010-04-18,260.116719702845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3295,gw2,2010-04-18,264.883280297155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3296,my_sewer,2010-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3297,my_land,2010-04-19,3.308647827476468,percolation,0.0,0.0,0.0002931670192040123,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3298,my_land,2010-04-19,0.007741491226343958,subsurface_runoff,0.0,0.0,6.852912005187115e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3299,my_land,2010-04-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3300,my_groundwater,2010-04-19,14.081843630325984,tank,0.0,0.0,0.0013029892746082297,0.0,0.0,0.0,0.0,0.0,9.043115999751494,0.0,0.0,0.0 -3301,my_reservoir,2010-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3302,gw1,2010-04-19,260.1326082381594,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3303,gw2,2010-04-19,264.8673917618406,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3304,my_sewer,2010-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3305,my_land,2010-04-20,3.2424748709269386,percolation,0.0,0.0,0.00028730367881993205,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3306,my_land,2010-04-20,0.0061931929810751666,subsurface_runoff,0.0,0.0,5.482329604149692e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3307,my_land,2010-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3308,my_groundwater,2010-04-20,14.112646545408325,tank,0.0,0.0,0.0013055804834548293,0.0,0.0,0.0,0.0,0.0,9.038651398899635,0.0,0.0,0.0 -3309,my_reservoir,2010-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3310,gw1,2010-04-20,260.14839084990496,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3311,gw2,2010-04-20,264.85160915009504,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3312,my_sewer,2010-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3313,my_land,2010-04-21,3.1776253735083997,percolation,0.0,0.0,0.0002815576052435334,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3314,my_land,2010-04-21,0.004954554384860133,subsurface_runoff,0.0,0.0,4.385863683319754e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3315,my_land,2010-04-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3316,my_groundwater,2010-04-21,14.142052302719796,tank,0.0,0.0,0.0013080482406386499,0.0,0.0,0.0,0.0,0.0,9.034305609300384,0.0,0.0,0.0 -3317,my_reservoir,2010-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3318,gw1,2010-04-21,260.16406824423893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3319,gw2,2010-04-21,264.83593175576107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3320,my_sewer,2010-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3321,my_land,2010-04-22,3.1140728660382315,percolation,0.0,0.0,0.00027592645313866273,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3322,my_land,2010-04-22,0.003963643507888107,subsurface_runoff,0.0,0.0,3.5086909466558035e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3323,my_land,2010-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3324,my_groundwater,2010-04-22,14.17009079816449,tank,0.0,0.0,0.0013103951942616617,0.0,0.0,0.0,0.0,0.0,9.030074604600019,0.0,0.0,0.0 -3325,my_reservoir,2010-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3326,gw1,2010-04-22,260.1796411226107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3327,gw2,2010-04-22,264.8203588773893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3328,my_sewer,2010-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3329,my_land,2010-04-23,3.0517914087174667,percolation,0.0,0.0,0.0002704079240758895,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3330,my_land,2010-04-23,0.0031709148063104853,subsurface_runoff,0.0,0.0,2.8069527573246425e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3331,my_land,2010-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3332,my_groundwater,2010-04-23,14.196791324846542,tank,0.0,0.0,0.001312623939016124,0.0,0.0,0.0,0.0,0.0,9.025954533334478,0.0,0.0,0.0 -3333,my_reservoir,2010-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3334,gw1,2010-04-23,260.19511018179327,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3335,gw2,2010-04-23,264.80488981820673,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3336,my_sewer,2010-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3337,my_land,2010-04-24,2.990755580543117,percolation,0.0,0.0,0.00026499976559437173,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3338,my_land,2010-04-24,0.0025367318450483884,subsurface_runoff,0.0,0.0,2.245562205859714e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3339,my_land,2010-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3340,my_groundwater,2010-04-24,14.222182585138338,tank,0.0,0.0,0.0013147370172538976,0.0,0.0,0.0,0.0,0.0,9.02194170952654,0.0,0.0,0.0 -3341,my_reservoir,2010-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3342,gw1,2010-04-24,260.21047611391464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3343,gw2,2010-04-24,264.78952388608536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3344,my_sewer,2010-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3345,my_land,2010-04-25,2.930940468932255,percolation,0.0,0.0,0.0002596997702824843,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3346,my_land,2010-04-25,0.002029385476038711,subsurface_runoff,0.0,0.0,1.7964497646877713e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3347,my_land,2010-04-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3348,my_groundwater,2010-04-25,14.246292702507327,tank,0.0,0.0,0.0013167369200343705,0.0,0.0,0.0,0.0,0.0,9.018032603884206,0.0,0.0,0.0 -3349,my_reservoir,2010-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3350,gw1,2010-04-25,260.22573960648856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3351,gw2,2010-04-25,264.77426039351144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3352,my_sewer,2010-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3353,my_land,2010-04-26,2.87232165955361,percolation,0.0,0.0,0.0002545057748768346,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3354,my_land,2010-04-26,0.0016235083808309688,subsurface_runoff,0.0,0.0,1.437159811750217e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3355,my_land,2010-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3356,my_groundwater,2010-04-26,14.269149233106258,tank,0.0,0.0,0.0013186260881514202,0.0,0.0,0.0,0.0,0.0,9.014223835555876,0.0,0.0,0.0 -3357,my_reservoir,2010-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3358,gw1,2010-04-26,260.2409013424453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3359,gw2,2010-04-26,264.7590986575547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3360,my_sewer,2010-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3361,my_land,2010-04-27,2.814875226362538,percolation,0.0,0.0,0.0002494156593792979,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3362,my_land,2010-04-27,0.001298806704664775,subsurface_runoff,0.0,0.0,1.1497278494001736e-07,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3363,my_land,2010-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3364,my_groundwater,2010-04-27,14.290779177131588,tank,0.0,0.0,0.0013204069131398347,0.0,0.0,0.0,0.0,0.0,9.010512164401666,0.0,0.0,0.0 -3365,my_reservoir,2010-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3366,gw1,2010-04-27,260.2559620001623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3367,gw2,2010-04-27,264.7440379998377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3368,my_sewer,2010-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.410714286,0.0,0.0,0.0 -3369,my_land,2010-04-28,2.758577721835287,percolation,0.0,0.0,0.000244427346191712,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3370,my_land,2010-04-28,0.00103904536373182,subsurface_runoff,0.0,0.0,9.197822795201389e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3371,my_land,2010-04-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3372,my_groundwater,2010-04-28,14.311208989954691,tank,0.0,0.0,0.0013220817382616021,0.0,0.0,0.0,0.0,0.0,9.006894483743562,0.0,0.0,0.0 -3373,my_reservoir,2010-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3374,gw1,2010-04-28,260.2709222534946,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3375,gw2,2010-04-28,264.7290777465054,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3376,my_sewer,2010-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 -3377,my_land,2010-04-29,2.7034061673985814,percolation,0.0,0.0,0.00023953879926787774,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3378,my_land,2010-04-29,0.000831236290985456,subsurface_runoff,0.0,0.0,7.358258236161111e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3379,my_land,2010-04-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3380,my_groundwater,2010-04-29,14.330464593030419,tank,0.0,0.0,0.0013236528594724728,0.0,0.0,0.0,0.0,0.0,9.003367813560116,0.0,0.0,0.0 -3381,my_reservoir,2010-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3382,gw1,2010-04-29,260.28578277180463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3383,gw2,2010-04-29,264.71421722819537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3384,my_sewer,2010-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89642857,0.0,0.0,0.0 -3385,my_land,2010-04-30,2.6493380440506096,percolation,0.0,0.0,0.00023474802328252018,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3386,my_land,2010-04-30,0.0006649890327883647,subsurface_runoff,0.0,0.0,5.886606588928888e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3387,my_land,2010-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3388,my_groundwater,2010-04-30,14.348571384587444,tank,0.0,0.0,0.0013251225263691858,0.0,0.0,0.0,0.0,0.0,8.999929294094207,0.0,0.0,0.0 -3389,my_reservoir,2010-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3390,gw1,2010-04-30,260.3005442199926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3391,gw2,2010-04-30,264.6994557800074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3392,my_sewer,2010-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3393,my_land,2010-05-01,2.5963512831695974,percolation,0.0,0.0,0.0002300530628168698,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3394,my_land,2010-05-01,0.0005319912262306918,subsurface_runoff,0.0,0.0,4.709285271143111e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3395,my_land,2010-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246428571,0.0,0.0,0.0 -3396,my_groundwater,2010-05-01,14.365554250104786,tank,0.0,0.0,0.0013264929431177491,0.0,0.0,0.0,0.0,0.0,8.99657617984492,0.0,0.0,0.0 -3397,my_reservoir,2010-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3398,gw1,2010-05-01,260.315207258526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3399,gw2,2010-05-01,264.684792741474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3400,my_sewer,2010-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3401,my_land,2010-05-02,2.5444242575062055,percolation,0.0,0.0,0.0002254520015605324,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3402,my_land,2010-05-02,0.0004255929809845535,subsurface_runoff,0.0,0.0,3.7674282169144884e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3403,my_land,2010-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.42857143,0.0,0.0,0.0 -3404,my_groundwater,2010-05-02,14.381437572578758,tank,0.0,0.0,0.0013277662693631513,0.0,0.0,0.0,0.0,0.0,8.993305833916851,0.0,0.0,0.0 -3405,my_reservoir,2010-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3406,gw1,2010-05-02,260.3297725434692,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3407,gw2,2010-05-02,264.6702274565308,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3408,my_sewer,2010-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3409,my_land,2010-05-03,2.4935357723560814,percolation,0.0,0.0,0.00022094296152932175,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3410,my_land,2010-05-03,0.0003404743847876428,subsurface_runoff,0.0,0.0,3.013942573531591e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3411,my_land,2010-05-03,2.0183872216059443e-19,surface_runoff,0.0,0.0,1.5399072430465274e-24,0.0,0.0,0.0,0.0,0.0,10.839319400350558,0.0,0.0,0.0 -3412,my_groundwater,2010-05-03,14.396245242584559,tank,0.0,0.0,0.0013289446211208762,0.0,0.0,0.0,0.0,0.0,8.990115722702264,0.0,0.0,0.0 -3413,my_reservoir,2010-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3414,gw1,2010-05-03,260.34424072651274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3415,gw2,2010-05-03,264.65575927348726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3416,my_sewer,2010-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3417,my_land,2010-05-04,2.4436650569089595,percolation,0.0,0.0,0.00021652410229873532,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3418,my_land,2010-05-04,0.0002723795078301142,subsurface_runoff,0.0,0.0,2.4111540588252725e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3419,my_land,2010-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.839319400350558,0.0,0.0,0.0 -3420,my_groundwater,2010-05-04,14.410000668136602,tank,0.0,0.0,0.001330030071650584,0.0,0.0,0.0,0.0,0.0,8.987003410873454,0.0,0.0,0.0 -3421,my_reservoir,2010-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3422,gw1,2010-05-04,260.3586124550026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3423,gw2,2010-05-04,264.6413875449974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3424,my_sewer,2010-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3425,my_land,2010-05-05,2.3947917557707803,percolation,0.0,0.0,0.00021219362025276062,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3426,my_land,2010-05-05,0.00021790360626409137,subsurface_runoff,0.0,0.0,1.928923247060218e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3427,my_land,2010-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.55,0.0,0.0,0.0 -3428,my_groundwater,2010-05-05,14.422726784351594,tank,0.0,0.0,0.001331024652312317,0.0,0.0,0.0,0.0,0.0,8.983966556664399,0.0,0.0,0.0 -3429,my_reservoir,2010-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3430,gw1,2010-05-05,260.3728883719693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3431,gw2,2010-05-05,264.6271116280307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3432,my_sewer,2010-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3433,my_land,2010-05-06,2.346895920655365,percolation,0.0,0.0,0.00020794974784770542,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3434,my_land,2010-05-06,0.0001743228850112731,subsurface_runoff,0.0,0.0,1.5431385976481745e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3435,my_land,2010-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.55,0.0,0.0,0.0 -3436,my_groundwater,2010-05-06,14.434446062918342,tank,0.0,0.0,0.001331930353405579,0.0,0.0,0.0,0.0,0.0,8.98100290742237,0.0,0.0,0.0 -3437,my_reservoir,2010-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3438,gw1,2010-05-06,260.38706911615617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3439,gw2,2010-05-06,264.61293088384383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3440,my_sewer,2010-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3441,my_land,2010-05-07,2.2999580022422577,percolation,0.0,0.0,0.00020379075289075132,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3442,my_land,2010-05-07,0.00013945830800901848,subsurface_runoff,0.0,0.0,1.2345108781185395e-08,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3443,my_land,2010-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.75,0.0,0.0,0.0 -3444,my_groundwater,2010-05-07,14.44518052137812,tank,0.0,0.0,0.0013327491249916267,0.0,0.0,0.0,0.0,0.0,8.978110295411641,0.0,0.0,0.0 -3445,my_reservoir,2010-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3446,gw1,2010-05-07,260.40115532204845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3447,gw2,2010-05-07,264.59884467795155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3448,my_sewer,2010-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3449,my_land,2010-05-08,2.2539588421974126,percolation,0.0,0.0,0.0001997149378329363,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3450,my_land,2010-05-08,0.00011156664640721479,subsurface_runoff,0.0,0.0,9.876087024948316e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3451,my_land,2010-05-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 -3452,my_groundwater,2010-05-08,14.454951732219408,tank,0.0,0.0,0.001333482877699318,0.0,0.0,0.0,0.0,0.0,8.975286633852791,0.0,0.0,0.0 -3453,my_reservoir,2010-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3454,gw1,2010-05-08,260.41514761990146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3455,gw2,2010-05-08,264.58485238009854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3456,my_sewer,2010-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3457,my_land,2010-05-09,2.2088796653534644,percolation,0.0,0.0,0.00019572063907627755,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3458,my_land,2010-05-09,8.925331712577183e-05,subsurface_runoff,0.0,0.0,7.900869619958653e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3459,my_land,2010-05-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 -3460,my_groundwater,2010-05-09,14.463780831790698,tank,0.0,0.0,0.0013341334835148368,0.0,0.0,0.0,0.0,0.0,8.972529913182292,0.0,0.0,0.0 -3461,my_reservoir,2010-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3462,gw1,2010-05-09,260.42904663576877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3463,gw2,2010-05-09,264.57095336423123,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3464,my_sewer,2010-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3465,my_land,2010-05-10,2.164702072046395,percolation,0.0,0.0,0.000191806226294752,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3466,my_land,2010-05-10,7.140265370061746e-05,subsurface_runoff,0.0,0.0,6.320695695966922e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3467,my_land,2010-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 -3468,my_groundwater,2010-05-10,14.471688529035022,tank,0.0,0.0,0.0013347027765556216,0.0,0.0,0.0,0.0,0.0,8.969838197518213,0.0,0.0,0.0 -3469,my_reservoir,2010-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3470,gw1,2010-05-10,260.4428529915303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3471,gw2,2010-05-10,264.5571470084697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3472,my_sewer,2010-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3473,my_land,2010-05-11,2.1214080306054672,percolation,0.0,0.0,0.00018797010176885696,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3474,my_land,2010-05-11,5.712212296049397e-05,subsurface_runoff,0.0,0.0,5.0565565567735375e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3475,my_land,2010-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.85,0.0,0.0,0.0 -3476,my_groundwater,2010-05-11,14.478695114049762,tank,0.0,0.0,0.001335192553828813,0.0,0.0,0.0,0.0,0.0,8.9672096213189,0.0,0.0,0.0 -3477,my_reservoir,2010-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3478,gw1,2010-05-11,260.4565673049201,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3479,gw2,2010-05-11,264.5434326950799,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3480,my_sewer,2010-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3481,my_land,2010-05-12,2.0789798699933577,percolation,0.0,0.0,0.00018421069973347982,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3482,my_land,2010-05-12,4.569769836839518e-05,subsurface_runoff,0.0,0.0,4.04524524541883e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3483,my_land,2010-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3484,my_groundwater,2010-05-12,14.484820466475217,tank,0.0,0.0,0.0013356045759745296,0.0,0.0,0.0,0.0,0.0,8.964642386222442,0.0,0.0,0.0 -3485,my_reservoir,2010-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3486,gw1,2010-05-12,260.470190189554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3487,gw2,2010-05-12,264.529809810446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3488,my_sewer,2010-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3489,my_land,2010-05-13,2.0374002725934908,percolation,0.0,0.0,0.00018052648573881023,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3490,my_land,2010-05-13,3.655815869471614e-05,subsurface_runoff,0.0,0.0,3.2361961963350643e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3491,my_land,2010-05-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3492,my_groundwater,2010-05-13,14.490084063715395,tank,0.0,0.0,0.001335940567994276,0.0,0.0,0.0,0.0,0.0,8.962134758055619,0.0,0.0,0.0 -3493,my_reservoir,2010-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3494,gw1,2010-05-13,260.48372225495694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3495,gw2,2010-05-13,264.51627774504306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3496,my_sewer,2010-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3497,my_land,2010-05-14,1.996652267141621,percolation,0.0,0.0,0.00017691595602403404,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3498,my_land,2010-05-14,2.9246526955772912e-05,subsurface_runoff,0.0,0.0,2.5889569570680515e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3499,my_land,2010-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3500,my_groundwater,2010-05-14,14.494504988994345,tank,0.0,0.0,0.0013362022199647796,0.0,0.0,0.0,0.0,0.0,8.959685064001773,0.0,0.0,0.0 -3501,my_reservoir,2010-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3502,gw1,2010-05-14,260.49716410659056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3503,gw2,2010-05-14,264.50283589340944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3504,my_sewer,2010-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.91785714,0.0,0.0,0.0 -3505,my_land,2010-05-15,1.9567192217987885,percolation,0.0,0.0,0.00017337763690355337,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3506,my_land,2010-05-15,2.339722156461833e-05,subsurface_runoff,0.0,0.0,2.0711655656544413e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3507,my_land,2010-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3508,my_groundwater,2010-05-15,14.498101939251335,tank,0.0,0.0,0.001336391187737547,0.0,0.0,0.0,0.0,0.0,8.95729168991789,0.0,0.0,0.0 -3509,my_reservoir,2010-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3510,gw1,2010-05-15,260.51051634588,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3511,gw2,2010-05-15,264.48948365412,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3512,my_sewer,2010-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3513,my_land,2010-05-16,1.9175848373628128,percolation,0.0,0.0,0.0001699100841654823,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3514,my_land,2010-05-16,1.8717777251694664e-05,subsurface_runoff,0.0,0.0,1.656932452523553e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3515,my_land,2010-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3516,my_groundwater,2010-05-16,14.500893232878092,tank,0.0,0.0,0.001336509093624429,0.0,0.0,0.0,0.0,0.0,8.954953077791734,0.0,0.0,0.0 -3517,my_reservoir,2010-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3518,gw1,2010-05-16,260.5237795702408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3519,gw2,2010-05-16,264.4762204297592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3520,my_sewer,2010-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3521,my_land,2010-05-17,1.8792331406155565,percolation,0.0,0.0,0.00016651188248217264,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3522,my_land,2010-05-17,1.497422180135573e-05,subsurface_runoff,0.0,0.0,1.3255459620188425e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3523,my_land,2010-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3524,my_groundwater,2010-05-17,14.502896817301284,tank,0.0,0.0,0.0013365575270694694,0.0,0.0,0.0,0.0,0.0,8.952667723330606,0.0,0.0,0.0 -3525,my_reservoir,2010-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3526,gw1,2010-05-17,260.53695437310586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3527,gw2,2010-05-17,264.46304562689414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3528,my_sewer,2010-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3529,my_land,2010-05-18,1.8416484778032454,percolation,0.0,0.0,0.00016318164483252918,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3530,my_land,2010-05-18,1.1979377441084584e-05,subsurface_runoff,0.0,0.0,1.060436769615074e-09,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3531,my_land,2010-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3532,my_groundwater,2010-05-18,14.504130276413312,tank,0.0,0.0,0.001336538045307315,0.0,0.0,0.0,0.0,0.0,8.950434173673829,0.0,0.0,0.0 -3533,my_reservoir,2010-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3534,gw1,2010-05-18,260.5500413439518,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3535,gw2,2010-05-18,264.4499586560482,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3536,my_sewer,2010-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3537,my_land,2010-05-19,1.8048155082471804,percolation,0.0,0.0,0.0001599180119358786,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3538,my_land,2010-05-19,9.583501952867668e-06,subsurface_runoff,0.0,0.0,8.483494156920592e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3539,my_land,2010-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3540,my_groundwater,2010-05-19,14.504610837854452,tank,0.0,0.0,0.0013364521740084556,0.0,0.0,0.0,0.0,0.0,8.948251025221598,0.0,0.0,0.0 -3541,my_reservoir,2010-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3542,gw1,2010-05-19,260.56304106832545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3543,gw2,2010-05-19,264.43695893167455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3544,my_sewer,2010-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3545,my_land,2010-05-20,1.7687191980822368,percolation,0.0,0.0,0.00015671965169716104,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3546,my_land,2010-05-20,7.666801562294133e-06,subsurface_runoff,0.0,0.0,6.786795325536473e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3547,my_land,2010-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3548,my_groundwater,2010-05-20,14.504355380149347,tank,0.0,0.0,0.0013363014079115553,0.0,0.0,0.0,0.0,0.0,8.946116921573354,0.0,0.0,0.0 -3549,my_reservoir,2010-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3550,gw1,2010-05-20,260.5759541278699,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3551,gw2,2010-05-20,264.4240458721301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3552,my_sewer,2010-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3553,my_land,2010-05-21,1.733344814120592,percolation,0.0,0.0,0.00015358525866321783,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3554,my_land,2010-05-21,6.133441249835307e-06,subsurface_runoff,0.0,0.0,5.429436260429179e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3555,my_land,2010-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3556,my_groundwater,2010-05-21,14.503380439700715,tank,0.0,0.0,0.0013360872114431346,0.0,0.0,0.0,0.0,0.0,8.944030551569268,0.0,0.0,0.0 -3557,my_reservoir,2010-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3558,gw1,2010-05-21,260.5887811003508,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3559,gw2,2010-05-21,264.4112188996492,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3560,my_sewer,2010-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3561,my_land,2010-05-22,1.6986779178381801,percolation,0.0,0.0,0.00015051355348995348,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3562,my_land,2010-05-22,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516733,0.0,0.0,0.0 -3563,my_land,2010-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3564,my_groundwater,2010-05-22,14.50170221764317,tank,0.0,0.0,0.0013358110193248578,0.0,0.0,0.0,0.0,0.0,8.94199064742888,0.0,0.0,0.0 -3565,my_reservoir,2010-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3566,gw1,2010-05-22,260.60152255968177,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3567,gw2,2010-05-22,264.39847744031823,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3568,my_sewer,2010-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3569,my_land,2010-05-23,1.6647043594814166,percolation,0.0,0.0,0.0001475032824201544,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3570,my_land,2010-05-23,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3571,my_land,2010-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3572,my_groundwater,2010-05-23,14.499336586559933,tank,0.0,0.0,0.0013354742371686702,0.0,0.0,0.0,0.0,0.0,8.939995982981266,0.0,0.0,0.0 -3573,my_reservoir,2010-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3574,gw1,2010-05-23,260.6141790759506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3575,gw2,2010-05-23,264.3858209240494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3576,my_sewer,2010-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3577,my_land,2010-05-24,1.6314102722917883,percolation,0.0,0.0,0.0001445532167717513,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3578,my_land,2010-05-24,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3579,my_land,2010-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3580,my_groundwater,2010-05-24,14.496299097065187,tank,0.0,0.0,0.0013350782420600306,0.0,0.0,0.0,0.0,0.0,8.938045371981586,0.0,0.0,0.0 -3581,my_reservoir,2010-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3582,gw1,2010-05-24,260.62675121544424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3583,gw2,2010-05-24,264.37324878455576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3584,my_sewer,2010-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.23928571,0.0,0.0,0.0 -3585,my_land,2010-05-25,1.5987820668459525,percolation,0.0,0.0,0.00014166215243631628,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3586,my_land,2010-05-25,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3587,my_land,2010-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3588,my_groundwater,2010-05-25,14.492604984254744,tank,0.0,0.0,0.0013346243831294771,0.0,0.0,0.0,0.0,0.0,8.936137666509042,0.0,0.0,0.0 -3589,my_reservoir,2010-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3590,gw1,2010-05-25,260.6392395406746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3591,gw2,2010-05-25,264.3607604593254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3592,my_sewer,2010-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 -3593,my_land,2010-05-26,1.5668064255090335,percolation,0.0,0.0,0.00013882890938758996,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3594,my_land,2010-05-26,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3595,my_land,2010-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3596,my_groundwater,2010-05-26,14.488269174027684,tank,0.0,0.0,0.001334113982112758,0.0,0.0,0.0,0.0,0.0,8.934271755441777,0.0,0.0,0.0 -3597,my_reservoir,2010-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3598,gw1,2010-05-26,260.6516446104035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3599,gw2,2010-05-26,264.3483553895965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3600,my_sewer,2010-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 -3601,my_land,2010-05-27,1.5354702969988527,percolation,0.0,0.0,0.00013605233119983818,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3602,my_land,2010-05-27,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3603,my_land,2010-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3604,my_groundwater,2010-05-27,14.483306289281519,tank,0.0,0.0,0.0013335483338997583,0.0,0.0,0.0,0.0,0.0,8.932446563004328,0.0,0.0,0.0 -3605,my_reservoir,2010-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3606,gw1,2010-05-27,260.66396697966746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3607,gw2,2010-05-27,264.33603302033254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3608,my_sewer,2010-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.55,0.0,0.0,0.0 -3609,my_land,2010-05-28,1.5047608910588757,percolation,0.0,0.0,0.00013333128457584142,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3610,my_land,2010-05-28,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3611,my_land,2010-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3612,my_groundwater,2010-05-28,14.477730655983441,tank,0.0,0.0,0.0013329287070724457,0.0,0.0,0.0,0.0,0.0,8.930661047383717,0.0,0.0,0.0 -3613,my_reservoir,2010-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3614,gw1,2010-05-28,260.676207199803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3615,gw2,2010-05-28,264.323792800197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3616,my_sewer,2010-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 -3617,my_land,2010-05-29,1.4746656732376981,percolation,0.0,0.0,0.0001306646588843246,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3618,my_land,2010-05-29,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3619,my_land,2010-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3620,my_groundwater,2010-05-29,14.471556309120107,tank,0.0,0.0,0.0013322563444320525,0.0,0.0,0.0,0.0,0.0,8.928914199410375,0.0,0.0,0.0 -3621,my_reservoir,2010-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3622,gw1,2010-05-29,260.68836581847097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3623,gw2,2010-05-29,264.31163418152903,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3624,my_sewer,2010-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 -3625,my_land,2010-05-30,1.4451723597729442,percolation,0.0,0.0,0.0001280513657066381,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3626,my_land,2010-05-30,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3627,my_land,2010-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3628,my_groundwater,2010-05-30,14.464796998528398,tank,0.0,0.0,0.0013315324635157146,0.0,0.0,0.0,0.0,0.0,8.927205041300377,0.0,0.0,0.0 -3629,my_reservoir,2010-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3630,gw1,2010-05-30,260.7004433796812,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3631,gw2,2010-05-30,264.2995566203188,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3632,my_sewer,2010-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.68214286,0.0,0.0,0.0 -3633,my_land,2010-05-31,1.4162689125774854,percolation,0.0,0.0,0.00012549033839250533,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3634,my_land,2010-05-31,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3635,my_land,2010-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3636,my_groundwater,2010-05-31,14.457466194609546,tank,0.0,0.0,0.001330758257102773,0.0,0.0,0.0,0.0,0.0,8.925532625455702,0.0,0.0,0.0 -3637,my_reservoir,2010-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3638,gw1,2010-05-31,260.71244042381664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3639,gw2,2010-05-31,264.28755957618336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3640,my_sewer,2010-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -3641,my_land,2010-06-01,1.3879435343259356,percolation,0.0,0.0,0.00012298053162465523,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3642,my_land,2010-06-01,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3643,my_land,2010-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3644,my_groundwater,2010-06-01,14.449577093928944,tank,0.0,0.0,0.0013299348937109465,0.0,0.0,0.0,0.0,0.0,8.923896033319378,0.0,0.0,0.0 -3645,my_reservoir,2010-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3646,gw1,2010-06-01,260.72435748765787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3647,gw2,2010-06-01,264.27564251234213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3648,my_sewer,2010-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -3649,my_land,2010-06-02,1.360184663639417,percolation,0.0,0.0,0.00012052092099216212,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3650,my_land,2010-06-02,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3651,my_land,2010-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3652,my_groundwater,2010-06-02,14.441142624703925,tank,0.0,0.0,0.001329063518082581,0.0,0.0,0.0,0.0,0.0,8.922294374282647,0.0,0.0,0.0 -3653,my_reservoir,2010-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3654,gw1,2010-06-02,260.7361951044068,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3655,gw2,2010-06-02,264.2638048955932,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3656,my_sewer,2010-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -3657,my_land,2010-06-03,1.3329809703666287,percolation,0.0,0.0,0.00011811050257231888,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3658,my_land,2010-06-03,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3659,my_land,2010-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3660,my_groundwater,2010-06-03,14.432175452181772,tank,0.0,0.0,0.0013281452516611682,0.0,0.0,0.0,0.0,0.0,8.92072678464134,0.0,0.0,0.0 -3661,my_reservoir,2010-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3662,gw1,2010-06-03,260.7479538037108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3663,gw2,2010-06-03,264.2520461962892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3664,my_sewer,2010-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -3665,my_land,2010-06-04,1.3063213509592961,percolation,0.0,0.0,0.0001157482925208725,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3666,my_land,2010-06-04,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3667,my_land,2010-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3668,my_groundwater,2010-06-04,14.422687983910132,tank,0.0,0.0,0.0013271811930583332,0.0,0.0,0.0,0.0,0.0,8.919192426598974,0.0,0.0,0.0 -3669,my_reservoir,2010-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3670,gw1,2010-06-04,260.75963411168607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3671,gw2,2010-06-04,264.24036588831393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3672,my_sewer,2010-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.81428571,0.0,0.0,0.0 -3673,my_land,2010-06-05,1.2801949239401103,percolation,0.0,0.0,0.00011343332667045506,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3674,my_land,2010-06-05,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3675,my_land,2010-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3676,my_groundwater,2010-06-05,14.412692374901994,tank,0.0,0.0,0.0013261724185114788,0.0,0.0,0.0,0.0,0.0,8.917690487314044,0.0,0.0,0.0 -3677,my_reservoir,2010-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3678,gw1,2010-06-05,260.77123655094147,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3679,gw2,2010-06-05,264.22876344905853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3680,my_sewer,2010-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.275,0.0,0.0,0.0 -3681,my_land,2010-06-06,1.254591025461308,percolation,0.0,0.0,0.00011116466013704596,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3682,my_land,2010-06-06,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3683,my_land,2010-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3684,my_groundwater,2010-06-06,14.402200532697345,tank,0.0,0.0,0.0013251199823322757,0.0,0.0,0.0,0.0,0.0,8.916220177989326,0.0,0.0,0.0 -3685,my_reservoir,2010-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3686,gw1,2010-06-06,260.78276164060185,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3687,gw2,2010-06-06,264.21723835939815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3688,my_sewer,2010-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.4625,0.0,0.0,0.0 -3689,my_land,2010-06-07,1.2294992049520819,percolation,0.0,0.0,0.00010894136693430504,0.0,0.0,0.0,0.0,0.0,8.088568247927805,0.0,0.0,0.0 -3690,my_land,2010-06-07,4.906752999868246e-06,subsurface_runoff,0.0,0.0,4.3435490083433434e-10,0.0,0.0,0.0,0.0,0.0,9.494334791516735,0.0,0.0,0.0 -3691,my_land,2010-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.36785714,0.0,0.0,0.0 -3692,my_groundwater,2010-06-07,14.391224122323555,tank,0.0,0.0,0.001324024917346179,0.0,0.0,0.0,0.0,0.0,8.91478073300098,0.0,0.0,0.0 -3693,my_reservoir,2010-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3694,gw1,2010-06-07,260.79420989633115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3695,gw2,2010-06-07,264.20579010366885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3696,my_sewer,2010-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -3697,my_land,2010-06-08,1.6778005638744915,percolation,0.0,0.0,0.00016418631837924674,0.0,0.0,0.0,0.0,0.0,10.197614841891316,0.0,0.0,0.0 -3698,my_land,2010-06-08,0.12868184187082202,subsurface_runoff,0.0,0.0,1.5625865520281975e-05,0.0,0.0,0.0,0.0,0.0,15.571200258081012,0.0,0.0,0.0 -3699,my_land,2010-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.65,0.0,0.0,0.0 -3700,my_groundwater,2010-06-08,14.389401287782334,tank,0.0,0.0,0.0013240572193912482,0.0,0.0,0.0,0.0,0.0,8.91782571643923,0.0,0.0,0.0 -3701,my_reservoir,2010-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3702,gw1,2010-06-08,260.8055818303556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3703,gw2,2010-06-08,264.1944181696444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3704,my_sewer,2010-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -3705,my_land,2010-06-09,1.716441444954452,percolation,0.0,0.0,0.00016970675108464542,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -3706,my_land,2010-06-09,0.1225908863830387,subsurface_runoff,0.0,0.0,1.489638195989459e-05,0.0,0.0,0.0,0.0,0.0,15.589387801242,0.0,0.0,0.0 -3707,my_land,2010-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.51071429,0.0,0.0,0.0 -3708,my_groundwater,2010-06-09,14.388369628263737,tank,0.0,0.0,0.001324201820918422,0.0,0.0,0.0,0.0,0.0,8.921494142818286,0.0,0.0,0.0 -3709,my_reservoir,2010-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3710,gw1,2010-06-09,260.81687795148656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3711,gw2,2010-06-09,264.18312204851344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3712,my_sewer,2010-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -3713,my_land,2010-06-10,1.682112616055363,percolation,0.0,0.0,0.00016631261606295253,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -3714,my_land,2010-06-10,0.09807270910643096,subsurface_runoff,0.0,0.0,1.1917105567915672e-05,0.0,0.0,0.0,0.0,0.0,15.589387801242,0.0,0.0,0.0 -3715,my_land,2010-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.51071429,0.0,0.0,0.0 -3716,my_groundwater,2010-06-10,14.386641711019918,tank,0.0,0.0,0.0013242769660502646,0.0,0.0,0.0,0.0,0.0,8.925080900887956,0.0,0.0,0.0 -3717,my_reservoir,2010-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3718,gw1,2010-06-10,260.8280987651433,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3719,gw2,2010-06-10,264.1719012348567,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3720,my_sewer,2010-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -3721,my_land,2010-06-11,1.6484703637342557,percolation,0.0,0.0,0.00016298636374169348,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -3722,my_land,2010-06-11,0.07845816728514476,subsurface_runoff,0.0,0.0,9.533684454332538e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242001,0.0,0.0,0.0 -3723,my_land,2010-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.51071429,0.0,0.0,0.0 -3724,my_groundwater,2010-06-11,14.384233253432672,tank,0.0,0.0,0.0013242842103255948,0.0,0.0,0.0,0.0,0.0,8.928588144502898,0.0,0.0,0.0 -3725,my_reservoir,2010-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3726,gw1,2010-06-11,260.8392447733757,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3727,gw2,2010-06-11,264.1607552266243,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3728,my_sewer,2010-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.548925781250002,0.0,0.0,0.0 -3729,my_land,2010-06-12,1.6155009564595706,percolation,0.0,0.0,0.0001597266364668596,0.0,0.0,0.0,0.0,0.0,10.428412139633428,0.0,0.0,0.0 -3730,my_land,2010-06-12,0.06276653382811581,subsurface_runoff,0.0,0.0,7.62694756346603e-06,0.0,0.0,0.0,0.0,0.0,15.589387801242003,0.0,0.0,0.0 -3731,my_land,2010-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.09285714,0.0,0.0,0.0 -3732,my_groundwater,2010-06-12,14.381159654055589,tank,0.0,0.0,0.0013242250777564277,0.0,0.0,0.0,0.0,0.0,8.932017957435372,0.0,0.0,0.0 -3733,my_reservoir,2010-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3734,gw1,2010-06-12,260.85031647488654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3735,gw2,2010-06-12,264.14968352511346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3736,my_sewer,2010-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3737,my_land,2010-06-13,1.8239845100515608,percolation,0.0,0.0,0.00018629426989914602,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3738,my_land,2010-06-13,0.11573528766689578,subsurface_runoff,0.0,0.0,1.4200106666180601e-05,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -3739,my_land,2010-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3740,my_groundwater,2010-06-13,14.382337868160786,tank,0.0,0.0,0.0013247069341278405,0.0,0.0,0.0,0.0,0.0,8.937526965165235,0.0,0.0,0.0 -3741,my_reservoir,2010-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3742,gw1,2010-06-13,260.86131436505394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3743,gw2,2010-06-13,264.13868563494606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3744,my_sewer,2010-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3745,my_land,2010-06-14,1.7875048198505297,percolation,0.0,0.0,0.0001825683845011631,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3746,my_land,2010-06-14,0.09258823013351662,subsurface_runoff,0.0,0.0,1.1360085332944481e-05,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -3747,my_land,2010-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 -3748,my_groundwater,2010-06-14,14.382770514465912,tank,0.0,0.0,0.001325111737477009,0.0,0.0,0.0,0.0,0.0,8.942911692518248,0.0,0.0,0.0 -3749,my_reservoir,2010-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3750,gw1,2010-06-14,260.8722389359536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3751,gw2,2010-06-14,264.1277610640464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3752,my_sewer,2010-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3753,my_land,2010-06-15,1.7517547234535191,percolation,0.0,0.0,0.00017891701681113984,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3754,my_land,2010-06-15,0.0740705841068133,subsurface_runoff,0.0,0.0,9.088068266355585e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -3755,my_land,2010-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.674999999999999,0.0,0.0,0.0 -3756,my_groundwater,2010-06-15,14.382474309335766,tank,0.0,0.0,0.0013254411974041149,0.0,0.0,0.0,0.0,0.0,8.948175482806093,0.0,0.0,0.0 -3757,my_reservoir,2010-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3758,gw1,2010-06-15,260.88309067638056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3759,gw2,2010-06-15,264.11690932361944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3760,my_sewer,2010-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3761,my_land,2010-06-16,1.7167196289844489,percolation,0.0,0.0,0.00017533867647491705,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3762,my_land,2010-06-16,0.05925646728545064,subsurface_runoff,0.0,0.0,7.2704546130844675e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 -3763,my_land,2010-06-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.674999999999999,0.0,0.0,0.0 -3764,my_groundwater,2010-06-16,14.381465630295324,tank,0.0,0.0,0.0013256969888959867,0.0,0.0,0.0,0.0,0.0,8.953321567883162,0.0,0.0,0.0 -3765,my_reservoir,2010-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3766,gw1,2010-06-16,260.89387007187133,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3767,gw2,2010-06-16,264.10612992812867,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3768,my_sewer,2010-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3769,my_land,2010-06-17,1.6823852364047598,percolation,0.0,0.0,0.0001718319029454187,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3770,my_land,2010-06-17,0.047405173828360514,subsurface_runoff,0.0,0.0,5.816363690467574e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 -3771,my_land,2010-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.674999999999999,0.0,0.0,0.0 -3772,my_groundwater,2010-06-17,14.379760522817826,tank,0.0,0.0,0.0013258807530194213,0.0,0.0,0.0,0.0,0.0,8.958353072730011,0.0,0.0,0.0 -3773,my_reservoir,2010-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3774,gw1,2010-06-17,260.90457760472555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3775,gw2,2010-06-17,264.09542239527445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3776,my_sewer,2010-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3777,my_land,2010-06-18,1.6487375316766646,percolation,0.0,0.0,0.00016839526488651035,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3778,my_land,2010-06-18,0.03792413906268841,subsurface_runoff,0.0,0.0,4.65309095237406e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410314,0.0,0.0,0.0 -3779,my_land,2010-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3780,my_groundwater,2010-06-18,14.377374706977056,tank,0.0,0.0,0.0013259940976006338,0.0,0.0,0.0,0.0,0.0,8.963273019811483,0.0,0.0,0.0 -3781,my_reservoir,2010-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3782,gw1,2010-06-18,260.9152137540274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3783,gw2,2010-06-18,264.0847862459726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3784,my_sewer,2010-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3785,my_land,2010-06-19,1.6157627810431312,percolation,0.0,0.0,0.00016502735958878016,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3786,my_land,2010-06-19,0.03033931125015073,subsurface_runoff,0.0,0.0,3.7224727618992476e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -3787,my_land,2010-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3788,my_groundwater,2010-06-19,14.374323583966563,tank,0.0,0.0,0.001326038597891118,0.0,0.0,0.0,0.0,0.0,8.968084333222315,0.0,0.0,0.0 -3789,my_reservoir,2010-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3790,gw1,2010-06-19,260.9257789956672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3791,gw2,2010-06-19,264.0742210043328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3792,my_sewer,2010-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3793,my_land,2010-06-20,1.5834475254222686,percolation,0.0,0.0,0.00016172681239700454,0.0,0.0,0.0,0.0,0.0,11.065872926348993,0.0,0.0,0.0 -3794,my_land,2010-06-20,0.024271449000120585,subsurface_runoff,0.0,0.0,2.9779782095193982e-06,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -3795,my_land,2010-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3796,my_groundwater,2010-06-20,14.370622242488455,tank,0.0,0.0,0.0013260157972201864,0.0,0.0,0.0,0.0,0.0,8.972789842632265,0.0,0.0,0.0 -3797,my_reservoir,2010-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3798,gw1,2010-06-20,260.93627380236273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3799,gw2,2010-06-20,264.06372619763727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3800,my_sewer,2010-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3801,my_land,2010-06-21,1.5517785749138233,percolation,0.0,0.0,0.00015849227614906446,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -3802,my_land,2010-06-21,0.019417159200096467,subsurface_runoff,0.0,0.0,2.3823825676155187e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3803,my_land,2010-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3804,my_groundwater,2010-06-21,14.366285465014409,tank,0.0,0.0,0.0013259272076344563,0.0,0.0,0.0,0.0,0.0,8.97739228704198,0.0,0.0,0.0 -3805,my_reservoir,2010-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3806,gw1,2010-06-21,260.9466986436803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3807,gw2,2010-06-21,264.0533013563197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3808,my_sewer,2010-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3809,my_land,2010-06-22,1.520743003415547,percolation,0.0,0.0,0.00015532243062608316,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -3810,my_land,2010-06-22,0.015533727360077174,subsurface_runoff,0.0,0.0,1.905906054092415e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3811,my_land,2010-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3812,my_groundwater,2010-06-22,14.361327733921405,tank,0.0,0.0,0.0013257743105245438,0.0,0.0,0.0,0.0,0.0,8.981894318360137,0.0,0.0,0.0 -3813,my_reservoir,2010-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3814,gw1,2010-06-22,260.95705398605577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3815,gw2,2010-06-22,264.04294601394423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3816,my_sewer,2010-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3817,my_land,2010-06-23,1.490328143347236,percolation,0.0,0.0,0.00015221598201356148,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3818,my_land,2010-06-23,0.012426981888061739,subsurface_runoff,0.0,0.0,1.5247248432739322e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3819,my_land,2010-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3820,my_groundwater,2010-06-23,14.35576323750474,tank,0.0,0.0,0.0013255585572392228,0.0,0.0,0.0,0.0,0.0,8.986298504811735,0.0,0.0,0.0 -3821,my_reservoir,2010-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3822,gw1,2010-06-23,260.9673402928154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3823,gw2,2010-06-23,264.0326597071846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3824,my_sewer,2010-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3825,my_land,2010-06-24,1.4605215804802913,percolation,0.0,0.0,0.00014917166237329025,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3826,my_land,2010-06-24,0.00994158551044939,subsurface_runoff,0.0,0.0,1.2197798746191457e-06,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3827,my_land,2010-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3828,my_groundwater,2010-06-24,14.349605875870756,tank,0.0,0.0,0.0013252813696872953,0.0,0.0,0.0,0.0,0.0,8.990607334186741,0.0,0.0,0.0 -3829,my_reservoir,2010-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3830,gw1,2010-06-24,260.9775580241966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3831,gw2,2010-06-24,264.0224419758034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3832,my_sewer,2010-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3833,my_land,2010-06-25,1.4313111488706856,percolation,0.0,0.0,0.00014618822912582444,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3834,my_land,2010-06-25,0.007953268408359512,subsurface_runoff,0.0,0.0,9.758238996953167e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3835,my_land,2010-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3836,my_groundwater,2010-06-25,14.342869266711661,tank,0.0,0.0,0.001324944140927424,0.0,0.0,0.0,0.0,0.0,8.99482321693782,0.0,0.0,0.0 -3837,my_reservoir,2010-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3838,gw1,2010-06-25,260.9877076373686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3839,gw2,2010-06-25,264.0122923626314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3840,my_sewer,2010-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3841,my_land,2010-06-26,1.4026849258932719,percolation,0.0,0.0,0.00014326446454330794,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3842,my_land,2010-06-26,0.00636261472668761,subsurface_runoff,0.0,0.0,7.806591197562533e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3843,my_land,2010-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3844,my_groundwater,2010-06-26,14.335566750964851,tank,0.0,0.0,0.0013245482357461655,0.0,0.0,0.0,0.0,0.0,8.998948489135236,0.0,0.0,0.0 -3845,my_reservoir,2010-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3846,gw1,2010-06-26,260.9977895864528,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3847,gw2,2010-06-26,264.0022104135472,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3848,my_sewer,2010-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3849,my_land,2010-06-27,1.3746312273754064,percolation,0.0,0.0,0.00014039917525244177,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3850,my_land,2010-06-27,0.0050900917813500885,subsurface_runoff,0.0,0.0,6.245272958050027e-07,0.0,0.0,0.0,0.0,0.0,15.40127105041031,0.0,0.0,0.0 -3851,my_land,2010-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3852,my_groundwater,2010-06-27,14.32771139835901,tank,0.0,0.0,0.001324094991224439,0.0,0.0,0.0,0.0,0.0,9.002985415286602,0.0,0.0,0.0 -3853,my_reservoir,2010-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3854,gw1,2010-06-27,261.00780432254317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3855,gw2,2010-06-27,263.99219567745683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3856,my_sewer,2010-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3857,my_land,2010-06-28,1.3471386028278982,percolation,0.0,0.0,0.00013759119174739292,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3858,my_land,2010-06-28,0.004072073425080071,subsurface_runoff,0.0,0.0,4.996218366440022e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -3859,my_land,2010-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3860,my_groundwater,2010-06-28,14.319316012849251,tank,0.0,0.0,0.001323585717292664,0.0,0.0,0.0,0.0,0.0,9.006936191028618,0.0,0.0,0.0 -3861,my_reservoir,2010-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3862,gw1,2010-06-28,261.01775229372623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3863,gw2,2010-06-28,263.98224770627377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3864,my_sewer,2010-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3865,my_land,2010-06-29,1.3201958307713402,percolation,0.0,0.0,0.00013483936791244507,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3866,my_land,2010-06-29,0.0032576587400640566,subsurface_runoff,0.0,0.0,3.9969746931520175e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -3867,my_land,2010-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3868,my_groundwater,2010-06-29,14.310393137943544,tank,0.0,0.0,0.0013230216972747928,0.0,0.0,0.0,0.0,0.0,9.010802945697575,0.0,0.0,0.0 -3869,my_reservoir,2010-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3870,gw1,2010-06-29,261.0276339451014,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3871,gw2,2010-06-29,263.9723660548986,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3872,my_sewer,2010-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3873,my_land,2010-06-30,1.2937919141559133,percolation,0.0,0.0,0.00013214258055419616,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3874,my_land,2010-06-30,0.0026061269920512452,subsurface_runoff,0.0,0.0,3.197579754521614e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -3875,my_land,2010-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3876,my_groundwater,2010-06-30,14.300955061922574,tank,0.0,0.0,0.001322404188421459,0.0,0.0,0.0,0.0,0.0,9.01458774478495,0.0,0.0,0.0 -3877,my_reservoir,2010-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3878,gw1,2010-06-30,261.0374497188007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3879,gw2,2010-06-30,263.9625502811993,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3880,my_sewer,2010-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3881,my_land,2010-07-01,1.267916075872795,percolation,0.0,0.0,0.00012949972894311224,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3882,my_land,2010-07-01,0.0020849015936409963,subsurface_runoff,0.0,0.0,2.5580638036172914e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -3883,my_land,2010-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3884,my_groundwater,2010-07-01,14.291013822955177,tank,0.0,0.0,0.0013217344224324616,0.0,0.0,0.0,0.0,0.0,9.018292592284055,0.0,0.0,0.0 -3885,my_reservoir,2010-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3886,gw1,2010-07-01,261.04720005400867,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3887,gw2,2010-07-01,263.95279994599133,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3888,my_sewer,2010-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3889,my_land,2010-07-02,1.242557754355339,percolation,0.0,0.0,0.00012690973436425,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3890,my_land,2010-07-02,0.0016679212749127971,subsurface_runoff,0.0,0.0,2.046451042893833e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -3891,my_land,2010-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3892,my_groundwater,2010-07-02,14.28058121411145,tank,0.0,0.0,0.0013210136059687955,0.0,0.0,0.0,0.0,0.0,9.021919432933355,0.0,0.0,0.0 -3893,my_reservoir,2010-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3894,gw1,2010-07-02,261.05688538698195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3895,gw2,2010-07-02,263.94311461301805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3896,my_sewer,2010-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3897,my_land,2010-07-03,1.217706599268232,percolation,0.0,0.0,0.000124371539676965,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3898,my_land,2010-07-03,0.0013343370199302377,subsurface_runoff,0.0,0.0,1.6371608343150663e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -3899,my_land,2010-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3900,my_groundwater,2010-07-03,14.269668788275562,tank,0.0,0.0,0.0013202429211544404,0.0,0.0,0.0,0.0,0.0,9.025470154361743,0.0,0.0,0.0 -3901,my_reservoir,2010-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3902,gw1,2010-07-03,261.0665061510687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3903,gw2,2010-07-03,263.9334938489313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3904,my_sewer,2010-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3905,my_land,2010-07-04,1.1933524672828675,percolation,0.0,0.0,0.0001218841088834257,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3906,my_land,2010-07-04,0.0010674696159441901,subsurface_runoff,0.0,0.0,1.309728667452053e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -3907,my_land,2010-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3908,my_groundwater,2010-07-04,14.258287862960275,tank,0.0,0.0,0.0013194235260681098,0.0,0.0,0.0,0.0,0.0,9.028946589140777,0.0,0.0,0.0 -3909,my_reservoir,2010-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3910,gw1,2010-07-04,261.07606277672824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3911,gw2,2010-07-04,263.92393722327176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3912,my_sewer,2010-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3913,my_land,2010-07-05,1.16948541793721,percolation,0.0,0.0,0.00011944642670575719,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3914,my_land,2010-07-05,0.0008539756927553521,subsurface_runoff,0.0,0.0,1.0477829339616424e-07,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3915,my_land,2010-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3916,my_groundwater,2010-07-05,14.246449525025168,tank,0.0,0.0,0.001318556555225164,0.0,0.0,0.0,0.0,0.0,9.032350516748489,0.0,0.0,0.0 -3917,my_reservoir,2010-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3918,gw1,2010-07-05,261.08555569155004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3919,gw2,2010-07-05,263.91444430844996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3920,my_sewer,2010-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3921,my_land,2010-07-06,1.1460957095784658,percolation,0.0,0.0,0.00011705749817164204,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3922,my_land,2010-07-06,0.0006831805542042817,subsurface_runoff,0.0,0.0,8.382263471693139e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3923,my_land,2010-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3924,my_groundwater,2010-07-06,14.234164635300452,tank,0.0,0.0,0.001317643120049881,0.0,0.0,0.0,0.0,0.0,9.0356836654493,0.0,0.0,0.0 -3925,my_reservoir,2010-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3926,gw1,2010-07-06,261.09498532027305,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3927,gw2,2010-07-06,263.90501467972695,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3928,my_sewer,2010-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3929,my_land,2010-07-07,1.1231737953868965,percolation,0.0,0.0,0.0001147163482082092,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3930,my_land,2010-07-07,0.0005465444433634253,subsurface_runoff,0.0,0.0,6.705810777354512e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3931,my_land,2010-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3932,my_groundwater,2010-07-07,14.221443833118292,tank,0.0,0.0,0.0013166843093382805,0.0,0.0,0.0,0.0,0.0,9.038947714094123,0.0,0.0,0.0 -3933,my_reservoir,2010-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3934,gw1,2010-07-07,261.1043520848046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3935,gw2,2010-07-07,263.8956479151954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3936,my_sewer,2010-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3937,my_land,2010-07-08,1.1007103194791585,percolation,0.0,0.0,0.00011242202124404502,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3938,my_land,2010-07-08,0.0004372355546907403,subsurface_runoff,0.0,0.0,5.3646486218836096e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3939,my_land,2010-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3940,my_groundwater,2010-07-08,14.208297540753465,tank,0.0,0.0,0.0013156811897116886,0.0,0.0,0.0,0.0,0.0,9.042144293844638,0.0,0.0,0.0 -3941,my_reservoir,2010-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3942,gw1,2010-07-08,261.11365640423924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3943,gw2,2010-07-08,263.88634359576076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3944,my_sewer,2010-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3945,my_land,2010-07-09,1.0786961130895754,percolation,0.0,0.0,0.00011017358081916412,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3946,my_land,2010-07-09,0.00034978844375259225,subsurface_runoff,0.0,0.0,4.291718897506888e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3947,my_land,2010-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3948,my_groundwater,2010-07-09,14.194735967775191,tank,0.0,0.0,0.001314634806061228,0.0,0.0,0.0,0.0,0.0,9.04527498982545,0.0,0.0,0.0 -3949,my_reservoir,2010-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3950,gw1,2010-07-09,261.1228986948776,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3951,gw2,2010-07-09,263.8771013051224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3952,my_sewer,2010-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3953,my_land,2010-07-10,1.057122190827784,percolation,0.0,0.0,0.00010797010920278084,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3954,my_land,2010-07-10,0.0002798307550020738,subsurface_runoff,0.0,0.0,3.43337511800551e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3955,my_land,2010-07-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3956,my_groundwater,2010-07-10,14.180769115311891,tank,0.0,0.0,0.0013135461819834171,0.0,0.0,0.0,0.0,0.0,9.048341342707602,0.0,0.0,0.0 -3957,my_reservoir,2010-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3958,gw1,2010-07-10,261.1320793702451,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3959,gw2,2010-07-10,263.8679206297549,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3960,my_sewer,2010-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3961,my_land,2010-07-11,1.0359797470112282,percolation,0.0,0.0,0.00010581070701872521,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3962,my_land,2010-07-11,0.00022386460400165901,subsurface_runoff,0.0,0.0,2.746700094404408e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3963,my_land,2010-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3964,my_groundwater,2010-07-11,14.166406780230627,tank,0.0,0.0,0.001312416320207054,0.0,0.0,0.0,0.0,0.0,9.05134485022683,0.0,0.0,0.0 -3965,my_reservoir,2010-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3966,gw1,2010-07-11,261.1411988411101,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3967,gw2,2010-07-11,263.8588011588899,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3968,my_sewer,2010-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95357143,0.0,0.0,0.0 -3969,my_land,2010-07-12,1.0152601520710036,percolation,0.0,0.0,0.00010369449287835071,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3970,my_land,2010-07-12,0.0001790916832013272,subsurface_runoff,0.0,0.0,2.1973600755235266e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3971,my_land,2010-07-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3972,my_groundwater,2010-07-12,14.151658559232924,tank,0.0,0.0,0.0013112462030115599,0.0,0.0,0.0,0.0,0.0,9.05428696863962,0.0,0.0,0.0 -3973,my_reservoir,2010-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3974,gw1,2010-07-12,261.1502575155027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3975,gw2,2010-07-12,263.8497424844973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3976,my_sewer,2010-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,0.0,0.0,0.0 -3977,my_land,2010-07-13,0.9949549490295836,percolation,0.0,0.0,0.00010162060302078369,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3978,my_land,2010-07-13,0.00014327334656106177,subsurface_runoff,0.0,0.0,1.7578880604188214e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3979,my_land,2010-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3980,my_groundwater,2010-07-13,14.13653385286866,tank,0.0,0.0,0.001310036792636954,0.0,0.0,0.0,0.0,0.0,9.057169114120072,0.0,0.0,0.0 -3981,my_reservoir,2010-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3982,gw1,2010-07-13,261.15925579873266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3983,gw2,2010-07-13,263.84074420126734,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3984,my_sewer,2010-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.60416667,0.0,0.0,0.0 -3985,my_land,2010-07-14,0.9750558500489919,percolation,0.0,0.0,9.958819096036801e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -3986,my_land,2010-07-14,0.00011461867724884943,subsurface_runoff,0.0,0.0,1.4063104483350572e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3987,my_land,2010-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3988,my_groundwater,2010-07-14,14.121041869469627,tank,0.0,0.0,0.0013087890316856262,0.0,0.0,0.0,0.0,0.0,9.059992664100365,0.0,0.0,0.0 -3989,my_reservoir,2010-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3990,gw1,2010-07-14,261.16819409340775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3991,gw2,2010-07-14,263.83180590659225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3992,my_sewer,2010-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.85833333,0.0,0.0,0.0 -3993,my_land,2010-07-15,0.9555547330480121,percolation,0.0,0.0,9.759642714116065e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -3994,my_land,2010-07-15,9.169494179907954e-05,subsurface_runoff,0.0,0.0,1.1250483586680457e-08,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -3995,my_land,2010-07-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -3996,my_groundwater,2010-07-15,14.10519162900443,tank,0.0,0.0,0.0013075038435160715,0.0,0.0,0.0,0.0,0.0,9.06275895855748,0.0,0.0,0.0 -3997,my_reservoir,2010-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3998,gw1,2010-07-15,261.1770727994517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3999,gw2,2010-07-15,263.8229272005483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4000,my_sewer,2010-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4001,my_land,2010-07-16,0.9364436383870518,percolation,0.0,0.0,9.564449859833744e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4002,my_land,2010-07-16,7.335595343926363e-05,subsurface_runoff,0.0,0.0,9.000386869344366e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410305,0.0,0.0,0.0 -4003,my_land,2010-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4004,my_groundwater,2010-07-16,14.088991966856227,tank,0.0,0.0,0.0013061821326287473,0.0,0.0,0.0,0.0,0.0,9.065469301248664,0.0,0.0,0.0 -4005,my_reservoir,2010-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4006,gw1,2010-07-16,261.18589231412204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4007,gw2,2010-07-16,263.81410768587796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4008,my_sewer,2010-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4009,my_land,2010-07-17,0.9177147656193108,percolation,0.0,0.0,9.37316086263707e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4010,my_land,2010-07-17,5.868476275141091e-05,subsurface_runoff,0.0,0.0,7.200309495475493e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4011,my_land,2010-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4012,my_groundwater,2010-07-17,14.072451537524907,tank,0.0,0.0,0.0013048247850442124,0.0,0.0,0.0,0.0,0.0,9.068124960898054,0.0,0.0,0.0 -4013,my_reservoir,2010-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4014,gw1,2010-07-17,261.1946530320279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4015,gw2,2010-07-17,263.8053469679721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4016,my_sewer,2010-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4017,my_land,2010-07-18,0.8993604703069246,percolation,0.0,0.0,9.185697645384329e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4018,my_land,2010-07-18,4.694781020112873e-05,subsurface_runoff,0.0,0.0,5.7602475963803944e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4019,my_land,2010-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4020,my_groundwater,2010-07-18,14.055578818255201,tank,0.0,0.0,0.001303432668673698,0.0,0.0,0.0,0.0,0.0,9.070727172336674,0.0,0.0,0.0 -4021,my_reservoir,2010-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4022,gw1,2010-07-18,261.2033553451477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4023,gw2,2010-07-18,263.7966446548523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4024,my_sewer,2010-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4025,my_land,2010-07-19,0.881373260900786,percolation,0.0,0.0,9.001983692476642e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4026,my_land,2010-07-19,3.755824816090298e-05,subsurface_runoff,0.0,0.0,4.608198077104316e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4027,my_land,2010-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4028,my_groundwater,2010-07-19,14.038382112592187,tank,0.0,0.0,0.001302006633682268,0.0,0.0,0.0,0.0,0.0,9.073277137597977,0.0,0.0,0.0 -4029,my_reservoir,2010-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4030,gw1,2010-07-19,261.2119996428467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4031,gw2,2010-07-19,263.7880003571533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4032,my_sewer,2010-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4033,my_land,2010-07-20,0.8637457956827703,percolation,0.0,0.0,8.821944018627109e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4034,my_land,2010-07-20,3.0046598528722386e-05,subsurface_runoff,0.0,0.0,3.6865584616834527e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4035,my_land,2010-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4036,my_groundwater,2010-07-20,14.020869553865678,tank,0.0,0.0,0.0013005475128447113,0.0,0.0,0.0,0.0,0.0,9.075776026970905,0.0,0.0,0.0 -4037,my_reservoir,2010-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4038,gw1,2010-07-20,261.2205863118944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4039,gw2,2010-07-20,263.7794136881056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4040,my_sewer,2010-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.03162878681818,0.0,0.0,0.0 -4041,my_land,2010-07-21,0.846470879769115,percolation,0.0,0.0,8.645505138254566e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4042,my_land,2010-07-21,2.403727882297791e-05,subsurface_runoff,0.0,0.0,2.949246769346762e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4043,my_land,2010-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4044,my_groundwater,2010-07-21,14.003049108604884,tank,0.0,0.0,0.0012990561218943156,0.0,0.0,0.0,0.0,0.0,9.078224980012441,0.0,0.0,0.0 -4045,my_reservoir,2010-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4046,gw1,2010-07-21,261.2291157364818,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4047,gw2,2010-07-21,263.7708842635182,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4048,my_sewer,2010-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4049,my_land,2010-07-22,0.8295414621737327,percolation,0.0,0.0,8.472595035489475e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348995,0.0,0.0,0.0 -4050,my_land,2010-07-22,1.922982305838233e-05,subsurface_runoff,0.0,0.0,2.3593974154774095e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4051,my_land,2010-07-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4052,my_groundwater,2010-07-22,13.984928579884764,tank,0.0,0.0,0.0012975332598646617,0.0,0.0,0.0,0.0,0.0,9.080625106521428,0.0,0.0,0.0 -4053,my_reservoir,2010-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4054,gw1,2010-07-22,261.23758829823856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4055,gw2,2010-07-22,263.76241170176144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4056,my_sewer,2010-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4057,my_land,2010-07-23,0.812950632930258,percolation,0.0,0.0,8.303143134779686e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4058,my_land,2010-07-23,1.5383858446705863e-05,subsurface_runoff,0.0,0.0,1.8875179323819276e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4059,my_land,2010-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4060,my_groundwater,2010-07-23,13.966515610605418,tank,0.0,0.0,0.0012959797094245803,0.0,0.0,0.0,0.0,0.0,9.082977487475402,0.0,0.0,0.0 -4061,my_reservoir,2010-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4062,gw1,2010-07-23,261.2460043762503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4063,gw2,2010-07-23,263.7539956237497,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4064,my_sewer,2010-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4065,my_land,2010-07-24,0.7966916202716529,percolation,0.0,0.0,8.137080272084093e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4066,my_land,2010-07-24,1.230708675736469e-05,subsurface_runoff,0.0,0.0,1.510014345905542e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4067,my_land,2010-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4068,my_groundwater,2010-07-24,13.947817686705863,tank,0.0,0.0,0.0012943962372064075,0.0,0.0,0.0,0.0,0.0,9.085283175932092,0.0,0.0,0.0 -4069,my_reservoir,2010-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4070,gw1,2010-07-24,261.2543643470753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4071,gw2,2010-07-24,263.7456356529247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4072,my_sewer,2010-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4073,my_land,2010-07-25,0.7807577878662197,percolation,0.0,0.0,7.974338666642411e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4074,my_land,2010-07-25,9.845669405891752e-06,subsurface_runoff,0.0,0.0,1.2080114767244337e-09,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4075,my_land,2010-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4076,my_groundwater,2010-07-25,13.928842140313519,tank,0.0,0.0,0.0012927835941276722,0.0,0.0,0.0,0.0,0.0,9.087543197897096,0.0,0.0,0.0 -4077,my_reservoir,2010-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4078,gw1,2010-07-25,261.26266858476146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4079,gw2,2010-07-25,263.73733141523854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4080,my_sewer,2010-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4081,my_land,2010-07-26,0.7651426321088953,percolation,0.0,0.0,7.814851893309563e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4082,my_land,2010-07-26,7.876535524713401e-06,subsurface_runoff,0.0,0.0,9.664091813795468e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4083,my_land,2010-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4084,my_groundwater,2010-07-26,13.909596152830666,tank,0.0,0.0,0.0012911425157063482,0.0,0.0,0.0,0.0,0.0,9.089758553159278,0.0,0.0,0.0 -4085,my_reservoir,2010-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4086,gw1,2010-07-26,261.2709174608631,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4087,gw2,2010-07-26,263.7290825391369,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4088,my_sewer,2010-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4089,my_land,2010-07-27,0.7498397794667174,percolation,0.0,0.0,7.658554855443372e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4090,my_land,2010-07-27,6.301228419770721e-06,subsurface_runoff,0.0,0.0,7.731273451036375e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410307,0.0,0.0,0.0 -4091,my_land,2010-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4092,my_groundwater,2010-07-27,13.89008675795916,tank,0.0,0.0,0.0012894737223697974,0.0,0.0,0.0,0.0,0.0,9.091930216095227,0.0,0.0,0.0 -4093,my_reservoir,2010-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4094,gw1,2010-07-27,261.2791113444573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4095,gw2,2010-07-27,263.7208886555427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4096,my_sewer,2010-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4097,my_land,2010-07-28,0.7348429838773831,percolation,0.0,0.0,7.505383758334504e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4098,my_land,2010-07-28,5.0409827358165764e-06,subsurface_runoff,0.0,0.0,6.1850187608291e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -4099,my_land,2010-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4100,my_groundwater,2010-07-28,13.870320844664624,tank,0.0,0.0,0.0012877779197575337,0.0,0.0,0.0,0.0,0.0,9.094059136444157,0.0,0.0,0.0 -4101,my_reservoir,2010-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4102,gw1,2010-07-28,261.2872506021609,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4103,gw2,2010-07-28,263.7127493978391,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4104,my_sewer,2010-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4105,my_land,2010-07-29,0.7201461241998355,percolation,0.0,0.0,7.355276083167814e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4106,my_land,2010-07-29,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410308,0.0,0.0,0.0 -4107,my_land,2010-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4108,my_groundwater,2010-07-29,13.850305160081316,tank,0.0,0.0,0.0012860557990179277,0.0,0.0,0.0,0.0,0.0,9.096146240054505,0.0,0.0,0.0 -4109,my_reservoir,2010-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4110,gw1,2010-07-29,261.2953355981465,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4111,gw2,2010-07-29,263.7046644018535,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4112,my_sewer,2010-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4113,my_land,2010-07-30,0.7057432017158388,percolation,0.0,0.0,7.208170561504457e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4114,my_land,2010-07-30,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4115,my_land,2010-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4116,my_groundwater,2010-07-30,13.830046312358899,tank,0.0,0.0,0.001284308037098975,0.0,0.0,0.0,0.0,0.0,9.098192429603424,0.0,0.0,0.0 -4117,my_reservoir,2010-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4118,gw1,2010-07-30,261.30336669415885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4119,gw2,2010-07-30,263.69663330584115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4120,my_sewer,2010-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4121,my_land,2010-07-31,0.691628337681522,percolation,0.0,0.0,7.064007150274368e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4122,my_land,2010-07-31,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4123,my_land,2010-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4124,my_groundwater,2010-07-31,13.809550773452234,tank,0.0,0.0,0.0012825352970332476,0.0,0.0,0.0,0.0,0.0,9.100198585290336,0.0,0.0,0.0 -4125,my_reservoir,2010-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4126,gw1,2010-07-31,261.31134424953115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4127,gw2,2010-07-31,263.68865575046885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4128,my_sewer,2010-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4129,my_land,2010-08-01,0.6777957709278916,percolation,0.0,0.0,6.922727007268882e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4130,my_land,2010-08-01,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4131,my_land,2010-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4132,my_groundwater,2010-08-01,13.788824881855348,tank,0.0,0.0,0.0012807382282171442,0.0,0.0,0.0,0.0,0.0,9.10216556550563,0.0,0.0,0.0 -4133,my_reservoir,2010-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4134,gw1,2010-08-01,261.31926862120093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4135,gw2,2010-08-01,263.68073137879907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4136,my_sewer,2010-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4137,my_land,2010-08-02,0.6642398555093337,percolation,0.0,0.0,6.784272467123504e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4138,my_land,2010-08-02,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4139,my_land,2010-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4140,my_groundwater,2010-08-02,13.767874845280721,tank,0.0,0.0,0.0012789174666845513,0.0,0.0,0.0,0.0,0.0,9.104094207475546,0.0,0.0,0.0 -4141,my_reservoir,2010-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4142,gw1,2010-08-02,261.32714016372626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4143,gw2,2010-08-02,263.67285983627374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4144,my_sewer,2010-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0625,0.0,0.0,0.0 -4145,my_land,2010-08-03,0.650955058399147,percolation,0.0,0.0,6.648587017781034e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4146,my_land,2010-08-03,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4147,my_land,2010-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4148,my_groundwater,2010-08-03,13.74670674328493,tank,0.0,0.0,0.0012770736353750311,0.0,0.0,0.0,0.0,0.0,9.105985327884248,0.0,0.0,0.0 -4149,my_reservoir,2010-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4150,gw1,2010-08-03,261.33495922930143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4151,gw2,2010-08-03,263.66504077069857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4152,my_sewer,2010-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4153,my_land,2010-08-04,0.637935957231164,percolation,0.0,0.0,6.515615277425413e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4154,my_land,2010-08-04,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4155,my_land,2010-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4156,my_groundwater,2010-08-04,13.72532652984178,tank,0.0,0.0,0.001275207344396641,0.0,0.0,0.0,0.0,0.0,9.10783972347401,0.0,0.0,0.0 -4157,my_reservoir,2010-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4158,gw1,2010-08-04,261.34272616777275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4159,gw2,2010-08-04,263.65727383222725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4160,my_sewer,2010-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4161,my_land,2010-08-05,0.6251772380865408,percolation,0.0,0.0,6.385302971876904e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4162,my_land,2010-08-05,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4163,my_land,2010-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4164,my_groundwater,2010-08-05,13.703740035863937,tank,0.0,0.0,0.0012733191912834957,0.0,0.0,0.0,0.0,0.0,9.10965817162443,0.0,0.0,0.0 -4165,my_reservoir,2010-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4166,gw1,2010-08-05,261.3504413266543,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4167,gw2,2010-08-05,263.6495586733457,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4168,my_sewer,2010-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4169,my_land,2010-08-06,0.61267369332481,percolation,0.0,0.0,6.257596912439367e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4170,my_land,2010-08-06,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4171,my_land,2010-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4172,my_groundwater,2010-08-06,13.681952971674106,tank,0.0,0.0,0.0012714097612481765,0.0,0.0,0.0,0.0,0.0,9.111441430911528,0.0,0.0,0.0 -4173,my_reservoir,2010-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4174,gw1,2010-08-06,261.35810505114324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4175,gw2,2010-08-06,263.64189494885676,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4176,my_sewer,2010-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4177,my_land,2010-08-07,0.6004202194583138,percolation,0.0,0.0,6.13244497419058e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4178,my_land,2010-08-07,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4179,my_land,2010-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4180,my_groundwater,2010-08-07,13.65997092942675,tank,0.0,0.0,0.0012694796274290876,0.0,0.0,0.0,0.0,0.0,9.113190241647546,0.0,0.0,0.0 -4181,my_reservoir,2010-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4182,gw1,2010-08-07,261.36571768413563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4183,gw2,2010-08-07,263.63428231586437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4184,my_sewer,2010-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38571429,0.0,0.0,0.0 -4185,my_land,2010-08-08,0.5884118150691475,percolation,0.0,0.0,6.009796074706768e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4186,my_land,2010-08-08,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4187,my_land,2010-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4188,my_groundwater,2010-08-08,13.637799385481376,tank,0.0,0.0,0.001267529351132866,0.0,0.0,0.0,0.0,0.0,9.114905326402218,0.0,0.0,0.0 -4189,my_reservoir,2010-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4190,gw1,2010-08-08,261.3732795662414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4191,gw2,2010-08-08,263.6267204337586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4192,my_sewer,2010-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.68928571,0.0,0.0,0.0 -4193,my_land,2010-08-09,0.5766435787677646,percolation,0.0,0.0,5.889600153212633e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4194,my_land,2010-08-09,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4195,my_land,2010-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4196,my_groundwater,2010-08-09,13.615443702728303,tank,0.0,0.0,0.0012655594820719378,0.0,0.0,0.0,0.0,0.0,9.116587390506275,0.0,0.0,0.0 -4197,my_reservoir,2010-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4198,gw1,2010-08-09,261.3807910357998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4199,gw2,2010-08-09,263.6192089642002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4200,my_sewer,2010-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4201,my_land,2010-08-10,0.5651107071924093,percolation,0.0,0.0,5.7718081501483803e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4202,my_land,2010-08-10,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4203,my_land,2010-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4204,my_groundwater,2010-08-10,13.592909132867899,tank,0.0,0.0,0.0012635705585973239,0.0,0.0,0.0,0.0,0.0,9.11823712253788,0.0,0.0,0.0 -4205,my_reservoir,2010-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4206,gw1,2010-08-10,261.3882524288945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4207,gw2,2010-08-10,263.6117475711055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4208,my_sewer,2010-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4209,my_land,2010-08-11,0.5538084930485612,percolation,0.0,0.0,5.656371987145413e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4210,my_land,2010-08-11,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4211,my_land,2010-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4212,my_groundwater,2010-08-11,13.570200818644217,tank,0.0,0.0,0.0012615631079267852,0.0,0.0,0.0,0.0,0.0,9.11985519479267,0.0,0.0,0.0 -4213,my_reservoir,2010-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4214,gw1,2010-08-11,261.3956640793685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4215,gw2,2010-08-11,263.6043359206315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4216,my_sewer,2010-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.35,0.0,0.0,0.0 -4217,my_land,2010-08-12,0.5427323231875899,percolation,0.0,0.0,5.5432445474025046e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4218,my_land,2010-08-12,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4219,my_land,2010-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4220,my_groundwater,2010-08-12,13.547323796033925,tank,0.0,0.0,0.001259537646368404,0.0,0.0,0.0,0.0,0.0,9.121442263738059,0.0,0.0,0.0 -4221,my_reservoir,2010-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4222,gw1,2010-08-12,261.40302631883935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4223,gw2,2010-08-12,263.59697368116065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4224,my_sewer,2010-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.07142857,0.0,0.0,0.0 -4225,my_land,2010-08-13,0.5318776767238381,percolation,0.0,0.0,5.4323796564544544e-05,0.0,0.0,0.0,0.0,0.0,11.065872926348996,0.0,0.0,0.0 -4226,my_land,2010-08-13,4.0327861886532615e-06,subsurface_runoff,0.0,0.0,4.94801500866328e-10,0.0,0.0,0.0,0.0,0.0,15.401271050410312,0.0,0.0,0.0 -4227,my_land,2010-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01428571,0.0,0.0,0.0 -4228,my_groundwater,2010-08-13,13.524282996391433,tank,0.0,0.0,0.0012574946795396898,0.0,0.0,0.0,0.0,0.0,9.122998970452418,0.0,0.0,0.0 -4229,my_reservoir,2010-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4230,gw1,2010-08-13,261.4103394767138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4231,gw2,2010-08-13,263.5896605232862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4232,my_sewer,2010-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4233,my_land,2010-08-14,0.58518486911909,percolation,0.0,0.0,6.380925434712288e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4234,my_land,2010-08-14,0.017403157094183178,subsurface_runoff,0.0,0.0,2.8771124980358568e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 -4235,my_land,2010-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4236,my_groundwater,2010-08-14,13.502384980878949,tank,0.0,0.0,0.0012556499169471926,0.0,0.0,0.0,0.0,0.0,9.125197702570146,0.0,0.0,0.0 -4237,my_reservoir,2010-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4238,gw1,2010-08-14,261.41760388020236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4239,gw2,2010-08-14,263.58239611979764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4240,my_sewer,2010-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4241,my_land,2010-08-15,0.5734811717367082,percolation,0.0,0.0,6.253306926018043e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4242,my_land,2010-08-15,0.013922525675346542,subsurface_runoff,0.0,0.0,2.3016899984286853e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 -4243,my_land,2010-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4244,my_groundwater,2010-08-15,13.480303456565677,tank,0.0,0.0,0.0012537837867790497,0.0,0.0,0.0,0.0,0.0,9.127354085481295,0.0,0.0,0.0 -4245,my_reservoir,2010-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4246,gw1,2010-08-15,261.4248198543344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4247,gw2,2010-08-15,263.5751801456656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4248,my_sewer,2010-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4249,my_land,2010-08-16,0.5620115483019741,percolation,0.0,0.0,6.128240787497682e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4250,my_land,2010-08-16,0.011138020540277235,subsurface_runoff,0.0,0.0,1.8413519987429483e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 -4251,my_land,2010-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.79285714,0.0,0.0,0.0 -4252,my_groundwater,2010-08-16,13.45804364730041,tank,0.0,0.0,0.0012518968620438427,0.0,0.0,0.0,0.0,0.0,9.1294690029068,0.0,0.0,0.0 -4253,my_reservoir,2010-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4254,gw1,2010-08-16,261.4319877219721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4255,gw2,2010-08-16,263.5680122780279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4256,my_sewer,2010-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4257,my_land,2010-08-17,0.5507713173359347,percolation,0.0,0.0,6.0056759717477285e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4258,my_land,2010-08-17,0.008910416432221787,subsurface_runoff,0.0,0.0,1.4730815989943585e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 -4259,my_land,2010-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -4260,my_groundwater,2010-08-17,13.435610668570785,tank,0.0,0.0,0.001249989703925839,0.0,0.0,0.0,0.0,0.0,9.13154331764842,0.0,0.0,0.0 -4261,my_reservoir,2010-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4262,gw1,2010-08-17,261.43910780382566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4263,gw2,2010-08-17,263.56089219617434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4264,my_sewer,2010-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.97857143,0.0,0.0,0.0 -4265,my_land,2010-08-18,0.539755890989216,percolation,0.0,0.0,5.8855624523127736e-05,0.0,0.0,0.0,0.0,0.0,11.615141600932784,0.0,0.0,0.0 -4266,my_land,2010-08-18,0.00712833314577743,subsurface_runoff,0.0,0.0,1.178465279195487e-06,0.0,0.0,0.0,0.0,0.0,16.092330054425133,0.0,0.0,0.0 -4267,my_land,2010-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.77142857,0.0,0.0,0.0 -4268,my_groundwater,2010-08-18,13.41300952968021,tank,0.0,0.0,0.001248062862022388,0.0,0.0,0.0,0.0,0.0,9.133577872173195,0.0,0.0,0.0 -4269,my_reservoir,2010-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4270,gw1,2010-08-18,261.44618041846684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4271,gw2,2010-08-18,263.55381958153316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4272,my_sewer,2010-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 -4273,my_land,2010-08-19,0.5774735931472577,percolation,0.0,0.0,6.581802812769845e-05,0.0,0.0,0.0,0.0,0.0,11.968273197789067,0.0,0.0,0.0 -4274,my_land,2010-08-19,0.018903433857526984,subsurface_runoff,0.0,0.0,3.1576065349300704e-06,0.0,0.0,0.0,0.0,0.0,15.901213852664279,0.0,0.0,0.0 -4275,my_land,2010-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.84285714,0.0,0.0,0.0 -4276,my_groundwater,2010-08-19,13.391232718287936,tank,0.0,0.0,0.001246282571868503,0.0,0.0,0.0,0.0,0.0,9.136066355778931,0.0,0.0,0.0 -4277,my_reservoir,2010-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4278,gw1,2010-08-19,261.45320588234375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4279,gw2,2010-08-19,263.54679411765625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4280,my_sewer,2010-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 -4281,my_land,2010-08-20,0.6492945048194116,percolation,0.0,0.0,7.842229780223757e-05,0.0,0.0,0.0,0.0,0.0,12.46908293542639,0.0,0.0,0.0 -4282,my_land,2010-08-20,0.037808565735028166,subsurface_runoff,0.0,0.0,6.314011823071428e-06,0.0,0.0,0.0,0.0,0.0,15.881654089596996,0.0,0.0,0.0 -4283,my_land,2010-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91428571,0.0,0.0,0.0 -4284,my_groundwater,2010-08-20,13.370972417483182,tank,0.0,0.0,0.0012447633193583775,0.0,0.0,0.0,0.0,0.0,9.139361185938885,0.0,0.0,0.0 -4285,my_reservoir,2010-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4286,gw1,2010-08-20,261.4601845097948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4287,gw2,2010-08-20,263.5398154902052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4288,my_sewer,2010-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 -4289,my_land,2010-08-21,0.7958346284894762,percolation,0.0,0.0,0.00010303405476360818,0.0,0.0,0.0,0.0,0.0,13.165160365544303,0.0,0.0,0.0 -4290,my_land,2010-08-21,0.07365529170814573,subsurface_runoff,0.0,0.0,1.2175074197889892e-05,0.0,0.0,0.0,0.0,0.0,15.917004086137817,0.0,0.0,0.0 -4291,my_land,2010-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.98571429,0.0,0.0,0.0 -4292,my_groundwater,2010-08-21,13.353745905662295,tank,0.0,0.0,0.0012437488900319549,0.0,0.0,0.0,0.0,0.0,9.144245332138524,0.0,0.0,0.0 -4293,my_reservoir,2010-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4294,gw1,2010-08-21,261.4671166130628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4295,gw2,2010-08-21,263.5328833869372,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4296,my_sewer,2010-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 -4297,my_land,2010-08-22,2.0804579683848736,percolation,0.0,0.0,0.0002824313898784008,0.0,0.0,0.0,0.0,0.0,15.028959457364785,0.0,0.0,0.0 -4298,my_land,2010-08-22,0.41281267757473084,subsurface_runoff,0.0,0.0,5.911639029982616e-05,0.0,0.0,0.0,0.0,0.0,16.11387666564526,0.0,0.0,0.0 -4299,my_land,2010-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.05714286,0.0,0.0,0.0 -4300,my_groundwater,2010-08-22,13.362713720968832,tank,0.0,0.0,0.001246389013957971,0.0,0.0,0.0,0.0,0.0,9.162896519127962,0.0,0.0,0.0 -4301,my_reservoir,2010-08-22,0.03950000000000001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4302,gw1,2010-08-22,261.474002502309,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4303,gw2,2010-08-22,263.525997497691,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4304,my_sewer,2010-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 -4305,my_land,2010-08-23,2.4795973137478216,percolation,0.0,0.0,0.00033666312427321776,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 -4306,my_land,2010-08-23,0.45018170797288554,subsurface_runoff,0.0,0.0,6.358708834663235e-05,0.0,0.0,0.0,0.0,0.0,16.108506918122643,0.0,0.0,0.0 -4307,my_land,2010-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.12857143,0.0,0.0,0.0 -4308,my_groundwater,2010-08-23,13.379784453410563,tank,0.0,0.0,0.001250126540738638,0.0,0.0,0.0,0.0,0.0,9.185741261665326,0.0,0.0,0.0 -4309,my_reservoir,2010-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4310,gw1,2010-08-23,261.48084248562697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4311,gw2,2010-08-23,263.51915751437303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4312,my_sewer,2010-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.06846076721831,0.0,0.0,0.0 -4313,my_land,2010-08-24,2.430005367472865,percolation,0.0,0.0,0.00032992986178775343,0.0,0.0,0.0,0.0,0.0,15.218220765620721,0.0,0.0,0.0 -4314,my_land,2010-08-24,0.3601453663783084,subsurface_runoff,0.0,0.0,5.086967067730588e-05,0.0,0.0,0.0,0.0,0.0,16.108506918122643,0.0,0.0,0.0 -4315,my_land,2010-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.2,0.0,0.0,0.0 -4316,my_groundwater,2010-08-24,13.395802958686305,tank,0.0,0.0,0.0012537176537160421,0.0,0.0,0.0,0.0,0.0,9.208017977319221,0.0,0.0,0.0 -4317,my_reservoir,2010-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4318,gw1,2010-08-24,261.48763686905613,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4319,gw2,2010-08-24,263.51236313094387,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4320,my_sewer,2010-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.928628875360673,0.0,0.0,0.0 -4321,my_land,2010-08-25,4.704749611353256,percolation,0.0,0.0,0.0005907569788138361,0.0,0.0,0.0,0.0,0.0,15.740952706241456,0.0,0.0,0.0 -4322,my_land,2010-08-25,0.9203188376549862,subsurface_runoff,0.0,0.0,0.00011346463838180054,0.0,0.0,0.0,0.0,0.0,16.22407810210591,0.0,0.0,0.0 -4323,my_land,2010-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.85,0.0,0.0,0.0 -4324,my_groundwater,2010-08-25,13.458088711234995,tank,0.0,0.0,0.0012626094837933195,0.0,0.0,0.0,0.0,0.0,9.25450998188942,0.0,0.0,0.0 -4325,my_reservoir,2010-08-25,0.06449999999999997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4326,gw1,2010-08-25,261.49438595659575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4327,gw2,2010-08-25,263.50561404340425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4328,my_sewer,2010-08-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4329,my_land,2010-08-26,4.993036894056678,percolation,0.0,0.0,0.0006220249123151865,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 -4330,my_land,2010-08-26,0.8403046687445297,subsurface_runoff,0.0,0.0,0.0001024949958966315,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 -4331,my_land,2010-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.5,0.0,0.0,0.0 -4332,my_groundwater,2010-08-26,13.526087454800205,tank,0.0,0.0,0.001272115610084538,0.0,0.0,0.0,0.0,0.0,9.303366396538431,0.0,0.0,0.0 -4333,my_reservoir,2010-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4334,gw1,2010-08-26,261.50109005021847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4335,gw2,2010-08-26,263.49890994978153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4336,my_sewer,2010-08-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4337,my_land,2010-08-27,4.893176156175544,percolation,0.0,0.0,0.0006095844140688827,0.0,0.0,0.0,0.0,0.0,15.755989288000576,0.0,0.0,0.0 -4338,my_land,2010-08-27,0.6722437349956237,subsurface_runoff,0.0,0.0,8.19959967173052e-05,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 -4339,my_land,2010-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15,0.0,0.0,0.0 -4340,my_groundwater,2010-08-27,13.591883322199635,tank,0.0,0.0,0.0012813447180600147,0.0,0.0,0.0,0.0,0.0,9.350655852956312,0.0,0.0,0.0 -4341,my_reservoir,2010-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4342,gw1,2010-08-27,261.5077494498837,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4343,gw2,2010-08-27,263.4922505501163,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4344,my_sewer,2010-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4345,my_land,2010-08-28,4.795312633052033,percolation,0.0,0.0,0.000597392725787505,0.0,0.0,0.0,0.0,0.0,15.755989288000574,0.0,0.0,0.0 -4346,my_land,2010-08-28,0.5377949879964989,subsurface_runoff,0.0,0.0,6.559679737384416e-05,0.0,0.0,0.0,0.0,0.0,16.188567696868734,0.0,0.0,0.0 -4347,my_land,2010-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15,0.0,0.0,0.0 -4348,my_groundwater,2010-08-28,13.655522478209837,tank,0.0,0.0,0.0012903025653255387,0.0,0.0,0.0,0.0,0.0,9.396445486893072,0.0,0.0,0.0 -4349,my_reservoir,2010-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4350,gw1,2010-08-28,261.51436445355114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4351,gw2,2010-08-28,263.48563554644886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4352,my_sewer,2010-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4353,my_land,2010-08-29,4.770051525222388,percolation,0.0,0.0,0.0005936275589457638,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 -4354,my_land,2010-08-29,0.4494591590588034,subsurface_runoff,0.0,0.0,5.470401957907773e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4355,my_land,2010-08-29,5.978696857454992e-19,surface_runoff,0.0,0.0,7.298213937322988e-23,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4356,my_groundwater,2010-08-29,13.718488292349198,tank,0.0,0.0,0.0012991613699336207,0.0,0.0,0.0,0.0,0.0,9.441382994674656,0.0,0.0,0.0 -4357,my_reservoir,2010-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4358,gw1,2010-08-29,261.5209353571941,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4359,gw2,2010-08-29,263.4790646428059,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4360,my_sewer,2010-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4361,my_land,2010-08-30,4.67465049471794,percolation,0.0,0.0,0.0005817550077668486,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 -4362,my_land,2010-08-30,0.3595673272470427,subsurface_runoff,0.0,0.0,4.3763215663262186e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4363,my_land,2010-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4364,my_groundwater,2010-08-30,13.779354599546512,tank,0.0,0.0,0.0013077563363097545,0.0,0.0,0.0,0.0,0.0,9.484916877900343,0.0,0.0,0.0 -4365,my_reservoir,2010-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4366,gw1,2010-08-30,261.5274624548128,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4367,gw2,2010-08-30,263.4725375451872,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4368,my_sewer,2010-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4369,my_land,2010-08-31,4.581157484823581,percolation,0.0,0.0,0.0005701199076115116,0.0,0.0,0.0,0.0,0.0,15.745007195522488,0.0,0.0,0.0 -4370,my_land,2010-08-31,0.2876538617976342,subsurface_runoff,0.0,0.0,3.5010572530609746e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4371,my_land,2010-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4372,my_groundwater,2010-08-31,13.83816549041727,tank,0.0,0.0,0.0013160929578739289,0.0,0.0,0.0,0.0,0.0,9.527105381838547,0.0,0.0,0.0 -4373,my_reservoir,2010-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4374,gw1,2010-08-31,261.53394603844737,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4375,gw2,2010-08-31,263.46605396155263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4376,my_sewer,2010-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4377,my_land,2010-09-01,4.48953433512711,percolation,0.0,0.0,0.0005587175094592813,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 -4378,my_land,2010-09-01,0.2301230894381074,subsurface_runoff,0.0,0.0,2.8008458024487797e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4379,my_land,2010-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4380,my_groundwater,2010-09-01,13.894964168513457,tank,0.0,0.0,0.0013241766176360936,0.0,0.0,0.0,0.0,0.0,9.568003615357508,0.0,0.0,0.0 -4381,my_reservoir,2010-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4382,gw1,2010-09-01,261.54038639819106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4383,gw2,2010-09-01,263.45961360180894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4384,my_sewer,2010-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4385,my_land,2010-09-02,4.399743648424568,percolation,0.0,0.0,0.0005475431592700956,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 -4386,my_land,2010-09-02,0.18409847155048592,subsurface_runoff,0.0,0.0,2.2406766419590236e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4387,my_land,2010-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4388,my_groundwater,2010-09-02,13.94979296807796,tank,0.0,0.0,0.0013320125904057161,0.0,0.0,0.0,0.0,0.0,9.607663759490833,0.0,0.0,0.0 -4389,my_reservoir,2010-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4390,gw1,2010-09-02,261.5467838222031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4391,gw2,2010-09-02,263.4532161777969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4392,my_sewer,2010-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4393,my_land,2010-09-03,4.311748775456077,percolation,0.0,0.0,0.0005365922960846938,0.0,0.0,0.0,0.0,0.0,15.745007195522492,0.0,0.0,0.0 -4394,my_land,2010-09-03,0.14727877724038874,subsurface_runoff,0.0,0.0,1.792541313567219e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4395,my_land,2010-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.108696892217658,0.0,0.0,0.0 -4396,my_groundwater,2010-09-03,14.002693371443835,tank,0.0,0.0,0.0013396060449571401,0.0,0.0,0.0,0.0,0.0,9.646135259568538,0.0,0.0,0.0 -4397,my_reservoir,2010-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4398,gw1,2010-09-03,261.55313859672174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4399,gw2,2010-09-03,263.44686140327826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4400,my_sewer,2010-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4401,my_land,2010-09-04,4.225513799946955,percolation,0.0,0.0,0.0005258604501629999,0.0,0.0,0.0,0.0,0.0,15.74500719552249,0.0,0.0,0.0 -4402,my_land,2010-09-04,0.117823021792311,subsurface_runoff,0.0,0.0,1.4340330508537752e-05,0.0,0.0,0.0,0.0,0.0,16.13835181179862,0.0,0.0,0.0 -4403,my_land,2010-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.11666667,0.0,0.0,0.0 -4404,my_groundwater,2010-09-04,14.053706026085575,tank,0.0,0.0,0.001346962046151637,0.0,0.0,0.0,0.0,0.0,9.6834650024048,0.0,0.0,0.0 -4405,my_reservoir,2010-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4406,gw1,2010-09-04,261.5594510060769,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4407,gw2,2010-09-04,263.4405489939231,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4408,my_sewer,2010-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.89759312508994,0.0,0.0,0.0 -4409,my_land,2010-09-05,4.221212113483175,percolation,0.0,0.0,0.0005252922566639037,0.0,0.0,0.0,0.0,0.0,15.71905178520973,0.0,0.0,0.0 -4410,my_land,2010-09-05,0.11608388397402818,subsurface_runoff,0.0,0.0,1.4179479510004007e-05,0.0,0.0,0.0,0.0,0.0,15.807573160688316,0.0,0.0,0.0 -4411,my_land,2010-09-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.20833333,0.0,0.0,0.0 -4412,my_groundwater,2010-09-05,14.104503579044838,tank,0.0,0.0,0.0013542880905469158,0.0,0.0,0.0,0.0,0.0,9.720236870495325,0.0,0.0,0.0 -4413,my_reservoir,2010-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4414,gw1,2010-09-05,261.5657213327031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4415,gw2,2010-09-05,263.4342786672969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4416,my_sewer,2010-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4417,my_land,2010-09-06,4.567896285000967,percolation,0.0,0.0,0.0005654851892793158,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4418,my_land,2010-09-06,0.21017551909417637,subsurface_runoff,0.0,0.0,2.5139169389959698e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4419,my_land,2010-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.3,0.0,0.0,0.0 -4420,my_groundwater,2010-09-06,14.162231637327602,tank,0.0,0.0,0.001362414033102306,0.0,0.0,0.0,0.0,0.0,9.758870778447983,0.0,0.0,0.0 -4421,my_reservoir,2010-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4422,gw1,2010-09-06,261.57194985715176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4423,gw2,2010-09-06,263.42805014284824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4424,my_sewer,2010-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4425,my_land,2010-09-07,4.476538359300948,percolation,0.0,0.0,0.0005541754854937295,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4426,my_land,2010-09-07,0.1681404152753411,subsurface_runoff,0.0,0.0,2.0111335511967758e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4427,my_land,2010-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.325,0.0,0.0,0.0 -4428,my_groundwater,2010-09-07,14.217955589120054,tank,0.0,0.0,0.0013702894275456727,0.0,0.0,0.0,0.0,0.0,9.796335997210567,0.0,0.0,0.0 -4429,my_reservoir,2010-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4430,gw1,2010-09-07,261.5781368581041,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4431,gw2,2010-09-07,263.4218631418959,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4432,my_sewer,2010-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4433,my_land,2010-09-08,4.387007592114929,percolation,0.0,0.0,0.0005430919757838549,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4434,my_land,2010-09-08,0.13451233222027287,subsurface_runoff,0.0,0.0,1.6089068409574207e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4435,my_land,2010-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.325,0.0,0.0,0.0 -4436,my_groundwater,2010-09-08,14.271717640415309,tank,0.0,0.0,0.0013779195049124086,0.0,0.0,0.0,0.0,0.0,9.832679158502524,0.0,0.0,0.0 -4437,my_reservoir,2010-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4438,gw1,2010-09-08,261.5842826123834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4439,gw2,2010-09-08,263.4157173876166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4440,my_sewer,2010-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4441,my_land,2010-09-09,4.29926744027263,percolation,0.0,0.0,0.0005322301362681778,0.0,0.0,0.0,0.0,0.0,15.604163861003036,0.0,0.0,0.0 -4442,my_land,2010-09-09,0.1076098657762183,subsurface_runoff,0.0,0.0,1.2871254727659365e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4443,my_land,2010-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 -4444,my_groundwater,2010-09-09,14.323559147776963,tank,0.0,0.0,0.0013853093910670155,0.0,0.0,0.0,0.0,0.0,9.8679444833831,0.0,0.0,0.0 -4445,my_reservoir,2010-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4446,gw1,2010-09-09,261.5903873949675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4447,gw2,2010-09-09,263.4096126050325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4448,my_sewer,2010-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4449,my_land,2010-09-10,4.213282091467177,percolation,0.0,0.0,0.0005215855335428143,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -4450,my_land,2010-09-10,0.08608789262097463,subsurface_runoff,0.0,0.0,1.0297003782127492e-05,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4451,my_land,2010-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 -4452,my_groundwater,2010-09-10,14.373520635340961,tank,0.0,0.0,0.0013924641088078982,0.0,0.0,0.0,0.0,0.0,9.9021739362382,0.0,0.0,0.0 -4453,my_reservoir,2010-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4454,gw1,2010-09-10,261.596451479001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4455,gw2,2010-09-10,263.403548520999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4456,my_sewer,2010-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4457,my_land,2010-09-11,4.129016449637834,percolation,0.0,0.0,0.000511153822871958,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -4458,my_land,2010-09-11,0.06887031409677971,subsurface_runoff,0.0,0.0,8.237603025701994e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4459,my_land,2010-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.425,0.0,0.0,0.0 -4460,my_groundwater,2010-09-11,14.421641811477379,tank,0.0,0.0,0.0013993885799300576,0.0,0.0,0.0,0.0,0.0,9.935407367103991,0.0,0.0,0.0 -4461,my_reservoir,2010-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4462,gw1,2010-09-11,261.60247513580765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4463,gw2,2010-09-11,263.39752486419235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4464,my_sewer,2010-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4465,my_land,2010-09-12,4.046436120645077,percolation,0.0,0.0,0.0005009307464145189,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -4466,my_land,2010-09-12,0.05509625127742377,subsurface_runoff,0.0,0.0,6.590082420561595e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4467,my_land,2010-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.425,0.0,0.0,0.0 -4468,my_groundwater,2010-09-12,14.46796158511896,tank,0.0,0.0,0.001406087627246528,0.0,0.0,0.0,0.0,0.0,9.967682643345096,0.0,0.0,0.0 -4469,my_reservoir,2010-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4470,gw1,2010-09-12,261.60845863490226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4471,gw2,2010-09-12,263.39154136509774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4472,my_sewer,2010-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4473,my_land,2010-09-13,3.9655073982321754,percolation,0.0,0.0,0.0004909121314862285,0.0,0.0,0.0,0.0,0.0,15.604163861003038,0.0,0.0,0.0 -4474,my_land,2010-09-13,0.04407700102193902,subsurface_runoff,0.0,0.0,5.272065936449276e-06,0.0,0.0,0.0,0.0,0.0,15.078725345604278,0.0,0.0,0.0 -4475,my_land,2010-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.474999999999998,0.0,0.0,0.0 -4476,my_groundwater,2010-09-13,14.512518081763032,tank,0.0,0.0,0.0014125659765693815,0.0,0.0,0.0,0.0,0.0,9.999035771604866,0.0,0.0,0.0 -4477,my_reservoir,2010-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4478,gw1,2010-09-13,261.6144022440029,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4479,gw2,2010-09-13,263.3855977559971,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4480,my_sewer,2010-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4481,my_land,2010-09-14,3.9525199529380983,percolation,0.0,0.0,0.0004894168582376508,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4482,my_land,2010-09-14,0.05330859474151499,subsurface_runoff,0.0,0.0,6.482406322260593e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 -4483,my_land,2010-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.5,0.0,0.0,0.0 -4484,my_groundwater,2010-09-14,14.556698799886293,tank,0.0,0.0,0.0014189976905277962,0.0,0.0,0.0,0.0,0.0,10.029933719998455,0.0,0.0,0.0 -4485,my_reservoir,2010-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4486,gw1,2010-09-14,261.6203062290429,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4487,gw2,2010-09-14,263.3796937709571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4488,my_sewer,2010-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4489,my_land,2010-09-15,3.8734695538793362,percolation,0.0,0.0,0.00047962852107289773,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4490,my_land,2010-09-15,0.04264687579321199,subsurface_runoff,0.0,0.0,5.185925057808475e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 -4491,my_land,2010-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28214286,0.0,0.0,0.0 -4492,my_groundwater,2010-09-15,14.599159825947693,tank,0.0,0.0,0.001425214062623318,0.0,0.0,0.0,0.0,0.0,10.05995875582566,0.0,0.0,0.0 -4493,my_reservoir,2010-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4494,gw1,2010-09-15,261.62617085418265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4495,gw2,2010-09-15,263.37382914581735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4496,my_sewer,2010-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4497,my_land,2010-09-16,3.7960001628017497,percolation,0.0,0.0,0.0004700359506514398,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4498,my_land,2010-09-16,0.03411750063456959,subsurface_runoff,0.0,0.0,4.14874004624678e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 -4499,my_land,2010-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.06428571,0.0,0.0,0.0 -4500,my_groundwater,2010-09-16,14.639937643982716,tank,0.0,0.0,0.001431219616462164,0.0,0.0,0.0,0.0,0.0,10.089142847663021,0.0,0.0,0.0 -4501,my_reservoir,2010-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4502,gw1,2010-09-16,261.6319963818214,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4503,gw2,2010-09-16,263.3680036181786,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4504,my_sewer,2010-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4505,my_land,2010-09-17,3.7200801595457147,percolation,0.0,0.0,0.00046063523163841096,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4506,my_land,2010-09-17,0.027294000507655673,subsurface_runoff,0.0,0.0,3.318992036997424e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -4507,my_land,2010-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.06428571,0.0,0.0,0.0 -4508,my_groundwater,2010-09-17,14.679068003120655,tank,0.0,0.0,0.0014370187846365046,0.0,0.0,0.0,0.0,0.0,10.117516454332485,0.0,0.0,0.0 -4509,my_reservoir,2010-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4510,gw1,2010-09-17,261.63778307260924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4511,gw2,2010-09-17,263.36221692739076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4512,my_sewer,2010-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4513,my_land,2010-09-18,3.6456785563548,percolation,0.0,0.0,0.00045142252700564273,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4514,my_land,2010-09-18,0.02183520040612454,subsurface_runoff,0.0,0.0,2.6551936295979393e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -4515,my_land,2010-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 -4516,my_groundwater,2010-09-18,14.71658593229579,tank,0.0,0.0,0.0014426159105460996,0.0,0.0,0.0,0.0,0.0,10.145108613098595,0.0,0.0,0.0 -4517,my_reservoir,2010-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4518,gw1,2010-09-18,261.6435311854585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4519,gw2,2010-09-18,263.3564688145415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4520,my_sewer,2010-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4521,my_land,2010-09-19,3.572764985227704,percolation,0.0,0.0,0.00044239407646552985,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4522,my_land,2010-09-19,0.01746816032489963,subsurface_runoff,0.0,0.0,2.1241549036783513e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -4523,my_land,2010-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 -4524,my_groundwater,2010-09-19,14.752525754664328,tank,0.0,0.0,0.001448015250183497,0.0,0.0,0.0,0.0,0.0,10.171947021747322,0.0,0.0,0.0 -4525,my_reservoir,2010-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4526,gw1,2010-09-19,261.64924097755545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4527,gw2,2010-09-19,263.35075902244455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4528,my_sewer,2010-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4529,my_land,2010-09-20,3.5013096855231503,percolation,0.0,0.0,0.0004335461949362193,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4530,my_land,2010-09-20,0.013974528259919706,subsurface_runoff,0.0,0.0,1.6993239229426811e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -4531,my_land,2010-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 -4532,my_groundwater,2010-09-20,14.786921101732961,tank,0.0,0.0,0.0014532209738835255,0.0,0.0,0.0,0.0,0.0,10.198058115036105,0.0,0.0,0.0 -4533,my_reservoir,2010-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4534,gw1,2010-09-20,261.6549127043717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4535,gw2,2010-09-20,263.3450872956283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4536,my_sewer,2010-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299999999999999,0.0,0.0,0.0 -4537,my_land,2010-09-21,3.431283491812687,percolation,0.0,0.0,0.00042487527103749487,0.0,0.0,0.0,0.0,0.0,15.588904949601506,0.0,0.0,0.0 -4538,my_land,2010-09-21,0.011179622607935764,subsurface_runoff,0.0,0.0,1.359459138354145e-06,0.0,0.0,0.0,0.0,0.0,14.94875358212802,0.0,0.0,0.0 -4539,my_land,2010-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 -4540,my_groundwater,2010-09-21,14.819804927204816,tank,0.0,0.0,0.0014582371680377942,0.0,0.0,0.0,0.0,0.0,10.223467135960377,0.0,0.0,0.0 -4541,my_reservoir,2010-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4542,gw1,2010-09-21,261.6605466196759,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4543,gw2,2010-09-21,263.3394533803241,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4544,my_sewer,2010-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.75,0.0,0.0,0.0 -4545,my_land,2010-09-22,3.362657821976433,percolation,0.0,0.0,0.00041637776561674497,0.0,0.0,0.0,0.0,0.0,15.588904949601504,0.0,0.0,0.0 -4546,my_land,2010-09-22,0.008943698086348612,subsurface_runoff,0.0,0.0,1.087567310683316e-06,0.0,0.0,0.0,0.0,0.0,14.948753582128019,0.0,0.0,0.0 -4547,my_land,2010-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 -4548,my_groundwater,2010-09-22,14.851209520548466,tank,0.0,0.0,0.0014630678367748976,0.0,0.0,0.0,0.0,0.0,10.248198202242074,0.0,0.0,0.0 -4549,my_reservoir,2010-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4550,gw1,2010-09-22,261.66614297554474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4551,gw2,2010-09-22,263.33385702445526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4552,my_sewer,2010-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -4553,my_land,2010-09-23,3.338517854307825,percolation,0.0,0.0,0.0004137116813819961,0.0,0.0,0.0,0.0,0.0,15.55865990938685,0.0,0.0,0.0 -4554,my_land,2010-09-23,0.01888643840674426,subsurface_runoff,0.0,0.0,2.410590196189118e-06,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 -4555,my_land,2010-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -4556,my_groundwater,2010-09-23,14.88204418163836,tank,0.0,0.0,0.0014678321549825223,0.0,0.0,0.0,0.0,0.0,10.272449792361337,0.0,0.0,0.0 -4557,my_reservoir,2010-09-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4558,gw1,2010-09-23,261.67170202237446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4559,gw2,2010-09-23,263.32829797762554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4560,my_sewer,2010-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -4561,my_land,2010-09-24,3.2717474972216682,percolation,0.0,0.0,0.0004054374477543562,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -4562,my_land,2010-09-24,0.015109150725395409,subsurface_runoff,0.0,0.0,1.9284721569512947e-06,0.0,0.0,0.0,0.0,0.0,13.89159881271472,0.0,0.0,0.0 -4563,my_land,2010-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.3,0.0,0.0,0.0 -4564,my_groundwater,2010-09-24,14.911442502377705,tank,0.0,0.0,0.001472416122638637,0.0,0.0,0.0,0.0,0.0,10.296061172128738,0.0,0.0,0.0 -4565,my_reservoir,2010-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4566,gw1,2010-09-24,261.677224008892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4567,gw2,2010-09-24,263.322775991108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4568,my_sewer,2010-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -4569,my_land,2010-09-25,3.2063125472772347,percolation,0.0,0.0,0.00039732869879926906,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -4570,my_land,2010-09-25,0.012087320580316327,subsurface_runoff,0.0,0.0,1.5427777255610357e-06,0.0,0.0,0.0,0.0,0.0,13.89159881271472,0.0,0.0,0.0 -4571,my_land,2010-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.3,0.0,0.0,0.0 -4572,my_groundwater,2010-09-25,14.939435258691333,tank,0.0,0.0,0.0014768235594147397,0.0,0.0,0.0,0.0,0.0,10.31905380767953,0.0,0.0,0.0 -4573,my_reservoir,2010-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4574,gw1,2010-09-25,261.68270918216604,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4575,gw2,2010-09-25,263.31729081783396,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4576,my_sewer,2010-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -4577,my_land,2010-09-26,3.14218629633169,percolation,0.0,0.0,0.0003893821248232837,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -4578,my_land,2010-09-26,0.00966985646425306,subsurface_runoff,0.0,0.0,1.2342221804488285e-06,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 -4579,my_land,2010-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.85,0.0,0.0,0.0 -4580,my_groundwater,2010-09-26,14.966052605862785,tank,0.0,0.0,0.0014810582080572485,0.0,0.0,0.0,0.0,0.0,10.341448243528516,0.0,0.0,0.0 -4581,my_reservoir,2010-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4582,gw1,2010-09-26,261.68815778761825,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4583,gw2,2010-09-26,263.31184221238175,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4584,my_sewer,2010-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.525,0.0,0.0,0.0 -4585,my_land,2010-09-27,3.079342570405056,percolation,0.0,0.0,0.000381594482326818,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -4586,my_land,2010-09-27,0.007735885171402449,subsurface_runoff,0.0,0.0,9.873777443590628e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 -4587,my_land,2010-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.625,0.0,0.0,0.0 -4588,my_groundwater,2010-09-27,14.991324090959946,tank,0.0,0.0,0.00148512373592733,0.0,0.0,0.0,0.0,0.0,10.36326415154945,0.0,0.0,0.0 -4589,my_reservoir,2010-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4590,gw1,2010-09-27,261.69357006903414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4591,gw2,2010-09-27,263.30642993096586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4592,my_sewer,2010-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4,0.0,0.0,0.0 -4593,my_land,2010-09-28,3.017755718996955,percolation,0.0,0.0,0.0003739625926802816,0.0,0.0,0.0,0.0,0.0,15.558659909386853,0.0,0.0,0.0 -4594,my_land,2010-09-28,0.006188708137121959,subsurface_runoff,0.0,0.0,7.899021954872503e-07,0.0,0.0,0.0,0.0,0.0,13.891598812714722,0.0,0.0,0.0 -4595,my_land,2010-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.625,0.0,0.0,0.0 -4596,my_groundwater,2010-09-28,15.015278665012127,tank,0.0,0.0,0.0014890237365099315,0.0,0.0,0.0,0.0,0.0,10.384520376858246,0.0,0.0,0.0 -4597,my_reservoir,2010-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4598,gw1,2010-09-28,261.69894626857393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4599,gw2,2010-09-28,263.30105373142607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4600,my_sewer,2010-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.582142860000001,0.0,0.0,0.0 -4601,my_land,2010-09-29,3.06774027820743,percolation,0.0,0.0,0.00038113609097685936,0.0,0.0,0.0,0.0,0.0,15.4340898401978,0.0,0.0,0.0 -4602,my_land,2010-09-29,0.03497536748668099,subsurface_runoff,0.0,0.0,4.6190646543988825e-06,0.0,0.0,0.0,0.0,0.0,12.34955617663326,0.0,0.0,0.0 -4603,my_land,2010-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.58214286,0.0,0.0,0.0 -4604,my_groundwater,2010-09-29,15.040190895441677,tank,0.0,0.0,0.0014930600190206857,0.0,0.0,0.0,0.0,0.0,10.405487382650191,0.0,0.0,0.0 -4605,my_reservoir,2010-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4606,gw1,2010-09-29,261.7042866267834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4607,gw2,2010-09-29,263.2957133732166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4608,my_sewer,2010-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.764285710000001,0.0,0.0,0.0 -4609,my_land,2010-09-30,3.3162132643660778,percolation,0.0,0.0,0.00041313988482881225,0.0,0.0,0.0,0.0,0.0,15.133993603424951,0.0,0.0,0.0 -4610,my_land,2010-09-30,0.1122871760907859,subsurface_runoff,0.0,0.0,1.447797707630551e-05,0.0,0.0,0.0,0.0,0.0,12.253813166451762,0.0,0.0,0.0 -4611,my_land,2010-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.76428571,0.0,0.0,0.0 -4612,my_groundwater,2010-09-30,15.070099045370526,tank,0.0,0.0,0.0014977377166285777,0.0,0.0,0.0,0.0,0.0,10.426669390980477,0.0,0.0,0.0 -4613,my_reservoir,2010-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4614,gw1,2010-09-30,261.70959138260486,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4615,gw2,2010-09-30,263.29040861739514,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4616,my_sewer,2010-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.918062059016394,0.0,0.0,0.0 -4617,my_land,2010-10-01,3.8914840810341293,percolation,0.0,0.0,0.00048200132488414375,0.0,0.0,0.0,0.0,0.0,14.681514840832817,0.0,0.0,0.0 -4618,my_land,2010-10-01,0.26441343664279826,subsurface_runoff,0.0,0.0,3.2568568804420676e-05,0.0,0.0,0.0,0.0,0.0,12.34344367469894,0.0,0.0,0.0 -4619,my_land,2010-10-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.946428569999998,0.0,0.0,0.0 -4620,my_groundwater,2010-10-01,15.11164329512101,tank,0.0,0.0,0.001503805542165005,0.0,0.0,0.0,0.0,0.0,10.44897449118141,0.0,0.0,0.0 -4621,my_reservoir,2010-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4622,gw1,2010-10-01,261.7148607733875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4623,gw2,2010-10-01,263.2851392266125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4624,my_sewer,2010-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 -4625,my_land,2010-10-02,4.504841208595412,percolation,0.0,0.0,0.0005508315177303078,0.0,0.0,0.0,0.0,0.0,14.353861106841407,0.0,0.0,0.0 -4626,my_land,2010-10-02,0.39960879262905913,subsurface_runoff,0.0,0.0,4.7407295681318035e-05,0.0,0.0,0.0,0.0,0.0,12.438785836686023,0.0,0.0,0.0 -4627,my_land,2010-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.12857143,0.0,0.0,0.0 -4628,my_groundwater,2010-10-02,15.165569882915328,tank,0.0,0.0,0.001511259384206245,0.0,0.0,0.0,0.0,0.0,10.472587210504212,0.0,0.0,0.0 -4629,my_reservoir,2010-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4630,gw1,2010-10-02,261.72009503489824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4631,gw2,2010-10-02,263.27990496510176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4632,my_sewer,2010-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.03213696954941,0.0,0.0,0.0 -4633,my_land,2010-10-03,4.487921581121961,percolation,0.0,0.0,0.0005481608669658369,0.0,0.0,0.0,0.0,0.0,14.326328153467053,0.0,0.0,0.0 -4634,my_land,2010-10-03,0.3395991964701745,subsurface_runoff,0.0,0.0,4.0196851399513004e-05,0.0,0.0,0.0,0.0,0.0,12.452066081000607,0.0,0.0,0.0 -4635,my_land,2010-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.31071429,0.0,0.0,0.0 -4636,my_groundwater,2010-10-03,15.219017218966593,tank,0.0,0.0,0.0015186402248232483,0.0,0.0,0.0,0.0,0.0,10.495721597312526,0.0,0.0,0.0 -4637,my_reservoir,2010-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4638,gw1,2010-10-03,261.72529440133223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4639,gw2,2010-10-03,263.27470559866777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4640,my_sewer,2010-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032136969549407,0.0,0.0,0.0 -4641,my_land,2010-10-04,4.47480299037798,percolation,0.0,0.0,0.0005459733342269537,0.0,0.0,0.0,0.0,0.0,14.300482045860853,0.0,0.0,0.0 -4642,my_land,2010-10-04,0.29253373564646845,subsurface_runoff,0.0,0.0,3.454542250748347e-05,0.0,0.0,0.0,0.0,0.0,12.478098924658571,0.0,0.0,0.0 -4643,my_land,2010-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.49285714,0.0,0.0,0.0 -4644,my_groundwater,2010-10-04,15.272063879651872,tank,0.0,0.0,0.001525958081422239,0.0,0.0,0.0,0.0,0.0,10.518416082235152,0.0,0.0,0.0 -4645,my_reservoir,2010-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4646,gw1,2010-10-04,261.73045910532335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4647,gw2,2010-10-04,263.26954089467665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4648,my_sewer,2010-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4649,my_land,2010-10-05,4.657346510957241,percolation,0.0,0.0,0.0005656763020296977,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4650,my_land,2010-10-05,0.30805136413263623,subsurface_runoff,0.0,0.0,3.5968973240621616e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4651,my_land,2010-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.675000000000002,0.0,0.0,0.0 -4652,my_groundwater,2010-10-05,15.328693988211516,tank,0.0,0.0,0.001533658739510002,0.0,0.0,0.0,0.0,0.0,10.541334378406901,0.0,0.0,0.0 -4653,my_reservoir,2010-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4654,gw1,2010-10-05,261.7355893779545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4655,gw2,2010-10-05,263.2644106220455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4656,my_sewer,2010-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4657,my_land,2010-10-06,4.564199580738096,percolation,0.0,0.0,0.0005543627759891037,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4658,my_land,2010-10-06,0.24644109130610897,subsurface_runoff,0.0,0.0,2.8775178592497292e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4659,my_land,2010-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.51428571,0.0,0.0,0.0 -4660,my_groundwater,2010-10-06,15.383286316134583,tank,0.0,0.0,0.0015411098348867196,0.0,0.0,0.0,0.0,0.0,10.563576177638202,0.0,0.0,0.0 -4661,my_reservoir,2010-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4662,gw1,2010-10-06,261.74068544876815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4663,gw2,2010-10-06,263.25931455123185,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4664,my_sewer,2010-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4665,my_land,2010-10-07,4.4729155891233345,percolation,0.0,0.0,0.0005432755204693216,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4666,my_land,2010-10-07,0.19715287304488718,subsurface_runoff,0.0,0.0,2.3020142873997833e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4667,my_land,2010-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4668,my_groundwater,2010-10-07,15.435883881979972,tank,0.0,0.0,0.0015483165976804855,0.0,0.0,0.0,0.0,0.0,10.585167664370033,0.0,0.0,0.0 -4669,my_reservoir,2010-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4670,gw1,2010-10-07,261.74574754577634,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4671,gw2,2010-10-07,263.25425245422366,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4672,my_sewer,2010-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4673,my_land,2010-10-08,4.3834572773408675,percolation,0.0,0.0,0.0005324100100599352,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4674,my_land,2010-10-08,0.15772229843590974,subsurface_runoff,0.0,0.0,1.8416114299198268e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4675,my_land,2010-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4676,my_groundwater,2010-10-08,15.486528838278034,tank,0.0,0.0,0.0015552841528196472,0.0,0.0,0.0,0.0,0.0,10.60613371187331,0.0,0.0,0.0 -4677,my_reservoir,2010-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4678,gw1,2010-10-08,261.7507758954712,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4679,gw2,2010-10-08,263.2492241045288,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4680,my_sewer,2010-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4681,my_land,2010-10-09,4.29578813179405,percolation,0.0,0.0,0.0005217618098587364,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4682,my_land,2010-10-09,0.1261778387487278,subsurface_runoff,0.0,0.0,1.4732891439358613e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4683,my_land,2010-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4684,my_groundwater,2010-10-09,15.535262488865289,tank,0.0,0.0,0.001562017522138294,0.0,0.0,0.0,0.0,0.0,10.626497963410344,0.0,0.0,0.0 -4685,my_reservoir,2010-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4686,gw1,2010-10-09,261.7557707228347,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4687,gw2,2010-10-09,263.2442292771653,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4688,my_sewer,2010-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4689,my_land,2010-10-10,4.20987236915817,percolation,0.0,0.0,0.0005113265736615617,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4690,my_land,2010-10-10,0.10094227099898223,subsurface_runoff,0.0,0.0,1.178631315148689e-05,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4691,my_land,2010-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4692,my_groundwater,2010-10-10,15.582125305872419,tank,0.0,0.0,0.00156852162643963,0.0,0.0,0.0,0.0,0.0,10.646282907436225,0.0,0.0,0.0 -4693,my_reservoir,2010-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4694,gw1,2010-10-10,261.76073225134917,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4695,gw2,2010-10-10,263.23926774865083,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4696,my_sewer,2010-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4697,my_land,2010-10-11,4.125674921775007,percolation,0.0,0.0,0.0005011000421883305,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4698,my_land,2010-10-11,0.08075381679918578,subsurface_runoff,0.0,0.0,9.429050521189512e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676032,0.0,0.0,0.0 -4699,my_land,2010-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4700,my_groundwater,2010-10-11,15.627156946372443,tank,0.0,0.0,0.001574801287518079,0.0,0.0,0.0,0.0,0.0,10.66550994734459,0.0,0.0,0.0 -4701,my_reservoir,2010-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4702,gw1,2010-10-11,261.76566070300686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4703,gw2,2010-10-11,263.23433929699314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4704,my_sewer,2010-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4705,my_land,2010-10-12,4.043161423339506,percolation,0.0,0.0,0.0004910780413445639,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4706,my_land,2010-10-12,0.06460305343934862,subsurface_runoff,0.0,0.0,7.5432404169516094e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 -4707,my_land,2010-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4708,my_groundwater,2010-10-12,15.670396268695923,tank,0.0,0.0,0.001580861230140941,0.0,0.0,0.0,0.0,0.0,10.684199466214029,0.0,0.0,0.0 -4709,my_reservoir,2010-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4710,gw1,2010-10-12,261.7705562983202,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4711,gw2,2010-10-12,263.2294437016798,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4712,my_sewer,2010-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4713,my_land,2010-10-13,3.962298194872716,percolation,0.0,0.0,0.0004812564805176726,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4714,my_land,2010-10-13,0.051682442751478895,subsurface_runoff,0.0,0.0,6.034592333561288e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 -4715,my_land,2010-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4716,my_groundwater,2010-10-13,15.711881348419805,tank,0.0,0.0,0.0015867060839904127,0.0,0.0,0.0,0.0,0.0,10.702370886968284,0.0,0.0,0.0 -4717,my_reservoir,2010-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4718,gw1,2010-10-13,261.77541925633136,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4719,gw2,2010-10-13,263.22458074366864,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4720,my_sewer,2010-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4721,my_land,2010-10-14,3.8830522309752613,percolation,0.0,0.0,0.0004716313509073191,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4722,my_land,2010-10-14,0.041345954201183116,subsurface_runoff,0.0,0.0,4.8276738668490305e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676033,0.0,0.0,0.0 -4723,my_land,2010-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4724,my_groundwater,2010-10-14,15.751649494036466,tank,0.0,0.0,0.001592340385566764,0.0,0.0,0.0,0.0,0.0,10.720042728324856,0.0,0.0,0.0 -4725,my_reservoir,2010-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4726,gw1,2010-10-14,261.7802497946225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4727,gw2,2010-10-14,263.2197502053775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4728,my_sewer,2010-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4729,my_land,2010-10-15,3.805391186355756,percolation,0.0,0.0,0.00046219872388917276,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4730,my_land,2010-10-15,0.03307676336094649,subsurface_runoff,0.0,0.0,3.862139093479224e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4731,my_land,2010-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4732,my_groundwater,2010-10-15,15.78973726230933,tank,0.0,0.0,0.0015977685800534483,0.0,0.0,0.0,0.0,0.0,10.737232656872028,0.0,0.0,0.0 -4733,my_reservoir,2010-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4734,gw1,2010-10-15,261.785048129325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4735,gw2,2010-10-15,263.214951870675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4736,my_sewer,2010-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4737,my_land,2010-10-16,3.7292833626286406,percolation,0.0,0.0,0.0004529547494113893,0.0,0.0,0.0,0.0,0.0,14.223790565398817,0.0,0.0,0.0 -4738,my_land,2010-10-16,0.02646141068875719,subsurface_runoff,0.0,0.0,3.0897112747833795e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4739,my_land,2010-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4740,my_groundwater,2010-10-16,15.826180473321354,tank,0.0,0.0,0.0016029950231449038,0.0,0.0,0.0,0.0,0.0,10.753957535583345,0.0,0.0,0.0 -4741,my_reservoir,2010-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4742,gw1,2010-10-16,261.7898144751295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4743,gw2,2010-10-16,263.2101855248705,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4744,my_sewer,2010-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4745,my_land,2010-10-17,3.654697695376068,percolation,0.0,0.0,0.0004438956544231615,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -4746,my_land,2010-10-17,0.021169128551005754,subsurface_runoff,0.0,0.0,2.4717690198267035e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4747,my_land,2010-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4748,my_groundwater,2010-10-17,15.861014225222492,tank,0.0,0.0,0.0016080239828377989,0.0,0.0,0.0,0.0,0.0,10.770233469050691,0.0,0.0,0.0 -4749,my_reservoir,2010-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4750,gw1,2010-10-17,261.7945490452953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4751,gw2,2010-10-17,263.2054509547047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4752,my_sewer,2010-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.282139259169083,0.0,0.0,0.0 -4753,my_land,2010-10-18,3.5816037414685464,percolation,0.0,0.0,0.00043501774133469827,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -4754,my_land,2010-10-18,0.016935302840804602,subsurface_runoff,0.0,0.0,1.9774152158613628e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4755,my_land,2010-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4756,my_groundwater,2010-10-18,15.89427290868219,tank,0.0,0.0,0.0016128596411864463,0.0,0.0,0.0,0.0,0.0,10.786075845692022,0.0,0.0,0.0 -4757,my_reservoir,2010-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4758,gw1,2010-10-18,261.79925205166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4759,gw2,2010-10-18,263.20074794834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4760,my_sewer,2010-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 -4761,my_land,2010-10-19,3.5099716666391756,percolation,0.0,0.0,0.0004263173865080043,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -4762,my_land,2010-10-19,0.013548242272643682,subsurface_runoff,0.0,0.0,1.5819321726890902e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4763,my_land,2010-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4764,my_groundwater,2010-10-19,15.925990221052782,tank,0.0,0.0,0.0016175060960231075,0.0,0.0,0.0,0.0,0.0,10.801499377167273,0.0,0.0,0.0 -4765,my_reservoir,2010-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4766,gw1,2010-10-19,261.8039237046489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4767,gw2,2010-10-19,263.1960762953511,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4768,my_sewer,2010-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 -4769,my_land,2010-10-20,3.439772233306392,percolation,0.0,0.0,0.00041779103877784426,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -4770,my_land,2010-10-20,0.010838593818114946,subsurface_runoff,0.0,0.0,1.2655457381512721e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4771,my_land,2010-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4772,my_groundwater,2010-10-20,15.956199180249602,tank,0.0,0.0,0.0016219673626438843,0.0,0.0,0.0,0.0,0.0,10.816518135215555,0.0,0.0,0.0 -4773,my_reservoir,2010-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4774,gw1,2010-10-20,261.80856421328457,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4775,gw2,2010-10-20,263.19143578671543,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4776,my_sewer,2010-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.875,0.0,0.0,0.0 -4777,my_land,2010-10-21,3.3709767886402644,percolation,0.0,0.0,0.0004094352180022874,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -4778,my_land,2010-10-21,0.008670875054491958,subsurface_runoff,0.0,0.0,1.0124365905210178e-06,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4779,my_land,2010-10-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4780,my_groundwater,2010-10-21,15.984932138353441,tank,0.0,0.0,0.0016262473754608926,0.0,0.0,0.0,0.0,0.0,10.83114558610834,0.0,0.0,0.0 -4781,my_reservoir,2010-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4782,gw1,2010-10-21,261.813173785196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4783,gw2,2010-10-21,263.186826214804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4784,my_sewer,2010-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 -4785,my_land,2010-10-22,3.303557252867459,percolation,0.0,0.0,0.00040124651364224165,0.0,0.0,0.0,0.0,0.0,14.223790565398819,0.0,0.0,0.0 -4786,my_land,2010-10-22,0.006936700043593566,subsurface_runoff,0.0,0.0,8.099492724168142e-07,0.0,0.0,0.0,0.0,0.0,12.600511181676035,0.0,0.0,0.0 -4787,my_land,2010-10-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.35357143,0.0,0.0,0.0 -4788,my_groundwater,2010-10-22,16.01222079494093,tank,0.0,0.0,0.0016303499896213858,0.0,0.0,0.0,0.0,0.0,10.845394622896785,0.0,0.0,0.0 -4789,my_reservoir,2010-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4790,gw1,2010-10-22,261.817752626628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4791,gw2,2010-10-22,263.182247373372,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4792,my_sewer,2010-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 -4793,my_land,2010-10-23,3.265979015481037,percolation,0.0,0.0,0.0003968831620786054,0.0,0.0,0.0,0.0,0.0,14.177874882313494,0.0,0.0,0.0 -4794,my_land,2010-10-23,0.013302532190229125,subsurface_runoff,0.0,0.0,1.6443073660174276e-06,0.0,0.0,0.0,0.0,0.0,10.479126768470415,0.0,0.0,0.0 -4795,my_land,2010-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.360714286,0.0,0.0,0.0 -4796,my_groundwater,2010-10-23,16.038676244340156,tank,0.0,0.0,0.0016343535218753611,0.0,0.0,0.0,0.0,0.0,10.85920893548549,0.0,0.0,0.0 -4797,my_reservoir,2010-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4798,gw1,2010-10-23,261.8223009424505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4799,gw2,2010-10-23,263.1776990575495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4800,my_sewer,2010-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 -4801,my_land,2010-10-24,3.200659435171416,percolation,0.0,0.0,0.00038894549883703334,0.0,0.0,0.0,0.0,0.0,14.177874882313493,0.0,0.0,0.0 -4802,my_land,2010-10-24,0.0106420257521833,subsurface_runoff,0.0,0.0,1.315445892813942e-06,0.0,0.0,0.0,0.0,0.0,10.479126768470415,0.0,0.0,0.0 -4803,my_land,2010-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.982142857,0.0,0.0,0.0 -4804,my_groundwater,2010-10-24,16.063735835088153,tank,0.0,0.0,0.0016381854571541408,0.0,0.0,0.0,0.0,0.0,10.87266980999111,0.0,0.0,0.0 -4805,my_reservoir,2010-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4806,gw1,2010-10-24,261.8268189361675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4807,gw2,2010-10-24,263.1731810638325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4808,my_sewer,2010-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.739285714,0.0,0.0,0.0 -4809,my_land,2010-10-25,3.1366462464679876,percolation,0.0,0.0,0.00038116658886029267,0.0,0.0,0.0,0.0,0.0,14.17787488231349,0.0,0.0,0.0 -4810,my_land,2010-10-25,0.00851362060174664,subsurface_runoff,0.0,0.0,1.0523567142511537e-06,0.0,0.0,0.0,0.0,0.0,10.479126768470415,0.0,0.0,0.0 -4811,my_land,2010-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.603571429,0.0,0.0,0.0 -4812,my_groundwater,2010-10-25,16.0874296512321,tank,0.0,0.0,0.0016418494562130542,0.0,0.0,0.0,0.0,0.0,10.885788610121619,0.0,0.0,0.0 -4813,my_reservoir,2010-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4814,gw1,2010-10-25,261.8313068099264,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4815,gw2,2010-10-25,263.1686931900736,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4816,my_sewer,2010-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4817,my_land,2010-10-26,3.1068261003315394,percolation,0.0,0.0,0.0003777500013908123,0.0,0.0,0.0,0.0,0.0,14.112116639342851,0.0,0.0,0.0 -4818,my_land,2010-10-26,0.015766754656339192,subsurface_runoff,0.0,0.0,1.9865777000337163e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4819,my_land,2010-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4820,my_groundwater,2010-10-26,16.11045717986077,tank,0.0,0.0,0.0016454347433151203,0.0,0.0,0.0,0.0,0.0,10.898454462603954,0.0,0.0,0.0 -4821,my_reservoir,2010-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4822,gw1,2010-10-26,261.83576476452686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4823,gw2,2010-10-26,263.16423523547314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4824,my_sewer,2010-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4825,my_land,2010-10-27,3.0446895783249084,percolation,0.0,0.0,0.00037019500136299606,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 -4826,my_land,2010-10-27,0.012613403725071354,subsurface_runoff,0.0,0.0,1.589262160026973e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4827,my_land,2010-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.721428570999999,0.0,0.0,0.0 -4828,my_groundwater,2010-10-27,16.132162217612734,tank,0.0,0.0,0.0016488572689845793,0.0,0.0,0.0,0.0,0.0,10.910801634260393,0.0,0.0,0.0 -4829,my_reservoir,2010-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4830,gw1,2010-10-27,261.84019299943003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4831,gw2,2010-10-27,263.15980700056997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4832,my_sewer,2010-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4833,my_land,2010-10-28,2.98379578675841,percolation,0.0,0.0,0.00036279110133573614,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 -4834,my_land,2010-10-28,0.010090722980057084,subsurface_runoff,0.0,0.0,1.2714097280215785e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4835,my_land,2010-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.217857143,0.0,0.0,0.0 -4836,my_groundwater,2010-10-28,16.152573369156286,tank,0.0,0.0,0.0016521205160893097,0.0,0.0,0.0,0.0,0.0,10.92284014067621,0.0,0.0,0.0 -4837,my_reservoir,2010-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4838,gw1,2010-10-28,261.84459171276717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4839,gw2,2010-10-28,263.15540828723283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4840,my_sewer,2010-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4841,my_land,2010-10-29,2.924119871023242,percolation,0.0,0.0,0.0003555352793090214,0.0,0.0,0.0,0.0,0.0,14.112116639342853,0.0,0.0,0.0 -4842,my_land,2010-10-29,0.008072578384045667,subsurface_runoff,0.0,0.0,1.0171277824172628e-06,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4843,my_land,2010-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.714285714,0.0,0.0,0.0 -4844,my_groundwater,2010-10-29,16.17171866167923,tank,0.0,0.0,0.0016552278972707345,0.0,0.0,0.0,0.0,0.0,10.934579597197391,0.0,0.0,0.0 -4845,my_reservoir,2010-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4846,gw1,2010-10-29,261.8489611013487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4847,gw2,2010-10-29,263.1510388986513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4848,my_sewer,2010-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4849,my_land,2010-10-30,2.8656374736027774,percolation,0.0,0.0,0.000348424573722841,0.0,0.0,0.0,0.0,0.0,14.112116639342855,0.0,0.0,0.0 -4850,my_land,2010-10-30,0.006458062707236534,subsurface_runoff,0.0,0.0,8.137022259338103e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4851,my_land,2010-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.210714286,0.0,0.0,0.0 -4852,my_groundwater,2010-10-30,16.189625556451947,tank,0.0,0.0,0.0016581827563497728,0.0,0.0,0.0,0.0,0.0,10.946029238729267,0.0,0.0,0.0 -4853,my_reservoir,2010-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4854,gw1,2010-10-30,261.8533013606731,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4855,gw2,2010-10-30,263.1466986393269,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4856,my_sewer,2010-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4857,my_land,2010-10-31,2.808324724130722,percolation,0.0,0.0,0.0003414560822483842,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -4858,my_land,2010-10-31,0.005166450165789227,subsurface_runoff,0.0,0.0,6.509617807470482e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4859,my_land,2010-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.707142857,0.0,0.0,0.0 -4860,my_groundwater,2010-10-31,16.20632096015919,tank,0.0,0.0,0.001660988369704669,0.0,0.0,0.0,0.0,0.0,10.957197938368624,0.0,0.0,0.0 -4861,my_reservoir,2010-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4862,gw1,2010-10-31,261.85761268493525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4863,gw2,2010-10-31,263.14238731506475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4864,my_sewer,2010-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4865,my_land,2010-11-01,2.7521582296481073,percolation,0.0,0.0,0.0003346269606034165,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -4866,my_land,2010-11-01,0.004133160132631382,subsurface_runoff,0.0,0.0,5.207694245976385e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4867,my_land,2010-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.20357143,0.0,0.0,0.0 -4868,my_groundwater,2010-11-01,16.221831236005197,tank,0.0,0.0,0.0016636479476212626,0.0,0.0,0.0,0.0,0.0,10.968094224948745,0.0,0.0,0.0 -4869,my_reservoir,2010-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4870,gw1,2010-11-01,261.86189526703566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4871,gw2,2010-11-01,263.13810473296434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4872,my_sewer,2010-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4873,my_land,2010-11-02,2.697115065055145,percolation,0.0,0.0,0.0003279344213913482,0.0,0.0,0.0,0.0,0.0,14.112116639342858,0.0,0.0,0.0 -4874,my_land,2010-11-02,0.0033065281061051056,subsurface_runoff,0.0,0.0,4.166155396781108e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4875,my_land,2010-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 -4876,my_groundwater,2010-11-02,16.236182214596663,tank,0.0,0.0,0.0016661646356162477,0.0,0.0,0.0,0.0,0.0,10.978726299570706,0.0,0.0,0.0 -4877,my_reservoir,2010-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4878,gw1,2010-11-02,261.86614929858877,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4879,gw2,2010-11-02,263.13385070141123,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4880,my_sewer,2010-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4881,my_land,2010-11-03,2.643172763754042,percolation,0.0,0.0,0.00032137573296352125,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -4882,my_land,2010-11-03,0.0026452224848840843,subsurface_runoff,0.0,0.0,3.3329243174248867e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4883,my_land,2010-11-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 -4884,my_groundwater,2010-11-03,16.24939920460802,tank,0.0,0.0,0.0016685415157339644,0.0,0.0,0.0,0.0,0.0,10.989102051188627,0.0,0.0,0.0 -4885,my_reservoir,2010-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4886,gw1,2010-11-03,261.8703749699315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4887,gw2,2010-11-03,263.1296250300685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4888,my_sewer,2010-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.225,0.0,0.0,0.0 -4889,my_land,2010-11-04,2.5903093084789615,percolation,0.0,0.0,0.0003149482183042508,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -4890,my_land,2010-11-04,0.0021161779879072676,subsurface_runoff,0.0,0.0,2.6663394539399093e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4891,my_land,2010-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 -4892,my_groundwater,2010-11-04,16.261507003233394,tank,0.0,0.0,0.001670781607817252,0.0,0.0,0.0,0.0,0.0,10.99922907131146,0.0,0.0,0.0 -4893,my_reservoir,2010-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4894,gw1,2010-11-04,261.87457247013197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4895,gw2,2010-11-04,263.12542752986803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4896,my_sewer,2010-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -4897,my_land,2010-11-05,2.538503122309382,percolation,0.0,0.0,0.00030864925393816583,0.0,0.0,0.0,0.0,0.0,14.112116639342856,0.0,0.0,0.0 -4898,my_land,2010-11-05,0.001692942390325814,subsurface_runoff,0.0,0.0,2.1330715631519274e-07,0.0,0.0,0.0,0.0,0.0,9.05421610135245,0.0,0.0,0.0 -4899,my_land,2010-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,0.0,0.0,0.0 -4900,my_groundwater,2010-11-05,16.272529906429465,tank,0.0,0.0,0.0016728878707528787,0.0,0.0,0.0,0.0,0.0,11.009114667879247,0.0,0.0,0.0 -4901,my_reservoir,2010-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4902,gw1,2010-11-05,261.87874198699774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4903,gw2,2010-11-05,263.12125801300226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4904,my_sewer,2010-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.44264705882353,0.0,0.0,0.0 -4905,my_land,2010-11-06,2.7903828025514876,percolation,0.0,0.0,0.0003411772693051844,0.0,0.0,0.0,0.0,0.0,13.629970905946246,0.0,0.0,0.0 -4906,my_land,2010-11-06,0.08370802539206827,subsurface_runoff,0.0,0.0,1.070153020009484e-05,0.0,0.0,0.0,0.0,0.0,9.656897717727844,0.0,0.0,0.0 -4907,my_land,2010-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.2,0.0,0.0,0.0 -4908,my_groundwater,2010-11-06,16.288652803001046,tank,0.0,0.0,0.0016756510454868521,0.0,0.0,0.0,0.0,0.0,11.018254508947866,0.0,0.0,0.0 -4909,my_reservoir,2010-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4910,gw1,2010-11-06,261.88288370708443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4911,gw2,2010-11-06,263.11711629291557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4912,my_sewer,2010-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.014075630252101,0.0,0.0,0.0 -4913,my_land,2010-11-07,3.463412575397431,percolation,0.0,0.0,0.0004221108492532323,0.0,0.0,0.0,0.0,0.0,12.72398330435917,0.0,0.0,0.0 -4914,my_land,2010-11-07,0.26528953021759294,subsurface_runoff,0.0,0.0,3.2440714046919826e-05,0.0,0.0,0.0,0.0,0.0,9.408590490996032,0.0,0.0,0.0 -4915,my_land,2010-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -4916,my_groundwater,2010-11-07,16.318436355564135,tank,0.0,0.0,0.0016800548887329328,0.0,0.0,0.0,0.0,0.0,11.02562425448766,0.0,0.0,0.0 -4917,my_reservoir,2010-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4918,gw1,2010-11-07,261.88699781570386,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4919,gw2,2010-11-07,263.11300218429614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4920,my_sewer,2010-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 -4921,my_land,2010-11-08,3.67685020065256,percolation,0.0,0.0,0.00044717216976176825,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 -4922,my_land,2010-11-08,0.2891583933613064,subsurface_runoff,0.0,0.0,3.5069180079331945e-05,0.0,0.0,0.0,0.0,0.0,9.30578576299988,0.0,0.0,0.0 -4923,my_land,2010-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.45,0.0,0.0,0.0 -4924,my_groundwater,2010-11-08,16.352490429474223,tank,0.0,0.0,0.0016849578992526794,0.0,0.0,0.0,0.0,0.0,11.03209532697629,0.0,0.0,0.0 -4925,my_reservoir,2010-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4926,gw1,2010-11-08,261.8910844969325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4927,gw2,2010-11-08,263.1089155030675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4928,my_sewer,2010-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.903805206293043,0.0,0.0,0.0 -4929,my_land,2010-11-09,3.6033131966395087,percolation,0.0,0.0,0.0004382287263665329,0.0,0.0,0.0,0.0,0.0,12.439357293324855,0.0,0.0,0.0 -4930,my_land,2010-11-09,0.23132671468904512,subsurface_runoff,0.0,0.0,2.8055344063465556e-05,0.0,0.0,0.0,0.0,0.0,9.30578576299988,0.0,0.0,0.0 -4931,my_land,2010-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.075,0.0,0.0,0.0 -4932,my_groundwater,2010-11-09,16.384962364903554,tank,0.0,0.0,0.001689666589291295,0.0,0.0,0.0,0.0,0.0,11.03839543996988,0.0,0.0,0.0 -4933,my_reservoir,2010-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4934,gw1,2010-11-09,261.8951439336196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4935,gw2,2010-11-09,263.1048560663804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4936,my_sewer,2010-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.443429250159594,0.0,0.0,0.0 -4937,my_land,2010-11-10,3.7826262425991604,percolation,0.0,0.0,0.0004591400615630426,0.0,0.0,0.0,0.0,0.0,12.169789571889762,0.0,0.0,0.0 -4938,my_land,2010-11-10,0.2534639050553019,subsurface_runoff,0.0,0.0,3.051935272664738e-05,0.0,0.0,0.0,0.0,0.0,9.056763856409152,0.0,0.0,0.0 -4939,my_land,2010-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.742857143,0.0,0.0,0.0 -4940,my_groundwater,2010-11-10,16.421003421787063,tank,0.0,0.0,0.001694789202642743,0.0,0.0,0.0,0.0,0.0,11.043700917577238,0.0,0.0,0.0 -4941,my_reservoir,2010-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4942,gw1,2010-11-10,261.89917630739546,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4943,gw2,2010-11-10,263.10082369260454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4944,my_sewer,2010-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.05170978099561,0.0,0.0,0.0 -4945,my_land,2010-11-11,3.885581168725699,percolation,0.0,0.0,0.00047089400171154857,0.0,0.0,0.0,0.0,0.0,11.9825521142086,0.0,0.0,0.0 -4946,my_land,2010-11-11,0.2513717909771727,subsurface_runoff,0.0,0.0,3.01125546656082e-05,0.0,0.0,0.0,0.0,0.0,8.87109773694948,0.0,0.0,0.0 -4947,my_land,2010-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.410714286,0.0,0.0,0.0 -4948,my_groundwater,2010-11-11,16.459050244167365,tank,0.0,0.0,0.0017001382860995498,0.0,0.0,0.0,0.0,0.0,11.048212873030268,0.0,0.0,0.0 -4949,my_reservoir,2010-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4950,gw1,2010-11-11,261.9031817986795,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4951,gw2,2010-11-11,263.0968182013205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4952,my_sewer,2010-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -4953,my_land,2010-11-12,3.970898230480193,percolation,0.0,0.0,0.00048047511615352084,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -4954,my_land,2010-11-12,0.24545897975561798,subsurface_runoff,0.0,0.0,2.925983814777997e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 -4955,my_land,2010-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571428999999,0.0,0.0,0.0 -4956,my_groundwater,2010-11-12,16.498738761106008,tank,0.0,0.0,0.0017056690409631404,0.0,0.0,0.0,0.0,0.0,11.0519517331324,0.0,0.0,0.0 -4957,my_reservoir,2010-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4958,gw1,2010-11-12,261.9071605866883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4959,gw2,2010-11-12,263.0928394133117,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4960,my_sewer,2010-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -4961,my_land,2010-11-13,3.891480265870589,percolation,0.0,0.0,0.00047086561383045044,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -4962,my_land,2010-11-13,0.1963671838044944,subsurface_runoff,0.0,0.0,2.3407870518223974e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 -4963,my_land,2010-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.746428571,0.0,0.0,0.0 -4964,my_groundwater,2010-11-13,16.536711333901323,tank,0.0,0.0,0.0017109903469279951,0.0,0.0,0.0,0.0,0.0,11.055589491270965,0.0,0.0,0.0 -4965,my_reservoir,2010-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4966,gw1,2010-11-13,261.9111128494437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4967,gw2,2010-11-13,263.0888871505563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4968,my_sewer,2010-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -4969,my_land,2010-11-14,3.8136506605531775,percolation,0.0,0.0,0.00046144830155384146,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -4970,my_land,2010-11-14,0.15709374704359552,subsurface_runoff,0.0,0.0,1.8726296414579178e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 -4971,my_land,2010-11-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.414285713999999,0.0,0.0,0.0 -4972,my_groundwater,2010-11-14,16.573004586870688,tank,0.0,0.0,0.0017161066400565926,0.0,0.0,0.0,0.0,0.0,11.059129646427545,0.0,0.0,0.0 -4973,my_reservoir,2010-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4974,gw1,2010-11-14,261.9150387637808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4975,gw2,2010-11-14,263.0849612362192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4976,my_sewer,2010-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -4977,my_land,2010-11-15,3.737377647342114,percolation,0.0,0.0,0.00045221933552276464,0.0,0.0,0.0,0.0,0.0,11.81131801565858,0.0,0.0,0.0 -4978,my_land,2010-11-15,0.1256749976348764,subsurface_runoff,0.0,0.0,1.4981037131663342e-05,0.0,0.0,0.0,0.0,0.0,8.679650906561795,0.0,0.0,0.0 -4979,my_land,2010-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.082142857000001,0.0,0.0,0.0 -4980,my_groundwater,2010-11-15,16.607654406081547,tank,0.0,0.0,0.00172102226707245,0.0,0.0,0.0,0.0,0.0,11.062575542087503,0.0,0.0,0.0 -4981,my_reservoir,2010-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4982,gw1,2010-11-15,261.9189385053556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4983,gw2,2010-11-15,263.0810614946444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4984,my_sewer,2010-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.078571429,0.0,0.0,0.0 -4985,my_land,2010-11-16,3.721136828021347,percolation,0.0,0.0,0.0004502004730027757,0.0,0.0,0.0,0.0,0.0,11.730663775861334,0.0,0.0,0.0 -4986,my_land,2010-11-16,0.11646019773404397,subsurface_runoff,0.0,0.0,1.3896536968042608e-05,0.0,0.0,0.0,0.0,0.0,8.406510147119173,0.0,0.0,0.0 -4987,my_land,2010-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.75,0.0,0.0,0.0 -4988,my_groundwater,2010-11-16,16.64188698406535,tank,0.0,0.0,0.0017258845067480398,0.0,0.0,0.0,0.0,0.0,11.06561659319303,0.0,0.0,0.0 -4989,my_reservoir,2010-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4990,gw1,2010-11-16,261.9228122486532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4991,gw2,2010-11-16,263.0771877513468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4992,my_sewer,2010-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -4993,my_land,2010-11-17,3.8470089749815277,percolation,0.0,0.0,0.0004648796491664363,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -4994,my_land,2010-11-17,0.14767016730848898,subsurface_runoff,0.0,0.0,1.75616338257854e-05,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -4995,my_land,2010-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -4996,my_groundwater,2010-11-17,16.678596377881597,tank,0.0,0.0,0.0017310334169106294,0.0,0.0,0.0,0.0,0.0,11.067432945593382,0.0,0.0,0.0 -4997,my_reservoir,2010-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4998,gw1,2010-11-17,261.92666016699553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4999,gw2,2010-11-17,263.07333983300447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5000,my_sewer,2010-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5001,my_land,2010-11-18,3.770068795481897,percolation,0.0,0.0,0.00045558205618310754,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5002,my_land,2010-11-18,0.11813613384679118,subsurface_runoff,0.0,0.0,1.4049307060628318e-05,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5003,my_land,2010-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.007142857,0.0,0.0,0.0 -5004,my_groundwater,2010-11-18,16.713647715987772,tank,0.0,0.0,0.0017359801823692233,0.0,0.0,0.0,0.0,0.0,11.069200897377023,0.0,0.0,0.0 -5005,my_reservoir,2010-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5006,gw1,2010-11-18,261.9304824325489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5007,gw2,2010-11-18,263.0695175674511,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5008,my_sewer,2010-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5009,my_land,2010-11-19,3.694667419572259,percolation,0.0,0.0,0.0004464704150594454,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5010,my_land,2010-11-19,0.09450890707743295,subsurface_runoff,0.0,0.0,1.1239445648502654e-05,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5011,my_land,2010-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.135714286,0.0,0.0,0.0 -5012,my_groundwater,2010-11-19,16.747076469167666,tank,0.0,0.0,0.0017407290939341533,0.0,0.0,0.0,0.0,0.0,11.0709220916491,0.0,0.0,0.0 -5013,my_reservoir,2010-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5014,gw1,2010-11-19,261.9342792163319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5015,gw2,2010-11-19,263.0657207836681,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5016,my_sewer,2010-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5017,my_land,2010-11-20,3.620774071180814,percolation,0.0,0.0,0.0004375410067582565,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5018,my_land,2010-11-20,0.07560712566194636,subsurface_runoff,0.0,0.0,8.991556518802124e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5019,my_land,2010-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.264285714,0.0,0.0,0.0 -5020,my_groundwater,2010-11-20,16.778917393015213,tank,0.0,0.0,0.0017452843559797539,0.0,0.0,0.0,0.0,0.0,11.07259810000806,0.0,0.0,0.0 -5021,my_reservoir,2010-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5022,gw1,2010-11-20,261.93805068822303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5023,gw2,2010-11-20,263.06194931177697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5024,my_sewer,2010-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5025,my_land,2010-11-21,3.5483585897571976,percolation,0.0,0.0,0.00042879018662309135,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5026,my_land,2010-11-21,0.06048570052955708,subsurface_runoff,0.0,0.0,7.1932452150417e-06,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 -5027,my_land,2010-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5028,my_groundwater,2010-11-21,16.809204542252733,tank,0.0,0.0,0.0017496500881746318,0.0,0.0,0.0,0.0,0.0,11.074230426397456,0.0,0.0,0.0 -5029,my_reservoir,2010-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5030,gw1,2010-11-21,261.9417970169682,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5031,gw2,2010-11-21,263.0582029830318,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5032,my_sewer,2010-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5033,my_land,2010-11-22,3.4773914179620538,percolation,0.0,0.0,0.00042021438289062955,0.0,0.0,0.0,0.0,0.0,11.452446093926785,0.0,0.0,0.0 -5034,my_land,2010-11-22,0.048388560423645664,subsurface_runoff,0.0,0.0,5.7545961720333596e-06,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 -5035,my_land,2010-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5036,my_groundwater,2010-11-22,16.837971284762755,tank,0.0,0.0,0.001753830327177326,0.0,0.0,0.0,0.0,0.0,11.075820510711043,0.0,0.0,0.0 -5037,my_reservoir,2010-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5038,gw1,2010-11-22,261.94551837018844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5039,gw2,2010-11-22,263.05448162981156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5040,my_sewer,2010-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5041,my_land,2010-11-23,3.4078435896028125,percolation,0.0,0.0,0.00041181009523281694,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 -5042,my_land,2010-11-23,0.03871084833891653,subsurface_runoff,0.0,0.0,4.603676937626688e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5043,my_land,2010-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5044,my_groundwater,2010-11-23,16.865250315339193,tank,0.0,0.0,0.0017578290282980508,0.0,0.0,0.0,0.0,0.0,11.077369732169373,0.0,0.0,0.0 -5045,my_reservoir,2010-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5046,gw1,2010-11-23,261.9492149143872,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5047,gw2,2010-11-23,263.0507850856128,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5048,my_sewer,2010-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5049,my_land,2010-11-24,3.339686717810756,percolation,0.0,0.0,0.0004035738933281606,0.0,0.0,0.0,0.0,0.0,11.452446093926786,0.0,0.0,0.0 -5050,my_land,2010-11-24,0.030968678671133225,subsurface_runoff,0.0,0.0,3.68294155010135e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5051,my_land,2010-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5052,my_groundwater,2010-11-24,16.89107366916342,tank,0.0,0.0,0.0017616500671272005,0.0,0.0,0.0,0.0,0.0,11.078879412484625,0.0,0.0,0.0 -5053,my_reservoir,2010-11-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5054,gw1,2010-11-24,261.95288681495794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5055,gw2,2010-11-24,263.04711318504206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5056,my_sewer,2010-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5057,my_land,2010-11-25,3.272892983454541,percolation,0.0,0.0,0.00039550241546159736,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5058,my_land,2010-11-25,0.02477494293690658,subsurface_runoff,0.0,0.0,2.94635324008108e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5059,my_land,2010-11-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5060,my_groundwater,2010-11-25,16.915472735010834,tank,0.0,0.0,0.0017652972411312793,0.0,0.0,0.0,0.0,0.0,11.080350818828999,0.0,0.0,0.0 -5061,my_reservoir,2010-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5062,gw1,2010-11-25,261.95653423619154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5063,gw2,2010-11-25,263.04346576380846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5064,my_sewer,2010-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5065,my_land,2010-11-26,3.20743512378545,percolation,0.0,0.0,0.0003875923671523654,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5066,my_land,2010-11-26,0.019819954349525264,subsurface_runoff,0.0,0.0,2.3570825920648643e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5067,my_land,2010-11-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5068,my_groundwater,2010-11-26,16.938478268193226,tank,0.0,0.0,0.00176877427121691,0.0,0.0,0.0,0.0,0.0,11.08178516662078,0.0,0.0,0.0 -5069,my_reservoir,2010-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5070,gw1,2010-11-26,261.9601573412836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5071,gw2,2010-11-26,263.0398426587164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5072,my_sewer,2010-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5073,my_land,2010-11-27,3.143286421309741,percolation,0.0,0.0,0.0003798405198093181,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5074,my_land,2010-11-27,0.015855963479620212,subsurface_runoff,0.0,0.0,1.8856660736518915e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5075,my_land,2010-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5076,my_groundwater,2010-11-27,16.96012040324226,tank,0.0,0.0,0.0017720848032635574,0.0,0.0,0.0,0.0,0.0,11.083183622140984,0.0,0.0,0.0 -5077,my_reservoir,2010-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5078,gw1,2010-11-27,261.9637562923417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5079,gw2,2010-11-27,263.0362437076583,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5080,my_sewer,2010-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5081,my_land,2010-11-28,3.0804206928835463,percolation,0.0,0.0,0.0003722437094131317,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5082,my_land,2010-11-28,0.01268477078369617,subsurface_runoff,0.0,0.0,1.5085328589215132e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5083,my_land,2010-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5084,my_groundwater,2010-11-28,16.980428666339286,tank,0.0,0.0,0.0017752324096255944,0.0,0.0,0.0,0.0,0.0,11.084547304992494,0.0,0.0,0.0 -5085,my_reservoir,2010-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5086,gw1,2010-11-28,261.96733125039276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5087,gw2,2010-11-28,263.03266874960724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5088,my_sewer,2010-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5089,my_land,2010-11-29,3.0188122790258753,percolation,0.0,0.0,0.0003647988352248691,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5090,my_land,2010-11-29,0.010147816626956936,subsurface_runoff,0.0,0.0,1.2068262871372106e-06,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5091,my_land,2010-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5092,my_groundwater,2010-11-29,16.999431987496465,tank,0.0,0.0,0.0017782205906043225,0.0,0.0,0.0,0.0,0.0,11.085877290412649,0.0,0.0,0.0 -5093,my_reservoir,2010-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5094,gw1,2010-11-29,261.97088237539015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5095,gw2,2010-11-29,263.02911762460985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5096,my_sewer,2010-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5097,my_land,2010-11-30,2.958436033445358,percolation,0.0,0.0,0.0003575028585203717,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5098,my_land,2010-11-30,0.00811825330156555,subsurface_runoff,0.0,0.0,9.654610297097686e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5099,my_land,2010-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5100,my_groundwater,2010-11-30,17.01715871249429,tank,0.0,0.0,0.001781052775890548,0.0,0.0,0.0,0.0,0.0,11.087174611449365,0.0,0.0,0.0 -5101,my_reservoir,2010-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5102,gw1,2010-11-30,261.9744098262209,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5103,gw2,2010-11-30,263.0255901737791,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5104,my_sewer,2010-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5105,my_land,2010-12-01,2.8992673127764506,percolation,0.0,0.0,0.00035035280134996426,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5106,my_land,2010-12-01,0.0064946026412524395,subsurface_runoff,0.0,0.0,7.723688237678149e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234036,0.0,0.0,0.0 -5107,my_land,2010-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5108,my_groundwater,2010-12-01,17.03363661458029,tank,0.0,0.0,0.0017837323259783028,0.0,0.0,0.0,0.0,0.0,11.088440261010115,0.0,0.0,0.0 -5109,my_reservoir,2010-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5110,gw1,2010-12-01,261.97791376071274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5111,gw2,2010-12-01,263.02208623928726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5112,my_sewer,2010-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878571429,0.0,0.0,0.0 -5113,my_land,2010-12-02,2.8412819665209215,percolation,0.0,0.0,0.00034334574532296497,0.0,0.0,0.0,0.0,0.0,11.452446093926788,0.0,0.0,0.0 -5114,my_land,2010-12-02,0.005195682113001952,subsurface_runoff,0.0,0.0,6.17895059014252e-07,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 -5115,my_land,2010-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5116,my_groundwater,2010-12-02,17.048892905933727,tank,0.0,0.0,0.0017862625335502889,0.0,0.0,0.0,0.0,0.0,11.089675193792333,0.0,0.0,0.0 -5117,my_reservoir,2010-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5118,gw1,2010-12-02,261.9813943356413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5119,gw2,2010-12-02,263.0186056643587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5120,my_sewer,2010-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.510714286,0.0,0.0,0.0 -5121,my_land,2010-12-03,2.784456327190503,percolation,0.0,0.0,0.00033647883041650566,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5122,my_land,2010-12-03,0.004156545690401562,subsurface_runoff,0.0,0.0,4.943160472114016e-07,0.0,0.0,0.0,0.0,0.0,7.6611554382340366,0.0,0.0,0.0 -5123,my_land,2010-12-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5124,my_groundwater,2010-12-03,17.062954248900986,tank,0.0,0.0,0.0017886466248356063,0.0,0.0,0.0,0.0,0.0,11.09088032810318,0.0,0.0,0.0 -5125,my_reservoir,2010-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5126,gw1,2010-12-03,261.98485170673706,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5127,gw2,2010-12-03,263.01514829326294,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5128,my_sewer,2010-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5129,my_land,2010-12-04,2.728767200646693,percolation,0.0,0.0,0.00032974925380817554,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5130,my_land,2010-12-04,0.003325236552321249,subsurface_runoff,0.0,0.0,3.9545283776912125e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5131,my_land,2010-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5132,my_groundwater,2010-12-04,17.075846767006187,tank,0.0,0.0,0.0017908877609403265,0.0,0.0,0.0,0.0,0.0,11.092056547576025,0.0,0.0,0.0 -5133,my_reservoir,2010-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5134,gw1,2010-12-04,261.98828602869213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5135,gw2,2010-12-04,263.01171397130787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5136,my_sewer,2010-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5137,my_land,2010-12-05,2.674191856633759,percolation,0.0,0.0,0.00032315426873201204,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5138,my_land,2010-12-05,0.002660189241856999,subsurface_runoff,0.0,0.0,3.16362270215297e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5139,my_land,2010-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5140,my_groundwater,2010-12-05,17.087596055741574,tank,0.0,0.0,0.0017929890391514488,0.0,0.0,0.0,0.0,0.0,11.093204702790372,0.0,0.0,0.0 -5141,my_reservoir,2010-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5142,gw1,2010-12-05,261.9916974551675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5143,gw2,2010-12-05,263.0083025448325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5144,my_sewer,2010-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5145,my_land,2010-12-06,2.620708019501084,percolation,0.0,0.0,0.0003166911833573718,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5146,my_land,2010-12-06,0.002128151393485599,subsurface_runoff,0.0,0.0,2.530898161722376e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5147,my_land,2010-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5148,my_groundwater,2010-12-06,17.098227193142062,tank,0.0,0.0,0.0017949534942147739,0.0,0.0,0.0,0.0,0.0,11.094325612801581,0.0,0.0,0.0 -5149,my_reservoir,2010-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5150,gw1,2010-12-06,261.99508613879976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5151,gw2,2010-12-06,263.00491386120024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5152,my_sewer,2010-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5153,my_land,2010-12-07,2.568293859111062,percolation,0.0,0.0,0.00031035735969022437,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5154,my_land,2010-12-07,0.0017025211147884793,subsurface_runoff,0.0,0.0,2.0247185293779007e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5155,my_land,2010-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5156,my_groundwater,2010-12-07,17.107764750148252,tank,0.0,0.0,0.0017967840995872163,0.0,0.0,0.0,0.0,0.0,11.09542006658612,0.0,0.0,0.0 -5157,my_reservoir,2010-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5158,gw1,2010-12-07,261.99845223120775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5159,gw2,2010-12-07,263.00154776879225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5160,my_sewer,2010-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5161,my_land,2010-12-08,2.516927981928841,percolation,0.0,0.0,0.00030415021249641987,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5162,my_land,2010-12-08,0.0013620168918307834,subsurface_runoff,0.0,0.0,1.6197748235023205e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5163,my_land,2010-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5164,my_groundwater,2010-12-08,17.11623280076215,tank,0.0,0.0,0.0017984837686640684,0.0,0.0,0.0,0.0,0.0,11.096488824407801,0.0,0.0,0.0 -5165,my_reservoir,2010-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5166,gw1,2010-12-08,262.0017958829997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5167,gw2,2010-12-08,262.9982041170003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5168,my_sewer,2010-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5169,my_land,2010-12-09,2.466589422290264,percolation,0.0,0.0,0.00029806720824649145,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5170,my_land,2010-12-09,0.0010896135134646268,subsurface_runoff,0.0,0.0,1.2958198588018563e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5171,my_land,2010-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5172,my_groundwater,2010-12-09,17.12365493199972,tank,0.0,0.0,0.0018000553559817118,0.0,0.0,0.0,0.0,0.0,11.097532619109975,0.0,0.0,0.0 -5173,my_reservoir,2010-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5174,gw1,2010-12-09,262.0051172437797,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5175,gw2,2010-12-09,262.9948827562203,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5176,my_sewer,2010-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5177,my_land,2010-12-10,2.417257633844459,percolation,0.0,0.0,0.00029210586408156164,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5178,my_land,2010-12-10,0.0008716908107717015,subsurface_runoff,0.0,0.0,1.036655887041485e-07,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5179,my_land,2010-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5180,my_groundwater,2010-12-10,17.13005425364441,tank,0.0,0.0,0.001801501658396275,0.0,0.0,0.0,0.0,0.0,11.098552157338313,0.0,0.0,0.0 -5181,my_reservoir,2010-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5182,gw1,2010-12-10,262.0084164621545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5183,gw2,2010-12-10,262.9915835378455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5184,my_sewer,2010-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5185,my_land,2010-12-11,2.3689124811675697,percolation,0.0,0.0,0.0002862637467999304,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5186,my_land,2010-12-11,0.0006973526486173611,subsurface_runoff,0.0,0.0,8.293247096331881e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5187,my_land,2010-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5188,my_groundwater,2010-12-11,17.135453407805493,tank,0.0,0.0,0.0018028254162387116,0.0,0.0,0.0,0.0,0.0,11.099548120698527,0.0,0.0,0.0 -5189,my_reservoir,2010-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5190,gw1,2010-12-11,262.01169368574017,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5191,gw2,2010-12-11,262.98830631425983,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5192,my_sewer,2010-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5193,my_land,2010-12-12,2.3215342315442182,percolation,0.0,0.0,0.0002805384718639318,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5194,my_land,2010-12-12,0.0005578821188938889,subsurface_runoff,0.0,0.0,6.634597677065504e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5195,my_land,2010-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5196,my_groundwater,2010-12-12,17.13987457828527,tank,0.0,0.0,0.0018040293144467735,0.0,0.0,0.0,0.0,0.0,11.100521166853,0.0,0.0,0.0 -5197,my_reservoir,2010-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5198,gw1,2010-12-12,262.0149490611686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5199,gw2,2010-12-12,262.9850509388314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5200,my_sewer,2010-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5201,my_land,2010-12-13,2.275103546913334,percolation,0.0,0.0,0.0002749277024266532,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5202,my_land,2010-12-13,0.0004463056951151111,subsurface_runoff,0.0,0.0,5.307678141652404e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5203,my_land,2010-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5204,my_groundwater,2010-12-13,17.143339499758863,tank,0.0,0.0,0.001805115983674342,0.0,0.0,0.0,0.0,0.0,11.101471930560075,0.0,0.0,0.0 -5205,my_reservoir,2010-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5206,gw1,2010-12-13,262.0181827340941,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5207,gw2,2010-12-13,262.9818172659059,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5208,my_sewer,2010-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5209,my_land,2010-12-14,2.229601475975067,percolation,0.0,0.0,0.00026942914837812013,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5210,my_land,2010-12-14,0.00035704455609208887,subsurface_runoff,0.0,0.0,4.246142513321923e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5211,my_land,2010-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5212,my_groundwater,2010-12-14,17.145869466770385,tank,0.0,0.0,0.0018060880013785678,0.0,0.0,0.0,0.0,0.0,11.102401024659484,0.0,0.0,0.0 -5213,my_reservoir,2010-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5214,gw1,2010-12-14,262.0213948492002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5215,gw2,2010-12-14,262.9786051507998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5216,my_sewer,2010-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.539285714,0.0,0.0,0.0 -5217,my_land,2010-12-15,2.185009446455566,percolation,0.0,0.0,0.00026404056541055773,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5218,my_land,2010-12-15,0.0002856356448736711,subsurface_runoff,0.0,0.0,3.396914010657538e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5219,my_land,2010-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5220,my_groundwater,2010-12-15,17.147485342549164,tank,0.0,0.0,0.0018069478928852648,0.0,0.0,0.0,0.0,0.0,11.103309041007114,0.0,0.0,0.0 -5221,my_reservoir,2010-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5222,gw1,2010-12-15,262.02458555020553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5223,gw2,2010-12-15,262.97541444979447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5224,my_sewer,2010-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.389285714,0.0,0.0,0.0 -5225,my_land,2010-12-16,2.1413092575264545,percolation,0.0,0.0,0.00025875975410234655,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5226,my_land,2010-12-16,0.00022850851589893687,subsurface_runoff,0.0,0.0,2.7175312085260305e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5227,my_land,2010-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5228,my_groundwater,2010-12-16,17.148207567649578,tank,0.0,0.0,0.0018076981324329923,0.0,0.0,0.0,0.0,0.0,11.104196551362161,0.0,0.0,0.0 -5229,my_reservoir,2010-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5230,gw1,2010-12-16,262.02775497987085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5231,gw2,2010-12-16,262.97224502012915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5232,my_sewer,2010-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9714285709999997,0.0,0.0,0.0 -5233,my_land,2010-12-17,2.0984830723759256,percolation,0.0,0.0,0.0002535845590202996,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5234,my_land,2010-12-17,0.0001828068127191495,subsurface_runoff,0.0,0.0,2.1740249668208243e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5235,my_land,2010-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5236,my_groundwater,2010-12-17,17.148056168418105,tank,0.0,0.0,0.0018083411441962515,0.0,0.0,0.0,0.0,0.0,11.105064108229477,0.0,0.0,0.0 -5237,my_reservoir,2010-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5238,gw1,2010-12-17,262.030903280005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5239,gw2,2010-12-17,262.969096719995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5240,my_sewer,2010-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5241,my_land,2010-12-18,2.056513410928407,percolation,0.0,0.0,0.00024851286783989364,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5242,my_land,2010-12-18,0.0001462454501753196,subsurface_runoff,0.0,0.0,1.7392199734566594e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5243,my_land,2010-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5244,my_groundwater,2010-12-18,17.147050765290956,tank,0.0,0.0,0.001808879303288216,0.0,0.0,0.0,0.0,0.0,11.105912245659695,0.0,0.0,0.0 -5245,my_reservoir,2010-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5246,gw1,2010-12-18,262.03403059147166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5247,gw2,2010-12-18,262.96596940852834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5248,my_sewer,2010-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5249,my_land,2010-12-19,2.015383142709839,percolation,0.0,0.0,0.00024354261048309576,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5250,my_land,2010-12-19,0.00011699636014025569,subsurface_runoff,0.0,0.0,1.3913759787653275e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5251,my_land,2010-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5252,my_groundwater,2010-12-19,17.145210580925752,tank,0.0,0.0,0.0018093149367434014,0.0,0.0,0.0,0.0,0.0,11.106741480009639,0.0,0.0,0.0 -5253,my_reservoir,2010-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5254,gw1,2010-12-19,262.03713705419517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5255,gw2,2010-12-19,262.96286294580483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5256,my_sewer,2010-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5257,my_land,2010-12-20,1.9750754798556422,percolation,0.0,0.0,0.00023867175827343385,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5258,my_land,2010-12-20,9.359708811220455e-05,subsurface_runoff,0.0,0.0,1.113100783012262e-08,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5259,my_land,2010-12-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5260,my_groundwater,2010-12-20,17.1425544481705,tank,0.0,0.0,0.0018096503244806807,0.0,0.0,0.0,0.0,0.0,11.107552310665268,0.0,0.0,0.0 -5261,my_reservoir,2010-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5262,gw1,2010-12-20,262.0402228071672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5263,gw2,2010-12-20,262.9597771928328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5264,my_sewer,2010-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5265,my_land,2010-12-21,1.9355739702585295,percolation,0.0,0.0,0.00023389832310796518,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5266,my_land,2010-12-21,7.487767048976364e-05,subsurface_runoff,0.0,0.0,8.904806264098097e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5267,my_land,2010-12-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5268,my_groundwater,2010-12-21,17.139100817873192,tank,0.0,0.0,0.001809887700247034,0.0,0.0,0.0,0.0,0.0,11.108345220729289,0.0,0.0,0.0 -5269,my_reservoir,2010-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5270,gw1,2010-12-21,262.04328798845273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5271,gw2,2010-12-21,262.95671201154727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5272,my_sewer,2010-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5273,my_land,2010-12-22,1.896862490853359,percolation,0.0,0.0,0.00022922035664580588,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5274,my_land,2010-12-22,5.9902136391810914e-05,subsurface_runoff,0.0,0.0,7.123845011278478e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5275,my_land,2010-12-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5276,my_groundwater,2010-12-22,17.134867766535166,tank,0.0,0.0,0.0018100292525424202,0.0,0.0,0.0,0.0,0.0,11.109120677675469,0.0,0.0,0.0 -5277,my_reservoir,2010-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5278,gw1,2010-12-22,262.04633273519636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5279,gw2,2010-12-22,262.95366726480364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5280,my_sewer,2010-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5281,my_land,2010-12-23,1.8589252410362918,percolation,0.0,0.0,0.00022463594951288978,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5282,my_land,2010-12-23,4.792170911344873e-05,subsurface_runoff,0.0,0.0,5.699076009022782e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5283,my_land,2010-12-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5284,my_groundwater,2010-12-23,17.12987300381135,tank,0.0,0.0,0.001810077125526148,0.0,0.0,0.0,0.0,0.0,11.109879133971482,0.0,0.0,0.0 -5285,my_reservoir,2010-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5286,gw1,2010-12-23,262.0493571836284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5287,gw2,2010-12-23,262.9506428163716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5288,my_sewer,2010-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5289,my_land,2010-12-24,1.821746736215566,percolation,0.0,0.0,0.00022014323052263197,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5290,my_land,2010-12-24,3.833736729075899e-05,subsurface_runoff,0.0,0.0,4.559260807218226e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5291,my_land,2010-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5292,my_groundwater,2010-12-24,17.124133879860498,tank,0.0,0.0,0.0018100334199051148,0.0,0.0,0.0,0.0,0.0,11.110621027672082,0.0,0.0,0.0 -5293,my_reservoir,2010-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5294,gw1,2010-12-24,262.0523614690709,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5295,gw2,2010-12-24,262.9476385309291,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5296,my_sewer,2010-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5297,my_land,2010-12-25,1.7853118014912546,percolation,0.0,0.0,0.00021574036591217935,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5298,my_land,2010-12-25,3.066989383260719e-05,subsurface_runoff,0.0,0.0,3.647408645774581e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5299,my_land,2010-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5300,my_groundwater,2010-12-25,17.11766739254835,tank,0.0,0.0,0.0018099001938042785,0.0,0.0,0.0,0.0,0.0,11.111346782984198,0.0,0.0,0.0 -5301,my_reservoir,2010-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5302,gw1,2010-12-25,262.05534572594377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5303,gw2,2010-12-25,262.94465427405623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5304,my_sewer,2010-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.553571429,0.0,0.0,0.0 -5305,my_land,2010-12-26,1.7496055654614295,percolation,0.0,0.0,0.00021142555859393576,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5306,my_land,2010-12-26,2.453591506608575e-05,subsurface_runoff,0.0,0.0,2.917926916619665e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5307,my_land,2010-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5308,my_groundwater,2010-12-26,17.110490194506728,tank,0.0,0.0,0.0018096794636197158,0.0,0.0,0.0,0.0,0.0,11.112056810805537,0.0,0.0,0.0 -5309,my_reservoir,2010-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5310,gw1,2010-12-26,262.0583100877708,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5311,gw2,2010-12-26,262.9416899122292,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5312,my_sewer,2010-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5313,my_land,2010-12-27,1.714613454152201,percolation,0.0,0.0,0.00020719704742205703,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5314,my_land,2010-12-27,1.96287320528686e-05,subsurface_runoff,0.0,0.0,2.334341533295732e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5315,my_land,2010-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5316,my_groundwater,2010-12-27,17.102618600051418,tank,0.0,0.0,0.0018093732048546154,0.0,0.0,0.0,0.0,0.0,11.112751509238104,0.0,0.0,0.0 -5317,my_reservoir,2010-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5318,gw1,2010-12-27,262.0612546871857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5319,gw2,2010-12-27,262.9387453128143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5320,my_sewer,2010-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5321,my_land,2010-12-28,1.6803211850691568,percolation,0.0,0.0,0.0002030531064736159,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5322,my_land,2010-12-28,1.570298564229488e-05,subsurface_runoff,0.0,0.0,1.8674732266365857e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5323,my_land,2010-12-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5324,my_groundwater,2010-12-28,17.094068591961623,tank,0.0,0.0,0.001808983352938549,0.0,0.0,0.0,0.0,0.0,11.113431264078002,0.0,0.0,0.0 -5325,my_reservoir,2010-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5326,gw1,2010-12-28,262.0641796559378,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5327,gw2,2010-12-28,262.9358203440622,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5328,my_sewer,2010-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5329,my_land,2010-12-29,1.6467147613677737,percolation,0.0,0.0,0.00019899204434414356,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5330,my_land,2010-12-29,1.2562388513835904e-05,subsurface_runoff,0.0,0.0,1.4939785813092686e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5331,my_land,2010-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5332,my_groundwater,2010-12-29,17.084855828123846,tank,0.0,0.0,0.001808511804030351,0.0,0.0,0.0,0.0,0.0,11.114096449282796,0.0,0.0,0.0 -5333,my_reservoir,2010-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5334,gw1,2010-12-29,262.0670851248982,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5335,gw2,2010-12-29,262.9329148751018,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5336,my_sewer,2010-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5337,my_land,2010-12-30,1.6137804661404183,percolation,0.0,0.0,0.0001950122034572607,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5338,my_land,2010-12-30,1.0049910811068724e-05,subsurface_runoff,0.0,0.0,1.1951828650474149e-09,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5339,my_land,2010-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5340,my_groundwater,2010-12-30,17.074995648042826,tank,0.0,0.0,0.0018079604158049408,0.0,0.0,0.0,0.0,0.0,11.114747427417617,0.0,0.0,0.0 -5341,my_reservoir,2010-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5342,gw1,2010-12-30,262.06997122406557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5343,gw2,2010-12-30,262.93002877593443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5344,my_sewer,2010-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5345,my_land,2010-12-31,1.58150485681761,percolation,0.0,0.0,0.00019111195938811547,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -5346,my_land,2010-12-31,8.039928648854979e-06,subsurface_runoff,0.0,0.0,9.56146292037932e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5347,my_land,2010-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5348,my_groundwater,2010-12-31,17.06450307922222,tank,0.0,0.0,0.0018073310082244007,0.0,0.0,0.0,0.0,0.0,11.115384550081139,0.0,0.0,0.0 -5349,my_reservoir,2010-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5350,gw1,2010-12-31,262.0728380825718,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5351,gw2,2010-12-31,262.9271619174282,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5352,my_sewer,2011-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5353,my_land,2011-01-01,1.5498747596812579,percolation,0.0,0.0,0.00018728972020035315,0.0,0.0,0.0,0.0,0.0,11.452446093926794,0.0,0.0,0.0 -5354,my_land,2011-01-01,6.431942919083983e-06,subsurface_runoff,0.0,0.0,7.649170336303456e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5355,my_land,2011-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5356,my_groundwater,2011-01-01,17.053392843417676,tank,0.0,0.0,0.0018066253642936327,0.0,0.0,0.0,0.0,0.0,11.116008158312473,0.0,0.0,0.0 -5357,my_reservoir,2011-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5358,gw1,2011-01-01,262.075685828688,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5359,gw2,2011-01-01,262.924314171312,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5360,my_sewer,2011-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5361,my_land,2011-01-02,1.5188772644876327,percolation,0.0,0.0,0.0001835439257963461,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -5362,my_land,2011-01-02,5.145554335267187e-06,subsurface_runoff,0.0,0.0,6.119336269042765e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5363,my_land,2011-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5364,my_groundwater,2011-01-02,17.04167936276477,tank,0.0,0.0,0.0018058452308008957,0.0,0.0,0.0,0.0,0.0,11.11661858297999,0.0,0.0,0.0 -5365,my_reservoir,2011-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5366,gw1,2011-01-02,262.0785145898301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5367,gw2,2011-01-02,262.9214854101699,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5368,my_sewer,2011-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5369,my_land,2011-01-03,1.4884997191978802,percolation,0.0,0.0,0.00017987304728041918,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -5370,my_land,2011-01-03,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234037,0.0,0.0,0.0 -5371,my_land,2011-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5372,my_groundwater,2011-01-03,17.029376765784388,tank,0.0,0.0,0.0018049923190435306,0.0,0.0,0.0,0.0,0.0,11.117216145152977,0.0,0.0,0.0 -5373,my_reservoir,2011-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5374,gw1,2011-01-03,262.08132449256453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5375,gw2,2011-01-03,262.91867550743547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5376,my_sewer,2011-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5377,my_land,2011-01-04,1.4587297248139226,percolation,0.0,0.0,0.0001762755863348108,0.0,0.0,0.0,0.0,0.0,11.452446093926792,0.0,0.0,0.0 -5378,my_land,2011-01-04,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5379,my_land,2011-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5380,my_groundwater,2011-01-04,17.016498893267926,tank,0.0,0.0,0.0018040683055391663,0.0,0.0,0.0,0.0,0.0,11.117801156457038,0.0,0.0,0.0 -5381,my_reservoir,2011-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5382,gw1,2011-01-04,262.0841156626141,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5383,gw2,2011-01-04,262.9158843373859,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5384,my_sewer,2011-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703571429,0.0,0.0,0.0 -5385,my_land,2011-01-05,1.4295551303176441,percolation,0.0,0.0,0.00017275007460811458,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5386,my_land,2011-01-05,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5387,my_land,2011-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5388,my_groundwater,2011-01-05,17.003059304044793,tank,0.0,0.0,0.0018030748327226979,0.0,0.0,0.0,0.0,0.0,11.118373919414037,0.0,0.0,0.0 -5389,my_reservoir,2011-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5390,gw1,2011-01-05,262.08688822486334,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5391,gw2,2011-01-05,262.91311177513666,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5392,my_sewer,2011-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.125,0.0,0.0,0.0 -5393,my_land,2011-01-06,1.4009640277112914,percolation,0.0,0.0,0.00016929507311595228,0.0,0.0,0.0,0.0,0.0,11.45244609392679,0.0,0.0,0.0 -5394,my_land,2011-01-06,4.116443468213749e-06,subsurface_runoff,0.0,0.0,4.895469015234212e-10,0.0,0.0,0.0,0.0,0.0,7.661155438234038,0.0,0.0,0.0 -5395,my_land,2011-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.392857143,0.0,0.0,0.0 -5396,my_groundwater,2011-01-06,16.98907128063452,tank,0.0,0.0,0.001802013509629323,0.0,0.0,0.0,0.0,0.0,11.11893472776739,0.0,0.0,0.0 -5397,my_reservoir,2011-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5398,gw1,2011-01-06,262.08964230336426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5399,gw2,2011-01-06,262.91035769663574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5400,my_sewer,2011-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -5401,my_land,2011-01-07,1.4890016592108484,percolation,0.0,0.0,0.00018339711350623506,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 -5402,my_land,2011-01-07,0.03158340527825288,subsurface_runoff,0.0,0.0,4.759015270882254e-06,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 -5403,my_land,2011-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4,0.0,0.0,0.0 -5404,my_groundwater,2011-01-07,16.97691042192401,tank,0.0,0.0,0.0018012419170944838,0.0,0.0,0.0,0.0,0.0,11.118620131524594,0.0,0.0,0.0 -5405,my_reservoir,2011-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5406,gw1,2011-01-07,262.0923780213418,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5407,gw2,2011-01-07,262.9076219786582,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5408,my_sewer,2011-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -5409,my_land,2011-01-08,1.4592216260266313,percolation,0.0,0.0,0.00017972917123611036,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 -5410,my_land,2011-01-08,0.025266724222602305,subsurface_runoff,0.0,0.0,3.807212216705803e-06,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 -5411,my_land,2011-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4,0.0,0.0,0.0 -5412,my_groundwater,2011-01-08,16.964173728970458,tank,0.0,0.0,0.001800397584716197,0.0,0.0,0.0,0.0,0.0,11.118312146614338,0.0,0.0,0.0 -5413,my_reservoir,2011-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5414,gw1,2011-01-08,262.0950955011995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5415,gw2,2011-01-08,262.9049044988005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5416,my_sewer,2011-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233552631578948,0.0,0.0,0.0 -5417,my_land,2011-01-09,1.4300371935060987,percolation,0.0,0.0,0.00017613458781138815,0.0,0.0,0.0,0.0,0.0,10.942737049017364,0.0,0.0,0.0 -5418,my_land,2011-01-09,0.020213379378081844,subsurface_runoff,0.0,0.0,3.0457697733646422e-06,0.0,0.0,0.0,0.0,0.0,4.913203032139506,0.0,0.0,0.0 -5419,my_land,2011-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.95,0.0,0.0,0.0 -5420,my_groundwater,2011-01-09,16.950874766087264,tank,0.0,0.0,0.0017994821877205668,0.0,0.0,0.0,0.0,0.0,11.118010613536566,0.0,0.0,0.0 -5421,my_reservoir,2011-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5422,gw1,2011-01-09,262.0977948645249,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5423,gw2,2011-01-09,262.9022051354751,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5424,my_sewer,2011-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -5425,my_land,2011-01-10,1.6086852906207683,percolation,0.0,0.0,0.0002033381466242339,0.0,0.0,0.0,0.0,0.0,10.25712617259147,0.0,0.0,0.0 -5426,my_land,2011-01-10,0.0725649459473067,subsurface_runoff,0.0,0.0,1.0797500327283144e-05,0.0,0.0,0.0,0.0,0.0,5.46324018463097,0.0,0.0,0.0 -5427,my_land,2011-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.225,0.0,0.0,0.0 -5428,my_groundwater,2011-01-10,16.941245815445395,tank,0.0,0.0,0.0017991228659504017,0.0,0.0,0.0,0.0,0.0,11.116346482847286,0.0,0.0,0.0 -5429,my_reservoir,2011-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5430,gw1,2011-01-10,262.1004762320947,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5431,gw2,2011-01-10,262.8995237679053,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5432,my_sewer,2011-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.432307692307693,0.0,0.0,0.0 -5433,my_land,2011-01-11,1.9255660480294825,percolation,0.0,0.0,0.00024942903362562275,0.0,0.0,0.0,0.0,0.0,9.459751678356323,0.0,0.0,0.0 -5434,my_land,2011-01-11,0.15303276307652008,subsurface_runoff,0.0,0.0,2.228634037988734e-05,0.0,0.0,0.0,0.0,0.0,5.708494760950144,0.0,0.0,0.0 -5435,my_land,2011-01-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.499999999999999,0.0,0.0,0.0 -5436,my_groundwater,2011-01-11,16.93809172402738,tank,0.0,0.0,0.0017997027212557617,0.0,0.0,0.0,0.0,0.0,11.112512703983603,0.0,0.0,0.0 -5437,my_reservoir,2011-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5438,gw1,2011-01-11,262.10313972388076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5439,gw2,2011-01-11,262.89686027611924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5440,my_sewer,2011-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.640435292754294,0.0,0.0,0.0 -5441,my_land,2011-01-12,2.418083408464171,percolation,0.0,0.0,0.00031718298945727675,0.0,0.0,0.0,0.0,0.0,8.71905448134368,0.0,0.0,0.0 -5442,my_land,2011-01-12,0.2669238108408837,subsurface_runoff,0.0,0.0,3.762295978803681e-05,0.0,0.0,0.0,0.0,0.0,5.913355798665158,0.0,0.0,0.0 -5443,my_land,2011-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.707142857,0.0,0.0,0.0 -5444,my_groundwater,2011-01-12,16.944971764103904,tank,0.0,0.0,0.0018016604038808596,0.0,0.0,0.0,0.0,0.0,11.105559689991297,0.0,0.0,0.0 -5445,my_reservoir,2011-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5446,gw1,2011-01-12,262.1057854590549,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5447,gw2,2011-01-12,262.8942145409451,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5448,my_sewer,2011-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -5449,my_land,2011-01-13,2.7004532915477713,percolation,0.0,0.0,0.0003551042021405161,0.0,0.0,0.0,0.0,0.0,8.420444500933675,0.0,0.0,0.0 -5450,my_land,2011-01-13,0.30353402860546436,subsurface_runoff,0.0,0.0,4.214323108822126e-05,0.0,0.0,0.0,0.0,0.0,6.022322297327348,0.0,0.0,0.0 -5451,my_land,2011-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.914285714,0.0,0.0,0.0 -5452,my_groundwater,2011-01-13,16.957582848128723,tank,0.0,0.0,0.0018043851598433037,0.0,0.0,0.0,0.0,0.0,11.096855016852302,0.0,0.0,0.0 -5453,my_reservoir,2011-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5454,gw1,2011-01-13,262.10841355599456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5455,gw2,2011-01-13,262.89158644400544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5456,my_sewer,2011-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -5457,my_land,2011-01-14,2.715947670572316,percolation,0.0,0.0,0.00035733949666546903,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 -5458,my_land,2011-01-14,0.2617397248858681,subsurface_runoff,0.0,0.0,3.6255368154322116e-05,0.0,0.0,0.0,0.0,0.0,6.054705667010085,0.0,0.0,0.0 -5459,my_land,2011-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.121428571,0.0,0.0,0.0 -5460,my_groundwater,2011-01-14,16.970477825730764,tank,0.0,0.0,0.0018071486081258138,0.0,0.0,0.0,0.0,0.0,11.087972835755744,0.0,0.0,0.0 -5461,my_reservoir,2011-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5462,gw1,2011-01-14,262.1110241322879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5463,gw2,2011-01-14,262.8889758677121,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5464,my_sewer,2011-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.741759948615204,0.0,0.0,0.0 -5465,my_land,2011-01-15,2.6616287171608697,percolation,0.0,0.0,0.00035019270673215965,0.0,0.0,0.0,0.0,0.0,8.370543538792429,0.0,0.0,0.0 -5466,my_land,2011-01-15,0.20939177990869448,subsurface_runoff,0.0,0.0,2.9004294523457694e-05,0.0,0.0,0.0,0.0,0.0,6.054705667010085,0.0,0.0,0.0 -5467,my_land,2011-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.328571429,0.0,0.0,0.0 -5468,my_groundwater,2011-01-15,16.982234787194354,tank,0.0,0.0,0.0018097596595639752,0.0,0.0,0.0,0.0,0.0,11.079302663812108,0.0,0.0,0.0 -5469,my_reservoir,2011-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5470,gw1,2011-01-15,262.11361730473936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5471,gw2,2011-01-15,262.88638269526064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5472,my_sewer,2011-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 -5473,my_land,2011-01-16,2.938502221472754,percolation,0.0,0.0,0.0003867523480083621,0.0,0.0,0.0,0.0,0.0,8.196212197381252,0.0,0.0,0.0 -5474,my_land,2011-01-16,0.2573382072344662,subsurface_runoff,0.0,0.0,3.5057447975458845e-05,0.0,0.0,0.0,0.0,0.0,6.321380456137064,0.0,0.0,0.0 -5475,my_land,2011-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.535714286000001,0.0,0.0,0.0 -5476,my_groundwater,2011-01-16,16.99959870973492,tank,0.0,0.0,0.001813108433213807,0.0,0.0,0.0,0.0,0.0,11.069157420944,0.0,0.0,0.0 -5477,my_reservoir,2011-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5478,gw1,2011-01-16,262.1161931893744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5479,gw2,2011-01-16,262.8838068106256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5480,my_sewer,2011-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5481,my_land,2011-01-17,3.242504402068453,percolation,0.0,0.0,0.0004255417069683385,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5482,my_land,2011-01-17,0.30458409640666256,subsurface_runoff,0.0,0.0,4.070566067156262e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -5483,my_land,2011-01-17,3.530113127748304e-18,surface_runoff,0.0,0.0,4.309220126645879e-22,0.0,0.0,0.0,0.0,0.0,6.591504128355541,0.0,0.0,0.0 -5484,my_groundwater,2011-01-17,17.023107838288404,tank,0.0,0.0,0.0018172384754511993,0.0,0.0,0.0,0.0,0.0,11.057496523358662,0.0,0.0,0.0 -5485,my_reservoir,2011-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5486,gw1,2011-01-17,262.11875190144525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5487,gw2,2011-01-17,262.88124809855475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5488,my_sewer,2011-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5489,my_land,2011-01-18,3.177654314027084,percolation,0.0,0.0,0.00041703087282897173,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5490,my_land,2011-01-18,0.24366727712533004,subsurface_runoff,0.0,0.0,3.2564528537250094e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -5491,my_land,2011-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.591504128355541,0.0,0.0,0.0 -5492,my_groundwater,2011-01-18,17.045238031513946,tank,0.0,0.0,0.0018211849363165896,0.0,0.0,0.0,0.0,0.0,11.046127934508393,0.0,0.0,0.0 -5493,my_reservoir,2011-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5494,gw1,2011-01-18,262.1212935554356,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5495,gw2,2011-01-18,262.8787064445644,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5496,my_sewer,2011-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5497,my_land,2011-01-19,3.1141012277465423,percolation,0.0,0.0,0.0004086902553723923,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5498,my_land,2011-01-19,0.19493382170026402,subsurface_runoff,0.0,0.0,2.6051622829800075e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -5499,my_land,2011-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8,0.0,0.0,0.0 -5500,my_groundwater,2011-01-19,17.06601914,tank,0.0,0.0,0.0018249517398887362,0.0,0.0,0.0,0.0,0.0,11.035042514248005,0.0,0.0,0.0 -5501,my_reservoir,2011-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5502,gw1,2011-01-19,262.12381826506606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5503,gw2,2011-01-19,262.87618173493394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5504,my_sewer,2011-01-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5505,my_land,2011-01-20,3.0518192031916116,percolation,0.0,0.0,0.0004005164502649445,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5506,my_land,2011-01-20,0.15594705736021122,subsurface_runoff,0.0,0.0,2.084129826384006e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -5507,my_land,2011-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8,0.0,0.0,0.0 -5508,my_groundwater,2011-01-20,17.085480411643545,tank,0.0,0.0,0.0018285427311336938,0.0,0.0,0.0,0.0,0.0,11.02423148560609,0.0,0.0,0.0 -5509,my_reservoir,2011-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5510,gw1,2011-01-20,262.12632614329897,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5511,gw2,2011-01-20,262.87367385670103,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5512,my_sewer,2011-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5513,my_land,2011-01-21,2.990782819127779,percolation,0.0,0.0,0.0003925061212596456,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5514,my_land,2011-01-21,0.12475764588816898,subsurface_runoff,0.0,0.0,1.667303861107205e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 -5515,my_land,2011-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8,0.0,0.0,0.0 -5516,my_groundwater,2011-01-21,17.103650503718107,tank,0.0,0.0,0.001831961677488645,0.0,0.0,0.0,0.0,0.0,11.01368641692271,0.0,0.0,0.0 -5517,my_reservoir,2011-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5518,gw1,2011-01-21,262.12881730234363,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5519,gw2,2011-01-21,262.87118269765637,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5520,my_sewer,2011-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5521,my_land,2011-01-22,2.930967162745224,percolation,0.0,0.0,0.00038465599883445267,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5522,my_land,2011-01-22,0.09980611671053519,subsurface_runoff,0.0,0.0,1.333843088885764e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209512,0.0,0.0,0.0 -5523,my_land,2011-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0 -5524,my_groundwater,2011-01-22,17.12055749470041,tank,0.0,0.0,0.0018352122704140533,0.0,0.0,0.0,0.0,0.0,11.003399205033588,0.0,0.0,0.0 -5525,my_reservoir,2011-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5526,gw1,2011-01-22,262.13129185366137,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5527,gw2,2011-01-22,262.86870814633863,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5528,my_sewer,2011-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5529,my_land,2011-01-23,2.8723478194903196,percolation,0.0,0.0,0.00037696287885776364,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5530,my_land,2011-01-23,0.07984489336842815,subsurface_runoff,0.0,0.0,1.0670744711086112e-05,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -5531,my_land,2011-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0 -5532,my_groundwater,2011-01-23,17.136228895860427,tank,0.0,0.0,0.0018382981269147653,0.0,0.0,0.0,0.0,0.0,10.993362059429959,0.0,0.0,0.0 -5533,my_reservoir,2011-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5534,gw1,2011-01-23,262.1337499079703,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5535,gw2,2011-01-23,262.8662500920297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5536,my_sewer,2011-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5537,my_land,2011-01-24,2.814900863100513,percolation,0.0,0.0,0.00036942362128060836,0.0,0.0,0.0,0.0,0.0,8.061880421323314,0.0,0.0,0.0 -5538,my_land,2011-01-24,0.06387591469474252,subsurface_runoff,0.0,0.0,8.53659576886889e-06,0.0,0.0,0.0,0.0,0.0,6.539869990209513,0.0,0.0,0.0 -5539,my_land,2011-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0 -5540,my_groundwater,2011-01-24,17.150691662619607,tank,0.0,0.0,0.0018412227910306908,0.0,0.0,0.0,0.0,0.0,10.983567487328624,0.0,0.0,0.0 -5541,my_reservoir,2011-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5542,gw1,2011-01-24,262.1361915752505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5543,gw2,2011-01-24,262.8638084247495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5544,my_sewer,2011-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5545,my_land,2011-01-25,2.775584386205893,percolation,0.0,0.0,0.0003643906596853383,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5546,my_land,2011-01-25,0.05572155906664851,subsurface_runoff,0.0,0.0,7.470231943079348e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5547,my_land,2011-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9,0.0,0.0,0.0 -5548,my_groundwater,2011-01-25,17.164317901325106,tank,0.0,0.0,0.0018440376867681371,0.0,0.0,0.0,0.0,0.0,10.97392077609062,0.0,0.0,0.0 -5549,my_reservoir,2011-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5550,gw1,2011-01-25,262.13861696474885,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5551,gw2,2011-01-25,262.86138303525115,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5552,my_sewer,2011-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5553,my_land,2011-01-26,2.720072698481775,percolation,0.0,0.0,0.0003571028464916315,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5554,my_land,2011-01-26,0.04457724725331881,subsurface_runoff,0.0,0.0,5.976185554463478e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5555,my_land,2011-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5556,my_groundwater,2011-01-26,17.1767800150766,tank,0.0,0.0,0.0018466971862119393,0.0,0.0,0.0,0.0,0.0,10.96450495616262,0.0,0.0,0.0 -5557,my_reservoir,2011-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5558,gw1,2011-01-26,262.14102618498384,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5559,gw2,2011-01-26,262.85897381501616,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5560,my_sewer,2011-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5561,my_land,2011-01-27,2.6656712445121395,percolation,0.0,0.0,0.0003499607895617989,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5562,my_land,2011-01-27,0.03566179780265505,subsurface_runoff,0.0,0.0,4.780948443570782e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5563,my_land,2011-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5564,my_groundwater,2011-01-27,17.18810351537362,tank,0.0,0.0,0.0018492046450339177,0.0,0.0,0.0,0.0,0.0,10.955313258872483,0.0,0.0,0.0 -5565,my_reservoir,2011-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5566,gw1,2011-01-27,262.1434193437506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5567,gw2,2011-01-27,262.8565806562494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5568,my_sewer,2011-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5569,my_land,2011-01-28,2.612357819621897,percolation,0.0,0.0,0.0003429615737705629,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5570,my_land,2011-01-28,0.02852943824212404,subsurface_runoff,0.0,0.0,3.824758754856626e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5571,my_land,2011-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5572,my_groundwater,2011-01-28,17.1983133979132,tank,0.0,0.0,0.0018515633511730907,0.0,0.0,0.0,0.0,0.0,10.94633916540861,0.0,0.0,0.0 -5573,my_reservoir,2011-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5574,gw1,2011-01-28,262.14579654812565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5575,gw2,2011-01-28,262.85420345187435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5576,my_sewer,2011-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5577,my_land,2011-01-29,2.560110663229459,percolation,0.0,0.0,0.0003361023422951516,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5578,my_land,2011-01-29,0.022823550593699234,subsurface_runoff,0.0,0.0,3.0598070038853006e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5579,my_land,2011-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5580,my_groundwater,2011-01-29,17.207434152919873,tank,0.0,0.0,0.0018537765261918806,0.0,0.0,0.0,0.0,0.0,10.937576395411106,0.0,0.0,0.0 -5581,my_reservoir,2011-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5582,gw1,2011-01-29,262.1481579044715,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5583,gw2,2011-01-29,262.8518420955285,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5584,my_sewer,2011-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5585,my_land,2011-01-30,2.5089084499648697,percolation,0.0,0.0,0.00032938029544924856,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5586,my_land,2011-01-30,0.018258840474959386,subsurface_runoff,0.0,0.0,2.4478456031082407e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5587,my_land,2011-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5588,my_groundwater,2011-01-30,17.215489775269,tank,0.0,0.0,0.0018558473266051892,0.0,0.0,0.0,0.0,0.0,10.929018896184386,0.0,0.0,0.0 -5589,my_reservoir,2011-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5590,gw1,2011-01-30,262.15050351844167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5591,gw2,2011-01-30,262.84949648155833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5592,my_sewer,2011-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5593,my_land,2011-01-31,2.4587302809655722,percolation,0.0,0.0,0.00032279268954026356,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5594,my_land,2011-01-31,0.01460707237996751,subsurface_runoff,0.0,0.0,1.9582764824865925e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5595,my_land,2011-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5596,my_groundwater,2011-01-31,17.222503774407627,tank,0.0,0.0,0.0018577788451828888,0.0,0.0,0.0,0.0,0.0,10.920660832492084,0.0,0.0,0.0 -5597,my_reservoir,2011-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5598,gw1,2011-01-31,262.1528334949854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5599,gw2,2011-01-31,262.8471665050146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5600,my_sewer,2011-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5601,my_land,2011-02-01,2.409555675346261,percolation,0.0,0.0,0.0003163368357494583,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5602,my_land,2011-02-01,0.011685657903974007,subsurface_runoff,0.0,0.0,1.566621185989274e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5603,my_land,2011-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5604,my_groundwater,2011-02-01,17.22849918407687,tank,0.0,0.0,0.0018595741122262599,0.0,0.0,0.0,0.0,0.0,10.912496576897897,0.0,0.0,0.0 -5605,my_reservoir,2011-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5606,gw1,2011-02-01,262.1551479383521,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5607,gw2,2011-02-01,262.8448520616479,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5608,my_sewer,2011-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5609,my_land,2011-02-02,2.3613645618393355,percolation,0.0,0.0,0.00031001009903446915,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5610,my_land,2011-02-02,0.009348526323179205,subsurface_runoff,0.0,0.0,1.2532969487914192e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5611,my_land,2011-02-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5612,my_groundwater,2011-02-02,17.233498571839835,tank,0.0,0.0,0.001861236096818896,0.0,0.0,0.0,0.0,0.0,10.904520700618534,0.0,0.0,0.0 -5613,my_reservoir,2011-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5614,gw1,2011-02-02,262.15744695209645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5615,gw2,2011-02-02,262.84255304790355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5616,my_sewer,2011-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5617,my_land,2011-02-03,2.314137270602549,percolation,0.0,0.0,0.0003038098970537798,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5618,my_land,2011-02-03,0.007478821058543365,subsurface_runoff,0.0,0.0,1.0026375590331354e-06,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5619,my_land,2011-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5620,my_groundwater,2011-02-03,17.23752404841893,tank,0.0,0.0,0.0018627677080525864,0.0,0.0,0.0,0.0,0.0,10.89672796485738,0.0,0.0,0.0 -5621,my_reservoir,2011-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5622,gw1,2011-02-03,262.15973063908245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5623,gw2,2011-02-03,262.84026936091755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5624,my_sewer,2011-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5625,my_land,2011-02-04,2.267854525190498,percolation,0.0,0.0,0.0002977336991127042,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5626,my_land,2011-02-04,0.005983056846834691,subsurface_runoff,0.0,0.0,8.021100472265083e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5627,my_land,2011-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5628,my_groundwater,2011-02-04,17.2405972768464,tank,0.0,0.0,0.001864171796228678,0.0,0.0,0.0,0.0,0.0,10.88911331258961,0.0,0.0,0.0 -5629,my_reservoir,2011-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5630,gw1,2011-02-04,262.16199910148856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5631,gw2,2011-02-04,262.83800089851144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5632,my_sewer,2011-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5633,my_land,2011-02-05,2.222497434686688,percolation,0.0,0.0,0.0002917790251304501,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5634,my_land,2011-02-05,0.004786445477467753,subsurface_runoff,0.0,0.0,6.416880377812067e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508526,0.0,0.0,0.0 -5635,my_land,2011-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5636,my_groundwater,2011-02-05,17.242739481431837,tank,0.0,0.0,0.0018654511540354046,0.0,0.0,0.0,0.0,0.0,10.88167186077152,0.0,0.0,0.0 -5637,my_reservoir,2011-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5638,gw1,2011-02-05,262.164252440812,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5639,gw2,2011-02-05,262.835747559188,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5640,my_sewer,2011-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5641,my_land,2011-02-06,2.178047485992954,percolation,0.0,0.0,0.0002859434446278411,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5642,my_land,2011-02-06,0.0038291563819742025,subsurface_runoff,0.0,0.0,5.133504302249654e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5643,my_land,2011-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5644,my_groundwater,2011-02-06,17.24397145655026,tank,0.0,0.0,0.0018666085177016685,0.0,0.0,0.0,0.0,0.0,10.874398892948735,0.0,0.0,0.0 -5645,my_reservoir,2011-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5646,gw1,2011-02-06,262.16649075787325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5647,gw2,2011-02-06,262.83350924212675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5648,my_sewer,2011-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5649,my_land,2011-02-07,2.134486536273095,percolation,0.0,0.0,0.0002802245757352843,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5650,my_land,2011-02-07,0.003063325105579362,subsurface_runoff,0.0,0.0,4.106803441799723e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5651,my_land,2011-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5652,my_groundwater,2011-02-07,17.24431357525444,tank,0.0,0.0,0.0018676465681277399,0.0,0.0,0.0,0.0,0.0,10.867289852239603,0.0,0.0,0.0 -5653,my_reservoir,2011-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5654,gw1,2011-02-07,262.16871415282077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5655,gw2,2011-02-07,262.83128584717923,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5656,my_sewer,2011-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5657,my_land,2011-02-08,2.091796805547633,percolation,0.0,0.0,0.0002746200842205786,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5658,my_land,2011-02-08,0.0024506600844634895,subsurface_runoff,0.0,0.0,3.2854427534397786e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5659,my_land,2011-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5660,my_groundwater,2011-02-08,17.243785797714956,tank,0.0,0.0,0.0018685679319933395,0.0,0.0,0.0,0.0,0.0,10.860340334671756,0.0,0.0,0.0 -5661,my_reservoir,2011-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5662,gw1,2011-02-08,262.1709227251353,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5663,gw2,2011-02-08,262.8290772748647,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5664,my_sewer,2011-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.734226190625001,0.0,0.0,0.0 -5665,my_land,2011-02-09,2.0499608694366804,percolation,0.0,0.0,0.000269127682536167,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5666,my_land,2011-02-09,0.0019605280675707914,subsurface_runoff,0.0,0.0,2.6283542027518226e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5667,my_land,2011-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5668,my_groundwater,2011-02-09,17.242407679491343,tank,0.0,0.0,0.0018693751828435566,0.0,0.0,0.0,0.0,0.0,10.853546082851231,0.0,0.0,0.0 -5669,my_reservoir,2011-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5670,gw1,2011-02-09,262.1731165736344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5671,gw2,2011-02-09,262.8268834263656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5672,my_sewer,2011-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 -5673,my_land,2011-02-10,2.008961652047947,percolation,0.0,0.0,0.0002637451288854437,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5674,my_land,2011-02-10,0.001568422454056633,subsurface_runoff,0.0,0.0,2.102683362201458e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5675,my_land,2011-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5676,my_groundwater,2011-02-10,17.240198379637878,tank,0.0,0.0,0.0018700708421530443,0.0,0.0,0.0,0.0,0.0,10.846902979944906,0.0,0.0,0.0 -5677,my_reservoir,2011-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5678,gw1,2011-02-10,262.1752957964768,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5679,gw2,2011-02-10,262.8247042035232,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5680,my_sewer,2011-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 -5681,my_land,2011-02-11,1.968782419006988,percolation,0.0,0.0,0.0002584702263077348,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5682,my_land,2011-02-11,0.0012547379632453066,subsurface_runoff,0.0,0.0,1.6821466897611665e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5683,my_land,2011-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5684,my_groundwater,2011-02-11,17.23717666864714,tank,0.0,0.0,0.0018706573803689264,0.0,0.0,0.0,0.0,0.0,10.840407043958301,0.0,0.0,0.0 -5685,my_reservoir,2011-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5686,gw1,2011-02-11,262.177460491167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5687,gw2,2011-02-11,262.822539508833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5688,my_sewer,2011-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.0,0.0,0.0 -5689,my_land,2011-02-12,1.9294067706268483,percolation,0.0,0.0,0.00025330082178158015,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5690,my_land,2011-02-12,0.0010037903705962452,subsurface_runoff,0.0,0.0,1.3457173518089332e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5691,my_land,2011-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5692,my_groundwater,2011-02-12,17.233360936234714,tank,0.0,0.0,0.0018711372179328434,0.0,0.0,0.0,0.0,0.0,10.834054422291944,0.0,0.0,0.0 -5693,my_reservoir,2011-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5694,gw1,2011-02-12,262.1796107545592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5695,gw2,2011-02-12,262.8203892454408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5696,my_sewer,2011-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.249999999999999,0.0,0.0,0.0 -5697,my_land,2011-02-13,1.8908186352143113,percolation,0.0,0.0,0.0002482348053459486,0.0,0.0,0.0,0.0,0.0,8.053115784407968,0.0,0.0,0.0 -5698,my_land,2011-02-13,0.0008030322964769961,subsurface_runoff,0.0,0.0,1.0765738814471465e-07,0.0,0.0,0.0,0.0,0.0,6.547288275508527,0.0,0.0,0.0 -5699,my_land,2011-02-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.521428571,0.0,0.0,0.0 -5700,my_groundwater,2011-02-13,17.22876919896813,tank,0.0,0.0,0.001871512726282554,0.0,0.0,0.0,0.0,0.0,10.82784138656057,0.0,0.0,0.0 -5701,my_reservoir,2011-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5702,gw1,2011-02-13,262.1817466828621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5703,gw2,2011-02-13,262.8182533171379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5704,my_sewer,2011-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.250000000000001,0.0,0.0,0.0 -5705,my_land,2011-02-14,1.8911679796325882,percolation,0.0,0.0,0.00024898683058058725,0.0,0.0,0.0,0.0,0.0,8.044710711081628,0.0,0.0,0.0 -5706,my_land,2011-02-14,0.011027654986178394,subsurface_runoff,0.0,0.0,1.6416963435926809e-06,0.0,0.0,0.0,0.0,0.0,7.573171233723868,0.0,0.0,0.0 -5707,my_land,2011-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.275,0.0,0.0,0.0 -5708,my_groundwater,2011-02-14,17.224196052698943,tank,0.0,0.0,0.0018719026049465238,0.0,0.0,0.0,0.0,0.0,10.82162065346203,0.0,0.0,0.0 -5709,my_reservoir,2011-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5710,gw1,2011-02-14,262.18386837164303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5711,gw2,2011-02-14,262.81613162835697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5712,my_sewer,2011-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 -5713,my_land,2011-02-15,1.9968043349620173,percolation,0.0,0.0,0.00026510661717835587,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 -5714,my_land,2011-02-15,0.0478587811105973,subsurface_runoff,0.0,0.0,7.054723934569486e-06,0.0,0.0,0.0,0.0,0.0,7.6350665762223295,0.0,0.0,0.0 -5715,my_land,2011-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000001,0.0,0.0,0.0 -5716,my_groundwater,2011-02-15,17.22178479367178,tank,0.0,0.0,0.0018726196617124312,0.0,0.0,0.0,0.0,0.0,10.814999113295896,0.0,0.0,0.0 -5717,my_reservoir,2011-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5718,gw1,2011-02-15,262.1859759158321,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5719,gw2,2011-02-15,262.8140240841679,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5720,my_sewer,2011-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 -5721,my_land,2011-02-16,1.9568682482627768,percolation,0.0,0.0,0.0002598044848347888,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 -5722,my_land,2011-02-16,0.038287024888477836,subsurface_runoff,0.0,0.0,5.643779147655589e-06,0.0,0.0,0.0,0.0,0.0,7.63506657622233,0.0,0.0,0.0 -5723,my_land,2011-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.99375,0.0,0.0,0.0 -5724,my_groundwater,2011-02-16,17.21856657817009,tank,0.0,0.0,0.0018732269895708584,0.0,0.0,0.0,0.0,0.0,10.808524110447275,0.0,0.0,0.0 -5725,my_reservoir,2011-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5726,gw1,2011-02-16,262.18806940972655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5727,gw2,2011-02-16,262.81193059027345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5728,my_sewer,2011-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.134375000000002,0.0,0.0,0.0 -5729,my_land,2011-02-17,1.9177308832975213,percolation,0.0,0.0,0.000254608395138093,0.0,0.0,0.0,0.0,0.0,8.016284939965969,0.0,0.0,0.0 -5730,my_land,2011-02-17,0.03062961991078227,subsurface_runoff,0.0,0.0,4.5150233181244716e-06,0.0,0.0,0.0,0.0,0.0,7.63506657622233,0.0,0.0,0.0 -5731,my_land,2011-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.99375,0.0,0.0,0.0 -5732,my_groundwater,2011-02-17,17.214559683277507,tank,0.0,0.0,0.0018737270215693853,0.0,0.0,0.0,0.0,0.0,10.802191814804383,0.0,0.0,0.0 -5733,my_reservoir,2011-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5734,gw1,2011-02-17,262.19014894699507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5735,gw2,2011-02-17,262.80985105300493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5736,my_sewer,2011-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -5737,my_land,2011-02-18,2.101785447153748,percolation,0.0,0.0,0.0002816526452847823,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 -5738,my_land,2011-02-18,0.08502320110472834,subsurface_runoff,0.0,0.0,1.2356622205370632e-05,0.0,0.0,0.0,0.0,0.0,7.392386739958317,0.0,0.0,0.0 -5739,my_land,2011-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -5740,my_groundwater,2011-02-18,17.214309630672084,tank,0.0,0.0,0.0018747763471516164,0.0,0.0,0.0,0.0,0.0,10.795077476360593,0.0,0.0,0.0 -5741,my_reservoir,2011-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5742,gw1,2011-02-18,262.19221462068174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5743,gw2,2011-02-18,262.80778537931826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5744,my_sewer,2011-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7125,0.0,0.0,0.0 -5745,my_land,2011-02-19,2.059749738210673,percolation,0.0,0.0,0.0002760195923790866,0.0,0.0,0.0,0.0,0.0,7.939866925843733,0.0,0.0,0.0 -5746,my_land,2011-02-19,0.06801856088378268,subsurface_runoff,0.0,0.0,9.885297764296506e-06,0.0,0.0,0.0,0.0,0.0,7.392386739958317,0.0,0.0,0.0 -5747,my_land,2011-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.571875,0.0,0.0,0.0 -5748,my_groundwater,2011-02-19,17.21320447626612,tank,0.0,0.0,0.0018757083765571687,0.0,0.0,0.0,0.0,0.0,10.788122307272895,0.0,0.0,0.0 -5749,my_reservoir,2011-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5750,gw1,2011-02-19,262.1942665232105,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5751,gw2,2011-02-19,262.8057334767895,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5752,my_sewer,2011-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 -5753,my_land,2011-02-20,2.1215940397205144,percolation,0.0,0.0,0.00028547082934016335,0.0,0.0,0.0,0.0,0.0,7.897823496019973,0.0,0.0,0.0 -5754,my_land,2011-02-20,0.08245275245506825,subsurface_runoff,0.0,0.0,1.1982150812432714e-05,0.0,0.0,0.0,0.0,0.0,7.284183384259057,0.0,0.0,0.0 -5755,my_land,2011-02-20,9.145231902982681e-19,surface_runoff,0.0,0.0,1.1163613162820656e-22,0.0,0.0,0.0,0.0,0.0,7.059355804968571,0.0,0.0,0.0 -5756,my_groundwater,2011-02-20,17.21336105802691,tank,0.0,0.0,0.0018768304760702005,0.0,0.0,0.0,0.0,0.0,10.780870334299966,0.0,0.0,0.0 -5757,my_reservoir,2011-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5758,gw1,2011-02-20,262.1963047463891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5759,gw2,2011-02-20,262.8036952536109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5760,my_sewer,2011-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.43125,0.0,0.0,0.0 -5761,my_land,2011-02-21,2.1736355614416225,percolation,0.0,0.0,0.00029346697155137455,0.0,0.0,0.0,0.0,0.0,7.856790098377519,0.0,0.0,0.0 -5762,my_land,2011-02-21,0.09166925026759694,subsurface_runoff,0.0,0.0,1.3315124404507936e-05,0.0,0.0,0.0,0.0,0.0,7.191513690246988,0.0,0.0,0.0 -5763,my_land,2011-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.290625000000001,0.0,0.0,0.0 -5764,my_groundwater,2011-02-21,17.214576665025472,tank,0.0,0.0,0.0018781125489437495,0.0,0.0,0.0,0.0,0.0,10.773354166050478,0.0,0.0,0.0 -5765,my_reservoir,2011-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5766,gw1,2011-02-21,262.1983293814132,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5767,gw2,2011-02-21,262.8016706185868,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5768,my_sewer,2011-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 -5769,my_land,2011-02-22,2.2481679554330385,percolation,0.0,0.0,0.00030462663314262324,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 -5770,my_land,2011-02-22,0.10544563292707035,subsurface_runoff,0.0,0.0,1.5285841298375383e-05,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 -5771,my_land,2011-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15,0.0,0.0,0.0 -5772,my_groundwater,2011-02-22,17.217306499598507,tank,0.0,0.0,0.001879618595460365,0.0,0.0,0.0,0.0,0.0,10.765458296536108,0.0,0.0,0.0 -5773,my_reservoir,2011-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5774,gw1,2011-02-22,262.20034051887046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5775,gw2,2011-02-22,262.79965948112954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5776,my_sewer,2011-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 -5777,my_land,2011-02-23,2.203204596324378,percolation,0.0,0.0,0.00029853410047977076,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 -5778,my_land,2011-02-23,0.08435650634165628,subsurface_runoff,0.0,0.0,1.2228673038700307e-05,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 -5779,my_land,2011-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.035714286,0.0,0.0,0.0 -5780,my_groundwater,2011-02-23,17.2191141840604,tank,0.0,0.0,0.0018809968503029095,0.0,0.0,0.0,0.0,0.0,10.757741723271955,0.0,0.0,0.0 -5781,my_reservoir,2011-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5782,gw1,2011-02-23,262.20233824874464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5783,gw2,2011-02-23,262.79766175125536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5784,my_sewer,2011-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.150000000000001,0.0,0.0,0.0 -5785,my_land,2011-02-24,2.1591405043978904,percolation,0.0,0.0,0.00029256341847017537,0.0,0.0,0.0,0.0,0.0,7.802922295869453,0.0,0.0,0.0 -5786,my_land,2011-02-24,0.06748520507332503,subsurface_runoff,0.0,0.0,9.782938430960245e-06,0.0,0.0,0.0,0.0,0.0,7.0815873451864535,0.0,0.0,0.0 -5787,my_land,2011-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.035714286,0.0,0.0,0.0 -5788,my_groundwater,2011-02-24,17.22002033029692,tank,0.0,0.0,0.0018822501134817236,0.0,0.0,0.0,0.0,0.0,10.750199575887871,0.0,0.0,0.0 -5789,my_reservoir,2011-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5790,gw1,2011-02-24,262.2043226604197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5791,gw2,2011-02-24,262.7956773395803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5792,my_sewer,2011-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.807142857,0.0,0.0,0.0 -5793,my_land,2011-02-25,2.517360701952956,percolation,0.0,0.0,0.0003423634520732273,0.0,0.0,0.0,0.0,0.0,7.591176375240516,0.0,0.0,0.0 -5794,my_land,2011-02-25,0.1632134722608432,subsurface_runoff,0.0,0.0,2.2969562165844515e-05,0.0,0.0,0.0,0.0,0.0,6.675633727610125,0.0,0.0,0.0 -5795,my_land,2011-02-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.8071428570000005,0.0,0.0,0.0 -5796,my_groundwater,2011-02-25,17.228216550903788,tank,0.0,0.0,0.0018845140299009386,0.0,0.0,0.0,0.0,0.0,10.740802888777285,0.0,0.0,0.0 -5797,my_reservoir,2011-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5798,gw1,2011-02-25,262.2062938426835,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5799,gw2,2011-02-25,262.7937061573165,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5800,my_sewer,2011-02-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.807142856999999,0.0,0.0,0.0 -5801,my_land,2011-02-26,2.5588419322389298,percolation,0.0,0.0,0.0003482624864966066,0.0,0.0,0.0,0.0,0.0,7.548870210768758,0.0,0.0,0.0 -5802,my_land,2011-02-26,0.15555810959779917,subsurface_runoff,0.0,0.0,2.1844031627871223e-05,0.0,0.0,0.0,0.0,0.0,6.633333668896533,0.0,0.0,0.0 -5803,my_land,2011-02-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.692857143,0.0,0.0,0.0 -5804,my_groundwater,2011-02-26,17.237236720289964,tank,0.0,0.0,0.0018868923740155816,0.0,0.0,0.0,0.0,0.0,10.731156908704921,0.0,0.0,0.0 -5805,my_reservoir,2011-02-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5806,gw1,2011-02-26,262.2082518837323,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5807,gw2,2011-02-26,262.7917481162677,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5808,my_sewer,2011-02-27,3.469446951953614e-18,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5809,my_land,2011-02-27,2.728107447517119,percolation,0.0,0.0,0.00037149024488413124,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -5810,my_land,2011-02-27,0.1844308016708836,subsurface_runoff,0.0,0.0,2.5691009824053912e-05,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5811,my_land,2011-02-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.578571429,0.0,0.0,0.0 -5812,my_groundwater,2011-02-27,17.24968010152798,tank,0.0,0.0,0.0018897376230656837,0.0,0.0,0.0,0.0,0.0,10.720588509148394,0.0,0.0,0.0 -5813,my_reservoir,2011-02-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5814,gw1,2011-02-27,262.2101968711741,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5815,gw2,2011-02-27,262.7898031288259,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5816,my_sewer,2011-02-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5817,my_land,2011-02-28,2.6735452985667765,percolation,0.0,0.0,0.0003640604399864486,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -5818,my_land,2011-02-28,0.1475446413367069,subsurface_runoff,0.0,0.0,2.055280785924313e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5819,my_land,2011-02-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 -5820,my_groundwater,2011-02-28,17.260981644852126,tank,0.0,0.0,0.001892424509393458,0.0,0.0,0.0,0.0,0.0,10.710271582106568,0.0,0.0,0.0 -5821,my_reservoir,2011-02-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5822,gw1,2011-02-28,262.2121288920329,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5823,gw2,2011-02-28,262.7878711079671,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5824,my_sewer,2011-03-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5825,my_land,2011-03-01,2.620074392595441,percolation,0.0,0.0,0.00035677923118671966,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -5826,my_land,2011-03-01,0.11803571306936551,subsurface_runoff,0.0,0.0,1.6442246287394504e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5827,my_land,2011-03-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 -5828,my_groundwater,2011-03-01,17.271166419446402,tank,0.0,0.0,0.001894956453897704,0.0,0.0,0.0,0.0,0.0,10.70019881678128,0.0,0.0,0.0 -5829,my_reservoir,2011-03-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5830,gw1,2011-03-01,262.2140480327527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5831,gw2,2011-03-01,262.7859519672473,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5832,my_sewer,2011-03-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5833,my_land,2011-03-02,2.567672904743532,percolation,0.0,0.0,0.0003496436465629853,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5834,my_land,2011-03-02,0.09442857045549241,subsurface_runoff,0.0,0.0,1.3153797029915602e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5835,my_land,2011-03-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 -5836,my_groundwater,2011-03-02,17.280258987530065,tank,0.0,0.0,0.001897336808425135,0.0,0.0,0.0,0.0,0.0,10.690363169646886,0.0,0.0,0.0 -5837,my_reservoir,2011-03-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5838,gw1,2011-03-02,262.21595437920104,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5839,gw2,2011-03-02,262.78404562079896,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5840,my_sewer,2011-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5841,my_land,2011-03-03,2.5163194466486614,percolation,0.0,0.0,0.0003426507736317256,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5842,my_land,2011-03-03,0.07554285636439392,subsurface_runoff,0.0,0.0,1.0523037623932482e-05,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5843,my_land,2011-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 -5844,my_groundwater,2011-03-03,17.28828341451087,tank,0.0,0.0,0.0018995688571530037,0.0,0.0,0.0,0.0,0.0,10.68075785236592,0.0,0.0,0.0 -5845,my_reservoir,2011-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5846,gw1,2011-03-03,262.21784801667303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5847,gw2,2011-03-03,262.78215198332697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5848,my_sewer,2011-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5849,my_land,2011-03-04,2.4659930577156883,percolation,0.0,0.0,0.00033579775815909105,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5850,my_land,2011-03-04,0.06043428509151514,subsurface_runoff,0.0,0.0,8.418430099145985e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5851,my_land,2011-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.464285714,0.0,0.0,0.0 -5852,my_groundwater,2011-03-04,17.295263278935234,tank,0.0,0.0,0.001901655817944074,0.0,0.0,0.0,0.0,0.0,10.671376320356659,0.0,0.0,0.0 -5853,my_reservoir,2011-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5854,gw1,2011-03-04,262.21972902989523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5855,gw2,2011-03-04,262.78027097010477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5856,my_sewer,2011-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5857,my_land,2011-03-05,2.4166731965613746,percolation,0.0,0.0,0.00032908180299590924,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5858,my_land,2011-03-05,0.048347428073212115,subsurface_runoff,0.0,0.0,6.734744079316788e-06,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5859,my_land,2011-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5860,my_groundwater,2011-03-05,17.301221682239323,tank,0.0,0.0,0.0019036008436744876,0.0,0.0,0.0,0.0,0.0,10.662212261971984,0.0,0.0,0.0 -5861,my_reservoir,2011-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5862,gw1,2011-03-05,262.2215975030293,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5863,gw2,2011-03-05,262.7784024969707,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5864,my_sewer,2011-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5865,my_land,2011-03-06,2.368339732630147,percolation,0.0,0.0,0.00032250016693599105,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5866,my_land,2011-03-06,0.03867794245856969,subsurface_runoff,0.0,0.0,5.387795263453431e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5867,my_land,2011-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5868,my_groundwater,2011-03-06,17.306181258305127,tank,0.0,0.0,0.0019054070235350697,0.0,0.0,0.0,0.0,0.0,10.653259588251618,0.0,0.0,0.0 -5869,my_reservoir,2011-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5870,gw1,2011-03-06,262.22345351967573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5871,gw2,2011-03-06,262.77654648032427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5872,my_sewer,2011-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5873,my_land,2011-03-07,2.320972937977544,percolation,0.0,0.0,0.0003160501635972712,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5874,my_land,2011-03-07,0.030942353966855754,subsurface_runoff,0.0,0.0,4.310236210762744e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5875,my_land,2011-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5876,my_groundwater,2011-03-07,17.310164182825336,tank,0.0,0.0,0.001907077384306605,0.0,0.0,0.0,0.0,0.0,10.644512423212639,0.0,0.0,0.0 -5877,my_reservoir,2011-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5878,gw1,2011-03-07,262.2252971628779,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5879,gw2,2011-03-07,262.7747028371221,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5880,my_sewer,2011-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5881,my_land,2011-03-08,2.274553479217993,percolation,0.0,0.0,0.0003097291603253258,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5882,my_land,2011-03-08,0.024753883173484603,subsurface_runoff,0.0,0.0,3.4481889686101954e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5883,my_land,2011-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5884,my_groundwater,2011-03-08,17.313192182480925,tank,0.0,0.0,0.001908614891609604,0.0,0.0,0.0,0.0,0.0,10.635965094645497,0.0,0.0,0.0 -5885,my_reservoir,2011-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5886,gw1,2011-03-08,262.2271285151254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5887,gw2,2011-03-08,262.7728714848746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5888,my_sewer,2011-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5889,my_land,2011-03-09,2.229062409633633,percolation,0.0,0.0,0.00030353457711881926,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -5890,my_land,2011-03-09,0.019803106538787682,subsurface_runoff,0.0,0.0,2.7585511748881563e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5891,my_land,2011-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5892,my_groundwater,2011-03-09,17.315286543935123,tank,0.0,0.0,0.0019100224511290702,0.0,0.0,0.0,0.0,0.0,10.627612125385108,0.0,0.0,0.0 -5893,my_reservoir,2011-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5894,gw1,2011-03-09,262.2289476583579,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5895,gw2,2011-03-09,262.7710523416421,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5896,my_sewer,2011-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5897,my_land,2011-03-10,2.1844811614409605,percolation,0.0,0.0,0.0002974638855764429,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5898,my_land,2011-03-10,0.015842485231030146,subsurface_runoff,0.0,0.0,2.206840939910525e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5899,my_land,2011-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5900,my_groundwater,2011-03-10,17.31646812264748,tank,0.0,0.0,0.0019113029098147682,0.0,0.0,0.0,0.0,0.0,10.619448225028576,0.0,0.0,0.0 -5901,my_reservoir,2011-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5902,gw1,2011-03-10,262.2307546739689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5903,gw2,2011-03-10,262.7692453260311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5904,my_sewer,2011-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5905,my_land,2011-03-11,2.140791538212141,percolation,0.0,0.0,0.00029151460786491404,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5906,my_land,2011-03-11,0.012673988184824117,subsurface_runoff,0.0,0.0,1.76547275192842e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5907,my_land,2011-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5908,my_groundwater,2011-03-11,17.316757351511605,tank,0.0,0.0,0.0019124590570574812,0.0,0.0,0.0,0.0,0.0,10.611468282073128,0.0,0.0,0.0 -5909,my_reservoir,2011-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5910,gw1,2011-03-11,262.2325496428091,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5911,gw2,2011-03-11,262.7674503571909,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5912,my_sewer,2011-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5913,my_land,2011-03-12,2.0979757074478984,percolation,0.0,0.0,0.0002856843157076158,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5914,my_land,2011-03-12,0.010139190547859294,subsurface_runoff,0.0,0.0,1.412378201542736e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5915,my_land,2011-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5916,my_groundwater,2011-03-12,17.31617424932016,tank,0.0,0.0,0.0019134936258417424,0.0,0.0,0.0,0.0,0.0,10.603667356449526,0.0,0.0,0.0 -5917,my_reservoir,2011-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5918,gw1,2011-03-12,262.23433264519036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5919,gw2,2011-03-12,262.76566735480964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5920,my_sewer,2011-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5921,my_land,2011-03-13,2.0560161932989405,percolation,0.0,0.0,0.00027997062939346344,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5922,my_land,2011-03-13,0.008111352438287435,subsurface_runoff,0.0,0.0,1.1299025612341888e-06,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5923,my_land,2011-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5924,my_groundwater,2011-03-13,17.314738429060444,tank,0.0,0.0,0.001914409293875505,0.0,0.0,0.0,0.0,0.0,10.596040672427948,0.0,0.0,0.0 -5925,my_reservoir,2011-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5926,gw1,2011-03-13,262.2361037608891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5927,gw2,2011-03-13,262.7638962391109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5928,my_sewer,2011-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5929,my_land,2011-03-14,2.0148958694329617,percolation,0.0,0.0,0.0002743712168055942,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5930,my_land,2011-03-14,0.006489081950629948,subsurface_runoff,0.0,0.0,9.03922048987351e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5931,my_land,2011-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5932,my_groundwater,2011-03-14,17.312469106044105,tank,0.0,0.0,0.0019152086846972159,0.0,0.0,0.0,0.0,0.0,10.588583611874776,0.0,0.0,0.0 -5933,my_reservoir,2011-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5934,gw1,2011-03-14,262.2378630691498,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5935,gw2,2011-03-14,262.7621369308502,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5936,my_sewer,2011-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5937,my_land,2011-03-15,1.9745979520443024,percolation,0.0,0.0,0.0002688837924694823,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5938,my_land,2011-03-15,0.005191265560503958,subsurface_runoff,0.0,0.0,7.231376391898808e-07,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -5939,my_land,2011-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5940,my_groundwater,2011-03-15,17.309385105874185,tank,0.0,0.0,0.0019158943687607444,0.0,0.0,0.0,0.0,0.0,10.581291707840194,0.0,0.0,0.0 -5941,my_reservoir,2011-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5942,gw1,2011-03-15,262.2396106486888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5943,gw2,2011-03-15,262.7603893513112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5944,my_sewer,2011-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5945,my_land,2011-03-16,1.9351059930034165,percolation,0.0,0.0,0.0002635061166200927,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5946,my_land,2011-03-16,0.004153012448403166,subsurface_runoff,0.0,0.0,5.785101113519047e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5947,my_land,2011-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5948,my_groundwater,2011-03-16,17.305504872252783,tank,0.0,0.0,0.0019164688644986087,0.0,0.0,0.0,0.0,0.0,10.574160638457801,0.0,0.0,0.0 -5949,my_reservoir,2011-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5950,gw1,2011-03-16,262.2413465776976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5951,gw2,2011-03-16,262.7586534223024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5952,my_sewer,2011-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5953,my_land,2011-03-17,1.8964038731433481,percolation,0.0,0.0,0.00025823599428769086,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5954,my_land,2011-03-17,0.003322409958722533,subsurface_runoff,0.0,0.0,4.628080890815238e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5955,my_land,2011-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5956,my_groundwater,2011-03-17,17.30084647463257,tank,0.0,0.0,0.0019169346393639332,0.0,0.0,0.0,0.0,0.0,10.567186221138613,0.0,0.0,0.0 -5957,my_reservoir,2011-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5958,gw1,2011-03-17,262.24307093384624,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5959,gw2,2011-03-17,262.75692906615376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5960,my_sewer,2011-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5961,my_land,2011-03-18,1.8584757956804812,percolation,0.0,0.0,0.00025307127440193705,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5962,my_land,2011-03-18,0.0026579279669780263,subsurface_runoff,0.0,0.0,3.70246471265219e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5963,my_land,2011-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5964,my_groundwater,2011-03-18,17.295427615715198,tank,0.0,0.0,0.001917294110851563,0.0,0.0,0.0,0.0,0.0,10.560364407042986,0.0,0.0,0.0 -5965,my_reservoir,2011-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5966,gw1,2011-03-18,262.2447837942873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5967,gw2,2011-03-18,262.7552162057127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5968,my_sewer,2011-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5969,my_land,2011-03-19,1.8213062797668715,percolation,0.0,0.0,0.0002480098489138983,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5970,my_land,2011-03-19,0.002126342373582421,subsurface_runoff,0.0,0.0,2.961971770121752e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5971,my_land,2011-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5972,my_groundwater,2011-03-19,17.289265638799737,tank,0.0,0.0,0.0019175496474987525,0.0,0.0,0.0,0.0,0.0,10.55369127581507,0.0,0.0,0.0 -5973,my_reservoir,2011-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5974,gw1,2011-03-19,262.2464852356587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5975,gw2,2011-03-19,262.7535147643413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5976,my_sewer,2011-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5977,my_land,2011-03-20,1.784880154171534,percolation,0.0,0.0,0.00024304965193562035,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5978,my_land,2011-03-20,0.0017010738988659368,subsurface_runoff,0.0,0.0,2.3695774160974014e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5979,my_land,2011-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5980,my_groundwater,2011-03-20,17.282377534984086,tank,0.0,0.0,0.0019177035698658379,0.0,0.0,0.0,0.0,0.0,10.547163030565285,0.0,0.0,0.0 -5981,my_reservoir,2011-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5982,gw1,2011-03-20,262.24817533408765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5983,gw2,2011-03-20,262.75182466591235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5984,my_sewer,2011-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5985,my_land,2011-03-21,1.7491825510881034,percolation,0.0,0.0,0.00023818865889690794,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -5986,my_land,2011-03-21,0.0013608591190927494,subsurface_runoff,0.0,0.0,1.8956619328779213e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5987,my_land,2011-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5988,my_groundwater,2011-03-21,17.27477995022235,tank,0.0,0.0,0.001917758151497289,0.0,0.0,0.0,0.0,0.0,10.540775993087312,0.0,0.0,0.0 -5989,my_reservoir,2011-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5990,gw1,2011-03-21,262.2498541651937,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5991,gw2,2011-03-21,262.7501458348063,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5992,my_sewer,2011-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -5993,my_land,2011-03-22,1.7141989000663413,percolation,0.0,0.0,0.00023342488571896977,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -5994,my_land,2011-03-22,0.0010886872952741995,subsurface_runoff,0.0,0.0,1.516529546302337e-07,0.0,0.0,0.0,0.0,0.0,6.5275197458092284,0.0,0.0,0.0 -5995,my_land,2011-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -5996,my_groundwater,2011-03-22,17.266489192241,tank,0.0,0.0,0.0019177156198635391,0.0,0.0,0.0,0.0,0.0,10.534526599296854,0.0,0.0,0.0 -5997,my_reservoir,2011-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5998,gw1,2011-03-22,262.2515218040924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5999,gw2,2011-03-22,262.7484781959076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6000,my_sewer,2011-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6001,my_land,2011-03-23,1.6799149220650145,percolation,0.0,0.0,0.0002287563880045904,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6002,my_land,2011-03-23,0.0008709498362193596,subsurface_runoff,0.0,0.0,1.2132236370418695e-07,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6003,my_land,2011-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6004,my_groundwater,2011-03-23,17.25752123731672,tank,0.0,0.0,0.001917578157283974,0.0,0.0,0.0,0.0,0.0,10.528411394880244,0.0,0.0,0.0 -6005,my_reservoir,2011-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6006,gw1,2011-03-23,262.2531783253985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6007,gw2,2011-03-23,262.7468216746015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6008,my_sewer,2011-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6009,my_land,2011-03-24,1.6463166236237141,percolation,0.0,0.0,0.00022418126024449859,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6010,my_land,2011-03-24,0.0006967598689754876,subsurface_runoff,0.0,0.0,9.705789096334957e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6011,my_land,2011-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6012,my_groundwater,2011-03-24,17.247891736918625,tank,0.0,0.0,0.0019173479018314555,0.0,0.0,0.0,0.0,0.0,10.522427031141714,0.0,0.0,0.0 -6013,my_reservoir,2011-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6014,gw1,2011-03-24,262.25482380322916,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6015,gw2,2011-03-24,262.74517619677084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6016,my_sewer,2011-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6017,my_land,2011-03-25,1.6133902911512399,percolation,0.0,0.0,0.0002196976350396086,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6018,my_land,2011-03-25,0.0005574078951803901,subsurface_runoff,0.0,0.0,7.764631277067965e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6019,my_land,2011-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6020,my_groundwater,2011-03-25,17.237616024217623,tank,0.0,0.0,0.0019170269482187547,0.0,0.0,0.0,0.0,0.0,10.516570261038764,0.0,0.0,0.0 -6021,my_reservoir,2011-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6022,gw1,2011-03-25,262.2564583112076,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6023,gw2,2011-03-25,262.7435416887924,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6024,my_sewer,2011-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6025,my_land,2011-03-26,1.581122485328215,percolation,0.0,0.0,0.00021530368233881644,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6026,my_land,2011-03-26,0.0004459263161443121,subsurface_runoff,0.0,0.0,6.211705021654372e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809228,0.0,0.0,0.0 -6027,my_land,2011-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6028,my_groundwater,2011-03-26,17.226709120465546,tank,0.0,0.0,0.001916617348667248,0.0,0.0,0.0,0.0,0.0,10.510837935395772,0.0,0.0,0.0 -6029,my_reservoir,2011-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6030,gw1,2011-03-26,262.2580819224662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6031,gw2,2011-03-26,262.7419180775338,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6032,my_sewer,2011-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6033,my_land,2011-03-27,1.5495000356216508,percolation,0.0,0.0,0.00021099760869204012,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6034,my_land,2011-03-27,0.0003567410529154497,subsurface_runoff,0.0,0.0,4.969364017323497e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6035,my_land,2011-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6036,my_groundwater,2011-03-27,17.21518574124668,tank,0.0,0.0,0.0019161211137582394,0.0,0.0,0.0,0.0,0.0,10.505226999286524,0.0,0.0,0.0 -6037,my_reservoir,2011-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6038,gw1,2011-03-27,262.25969470964975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6039,gw2,2011-03-27,262.74030529035025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6040,my_sewer,2011-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6041,my_land,2011-03-28,1.5185100349092178,percolation,0.0,0.0,0.00020677765651819932,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6042,my_land,2011-03-28,0.00028539284233235977,subsurface_runoff,0.0,0.0,3.9754912138587977e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6043,my_land,2011-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6044,my_groundwater,2011-03-28,17.203060302604214,tank,0.0,0.0,0.00191554021326725,0.0,0.0,0.0,0.0,0.0,10.49973448857691,0.0,0.0,0.0 -6045,my_reservoir,2011-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6046,gw1,2011-03-28,262.26129674491875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6047,gw2,2011-03-28,262.73870325508125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6048,my_sewer,2011-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.643877551285714,0.0,0.0,0.0 -6049,my_land,2011-03-29,1.4881398342110335,percolation,0.0,0.0,0.00020264210338783532,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6050,my_land,2011-03-29,0.00022831427386588784,subsurface_runoff,0.0,0.0,3.180392971087038e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6051,my_land,2011-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6052,my_groundwater,2011-03-29,17.190346927044143,tank,0.0,0.0,0.00191487657698162,0.0,0.0,0.0,0.0,0.0,10.49435752661957,0.0,0.0,0.0 -6053,my_reservoir,2011-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6054,gw1,2011-03-29,262.26288809995265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6055,gw2,2011-03-29,262.73711190004735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6056,my_sewer,2011-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6057,my_land,2011-03-30,1.4583770375268128,percolation,0.0,0.0,0.0001985892613200786,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6058,my_land,2011-03-30,0.00018265141909271028,subsurface_runoff,0.0,0.0,2.5443143768696304e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6059,my_land,2011-03-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6060,my_groundwater,2011-03-30,17.177059449419044,tank,0.0,0.0,0.0019141320955017532,0.0,0.0,0.0,0.0,0.0,10.489093321092698,0.0,0.0,0.0 -6061,my_reservoir,2011-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6062,gw1,2011-03-30,262.264468845953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6063,gw2,2011-03-30,262.735531154047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6064,my_sewer,2011-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6065,my_land,2011-03-31,1.4292094967762765,percolation,0.0,0.0,0.00019461747609367703,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6066,my_land,2011-03-31,0.00014612113527416823,subsurface_runoff,0.0,0.0,2.0354515014957044e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6067,my_land,2011-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6068,my_groundwater,2011-03-31,17.163211422694154,tank,0.0,0.0,0.0019133086210263346,0.0,0.0,0.0,0.0,0.0,10.483939160975735,0.0,0.0,0.0 -6069,my_reservoir,2011-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6070,gw1,2011-03-31,262.26603905364664,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6071,gw2,2011-03-31,262.73396094635336,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6072,my_sewer,2011-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6073,my_land,2011-04-01,1.400625306840751,percolation,0.0,0.0,0.00019072512657180348,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6074,my_land,2011-04-01,0.00011689690821933458,subsurface_runoff,0.0,0.0,1.6283612011965635e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6075,my_land,2011-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6076,my_groundwater,2011-04-01,17.148816123598106,tank,0.0,0.0,0.0019124079681218378,0.0,0.0,0.0,0.0,0.0,10.478892413655034,0.0,0.0,0.0 -6077,my_reservoir,2011-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6078,gw1,2011-04-01,262.267598793289,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6079,gw2,2011-04-01,262.732401206711,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6080,my_sewer,2011-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6081,my_land,2011-04-02,1.372612800703936,percolation,0.0,0.0,0.0001869106240403674,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6082,my_land,2011-04-02,9.351752657546766e-05,subsurface_runoff,0.0,0.0,1.3026889609572507e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6083,my_land,2011-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6084,my_groundwater,2011-04-02,17.133886558160583,tank,0.0,0.0,0.0019114319144766408,0.0,0.0,0.0,0.0,0.0,10.473950522153018,0.0,0.0,0.0 -6085,my_reservoir,2011-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6086,gw1,2011-04-02,262.26914813466703,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6087,gw2,2011-04-02,262.73085186533297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6088,my_sewer,2011-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6089,my_land,2011-04-03,1.3451605446898574,percolation,0.0,0.0,0.00018317241155956006,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6090,my_land,2011-04-03,7.481402126037412e-05,subsurface_runoff,0.0,0.0,1.0421511687658006e-08,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6091,my_land,2011-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6092,my_groundwater,2011-04-03,17.118435467139225,tank,0.0,0.0,0.0019103822016400544,0.0,0.0,0.0,0.0,0.0,10.469111002474701,0.0,0.0,0.0 -6093,my_reservoir,2011-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6094,gw1,2011-04-03,262.2706871471026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6095,gw2,2011-04-03,262.7293128528974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6096,my_sewer,2011-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6097,my_land,2011-04-04,1.3182573337960601,percolation,0.0,0.0,0.00017950896332836886,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6098,my_land,2011-04-04,5.9851217008299304e-05,subsurface_runoff,0.0,0.0,8.337209350126405e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6099,my_land,2011-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6100,my_groundwater,2011-04-04,17.10247533133794,tank,0.0,0.0,0.0019092605357465676,0.0,0.0,0.0,0.0,0.0,10.4643714410658,0.0,0.0,0.0 -6101,my_reservoir,2011-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6102,gw1,2011-04-04,262.27221589945526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6103,gw2,2011-04-04,262.72778410054474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6104,my_sewer,2011-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6105,my_land,2011-04-05,1.291892187120139,percolation,0.0,0.0,0.0001759187840618015,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6106,my_land,2011-04-05,4.7880973606639444e-05,subsurface_runoff,0.0,0.0,6.669767480101124e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6107,my_land,2011-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6108,my_groundwater,2011-04-05,17.086018376818824,tank,0.0,0.0,0.0019080685882256023,0.0,0.0,0.0,0.0,0.0,10.459729492376951,0.0,0.0,0.0 -6109,my_reservoir,2011-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6110,gw1,2011-04-05,262.2737344601256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6111,gw2,2011-04-05,262.7262655398744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6112,my_sewer,2011-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6113,my_land,2011-04-06,1.2660543433777363,percolation,0.0,0.0,0.00017240040838056546,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6114,my_land,2011-04-06,3.830477888531156e-05,subsurface_runoff,0.0,0.0,5.335813984080899e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6115,my_land,2011-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6116,my_groundwater,2011-04-06,17.069076580009824,tank,0.0,0.0,0.0019068079964970712,0.0,0.0,0.0,0.0,0.0,10.455182876528925,0.0,0.0,0.0 -6117,my_reservoir,2011-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6118,gw1,2011-04-06,262.2752428970581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6119,gw2,2011-04-06,262.7247571029419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6120,my_sewer,2011-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6121,my_land,2011-04-07,1.2407332565101816,percolation,0.0,0.0,0.00016895240021295416,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6122,my_land,2011-04-07,3.064382310824925e-05,subsurface_runoff,0.0,0.0,4.2686511872647195e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6123,my_land,2011-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6124,my_groundwater,2011-04-07,17.051661672710182,tank,0.0,0.0,0.0019054803646530209,0.0,0.0,0.0,0.0,0.0,10.450729377073921,0.0,0.0,0.0 -6125,my_reservoir,2011-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6126,gw1,2011-04-07,262.27674127774435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6127,gw2,2011-04-07,262.72325872225565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6128,my_sewer,2011-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6129,my_land,2011-04-08,1.215918591379978,percolation,0.0,0.0,0.00016557335220869507,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6130,my_land,2011-04-08,2.45150584865994e-05,subsurface_runoff,0.0,0.0,3.414920949811776e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6131,my_land,2011-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6132,my_groundwater,2011-04-08,17.033785146995786,tank,0.0,0.0,0.0019040872641256368,0.0,0.0,0.0,0.0,0.0,10.446366838848366,0.0,0.0,0.0 -6133,my_reservoir,2011-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6134,gw1,2011-04-08,262.27822966922605,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6135,gw2,2011-04-08,262.72177033077395,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6136,my_sewer,2011-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6137,my_land,2011-04-09,1.1916002195523783,percolation,0.0,0.0,0.00016226188516452116,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6138,my_land,2011-04-09,1.9612046789279517e-05,subsurface_runoff,0.0,0.0,2.7319367598494205e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6139,my_land,2011-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6140,my_groundwater,2011-04-09,17.015458260026328,tank,0.0,0.0,0.0019026302343418862,0.0,0.0,0.0,0.0,0.0,10.442093165912869,0.0,0.0,0.0 -6141,my_reservoir,2011-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6142,gw1,2011-04-09,262.2797081380979,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6143,gw2,2011-04-09,262.7202918619021,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6144,my_sewer,2011-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6145,my_land,2011-04-10,1.1677682151613307,percolation,0.0,0.0,0.00015901664746123073,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6146,my_land,2011-04-10,1.5689637431423615e-05,subsurface_runoff,0.0,0.0,2.1855494078795364e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6147,my_land,2011-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6148,my_groundwater,2011-04-10,16.996692038756333,tank,0.0,0.0,0.0019011107833650637,0.0,0.0,0.0,0.0,0.0,10.437906319575186,0.0,0.0,0.0 -6149,my_reservoir,2011-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6150,gw1,2011-04-10,262.28117675051055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6151,gw2,2011-04-10,262.71882324948945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6152,my_sewer,2011-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6153,my_land,2011-04-11,1.144412850858104,percolation,0.0,0.0,0.0001558363145120061,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6154,my_land,2011-04-11,1.2551709945138892e-05,subsurface_runoff,0.0,0.0,1.7484395263036293e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6155,my_land,2011-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6156,my_groundwater,2011-04-11,16.977497284551912,tank,0.0,0.0,0.0018995303885235026,0.0,0.0,0.0,0.0,0.0,10.43380431649231,0.0,0.0,0.0 -6157,my_reservoir,2011-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6158,gw1,2011-04-11,262.28263557217383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6159,gw2,2011-04-11,262.71736442782617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6160,my_sewer,2011-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6161,my_land,2011-04-12,1.121524593840942,percolation,0.0,0.0,0.000152719588221766,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6162,my_land,2011-04-12,1.0041367956111114e-05,subsurface_runoff,0.0,0.0,1.3987516210429035e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6163,my_land,2011-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6164,my_groundwater,2011-04-12,16.957884577715152,tank,0.0,0.0,0.0018978904970267084,0.0,0.0,0.0,0.0,0.0,10.429785226848034,0.0,0.0,0.0 -6165,my_reservoir,2011-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6166,gw1,2011-04-12,262.28408466835936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6167,gw2,2011-04-12,262.71591533164064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6168,my_sewer,2011-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6169,my_land,2011-04-13,1.0990941019641232,percolation,0.0,0.0,0.00014966519645733068,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6170,my_land,2011-04-13,8.033094364888891e-06,subsurface_runoff,0.0,0.0,1.1190012968343227e-09,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6171,my_land,2011-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6172,my_groundwater,2011-04-13,16.93786428191799,tank,0.0,0.0,0.0018961925265691658,0.0,0.0,0.0,0.0,0.0,10.425847172602422,0.0,0.0,0.0 -6173,my_reservoir,2011-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6174,gw1,2011-04-13,262.28552410390364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6175,gw2,2011-04-13,262.71447589609636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6176,my_sewer,2011-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6177,my_land,2011-04-14,1.0771122199248406,percolation,0.0,0.0,0.00014667189252818406,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6178,my_land,2011-04-14,6.426475491911113e-06,subsurface_runoff,0.0,0.0,8.952010374674582e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6179,my_land,2011-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6180,my_groundwater,2011-04-14,16.917446548547378,tank,0.0,0.0,0.0018944378659220666,0.0,0.0,0.0,0.0,0.0,10.421988325809945,0.0,0.0,0.0 -6181,my_reservoir,2011-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6182,gw1,2011-04-14,262.28695394321096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6183,gw2,2011-04-14,262.71304605678904,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6184,my_sewer,2011-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6185,my_land,2011-04-15,1.055569975526344,percolation,0.0,0.0,0.00014373845467762037,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6186,my_land,2011-04-15,5.14118039352889e-06,subsurface_runoff,0.0,0.0,7.161608299739666e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6187,my_land,2011-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6188,my_groundwater,2011-04-15,16.89664132096351,tank,0.0,0.0,0.0018926278755131986,0.0,0.0,0.0,0.0,0.0,10.4182069070031,0.0,0.0,0.0 -6189,my_reservoir,2011-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6190,gw1,2011-04-15,262.2883742502562,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6191,gw2,2011-04-15,262.7116257497438,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6192,my_sewer,2011-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6193,my_land,2011-04-16,1.034458576015817,percolation,0.0,0.0,0.00014086368558406795,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6194,my_land,2011-04-16,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6195,my_land,2011-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6196,my_groundwater,2011-04-16,16.875458338672853,tank,0.0,0.0,0.0018907638879952342,0.0,0.0,0.0,0.0,0.0,10.414501183638567,0.0,0.0,0.0 -6197,my_reservoir,2011-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6198,gw1,2011-04-16,262.28978508858785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6199,gw2,2011-04-16,262.71021491141215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6200,my_sewer,2011-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6201,my_land,2011-04-17,1.0137694044955006,percolation,0.0,0.0,0.00013804641187238658,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6202,my_land,2011-04-17,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6203,my_land,2011-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6204,my_groundwater,2011-04-17,16.853907141417686,tank,0.0,0.0,0.0018888472088026483,0.0,0.0,0.0,0.0,0.0,10.410869468603071,0.0,0.0,0.0 -6205,my_reservoir,2011-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6206,gw1,2011-04-17,262.2911865213306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6207,gw2,2011-04-17,262.7088134786694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6208,my_sewer,2011-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6209,my_land,2011-04-18,0.9934940164055905,percolation,0.0,0.0,0.00013528548363493884,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6210,my_land,2011-04-18,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6211,my_land,2011-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6212,my_groundwater,2011-04-18,16.831997073183828,tank,0.0,0.0,0.0018868791166974958,0.0,0.0,0.0,0.0,0.0,10.40731011877627,0.0,0.0,0.0 -6213,my_reservoir,2011-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6214,gw1,2011-04-18,262.2925786111884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6215,gw2,2011-04-18,262.7074213888116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6216,my_sewer,2011-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6217,my_land,2011-04-19,0.9736241360774788,percolation,0.0,0.0,0.00013257977396224005,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6218,my_land,2011-04-19,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6219,my_land,2011-04-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6220,my_groundwater,2011-04-19,16.80973728612816,tank,0.0,0.0,0.0018848608643042691,0.0,0.0,0.0,0.0,0.0,10.403821533648127,0.0,0.0,0.0 -6221,my_reservoir,2011-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6222,gw1,2011-04-19,262.29396142044715,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6223,gw2,2011-04-19,262.70603857955285,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6224,my_sewer,2011-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6225,my_land,2011-04-20,0.9541516533559292,percolation,0.0,0.0,0.00012992817848299525,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6226,my_land,2011-04-20,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6227,my_land,2011-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6228,my_groundwater,2011-04-20,16.78713674442759,tank,0.0,0.0,0.0018827936786340552,0.0,0.0,0.0,0.0,0.0,10.400402153988384,0.0,0.0,0.0 -6229,my_reservoir,2011-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6230,gw1,2011-04-20,262.2953350109775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6231,gw2,2011-04-20,262.7046649890225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6232,my_sewer,2011-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6233,my_land,2011-04-21,0.9350686202888107,percolation,0.0,0.0,0.00012732961491333534,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6234,my_land,2011-04-21,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6235,my_land,2011-04-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6236,my_groundwater,2011-04-21,16.76420422805097,tank,0.0,0.0,0.0018806787615982057,0.0,0.0,0.0,0.0,0.0,10.397050460565811,0.0,0.0,0.0 -6237,my_reservoir,2011-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6238,gw1,2011-04-21,262.2966994442377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6239,gw2,2011-04-21,262.7033005557623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6240,my_sewer,2011-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6241,my_land,2011-04-22,0.9163672478830345,percolation,0.0,0.0,0.00012478302261506862,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6242,my_land,2011-04-22,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6243,my_land,2011-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6244,my_groundwater,2011-04-22,16.740948336455606,tank,0.0,0.0,0.0018785172905117311,0.0,0.0,0.0,0.0,0.0,10.393764972915067,0.0,0.0,0.0 -6245,my_reservoir,2011-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6246,gw1,2011-04-22,262.2980547812761,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6247,gw2,2011-04-22,262.7019452187239,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6248,my_sewer,2011-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6249,my_land,2011-04-23,0.8980399029253738,percolation,0.0,0.0,0.00012228736216276725,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6250,my_land,2011-04-23,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6251,my_land,2011-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6252,my_groundwater,2011-04-23,16.717377492209735,tank,0.0,0.0,0.0018763104185866224,0.0,0.0,0.0,0.0,0.0,10.390544248149116,0.0,0.0,0.0 -6253,my_reservoir,2011-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6254,gw1,2011-04-23,262.2994010827343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6255,gw2,2011-04-23,262.7005989172657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6256,my_sewer,2011-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6257,my_land,2011-04-24,0.8800791048668664,percolation,0.0,0.0,0.00011984161491951191,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6258,my_land,2011-04-24,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6259,my_land,2011-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6260,my_groundwater,2011-04-24,16.69349994454257,tank,0.0,0.0,0.001874059275415303,0.0,0.0,0.0,0.0,0.0,10.387386879815237,0.0,0.0,0.0 -6261,my_reservoir,2011-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6262,gw1,2011-04-24,262.3007384088494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6263,gw2,2011-04-24,262.6992615911506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6264,my_sewer,2011-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6265,my_land,2011-04-25,0.862477522769529,percolation,0.0,0.0,0.00011744478262112167,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6266,my_land,2011-04-25,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6267,my_land,2011-04-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6268,my_groundwater,2011-04-25,16.669323772823308,tank,0.0,0.0,0.0018717649674444088,0.0,0.0,0.0,0.0,0.0,10.384291496792725,0.0,0.0,0.0 -6269,my_reservoir,2011-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6270,gw1,2011-04-25,262.3020668194571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6271,gw2,2011-04-25,262.6979331805429,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6272,my_sewer,2011-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6273,my_land,2011-04-26,0.8452279723141385,percolation,0.0,0.0,0.00011509588696869923,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6274,my_land,2011-04-26,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6275,my_land,2011-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6276,my_groundwater,2011-04-26,16.6448568899705,tank,0.0,0.0,0.0018694285784390892,0.0,0.0,0.0,0.0,0.0,10.381256762230555,0.0,0.0,0.0 -6277,my_reservoir,2011-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6278,gw1,2011-04-26,262.30338637399404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6279,gw2,2011-04-26,262.69661362600596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6280,my_sewer,2011-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6281,my_land,2011-04-27,0.8283234128678557,percolation,0.0,0.0,0.00011279396922932525,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6282,my_land,2011-04-27,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6283,my_land,2011-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6284,my_groundwater,2011-04-27,16.62010704579324,tank,0.0,0.0,0.001867051169938017,0.0,0.0,0.0,0.0,0.0,10.378281372523274,0.0,0.0,0.0 -6285,my_reservoir,2011-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6286,gw1,2011-04-27,262.30469713150075,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6287,gw2,2011-04-27,262.69530286849925,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6288,my_sewer,2011-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6289,my_land,2011-04-28,0.8117569446104986,percolation,0.0,0.0,0.00011053808984473874,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6290,my_land,2011-04-28,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6291,my_land,2011-04-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6292,my_groundwater,2011-04-28,16.59508183026547,tank,0.0,0.0,0.001864633781699297,0.0,0.0,0.0,0.0,0.0,10.375364056323544,0.0,0.0,0.0 -6293,my_reservoir,2011-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6294,gw1,2011-04-28,262.3059991506241,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6295,gw2,2011-04-28,262.6940008493759,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6296,my_sewer,2011-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6297,my_land,2011-04-29,0.7955218057182887,percolation,0.0,0.0,0.00010832732804784396,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6298,my_land,2011-04-29,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6299,my_land,2011-04-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6300,my_groundwater,2011-04-29,16.569788676734788,tank,0.0,0.0,0.0018621774321374513,0.0,0.0,0.0,0.0,0.0,10.372503573589773,0.0,0.0,0.0 -6301,my_reservoir,2011-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6302,gw1,2011-04-29,262.3072924896199,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6303,gw2,2011-04-29,262.6927075103801,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6304,my_sewer,2011-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6305,my_land,2011-04-30,0.7796113696039229,percolation,0.0,0.0,0.00010616078148688708,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6306,my_land,2011-04-30,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6307,my_land,2011-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6308,my_groundwater,2011-04-30,16.54423486506703,tank,0.0,0.0,0.0018596831187516621,0.0,0.0,0.0,0.0,0.0,10.36969871466742,0.0,0.0,0.0 -6309,my_reservoir,2011-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6310,gw1,2011-04-30,262.3085772063558,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6311,gw2,2011-04-30,262.6914227936442,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6312,my_sewer,2011-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6313,my_land,2011-05-01,0.7640191422118444,percolation,0.0,0.0,0.00010403756585714934,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6314,my_land,2011-05-01,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6315,my_land,2011-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6316,my_groundwater,2011-05-01,16.51842752472796,tank,0.0,0.0,0.0018571518185454463,0.0,0.0,0.0,0.0,0.0,10.366948299402518,0.0,0.0,0.0 -6317,my_reservoir,2011-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6318,gw1,2011-05-01,262.30985335831343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6319,gw2,2011-05-01,262.69014664168657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6320,my_sewer,2011-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6321,my_land,2011-05-02,0.7487387593676075,percolation,0.0,0.0,0.00010195681454000635,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6322,my_land,2011-05-02,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6323,my_land,2011-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6324,my_groundwater,2011-05-02,16.492373637803265,tank,0.0,0.0,0.001854584488437933,0.0,0.0,0.0,0.0,0.0,10.364251176286162,0.0,0.0,0.0 -6325,my_reservoir,2011-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6326,gw1,2011-05-02,262.31112100259134,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6327,gw2,2011-05-02,262.68887899740866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6328,my_sewer,2011-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6329,my_land,2011-05-03,0.7337639841802553,percolation,0.0,0.0,9.991767824920623e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6330,my_land,2011-05-03,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6331,my_land,2011-05-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6332,my_groundwater,2011-05-03,16.46608004195814,tank,0.0,0.0,0.0018519820656669112,0.0,0.0,0.0,0.0,0.0,10.361606221628637,0.0,0.0,0.0 -6333,my_reservoir,2011-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6334,gw1,2011-05-03,262.3123801959074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6335,gw2,2011-05-03,262.6876198040926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6336,my_sewer,2011-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6337,my_land,2011-05-04,0.7190887044966502,percolation,0.0,0.0,9.79193246842221e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -6338,my_land,2011-05-04,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6339,my_land,2011-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6340,my_groundwater,2011-05-04,16.43955343333764,tank,0.0,0.0,0.0018493454681838156,0.0,0.0,0.0,0.0,0.0,10.359012338762025,0.0,0.0,0.0 -6341,my_reservoir,2011-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6342,gw1,2011-05-04,262.31363099460134,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6343,gw2,2011-05-04,262.68636900539866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6344,my_sewer,2011-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.27142857,0.0,0.0,0.0 -6345,my_land,2011-05-05,0.7047069304067172,percolation,0.0,0.0,9.596093819053766e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -6346,my_land,2011-05-05,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6347,my_land,2011-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6348,my_groundwater,2011-05-05,16.412800369409005,tank,0.0,0.0,0.0018466755950408064,0.0,0.0,0.0,0.0,0.0,10.356468457270125,0.0,0.0,0.0 -6349,my_reservoir,2011-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6350,gw1,2011-05-05,262.31487345463734,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6351,gw2,2011-05-05,262.68512654536266,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6352,my_sewer,2011-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.2375,0.0,0.0,0.0 -6353,my_land,2011-05-06,0.6906127917985828,percolation,0.0,0.0,9.404171942672691e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -6354,my_land,2011-05-06,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6355,my_land,2011-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6356,my_groundwater,2011-05-06,16.385827271747097,tank,0.0,0.0,0.0018439733267701058,0.0,0.0,0.0,0.0,0.0,10.353973532244591,0.0,0.0,0.0 -6357,my_reservoir,2011-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6358,gw1,2011-05-06,262.3161076316064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6359,gw2,2011-05-06,262.6838923683936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6360,my_sewer,2011-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.613449076833332,0.0,0.0,0.0 -6361,my_land,2011-05-07,0.6768005359626111,percolation,0.0,0.0,9.216088503819238e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -6362,my_land,2011-05-07,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6363,my_land,2011-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6364,my_groundwater,2011-05-07,16.35864042876411,tank,0.0,0.0,0.0018412395257557438,0.0,0.0,0.0,0.0,0.0,10.351526543566235,0.0,0.0,0.0 -6365,my_reservoir,2011-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6366,gw1,2011-05-07,262.31733358072904,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6367,gw2,2011-05-07,262.68266641927096,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6368,my_sewer,2011-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 -6369,my_land,2011-05-08,0.6632645252433589,percolation,0.0,0.0,9.031766733742853e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -6370,my_land,2011-05-08,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6371,my_land,2011-05-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6372,my_groundwater,2011-05-08,16.331245998384656,tank,0.0,0.0,0.0018384750365978665,0.0,0.0,0.0,0.0,0.0,10.349126495210518,0.0,0.0,0.0 -6373,my_reservoir,2011-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6374,gw1,2011-05-08,262.31855135685754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6375,gw2,2011-05-08,262.68144864314246,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6376,my_sewer,2011-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.613449076833328,0.0,0.0,0.0 -6377,my_land,2011-05-09,0.6499992347384917,percolation,0.0,0.0,8.851131399067997e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769708,0.0,0.0,0.0 -6378,my_land,2011-05-09,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6379,my_land,2011-05-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6380,my_groundwater,2011-05-09,16.3036500106673,tank,0.0,0.0,0.0018356806864697536,0.0,0.0,0.0,0.0,0.0,10.346772414576261,0.0,0.0,0.0 -6381,my_reservoir,2011-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6382,gw1,2011-05-09,262.3197610144785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6383,gw2,2011-05-09,262.6802389855215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6384,my_sewer,2011-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6385,my_land,2011-05-10,0.6369992500437219,percolation,0.0,0.0,8.674108771086636e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6386,my_land,2011-05-10,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6387,my_land,2011-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6388,my_groundwater,2011-05-10,16.275858370373665,tank,0.0,0.0,0.0018328572854676931,0.0,0.0,0.0,0.0,0.0,10.344463351836666,0.0,0.0,0.0 -6389,my_reservoir,2011-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6390,gw1,2011-05-10,262.32096260771533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6391,gw2,2011-05-10,262.67903739228467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6392,my_sewer,2011-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6393,my_land,2011-05-11,0.6242592650428475,percolation,0.0,0.0,8.500626595664903e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769709,0.0,0.0,0.0 -6394,my_land,2011-05-11,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6395,my_land,2011-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6396,my_groundwater,2011-05-11,16.2478768594861,tank,0.0,0.0,0.0018300056269538558,0.0,0.0,0.0,0.0,0.0,10.342198379311778,0.0,0.0,0.0 -6397,my_reservoir,2011-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6398,gw1,2011-05-11,262.3221561903306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6399,gw2,2011-05-11,262.6778438096694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6400,my_sewer,2011-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6401,my_land,2011-05-12,0.6117740797419905,percolation,0.0,0.0,8.330614063751606e-05,0.0,0.0,0.0,0.0,0.0,7.44860219176971,0.0,0.0,0.0 -6402,my_land,2011-05-12,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6403,my_land,2011-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6404,my_groundwater,2011-05-12,16.219711139674992,tank,0.0,0.0,0.0018271264878923063,0.0,0.0,0.0,0.0,0.0,10.33997659086157,0.0,0.0,0.0 -6405,my_reservoir,2011-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6406,gw1,2011-05-12,262.3233418157284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6407,gw2,2011-05-12,262.6766581842716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6408,my_sewer,2011-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6409,my_land,2011-05-13,0.5995385981471507,percolation,0.0,0.0,8.164001782476574e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6410,my_land,2011-05-13,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6411,my_land,2011-05-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6412,my_groundwater,2011-05-13,16.191366754716658,tank,0.0,0.0,0.001824220629178294,0.0,0.0,0.0,0.0,0.0,10.337797101298838,0.0,0.0,0.0 -6413,my_reservoir,2011-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6414,gw1,2011-05-13,262.32451953695687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6415,gw2,2011-05-13,262.67548046304313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6416,my_sewer,2011-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6417,my_land,2011-05-14,0.5875478261842078,percolation,0.0,0.0,8.000721746827042e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6418,my_land,2011-05-14,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6419,my_land,2011-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6420,my_groundwater,2011-05-14,16.162849132862902,tank,0.0,0.0,0.0018212887959609524,0.0,0.0,0.0,0.0,0.0,10.335659045821163,0.0,0.0,0.0 -6421,my_reservoir,2011-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6422,gw1,2011-05-14,262.32568940671047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6423,gw2,2011-05-14,262.67431059328953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6424,my_sewer,2011-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6425,my_land,2011-05-15,0.5757968696605236,percolation,0.0,0.0,7.840707311890501e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6426,my_land,2011-05-15,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6427,my_land,2011-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6428,my_groundwater,2011-05-15,16.13416358916312,tank,0.0,0.0,0.001818331717959542,0.0,0.0,0.0,0.0,0.0,10.333561579461199,0.0,0.0,0.0 -6429,my_reservoir,2011-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6430,gw1,2011-05-15,262.3268514773324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6431,gw2,2011-05-15,262.6731485226676,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6432,my_sewer,2011-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6433,my_land,2011-05-16,0.5642809322673131,percolation,0.0,0.0,7.683893165652691e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6434,my_land,2011-05-16,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6435,my_land,2011-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6436,my_groundwater,2011-05-16,16.105315327739937,tank,0.0,0.0,0.0018153501097733652,0.0,0.0,0.0,0.0,0.0,10.331503876554612,0.0,0.0,0.0 -6437,my_reservoir,2011-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6438,gw1,2011-05-16,262.32800580081687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6439,gw2,2011-05-16,262.67199419918313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6440,my_sewer,2011-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6441,my_land,2011-05-17,0.5529953136219669,percolation,0.0,0.0,7.530215302339637e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6442,my_land,2011-05-17,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6443,my_land,2011-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6444,my_groundwater,2011-05-17,16.07630944401932,tank,0.0,0.0,0.0018123446711854794,0.0,0.0,0.0,0.0,0.0,10.32948513022499,0.0,0.0,0.0 -6445,my_reservoir,2011-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6446,gw1,2011-05-17,262.3291524288114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6447,gw2,2011-05-17,262.6708475711886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6448,my_sewer,2011-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6449,my_land,2011-05-18,0.5419354073495275,percolation,0.0,0.0,7.379610996292843e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6450,my_land,2011-05-18,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6451,my_land,2011-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6452,my_groundwater,2011-05-18,16.04715092691603,tank,0.0,0.0,0.0018093160874603326,0.0,0.0,0.0,0.0,0.0,10.327504551885086,0.0,0.0,0.0 -6453,my_reservoir,2011-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6454,gw1,2011-05-18,262.3302914126194,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6455,gw2,2011-05-18,262.6697085873806,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6456,my_sewer,2011-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6457,my_land,2011-05-19,0.531096699202537,percolation,0.0,0.0,7.232018776366987e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6458,my_land,2011-05-19,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6459,my_land,2011-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6460,my_groundwater,2011-05-19,16.017844660975364,tank,0.0,0.0,0.0018062650296354421,0.0,0.0,0.0,0.0,0.0,10.325561370753816,0.0,0.0,0.0 -6461,my_reservoir,2011-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6462,gw1,2011-05-19,262.3314228032019,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6463,gw2,2011-05-19,262.6685771967981,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6464,my_sewer,2011-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6465,my_land,2011-05-20,0.5204747652184862,percolation,0.0,0.0,7.087378400839648e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6466,my_land,2011-05-20,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6467,my_land,2011-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6468,my_groundwater,2011-05-20,15.988395428472016,tank,0.0,0.0,0.0018031921548072388,0.0,0.0,0.0,0.0,0.0,10.323654833388376,0.0,0.0,0.0 -6469,my_reservoir,2011-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6470,gw1,2011-05-20,262.33254665118056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6471,gw2,2011-05-20,262.66745334881944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6472,my_sewer,2011-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6473,my_land,2011-05-21,0.5100652699141165,percolation,0.0,0.0,6.945630832822854e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6474,my_land,2011-05-21,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6475,my_land,2011-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6476,my_groundwater,2011-05-21,15.958807911466945,tank,0.0,0.0,0.0018000981064111882,0.0,0.0,0.0,0.0,0.0,10.32178420323098,0.0,0.0,0.0 -6477,my_reservoir,2011-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6478,gw1,2011-05-21,262.33366300683934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6479,gw2,2011-05-21,262.66633699316066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6480,my_sewer,2011-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6481,my_land,2011-05-22,0.49986396451583415,percolation,0.0,0.0,6.806718216166398e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6482,my_land,2011-05-22,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6483,my_land,2011-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6484,my_groundwater,2011-05-22,15.929086693823065,tank,0.0,0.0,0.0017969835144963082,0.0,0.0,0.0,0.0,0.0,10.319948760169625,0.0,0.0,0.0 -6485,my_reservoir,2011-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6486,gw1,2011-05-22,262.3347719201271,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6487,gw2,2011-05-22,262.6652280798729,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6488,my_sewer,2011-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6489,my_land,2011-05-23,0.48986668522551746,percolation,0.0,0.0,6.67058385184307e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6490,my_land,2011-05-23,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6491,my_land,2011-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6492,my_groundwater,2011-05-23,15.8992362631806,tank,0.0,0.0,0.0017938489959941927,0.0,0.0,0.0,0.0,0.0,10.318147800112447,0.0,0.0,0.0 -6493,my_reservoir,2011-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6494,gw1,2011-05-23,262.33587344065955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6495,gw2,2011-05-23,262.66412655934045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6496,my_sewer,2011-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6497,my_land,2011-05-24,0.4800693515210071,percolation,0.0,0.0,6.537172174806208e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6498,my_land,2011-05-24,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6499,my_land,2011-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6500,my_groundwater,2011-05-24,15.869261012892897,tank,0.0,0.0,0.00179069515498265,0.0,0.0,0.0,0.0,0.0,10.31638063457508,0.0,0.0,0.0 -6501,my_reservoir,2011-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6502,gw1,2011-05-24,262.3369676177218,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6503,gw2,2011-05-24,262.6630323822782,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6504,my_sewer,2011-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.61344907683333,0.0,0.0,0.0 -6505,my_land,2011-05-25,0.470467964490587,percolation,0.0,0.0,6.406428731310084e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6506,my_land,2011-05-25,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6507,my_land,2011-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6508,my_groundwater,2011-05-25,15.839165243923508,tank,0.0,0.0,0.001787522582944067,0.0,0.0,0.0,0.0,0.0,10.314646590280635,0.0,0.0,0.0 -6509,my_reservoir,2011-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6510,gw1,2011-05-25,262.33805450027035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6511,gw2,2011-05-25,262.66194549972965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6512,my_sewer,2011-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 -6513,my_land,2011-05-26,0.46105860520077524,percolation,0.0,0.0,6.278300156683882e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6514,my_land,2011-05-26,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6515,my_land,2011-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6516,my_groundwater,2011-05-26,15.808953166705287,tank,0.0,0.0,0.0017843318590186033,0.0,0.0,0.0,0.0,0.0,10.312945008771804,0.0,0.0,0.0 -6517,my_reservoir,2011-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6518,gw1,2011-05-26,262.33913413693523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6519,gw2,2011-05-26,262.66086586306477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6520,my_sewer,2011-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 -6521,my_land,2011-05-27,0.4518374330967597,percolation,0.0,0.0,6.152734153550204e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6522,my_land,2011-05-27,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6523,my_land,2011-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6524,my_groundwater,2011-05-27,15.778628902962279,tank,0.0,0.0,0.0017811235502523152,0.0,0.0,0.0,0.0,0.0,10.311275246034668,0.0,0.0,0.0 -6525,my_reservoir,2011-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6526,gw1,2011-05-27,262.34020657602235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6527,gw2,2011-05-27,262.65979342397765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6528,my_sewer,2011-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 -6529,my_land,2011-05-28,0.4428006844348245,percolation,0.0,0.0,6.0296794704792e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6530,my_land,2011-05-28,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6531,my_land,2011-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6532,my_groundwater,2011-05-28,15.748196487495154,tank,0.0,0.0,0.0017778982118403178,0.0,0.0,0.0,0.0,0.0,10.30963667213378,0.0,0.0,0.0 -6533,my_reservoir,2011-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6534,gw1,2011-05-28,262.3412718655155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6535,gw2,2011-05-28,262.6587281344845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6536,my_sewer,2011-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.87857143,0.0,0.0,0.0 -6537,my_land,2011-05-29,0.433944670746128,percolation,0.0,0.0,5.9090858810696154e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6538,my_land,2011-05-29,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6539,my_land,2011-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6540,my_groundwater,2011-05-29,15.71765986993089,tank,0.0,0.0,0.0017746563873650778,0.0,0.0,0.0,0.0,0.0,10.30802867085816,0.0,0.0,0.0 -6541,my_reservoir,2011-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6542,gw1,2011-05-29,262.34233005307874,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6543,gw2,2011-05-29,262.65766994692126,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6544,my_sewer,2011-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6545,my_land,2011-05-30,0.42526577733120546,percolation,0.0,0.0,5.790904163448223e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6546,my_land,2011-05-30,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6547,my_land,2011-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6548,my_groundwater,2011-05-30,15.687022916437448,tank,0.0,0.0,0.0017713986090299384,0.0,0.0,0.0,0.0,0.0,10.306450639377772,0.0,0.0,0.0 -6549,my_reservoir,2011-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6550,gw1,2011-05-30,262.3433811860582,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6551,gw2,2011-05-30,262.6566188139418,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6552,my_sewer,2011-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6553,my_land,2011-05-31,0.41676046178458137,percolation,0.0,0.0,5.675086080179258e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6554,my_land,2011-05-31,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6555,my_land,2011-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6556,my_groundwater,2011-05-31,15.656289411404112,tank,0.0,0.0,0.0017681253978879714,0.0,0.0,0.0,0.0,0.0,10.304901987910164,0.0,0.0,0.0 -6557,my_reservoir,2011-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6558,gw1,2011-05-31,262.3444253114845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6559,gw2,2011-05-31,262.6555746885155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6560,my_sewer,2011-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6561,my_land,2011-06-01,0.40842525254888973,percolation,0.0,0.0,5.561584358575673e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6562,my_land,2011-06-01,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6563,my_land,2011-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6564,my_groundwater,2011-06-01,15.625463059088203,tank,0.0,0.0,0.0017648372640662474,0.0,0.0,0.0,0.0,0.0,10.30338213939689,0.0,0.0,0.0 -6565,my_reservoir,2011-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6566,gw1,2011-06-01,262.3454624760746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6567,gw2,2011-06-01,262.6545375239254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6568,my_sewer,2011-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6569,my_land,2011-06-02,0.40025674749791196,percolation,0.0,0.0,5.45035267140416e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6570,my_land,2011-06-02,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6571,my_land,2011-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6572,my_groundwater,2011-06-02,15.594547485228833,tank,0.0,0.0,0.0017615347069856178,0.0,0.0,0.0,0.0,0.0,10.301890529189372,0.0,0.0,0.0 -6573,my_reservoir,2011-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6574,gw1,2011-06-02,262.3464927262341,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6575,gw2,2011-06-02,262.6535072737659,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6576,my_sewer,2011-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6577,my_land,2011-06-03,0.3922516125479537,percolation,0.0,0.0,5.341345617976077e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6578,my_land,2011-06-03,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6579,my_land,2011-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6580,my_groundwater,2011-06-03,15.563546238628344,tank,0.0,0.0,0.0017582182155760988,0.0,0.0,0.0,0.0,0.0,10.300426604743917,0.0,0.0,0.0 -6581,my_reservoir,2011-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6582,gw1,2011-06-03,262.3475161080592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6583,gw2,2011-06-03,262.6524838919408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6584,my_sewer,2011-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6585,my_land,2011-06-04,0.38440658029699465,percolation,0.0,0.0,5.2345187056165555e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6586,my_land,2011-06-04,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6587,my_land,2011-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6588,my_groundwater,2011-06-04,15.532462792702106,tank,0.0,0.0,0.0017548882684879448,0.0,0.0,0.0,0.0,0.0,10.298989825325517,0.0,0.0,0.0 -6589,my_reservoir,2011-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6590,gw1,2011-06-04,262.3485326673388,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6591,gw2,2011-06-04,262.6514673326612,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6592,my_sewer,2011-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6593,my_land,2011-06-05,0.37671844869105475,percolation,0.0,0.0,5.1298283315042246e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6594,my_land,2011-06-05,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6595,my_land,2011-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6596,my_groundwater,2011-06-05,15.501300546997276,tank,0.0,0.0,0.0017515453342984955,0.0,0.0,0.0,0.0,0.0,10.297579661720192,0.0,0.0,0.0 -6597,my_reservoir,2011-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6598,gw1,2011-06-05,262.34954244955657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6599,gw2,2011-06-05,262.65045755044343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6600,my_sewer,2011-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.73571429,0.0,0.0,0.0 -6601,my_land,2011-06-06,0.36918407971723366,percolation,0.0,0.0,5.02723176487414e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -6602,my_land,2011-06-06,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6603,my_land,2011-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6604,my_groundwater,2011-06-06,15.47006282868117,tank,0.0,0.0,0.0017481898717148843,0.0,0.0,0.0,0.0,0.0,10.296195595955549,0.0,0.0,0.0 -6605,my_reservoir,2011-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6606,gw1,2011-06-06,262.35054549989286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6607,gw2,2011-06-06,262.64945450010714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6608,my_sewer,2011-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 -6609,my_land,2011-06-07,0.361800398122889,percolation,0.0,0.0,4.926687129576657e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769714,0.0,0.0,0.0 -6610,my_land,2011-06-07,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6611,my_land,2011-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6612,my_groundwater,2011-06-07,15.438752893999826,tank,0.0,0.0,0.0017448223297726897,0.0,0.0,0.0,0.0,0.0,10.294837121029294,0.0,0.0,0.0 -6613,my_reservoir,2011-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6614,gw1,2011-06-07,262.3515418632269,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6615,gw2,2011-06-07,262.6484581367731,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6616,my_sewer,2011-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 -6617,my_land,2011-06-08,0.35456439016043123,percolation,0.0,0.0,4.828153386985124e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -6618,my_land,2011-06-08,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6619,my_land,2011-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6620,my_groundwater,2011-06-08,15.40737392970738,tank,0.0,0.0,0.0017414431480306085,0.0,0.0,0.0,0.0,0.0,10.293503740645438,0.0,0.0,0.0 -6621,my_reservoir,2011-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6622,gw1,2011-06-08,262.3525315841387,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6623,gw2,2011-06-08,262.6474684158613,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6624,my_sewer,2011-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4,0.0,0.0,0.0 -6625,my_land,2011-06-09,0.3474731023572226,percolation,0.0,0.0,4.7315903192454214e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -6626,my_land,2011-06-09,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6627,my_land,2011-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6628,my_groundwater,2011-06-09,15.37592905446681,tank,0.0,0.0,0.0017380527567612354,0.0,0.0,0.0,0.0,0.0,10.292194968957922,0.0,0.0,0.0 -6629,my_reservoir,2011-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6630,gw1,2011-06-09,262.35351470691114,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6631,gw2,2011-06-09,262.64648529308886,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6632,my_sewer,2011-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303571430000002,0.0,0.0,0.0 -6633,my_land,2011-06-10,0.34052364031007815,percolation,0.0,0.0,4.636958512860513e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -6634,my_land,2011-06-10,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6635,my_land,2011-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6636,my_groundwater,2011-06-10,15.34442132022267,tank,0.0,0.0,0.0017346515771380216,0.0,0.0,0.0,0.0,0.0,10.290910330321443,0.0,0.0,0.0 -6637,my_reservoir,2011-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6638,gw1,2011-06-10,262.35449127553176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6639,gw2,2011-06-10,262.64550872446824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6640,my_sewer,2011-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.27142857,0.0,0.0,0.0 -6641,my_land,2011-06-11,0.3337131675038766,percolation,0.0,0.0,4.5442193426033026e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -6642,my_land,2011-06-11,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6643,my_land,2011-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6644,my_groundwater,2011-06-11,15.3128537135463,tank,0.0,0.0,0.0017312400214184922,0.0,0.0,0.0,0.0,0.0,10.289649359049209,0.0,0.0,0.0 -6645,my_reservoir,2011-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6646,gw1,2011-06-11,262.3554613336949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6647,gw2,2011-06-11,262.6445386663051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6648,my_sewer,2011-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 -6649,my_land,2011-06-12,0.32703890415379905,percolation,0.0,0.0,4.4533349557512366e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769713,0.0,0.0,0.0 -6650,my_land,2011-06-12,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6651,my_land,2011-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6652,my_groundwater,2011-06-12,15.281229156954137,tank,0.0,0.0,0.0017278184931237954,0.0,0.0,0.0,0.0,0.0,10.288411599177428,0.0,0.0,0.0 -6653,my_reservoir,2011-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6654,gw1,2011-06-12,262.3564249248036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6655,gw2,2011-06-12,262.6435750751964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6656,my_sewer,2011-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.239285709999999,0.0,0.0,0.0 -6657,my_land,2011-06-13,0.3204981260707231,percolation,0.0,0.0,4.364268256636212e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6658,my_land,2011-06-13,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6659,my_land,2011-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6660,my_groundwater,2011-06-13,15.24955051019962,tank,0.0,0.0,0.001724387387214658,0.0,0.0,0.0,0.0,0.0,10.287196604236305,0.0,0.0,0.0 -6661,my_reservoir,2011-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6662,gw1,2011-06-13,262.3573820919716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6663,gw2,2011-06-13,262.6426179080284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6664,my_sewer,2011-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -6665,my_land,2011-06-14,0.31408816354930863,percolation,0.0,0.0,4.276982891503488e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6666,my_land,2011-06-14,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6667,my_land,2011-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6668,my_groundwater,2011-06-14,15.217820571539233,tank,0.0,0.0,0.0017209470902638203,0.0,0.0,0.0,0.0,0.0,10.286003937027319,0.0,0.0,0.0 -6669,my_reservoir,2011-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6670,gw1,2011-06-14,262.3583328780251,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6671,gw2,2011-06-14,262.6416671219749,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6672,my_sewer,2011-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -6673,my_land,2011-06-15,0.30780640027832246,percolation,0.0,0.0,4.191443233673418e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769712,0.0,0.0,0.0 -6674,my_land,2011-06-15,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6675,my_land,2011-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6676,my_groundwater,2011-06-15,15.186042078973193,tank,0.0,0.0,0.0017174979806250158,0.0,0.0,0.0,0.0,0.0,10.28483316940658,0.0,0.0,0.0 -6677,my_reservoir,2011-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6678,gw1,2011-06-15,262.35927732550493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6679,gw2,2011-06-15,262.64072267449507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6680,my_sewer,2011-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -6681,my_land,2011-06-16,0.301650272272756,percolation,0.0,0.0,4.10761436899995e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6682,my_land,2011-06-16,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6683,my_land,2011-06-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6684,my_groundwater,2011-06-16,15.154217711461312,tank,0.0,0.0,0.0017140404285985711,0.0,0.0,0.0,0.0,0.0,10.283683882074108,0.0,0.0,0.0 -6685,my_reservoir,2011-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6686,gw1,2011-06-16,262.36021547666826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6687,gw2,2011-06-16,262.63978452333174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6688,my_sewer,2011-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -6689,my_land,2011-06-17,0.2956172668273009,percolation,0.0,0.0,4.025462081619951e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6690,my_land,2011-06-17,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6691,my_land,2011-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6692,my_groundwater,2011-06-17,15.1223500901145,tank,0.0,0.0,0.0017105747965936902,0.0,0.0,0.0,0.0,0.0,10.282555664368788,0.0,0.0,0.0 -6693,my_reservoir,2011-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6694,gw1,2011-06-17,262.3611473734905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6695,gw2,2011-06-17,262.6388526265095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6696,my_sewer,2011-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 -6697,my_land,2011-06-18,0.2897049214907549,percolation,0.0,0.0,3.944952839987552e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6698,my_land,2011-06-18,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6699,my_land,2011-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6700,my_groundwater,2011-06-18,15.090441779362418,tank,0.0,0.0,0.0017071014392874891,0.0,0.0,0.0,0.0,0.0,10.281448114068862,0.0,0.0,0.0 -6701,my_reservoir,2011-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6702,gw1,2011-06-18,262.3620730576672,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6703,gw2,2011-06-18,262.6379269423328,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6704,my_sewer,2011-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.775000000000002,0.0,0.0,0.0 -6705,my_land,2011-06-19,0.2839108230609398,percolation,0.0,0.0,3.866053783187801e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6706,my_land,2011-06-19,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6707,my_land,2011-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6708,my_groundwater,2011-06-19,15.058495288097753,tank,0.0,0.0,0.001703620703780848,0.0,0.0,0.0,0.0,0.0,10.280360837197781,0.0,0.0,0.0 -6709,my_reservoir,2011-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6710,gw1,2011-06-19,262.3629925706161,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6711,gw2,2011-06-19,262.6370074293839,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6712,my_sewer,2011-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 -6713,my_land,2011-06-20,0.278232606599721,percolation,0.0,0.0,3.788732707524045e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6714,my_land,2011-06-20,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6715,my_land,2011-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6716,my_groundwater,2011-06-20,15.026513070797574,tank,0.0,0.0,0.0017001329297511418,0.0,0.0,0.0,0.0,0.0,10.279293447835212,0.0,0.0,0.0 -6717,my_reservoir,2011-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6718,gw1,2011-06-20,262.36390595347865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6719,gw2,2011-06-20,262.63609404652135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6720,my_sewer,2011-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 -6721,my_land,2011-06-21,0.27266795446772657,percolation,0.0,0.0,3.712958053373564e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6722,my_land,2011-06-21,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6723,my_land,2011-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6724,my_groundwater,2011-06-21,14.994497528622244,tank,0.0,0.0,0.0016966384496019148,0.0,0.0,0.0,0.0,0.0,10.278245567933084,0.0,0.0,0.0 -6725,my_reservoir,2011-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6726,gw1,2011-06-21,262.36481324712213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6727,gw2,2011-06-21,262.63518675287787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6728,my_sewer,2011-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 -6729,my_land,2011-06-22,0.26721459537837206,percolation,0.0,0.0,3.638698892306093e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6730,my_land,2011-06-22,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6731,my_land,2011-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6732,my_groundwater,2011-06-22,14.96245101049232,tank,0.0,0.0,0.001693137588609558,0.0,0.0,0.0,0.0,0.0,10.277216827136492,0.0,0.0,0.0 -6733,my_reservoir,2011-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6734,gw1,2011-06-22,262.3657144921413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6735,gw2,2011-06-22,262.6342855078587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6736,my_sewer,2011-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.075,0.0,0.0,0.0 -6737,my_land,2011-06-23,0.2618703034708046,percolation,0.0,0.0,3.565924914459971e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6738,my_land,2011-06-23,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6739,my_land,2011-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6740,my_groundwater,2011-06-23,14.930375814143888,tank,0.0,0.0,0.001689630665067049,0.0,0.0,0.0,0.0,0.0,10.27620686260932,0.0,0.0,0.0 -6741,my_reservoir,2011-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6742,gw1,2011-06-23,262.36660972886034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6743,gw2,2011-06-23,262.63339027113966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6744,my_sewer,2011-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6745,my_land,2011-06-24,0.2566328974013885,percolation,0.0,0.0,3.494606416170772e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6746,my_land,2011-06-24,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6747,my_land,2011-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6748,my_groundwater,2011-06-24,14.89827418716277,tank,0.0,0.0,0.0016861179904248162,0.0,0.0,0.0,0.0,0.0,10.275215318864404,0.0,0.0,0.0 -6749,my_reservoir,2011-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6750,gw1,2011-06-24,262.3674989973346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6751,gw2,2011-06-24,262.6325010026654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6752,my_sewer,2011-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6753,my_land,2011-06-25,0.25150023945336075,percolation,0.0,0.0,3.4247142878473564e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6754,my_land,2011-06-25,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6755,my_land,2011-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6756,my_groundwater,2011-06-25,14.86614832799802,tank,0.0,0.0,0.0016825998694287802,0.0,0.0,0.0,0.0,0.0,10.274241847598166,0.0,0.0,0.0 -6757,my_reservoir,2011-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6758,gw1,2011-06-25,262.3683823373524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6759,gw2,2011-06-25,262.6316176626476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6760,my_sewer,2011-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6761,my_land,2011-06-26,0.24647023466429355,percolation,0.0,0.0,3.356220002090409e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6762,my_land,2011-06-26,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6763,my_land,2011-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6764,my_groundwater,2011-06-26,14.83400038695512,tank,0.0,0.0,0.0016790766002556339,0.0,0.0,0.0,0.0,0.0,10.273286107529495,0.0,0.0,0.0 -6765,my_reservoir,2011-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6766,gw1,2011-06-26,262.3692597884367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6767,gw2,2011-06-26,262.6307402115633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6768,my_sewer,2011-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6769,my_land,2011-06-27,0.24154082997100768,percolation,0.0,0.0,3.289095602048601e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6770,my_land,2011-06-27,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6771,my_land,2011-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6772,my_groundwater,2011-06-27,14.801832467169286,tank,0.0,0.0,0.0016755484746454117,0.0,0.0,0.0,0.0,0.0,10.272347764242824,0.0,0.0,0.0 -6773,my_reservoir,2011-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6774,gw1,2011-06-27,262.37013138984713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6775,gw2,2011-06-27,262.62986861015287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6776,my_sewer,2011-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6777,my_land,2011-06-28,0.23671001337158754,percolation,0.0,0.0,3.2233136900076285e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6778,my_land,2011-06-28,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6779,my_land,2011-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6780,my_groundwater,2011-06-28,14.769646625559282,tank,0.0,0.0,0.0016720157780314069,0.0,0.0,0.0,0.0,0.0,10.27142649003522,0.0,0.0,0.0 -6781,my_reservoir,2011-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6782,gw1,2011-06-28,262.37099718058147,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6783,gw2,2011-06-28,262.62900281941853,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6784,my_sewer,2011-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6785,my_land,2011-06-29,0.2319758131041558,percolation,0.0,0.0,3.158847416207476e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6786,my_land,2011-06-29,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6787,my_land,2011-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6788,my_groundwater,2011-06-29,14.737444873762147,tank,0.0,0.0,0.001668478789667485,0.0,0.0,0.0,0.0,0.0,10.270521963767399,0.0,0.0,0.0 -6789,my_reservoir,2011-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6790,gw1,2011-06-29,262.3718571993776,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6791,gw2,2011-06-29,262.6281428006224,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6792,my_sewer,2011-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6793,my_land,2011-06-30,0.22733629684207268,percolation,0.0,0.0,3.0956704678833263e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6794,my_land,2011-06-30,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6795,my_land,2011-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6796,my_groundwater,2011-06-30,14.70522917904917,tank,0.0,0.0,0.0016649377827528497,0.0,0.0,0.0,0.0,0.0,10.26963387071854,0.0,0.0,0.0 -6797,my_reservoir,2011-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6798,gw1,2011-06-30,262.37271148471507,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6799,gw2,2011-06-30,262.62728851528493,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6800,my_sewer,2011-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6801,my_land,2011-07-01,0.22278957090523122,percolation,0.0,0.0,3.03375705852566e-05,0.0,0.0,0.0,0.0,0.0,7.448602191769711,0.0,0.0,0.0 -6802,my_land,2011-07-01,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6803,my_land,2011-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6804,my_groundwater,2011-07-01,14.673001465223544,tank,0.0,0.0,0.0016613930245543103,0.0,0.0,0.0,0.0,0.0,10.268761902444774,0.0,0.0,0.0 -6805,my_reservoir,2011-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6806,gw1,2011-07-01,262.37356007481696,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6807,gw2,2011-07-01,262.62643992518304,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6808,my_sewer,2011-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6809,my_land,2011-07-02,0.2183337794871266,percolation,0.0,0.0,2.9730819173551466e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6810,my_land,2011-07-02,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6811,my_land,2011-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6812,my_groundwater,2011-07-02,14.640763613500045,tank,0.0,0.0,0.0016578447765261005,0.0,0.0,0.0,0.0,0.0,10.267905756641264,0.0,0.0,0.0 -6813,my_reservoir,2011-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6814,gw1,2011-07-02,262.3744030076515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6815,gw2,2011-07-02,262.6255969923485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6816,my_sewer,2011-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6817,my_land,2011-07-03,0.21396710389738408,percolation,0.0,0.0,2.9136202790080437e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6818,my_land,2011-07-03,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6819,my_land,2011-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6820,my_groundwater,2011-07-03,14.608517463367065,tank,0.0,0.0,0.0016542932944272975,0.0,0.0,0.0,0.0,0.0,10.267065137007718,0.0,0.0,0.0 -6821,my_reservoir,2011-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6822,gw1,2011-07-03,262.3752403209338,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6823,gw2,2011-07-03,262.6247596790662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6824,my_sewer,2011-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09285714,0.0,0.0,0.0 -6825,my_land,2011-07-04,0.20968776181943638,percolation,0.0,0.0,2.855347873427883e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6826,my_land,2011-07-04,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6827,my_land,2011-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6828,my_groundwater,2011-07-04,14.5762648134314,tank,0.0,0.0,0.0016507388284368915,0.0,0.0,0.0,0.0,0.0,10.26623975311733,0.0,0.0,0.0 -6829,my_reservoir,2011-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6830,gw1,2011-07-04,262.3760720521276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6831,gw2,2011-07-04,262.6239279478724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6832,my_sewer,2011-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.975,0.0,0.0,0.0 -6833,my_land,2011-07-05,0.20549400658304764,percolation,0.0,0.0,2.798240915959325e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6834,my_land,2011-07-05,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6835,my_land,2011-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6836,my_groundwater,2011-07-05,14.54400742224612,tank,0.0,0.0,0.0016471816232665481,0.0,0.0,0.0,0.0,0.0,10.265429320288932,0.0,0.0,0.0 -6837,my_reservoir,2011-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6838,gw1,2011-07-05,262.37689823844676,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6839,gw2,2011-07-05,262.62310176155324,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6840,my_sewer,2011-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.85,0.0,0.0,0.0 -6841,my_land,2011-07-06,0.2013841264513867,percolation,0.0,0.0,2.7422760976401385e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6842,my_land,2011-07-06,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6843,my_land,2011-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6844,my_groundwater,2011-07-06,14.511747009121837,tank,0.0,0.0,0.0016436219182711157,0.0,0.0,0.0,0.0,0.0,10.264633559462345,0.0,0.0,0.0 -6845,my_reservoir,2011-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6846,gw1,2011-07-06,262.37771891685713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6847,gw2,2011-07-06,262.62228108314287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6848,my_sewer,2011-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.725,0.0,0.0,0.0 -6849,my_land,2011-07-07,0.19735644392235896,percolation,0.0,0.0,2.687430575687336e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6850,my_land,2011-07-07,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6851,my_land,2011-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6852,my_groundwater,2011-07-07,14.479485254921737,tank,0.0,0.0,0.0016400599475569172,0.0,0.0,0.0,0.0,0.0,10.263852197076819,0.0,0.0,0.0 -6853,my_reservoir,2011-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6854,gw1,2011-07-07,262.3785341240781,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6855,gw2,2011-07-07,262.6214658759219,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6856,my_sewer,2011-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6857,my_land,2011-07-08,0.1934093150439118,percolation,0.0,0.0,2.633681964173589e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6858,my_land,2011-07-08,4.112944314823112e-06,subsurface_runoff,0.0,0.0,5.729286639791733e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6859,my_land,2011-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.421428571,0.0,0.0,0.0 -6860,my_groundwater,2011-07-08,14.447223802840684,tank,0.0,0.0,0.0016364959400878745,0.0,0.0,0.0,0.0,0.0,10.263084964952448,0.0,0.0,0.0 -6861,my_reservoir,2011-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6862,gw1,2011-07-08,262.37934389658426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6863,gw2,2011-07-08,262.62065610341574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6864,my_sewer,2011-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6865,my_land,2011-07-09,0.18954112874303355,percolation,0.0,0.0,2.5810083248901173e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6866,my_land,2011-07-09,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.583429311833386e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6867,my_land,2011-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 -6868,my_groundwater,2011-07-09,14.414964259168707,tank,0.0,0.0,0.0016329301197895074,0.0,0.0,0.0,0.0,0.0,10.262331600174514,0.0,0.0,0.0 -6869,my_reservoir,2011-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6870,gw1,2011-07-09,262.38014827060704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6871,gw2,2011-07-09,262.61985172939296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6872,my_sewer,2011-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6873,my_land,2011-07-10,0.1857503061681729,percolation,0.0,0.0,2.5293881583923148e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6874,my_land,2011-07-10,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6875,my_land,2011-07-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 -6876,my_groundwater,2011-07-10,14.382708194039209,tank,0.0,0.0,0.0016293627056508493,0.0,0.0,0.0,0.0,0.0,10.261591844980638,0.0,0.0,0.0 -6877,my_reservoir,2011-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6878,gw1,2011-07-10,262.38094728213633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6879,gw2,2011-07-10,262.61905271786367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6880,my_sewer,2011-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6881,my_land,2011-07-11,0.18203530004480944,percolation,0.0,0.0,2.4788003952244684e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6882,my_land,2011-07-11,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6883,my_land,2011-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 -6884,my_groundwater,2011-07-11,14.350457142162165,tank,0.0,0.0,0.0016257939118243215,0.0,0.0,0.0,0.0,0.0,10.260865446650682,0.0,0.0,0.0 -6885,my_reservoir,2011-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6886,gw1,2011-07-11,262.3817409669221,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6887,gw2,2011-07-11,262.6182590330779,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6888,my_sewer,2011-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6889,my_land,2011-07-12,0.17839459404391325,percolation,0.0,0.0,2.429224387319979e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6890,my_land,2011-07-12,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6891,my_land,2011-07-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 -6892,my_groundwater,2011-07-12,14.318212603542653,tank,0.0,0.0,0.001622223947723608,0.0,0.0,0.0,0.0,0.0,10.260152157399316,0.0,0.0,0.0 -6893,my_reservoir,2011-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6894,gw1,2011-07-12,262.382529360476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6895,gw2,2011-07-12,262.617470639524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6896,my_sewer,2011-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6897,my_land,2011-07-13,0.17482670216303497,percolation,0.0,0.0,2.3806398995735792e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6898,my_land,2011-07-13,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6899,my_land,2011-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 -6900,my_groundwater,2011-07-13,14.285976044184974,tank,0.0,0.0,0.0016186530181195693,0.0,0.0,0.0,0.0,0.0,10.259451734271183,0.0,0.0,0.0 -6901,my_reservoir,2011-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6902,gw1,2011-07-13,262.3833124980728,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6903,gw2,2011-07-13,262.6166875019272,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6904,my_sewer,2011-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.6,0.0,0.0,0.0 -6905,my_land,2011-07-14,0.17133016811977428,percolation,0.0,0.0,2.3330271015821078e-05,0.0,0.0,0.0,0.0,0.0,7.4486021917697105,0.0,0.0,0.0 -6906,my_land,2011-07-14,3.29035545185849e-06,subsurface_runoff,0.0,0.0,4.5834293118333865e-10,0.0,0.0,0.0,0.0,0.0,6.527519745809227,0.0,0.0,0.0 -6907,my_land,2011-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.475,0.0,0.0,0.0 -6908,my_groundwater,2011-07-14,14.253748896782664,tank,0.0,0.0,0.0016150813232342354,0.0,0.0,0.0,0.0,0.0,10.25876393903857,0.0,0.0,0.0 -6909,my_reservoir,2011-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6910,gw1,2011-07-14,262.38409041475234,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6911,gw2,2011-07-14,262.61590958524766,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6912,my_sewer,2011-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.725,0.0,0.0,0.0 -6913,my_land,2011-07-15,0.31230748761423277,percolation,0.0,0.0,5.5422478629589825e-05,0.0,0.0,0.0,0.0,0.0,11.36059014416983,0.0,0.0,0.0 -6914,my_land,2011-07-15,0.039296216735206106,subsurface_runoff,0.0,0.0,8.859907636000779e-06,0.0,0.0,0.0,0.0,0.0,15.908568901003205,0.0,0.0,0.0 -6915,my_land,2011-07-15,1.77914550048067e-18,surface_runoff,0.0,0.0,2.1718084722664428e-22,0.0,0.0,0.0,0.0,0.0,16.327237852092,0.0,0.0,0.0 -6916,my_groundwater,2011-07-15,14.224472212681427,tank,0.0,0.0,0.0016121718632411092,0.0,0.0,0.0,0.0,0.0,10.259256404930643,0.0,0.0,0.0 -6917,my_reservoir,2011-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6918,gw1,2011-07-15,262.38486314532065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6919,gw2,2011-07-15,262.61513685467935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6920,my_sewer,2011-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 -6921,my_land,2011-07-16,0.6844040886886951,percolation,0.0,0.0,0.000135942387415083,0.0,0.0,0.0,0.0,0.0,13.825710805336893,0.0,0.0,0.0 -6922,my_land,2011-07-16,0.13438738177639536,subsurface_runoff,0.0,0.0,2.929972430147682e-05,0.0,0.0,0.0,0.0,0.0,15.840624123141303,0.0,0.0,0.0 -6923,my_land,2011-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.6,0.0,0.0,0.0 -6924,my_groundwater,2011-07-16,14.202843543955172,tank,0.0,0.0,0.0016109088321839564,0.0,0.0,0.0,0.0,0.0,10.262754976740114,0.0,0.0,0.0 -6925,my_reservoir,2011-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6926,gw1,2011-07-16,262.38563072435187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6927,gw2,2011-07-16,262.61436927564813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6928,my_sewer,2011-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6929,my_land,2011-07-17,0.8384455729427657,percolation,0.0,0.0,0.00016906626445645806,0.0,0.0,0.0,0.0,0.0,14.198142703816604,0.0,0.0,0.0 -6930,my_land,2011-07-17,0.15315060365998553,subsurface_runoff,0.0,0.0,3.3192901832930216e-05,0.0,0.0,0.0,0.0,0.0,15.794967832963192,0.0,0.0,0.0 -6931,my_land,2011-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.475,0.0,0.0,0.0 -6932,my_groundwater,2011-07-17,14.18440479140162,tank,0.0,0.0,0.00161032326620136,0.0,0.0,0.0,0.0,0.0,10.267490501488396,0.0,0.0,0.0 -6933,my_reservoir,2011-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6934,gw1,2011-07-17,262.38639318618954,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6935,gw2,2011-07-17,262.61360681381046,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6936,my_sewer,2011-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6937,my_land,2011-07-18,0.8799417378911885,percolation,0.0,0.0,0.00017816836524097546,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -6938,my_land,2011-07-18,0.13837492548779198,subsurface_runoff,0.0,0.0,2.995117209862896e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6939,my_land,2011-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.35,0.0,0.0,0.0 -6940,my_groundwater,2011-07-18,14.16685687908733,tank,0.0,0.0,0.0016099244568996908,0.0,0.0,0.0,0.0,0.0,10.272575209925977,0.0,0.0,0.0 -6941,my_reservoir,2011-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6942,gw1,2011-07-18,262.3871505649483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6943,gw2,2011-07-18,262.6128494350517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6944,my_sewer,2011-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6945,my_land,2011-07-19,0.8623429031333647,percolation,0.0,0.0,0.00017460499793615596,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -6946,my_land,2011-07-19,0.11069994039023359,subsurface_runoff,0.0,0.0,2.3960937678903166e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6947,my_land,2011-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.225,0.0,0.0,0.0 -6948,my_groundwater,2011-07-19,14.148994574560541,tank,0.0,0.0,0.001609454104643999,0.0,0.0,0.0,0.0,0.0,10.2775582063057,0.0,0.0,0.0 -6949,my_reservoir,2011-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6950,gw1,2011-07-19,262.3879028945153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6951,gw2,2011-07-19,262.6120971054847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6952,my_sewer,2011-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6953,my_land,2011-07-20,0.8450960450706974,percolation,0.0,0.0,0.00017111289797743285,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -6954,my_land,2011-07-20,0.08855995231218687,subsurface_runoff,0.0,0.0,1.9168750143122532e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6955,my_land,2011-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.28928571,0.0,0.0,0.0 -6956,my_groundwater,2011-07-20,14.130825829041651,tank,0.0,0.0,0.0016089138390912151,0.0,0.0,0.0,0.0,0.0,10.282441754912346,0.0,0.0,0.0 -6957,my_reservoir,2011-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6958,gw1,2011-07-20,262.3886502085519,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6959,gw2,2011-07-20,262.6113497914481,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6960,my_sewer,2011-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6961,my_land,2011-07-21,0.8281941241692834,percolation,0.0,0.0,0.0001676906400178842,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -6962,my_land,2011-07-21,0.0708479618497495,subsurface_runoff,0.0,0.0,1.5335000114498026e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6963,my_land,2011-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.35357143,0.0,0.0,0.0 -6964,my_groundwater,2011-07-21,14.112358430568207,tank,0.0,0.0,0.0016083052568081368,0.0,0.0,0.0,0.0,0.0,10.287228061086887,0.0,0.0,0.0 -6965,my_reservoir,2011-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6966,gw1,2011-07-21,262.3893925404949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6967,gw2,2011-07-21,262.6106074595051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6968,my_sewer,2011-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6969,my_land,2011-07-22,0.8116302416858977,percolation,0.0,0.0,0.0001643368272175265,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -6970,my_land,2011-07-22,0.056678369479799595,subsurface_runoff,0.0,0.0,1.2268000091598421e-05,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6971,my_land,2011-07-22,3.6274225629160084e-20,surface_runoff,0.0,0.0,8.856012116494161e-24,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -6972,my_groundwater,2011-07-22,14.093600007268964,tank,0.0,0.0,0.0016076299219344732,0.0,0.0,0.0,0.0,0.0,10.291919273075317,0.0,0.0,0.0 -6973,my_reservoir,2011-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6974,gw1,2011-07-22,262.3901299235583,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6975,gw2,2011-07-22,262.6098700764417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6976,my_sewer,2011-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6977,my_land,2011-07-23,0.7953976368521798,percolation,0.0,0.0,0.00016105009067317598,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -6978,my_land,2011-07-23,0.04534269558383967,subsurface_runoff,0.0,0.0,9.814400073278737e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6979,my_land,2011-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -6980,my_groundwater,2011-07-23,14.074558030572426,tank,0.0,0.0,0.0016068893668326268,0.0,0.0,0.0,0.0,0.0,10.296517483808003,0.0,0.0,0.0 -6981,my_reservoir,2011-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6982,gw1,2011-07-23,262.3908623907346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6983,gw2,2011-07-23,262.6091376092654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6984,my_sewer,2011-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6985,my_land,2011-07-24,0.7794896841151362,percolation,0.0,0.0,0.00015782908885971246,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -6986,my_land,2011-07-24,0.03627415646707174,subsurface_runoff,0.0,0.0,7.85152005862299e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -6987,my_land,2011-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -6988,my_groundwater,2011-07-24,14.055239818351195,tank,0.0,0.0,0.0016060850927244752,0.0,0.0,0.0,0.0,0.0,10.301024732612587,0.0,0.0,0.0 -6989,my_reservoir,2011-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6990,gw1,2011-07-24,262.3915899747964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6991,gw2,2011-07-24,262.6084100252036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6992,my_sewer,2011-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -6993,my_land,2011-07-25,0.7638998904328335,percolation,0.0,0.0,0.0001546725070825182,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -6994,my_land,2011-07-25,0.02901932517365739,subsurface_runoff,0.0,0.0,6.281216046898392e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -6995,my_land,2011-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -6996,my_groundwater,2011-07-25,14.035652538003413,tank,0.0,0.0,0.0016052185703154152,0.0,0.0,0.0,0.0,0.0,10.305443006863314,0.0,0.0,0.0 -6997,my_reservoir,2011-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6998,gw1,2011-07-25,262.3923127082977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -6999,gw2,2011-07-25,262.6076872917023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7000,my_sewer,2011-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7001,my_land,2011-07-26,0.7486218926241768,percolation,0.0,0.0,0.00015157905694086784,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7002,my_land,2011-07-26,0.023215460138925913,subsurface_runoff,0.0,0.0,5.0249728375187134e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7003,my_land,2011-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7004,my_groundwater,2011-07-26,14.015803209472539,tank,0.0,0.0,0.001604291240405923,0.0,0.0,0.0,0.0,0.0,10.309774243569562,0.0,0.0,0.0 -7005,my_reservoir,2011-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7006,gw1,2011-07-26,262.3930306235757,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7007,gw2,2011-07-26,262.6069693764243,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7008,my_sewer,2011-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7009,my_land,2011-07-27,0.7336494547716932,percolation,0.0,0.0,0.0001485474758020505,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7010,my_land,2011-07-27,0.01857236811114073,subsurface_runoff,0.0,0.0,4.019978270014971e-06,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7011,my_land,2011-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7012,my_groundwater,2011-07-27,13.99569870820671,tank,0.0,0.0,0.0016033045144908783,0.0,0.0,0.0,0.0,0.0,10.314020330906205,0.0,0.0,0.0 -7013,my_reservoir,2011-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7014,gw1,2011-07-27,262.3937437527519,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7015,gw2,2011-07-27,262.6062562472481,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7016,my_sewer,2011-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7017,my_land,2011-07-28,0.7189764656762593,percolation,0.0,0.0,0.00014557652628600947,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7018,my_land,2011-07-28,0.014857894488912584,subsurface_runoff,0.0,0.0,3.215982616011977e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7019,my_land,2011-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7020,my_groundwater,2011-07-28,13.975345768058888,tank,0.0,0.0,0.001602259775346902,0.0,0.0,0.0,0.0,0.0,10.318183109688254,0.0,0.0,0.0 -7021,my_reservoir,2011-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7022,gw1,2011-07-28,262.39445212773353,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7023,gw2,2011-07-28,262.60554787226647,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7024,my_sewer,2011-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7025,my_land,2011-07-29,0.7045969363627341,percolation,0.0,0.0,0.00014266499576028928,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7026,my_land,2011-07-29,0.011886315591130066,subsurface_runoff,0.0,0.0,2.5727860928095815e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7027,my_land,2011-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7028,my_groundwater,2011-07-29,13.954750984128982,tank,0.0,0.0,0.0016011583776079407,0.0,0.0,0.0,0.0,0.0,10.322264374792208,0.0,0.0,0.0 -7029,my_reservoir,2011-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7030,gw1,2011-07-29,262.3951557802153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7031,gw2,2011-07-29,262.6048442197847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7032,my_sewer,2011-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7033,my_land,2011-07-30,0.6905049976354795,percolation,0.0,0.0,0.00013981169584508348,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7034,my_land,2011-07-30,0.009509052472904053,subsurface_runoff,0.0,0.0,2.058228874247665e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7035,my_land,2011-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7036,my_groundwater,2011-07-30,13.933920815549095,tank,0.0,0.0,0.0016000016483293388,0.0,0.0,0.0,0.0,0.0,10.326265876526287,0.0,0.0,0.0 -7037,my_reservoir,2011-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7038,gw1,2011-07-30,262.3958547416805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7039,gw2,2011-07-30,262.6041452583195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7040,my_sewer,2011-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7041,my_land,2011-07-31,0.6766948976827699,percolation,0.0,0.0,0.0001370154619281818,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7042,my_land,2011-07-31,0.0076072419783232426,subsurface_runoff,0.0,0.0,1.6465830993981322e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7043,my_land,2011-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7044,my_groundwater,2011-07-31,13.912861588213051,tank,0.0,0.0,0.0015987908875406249,0.0,0.0,0.0,0.0,0.0,10.330189321951778,0.0,0.0,0.0 -7045,my_reservoir,2011-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7046,gw1,2011-07-31,262.3965490434027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7047,gw2,2011-07-31,262.6034509565973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7048,my_sewer,2011-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7049,my_land,2011-08-01,0.6631609997291145,percolation,0.0,0.0,0.00013427515268961816,0.0,0.0,0.0,0.0,0.0,14.288812218970246,0.0,0.0,0.0 -7050,my_land,2011-08-01,0.006085793582658594,subsurface_runoff,0.0,0.0,1.3172664795185058e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7051,my_land,2011-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7052,my_groundwater,2011-08-01,13.89157949745129,tank,0.0,0.0,0.0015975273687872404,0.0,0.0,0.0,0.0,0.0,10.334036376157474,0.0,0.0,0.0 -7053,my_reservoir,2011-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7054,gw1,2011-08-01,262.3972387164467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7055,gw2,2011-08-01,262.6027612835533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7056,my_sewer,2011-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.563815789473686,0.0,0.0,0.0 -7057,my_land,2011-08-02,0.6498977797345322,percolation,0.0,0.0,0.0001315896496358258,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7058,my_land,2011-08-02,0.004868634866126875,subsurface_runoff,0.0,0.0,1.0538131836148047e-06,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7059,my_land,2011-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7060,my_groundwater,2011-08-02,13.870080610652257,tank,0.0,0.0,0.0015962123396614301,0.0,0.0,0.0,0.0,0.0,10.337808663489188,0.0,0.0,0.0 -7061,my_reservoir,2011-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7062,gw1,2011-08-02,262.3979237916704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7063,gw2,2011-08-02,262.6020762083296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7064,my_sewer,2011-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.90357143,0.0,0.0,0.0 -7065,my_land,2011-08-03,0.6368998241398416,percolation,0.0,0.0,0.0001289578566431093,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7066,my_land,2011-08-03,0.0038949078929015005,subsurface_runoff,0.0,0.0,8.430505468918437e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7067,my_land,2011-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7068,my_groundwater,2011-08-03,13.84837086983133,tank,0.0,0.0,0.0015948470223225114,0.0,0.0,0.0,0.0,0.0,10.341507768736166,0.0,0.0,0.0 -7069,my_reservoir,2011-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7070,gw1,2011-08-03,262.39860429972595,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7071,gw2,2011-08-03,262.60139570027405,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7072,my_sewer,2011-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 -7073,my_land,2011-08-04,0.6241618276570448,percolation,0.0,0.0,0.0001263786995102471,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7074,my_land,2011-08-04,0.0031159263143212003,subsurface_runoff,0.0,0.0,6.74440437513475e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7075,my_land,2011-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7076,my_groundwater,2011-08-04,13.826456094148341,tank,0.0,0.0,0.001593432614006735,0.0,0.0,0.0,0.0,0.0,10.345135238276198,0.0,0.0,0.0 -7077,my_reservoir,2011-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7078,gw1,2011-08-04,262.3992802710611,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7079,gw2,2011-08-04,262.6007197289389,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7080,my_sewer,2011-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 -7081,my_land,2011-08-05,0.6116785911039039,percolation,0.0,0.0,0.00012385112552004216,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7082,my_land,2011-08-05,0.0024927410514569604,subsurface_runoff,0.0,0.0,5.3955235001078e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7083,my_land,2011-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.782471997686095,0.0,0.0,0.0 -7084,my_groundwater,2011-08-05,13.804341982374728,tank,0.0,0.0,0.0015919702875269476,0.0,0.0,0.0,0.0,0.0,10.34869258118108,0.0,0.0,0.0 -7085,my_reservoir,2011-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7086,gw1,2011-08-05,262.3999517359207,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7087,gw2,2011-08-05,262.6000482640793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7088,my_sewer,2011-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43214286,0.0,0.0,0.0 -7089,my_land,2011-08-06,0.5994450192818258,percolation,0.0,0.0,0.00012137410300964131,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7090,my_land,2011-08-06,0.0019941928411655683,subsurface_runoff,0.0,0.0,4.31641880008624e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7091,my_land,2011-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 -7092,my_groundwater,2011-08-06,13.782034115311314,tank,0.0,0.0,0.001590461191762255,0.0,0.0,0.0,0.0,0.0,10.352181270284063,0.0,0.0,0.0 -7093,my_reservoir,2011-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7094,gw1,2011-08-06,262.4006187243479,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7095,gw2,2011-08-06,262.5993812756521,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7096,my_sewer,2011-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7097,my_land,2011-08-07,0.5874561188961893,percolation,0.0,0.0,0.00011894662094944849,0.0,0.0,0.0,0.0,0.0,14.288812218970245,0.0,0.0,0.0 -7098,my_land,2011-08-07,0.0015953542729324546,subsurface_runoff,0.0,0.0,3.453135040068992e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7099,my_land,2011-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 -7100,my_groundwater,2011-08-07,13.759537958157708,tank,0.0,0.0,0.0015889064521378918,0.0,0.0,0.0,0.0,0.0,10.355602743210785,0.0,0.0,0.0 -7101,my_reservoir,2011-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7102,gw1,2011-08-07,262.4012812661856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7103,gw2,2011-08-07,262.5987187338144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7104,my_sewer,2011-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7105,my_land,2011-08-08,0.5757069965182655,percolation,0.0,0.0,0.00011656768853045952,0.0,0.0,0.0,0.0,0.0,14.288812218970243,0.0,0.0,0.0 -7106,my_land,2011-08-08,0.0012762834183459638,subsurface_runoff,0.0,0.0,2.7625080320551937e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7107,my_land,2011-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 -7108,my_groundwater,2011-08-08,13.736858862834291,tank,0.0,0.0,0.0015873071710954885,0.0,0.0,0.0,0.0,0.0,10.358958403375189,0.0,0.0,0.0 -7109,my_reservoir,2011-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7110,gw1,2011-08-08,262.4019393910777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7111,gw2,2011-08-08,262.5980606089223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7112,my_sewer,2011-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7113,my_land,2011-08-09,0.5641928565879002,percolation,0.0,0.0,0.00011423633475985033,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7114,my_land,2011-08-09,0.001021026734676771,subsurface_runoff,0.0,0.0,2.210006425644155e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7115,my_land,2011-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.48928571,0.0,0.0,0.0 -7116,my_groundwater,2011-08-09,13.714002070257745,tank,0.0,0.0,0.0015856644285539324,0.0,0.0,0.0,0.0,0.0,10.362249620941773,0.0,0.0,0.0 -7117,my_reservoir,2011-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7118,gw1,2011-08-09,262.4025931284705,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7119,gw2,2011-08-09,262.5974068715295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7120,my_sewer,2011-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7121,my_land,2011-08-10,0.5529089994561421,percolation,0.0,0.0,0.00011195160806465332,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7122,my_land,2011-08-10,0.0008168213877414168,subsurface_runoff,0.0,0.0,1.7680051405153238e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7123,my_land,2011-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7124,my_groundwater,2011-08-10,13.69097271257103,tank,0.0,0.0,0.0015839792823610067,0.0,0.0,0.0,0.0,0.0,10.365477733755558,0.0,0.0,0.0 -7125,my_reservoir,2011-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7126,gw1,2011-08-10,262.40324250761404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7127,gw2,2011-08-10,262.59675749238596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7128,my_sewer,2011-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7129,my_land,2011-08-11,0.5418508194670193,percolation,0.0,0.0,0.00010971257590336025,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7130,my_land,2011-08-11,0.0006534571101931335,subsurface_runoff,0.0,0.0,1.4144041124122591e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7131,my_land,2011-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7132,my_groundwater,2011-08-11,13.667775815328753,tank,0.0,0.0,0.0015822527687359938,0.0,0.0,0.0,0.0,0.0,10.368644048240997,0.0,0.0,0.0 -7133,my_reservoir,2011-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7134,gw1,2011-08-11,262.4038875575633,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7135,gw2,2011-08-11,262.5961124424367,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7136,my_sewer,2011-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7137,my_land,2011-08-12,0.5310138030776789,percolation,0.0,0.0,0.00010751832438529304,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7138,my_land,2011-08-12,0.0005227656881545068,subsurface_runoff,0.0,0.0,1.1315232899298073e-07,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7139,my_land,2011-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7140,my_groundwater,2011-08-12,13.644416299638797,tank,0.0,0.0,0.001580485902703426,0.0,0.0,0.0,0.0,0.0,10.371749840271066,0.0,0.0,0.0 -7141,my_reservoir,2011-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7142,gw1,2011-08-12,262.40452830717953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7143,gw2,2011-08-12,262.59547169282047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7144,my_sewer,2011-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7145,my_land,2011-08-13,0.5203935270161253,percolation,0.0,0.0,0.00010536795789758717,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7146,my_land,2011-08-13,0.00041821255052360544,subsurface_runoff,0.0,0.0,9.052186319438459e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 -7147,my_land,2011-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7148,my_groundwater,2011-08-13,13.6208989842611,tank,0.0,0.0,0.0015786796785181541,0.0,0.0,0.0,0.0,0.0,10.374796356007694,0.0,0.0,0.0 -7149,my_reservoir,2011-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7150,gw1,2011-08-13,262.40516478513166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7151,gw2,2011-08-13,262.59483521486834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7152,my_sewer,2011-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7153,my_land,2011-08-14,0.5099856564758027,percolation,0.0,0.0,0.00010326059873963544,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7154,my_land,2011-08-14,0.00033457004041888435,subsurface_runoff,0.0,0.0,7.241749055550767e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 -7155,my_land,2011-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7156,my_groundwater,2011-08-14,13.59722858766442,tank,0.0,0.0,0.0015768350700819157,0.0,0.0,0.0,0.0,0.0,10.377784812714626,0.0,0.0,0.0 -7157,my_reservoir,2011-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7158,gw1,2011-08-14,262.4057970198975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7159,gw2,2011-08-14,262.5942029801025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7160,my_sewer,2011-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7161,my_land,2011-08-15,0.4997859433462867,percolation,0.0,0.0,0.00010119538676484272,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7162,my_land,2011-08-15,0.0002676560323351075,subsurface_runoff,0.0,0.0,5.793399244440614e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732367,0.0,0.0,0.0 -7163,my_land,2011-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7164,my_groundwater,2011-08-15,13.573409730041952,tank,0.0,0.0,0.0015749530313515666,0.0,0.0,0.0,0.0,0.0,10.380716399543795,0.0,0.0,0.0 -7165,my_reservoir,2011-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7166,gw1,2011-08-15,262.4064250397648,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7167,gw2,2011-08-15,262.5935749602352,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7168,my_sewer,2011-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7169,my_land,2011-08-16,0.48979022447936094,percolation,0.0,0.0,9.917147902954586e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7170,my_land,2011-08-16,0.000214124825868086,subsurface_runoff,0.0,0.0,4.634719395552491e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7171,my_land,2011-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7172,my_groundwater,2011-08-16,13.549446935286605,tank,0.0,0.0,0.0015730344967391464,0.0,0.0,0.0,0.0,0.0,10.383592278296215,0.0,0.0,0.0 -7173,my_reservoir,2011-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7174,gw1,2011-08-16,262.40704887283306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7175,gw2,2011-08-16,262.59295112716694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7176,my_sewer,2011-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01785714,0.0,0.0,0.0 -7177,my_land,2011-08-17,0.4799944199897737,percolation,0.0,0.0,9.718804944895495e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7178,my_land,2011-08-17,0.0001712998606944688,subsurface_runoff,0.0,0.0,3.707775516441993e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7179,my_land,2011-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7180,my_groundwater,2011-08-17,13.525344632926751,tank,0.0,0.0,0.001571080381503938,0.0,0.0,0.0,0.0,0.0,10.386413584158339,0.0,0.0,0.0 -7181,my_reservoir,2011-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7182,gw1,2011-08-17,262.40766854701417,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7183,gw2,2011-08-17,262.59233145298583,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7184,my_sewer,2011-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -7185,my_land,2011-08-18,0.47039453158997824,percolation,0.0,0.0,9.524428845997585e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7186,my_land,2011-08-18,0.00013703988855557503,subsurface_runoff,0.0,0.0,2.966220413153594e-08,0.0,0.0,0.0,0.0,0.0,15.76890191073237,0.0,0.0,0.0 -7187,my_land,2011-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7188,my_groundwater,2011-08-18,13.501107160023231,tank,0.0,0.0,0.0015690915821366849,0.0,0.0,0.0,0.0,0.0,10.38918142641485,0.0,0.0,0.0 -7189,my_reservoir,2011-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7190,gw1,2011-08-18,262.4082840900341,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7191,gw2,2011-08-18,262.5917159099659,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7192,my_sewer,2011-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -7193,my_land,2011-08-19,0.46098664095817865,percolation,0.0,0.0,9.333940269077634e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7194,my_land,2011-08-19,0.00010963191084446002,subsurface_runoff,0.0,0.0,2.3729763305228755e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7195,my_land,2011-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.17142857,0.0,0.0,0.0 -7196,my_groundwater,2011-08-19,13.476738763028393,tank,0.0,0.0,0.0015670689767361197,0.0,0.0,0.0,0.0,0.0,10.391896889138753,0.0,0.0,0.0 -7197,my_reservoir,2011-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7198,gw1,2011-08-19,262.4088955294339,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7199,gw2,2011-08-19,262.5911044705661,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7200,my_sewer,2011-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -7201,my_land,2011-08-20,0.4517669081390151,percolation,0.0,0.0,9.147261463696081e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7202,my_land,2011-08-20,8.770552867556802e-05,subsurface_runoff,0.0,0.0,1.8983810644183004e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732371,0.0,0.0,0.0 -7203,my_land,2011-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.06428571,0.0,0.0,0.0 -7204,my_groundwater,2011-08-20,13.452243599607938,tank,0.0,0.0,0.0015650134253779604,0.0,0.0,0.0,0.0,0.0,10.39456103185957,0.0,0.0,0.0 -7205,my_reservoir,2011-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7206,gw1,2011-08-20,262.409502892571,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7207,gw2,2011-08-20,262.590497107429,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7208,my_sewer,2011-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.40714286,0.0,0.0,0.0 -7209,my_land,2011-08-21,0.4427315699762348,percolation,0.0,0.0,8.96431623442216e-05,0.0,0.0,0.0,0.0,0.0,14.288812218970241,0.0,0.0,0.0 -7210,my_land,2011-08-21,7.016442294045442e-05,subsurface_runoff,0.0,0.0,1.5187048515346403e-08,0.0,0.0,0.0,0.0,0.0,15.768901910732373,0.0,0.0,0.0 -7211,my_land,2011-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.06428571,0.0,0.0,0.0 -7212,my_groundwater,2011-08-21,13.427625740426292,tank,0.0,0.0,0.0015629257704765228,0.0,0.0,0.0,0.0,0.0,10.39717489021055,0.0,0.0,0.0 -7213,my_reservoir,2011-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7214,gw1,2011-08-21,262.4101062066205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7215,gw2,2011-08-21,262.5898937933795,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7216,my_sewer,2011-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 -7217,my_land,2011-08-22,0.5342955506812669,percolation,0.0,0.0,0.00011174851190645375,0.0,0.0,0.0,0.0,0.0,14.438160431827763,0.0,0.0,0.0 -7218,my_land,2011-08-22,0.02738092394775558,subsurface_runoff,0.0,0.0,6.515064688912029e-06,0.0,0.0,0.0,0.0,0.0,15.084851838853602,0.0,0.0,0.0 -7219,my_land,2011-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.72142857,0.0,0.0,0.0 -7220,my_groundwater,2011-08-22,13.40493340692838,tank,0.0,0.0,0.0015612933364712843,0.0,0.0,0.0,0.0,0.0,10.400453736198322,0.0,0.0,0.0 -7221,my_reservoir,2011-08-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7222,gw1,2011-08-22,262.41070549857636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7223,gw2,2011-08-22,262.58929450142364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7224,my_sewer,2011-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.721428569999999,0.0,0.0,0.0 -7225,my_land,2011-08-23,0.5236096396676415,percolation,0.0,0.0,0.00010951354166832468,0.0,0.0,0.0,0.0,0.0,14.438160431827763,0.0,0.0,0.0 -7226,my_land,2011-08-23,0.021904739158204463,subsurface_runoff,0.0,0.0,5.212051751129623e-06,0.0,0.0,0.0,0.0,0.0,15.084851838853602,0.0,0.0,0.0 -7227,my_land,2011-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.549999999999999,0.0,0.0,0.0 -7228,my_groundwater,2011-08-23,13.382080269647151,tank,0.0,0.0,0.0015596194859426398,0.0,0.0,0.0,0.0,0.0,10.40366988100879,0.0,0.0,0.0 -7229,my_reservoir,2011-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7230,gw1,2011-08-23,262.41130079525254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7231,gw2,2011-08-23,262.58869920474746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7232,my_sewer,2011-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 -7233,my_land,2011-08-24,0.8022137313719752,percolation,0.0,0.0,0.00017332181810523174,0.0,0.0,0.0,0.0,0.0,14.57465306743835,0.0,0.0,0.0 -7234,my_land,2011-08-24,0.09618400479532178,subsurface_runoff,0.0,0.0,2.2128429773767256e-05,0.0,0.0,0.0,0.0,0.0,14.865751150375912,0.0,0.0,0.0 -7235,my_land,2011-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.528571429999998,0.0,0.0,0.0 -7236,my_groundwater,2011-08-24,13.364955848504534,tank,0.0,0.0,0.0015592487742392112,0.0,0.0,0.0,0.0,0.0,10.408766449049814,0.0,0.0,0.0 -7237,my_reservoir,2011-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7238,gw1,2011-08-24,262.4118921232842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7239,gw2,2011-08-24,262.5881078767158,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7240,my_sewer,2011-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.526879700789474,0.0,0.0,0.0 -7241,my_land,2011-08-25,0.9123771389328332,percolation,0.0,0.0,0.00019852924925542595,0.0,0.0,0.0,0.0,0.0,14.599509006487983,0.0,0.0,0.0 -7242,my_land,2011-08-25,0.11128943028205267,subsurface_runoff,0.0,0.0,2.5505156747530493e-05,0.0,0.0,0.0,0.0,0.0,14.831371654599478,0.0,0.0,0.0 -7243,my_land,2011-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.507142859999998,0.0,0.0,0.0 -7244,my_groundwater,2011-08-25,13.35011685064012,tank,0.0,0.0,0.0015593921405920271,0.0,0.0,0.0,0.0,0.0,10.414596832719278,0.0,0.0,0.0 -7245,my_reservoir,2011-08-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7246,gw1,2011-08-25,262.41247950912896,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7247,gw2,2011-08-25,262.58752049087104,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7248,my_sewer,2011-08-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.485714290000002,0.0,0.0,0.0 -7249,my_land,2011-08-26,1.4347812528059192,percolation,0.0,0.0,0.0003111762911619652,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -7250,my_land,2011-08-26,0.23614764127373544,subsurface_runoff,0.0,0.0,5.2136812987588414e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935223,0.0,0.0,0.0 -7251,my_land,2011-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.485714289999999,0.0,0.0,0.0 -7252,my_groundwater,2011-08-26,13.34594960544564,tank,0.0,0.0,0.001561828320453487,0.0,0.0,0.0,0.0,0.0,10.423892282932346,0.0,0.0,0.0 -7253,my_reservoir,2011-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7254,gw1,2011-08-26,262.4130629790681,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7255,gw2,2011-08-26,262.5869370209319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7256,my_sewer,2011-08-27,3.469446951953614e-18,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7257,my_land,2011-08-27,1.4060856277498008,percolation,0.0,0.0,0.00030495276533872587,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 -7258,my_land,2011-08-27,0.18891811301898837,subsurface_runoff,0.0,0.0,4.170945039007073e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935223,0.0,0.0,0.0 -7259,my_land,2011-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.464285710000002,0.0,0.0,0.0 -7260,my_groundwater,2011-08-27,13.341208617425503,tank,0.0,0.0,0.0015641317166610344,0.0,0.0,0.0,0.0,0.0,10.432985117732626,0.0,0.0,0.0 -7261,my_reservoir,2011-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7262,gw1,2011-08-27,262.4136425592077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7263,gw2,2011-08-27,262.5863574407923,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7264,my_sewer,2011-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7265,my_land,2011-08-28,1.3779639151948049,percolation,0.0,0.0,0.00029885371003195133,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 -7266,my_land,2011-08-28,0.1511344904151907,subsurface_runoff,0.0,0.0,3.336756031205658e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -7267,my_land,2011-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 -7268,my_groundwater,2011-08-28,13.335907004155548,tank,0.0,0.0,0.0015663051950378893,0.0,0.0,0.0,0.0,0.0,10.44188051202535,0.0,0.0,0.0 -7269,my_reservoir,2011-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7270,gw1,2011-08-28,262.41421827547964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7271,gw2,2011-08-28,262.58578172452036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7272,my_sewer,2011-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7273,my_land,2011-08-29,1.3504046368909088,percolation,0.0,0.0,0.0002928766358313123,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -7274,my_land,2011-08-29,0.12090759233215256,subsurface_runoff,0.0,0.0,2.6694048249645265e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -7275,my_land,2011-08-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 -7276,my_groundwater,2011-08-29,13.330057616753294,tank,0.0,0.0,0.001568351563565432,0.0,0.0,0.0,0.0,0.0,10.450583478928952,0.0,0.0,0.0 -7277,my_reservoir,2011-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7278,gw1,2011-08-29,262.4147901536431,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7279,gw2,2011-08-29,262.5852098463569,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7280,my_sewer,2011-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7281,my_land,2011-08-30,1.3233965441530906,percolation,0.0,0.0,0.00028701910311468607,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -7282,my_land,2011-08-30,0.09672607386572205,subsurface_runoff,0.0,0.0,2.1355238599716212e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -7283,my_land,2011-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 -7284,my_groundwater,2011-08-30,13.323673045217383,tank,0.0,0.0,0.001570273573541353,0.0,0.0,0.0,0.0,0.0,10.459098875994052,0.0,0.0,0.0 -7285,my_reservoir,2011-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7286,gw1,2011-08-30,262.41535821928545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7287,gw2,2011-08-30,262.58464178071455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7288,my_sewer,2011-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7289,my_land,2011-08-31,1.2969286132700288,percolation,0.0,0.0,0.00028127872105239237,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -7290,my_land,2011-08-31,0.07738085909257764,subsurface_runoff,0.0,0.0,1.708419087977297e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -7291,my_land,2011-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 -7292,my_groundwater,2011-08-31,13.316765623660194,tank,0.0,0.0,0.0015720739207146376,0.0,0.0,0.0,0.0,0.0,10.467431411136289,0.0,0.0,0.0 -7293,my_reservoir,2011-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7294,gw1,2011-08-31,262.41592249782354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7295,gw2,2011-08-31,262.58407750217646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7296,my_sewer,2011-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7297,my_land,2011-09-01,1.2709900410046282,percolation,0.0,0.0,0.00027565314663134454,0.0,0.0,0.0,0.0,0.0,14.66194039498662,0.0,0.0,0.0 -7298,my_land,2011-09-01,0.061904687274062106,subsurface_runoff,0.0,0.0,1.3667352703818376e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -7299,my_land,2011-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 -7300,my_groundwater,2011-09-01,13.30934743543578,tank,0.0,0.0,0.0015737552463978462,0.0,0.0,0.0,0.0,0.0,10.475585648298248,0.0,0.0,0.0 -7301,my_reservoir,2011-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7302,gw1,2011-09-01,262.4164830145047,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7303,gw2,2011-09-01,262.5835169854953,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7304,my_sewer,2011-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7305,my_land,2011-09-02,1.2455702401845357,percolation,0.0,0.0,0.00027014008369871765,0.0,0.0,0.0,0.0,0.0,14.661940394986619,0.0,0.0,0.0 -7306,my_land,2011-09-02,0.04952374981924969,subsurface_runoff,0.0,0.0,1.09338821630547e-05,0.0,0.0,0.0,0.0,0.0,14.790141205935225,0.0,0.0,0.0 -7307,my_land,2011-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.44285714,0.0,0.0,0.0 -7308,my_groundwater,2011-09-02,13.301430318165233,tank,0.0,0.0,0.001575320138557147,0.0,0.0,0.0,0.0,0.0,10.483566012854874,0.0,0.0,0.0 -7309,my_reservoir,2011-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7310,gw1,2011-09-02,262.417039794408,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7311,gw2,2011-09-02,262.582960205592,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7312,my_sewer,2011-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.48571429,0.0,0.0,0.0 -7313,my_land,2011-09-03,1.2652836815826582,percolation,0.0,0.0,0.00027492214340264087,0.0,0.0,0.0,0.0,0.0,14.660590867944983,0.0,0.0,0.0 -7314,my_land,2011-09-03,0.05176181514841014,subsurface_runoff,0.0,0.0,1.1518496581572356e-05,0.0,0.0,0.0,0.0,0.0,14.751090140744864,0.0,0.0,0.0 -7315,my_land,2011-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.38571429,0.0,0.0,0.0 -7316,my_groundwater,2011-09-03,13.293934303030609,tank,0.0,0.0,0.0015769784675585936,0.0,0.0,0.0,0.0,0.0,10.491659175393076,0.0,0.0,0.0 -7317,my_reservoir,2011-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7318,gw1,2011-09-03,262.4175928624453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7319,gw2,2011-09-03,262.5824071375547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7320,my_sewer,2011-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.382142860000002,0.0,0.0,0.0 -7321,my_land,2011-09-04,1.3161988978725725,percolation,0.0,0.0,0.0002866610096334804,0.0,0.0,0.0,0.0,0.0,14.658611005197633,0.0,0.0,0.0 -7322,my_land,2011-09-04,0.06214983032867842,subsurface_runoff,0.0,0.0,1.3905221509854424e-05,0.0,0.0,0.0,0.0,0.0,14.709479798323954,0.0,0.0,0.0 -7323,my_land,2011-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.38214286,0.0,0.0,0.0 -7324,my_groundwater,2011-09-04,13.287493516265437,tank,0.0,0.0,0.0015788716205143785,0.0,0.0,0.0,0.0,0.0,10.500061776782127,0.0,0.0,0.0 -7325,my_reservoir,2011-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7326,gw1,2011-09-04,262.41814224336235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7327,gw2,2011-09-04,262.58185775663765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7328,my_sewer,2011-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.37857143,0.0,0.0,0.0 -7329,my_land,2011-09-05,1.4058129652923284,percolation,0.0,0.0,0.0003068142019271547,0.0,0.0,0.0,0.0,0.0,14.655985460958293,0.0,0.0,0.0 -7330,my_land,2011-09-05,0.08126763171252296,subsurface_runoff,0.0,0.0,1.8168098972875088e-05,0.0,0.0,0.0,0.0,0.0,14.67737406189234,0.0,0.0,0.0 -7331,my_land,2011-09-05,1.006448506041898e-18,surface_runoff,0.0,0.0,2.4571496729538523e-22,0.0,0.0,0.0,0.0,0.0,14.880783727278658,0.0,0.0,0.0 -7332,my_groundwater,2011-09-05,13.282893117839654,tank,0.0,0.0,0.001581170302002324,0.0,0.0,0.0,0.0,0.0,10.509015821408507,0.0,0.0,0.0 -7333,my_reservoir,2011-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7334,gw1,2011-09-05,262.4186879617399,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7335,gw2,2011-09-05,262.5813120382601,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7336,my_sewer,2011-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 -7337,my_land,2011-09-06,1.4639192494770839,percolation,0.0,0.0,0.0003198438158312562,0.0,0.0,0.0,0.0,0.0,14.653740710031727,0.0,0.0,0.0 -7338,my_land,2011-09-06,0.08847602196610052,subsurface_runoff,0.0,0.0,1.974968950282921e-05,0.0,0.0,0.0,0.0,0.0,14.661595733622194,0.0,0.0,0.0 -7339,my_land,2011-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 -7340,my_groundwater,2011-09-06,13.279487098337981,tank,0.0,0.0,0.0015837284824981688,0.0,0.0,0.0,0.0,0.0,10.518317222097531,0.0,0.0,0.0 -7341,my_reservoir,2011-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7342,gw1,2011-09-06,262.419230041995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7343,gw2,2011-09-06,262.580769958005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7344,my_sewer,2011-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.375,0.0,0.0,0.0 -7345,my_land,2011-09-07,1.4346408644875421,percolation,0.0,0.0,0.0003134469395146311,0.0,0.0,0.0,0.0,0.0,14.653740710031729,0.0,0.0,0.0 -7346,my_land,2011-09-07,0.07078081757288042,subsurface_runoff,0.0,0.0,1.579975160226337e-05,0.0,0.0,0.0,0.0,0.0,14.661595733622194,0.0,0.0,0.0 -7347,my_land,2011-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.307142859999999,0.0,0.0,0.0 -7348,my_groundwater,2011-09-07,13.275493569619204,tank,0.0,0.0,0.0015861500454177567,0.0,0.0,0.0,0.0,0.0,10.527414874402412,0.0,0.0,0.0 -7349,my_reservoir,2011-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7350,gw1,2011-09-07,262.41976850838165,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7351,gw2,2011-09-07,262.58023149161835,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7352,my_sewer,2011-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -7353,my_land,2011-09-08,1.5067555918262936,percolation,0.0,0.0,0.00032949938190211076,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 -7354,my_land,2011-09-08,0.08405527844701247,subsurface_runoff,0.0,0.0,1.8713646500252135e-05,0.0,0.0,0.0,0.0,0.0,14.629462538678176,0.0,0.0,0.0 -7355,my_land,2011-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -7356,my_groundwater,2011-09-08,13.272978074528764,tank,0.0,0.0,0.0015888923362929338,0.0,0.0,0.0,0.0,0.0,10.536936613302979,0.0,0.0,0.0 -7357,my_reservoir,2011-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7358,gw1,2011-09-08,262.42030338499245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7359,gw2,2011-09-08,262.57969661500755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7360,my_sewer,2011-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -7361,my_land,2011-09-09,1.4766204799897678,percolation,0.0,0.0,0.00032290939426406857,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 -7362,my_land,2011-09-09,0.06724422275760997,subsurface_runoff,0.0,0.0,1.4970917200201708e-05,0.0,0.0,0.0,0.0,0.0,14.629462538678176,0.0,0.0,0.0 -7363,my_land,2011-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.17142857,0.0,0.0,0.0 -7364,my_groundwater,2011-09-09,13.269855403399376,tank,0.0,0.0,0.0015914936181211487,0.0,0.0,0.0,0.0,0.0,10.546248543987154,0.0,0.0,0.0 -7365,my_reservoir,2011-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7366,gw1,2011-09-09,262.42083469575914,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7367,gw2,2011-09-09,262.57916530424086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7368,my_sewer,2011-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.23928571,0.0,0.0,0.0 -7369,my_land,2011-09-10,1.4470880703899724,percolation,0.0,0.0,0.0003164512063787872,0.0,0.0,0.0,0.0,0.0,14.64767854607408,0.0,0.0,0.0 -7370,my_land,2011-09-10,0.05379537820608797,subsurface_runoff,0.0,0.0,1.1976733760161367e-05,0.0,0.0,0.0,0.0,0.0,14.629462538678176,0.0,0.0,0.0 -7371,my_land,2011-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.10357143,0.0,0.0,0.0 -7372,my_groundwater,2011-09-10,13.266139343466673,tank,0.0,0.0,0.0015939569264914139,0.0,0.0,0.0,0.0,0.0,10.555356114385855,0.0,0.0,0.0 -7373,my_reservoir,2011-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7374,gw1,2011-09-10,262.4213624644541,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7375,gw2,2011-09-10,262.5786375355459,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7376,my_sewer,2011-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7377,my_land,2011-09-11,1.4868188301757146,percolation,0.0,0.0,0.0003254776475594958,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 -7378,my_land,2011-09-11,0.061722702889643585,subsurface_runoff,0.0,0.0,1.3759744915145232e-05,0.0,0.0,0.0,0.0,0.0,14.556652685648745,0.0,0.0,0.0 -7379,my_land,2011-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7380,my_groundwater,2011-09-11,13.263241378436584,tank,0.0,0.0,0.001596597829143361,0.0,0.0,0.0,0.0,0.0,10.564667730885366,0.0,0.0,0.0 -7381,my_reservoir,2011-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7382,gw1,2011-09-11,262.4218867146911,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7383,gw2,2011-09-11,262.5781132853089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7384,my_sewer,2011-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7385,my_land,2011-09-12,1.4570824535722002,percolation,0.0,0.0,0.0003189680946083059,0.0,0.0,0.0,0.0,0.0,14.635729231405517,0.0,0.0,0.0 -7386,my_land,2011-09-12,0.049378162311714865,subsurface_runoff,0.0,0.0,1.1007795932116185e-05,0.0,0.0,0.0,0.0,0.0,14.556652685648745,0.0,0.0,0.0 -7387,my_land,2011-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.96785714,0.0,0.0,0.0 -7388,my_groundwater,2011-09-12,13.259745310652498,tank,0.0,0.0,0.0015990996136393144,0.0,0.0,0.0,0.0,0.0,10.573774690980114,0.0,0.0,0.0 -7389,my_reservoir,2011-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7390,gw1,2011-09-12,262.4224074699265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7391,gw2,2011-09-12,262.5775925300735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7392,my_sewer,2011-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7393,my_land,2011-09-13,1.4757515457655377,percolation,0.0,0.0,0.00032333747114638946,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 -7394,my_land,2011-09-13,0.05251225536359818,subsurface_runoff,0.0,0.0,1.1731063529434366e-05,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 -7395,my_land,2011-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0 -7396,my_groundwater,2011-09-13,13.256638032414665,tank,0.0,0.0,0.0016016840916964106,0.0,0.0,0.0,0.0,0.0,10.582953049337966,0.0,0.0,0.0 -7397,my_reservoir,2011-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7398,gw1,2011-09-13,262.42292475346034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7399,gw2,2011-09-13,262.57707524653966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7400,my_sewer,2011-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7401,my_land,2011-09-14,1.446236514850227,percolation,0.0,0.0,0.00031687072172346167,0.0,0.0,0.0,0.0,0.0,14.623898852625459,0.0,0.0,0.0 -7402,my_land,2011-09-14,0.04200980429087854,subsurface_runoff,0.0,0.0,9.384850823547494e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 -7403,my_land,2011-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0 -7404,my_groundwater,2011-09-14,13.252937680671652,tank,0.0,0.0,0.0016041304640165399,0.0,0.0,0.0,0.0,0.0,10.591929962349777,0.0,0.0,0.0 -7405,my_reservoir,2011-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7406,gw1,2011-09-14,262.42343858843725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7407,gw2,2011-09-14,262.57656141156275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7408,my_sewer,2011-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7409,my_land,2011-09-15,1.4173117845532224,percolation,0.0,0.0,0.0003105333072889924,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 -7410,my_land,2011-09-15,0.03360784343270283,subsurface_runoff,0.0,0.0,7.507880658837995e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 -7411,my_land,2011-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0 -7412,my_groundwater,2011-09-15,13.248657754941235,tank,0.0,0.0,0.0016064417087548817,0.0,0.0,0.0,0.0,0.0,10.600710629481283,0.0,0.0,0.0 -7413,my_reservoir,2011-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7414,gw1,2011-09-15,262.4239489978477,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7415,gw2,2011-09-15,262.5760510021523,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7416,my_sewer,2011-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7417,my_land,2011-09-16,1.388965548862158,percolation,0.0,0.0,0.00030432264114321257,0.0,0.0,0.0,0.0,0.0,14.623898852625457,0.0,0.0,0.0 -7418,my_land,2011-09-16,0.026886274746162266,subsurface_runoff,0.0,0.0,6.006304527070396e-06,0.0,0.0,0.0,0.0,0.0,14.485775850825059,0.0,0.0,0.0 -7419,my_land,2011-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.69642857,0.0,0.0,0.0 -7420,my_groundwater,2011-09-16,13.243811480655717,tank,0.0,0.0,0.0016086207439634098,0.0,0.0,0.0,0.0,0.0,10.60930008548229,0.0,0.0,0.0 -7421,my_reservoir,2011-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7422,gw1,2011-09-16,262.4244560045287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7423,gw2,2011-09-16,262.5755439954713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7424,my_sewer,2011-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7425,my_land,2011-09-17,1.3657167198058429,percolation,0.0,0.0,0.00029927483957739343,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -7426,my_land,2011-09-17,0.022741803993100693,subsurface_runoff,0.0,0.0,5.087669814049548e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 -7427,my_land,2011-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.62857143,0.0,0.0,0.0 -7428,my_groundwater,2011-09-17,13.238504042321553,tank,0.0,0.0,0.0016106915727663268,0.0,0.0,0.0,0.0,0.0,10.617727032928851,0.0,0.0,0.0 -7429,my_reservoir,2011-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7430,gw1,2011-09-17,262.42495963116517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7431,gw2,2011-09-17,262.57504036883483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7432,my_sewer,2011-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7433,my_land,2011-09-18,1.338402385409726,percolation,0.0,0.0,0.00029328934278584557,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -7434,my_land,2011-09-18,0.018193443194480553,subsurface_runoff,0.0,0.0,4.070135851239638e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 -7435,my_land,2011-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.56071429,0.0,0.0,0.0 -7436,my_groundwater,2011-09-18,13.232653830775876,tank,0.0,0.0,0.0016126353768839798,0.0,0.0,0.0,0.0,0.0,10.625971741409467,0.0,0.0,0.0 -7437,my_reservoir,2011-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7438,gw1,2011-09-18,262.4254599002907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7439,gw2,2011-09-18,262.5745400997093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7440,my_sewer,2011-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03571429,0.0,0.0,0.0 -7441,my_land,2011-09-19,1.3116343377015314,percolation,0.0,0.0,0.0002874235559301287,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -7442,my_land,2011-09-19,0.014554754555584443,subsurface_runoff,0.0,0.0,3.2561086809917106e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 -7443,my_land,2011-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.49285714,0.0,0.0,0.0 -7444,my_groundwater,2011-09-19,13.226273323787861,tank,0.0,0.0,0.0016144549108303475,0.0,0.0,0.0,0.0,0.0,10.634038809144222,0.0,0.0,0.0 -7445,my_reservoir,2011-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7446,gw1,2011-09-19,262.4259568342888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7447,gw2,2011-09-19,262.5740431657112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7448,my_sewer,2011-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.424999999999999,0.0,0.0,0.0 -7449,my_land,2011-09-20,1.2854016509475008,percolation,0.0,0.0,0.0002816750848115261,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -7450,my_land,2011-09-20,0.011643803644467553,subsurface_runoff,0.0,0.0,2.6048869447933687e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 -7451,my_land,2011-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.49285714,0.0,0.0,0.0 -7452,my_groundwater,2011-09-20,13.219374745515536,tank,0.0,0.0,0.0016161528734940777,0.0,0.0,0.0,0.0,0.0,10.641932692790455,0.0,0.0,0.0 -7453,my_reservoir,2011-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7454,gw1,2011-09-20,262.42645045539354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7455,gw2,2011-09-20,262.57354954460646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7456,my_sewer,2011-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 -7457,my_land,2011-09-21,1.2596936179285507,percolation,0.0,0.0,0.00027604158311529556,0.0,0.0,0.0,0.0,0.0,14.62195439892353,0.0,0.0,0.0 -7458,my_land,2011-09-21,0.009315042915574043,subsurface_runoff,0.0,0.0,2.0839095558346948e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183245,0.0,0.0,0.0 -7459,my_land,2011-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48333333,0.0,0.0,0.0 -7460,my_groundwater,2011-09-21,13.211970071588148,tank,0.0,0.0,0.0016177319092523324,0.0,0.0,0.0,0.0,0.0,10.64965771279586,0.0,0.0,0.0 -7461,my_reservoir,2011-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7462,gw1,2011-09-21,262.42694078569093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7463,gw2,2011-09-21,262.57305921430907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7464,my_sewer,2011-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 -7465,my_land,2011-09-22,1.2344997455699798,percolation,0.0,0.0,0.00027052075145298963,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 -7466,my_land,2011-09-22,0.007452034332459234,subsurface_runoff,0.0,0.0,1.6671276446677559e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 -7467,my_land,2011-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48333333,0.0,0.0,0.0 -7468,my_groundwater,2011-09-22,13.204071034086851,tank,0.0,0.0,0.0016191946090623516,0.0,0.0,0.0,0.0,0.0,10.657218058509219,0.0,0.0,0.0 -7469,my_reservoir,2011-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7470,gw1,2011-09-22,262.42742784711965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7471,gw2,2011-09-22,262.57257215288035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7472,my_sewer,2011-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 -7473,my_land,2011-09-23,1.20980975065858,percolation,0.0,0.0,0.0002651103364239298,0.0,0.0,0.0,0.0,0.0,14.621954398923531,0.0,0.0,0.0 -7474,my_land,2011-09-23,0.005961627465967388,subsurface_runoff,0.0,0.0,1.3337021157342048e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 -7475,my_land,2011-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48333333,0.0,0.0,0.0 -7476,my_groundwater,2011-09-23,13.195689126425755,tank,0.0,0.0,0.0016205435115311828,0.0,0.0,0.0,0.0,0.0,10.66461779306148,0.0,0.0,0.0 -7477,my_reservoir,2011-09-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7478,gw1,2011-09-23,262.4279116614722,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7479,gw2,2011-09-23,262.5720883385278,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7480,my_sewer,2011-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.425000000000002,0.0,0.0,0.0 -7481,my_land,2011-09-24,1.1856135556454086,percolation,0.0,0.0,0.00025980812969545125,0.0,0.0,0.0,0.0,0.0,14.621954398923533,0.0,0.0,0.0 -7482,my_land,2011-09-24,0.00476930197277391,subsurface_runoff,0.0,0.0,1.0669616925873638e-06,0.0,0.0,0.0,0.0,0.0,14.461488902183243,0.0,0.0,0.0 -7483,my_land,2011-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.658333329999998,0.0,0.0,0.0 -7484,my_groundwater,2011-09-24,13.186835608135329,tank,0.0,0.0,0.0016217811039640122,0.0,0.0,0.0,0.0,0.0,10.67186085802914,0.0,0.0,0.0 -7485,my_reservoir,2011-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7486,gw1,2011-09-24,262.4283922503957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7487,gw2,2011-09-24,262.5716077496043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7488,my_sewer,2011-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7489,my_land,2011-09-25,1.424831242803507,percolation,0.0,0.0,0.0003129393597707997,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -7490,my_land,2011-09-25,0.07536100845468355,subsurface_runoff,0.0,0.0,1.672496871985424e-05,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7491,my_land,2011-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.71666667,0.0,0.0,0.0 -7492,my_groundwater,2011-09-25,13.182874012272062,tank,0.0,0.0,0.0016240972024565792,0.0,0.0,0.0,0.0,0.0,10.680301699459047,0.0,0.0,0.0 -7493,my_reservoir,2011-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7494,gw1,2011-09-25,262.428869635393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7495,gw2,2011-09-25,262.571130364607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7496,my_sewer,2011-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7497,my_land,2011-09-26,1.396334617947437,percolation,0.0,0.0,0.00030668057257538374,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -7498,my_land,2011-09-26,0.060288806763746844,subsurface_runoff,0.0,0.0,1.3379974975883392e-05,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7499,my_land,2011-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.71666667,0.0,0.0,0.0 -7500,my_groundwater,2011-09-26,13.178342210535313,tank,0.0,0.0,0.001626280099677865,0.0,0.0,0.0,0.0,0.0,10.688558361962889,0.0,0.0,0.0 -7501,my_reservoir,2011-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7502,gw1,2011-09-26,262.42934383782375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7503,gw2,2011-09-26,262.57065616217625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7504,my_sewer,2011-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7505,my_land,2011-09-27,1.3684079255884882,percolation,0.0,0.0,0.0003005469611238761,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -7506,my_land,2011-09-27,0.04823104541099747,subsurface_runoff,0.0,0.0,1.0703979980706714e-05,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7507,my_land,2011-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7508,my_groundwater,2011-09-27,13.173253230637027,tank,0.0,0.0,0.0016283326768515493,0.0,0.0,0.0,0.0,0.0,10.69663555708161,0.0,0.0,0.0 -7509,my_reservoir,2011-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7510,gw1,2011-09-27,262.42981487890495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7511,gw2,2011-09-27,262.57018512109505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7512,my_sewer,2011-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7513,my_land,2011-09-28,1.3410397670767185,percolation,0.0,0.0,0.00029453602190139853,0.0,0.0,0.0,0.0,0.0,14.508187602258834,0.0,0.0,0.0 -7514,my_land,2011-09-28,0.03858483632879798,subsurface_runoff,0.0,0.0,8.563183984565372e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7515,my_land,2011-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7516,my_groundwater,2011-09-28,13.167619835675925,tank,0.0,0.0,0.0016302577570338416,0.0,0.0,0.0,0.0,0.0,10.704537848759637,0.0,0.0,0.0 -7517,my_reservoir,2011-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7518,gw1,2011-09-28,262.43028277971223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7519,gw2,2011-09-28,262.56971722028777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7520,my_sewer,2011-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7521,my_land,2011-09-29,1.314218971735184,percolation,0.0,0.0,0.00028864530146337057,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -7522,my_land,2011-09-29,0.030867869063038386,subsurface_runoff,0.0,0.0,6.850547187652298e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7523,my_land,2011-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7524,my_groundwater,2011-09-29,13.161454529439915,tank,0.0,0.0,0.0016320581062781898,0.0,0.0,0.0,0.0,0.0,10.712269659030524,0.0,0.0,0.0 -7525,my_reservoir,2011-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7526,gw1,2011-09-29,262.4307475611808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7527,gw2,2011-09-29,262.5692524388192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7528,my_sewer,2011-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7529,my_land,2011-09-30,1.2879345923004804,percolation,0.0,0.0,0.00028287239543410314,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -7530,my_land,2011-09-30,0.02469429525043071,subsurface_runoff,0.0,0.0,5.480437750121838e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7531,my_land,2011-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7532,my_groundwater,2011-09-30,13.154769561602434,tank,0.0,0.0,0.0016337364347766886,0.0,0.0,0.0,0.0,0.0,10.71983527344041,0.0,0.0,0.0 -7533,my_reservoir,2011-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7534,gw1,2011-09-30,262.43120924410624,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7535,gw2,2011-09-30,262.56879075589376,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7536,my_sewer,2011-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7537,my_land,2011-10-01,1.2621759004544708,percolation,0.0,0.0,0.0002772149475254211,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -7538,my_land,2011-10-01,0.01975543620034457,subsurface_runoff,0.0,0.0,4.38435020009747e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7539,my_land,2011-10-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7540,my_groundwater,2011-10-01,13.147576932814822,tank,0.0,0.0,0.0016352953979786571,0.0,0.0,0.0,0.0,0.0,10.727238846223361,0.0,0.0,0.0 -7541,my_reservoir,2011-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7542,gw1,2011-10-01,262.4316678491455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7543,gw2,2011-10-01,262.5683321508545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7544,my_sewer,2011-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7545,my_land,2011-10-02,1.2369323824453815,percolation,0.0,0.0,0.0002716706485749127,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -7546,my_land,2011-10-02,0.015804348960275653,subsurface_runoff,0.0,0.0,3.507480160077976e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7547,my_land,2011-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7548,my_groundwater,2011-10-02,13.13988839969685,tank,0.0,0.0,0.0016367375976868426,0.0,0.0,0.0,0.0,0.0,10.7344844052417,0.0,0.0,0.0 -7549,my_reservoir,2011-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7550,gw1,2011-10-02,262.4321233968179,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7551,gw2,2011-10-02,262.5678766031821,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7552,my_sewer,2011-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7553,my_land,2011-10-03,1.212193734796474,percolation,0.0,0.0,0.00026623723560341444,0.0,0.0,0.0,0.0,0.0,14.508187602258836,0.0,0.0,0.0 -7554,my_land,2011-10-03,0.012643479168220523,subsurface_runoff,0.0,0.0,2.805984128062381e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7555,my_land,2011-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7556,my_groundwater,2011-10-03,13.131715479727394,tank,0.0,0.0,0.001638065583131695,0.0,0.0,0.0,0.0,0.0,10.741575856703774,0.0,0.0,0.0 -7557,my_reservoir,2011-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7558,gw1,2011-10-03,262.43257590750574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7559,gw2,2011-10-03,262.56742409249426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7560,my_sewer,2011-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.716666670000002,0.0,0.0,0.0 -7561,my_land,2011-10-04,1.1879498601005445,percolation,0.0,0.0,0.00026091249089134615,0.0,0.0,0.0,0.0,0.0,14.508187602258838,0.0,0.0,0.0 -7562,my_land,2011-10-04,0.010114783334576419,subsurface_runoff,0.0,0.0,2.244787302449905e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7563,my_land,2011-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7564,my_groundwater,2011-10-04,13.123069456037266,tank,0.0,0.0,0.0016392818520241537,0.0,0.0,0.0,0.0,0.0,10.748516989670769,0.0,0.0,0.0 -7565,my_reservoir,2011-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7566,gw1,2011-10-04,262.4330254014557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7567,gw2,2011-10-04,262.5669745985443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7568,my_sewer,2011-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7569,my_land,2011-10-05,1.1641908628985336,percolation,0.0,0.0,0.0002556942410735192,0.0,0.0,0.0,0.0,0.0,14.508187602258838,0.0,0.0,0.0 -7570,my_land,2011-10-05,0.008091826667661135,subsurface_runoff,0.0,0.0,1.795829841959924e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7571,my_land,2011-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.909375000000002,0.0,0.0,0.0 -7572,my_groundwater,2011-10-05,13.113961382106178,tank,0.0,0.0,0.0016403888515873757,0.0,0.0,0.0,0.0,0.0,10.755311480363536,0.0,0.0,0.0 -7573,my_reservoir,2011-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7574,gw1,2011-10-05,262.4334718987794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7575,gw2,2011-10-05,262.5665281012206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7576,my_sewer,2011-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7577,my_land,2011-10-06,1.140907045640563,percolation,0.0,0.0,0.00025058035625204883,0.0,0.0,0.0,0.0,0.0,14.50818760225884,0.0,0.0,0.0 -7578,my_land,2011-10-06,0.0064734613341289075,subsurface_runoff,0.0,0.0,1.4366638735679393e-06,0.0,0.0,0.0,0.0,0.0,14.028535079219782,0.0,0.0,0.0 -7579,my_land,2011-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.507142860000002,0.0,0.0,0.0 -7580,my_groundwater,2011-10-06,13.104402086365738,tank,0.0,0.0,0.001641388979567824,0.0,0.0,0.0,0.0,0.0,10.761962896279732,0.0,0.0,0.0 -7581,my_reservoir,2011-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7582,gw1,2011-10-06,262.4339154194542,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7583,gw2,2011-10-06,262.5660845805458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7584,my_sewer,2011-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7585,my_land,2011-10-07,1.1257589264050858,percolation,0.0,0.0,0.00024739356947017376,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7586,my_land,2011-10-07,0.007265849795829449,subsurface_runoff,0.0,0.0,1.6458808520967792e-06,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7587,my_land,2011-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.33571429,0.0,0.0,0.0 -7588,my_groundwater,2011-10-07,13.094558316437356,tank,0.0,0.0,0.0016423217333545472,0.0,0.0,0.0,0.0,0.0,10.76852207821207,0.0,0.0,0.0 -7589,my_reservoir,2011-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7590,gw1,2011-10-07,262.4343559833245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7591,gw2,2011-10-07,262.5656440166755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7592,my_sewer,2011-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7593,my_land,2011-10-08,1.103243747876984,percolation,0.0,0.0,0.0002424456980807703,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7594,my_land,2011-10-08,0.005812679836663559,subsurface_runoff,0.0,0.0,1.3167046816774235e-06,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7595,my_land,2011-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7596,my_groundwater,2011-10-08,13.084280811228043,tank,0.0,0.0,0.0016431514307320909,0.0,0.0,0.0,0.0,0.0,10.77494386690475,0.0,0.0,0.0 -7597,my_reservoir,2011-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7598,gw1,2011-10-08,262.43479361010236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7599,gw2,2011-10-08,262.56520638989764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7600,my_sewer,2011-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7601,my_land,2011-10-09,1.0811788729194445,percolation,0.0,0.0,0.00023759678411915488,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7602,my_land,2011-10-09,0.004650143869330848,subsurface_runoff,0.0,0.0,1.0533637453419388e-06,0.0,0.0,0.0,0.0,0.0,14.233419085825034,0.0,0.0,0.0 -7603,my_land,2011-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7604,my_groundwater,2011-10-09,13.07357982197012,tank,0.0,0.0,0.001643880343831972,0.0,0.0,0.0,0.0,0.0,10.781231559811271,0.0,0.0,0.0 -7605,my_reservoir,2011-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7606,gw1,2011-10-09,262.4352283193683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7607,gw2,2011-10-09,262.5647716806317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7608,my_sewer,2011-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7609,my_land,2011-10-10,1.0595552954610556,percolation,0.0,0.0,0.00023284484843677178,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7610,my_land,2011-10-10,0.0037201150954646782,subsurface_runoff,0.0,0.0,8.42690996273551e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7611,my_land,2011-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7612,my_groundwater,2011-10-10,13.062465390929937,tank,0.0,0.0,0.001644510698815569,0.0,0.0,0.0,0.0,0.0,10.78738835924322,0.0,0.0,0.0 -7613,my_reservoir,2011-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7614,gw1,2011-10-10,262.43566013057256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7615,gw2,2011-10-10,262.56433986942744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7616,my_sewer,2011-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7617,my_land,2011-10-11,1.0383641895518345,percolation,0.0,0.0,0.00022818795146803633,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7618,my_land,2011-10-11,0.0029760920763717428,subsurface_runoff,0.0,0.0,6.741527970188408e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7619,my_land,2011-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7620,my_groundwater,2011-10-11,13.05094735559706,tank,0.0,0.0,0.0016450446767948437,0.0,0.0,0.0,0.0,0.0,10.793417375723749,0.0,0.0,0.0 -7621,my_reservoir,2011-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7622,gw1,2011-10-11,262.4360890630354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7623,gw2,2011-10-11,262.5639109369646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7624,my_sewer,2011-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7625,my_land,2011-10-12,1.0175969057607979,percolation,0.0,0.0,0.0002236241924386756,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7626,my_land,2011-10-12,0.002380873661097394,subsurface_runoff,0.0,0.0,5.393222376150726e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7627,my_land,2011-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7628,my_groundwater,2011-10-12,13.039035352789625,tank,0.0,0.0,0.001645484414734644,0.0,0.0,0.0,0.0,0.0,10.799321631199412,0.0,0.0,0.0 -7629,my_reservoir,2011-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7630,gw1,2011-10-12,262.4365151359485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7631,gw2,2011-10-12,262.5634848640515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7632,my_sewer,2011-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7633,my_land,2011-10-13,0.9972449676455819,percolation,0.0,0.0,0.0002191517085899021,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7634,my_land,2011-10-13,0.0019046989288779154,subsurface_runoff,0.0,0.0,4.314577900920581e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7635,my_land,2011-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7636,my_groundwater,2011-10-13,13.02673882267758,tank,0.0,0.0,0.001645832006336959,0.0,0.0,0.0,0.0,0.0,10.80510406211726,0.0,0.0,0.0 -7637,my_reservoir,2011-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7638,gw1,2011-10-13,262.43693836837554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7639,gw2,2011-10-13,262.56306163162446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7640,my_sewer,2011-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7641,my_land,2011-10-14,0.9773000682926702,percolation,0.0,0.0,0.00021476867441810405,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7642,my_land,2011-10-14,0.0015237591431023322,subsurface_runoff,0.0,0.0,3.4516623207364645e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825032,0.0,0.0,0.0 -7643,my_land,2011-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7644,my_groundwater,2011-10-14,13.014067012725414,tank,0.0,0.0,0.001646089502907485,0.0,0.0,0.0,0.0,0.0,10.81076752237382,0.0,0.0,0.0 -7645,my_reservoir,2011-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7646,gw1,2011-10-14,262.43735877925303,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7647,gw2,2011-10-14,262.56264122074697,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7648,my_sewer,2011-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7649,my_land,2011-10-15,0.9577540669268169,percolation,0.0,0.0,0.00021047330092974196,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7650,my_land,2011-10-15,0.0012190073144818657,subsurface_runoff,0.0,0.0,2.7613298565891715e-07,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 -7651,my_land,2011-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7652,my_groundwater,2011-10-15,13.00102898155604,tank,0.0,0.0,0.0016462589142048575,0.0,0.0,0.0,0.0,0.0,10.81631478614211,0.0,0.0,0.0 -7653,my_reservoir,2011-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7654,gw1,2011-10-15,262.43777638739135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7655,gw2,2011-10-15,262.56222361260865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7656,my_sewer,2011-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.678571430000002,0.0,0.0,0.0 -7657,my_land,2011-10-16,0.9385989855882805,percolation,0.0,0.0,0.00020626383491114712,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7658,my_land,2011-10-16,0.0009752058515854926,subsurface_runoff,0.0,0.0,2.209063885271337e-07,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 -7659,my_land,2011-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7660,my_groundwater,2011-10-16,12.987633602737338,tank,0.0,0.0,0.0016463422092728938,0.0,0.0,0.0,0.0,0.0,10.821748550582585,0.0,0.0,0.0 -7661,my_reservoir,2011-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7662,gw1,2011-10-16,262.4381912114754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7663,gw2,2011-10-16,262.5618087885246,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7664,my_sewer,2011-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7665,my_land,2011-10-17,0.9198270058765149,percolation,0.0,0.0,0.0002021385582129242,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7666,my_land,2011-10-17,0.0007801646812683941,subsurface_runoff,0.0,0.0,1.7672511082170697e-07,0.0,0.0,0.0,0.0,0.0,14.23341908582503,0.0,0.0,0.0 -7667,my_land,2011-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7668,my_groundwater,2011-10-17,12.97388956849298,tank,0.0,0.0,0.001646341317256189,0.0,0.0,0.0,0.0,0.0,10.827071438443593,0.0,0.0,0.0 -7669,my_reservoir,2011-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7670,gw1,2011-10-17,262.4386032700655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7671,gw2,2011-10-17,262.5613967299345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7672,my_sewer,2011-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7673,my_land,2011-10-18,0.9014304657589846,percolation,0.0,0.0,0.0001980957870486657,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -7674,my_land,2011-10-18,0.0006241317450147153,subsurface_runoff,0.0,0.0,1.4138008865736558e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7675,my_land,2011-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7676,my_groundwater,2011-10-18,12.959805393338984,tank,0.0,0.0,0.0016462581281993962,0.0,0.0,0.0,0.0,0.0,10.83228600055652,0.0,0.0,0.0 -7677,my_reservoir,2011-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7678,gw1,2011-10-18,262.43901258159843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7679,gw2,2011-10-18,262.56098741840157,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7680,my_sewer,2011-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7681,my_land,2011-10-19,0.8834018564438049,percolation,0.0,0.0,0.0001941338713076924,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -7682,my_land,2011-10-19,0.0004993053960117722,subsurface_runoff,0.0,0.0,1.1310407092589246e-07,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7683,my_land,2011-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7684,my_groundwater,2011-10-19,12.945389417647528,tank,0.0,0.0,0.0016460944938305187,0.0,0.0,0.0,0.0,0.0,10.837394718230643,0.0,0.0,0.0 -7685,my_reservoir,2011-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7686,gw1,2011-10-19,262.4394191643878,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7687,gw2,2011-10-19,262.5605808356122,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7688,my_sewer,2011-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7689,my_land,2011-10-20,0.8657338193149288,percolation,0.0,0.0,0.00019025119388153854,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -7690,my_land,2011-10-20,0.0003994443168094178,subsurface_runoff,0.0,0.0,9.048325674071397e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7691,my_land,2011-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7692,my_groundwater,2011-10-20,12.930649811139464,tank,0.0,0.0,0.0016458522283285307,0.0,0.0,0.0,0.0,0.0,10.842400005552335,0.0,0.0,0.0 -7693,my_reservoir,2011-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7694,gw1,2011-10-20,262.4398230366252,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7695,gw2,2011-10-20,262.5601769633748,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7696,my_sewer,2011-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7697,my_land,2011-10-21,0.8484191429286302,percolation,0.0,0.0,0.00018644617000390776,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -7698,my_land,2011-10-21,0.0003195554534475342,subsurface_runoff,0.0,0.0,7.238660539257118e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7699,my_land,2011-10-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7700,my_groundwater,2011-10-21,12.915594576306948,tank,0.0,0.0,0.001645533109075646,0.0,0.0,0.0,0.0,0.0,10.847304211593153,0.0,0.0,0.0 -7701,my_reservoir,2011-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7702,gw1,2011-10-21,262.44022421638107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7703,gw2,2011-10-21,262.55977578361893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7704,my_sewer,2011-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7705,my_land,2011-10-22,0.8314507600700576,percolation,0.0,0.0,0.0001827172466038296,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7706,my_land,2011-10-22,0.00025564436275802736,subsurface_runoff,0.0,0.0,5.7909284314056944e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7707,my_land,2011-10-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7708,my_groundwater,2011-10-22,12.900231551767606,tank,0.0,0.0,0.0016451388773945348,0.0,0.0,0.0,0.0,0.0,10.852109622530907,0.0,0.0,0.0 -7709,my_reservoir,2011-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7710,gw1,2011-10-22,262.4406227216052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7711,gw2,2011-10-22,262.5593772783948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7712,my_sewer,2011-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.45714286,0.0,0.0,0.0 -7713,my_land,2011-10-23,0.8148217448686564,percolation,0.0,0.0,0.000179062901671753,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -7714,my_land,2011-10-23,0.0002045154902064219,subsurface_runoff,0.0,0.0,4.6327427451245555e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7715,my_land,2011-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7716,my_groundwater,2011-10-23,12.884568415551584,tank,0.0,0.0,0.001644671239270795,0.0,0.0,0.0,0.0,0.0,10.85681846368781,0.0,0.0,0.0 -7717,my_reservoir,2011-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7718,gw1,2011-10-23,262.4410185701279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7719,gw2,2011-10-23,262.5589814298721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7720,my_sewer,2011-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.09642857,0.0,0.0,0.0 -7721,my_land,2011-10-24,0.7985253099712833,percolation,0.0,0.0,0.00017548164363831795,0.0,0.0,0.0,0.0,0.0,14.509779299240506,0.0,0.0,0.0 -7722,my_land,2011-10-24,0.0001636123921651375,subsurface_runoff,0.0,0.0,3.706194196099644e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825027,0.0,0.0,0.0 -7723,my_land,2011-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7724,my_groundwater,2011-10-24,12.868612688322836,tank,0.0,0.0,0.0016441318660609693,0.0,0.0,0.0,0.0,0.0,10.86143290148941,0.0,0.0,0.0 -7725,my_reservoir,2011-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7726,gw1,2011-10-24,262.44141177966037,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7727,gw2,2011-10-24,262.55858822033963,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7728,my_sewer,2011-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 -7729,my_land,2011-10-25,0.7825548037718577,percolation,0.0,0.0,0.0001719720107655516,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7730,my_land,2011-10-25,0.00013088991373211002,subsurface_runoff,0.0,0.0,2.9649553568797153e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7731,my_land,2011-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7732,my_groundwater,2011-10-25,12.852371736535956,tank,0.0,0.0,0.0016435223951864013,0.0,0.0,0.0,0.0,0.0,10.865955045347949,0.0,0.0,0.0 -7733,my_reservoir,2011-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7734,gw1,2011-10-25,262.44180236779596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7735,gw2,2011-10-25,262.55819763220404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7736,my_sewer,2011-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.303571429999998,0.0,0.0,0.0 -7737,my_land,2011-10-26,0.7669037076964206,percolation,0.0,0.0,0.00016853257055024056,0.0,0.0,0.0,0.0,0.0,14.509779299240504,0.0,0.0,0.0 -7738,my_land,2011-10-26,0.00010471193098568802,subsurface_runoff,0.0,0.0,2.371964285503772e-08,0.0,0.0,0.0,0.0,0.0,14.233419085825028,0.0,0.0,0.0 -7739,my_land,2011-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16428571,0.0,0.0,0.0 -7740,my_groundwater,2011-10-26,12.835852775529865,tank,0.0,0.0,0.001642844430813208,0.0,0.0,0.0,0.0,0.0,10.870386949473511,0.0,0.0,0.0 -7741,my_reservoir,2011-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7742,gw1,2011-10-26,262.44219035201064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7743,gw2,2011-10-26,262.55780964798936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7744,my_sewer,2011-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -7745,my_land,2011-10-27,0.9478696555136309,percolation,0.0,0.0,0.00021220532155975442,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -7746,my_land,2011-10-27,0.05349982994509842,subsurface_runoff,0.0,0.0,1.2819901542996593e-05,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 -7747,my_land,2011-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.48214286,0.0,0.0,0.0 -7748,my_groundwater,2011-10-27,12.823059061578281,tank,0.0,0.0,0.001643057213782213,0.0,0.0,0.0,0.0,0.0,10.874804166517322,0.0,0.0,0.0 -7749,my_reservoir,2011-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7750,gw1,2011-10-27,262.4425757496639,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7751,gw2,2011-10-27,262.5574242503361,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7752,my_sewer,2011-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -7753,my_land,2011-10-28,0.9289122624033582,percolation,0.0,0.0,0.00020796121512855933,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -7754,my_land,2011-10-28,0.04279986395607874,subsurface_runoff,0.0,0.0,1.0255921234397275e-05,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 -7755,my_land,2011-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.48214286,0.0,0.0,0.0 -7756,my_groundwater,2011-10-28,12.80991141355183,tank,0.0,0.0,0.0016431830669128744,0.0,0.0,0.0,0.0,0.0,10.879130961526103,0.0,0.0,0.0 -7757,my_reservoir,2011-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7758,gw1,2011-10-28,262.44295857799943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7759,gw2,2011-10-28,262.55704142200057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7760,my_sewer,2011-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -7761,my_land,2011-10-29,0.910334017155291,percolation,0.0,0.0,0.00020380199082598813,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -7762,my_land,2011-10-29,0.03423989116486299,subsurface_runoff,0.0,0.0,8.20473698751782e-06,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 -7763,my_land,2011-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.83928571,0.0,0.0,0.0 -7764,my_groundwater,2011-10-29,12.796418434652898,tank,0.0,0.0,0.001643223935487407,0.0,0.0,0.0,0.0,0.0,10.88336942563468,0.0,0.0,0.0 -7765,my_reservoir,2011-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7766,gw1,2011-10-29,262.4433388541461,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7767,gw2,2011-10-29,262.5566611458539,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7768,my_sewer,2011-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -7769,my_land,2011-10-30,0.8921273368121853,percolation,0.0,0.0,0.00019972595100946838,0.0,0.0,0.0,0.0,0.0,13.805838638168055,0.0,0.0,0.0 -7770,my_land,2011-10-30,0.027391912931890396,subsurface_runoff,0.0,0.0,6.563789590014256e-06,0.0,0.0,0.0,0.0,0.0,11.115635023412073,0.0,0.0,0.0 -7771,my_land,2011-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.01785714,0.0,0.0,0.0 -7772,my_groundwater,2011-10-30,12.782588552208514,tank,0.0,0.0,0.0016431817253656671,0.0,0.0,0.0,0.0,0.0,10.887521592575787,0.0,0.0,0.0 -7773,my_reservoir,2011-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7774,gw1,2011-10-30,262.4437165951184,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7775,gw2,2011-10-30,262.5562834048816,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7776,my_sewer,2011-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -7777,my_land,2011-10-31,0.9267881797568972,percolation,0.0,0.0,0.00020858631492874465,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 -7778,my_land,2011-10-31,0.03620016699339142,subsurface_runoff,0.0,0.0,8.748959002478247e-06,0.0,0.0,0.0,0.0,0.0,11.350141412615745,0.0,0.0,0.0 -7779,my_land,2011-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.19642857,0.0,0.0,0.0 -7780,my_groundwater,2011-10-31,12.769498840201615,tank,0.0,0.0,0.0016433199924633024,0.0,0.0,0.0,0.0,0.0,10.891657928813547,0.0,0.0,0.0 -7781,my_reservoir,2011-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7782,gw1,2011-10-31,262.44409181781765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7783,gw2,2011-10-31,262.55590818218235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7784,my_sewer,2011-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.408957847704917,0.0,0.0,0.0 -7785,my_land,2011-11-01,0.9082524161617592,percolation,0.0,0.0,0.00020441458863016976,0.0,0.0,0.0,0.0,0.0,13.687098337303334,0.0,0.0,0.0 -7786,my_land,2011-11-01,0.028960133594713132,subsurface_runoff,0.0,0.0,6.999167201982598e-06,0.0,0.0,0.0,0.0,0.0,11.350141412615745,0.0,0.0,0.0 -7787,my_land,2011-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.375,0.0,0.0,0.0 -7788,my_groundwater,2011-11-01,12.75606451728726,tank,0.0,0.0,0.0016433729894649726,0.0,0.0,0.0,0.0,0.0,10.89570981201229,0.0,0.0,0.0 -7789,my_reservoir,2011-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7790,gw1,2011-11-01,262.4444645390322,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7791,gw2,2011-11-01,262.5555354609678,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7792,my_sewer,2011-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 -7793,my_land,2011-11-02,1.034709579678618,percolation,0.0,0.0,0.00023490755266737833,0.0,0.0,0.0,0.0,0.0,13.452102943441124,0.0,0.0,0.0 -7794,my_land,2011-11-02,0.06252108968940155,subsurface_runoff,0.0,0.0,1.500919928806552e-05,0.0,0.0,0.0,0.0,0.0,11.762840876467141,0.0,0.0,0.0 -7795,my_land,2011-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.77857143,0.0,0.0,0.0 -7796,my_groundwater,2011-11-02,12.745238086723214,tank,0.0,0.0,0.0016440466035991818,0.0,0.0,0.0,0.0,0.0,10.89993469790237,0.0,0.0,0.0 -7797,my_reservoir,2011-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7798,gw1,2011-11-02,262.44483477543866,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7799,gw2,2011-11-02,262.55516522456134,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7800,my_sewer,2011-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.301428574,0.0,0.0,0.0 -7801,my_land,2011-11-03,1.2024510501265502,percolation,0.0,0.0,0.00027457007831709464,0.0,0.0,0.0,0.0,0.0,13.158313255682367,0.0,0.0,0.0 -7802,my_land,2011-11-03,0.10129188183084219,subsurface_runoff,0.0,0.0,2.4078291866660274e-05,0.0,0.0,0.0,0.0,0.0,11.668950421730127,0.0,0.0,0.0 -7803,my_land,2011-11-03,2.412110591657955e-18,surface_runoff,0.0,0.0,5.888941874164929e-22,0.0,0.0,0.0,0.0,0.0,11.499725514704641,0.0,0.0,0.0 -7804,my_groundwater,2011-11-03,12.737853459312554,tank,0.0,0.0,0.001645525949398782,0.0,0.0,0.0,0.0,0.0,10.904274647878816,0.0,0.0,0.0 -7805,my_reservoir,2011-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7806,gw1,2011-11-03,262.4452025436024,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7807,gw2,2011-11-03,262.5547974563976,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7808,my_sewer,2011-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7809,my_land,2011-11-04,1.3776410975255988,percolation,0.0,0.0,0.0003152335290214453,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7810,my_land,2011-11-04,0.13524821795489947,subsurface_runoff,0.0,0.0,3.18217769683466e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254407,0.0,0.0,0.0 -7811,my_land,2011-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585714290000002,0.0,0.0,0.0 -7812,my_groundwater,2011-11-04,12.734053662292471,tank,0.0,0.0,0.001647829388508936,0.0,0.0,0.0,0.0,0.0,10.90857510729382,0.0,0.0,0.0 -7813,my_reservoir,2011-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7814,gw1,2011-11-04,262.4455678599784,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7815,gw2,2011-11-04,262.5544321400216,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7816,my_sewer,2011-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7817,my_land,2011-11-05,1.350088275575087,percolation,0.0,0.0,0.0003089288584410164,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7818,my_land,2011-11-05,0.10819857436391958,subsurface_runoff,0.0,0.0,2.545742157467728e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254407,0.0,0.0,0.0 -7819,my_land,2011-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585714290000002,0.0,0.0,0.0 -7820,my_groundwater,2011-11-05,12.729702468032375,tank,0.0,0.0,0.0016499987239416414,0.0,0.0,0.0,0.0,0.0,10.912781713214919,0.0,0.0,0.0 -7821,my_reservoir,2011-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7822,gw1,2011-11-05,262.4459307409119,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7823,gw2,2011-11-05,262.5540692590881,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7824,my_sewer,2011-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7825,my_land,2011-11-06,1.3230865100635851,percolation,0.0,0.0,0.00030275028127219603,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7826,my_land,2011-11-06,0.08655885949113566,subsurface_runoff,0.0,0.0,2.0365937259741825e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -7827,my_land,2011-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585714290000002,0.0,0.0,0.0 -7828,my_groundwater,2011-11-06,12.724812472960018,tank,0.0,0.0,0.0016520368578576855,0.0,0.0,0.0,0.0,0.0,10.916896867228335,0.0,0.0,0.0 -7829,my_reservoir,2011-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7830,gw1,2011-11-06,262.44629120263915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7831,gw2,2011-11-06,262.55370879736085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7832,my_sewer,2011-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7833,my_land,2011-11-07,1.2966247798623134,percolation,0.0,0.0,0.0002966952756467521,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7834,my_land,2011-11-07,0.06924708759290853,subsurface_runoff,0.0,0.0,1.629274980779346e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -7835,my_land,2011-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.796428571,0.0,0.0,0.0 -7836,my_groundwater,2011-11-07,12.719396017653386,tank,0.0,0.0,0.0016539466338244217,0.0,0.0,0.0,0.0,0.0,10.920922895659611,0.0,0.0,0.0 -7837,my_reservoir,2011-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7838,gw1,2011-11-07,262.4466492612882,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7839,gw2,2011-11-07,262.5533507387118,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7840,my_sewer,2011-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7841,my_land,2011-11-08,1.2706922842650672,percolation,0.0,0.0,0.00029076137013381705,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7842,my_land,2011-11-08,0.05539767007432682,subsurface_runoff,0.0,0.0,1.3034199846234768e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -7843,my_land,2011-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.2,0.0,0.0,0.0 -7844,my_groundwater,2011-11-08,12.713465191967506,tank,0.0,0.0,0.0016557308379890135,0.0,0.0,0.0,0.0,0.0,10.924862052473857,0.0,0.0,0.0 -7845,my_reservoir,2011-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7846,gw1,2011-11-08,262.4470049328796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7847,gw2,2011-11-08,262.5529950671204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7848,my_sewer,2011-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7849,my_land,2011-11-09,1.245278438579766,percolation,0.0,0.0,0.0002849461427311407,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7850,my_land,2011-11-09,0.04431813605946146,subsurface_runoff,0.0,0.0,1.0427359876987814e-05,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -7851,my_land,2011-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.510714286,0.0,0.0,0.0 -7852,my_groundwater,2011-11-09,12.707031840058676,tank,0.0,0.0,0.0016573922002282105,0.0,0.0,0.0,0.0,0.0,10.928716522042258,0.0,0.0,0.0 -7853,my_reservoir,2011-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7854,gw1,2011-11-09,262.44735823332707,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7855,gw2,2011-11-09,262.55264176667293,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7856,my_sewer,2011-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58571429,0.0,0.0,0.0 -7857,my_land,2011-11-10,1.2203728698081706,percolation,0.0,0.0,0.0002792472198765179,0.0,0.0,0.0,0.0,0.0,12.856943571900873,0.0,0.0,0.0 -7858,my_land,2011-11-10,0.03545450884756916,subsurface_runoff,0.0,0.0,8.341887901590251e-06,0.0,0.0,0.0,0.0,0.0,11.430658402254405,0.0,0.0,0.0 -7859,my_land,2011-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.821428571,0.0,0.0,0.0 -7860,my_groundwater,2011-11-10,12.700107565308196,tank,0.0,0.0,0.001658933395275126,0.0,0.0,0.0,0.0,0.0,10.9324884217819,0.0,0.0,0.0 -7861,my_reservoir,2011-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7862,gw1,2011-11-10,262.44770917843823,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7863,gw2,2011-11-10,262.55229082156177,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7864,my_sewer,2011-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7865,my_land,2011-11-11,1.3501384692908984,percolation,0.0,0.0,0.0003098096011093198,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7866,my_land,2011-11-11,0.07031545928999855,subsurface_runoff,0.0,0.0,1.6509517295512263e-05,0.0,0.0,0.0,0.0,0.0,9.955834963664435,0.0,0.0,0.0 -7867,my_land,2011-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7868,my_groundwater,2011-11-11,12.695842258091204,tank,0.0,0.0,0.001661092900095235,0.0,0.0,0.0,0.0,0.0,10.935690956459299,0.0,0.0,0.0 -7869,my_reservoir,2011-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7870,gw1,2011-11-11,262.4480577839153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7871,gw2,2011-11-11,262.5519422160847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7872,my_sewer,2011-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7873,my_land,2011-11-12,1.3231356999050805,percolation,0.0,0.0,0.0003036134090871334,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7874,my_land,2011-11-12,0.05625236743199884,subsurface_runoff,0.0,0.0,1.320761383640981e-05,0.0,0.0,0.0,0.0,0.0,9.955834963664435,0.0,0.0,0.0 -7875,my_land,2011-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7876,my_groundwater,2011-11-12,12.69103791490833,tank,0.0,0.0,0.0016631208693871277,0.0,0.0,0.0,0.0,0.0,10.938823831543514,0.0,0.0,0.0 -7877,my_reservoir,2011-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7878,gw1,2011-11-12,262.4484040653559,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7879,gw2,2011-11-12,262.5515959346441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7880,my_sewer,2011-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7881,my_land,2011-11-13,1.296672985906979,percolation,0.0,0.0,0.0002975411409053907,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7882,my_land,2011-11-13,0.04500189394559907,subsurface_runoff,0.0,0.0,1.0566091069127849e-05,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7883,my_land,2011-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7884,my_groundwater,2011-11-13,12.685706877334166,tank,0.0,0.0,0.0016650201547249483,0.0,0.0,0.0,0.0,0.0,10.941888820432704,0.0,0.0,0.0 -7885,my_reservoir,2011-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7886,gw1,2011-11-13,262.4487480382535,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7887,gw2,2011-11-13,262.5512519617465,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7888,my_sewer,2011-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7889,my_land,2011-11-14,1.2707395261888395,percolation,0.0,0.0,0.0002915903180872829,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7890,my_land,2011-11-14,0.03600151515647926,subsurface_runoff,0.0,0.0,8.45287285530228e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7891,my_land,2011-11-14,4.210804853146315e-20,surface_runoff,0.0,0.0,1.0280285286001746e-23,0.0,0.0,0.0,0.0,0.0,9.95846745774964,0.0,0.0,0.0 -7892,my_groundwater,2011-11-14,12.679861236209675,tank,0.0,0.0,0.0016667935500991984,0.0,0.0,0.0,0.0,0.0,10.944887641307641,0.0,0.0,0.0 -7893,my_reservoir,2011-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7894,gw1,2011-11-14,262.44908971799845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7895,gw2,2011-11-14,262.55091028200155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7896,my_sewer,2011-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7897,my_land,2011-11-15,1.2453247356650627,percolation,0.0,0.0,0.00028575851172553727,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7898,my_land,2011-11-15,0.028801212125183405,subsurface_runoff,0.0,0.0,6.762298284241823e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7899,my_land,2011-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.95846745774964,0.0,0.0,0.0 -7900,my_groundwater,2011-11-15,12.67351283666662,tank,0.0,0.0,0.0016684437930697916,0.0,0.0,0.0,0.0,0.0,10.947821959245061,0.0,0.0,0.0 -7901,my_reservoir,2011-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7902,gw1,2011-11-15,262.44942911987846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7903,gw2,2011-11-15,262.55057088012154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7904,my_sewer,2011-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7905,my_land,2011-11-16,1.2204182409517614,percolation,0.0,0.0,0.00028004334149102654,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7906,my_land,2011-11-16,0.023040969700146723,subsurface_runoff,0.0,0.0,5.4098386273934586e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7907,my_land,2011-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7908,my_groundwater,2011-11-16,12.66667328305147,tank,0.0,0.0,0.0016699735658960418,0.0,0.0,0.0,0.0,0.0,10.950693388234175,0.0,0.0,0.0 -7909,my_reservoir,2011-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7910,gw1,2011-11-16,262.4497662590793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7911,gw2,2011-11-16,262.5502337409207,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7912,my_sewer,2011-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7913,my_land,2011-11-17,1.1960098761327262,percolation,0.0,0.0,0.000274442474661206,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7914,my_land,2011-11-17,0.018432775760117377,subsurface_runoff,0.0,0.0,4.327870901914767e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7915,my_land,2011-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7916,my_groundwater,2011-11-17,12.659353943750828,tank,0.0,0.0,0.0016713854966440476,0.0,0.0,0.0,0.0,0.0,10.95350349310148,0.0,0.0,0.0 -7917,my_reservoir,2011-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7918,gw1,2011-11-17,262.45010115068544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7919,gw2,2011-11-17,262.54989884931456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7920,my_sewer,2011-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7921,my_land,2011-11-18,1.1720896786100716,percolation,0.0,0.0,0.0002689536251679819,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7922,my_land,2011-11-18,0.014746220608093902,subsurface_runoff,0.0,0.0,3.462296721531813e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7923,my_land,2011-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7924,my_groundwater,2011-11-18,12.651565955920299,tank,0.0,0.0,0.0016726821602719285,0.0,0.0,0.0,0.0,0.0,10.956253791348749,0.0,0.0,0.0 -7925,my_reservoir,2011-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7926,gw1,2011-11-18,262.4504338096809,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7927,gw2,2011-11-18,262.5495661903191,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7928,my_sewer,2011-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7929,my_land,2011-11-19,1.1486478850378703,percolation,0.0,0.0,0.00026357455266462227,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7930,my_land,2011-11-19,0.011796976486475121,subsurface_runoff,0.0,0.0,2.7698373772254506e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7931,my_land,2011-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7932,my_groundwater,2011-11-19,12.64332023011877,tank,0.0,0.0,0.00167386607969335,0.0,0.0,0.0,0.0,0.0,10.9589457549087,0.0,0.0,0.0 -7933,my_reservoir,2011-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7934,gw1,2011-11-19,262.45076425094965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7935,gw2,2011-11-19,262.54923574905035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7936,my_sewer,2011-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.132142857,0.0,0.0,0.0 -7937,my_land,2011-11-20,1.125674927337113,percolation,0.0,0.0,0.00025830306161132984,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7938,my_land,2011-11-20,0.009437581189180097,subsurface_runoff,0.0,0.0,2.2158699017803607e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7939,my_land,2011-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7940,my_groundwater,2011-11-20,12.634627454849978,tank,0.0,0.0,0.0016749397268197759,0.0,0.0,0.0,0.0,0.0,10.961580811822685,0.0,0.0,0.0 -7941,my_reservoir,2011-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7942,gw1,2011-11-20,262.4510924892767,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7943,gw2,2011-11-20,262.5489075107233,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7944,my_sewer,2011-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7945,my_land,2011-11-21,1.1031614287903706,percolation,0.0,0.0,0.00025313700037910323,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7946,my_land,2011-11-21,0.007550064951344079,subsurface_runoff,0.0,0.0,1.7726959214242884e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7947,my_land,2011-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7948,my_groundwater,2011-11-21,12.625498101013228,tank,0.0,0.0,0.0016759055235818724,0.0,0.0,0.0,0.0,0.0,10.964160347844329,0.0,0.0,0.0 -7949,my_reservoir,2011-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7950,gw1,2011-11-21,262.45141853934814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7951,gw2,2011-11-21,262.54858146065186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7952,my_sewer,2011-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7953,my_land,2011-11-22,1.0810982002145633,percolation,0.0,0.0,0.00024807426037152115,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7954,my_land,2011-11-22,0.006040051961075263,subsurface_runoff,0.0,0.0,1.4181567371394308e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7955,my_land,2011-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7956,my_groundwater,2011-11-22,12.615942426265065,tank,0.0,0.0,0.0016767658429304808,0.0,0.0,0.0,0.0,0.0,10.96668570797303,0.0,0.0,0.0 -7957,my_reservoir,2011-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7958,gw1,2011-11-22,262.4517424157525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7959,gw2,2011-11-22,262.5482575842475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7960,my_sewer,2011-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7961,my_land,2011-11-23,1.059476236210272,percolation,0.0,0.0,0.0002431127751640907,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7962,my_land,2011-11-23,0.00483204156886021,subsurface_runoff,0.0,0.0,1.1345253897115447e-06,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7963,my_land,2011-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7964,my_groundwater,2011-11-23,12.605970479293683,tank,0.0,0.0,0.0016775230098175665,0.0,0.0,0.0,0.0,0.0,10.96915819792079,0.0,0.0,0.0 -7965,my_reservoir,2011-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7966,gw1,2011-11-23,262.4520641329808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7967,gw2,2011-11-23,262.5479358670192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7968,my_sewer,2011-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7969,my_land,2011-11-24,1.0382867114860665,percolation,0.0,0.0,0.0002382505196608089,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7970,my_land,2011-11-24,0.0038656332550881683,subsurface_runoff,0.0,0.0,9.076203117692358e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7971,my_land,2011-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7972,my_groundwater,2011-11-24,12.595592104007844,tank,0.0,0.0,0.001678179302157546,0.0,0.0,0.0,0.0,0.0,10.971579085515792,0.0,0.0,0.0 -7973,my_reservoir,2011-11-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7974,gw1,2011-11-24,262.4523837054276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7975,gw2,2011-11-24,262.5476162945724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7976,my_sewer,2011-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7977,my_land,2011-11-25,1.0175209772563452,percolation,0.0,0.0,0.00023348550926759271,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7978,my_land,2011-11-25,0.0030925066040705346,subsurface_runoff,0.0,0.0,7.260962494153886e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7979,my_land,2011-11-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7980,my_groundwater,2011-11-25,12.584816943641972,tank,0.0,0.0,0.0016787369517693852,0.0,0.0,0.0,0.0,0.0,10.97394960204589,0.0,0.0,0.0 -7981,my_reservoir,2011-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7982,gw1,2011-11-25,262.45270114739145,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7983,gw2,2011-11-25,262.54729885260855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7984,my_sewer,2011-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7985,my_land,2011-11-26,0.9971705577112182,percolation,0.0,0.0,0.00022881579908224086,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7986,my_land,2011-11-26,0.0024740052832564275,subsurface_runoff,0.0,0.0,5.808769995323109e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7987,my_land,2011-11-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7988,my_groundwater,2011-11-26,12.57365444477913,tank,0.0,0.0,0.0016791981452998503,0.0,0.0,0.0,0.0,0.0,10.97627094354498,0.0,0.0,0.0 -7989,my_reservoir,2011-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7990,gw1,2011-11-26,262.45301647307554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7991,gw2,2011-11-26,262.54698352692446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7992,my_sewer,2011-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -7993,my_land,2011-11-27,0.9772271465569938,percolation,0.0,0.0,0.00022423948310059603,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -7994,my_land,2011-11-27,0.001979204226605142,subsurface_runoff,0.0,0.0,4.647015996258487e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -7995,my_land,2011-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -7996,my_groundwater,2011-11-27,12.562113861293522,tank,0.0,0.0,0.0016795650251282914,0.0,0.0,0.0,0.0,0.0,10.978544272025106,0.0,0.0,0.0 -7997,my_reservoir,2011-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7998,gw1,2011-11-27,262.45332969658836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7999,gw2,2011-11-27,262.54667030341164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8000,my_sewer,2011-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.560714286,0.0,0.0,0.0 -8001,my_land,2011-11-28,0.957682603625854,percolation,0.0,0.0,0.00021975469343858413,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8002,my_land,2011-11-28,0.0015833633812841134,subsurface_runoff,0.0,0.0,3.7176127970067896e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8003,my_land,2011-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8004,my_groundwater,2011-11-28,12.5502042582141,tank,0.0,0.0,0.0016798396902533276,0.0,0.0,0.0,0.0,0.0,10.980770716656934,0.0,0.0,0.0 -8005,my_reservoir,2011-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8006,gw1,2011-11-28,262.4536408319444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8007,gw2,2011-11-28,262.5463591680556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8008,my_sewer,2011-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.675,0.0,0.0,0.0 -8009,my_land,2011-11-29,0.9385289515533369,percolation,0.0,0.0,0.00021535959956981245,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8010,my_land,2011-11-29,0.0012666907050272907,subsurface_runoff,0.0,0.0,2.9740902376054317e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8011,my_land,2011-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8012,my_groundwater,2011-11-29,12.537934515510901,tank,0.0,0.0,0.001680024197161794,0.0,0.0,0.0,0.0,0.0,10.982951374901143,0.0,0.0,0.0 -8013,my_reservoir,2011-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8014,gw1,2011-11-29,262.4539498930648,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8015,gw2,2011-11-29,262.5460501069352,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8016,my_sewer,2011-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8017,my_land,2011-11-30,0.9197583725222702,percolation,0.0,0.0,0.0002110524075784162,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8018,my_land,2011-11-30,0.0010133525640218326,subsurface_runoff,0.0,0.0,2.3792721900843453e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8019,my_land,2011-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8020,my_groundwater,2011-11-30,12.525313331805613,tank,0.0,0.0,0.0016801205606803075,0.0,0.0,0.0,0.0,0.0,10.985087313593068,0.0,0.0,0.0 -8021,my_reservoir,2011-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8022,gw1,2011-11-30,262.4542568937777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8023,gw2,2011-11-30,262.5457431062223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8024,my_sewer,2011-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8025,my_land,2011-12-01,0.9013632050718248,percolation,0.0,0.0,0.0002068313594268479,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8026,my_land,2011-12-01,0.0008106820512174661,subsurface_runoff,0.0,0.0,1.9034177520674762e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8027,my_land,2011-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8028,my_groundwater,2011-12-01,12.512349228007917,tank,0.0,0.0,0.001680130754809796,0.0,0.0,0.0,0.0,0.0,10.987179569982883,0.0,0.0,0.0 -8029,my_reservoir,2011-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8030,gw1,2011-12-01,262.4545618478192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8031,gw2,2011-12-01,262.5454381521808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8032,my_sewer,2011-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8033,my_land,2011-12-02,0.8833359409703883,percolation,0.0,0.0,0.00020269473223831093,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8034,my_land,2011-12-02,0.0006485456409739728,subsurface_runoff,0.0,0.0,1.522734201653981e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8035,my_land,2011-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8036,my_groundwater,2011-12-02,12.49905055087908,tank,0.0,0.0,0.001680056713543337,0.0,0.0,0.0,0.0,0.0,10.989229152733412,0.0,0.0,0.0 -8037,my_reservoir,2011-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8038,gw1,2011-12-02,262.4548647688338,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8039,gw2,2011-12-02,262.5451352311662,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8040,my_sewer,2011-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8041,my_land,2011-12-03,0.8656692221509805,percolation,0.0,0.0,0.00019864083759354472,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8042,my_land,2011-12-03,0.0005188365127791782,subsurface_runoff,0.0,0.0,1.218187361323185e-07,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8043,my_land,2011-12-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8044,my_groundwater,2011-12-03,12.485425476524242,tank,0.0,0.0,0.0016799003316676328,0.0,0.0,0.0,0.0,0.0,10.991237042877598,0.0,0.0,0.0 -8045,my_reservoir,2011-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8046,gw1,2011-12-03,262.45516567037487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8047,gw2,2011-12-03,262.54483432962513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8048,my_sewer,2011-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8049,my_land,2011-12-04,0.8483558377079609,percolation,0.0,0.0,0.00019466802084167382,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8050,my_land,2011-12-04,0.0004150692102233426,subsurface_runoff,0.0,0.0,9.74549889058548e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8051,my_land,2011-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8052,my_groundwater,2011-12-04,12.471482013814843,tank,0.0,0.0,0.001679663465548455,0.0,0.0,0.0,0.0,0.0,10.993204194737526,0.0,0.0,0.0 -8053,my_reservoir,2011-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8054,gw1,2011-12-04,262.4554645659057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8055,gw2,2011-12-04,262.5445354340943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8056,my_sewer,2011-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8057,my_land,2011-12-05,0.8313887209538017,percolation,0.0,0.0,0.00019077466042484033,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8058,my_land,2011-12-05,0.00033205536817867406,subsurface_runoff,0.0,0.0,7.796399112468384e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8059,my_land,2011-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8060,my_groundwater,2011-12-05,12.457228007742579,tank,0.0,0.0,0.0016793479339003753,0.0,0.0,0.0,0.0,0.0,10.995131536806786,0.0,0.0,0.0 -8061,my_reservoir,2011-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8062,gw1,2011-12-05,262.45576146879966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8063,gw2,2011-12-05,262.54423853120034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8064,my_sewer,2011-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8065,my_land,2011-12-06,0.8147609465347256,percolation,0.0,0.0,0.00018695916721634352,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8066,my_land,2011-12-06,0.00026564429454293924,subsurface_runoff,0.0,0.0,6.237119289974707e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8067,my_land,2011-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8068,my_groundwater,2011-12-06,12.442671142706251,tank,0.0,0.0,0.0016789555185410998,0.0,0.0,0.0,0.0,0.0,10.997019972597899,0.0,0.0,0.0 -8069,my_reservoir,2011-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8070,gw1,2011-12-06,262.456056392341,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8071,gw2,2011-12-06,262.543943607659,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8072,my_sewer,2011-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.175,0.0,0.0,0.0 -8073,my_land,2011-12-07,0.7984657276040311,percolation,0.0,0.0,0.00018321998387201666,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8074,my_land,2011-12-07,0.00021251543563435138,subsurface_runoff,0.0,0.0,4.989695431979765e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8075,my_land,2011-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8076,my_groundwater,2011-12-07,12.427818945732854,tank,0.0,0.0,0.0016784879651307132,0.0,0.0,0.0,0.0,0.0,10.998870381456397,0.0,0.0,0.0 -8077,my_reservoir,2011-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8078,gw1,2011-12-07,262.4563493497254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8079,gw2,2011-12-07,262.5436506502746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8080,my_sewer,2011-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 -8081,my_land,2011-12-08,0.7824964130519505,percolation,0.0,0.0,0.00017955558419457634,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8082,my_land,2011-12-08,0.0001700123485074811,subsurface_runoff,0.0,0.0,3.991756345583812e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8083,my_land,2011-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8084,my_groundwater,2011-12-08,12.412678789634223,tank,0.0,0.0,0.001677946983896133,0.0,0.0,0.0,0.0,0.0,11.000683619343107,0.0,0.0,0.0 -8085,my_reservoir,2011-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8086,gw1,2011-12-08,262.45664035406054,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8087,gw2,2011-12-08,262.54335964593946,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8088,my_sewer,2011-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 -8089,my_land,2011-12-09,0.7668464847909114,percolation,0.0,0.0,0.00017596447251068482,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8090,my_land,2011-12-09,0.00013600987880598488,subsurface_runoff,0.0,0.0,3.19340507646705e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8091,my_land,2011-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8092,my_groundwater,2011-12-09,12.397257896100523,tank,0.0,0.0,0.0016773342503410744,0.0,0.0,0.0,0.0,0.0,11.00246051958606,0.0,0.0,0.0 -8093,my_reservoir,2011-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8094,gw1,2011-12-09,262.4569294183668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8095,gw2,2011-12-09,262.5430705816332,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8096,my_sewer,2011-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.260714286,0.0,0.0,0.0 -8097,my_land,2011-12-10,0.7515095550950932,percolation,0.0,0.0,0.00017244518306047113,0.0,0.0,0.0,0.0,0.0,12.411801929279376,0.0,0.0,0.0 -8098,my_land,2011-12-10,0.0001088079030447879,subsurface_runoff,0.0,0.0,2.5547240611736397e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8099,my_land,2011-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8100,my_groundwater,2011-12-10,12.381563338731851,tank,0.0,0.0,0.00167665140594181,0.0,0.0,0.0,0.0,0.0,11.004201893603438,0.0,0.0,0.0 -8101,my_reservoir,2011-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8102,gw1,2011-12-10,262.4572165555777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8103,gw2,2011-12-10,262.5427834444223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8104,my_sewer,2011-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.389285714,0.0,0.0,0.0 -8105,my_land,2011-12-11,0.7364793639931914,percolation,0.0,0.0,0.0001689962793992617,0.0,0.0,0.0,0.0,0.0,12.411801929279374,0.0,0.0,0.0 -8106,my_land,2011-12-11,8.704632243583032e-05,subsurface_runoff,0.0,0.0,2.0437792489389118e-08,0.0,0.0,0.0,0.0,0.0,9.955834963664437,0.0,0.0,0.0 -8107,my_land,2011-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.23928571,0.0,0.0,0.0 -8108,my_groundwater,2011-12-11,12.365602046009169,tank,0.0,0.0,0.001675900058829012,0.0,0.0,0.0,0.0,0.0,11.005908531598815,0.0,0.0,0.0 -8109,my_reservoir,2011-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8110,gw1,2011-12-11,262.4575017785405,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8111,gw2,2011-12-11,262.5424982214595,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8112,my_sewer,2011-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.430665024482758,0.0,0.0,0.0 -8113,my_land,2011-12-12,1.4225577241102614,percolation,0.0,0.0,0.0003271713777392585,0.0,0.0,0.0,0.0,0.0,9.242459664443473,0.0,0.0,0.0 -8114,my_land,2011-12-12,0.19076567716595788,subsurface_runoff,0.0,0.0,4.397690096269411e-05,0.0,0.0,0.0,0.0,0.0,5.979861737929063,0.0,0.0,0.0 -8115,my_land,2011-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.432142857,0.0,0.0,0.0 -8116,my_groundwater,2011-12-12,12.363647251706391,tank,0.0,0.0,0.001678370583157346,0.0,0.0,0.0,0.0,0.0,11.001778028159102,0.0,0.0,0.0 -8117,my_reservoir,2011-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8118,gw1,2011-12-12,262.4577851000169,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8119,gw2,2011-12-12,262.5422148999831,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8120,my_sewer,2011-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.44811815964113,0.0,0.0,0.0 -8121,my_land,2011-12-13,2.0856027117736704,percolation,0.0,0.0,0.0004718427437041252,0.0,0.0,0.0,0.0,0.0,8.180408753151177,0.0,0.0,0.0 -8122,my_land,2011-12-13,0.3407747572825933,subsurface_runoff,0.0,0.0,7.632840336053675e-05,0.0,0.0,0.0,0.0,0.0,6.012646270718175,0.0,0.0,0.0 -8123,my_land,2011-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4750000000000005,0.0,0.0,0.0 -8124,my_groundwater,2011-12-13,12.375195045923947,tank,0.0,0.0,0.0016837800268391437,0.0,0.0,0.0,0.0,0.0,10.99209845320594,0.0,0.0,0.0 -8125,my_reservoir,2011-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8126,gw1,2011-12-13,262.45806653268346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8127,gw2,2011-12-13,262.54193346731654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8128,my_sewer,2011-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.351211191476367,0.0,0.0,0.0 -8129,my_land,2011-12-14,2.629431500646569,percolation,0.0,0.0,0.0005849749713598066,0.0,0.0,0.0,0.0,0.0,7.7094157315362155,0.0,0.0,0.0 -8130,my_land,2011-12-14,0.4319506474882166,subsurface_runoff,0.0,0.0,9.441485398904544e-05,0.0,0.0,0.0,0.0,0.0,6.032092674728677,0.0,0.0,0.0 -8131,my_land,2011-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.104166667,0.0,0.0,0.0 -8132,my_groundwater,2011-12-14,12.39778477100087,tank,0.0,0.0,0.0016914789958318705,0.0,0.0,0.0,0.0,0.0,10.97792539722624,0.0,0.0,0.0 -8133,my_reservoir,2011-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8134,gw1,2011-12-14,262.45834608913225,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8135,gw2,2011-12-14,262.54165391086775,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8136,my_sewer,2011-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.229507976927993,0.0,0.0,0.0 -8137,my_land,2011-12-15,3.037120313518099,percolation,0.0,0.0,0.0006665090304092516,0.0,0.0,0.0,0.0,0.0,7.419661036505669,0.0,0.0,0.0 -8138,my_land,2011-12-15,0.4708060806802228,subsurface_runoff,0.0,0.0,0.00010090155896719313,0.0,0.0,0.0,0.0,0.0,5.96968073843979,0.0,0.0,0.0 -8139,my_land,2011-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.733333333,0.0,0.0,0.0 -8140,my_groundwater,2011-12-15,12.428617401169987,tank,0.0,0.0,0.0017008185178899078,0.0,0.0,0.0,0.0,0.0,10.96022454352439,0.0,0.0,0.0 -8141,my_reservoir,2011-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8142,gw1,2011-12-15,262.4586237818714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8143,gw2,2011-12-15,262.5413762181286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8144,my_sewer,2011-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -8145,my_land,2011-12-16,3.140979128865327,percolation,0.0,0.0,0.0006863170011134285,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 -8146,my_land,2011-12-16,0.4214343126033865,subsurface_runoff,0.0,0.0,8.973843120432917e-05,0.0,0.0,0.0,0.0,0.0,5.9212574768712125,0.0,0.0,0.0 -8147,my_land,2011-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.3625,0.0,0.0,0.0 -8148,my_groundwater,2011-12-16,12.461487218504677,tank,0.0,0.0,0.001710537924832135,0.0,0.0,0.0,0.0,0.0,10.941545089823638,0.0,0.0,0.0 -8149,my_reservoir,2011-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8150,gw1,2011-12-16,262.4588996233256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8151,gw2,2011-12-16,262.5411003766744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8152,my_sewer,2011-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -8153,my_land,2011-12-17,3.0781595462880205,percolation,0.0,0.0,0.0006725906610911599,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 -8154,my_land,2011-12-17,0.3371474500827092,subsurface_runoff,0.0,0.0,7.179074496346334e-05,0.0,0.0,0.0,0.0,0.0,5.9212574768712125,0.0,0.0,0.0 -8155,my_land,2011-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9916666669999996,0.0,0.0,0.0 -8156,my_groundwater,2011-12-17,12.49299603407928,tank,0.0,0.0,0.0017199536041922674,0.0,0.0,0.0,0.0,0.0,10.92337908740475,0.0,0.0,0.0 -8157,my_reservoir,2011-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8158,gw1,2011-12-17,262.45917362583674,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8159,gw2,2011-12-17,262.54082637416326,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8160,my_sewer,2011-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.206890377529872,0.0,0.0,0.0 -8161,my_land,2011-12-18,3.01659635536226,percolation,0.0,0.0,0.0006591388478693368,0.0,0.0,0.0,0.0,0.0,7.319798839546634,0.0,0.0,0.0 -8162,my_land,2011-12-18,0.26971796006616733,subsurface_runoff,0.0,0.0,5.7432595970770674e-05,0.0,0.0,0.0,0.0,0.0,5.9212574768712125,0.0,0.0,0.0 -8163,my_land,2011-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6208333329999998,0.0,0.0,0.0 -8164,my_groundwater,2011-12-18,12.523172826942528,tank,0.0,0.0,0.0017290719038705554,0.0,0.0,0.0,0.0,0.0,10.905708383492394,0.0,0.0,0.0 -8165,my_reservoir,2011-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8166,gw1,2011-12-18,262.4594458016645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8167,gw2,2011-12-18,262.5405541983355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8168,my_sewer,2011-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7848159823763705,0.0,0.0,0.0 -8169,my_land,2011-12-19,3.2067509130497314,percolation,0.0,0.0,0.000696233312862361,0.0,0.0,0.0,0.0,0.0,7.103656958524625,0.0,0.0,0.0 -8170,my_land,2011-12-19,0.2839339557521765,subsurface_runoff,0.0,0.0,5.9626958939993656e-05,0.0,0.0,0.0,0.0,0.0,5.592736636888659,0.0,0.0,0.0 -8171,my_land,2011-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.25,0.0,0.0,0.0 -8172,my_groundwater,2011-12-19,12.557145181319399,tank,0.0,0.0,0.00173892254512272,0.0,0.0,0.0,0.0,0.0,10.885942823525243,0.0,0.0,0.0 -8173,my_reservoir,2011-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8174,gw1,2011-12-19,262.45971616298675,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8175,gw2,2011-12-19,262.54028383701325,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8176,my_sewer,2011-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -8177,my_land,2011-12-20,3.40650322939667,percolation,0.0,0.0,0.0007343541870328613,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 -8178,my_land,2011-12-20,0.29895324204607676,subsurface_runoff,0.0,0.0,6.18636189690691e-05,0.0,0.0,0.0,0.0,0.0,5.268395603987981,0.0,0.0,0.0 -8179,my_land,2011-12-20,2.80066570443199e-18,surface_runoff,0.0,0.0,6.837562754960913e-22,0.0,0.0,0.0,0.0,0.0,4.924298295943825,0.0,0.0,0.0 -8180,my_groundwater,2011-12-20,12.595098991250246,tank,0.0,0.0,0.001749524591853082,0.0,0.0,0.0,0.0,0.0,10.863897770708597,0.0,0.0,0.0 -8181,my_reservoir,2011-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8182,gw1,2011-12-20,262.4599847219002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8183,gw2,2011-12-20,262.5400152780998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8184,my_sewer,2011-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -8185,my_land,2011-12-21,3.3383731648087367,percolation,0.0,0.0,0.0007196671032922041,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 -8186,my_land,2011-12-21,0.23916259363686143,subsurface_runoff,0.0,0.0,4.949089517525528e-05,0.0,0.0,0.0,0.0,0.0,5.268395603987981,0.0,0.0,0.0 -8187,my_land,2011-12-21,4.7759300123851887e-20,surface_runoff,0.0,0.0,1.1659985381799777e-23,0.0,0.0,0.0,0.0,0.0,5.258816555668014,0.0,0.0,0.0 -8188,my_groundwater,2011-12-21,12.631570983198584,tank,0.0,0.0,0.001759801146404755,0.0,0.0,0.0,0.0,0.0,10.842474603759847,0.0,0.0,0.0 -8189,my_reservoir,2011-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8190,gw1,2011-12-21,262.46025149042083,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8191,gw2,2011-12-21,262.53974850957917,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8192,my_sewer,2011-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433815221061322,0.0,0.0,0.0 -8193,my_land,2011-12-22,3.271605701512562,percolation,0.0,0.0,0.00070527376122636,0.0,0.0,0.0,0.0,0.0,6.882007076573684,0.0,0.0,0.0 -8194,my_land,2011-12-22,0.19133007490948914,subsurface_runoff,0.0,0.0,3.959271614020422e-05,0.0,0.0,0.0,0.0,0.0,5.268395603987982,0.0,0.0,0.0 -8195,my_land,2011-12-22,6.928272340687527e-36,surface_runoff,0.0,0.0,1.691472739425666e-39,0.0,0.0,0.0,0.0,0.0,5.268395603987982,0.0,0.0,0.0 -8196,my_groundwater,2011-12-22,12.666592600378522,tank,0.0,0.0,0.0017697590022494225,0.0,0.0,0.0,0.0,0.0,10.821650590337043,0.0,0.0,0.0 -8197,my_reservoir,2011-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8198,gw1,2011-12-22,262.46051648048467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8199,gw2,2011-12-22,262.53948351951533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8200,my_sewer,2011-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8201,my_land,2011-12-23,3.5746674206852838,percolation,0.0,0.0,0.0007627193853390882,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -8202,my_land,2011-12-23,0.25333449073112135,subsurface_runoff,0.0,0.0,5.114385980665465e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 -8203,my_land,2011-12-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8204,my_groundwater,2011-12-23,12.707696134227241,tank,0.0,0.0,0.001780861392231059,0.0,0.0,0.0,0.0,0.0,10.797958335196226,0.0,0.0,0.0 -8205,my_reservoir,2011-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8206,gw1,2011-12-23,262.4607797039481,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8207,gw2,2011-12-23,262.5392202960519,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8208,my_sewer,2011-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8209,my_land,2011-12-24,3.503174072271578,percolation,0.0,0.0,0.0007474649976323065,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -8210,my_land,2011-12-24,0.20266759258489708,subsurface_runoff,0.0,0.0,4.091508784532372e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 -8211,my_land,2011-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.816666667,0.0,0.0,0.0 -8212,my_groundwater,2011-12-24,12.747241508934344,tank,0.0,0.0,0.0017916254904879962,0.0,0.0,0.0,0.0,0.0,10.774944501558391,0.0,0.0,0.0 -8213,my_reservoir,2011-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8214,gw1,2011-12-24,262.46104117258847,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8215,gw2,2011-12-24,262.53895882741153,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8216,my_sewer,2011-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8217,my_land,2011-12-25,3.4331105908261463,percolation,0.0,0.0,0.0007325156976796603,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -8218,my_land,2011-12-25,0.16213407406791766,subsurface_runoff,0.0,0.0,3.273207027625897e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 -8219,my_land,2011-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.13,0.0,0.0,0.0 -8220,my_groundwater,2011-12-25,12.785261727903826,tank,0.0,0.0,0.0018020583534645407,0.0,0.0,0.0,0.0,0.0,10.752583814278706,0.0,0.0,0.0 -8221,my_reservoir,2011-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8222,gw1,2011-12-25,262.4613008981045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8223,gw2,2011-12-25,262.5386991018955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8224,my_sewer,2011-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8225,my_land,2011-12-26,3.3644483790096236,percolation,0.0,0.0,0.0007178653837260671,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -8226,my_land,2011-12-26,0.12970725925433413,subsurface_runoff,0.0,0.0,2.6185656221007178e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 -8227,my_land,2011-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.443333333,0.0,0.0,0.0 -8228,my_groundwater,2011-12-26,12.821789129871048,tank,0.0,0.0,0.0018121668957495885,0.0,0.0,0.0,0.0,0.0,10.730852213815792,0.0,0.0,0.0 -8229,my_reservoir,2011-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8230,gw1,2011-12-26,262.4615588921172,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8231,gw2,2011-12-26,262.5384411078828,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8232,my_sewer,2011-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8233,my_land,2011-12-27,3.297159411429431,percolation,0.0,0.0,0.0007035080760515457,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -8234,my_land,2011-12-27,0.1037658074034673,subsurface_runoff,0.0,0.0,2.0948524976805744e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780197,0.0,0.0,0.0 -8235,my_land,2011-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.756666667,0.0,0.0,0.0 -8236,my_groundwater,2011-12-27,12.856855402207612,tank,0.0,0.0,0.0018219578929155496,0.0,0.0,0.0,0.0,0.0,10.709726783926067,0.0,0.0,0.0 -8237,my_reservoir,2011-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8238,gw1,2011-12-27,262.46181516616974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8239,gw2,2011-12-27,262.53818483383026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8240,my_sewer,2011-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.503333333,0.0,0.0,0.0 -8241,my_land,2011-12-28,3.2312162232008426,percolation,0.0,0.0,0.0006894379145305148,0.0,0.0,0.0,0.0,0.0,6.68431493612023,0.0,0.0,0.0 -8242,my_land,2011-12-28,0.08301264592277384,subsurface_runoff,0.0,0.0,1.6758819981444596e-05,0.0,0.0,0.0,0.0,0.0,5.148011860780196,0.0,0.0,0.0 -8243,my_land,2011-12-28,4.9987069231639284e-20,surface_runoff,0.0,0.0,1.2203874324130685e-23,0.0,0.0,0.0,0.0,0.0,5.161295673902048,0.0,0.0,0.0 -8244,my_groundwater,2011-12-28,12.89049159396011,tank,0.0,0.0,0.001831437984300489,0.0,0.0,0.0,0.0,0.0,10.689185684463764,0.0,0.0,0.0 -8245,my_reservoir,2011-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8246,gw1,2011-12-28,262.4620697317286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8247,gw2,2011-12-28,262.5379302682714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8248,my_sewer,2011-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 -8249,my_land,2011-12-29,3.272181296434323,percolation,0.0,0.0,0.0006967877193750388,0.0,0.0,0.0,0.0,0.0,6.681290821266299,0.0,0.0,0.0 -8250,my_land,2011-12-29,0.09514192563549724,subsurface_runoff,0.0,0.0,1.9159045953899713e-05,0.0,0.0,0.0,0.0,0.0,5.583657093677215,0.0,0.0,0.0 -8251,my_land,2011-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.383333333,0.0,0.0,0.0 -8252,my_groundwater,2011-12-29,12.924877627081194,tank,0.0,0.0,0.0018410439964841583,0.0,0.0,0.0,0.0,0.0,10.668529787299896,0.0,0.0,0.0 -8253,my_reservoir,2011-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8254,gw1,2011-12-29,262.46232260018377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8255,gw2,2011-12-29,262.53767739981623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8256,my_sewer,2011-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 -8257,my_land,2011-12-30,3.4530518489893436,percolation,0.0,0.0,0.0007307295390252797,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 -8258,my_land,2011-12-30,0.1431378067624677,subsurface_runoff,0.0,0.0,2.835514806590661e-05,0.0,0.0,0.0,0.0,0.0,6.17944139078194,0.0,0.0,0.0 -8259,my_land,2011-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 -8260,my_groundwater,2011-12-30,12.96285970279649,tank,0.0,0.0,0.0018513169521088197,0.0,0.0,0.0,0.0,0.0,10.64697559967172,0.0,0.0,0.0 -8261,my_reservoir,2011-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8262,gw1,2011-12-30,262.46257378284923,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8263,gw2,2011-12-30,262.53742621715077,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8264,my_sewer,2011-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.696666667,0.0,0.0,0.0 -8265,my_land,2011-12-31,3.3839908120095568,percolation,0.0,0.0,0.000716114948244774,0.0,0.0,0.0,0.0,0.0,6.693754729612399,0.0,0.0,0.0 -8266,my_land,2011-12-31,0.11451024540997416,subsurface_runoff,0.0,0.0,2.2684118452725288e-05,0.0,0.0,0.0,0.0,0.0,6.17944139078194,0.0,0.0,0.0 -8267,my_land,2011-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.010000000000001,0.0,0.0,0.0 -8268,my_groundwater,2011-12-31,12.999340937926837,tank,0.0,0.0,0.001861266714032102,0.0,0.0,0.0,0.0,0.0,10.626025999213889,0.0,0.0,0.0 -8269,my_reservoir,2011-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8270,gw1,2011-12-31,262.46282329096357,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8271,gw2,2011-12-31,262.53717670903643,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8272,my_sewer,2012-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 -8273,my_land,2012-01-01,3.4873052115049856,percolation,0.0,0.0,0.0007347931741077138,0.0,0.0,0.0,0.0,0.0,6.728261964850857,0.0,0.0,0.0 -8274,my_land,2012-01-01,0.1381372346233862,subsurface_runoff,0.0,0.0,2.7127029409210245e-05,0.0,0.0,0.0,0.0,0.0,6.589724238810732,0.0,0.0,0.0 -8275,my_land,2012-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.323333333,0.0,0.0,0.0 -8276,my_groundwater,2012-01-01,13.037834155959086,tank,0.0,0.0,0.001871571836862786,0.0,0.0,0.0,0.0,0.0,10.604802505614513,0.0,0.0,0.0 -8277,my_reservoir,2012-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8278,gw1,2012-01-01,262.4630711356905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8279,gw2,2012-01-01,262.5369288643095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8280,my_sewer,2012-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 -8281,my_land,2012-01-02,3.827626186498407,percolation,0.0,0.0,0.0007959846663878724,0.0,0.0,0.0,0.0,0.0,6.828707645462626,0.0,0.0,0.0 -8282,my_land,2012-01-02,0.2220926663989869,subsurface_runoff,0.0,0.0,4.235124414296356e-05,0.0,0.0,0.0,0.0,0.0,7.130380190587752,0.0,0.0,0.0 -8283,my_land,2012-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.636666667,0.0,0.0,0.0 -8284,my_groundwater,2012-01-02,13.083159103651477,tank,0.0,0.0,0.001883096880836382,0.0,0.0,0.0,0.0,0.0,10.5823131705811,0.0,0.0,0.0 -8285,my_reservoir,2012-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8286,gw1,2012-01-02,262.4633173281192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8287,gw2,2012-01-02,262.5366826718808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8288,my_sewer,2012-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.855622490060242,0.0,0.0,0.0 -8289,my_land,2012-01-03,4.179763124701127,percolation,0.0,0.0,0.0008565130587355953,0.0,0.0,0.0,0.0,0.0,6.9423053143813584,0.0,0.0,0.0 -8290,my_land,2012-01-03,0.29432432684237014,subsurface_runoff,0.0,0.0,5.468319549817504e-05,0.0,0.0,0.0,0.0,0.0,7.449790437345958,0.0,0.0,0.0 -8291,my_land,2012-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.95,0.0,0.0,0.0 -8292,my_groundwater,2012-01-03,13.135539240930907,tank,0.0,0.0,0.00189582529732998,0.0,0.0,0.0,0.0,0.0,10.558734304854461,0.0,0.0,0.0 -8293,my_reservoir,2012-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8294,gw1,2012-01-03,262.4635618792651,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8295,gw2,2012-01-03,262.5364381207349,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8296,my_sewer,2012-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244611,0.0,0.0,0.0 -8297,my_land,2012-01-04,4.3987963838573885,percolation,0.0,0.0,0.0008921763402903699,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8298,my_land,2012-01-04,0.3178073585215924,subsurface_runoff,0.0,0.0,5.811214625690373e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866664,0.0,0.0,0.0 -8299,my_land,2012-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.985714286,0.0,0.0,0.0 -8300,my_groundwater,2012-01-04,13.192247319214248,tank,0.0,0.0,0.001909247895299709,0.0,0.0,0.0,0.0,0.0,10.534773419260747,0.0,0.0,0.0 -8301,my_reservoir,2012-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8302,gw1,2012-01-04,262.46380480007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8303,gw2,2012-01-04,262.53619519993,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8304,my_sewer,2012-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8305,my_land,2012-01-05,4.310820456180241,percolation,0.0,0.0,0.0008743328134845625,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8306,my_land,2012-01-05,0.25424588681727395,subsurface_runoff,0.0,0.0,4.648971700552298e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8307,my_land,2012-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.021428571,0.0,0.0,0.0 -8308,my_groundwater,2012-01-05,13.247022688774168,tank,0.0,0.0,0.0019222736935502526,0.0,0.0,0.0,0.0,0.0,10.511547577031282,0.0,0.0,0.0 -8309,my_reservoir,2012-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8310,gw1,2012-01-05,262.4640461014029,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8311,gw2,2012-01-05,262.5359538985971,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8312,my_sewer,2012-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8313,my_land,2012-01-06,4.224604047056636,percolation,0.0,0.0,0.0008568461572148712,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8314,my_land,2012-01-06,0.20339670945381916,subsurface_runoff,0.0,0.0,3.719177360441839e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8315,my_land,2012-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057142857,0.0,0.0,0.0 -8316,my_groundwater,2012-01-06,13.299906000153028,tank,0.0,0.0,0.001934910948945394,0.0,0.0,0.0,0.0,0.0,10.489026940328849,0.0,0.0,0.0 -8317,my_reservoir,2012-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8318,gw1,2012-01-06,262.46428579406023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8319,gw2,2012-01-06,262.53571420593977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8320,my_sewer,2012-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8321,my_land,2012-01-07,4.140111966115503,percolation,0.0,0.0,0.0008397092340705738,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8322,my_land,2012-01-07,0.16271736756305533,subsurface_runoff,0.0,0.0,2.9753418883534712e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8323,my_land,2012-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057142857,0.0,0.0,0.0 -8324,my_groundwater,2012-01-07,13.350937085891424,tank,0.0,0.0,0.0019471677524094673,0.0,0.0,0.0,0.0,0.0,10.467183241726634,0.0,0.0,0.0 -8325,my_reservoir,2012-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8326,gw1,2012-01-07,262.4645238887665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8327,gw2,2012-01-07,262.5354761112335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8328,my_sewer,2012-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8329,my_land,2012-01-08,4.057309726793193,percolation,0.0,0.0,0.0008229150493891624,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8330,my_land,2012-01-08,0.13017389405044427,subsurface_runoff,0.0,0.0,2.380273510682777e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8331,my_land,2012-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057142857,0.0,0.0,0.0 -8332,my_groundwater,2012-01-08,13.4001549769007,tank,0.0,0.0,0.0019590520322481514,0.0,0.0,0.0,0.0,0.0,10.44598968210406,0.0,0.0,0.0 -8333,my_reservoir,2012-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8334,gw1,2012-01-08,262.4647603961747,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8335,gw2,2012-01-08,262.5352396038253,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8336,my_sewer,2012-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8337,my_land,2012-01-09,3.976163532257329,percolation,0.0,0.0,0.0008064567484013792,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8338,my_land,2012-01-09,0.10413911524035542,subsurface_runoff,0.0,0.0,1.9042188085462215e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8339,my_land,2012-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 -8340,my_groundwater,2012-01-09,13.447597918507972,tank,0.0,0.0,0.0019705715574028448,0.0,0.0,0.0,0.0,0.0,10.42542083641195,0.0,0.0,0.0 -8341,my_reservoir,2012-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8342,gw1,2012-01-09,262.46499532686687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8343,gw2,2012-01-09,262.53500467313313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8344,my_sewer,2012-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8345,my_land,2012-01-10,3.8966402616121822,percolation,0.0,0.0,0.0007903276134333516,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8346,my_land,2012-01-10,0.08331129219228434,subsurface_runoff,0.0,0.0,1.5233750468369771e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8347,my_land,2012-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 -8348,my_groundwater,2012-01-10,13.493303386180237,tank,0.0,0.0,0.0019817339406399456,0.0,0.0,0.0,0.0,0.0,10.405452566608364,0.0,0.0,0.0 -8349,my_reservoir,2012-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8350,gw1,2012-01-10,262.4652286913544,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8351,gw2,2012-01-10,262.5347713086456,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8352,my_sewer,2012-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8353,my_land,2012-01-11,3.8187074563799386,percolation,0.0,0.0,0.0007745210611646846,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8354,my_land,2012-01-11,0.06664903375382747,subsurface_runoff,0.0,0.0,1.2187000374695817e-05,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8355,my_land,2012-01-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 -8356,my_groundwater,2012-01-11,13.53730810093395,tank,0.0,0.0,0.001992546641676341,0.0,0.0,0.0,0.0,0.0,10.386061941136491,0.0,0.0,0.0 -8357,my_reservoir,2012-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8358,gw1,2012-01-11,262.46546050007873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8359,gw2,2012-01-11,262.53453949992127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8360,my_sewer,2012-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8361,my_land,2012-01-12,3.74233330725234,percolation,0.0,0.0,0.0007590306399413908,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8362,my_land,2012-01-12,0.05331922700306198,subsurface_runoff,0.0,0.0,9.749600299756655e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -8363,my_land,2012-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.164285714,0.0,0.0,0.0 -8364,my_groundwater,2012-01-12,13.579648044436395,tank,0.0,0.0,0.0020030169702423854,0.0,0.0,0.0,0.0,0.0,10.3672271603782,0.0,0.0,0.0 -8365,my_reservoir,2012-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8366,gw1,2012-01-12,262.46569076341154,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8367,gw2,2012-01-12,262.53430923658846,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8368,my_sewer,2012-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8369,my_land,2012-01-13,3.6674866411072933,percolation,0.0,0.0,0.000743850027142563,0.0,0.0,0.0,0.0,0.0,7.028764695643464,0.0,0.0,0.0 -8370,my_land,2012-01-13,0.04265538160244958,subsurface_runoff,0.0,0.0,7.799680239805323e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -8371,my_land,2012-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8372,my_groundwater,2012-01-13,13.62035847380499,tank,0.0,0.0,0.00201315208908361,0.0,0.0,0.0,0.0,0.0,10.348927487572135,0.0,0.0,0.0 -8373,my_reservoir,2012-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8374,gw1,2012-01-13,262.4659194916555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8375,gw2,2012-01-13,262.5340805083445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8376,my_sewer,2012-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8377,my_land,2012-01-14,3.5941369082851473,percolation,0.0,0.0,0.0007289730265997117,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -8378,my_land,2012-01-14,0.034124305281959665,subsurface_runoff,0.0,0.0,6.2397441918442585e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8379,my_land,2012-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8380,my_groundwater,2012-01-14,13.659473936110569,tank,0.0,0.0,0.0020229590169023952,0.0,0.0,0.0,0.0,0.0,10.33114318473471,0.0,0.0,0.0 -8381,my_reservoir,2012-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8382,gw1,2012-01-14,262.4661466950445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8383,gw2,2012-01-14,262.5338533049555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8384,my_sewer,2012-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8385,my_land,2012-01-15,3.5222541701194445,percolation,0.0,0.0,0.0007143935660677176,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -8386,my_land,2012-01-15,0.02729944422556773,subsurface_runoff,0.0,0.0,4.991795353475407e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866663,0.0,0.0,0.0 -8387,my_land,2012-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8388,my_groundwater,2012-01-15,13.697028282590582,tank,0.0,0.0,0.0020324446312408036,0.0,0.0,0.0,0.0,0.0,10.313855453166271,0.0,0.0,0.0 -8389,my_reservoir,2012-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8390,gw1,2012-01-15,262.46637238374416,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8391,gw2,2012-01-15,262.53362761625584,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8392,my_sewer,2012-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8393,my_land,2012-01-16,3.4518090867170557,percolation,0.0,0.0,0.0007001056947463632,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -8394,my_land,2012-01-16,0.021839555380454186,subsurface_runoff,0.0,0.0,3.9934362827803256e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -8395,my_land,2012-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8396,my_groundwater,2012-01-16,13.733054682577988,tank,0.0,0.0,0.0020416156713057524,0.0,0.0,0.0,0.0,0.0,10.297046378164193,0.0,0.0,0.0 -8397,my_reservoir,2012-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8398,gw1,2012-01-16,262.46659656785255,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8399,gw2,2012-01-16,262.53340343214745,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8400,my_sewer,2012-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.912109717244612,0.0,0.0,0.0 -8401,my_land,2012-01-17,3.3827729049827147,percolation,0.0,0.0,0.0006861035808514359,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -8402,my_land,2012-01-17,0.01747164430436335,subsurface_runoff,0.0,0.0,3.1947490262242603e-06,0.0,0.0,0.0,0.0,0.0,7.6439248488666625,0.0,0.0,0.0 -8403,my_land,2012-01-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8404,my_groundwater,2012-01-17,13.76758563715155,tank,0.0,0.0,0.002050478740737678,0.0,0.0,0.0,0.0,0.0,10.280698877599843,0.0,0.0,0.0 -8405,my_reservoir,2012-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8406,gw1,2012-01-17,262.4668192574002,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8407,gw2,2012-01-17,262.5331807425998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8408,my_sewer,2012-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -8409,my_land,2012-01-18,3.31511744688306,percolation,0.0,0.0,0.0006723815092344072,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -8410,my_land,2012-01-18,0.013977315443490679,subsurface_runoff,0.0,0.0,2.5557992209794084e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -8411,my_land,2012-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8412,my_groundwater,2012-01-18,13.800652992513076,tank,0.0,0.0,0.00205904031032382,0.0,0.0,0.0,0.0,0.0,10.264796654048011,0.0,0.0,0.0 -8413,my_reservoir,2012-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8414,gw1,2012-01-18,262.46704046235084,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8415,gw2,2012-01-18,262.53295953764916,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8416,my_sewer,2012-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -8417,my_land,2012-01-19,3.248815097945399,percolation,0.0,0.0,0.0006589338790497191,0.0,0.0,0.0,0.0,0.0,7.0287646956434635,0.0,0.0,0.0 -8418,my_land,2012-01-19,0.011181852354792543,subsurface_runoff,0.0,0.0,2.0446393767835266e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -8419,my_land,2012-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8420,my_groundwater,2012-01-19,13.83228795309711,tank,0.0,0.0,0.0020673067206572367,0.0,0.0,0.0,0.0,0.0,10.249324150185664,0.0,0.0,0.0 -8421,my_reservoir,2012-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8422,gw1,2012-01-19,262.4672601926018,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8423,gw2,2012-01-19,262.5327398073982,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8424,my_sewer,2012-01-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -8425,my_land,2012-01-20,3.183838795986491,percolation,0.0,0.0,0.0006457552014687247,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 -8426,my_land,2012-01-20,0.008945481883834035,subsurface_runoff,0.0,0.0,1.6357115014268214e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -8427,my_land,2012-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8428,my_groundwater,2012-01-20,13.862521094418376,tank,0.0,0.0,0.0020752841847426354,0.0,0.0,0.0,0.0,0.0,10.234266507202527,0.0,0.0,0.0 -8429,my_reservoir,2012-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8430,gw1,2012-01-20,262.4674784579845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8431,gw2,2012-01-20,262.5325215420155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8432,my_sewer,2012-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -8433,my_land,2012-01-21,3.1201620200667612,percolation,0.0,0.0,0.0006328400974393502,0.0,0.0,0.0,0.0,0.0,7.028764695643463,0.0,0.0,0.0 -8434,my_land,2012-01-21,0.007156385507067228,subsurface_runoff,0.0,0.0,1.308569201141457e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -8435,my_land,2012-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8436,my_groundwater,2012-01-21,13.89138237566226,tank,0.0,0.0,0.00208297879055008,0.0,0.0,0.0,0.0,0.0,10.219609525988746,0.0,0.0,0.0 -8437,my_reservoir,2012-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8438,gw1,2012-01-21,262.4676952682646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8439,gw2,2012-01-21,262.5323047317354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8440,my_sewer,2012-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8125,0.0,0.0,0.0 -8441,my_land,2012-01-22,3.057758779665426,percolation,0.0,0.0,0.0006201832954905632,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 -8442,my_land,2012-01-22,0.005725108405653783,subsurface_runoff,0.0,0.0,1.0468553609131656e-06,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -8443,my_land,2012-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8444,my_groundwater,2012-01-22,13.918901152023437,tank,0.0,0.0,0.00209039650351762,0.0,0.0,0.0,0.0,0.0,10.205339630885716,0.0,0.0,0.0 -8445,my_reservoir,2012-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8446,gw1,2012-01-22,262.4679106331428,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8447,gw2,2012-01-22,262.5320893668572,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8448,my_sewer,2012-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 -8449,my_land,2012-01-23,2.9966036040721176,percolation,0.0,0.0,0.0006077796295807519,0.0,0.0,0.0,0.0,0.0,7.028764695643462,0.0,0.0,0.0 -8450,my_land,2012-01-23,0.004580086724523026,subsurface_runoff,0.0,0.0,8.374842887305325e-07,0.0,0.0,0.0,0.0,0.0,7.643924848866662,0.0,0.0,0.0 -8451,my_land,2012-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6375,0.0,0.0,0.0 -8452,my_groundwater,2012-01-23,13.945106186797704,tank,0.0,0.0,0.002097543169003863,0.0,0.0,0.0,0.0,0.0,10.19144383580467,0.0,0.0,0.0 -8453,my_reservoir,2012-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8454,gw1,2012-01-23,262.4681245622552,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8455,gw2,2012-01-23,262.5318754377448,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8456,my_sewer,2012-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.65625,0.0,0.0,0.0 -8457,my_land,2012-01-24,3.003258557678833,percolation,0.0,0.0,0.0006083411796966697,0.0,0.0,0.0,0.0,0.0,7.011035885784654,0.0,0.0,0.0 -8458,my_land,2012-01-24,0.021782987934219185,subsurface_runoff,0.0,0.0,4.130434426231471e-06,0.0,0.0,0.0,0.0,0.0,6.467123279742384,0.0,0.0,0.0 -8459,my_land,2012-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.025,0.0,0.0,0.0 -8460,my_groundwater,2012-01-24,13.971381184826313,tank,0.0,0.0,0.002104683399382321,0.0,0.0,0.0,0.0,0.0,10.177526598382288,0.0,0.0,0.0 -8461,my_reservoir,2012-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8462,gw1,2012-01-24,262.4683370651735,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8463,gw2,2012-01-24,262.5316629348265,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8464,my_sewer,2012-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 -8465,my_land,2012-01-25,3.0929449885791156,percolation,0.0,0.0,0.0006243419942452337,0.0,0.0,0.0,0.0,0.0,6.987877609016408,0.0,0.0,0.0 -8466,my_land,2012-01-25,0.058175125600126144,subsurface_runoff,0.0,0.0,1.096901098112051e-05,0.0,0.0,0.0,0.0,0.0,6.513076520037298,0.0,0.0,0.0 -8467,my_land,2012-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.753571429,0.0,0.0,0.0 -8468,my_groundwater,2012-01-25,13.999416254846038,tank,0.0,0.0,0.002112131510052429,0.0,0.0,0.0,0.0,0.0,10.163180890404908,0.0,0.0,0.0 -8469,my_reservoir,2012-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8470,gw1,2012-01-25,262.4685481514057,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8471,gw2,2012-01-25,262.5314518485943,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8472,my_sewer,2012-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8473,my_land,2012-01-26,3.1814006989170704,percolation,0.0,0.0,0.0006397934846257404,0.0,0.0,0.0,0.0,0.0,6.958592335172325,0.0,0.0,0.0 -8474,my_land,2012-01-26,0.0874420352037845,subsurface_runoff,0.0,0.0,1.637747552378386e-05,0.0,0.0,0.0,0.0,0.0,6.445241805792428,0.0,0.0,0.0 -8475,my_land,2012-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857,0.0,0.0,0.0 -8476,my_groundwater,2012-01-26,14.029181942722591,tank,0.0,0.0,0.002119875548642893,0.0,0.0,0.0,0.0,0.0,10.148387247672872,0.0,0.0,0.0 -8477,my_reservoir,2012-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8478,gw1,2012-01-26,262.4687578303963,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8479,gw2,2012-01-26,262.5312421696037,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8480,my_sewer,2012-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8481,my_land,2012-01-27,3.180676923006244,percolation,0.0,0.0,0.0006387031413783165,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -8482,my_land,2012-01-27,0.08707042763718133,subsurface_runoff,0.0,0.0,1.6287157682997378e-05,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 -8483,my_land,2012-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.210714286,0.0,0.0,0.0 -8484,my_groundwater,2012-01-27,14.05885848236984,tank,0.0,0.0,0.00212757803086363,0.0,0.0,0.0,0.0,0.0,10.133623170371216,0.0,0.0,0.0 -8485,my_reservoir,2012-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8486,gw1,2012-01-27,262.46896611152704,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8487,gw2,2012-01-27,262.53103388847296,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8488,my_sewer,2012-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8489,my_land,2012-01-28,3.117063384546119,percolation,0.0,0.0,0.0006259290785507502,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -8490,my_land,2012-01-28,0.06965634210974506,subsurface_runoff,0.0,0.0,1.3029726146397903e-05,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -8491,my_land,2012-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.210714286,0.0,0.0,0.0 -8492,my_groundwater,2012-01-28,14.08716584077789,tank,0.0,0.0,0.0021350012134569683,0.0,0.0,0.0,0.0,0.0,10.119249952435409,0.0,0.0,0.0 -8493,my_reservoir,2012-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8494,gw1,2012-01-28,262.46917300411684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8495,gw2,2012-01-28,262.53082699588316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8496,my_sewer,2012-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8497,my_land,2012-01-29,3.0547221168551966,percolation,0.0,0.0,0.0006134104969797352,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 -8498,my_land,2012-01-29,0.05572507368779604,subsurface_runoff,0.0,0.0,1.0423780917118322e-05,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -8499,my_land,2012-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8500,my_groundwater,2012-01-29,14.11413334069764,tank,0.0,0.0,0.0021421509955404133,0.0,0.0,0.0,0.0,0.0,10.105254439048279,0.0,0.0,0.0 -8501,my_reservoir,2012-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8502,gw1,2012-01-29,262.46937851742274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8503,gw2,2012-01-29,262.53062148257726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8504,my_sewer,2012-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8505,my_land,2012-01-30,2.9936276745180925,percolation,0.0,0.0,0.0006011422870401405,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 -8506,my_land,2012-01-30,0.04458005895023683,subsurface_runoff,0.0,0.0,8.339024733694658e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -8507,my_land,2012-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8508,my_groundwater,2012-01-30,14.139789713577157,tank,0.0,0.0,0.002149033157466308,0.0,0.0,0.0,0.0,0.0,10.091624042506758,0.0,0.0,0.0 -8509,my_reservoir,2012-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8510,gw1,2012-01-30,262.4695826606399,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8511,gw2,2012-01-30,262.5304173393601,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8512,my_sewer,2012-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8513,my_land,2012-01-31,2.9337551210277306,percolation,0.0,0.0,0.0005891194412993377,0.0,0.0,0.0,0.0,0.0,6.94270857795339,0.0,0.0,0.0 -8514,my_land,2012-01-31,0.03566404716018946,subsurface_runoff,0.0,0.0,6.671219786955727e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -8515,my_land,2012-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8516,my_groundwater,2012-01-31,14.16416311139985,tank,0.0,0.0,0.002155653363199093,0.0,0.0,0.0,0.0,0.0,10.07834671195888,0.0,0.0,0.0 -8517,my_reservoir,2012-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8518,gw1,2012-01-31,262.4697854429023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8519,gw2,2012-01-31,262.5302145570977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8520,my_sewer,2012-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8521,my_land,2012-02-01,2.875080018607176,percolation,0.0,0.0,0.000577337052473351,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -8522,my_land,2012-02-01,0.02853123772815157,subsurface_runoff,0.0,0.0,5.3369758295645815e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -8523,my_land,2012-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8524,my_groundwater,2012-02-01,14.187281118285853,tank,0.0,0.0,0.0021620171626450173,0.0,0.0,0.0,0.0,0.0,10.065410905061507,0.0,0.0,0.0 -8525,my_reservoir,2012-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8526,gw1,2012-02-01,262.46998687328295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8527,gw2,2012-02-01,262.53001312671705,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8528,my_sewer,2012-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8529,my_land,2012-02-02,2.8175784182350325,percolation,0.0,0.0,0.000565790311423884,0.0,0.0,0.0,0.0,0.0,6.9427085779533915,0.0,0.0,0.0 -8530,my_land,2012-02-02,0.02282499018252126,subsurface_runoff,0.0,0.0,4.269580663651665e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183773,0.0,0.0,0.0 -8531,my_land,2012-02-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8532,my_groundwater,2012-02-02,14.209170761861351,tank,0.0,0.0,0.002168129993935248,0.0,0.0,0.0,0.0,0.0,10.052805561418086,0.0,0.0,0.0 -8533,my_reservoir,2012-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8534,gw1,2012-02-02,262.4701869607944,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8535,gw2,2012-02-02,262.5298130392056,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8536,my_sewer,2012-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.482142857000001,0.0,0.0,0.0 -8537,my_land,2012-02-03,2.761226849870332,percolation,0.0,0.0,0.0005544745051954063,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -8538,my_land,2012-02-03,0.018259992146017007,subsurface_runoff,0.0,0.0,3.415664530921332e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 -8539,my_land,2012-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8540,my_groundwater,2012-02-03,14.229858524400486,tank,0.0,0.0,0.0021739971856633163,0.0,0.0,0.0,0.0,0.0,10.040520077667294,0.0,0.0,0.0 -8541,my_reservoir,2012-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8542,gw1,2012-02-03,262.4703857143891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8543,gw2,2012-02-03,262.5296142856109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8544,my_sewer,2012-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.296428570999999,0.0,0.0,0.0 -8545,my_land,2012-02-04,2.7060023128729256,percolation,0.0,0.0,0.0005433850150914982,0.0,0.0,0.0,0.0,0.0,6.942708577953391,0.0,0.0,0.0 -8546,my_land,2012-02-04,0.014607993716813605,subsurface_runoff,0.0,0.0,2.7325316247370657e-06,0.0,0.0,0.0,0.0,0.0,6.388272750183772,0.0,0.0,0.0 -8547,my_land,2012-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.667857143,0.0,0.0,0.0 -8548,my_groundwater,2012-02-04,14.249370353744398,tank,0.0,0.0,0.002179623959077806,0.0,0.0,0.0,0.0,0.0,10.02854428410406,0.0,0.0,0.0 -8549,my_reservoir,2012-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8550,gw1,2012-02-04,262.47058314295987,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8551,gw2,2012-02-04,262.52941685704013,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8552,my_sewer,2012-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 -8553,my_land,2012-02-05,2.7210903841783542,percolation,0.0,0.0,0.0005455839026736701,0.0,0.0,0.0,0.0,0.0,6.8747090554792125,0.0,0.0,0.0 -8554,my_land,2012-02-05,0.03051853580688957,subsurface_runoff,0.0,0.0,5.741559417885387e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 -8555,my_land,2012-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.089285714,0.0,0.0,0.0 -8556,my_groundwater,2012-02-05,14.269140553537953,tank,0.0,0.0,0.0021852814286273973,0.0,0.0,0.0,0.0,0.0,10.01630091405323,0.0,0.0,0.0 -8557,my_reservoir,2012-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8558,gw1,2012-02-05,262.4707792553401,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8559,gw2,2012-02-05,262.5292207446599,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8560,my_sewer,2012-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 -8561,my_land,2012-02-06,2.666668576494787,percolation,0.0,0.0,0.0005346722246201966,0.0,0.0,0.0,0.0,0.0,6.8747090554792125,0.0,0.0,0.0 -8562,my_land,2012-02-06,0.024414828645511654,subsurface_runoff,0.0,0.0,4.59324753430831e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 -8563,my_land,2012-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882142857,0.0,0.0,0.0 -8564,my_groundwater,2012-02-06,14.287753455318468,tank,0.0,0.0,0.0021907026239141687,0.0,0.0,0.0,0.0,0.0,10.004364560258281,0.0,0.0,0.0 -8565,my_reservoir,2012-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8566,gw1,2012-02-06,262.4709740603045,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8567,gw2,2012-02-06,262.5290259396955,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8568,my_sewer,2012-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 -8569,my_land,2012-02-07,2.6133352049648915,percolation,0.0,0.0,0.0005239787801277927,0.0,0.0,0.0,0.0,0.0,6.874709055479212,0.0,0.0,0.0 -8570,my_land,2012-02-07,0.019531862916409324,subsurface_runoff,0.0,0.0,3.674598027446648e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 -8571,my_land,2012-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882142857,0.0,0.0,0.0 -8572,my_groundwater,2012-02-07,14.305234109781242,tank,0.0,0.0,0.002195892578235556,0.0,0.0,0.0,0.0,0.0,9.99272561811866,0.0,0.0,0.0 -8573,my_reservoir,2012-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8574,gw1,2012-02-07,262.47116756656914,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8575,gw2,2012-02-07,262.52883243343086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8576,my_sewer,2012-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2964285709999994,0.0,0.0,0.0 -8577,my_land,2012-02-08,2.5610685008655936,percolation,0.0,0.0,0.0005134992045252369,0.0,0.0,0.0,0.0,0.0,6.874709055479211,0.0,0.0,0.0 -8578,my_land,2012-02-08,0.01562549033312746,subsurface_runoff,0.0,0.0,2.9396784219573187e-06,0.0,0.0,0.0,0.0,0.0,5.08061301834507,0.0,0.0,0.0 -8579,my_land,2012-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.882142857,0.0,0.0,0.0 -8580,my_groundwater,2012-02-08,14.321607061845839,tank,0.0,0.0,0.0022008562234535167,0.0,0.0,0.0,0.0,0.0,9.98137486486649,0.0,0.0,0.0 -8581,my_reservoir,2012-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8582,gw1,2012-02-08,262.47135978279204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8583,gw2,2012-02-08,262.52864021720796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8584,my_sewer,2012-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8585,my_land,2012-02-09,2.676914675528104,percolation,0.0,0.0,0.0005349861236321882,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 -8586,my_land,2012-02-09,0.05796094864196384,subsurface_runoff,0.0,0.0,1.0993076940955265e-05,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8587,my_land,2012-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9964285709999996,0.0,0.0,0.0 -8588,my_groundwater,2012-02-09,14.340297378657333,tank,0.0,0.0,0.0022062448718402528,0.0,0.0,0.0,0.0,0.0,9.96884655987413,0.0,0.0,0.0 -8589,my_reservoir,2012-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8590,gw1,2012-02-09,262.47155071757345,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8591,gw2,2012-02-09,262.52844928242655,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8592,my_sewer,2012-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8593,my_land,2012-02-10,2.623376382017542,percolation,0.0,0.0,0.0005242864011595445,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 -8594,my_land,2012-02-10,0.046368758913571076,subsurface_runoff,0.0,0.0,8.794461552764211e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8595,my_land,2012-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.157142857,0.0,0.0,0.0 -8596,my_groundwater,2012-02-10,14.357851082987475,tank,0.0,0.0,0.0022114022328271143,0.0,0.0,0.0,0.0,0.0,9.956630430967884,0.0,0.0,0.0 -8597,my_reservoir,2012-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8598,gw1,2012-02-10,262.4717403794563,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8599,gw2,2012-02-10,262.5282596205437,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8600,my_sewer,2012-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8601,my_land,2012-02-11,2.570908854377191,percolation,0.0,0.0,0.0005138006731363536,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 -8602,my_land,2012-02-11,0.03709500713085686,subsurface_runoff,0.0,0.0,7.0355692422113695e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8603,my_land,2012-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.317857143,0.0,0.0,0.0 -8604,my_groundwater,2012-02-11,14.374292814101256,tank,0.0,0.0,0.0022163332409481794,0.0,0.0,0.0,0.0,0.0,9.944716796887766,0.0,0.0,0.0 -8605,my_reservoir,2012-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8606,gw1,2012-02-11,262.47192877692663,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8607,gw2,2012-02-11,262.52807122307337,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8608,my_sewer,2012-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8609,my_land,2012-02-12,2.5194906772896473,percolation,0.0,0.0,0.0005035246596736266,0.0,0.0,0.0,0.0,0.0,6.684525366636403,0.0,0.0,0.0 -8610,my_land,2012-02-12,0.02967600570468549,subsurface_runoff,0.0,0.0,5.628455393769096e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8611,my_land,2012-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.478571429,0.0,0.0,0.0 -8612,my_groundwater,2012-02-12,14.389646713710828,tank,0.0,0.0,0.002221042731274879,0.0,0.0,0.0,0.0,0.0,9.933096357492971,0.0,0.0,0.0 -8613,my_reservoir,2012-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8614,gw1,2012-02-12,262.4721159184138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8615,gw2,2012-02-12,262.5278840815862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8616,my_sewer,2012-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8617,my_land,2012-02-13,2.4691008637438543,percolation,0.0,0.0,0.000493454166480154,0.0,0.0,0.0,0.0,0.0,6.684525366636404,0.0,0.0,0.0 -8618,my_land,2012-02-13,0.023740804563748392,subsurface_runoff,0.0,0.0,4.502764315015277e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8619,my_land,2012-02-13,3.0269507914078967e-19,surface_runoff,0.0,0.0,7.390016580585685e-23,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8620,my_groundwater,2012-02-13,14.40393643593848,tank,0.0,0.0,0.002225535441407181,0.0,0.0,0.0,0.0,0.0,9.92176017519104,0.0,0.0,0.0 -8621,my_reservoir,2012-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8622,gw1,2012-02-13,262.47230181229105,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8623,gw2,2012-02-13,262.52769818770895,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8624,my_sewer,2012-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8625,my_land,2012-02-14,2.419718846468977,percolation,0.0,0.0,0.000483585083150551,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8626,my_land,2012-02-14,0.018992643650998713,subsurface_runoff,0.0,0.0,3.6022114520122215e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8627,my_land,2012-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8628,my_groundwater,2012-02-14,14.417185157080322,tank,0.0,0.0,0.0022298160134249425,0.0,0.0,0.0,0.0,0.0,9.910699657445143,0.0,0.0,0.0 -8629,my_reservoir,2012-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8630,gw1,2012-02-14,262.47248646687575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8631,gw2,2012-02-14,262.52751353312425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8632,my_sewer,2012-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8633,my_land,2012-02-15,2.3713244695395974,percolation,0.0,0.0,0.00047391338148754,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8634,my_land,2012-02-15,0.01519411492079897,subsurface_runoff,0.0,0.0,2.8817691616097772e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8635,my_land,2012-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8636,my_groundwater,2012-02-15,14.429415585174677,tank,0.0,0.0,0.0022338889958002334,0.0,0.0,0.0,0.0,0.0,9.89990654028712,0.0,0.0,0.0 -8637,my_reservoir,2012-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8638,gw1,2012-02-15,262.4726698904299,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8639,gw2,2012-02-15,262.5273301095701,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8640,my_sewer,2012-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8641,my_land,2012-02-16,2.3238979801488053,percolation,0.0,0.0,0.00046443511385778916,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8642,my_land,2012-02-16,0.012155291936639176,subsurface_runoff,0.0,0.0,2.305415329287822e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8643,my_land,2012-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8644,my_groundwater,2012-02-16,14.440649969379056,tank,0.0,0.0,0.002237758845271409,0.0,0.0,0.0,0.0,0.0,9.889372872769435,0.0,0.0,0.0 -8645,my_reservoir,2012-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8646,gw1,2012-02-16,262.4728520911604,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8647,gw2,2012-02-16,262.5271479088396,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8648,my_sewer,2012-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.996428571,0.0,0.0,0.0 -8649,my_land,2012-02-17,2.2774200205458293,percolation,0.0,0.0,0.00045514641158063337,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8650,my_land,2012-02-17,0.009724233549311342,subsurface_runoff,0.0,0.0,1.8443322634302575e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8651,my_land,2012-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8652,my_groundwater,2012-02-17,14.450910109159576,tank,0.0,0.0,0.0022414299286796936,0.0,0.0,0.0,0.0,0.0,9.879091002294214,0.0,0.0,0.0 -8653,my_reservoir,2012-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8654,gw1,2012-02-17,262.4730330772193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8655,gw2,2012-02-17,262.5269669227807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8656,my_sewer,2012-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8657,my_land,2012-02-18,2.2318716201349127,percolation,0.0,0.0,0.0004460434833490207,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8658,my_land,2012-02-18,0.007779386839449074,subsurface_runoff,0.0,0.0,1.475465810744206e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8659,my_land,2012-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8660,my_groundwater,2012-02-18,14.460217363296566,tank,0.0,0.0,0.0022449065247690278,0.0,0.0,0.0,0.0,0.0,9.869053560762142,0.0,0.0,0.0 -8661,my_reservoir,2012-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8662,gw1,2012-02-18,262.47321285670455,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8663,gw2,2012-02-18,262.52678714329545,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8664,my_sewer,2012-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8665,my_land,2012-02-19,2.1872341877322143,percolation,0.0,0.0,0.0004371226136820403,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8666,my_land,2012-02-19,0.006223509471559259,subsurface_runoff,0.0,0.0,1.180372648595365e-06,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8667,my_land,2012-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8668,my_groundwater,2012-02-19,14.468592658710017,tank,0.0,0.0,0.0022481928259499183,0.0,0.0,0.0,0.0,0.0,9.85925345148825,0.0,0.0,0.0 -8669,my_reservoir,2012-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8670,gw1,2012-02-19,262.47339143765987,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8671,gw2,2012-02-19,262.52660856234013,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8672,my_sewer,2012-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8673,my_land,2012-02-20,2.14348950397757,percolation,0.0,0.0,0.0004283801614083995,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8674,my_land,2012-02-20,0.004978807577247407,subsurface_runoff,0.0,0.0,9.44298118876292e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8675,my_land,2012-02-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8676,my_groundwater,2012-02-20,14.4760564991085,tank,0.0,0.0,0.002251292940028,0.0,0.0,0.0,0.0,0.0,9.84968383683545,0.0,0.0,0.0 -8677,my_reservoir,2012-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8678,gw1,2012-02-20,262.4735688280755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8679,gw2,2012-02-20,262.5264311719245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8680,my_sewer,2012-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8681,my_land,2012-02-21,2.1006197138980185,percolation,0.0,0.0,0.0004198125581802315,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8682,my_land,2012-02-21,0.003983046061797926,subsurface_runoff,0.0,0.0,7.554384951010335e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8683,my_land,2012-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8684,my_groundwater,2012-02-21,14.482628973465081,tank,0.0,0.0,0.0022542108918980276,0.0,0.0,0.0,0.0,0.0,9.840338126520287,0.0,0.0,0.0 -8685,my_reservoir,2012-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8686,gw1,2012-02-21,262.4737450358883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8687,gw2,2012-02-21,262.5262549641117,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8688,my_sewer,2012-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8689,my_land,2012-02-22,2.0586073196200583,percolation,0.0,0.0,0.00041141630701662686,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8690,my_land,2012-02-22,0.003186436849438341,subsurface_runoff,0.0,0.0,6.043507960808269e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8691,my_land,2012-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8692,my_groundwater,2012-02-22,14.488329764323684,tank,0.0,0.0,0.002256950625203978,0.0,0.0,0.0,0.0,0.0,9.831209966548634,0.0,0.0,0.0 -8693,my_reservoir,2012-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8694,gw1,2012-02-22,262.4739200689824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8695,gw2,2012-02-22,262.5260799310176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8696,my_sewer,2012-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8697,my_land,2012-02-23,2.017435173227657,percolation,0.0,0.0,0.0004031879808762943,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8698,my_land,2012-02-23,0.0025491494795506727,subsurface_runoff,0.0,0.0,4.834806368646615e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8699,my_land,2012-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8700,my_groundwater,2012-02-23,14.493178155939296,tank,0.0,0.0,0.00225951600396595,0.0,0.0,0.0,0.0,0.0,9.822293228742039,0.0,0.0,0.0 -8701,my_reservoir,2012-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8702,gw1,2012-02-23,262.4740939351892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8703,gw2,2012-02-23,262.5259060648108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8704,my_sewer,2012-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8705,my_land,2012-02-24,1.9770864697631039,percolation,0.0,0.0,0.0003951242212587684,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8706,my_land,2012-02-24,0.002039319583640538,subsurface_runoff,0.0,0.0,3.8678450949172917e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8707,my_land,2012-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8708,my_groundwater,2012-02-24,14.49719304225534,tank,0.0,0.0,0.0022619108141745175,0.0,0.0,0.0,0.0,0.0,9.813582000818254,0.0,0.0,0.0 -8709,my_reservoir,2012-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8710,gw1,2012-02-24,262.47426664228794,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8711,gw2,2012-02-24,262.52573335771206,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8712,my_sewer,2012-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8713,my_land,2012-02-25,1.9375447403678419,percolation,0.0,0.0,0.00038722173683359304,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8714,my_land,2012-02-25,0.0016314556669124306,subsurface_runoff,0.0,0.0,3.0942760759338336e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8715,my_land,2012-02-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8716,my_groundwater,2012-02-25,14.500392934721475,tank,0.0,0.0,0.0022641387653531938,0.0,0.0,0.0,0.0,0.0,9.805070576992007,0.0,0.0,0.0 -8717,my_reservoir,2012-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8718,gw1,2012-02-25,262.474438198006,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8719,gw2,2012-02-25,262.525561801994,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8720,my_sewer,2012-02-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8721,my_land,2012-02-26,1.898793845560485,percolation,0.0,0.0,0.0003794773020969212,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8722,my_land,2012-02-26,0.0013051645335299446,subsurface_runoff,0.0,0.0,2.4754208607470667e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8723,my_land,2012-02-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8724,my_groundwater,2012-02-26,14.50279596995501,tank,0.0,0.0,0.0022662034920896412,0.0,0.0,0.0,0.0,0.0,9.796753449064399,0.0,0.0,0.0 -8725,my_reservoir,2012-02-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8726,gw1,2012-02-26,262.4746086100193,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8727,gw2,2012-02-26,262.5253913899807,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8728,my_sewer,2012-02-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8729,my_land,2012-02-27,1.8608179686492752,percolation,0.0,0.0,0.0003718877560549828,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8730,my_land,2012-02-27,0.0010441316268239556,subsurface_runoff,0.0,0.0,1.9803366885976533e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8731,my_land,2012-02-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8732,my_groundwater,2012-02-27,14.504419917249054,tank,0.0,0.0,0.0022681085555362507,0.0,0.0,0.0,0.0,0.0,9.788625297971555,0.0,0.0,0.0 -8733,my_reservoir,2012-02-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8734,gw1,2012-02-27,262.4747778859525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8735,gw2,2012-02-27,262.5252221140475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8736,my_sewer,2012-02-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8737,my_land,2012-02-28,1.8236016092762897,percolation,0.0,0.0,0.0003644500009338831,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8738,my_land,2012-02-28,0.0008353053014591644,subsurface_runoff,0.0,0.0,1.5842693508781227e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8739,my_land,2012-02-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8740,my_groundwater,2012-02-28,14.505282185930485,tank,0.0,0.0,0.002269857444880707,0.0,0.0,0.0,0.0,0.0,9.780680985765098,0.0,0.0,0.0 -8741,my_reservoir,2012-02-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8742,gw1,2012-02-28,262.47494603337947,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8743,gw2,2012-02-28,262.52505396662053,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8744,my_sewer,2012-02-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8745,my_land,2012-02-29,1.7871295770907638,percolation,0.0,0.0,0.00035716100091520546,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8746,my_land,2012-02-29,0.0006682442411673316,subsurface_runoff,0.0,0.0,1.2674154807024983e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8747,my_land,2012-02-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8748,my_groundwater,2012-02-29,14.50539983257072,tank,0.0,0.0,0.002271453578787136,0.0,0.0,0.0,0.0,0.0,9.772915547998892,0.0,0.0,0.0 -8749,my_reservoir,2012-02-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8750,gw1,2012-02-29,262.4751130598236,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8751,gw2,2012-02-29,262.5248869401764,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8752,my_sewer,2012-03-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8753,my_land,2012-03-01,1.7513869855489486,percolation,0.0,0.0,0.00035001778089690133,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8754,my_land,2012-03-01,0.0005345953929338653,subsurface_runoff,0.0,0.0,1.0139323845619987e-07,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8755,my_land,2012-03-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8756,my_groundwater,2012-03-01,14.504789568052255,tank,0.0,0.0,0.0022729003068084263,0.0,0.0,0.0,0.0,0.0,9.76532418649822,0.0,0.0,0.0 -8757,my_reservoir,2012-03-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8758,gw1,2012-03-01,262.47527897275813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8759,gw2,2012-03-01,262.52472102724187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8760,my_sewer,2012-03-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,0.0 -8761,my_land,2012-03-02,1.7163592458379695,percolation,0.0,0.0,0.0003430174252789633,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8762,my_land,2012-03-02,0.0004276763143470922,subsurface_runoff,0.0,0.0,8.111459076495989e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8763,my_land,2012-03-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8764,my_groundwater,2012-03-02,14.503467764493825,tank,0.0,0.0,0.0022742009107702982,0.0,0.0,0.0,0.0,0.0,9.757902262489146,0.0,0.0,0.0 -8765,my_reservoir,2012-03-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8766,gw1,2012-03-02,262.4754437796064,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8767,gw2,2012-03-02,262.5245562203936,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8768,my_sewer,2012-03-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.40625,0.0,0.0,0.0 -8769,my_land,2012-03-03,1.68203206092121,percolation,0.0,0.0,0.00033615707677338405,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8770,my_land,2012-03-03,0.00034214105147767376,subsurface_runoff,0.0,0.0,6.489167261196791e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8771,my_land,2012-03-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8772,my_groundwater,2012-03-03,14.501450462037058,tank,0.0,0.0,0.002275358606127688,0.0,0.0,0.0,0.0,0.0,9.750645290067267,0.0,0.0,0.0 -8773,my_reservoir,2012-03-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8774,gw1,2012-03-03,262.47560748774237,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8775,gw2,2012-03-03,262.52439251225763,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8776,my_sewer,2012-03-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8777,my_land,2012-03-04,1.6483914197027858,percolation,0.0,0.0,0.00032943393523791637,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8778,my_land,2012-03-04,0.000273712841182139,subsurface_runoff,0.0,0.0,5.191333808957433e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8779,my_land,2012-03-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8780,my_groundwater,2012-03-04,14.498753375497344,tank,0.0,0.0,0.0022763765432939976,0.0,0.0,0.0,0.0,0.0,9.743548929986407,0.0,0.0,0.0 -8781,my_reservoir,2012-03-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8782,gw1,2012-03-04,262.4757701044908,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8783,gw2,2012-03-04,262.5242298955092,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8784,my_sewer,2012-03-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8785,my_land,2012-03-05,1.61542359130873,percolation,0.0,0.0,0.00032284525653315804,0.0,0.0,0.0,0.0,0.0,6.684525366636405,0.0,0.0,0.0 -8786,my_land,2012-03-05,0.0002189702729457112,subsurface_runoff,0.0,0.0,4.153067047165946e-08,0.0,0.0,0.0,0.0,0.0,4.097683852466122,0.0,0.0,0.0 -8787,my_land,2012-03-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.017697121023025,0.0,0.0,0.0 -8788,my_groundwater,2012-03-05,14.495391900881671,tank,0.0,0.0,0.0022772578089437587,0.0,0.0,0.0,0.0,0.0,9.736608983749143,0.0,0.0,0.0 -8789,my_reservoir,2012-03-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8790,gw1,2012-03-05,262.47593163712753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8791,gw2,2012-03-05,262.52406836287247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8792,my_sewer,2012-03-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8793,my_land,2012-03-06,1.5904848407082397,percolation,0.0,0.0,0.00031795479530596134,0.0,0.0,0.0,0.0,0.0,6.68778201659618,0.0,0.0,0.0 -8794,my_land,2012-03-06,0.002180542538270662,subsurface_runoff,0.0,0.0,4.5946777541581154e-07,0.0,0.0,0.0,0.0,0.0,7.123074989828441,0.0,0.0,0.0 -8795,my_land,2012-03-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.675,0.0,0.0,0.0 -8796,my_groundwater,2012-03-06,14.491531148243885,tank,0.0,0.0,0.0022780373156115565,0.0,0.0,0.0,0.0,0.0,9.729797137122882,0.0,0.0,0.0 -8797,my_reservoir,2012-03-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8798,gw1,2012-03-06,262.47609209288004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8799,gw2,2012-03-06,262.52390790711996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8800,my_sewer,2012-03-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8801,my_land,2012-03-07,1.5711620447824468,percolation,0.0,0.0,0.0003142459356215729,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 -8802,my_land,2012-03-07,0.0051422301907177205,subsurface_runoff,0.0,0.0,1.0887269337287755e-06,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8803,my_land,2012-03-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8804,my_groundwater,2012-03-07,14.487286690570633,tank,0.0,0.0,0.0022787393717262523,0.0,0.0,0.0,0.0,0.0,9.723089733962304,0.0,0.0,0.0 -8805,my_reservoir,2012-03-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8806,gw1,2012-03-07,262.4762514789275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8807,gw2,2012-03-07,262.5237485210725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8808,my_sewer,2012-03-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8809,my_land,2012-03-08,1.5397388038867978,percolation,0.0,0.0,0.00030796101690914145,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 -8810,my_land,2012-03-08,0.004113784152574176,subsurface_runoff,0.0,0.0,8.709815469830205e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8811,my_land,2012-03-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8812,my_groundwater,2012-03-08,14.482413156637616,tank,0.0,0.0,0.002279311729712587,0.0,0.0,0.0,0.0,0.0,9.71652878388902,0.0,0.0,0.0 -8813,my_reservoir,2012-03-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8814,gw1,2012-03-08,262.47640980240135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8815,gw2,2012-03-08,262.52359019759865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8816,my_sewer,2012-03-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8817,my_land,2012-03-09,1.5089440278090618,percolation,0.0,0.0,0.00030180179657095864,0.0,0.0,0.0,0.0,0.0,6.691685961665891,0.0,0.0,0.0 -8818,my_land,2012-03-09,0.0032910273220593408,subsurface_runoff,0.0,0.0,6.967852375864163e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8819,my_land,2012-03-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8820,my_groundwater,2012-03-09,14.476924912883563,tank,0.0,0.0,0.002279757272675643,0.0,0.0,0.0,0.0,0.0,9.710110536606093,0.0,0.0,0.0 -8821,my_reservoir,2012-03-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8822,gw1,2012-03-09,262.47656707038533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8823,gw2,2012-03-09,262.52343292961467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8824,my_sewer,2012-03-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8825,my_land,2012-03-10,1.4787651472528804,percolation,0.0,0.0,0.00029576576063953944,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 -8826,my_land,2012-03-10,0.0026328218576474726,subsurface_runoff,0.0,0.0,5.574281900691331e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8827,my_land,2012-03-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8828,my_groundwater,2012-03-10,14.470836033956145,tank,0.0,0.0,0.0022800788253355443,0.0,0.0,0.0,0.0,0.0,9.703831359451785,0.0,0.0,0.0 -8829,my_reservoir,2012-03-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8830,gw1,2012-03-10,262.4767232899161,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8831,gw2,2012-03-10,262.5232767100839,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8832,my_sewer,2012-03-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8833,my_land,2012-03-11,1.4491898443078228,percolation,0.0,0.0,0.0002898504454267487,0.0,0.0,0.0,0.0,0.0,6.69168596166589,0.0,0.0,0.0 -8834,my_land,2012-03-11,0.002106257486117978,subsurface_runoff,0.0,0.0,4.4594255205530646e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8835,my_land,2012-03-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8836,my_groundwater,2012-03-11,14.464160308558949,tank,0.0,0.0,0.0022802791551969643,0.0,0.0,0.0,0.0,0.0,9.697687732861871,0.0,0.0,0.0 -8837,my_reservoir,2012-03-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8838,gw1,2012-03-11,262.47687846798334,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8839,gw2,2012-03-11,262.52312153201666,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8840,my_sewer,2012-03-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8841,my_land,2012-03-12,1.4202060474216665,percolation,0.0,0.0,0.0002840534365182137,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -8842,my_land,2012-03-12,0.0016850059888943824,subsurface_runoff,0.0,0.0,3.5675404164424517e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8843,my_land,2012-03-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8844,my_groundwater,2012-03-12,14.456911245181493,tank,0.0,0.0,0.0022803609736952355,0.0,0.0,0.0,0.0,0.0,9.691676246041489,0.0,0.0,0.0 -8845,my_reservoir,2012-03-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8846,gw1,2012-03-12,262.4770326115301,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8847,gw2,2012-03-12,262.5229673884699,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8848,my_sewer,2012-03-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8849,my_land,2012-03-13,1.391801926473233,percolation,0.0,0.0,0.0002783723677878494,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -8850,my_land,2012-03-13,0.0013480047911155059,subsurface_runoff,0.0,0.0,2.8540323331539614e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8851,my_land,2012-03-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8852,my_groundwater,2012-03-13,14.4491020777146,tank,0.0,0.0,0.002280326937319536,0.0,0.0,0.0,0.0,0.0,9.685793592835278,0.0,0.0,0.0 -8853,my_reservoir,2012-03-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8854,gw1,2012-03-13,262.4771857274532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8855,gw2,2012-03-13,262.5228142725468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8856,my_sewer,2012-03-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8857,my_land,2012-03-14,1.3639658879437684,percolation,0.0,0.0,0.00027280492043209244,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -8858,my_land,2012-03-14,0.0010784038328924047,subsurface_runoff,0.0,0.0,2.2832258665231691e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8859,my_land,2012-03-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8860,my_groundwater,2012-03-14,14.440745770953455,tank,0.0,0.0,0.0022801796487136048,0.0,0.0,0.0,0.0,0.0,9.680036567785272,0.0,0.0,0.0 -8861,my_reservoir,2012-03-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8862,gw1,2012-03-14,262.47733782260354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8863,gw2,2012-03-14,262.52266217739646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8864,my_sewer,2012-03-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8865,my_land,2012-03-15,1.3366865701848931,percolation,0.0,0.0,0.0002673488220234506,0.0,0.0,0.0,0.0,0.0,6.691685961665889,0.0,0.0,0.0 -8866,my_land,2012-03-15,0.0008627230663139238,subsurface_runoff,0.0,0.0,1.8265806932185352e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8867,my_land,2012-03-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8868,my_groundwater,2012-03-15,14.43185502599055,tank,0.0,0.0,0.002279921657754441,0.0,0.0,0.0,0.0,0.0,9.67440206236664,0.0,0.0,0.0 -8869,my_reservoir,2012-03-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8870,gw1,2012-03-15,262.4774889037862,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8871,gw2,2012-03-15,262.5225110962138,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8872,my_sewer,2012-03-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.170491803278687,0.0,0.0,0.0 -8873,my_land,2012-03-16,1.3099528387811952,percolation,0.0,0.0,0.0002620018455829816,0.0,0.0,0.0,0.0,0.0,6.691685961665888,0.0,0.0,0.0 -8874,my_land,2012-03-16,0.000690178453051139,subsurface_runoff,0.0,0.0,1.4612645545748282e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -8875,my_land,2012-03-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8876,my_groundwater,2012-03-16,14.422442285500765,tank,0.0,0.0,0.002279555462609423,0.0,0.0,0.0,0.0,0.0,9.668887061391954,0.0,0.0,0.0 -8877,my_reservoir,2012-03-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8878,gw1,2012-03-16,262.47763897776093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8879,gw2,2012-03-16,262.52236102223907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8880,my_sewer,2012-03-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8881,my_land,2012-03-17,1.2837537820055713,percolation,0.0,0.0,0.00025676180867132195,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8882,my_land,2012-03-17,0.0005521427624409112,subsurface_runoff,0.0,0.0,1.1690116436598626e-07,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8883,my_land,2012-03-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8884,my_groundwater,2012-03-17,14.412519738920698,tank,0.0,0.0,0.00227908351077228,0.0,0.0,0.0,0.0,0.0,9.66348863957523,0.0,0.0,0.0 -8885,my_reservoir,2012-03-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8886,gw1,2012-03-17,262.4777880512425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8887,gw2,2012-03-17,262.5222119487575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8888,my_sewer,2012-03-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8889,my_land,2012-03-18,1.25807870636546,percolation,0.0,0.0,0.0002516265724978955,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8890,my_land,2012-03-18,0.000441714209952729,subsurface_runoff,0.0,0.0,9.352093149278901e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8891,my_land,2012-03-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8892,my_groundwater,2012-03-18,14.402099327524407,tank,0.0,0.0,0.002278508200078342,0.0,0.0,0.0,0.0,0.0,9.658203958247487,0.0,0.0,0.0 -8893,my_reservoir,2012-03-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8894,gw1,2012-03-18,262.4779361309009,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8895,gw2,2012-03-18,262.5220638690991,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8896,my_sewer,2012-03-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8897,my_land,2012-03-19,1.2329171322381507,percolation,0.0,0.0,0.0002465940410479376,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8898,my_land,2012-03-19,0.0003533713679621832,subsurface_runoff,0.0,0.0,7.481674519423121e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8899,my_land,2012-03-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8900,my_groundwater,2012-03-19,14.391192749397588,tank,0.0,0.0,0.0022778318796994796,0.0,0.0,0.0,0.0,0.0,9.653030262216076,0.0,0.0,0.0 -8901,my_reservoir,2012-03-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8902,gw1,2012-03-19,262.4780832233616,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8903,gw2,2012-03-19,262.5219167766384,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8904,my_sewer,2012-03-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8905,my_land,2012-03-20,1.2082587895933876,percolation,0.0,0.0,0.00024166216022697887,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8906,my_land,2012-03-20,0.00028269709436974655,subsurface_runoff,0.0,0.0,5.985339615538497e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8907,my_land,2012-03-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8908,my_groundwater,2012-03-20,14.379811464312244,tank,0.0,0.0,0.0022770568511191374,0.0,0.0,0.0,0.0,0.0,9.647964876760453,0.0,0.0,0.0 -8909,my_reservoir,2012-03-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8910,gw1,2012-03-20,262.4782293352058,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8911,gw2,2012-03-20,262.5217706647942,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8912,my_sewer,2012-03-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8913,my_land,2012-03-21,1.18409361380152,percolation,0.0,0.0,0.00023682891702243928,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8914,my_land,2012-03-21,0.00022615767549579723,subsurface_runoff,0.0,0.0,4.7882716924307976e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8915,my_land,2012-03-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8916,my_groundwater,2012-03-21,14.367966698503851,tank,0.0,0.0,0.0022761853690878675,0.0,0.0,0.0,0.0,0.0,9.643005204757504,0.0,0.0,0.0 -8917,my_reservoir,2012-03-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8918,gw1,2012-03-21,262.4783744729711,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8919,gw2,2012-03-21,262.5216255270289,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8920,my_sewer,2012-03-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8921,my_land,2012-03-22,1.1604117415254895,percolation,0.0,0.0,0.0002320923386819905,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8922,my_land,2012-03-22,0.0001809261403966378,subsurface_runoff,0.0,0.0,3.8306173539446384e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8923,my_land,2012-03-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8924,my_groundwater,2012-03-22,14.355669449352932,tank,0.0,0.0,0.0022752196425597456,0.0,0.0,0.0,0.0,0.0,9.638148723929964,0.0,0.0,0.0 -8925,my_reservoir,2012-03-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8926,gw1,2012-03-22,262.4785186431513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8927,gw2,2012-03-22,262.5214813568487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8928,my_sewer,2012-03-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8929,my_land,2012-03-23,1.1372035066949797,percolation,0.0,0.0,0.0002274504919083507,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8930,my_land,2012-03-23,0.00014474091231731024,subsurface_runoff,0.0,0.0,3.064493883155711e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8931,my_land,2012-03-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8932,my_groundwater,2012-03-23,14.342930489972982,tank,0.0,0.0,0.002274161835610052,0.0,0.0,0.0,0.0,0.0,9.633392984211754,0.0,0.0,0.0 -8933,my_reservoir,2012-03-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8934,gw1,2012-03-23,262.4786618521969,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8935,gw2,2012-03-23,262.5213381478031,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8936,my_sewer,2012-03-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8937,my_land,2012-03-24,1.11445943656108,percolation,0.0,0.0,0.00022290148207018367,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8938,my_land,2012-03-24,0.0001157927298538482,subsurface_runoff,0.0,0.0,2.4515951065245684e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8939,my_land,2012-03-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8940,my_groundwater,2012-03-24,14.329760373706614,tank,0.0,0.0,0.0022730140683345982,0.0,0.0,0.0,0.0,0.0,9.628735605224488,0.0,0.0,0.0 -8941,my_reservoir,2012-03-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8942,gw1,2012-03-24,262.4788041065156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8943,gw2,2012-03-24,262.5211958934844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8944,my_sewer,2012-03-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8945,my_land,2012-03-25,1.0921702478298585,percolation,0.0,0.0,0.00021844345242878,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8946,my_land,2012-03-25,9.263418388307856e-05,subsurface_runoff,0.0,0.0,1.9612760852196547e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8947,my_land,2012-03-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8948,my_groundwater,2012-03-25,14.316169438531741,tank,0.0,0.0,0.002271778417731062,0.0,0.0,0.0,0.0,0.0,9.624174273859692,0.0,0.0,0.0 -8949,my_reservoir,2012-03-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8950,gw1,2012-03-25,262.47894541247217,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8951,gw2,2012-03-25,262.52105458752783,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8952,my_sewer,2012-03-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8953,my_land,2012-03-26,1.0703268428732613,percolation,0.0,0.0,0.0002140745833802044,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8954,my_land,2012-03-26,7.410734710646285e-05,subsurface_runoff,0.0,0.0,1.569020868175724e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8955,my_land,2012-03-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8956,my_groundwater,2012-03-26,14.302167811379617,tank,0.0,0.0,0.0022704569185626883,0.0,0.0,0.0,0.0,0.0,9.619706741961588,0.0,0.0,0.0 -8957,my_reservoir,2012-03-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8958,gw1,2012-03-26,262.479085776389,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8959,gw2,2012-03-26,262.520914223611,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8960,my_sewer,2012-03-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8961,my_land,2012-03-27,1.0489203060157961,percolation,0.0,0.0,0.00020979309171260033,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8962,my_land,2012-03-27,5.928587768517028e-05,subsurface_runoff,0.0,0.0,1.2552166945405791e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8963,my_land,2012-03-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8964,my_groundwater,2012-03-27,14.28776541236649,tank,0.0,0.0,0.002269051564204717,0.0,0.0,0.0,0.0,0.0,9.615330824105543,0.0,0.0,0.0 -8965,my_reservoir,2012-03-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8966,gw1,2012-03-27,262.4792252045464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8967,gw2,2012-03-27,262.5207747954536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8968,my_sewer,2012-03-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8969,my_land,2012-03-28,1.0279418998954801,percolation,0.0,0.0,0.0002055972298783483,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8970,my_land,2012-03-28,4.7428702148136224e-05,subsurface_runoff,0.0,0.0,1.0041733556324633e-08,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8971,my_land,2012-03-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8972,my_groundwater,2012-03-28,14.272971958940587,tank,0.0,0.0,0.002267564307473872,0.0,0.0,0.0,0.0,0.0,9.611044395467651,0.0,0.0,0.0 -8973,my_reservoir,2012-03-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8974,gw1,2012-03-28,262.4793637031828,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8975,gw2,2012-03-28,262.5206362968172,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8976,my_sewer,2012-03-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8977,my_land,2012-03-29,1.0073830618975705,percolation,0.0,0.0,0.00020148528528078134,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8978,my_land,2012-03-29,3.794296171850898e-05,subsurface_runoff,0.0,0.0,8.033386845059707e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8979,my_land,2012-03-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8980,my_groundwater,2012-03-29,14.25779696994615,tank,0.0,0.0,0.0022659970614412606,0.0,0.0,0.0,0.0,0.0,9.60684538978102,0.0,0.0,0.0 -8981,my_reservoir,2012-03-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8982,gw1,2012-03-29,262.4795012784949,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8983,gw2,2012-03-29,262.5204987215051,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8984,my_sewer,2012-03-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8985,my_land,2012-03-30,0.9872354006596191,percolation,0.0,0.0,0.00019745557957516572,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8986,my_land,2012-03-30,3.0354369374807184e-05,subsurface_runoff,0.0,0.0,6.4267094760477656e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8987,my_land,2012-03-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8988,my_groundwater,2012-03-30,14.242249769606142,tank,0.0,0.0,0.002264351700229009,0.0,0.0,0.0,0.0,0.0,9.60273179737473,0.0,0.0,0.0 -8989,my_reservoir,2012-03-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8990,gw1,2012-03-30,262.4796379366383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8991,gw2,2012-03-30,262.5203620633617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8992,my_sewer,2012-03-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -8993,my_land,2012-03-31,0.9674906926464267,percolation,0.0,0.0,0.0001935064679836624,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -8994,my_land,2012-03-31,2.428349549984575e-05,subsurface_runoff,0.0,0.0,5.141367580838212e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470478,0.0,0.0,0.0 -8995,my_land,2012-03-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -8996,my_groundwater,2012-03-31,14.226339491425286,tank,0.0,0.0,0.002262630059790961,0.0,0.0,0.0,0.0,0.0,9.5987016632915,0.0,0.0,0.0 -8997,my_reservoir,2012-03-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8998,gw1,2012-03-31,262.4797736837274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -8999,gw2,2012-03-31,262.5202263162726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9000,my_sewer,2012-04-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -9001,my_land,2012-04-01,0.9481408787934982,percolation,0.0,0.0,0.00018963633862398914,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9002,my_land,2012-04-01,1.9426796399876598e-05,subsurface_runoff,0.0,0.0,4.11309406467057e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9003,my_land,2012-04-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9004,my_groundwater,2012-04-01,14.210075082015019,tank,0.0,0.0,0.0022608339386777578,0.0,0.0,0.0,0.0,0.0,9.594753085480445,0.0,0.0,0.0 -9005,my_reservoir,2012-04-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9006,gw1,2012-04-01,262.47990852583587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9007,gw2,2012-04-01,262.52009147416413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9008,my_sewer,2012-04-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.875,0.0,0.0,0.0 -9009,my_land,2012-04-02,0.9291780612176282,percolation,0.0,0.0,0.00018584361185150936,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9010,my_land,2012-04-02,1.554143711990128e-05,subsurface_runoff,0.0,0.0,3.2904752517364557e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9011,my_land,2012-04-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9012,my_groundwater,2012-04-02,14.193465304841911,tank,0.0,0.0,0.002258965098786612,0.0,0.0,0.0,0.0,0.0,9.59088421306139,0.0,0.0,0.0 -9013,my_reservoir,2012-04-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9014,gw1,2012-04-02,262.48004246899694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9015,gw2,2012-04-02,262.51995753100306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9016,my_sewer,2012-04-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.275,0.0,0.0,0.0 -9017,my_land,2012-04-03,0.9105944999932757,percolation,0.0,0.0,0.00018212673961447918,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9018,my_land,2012-04-03,1.2433149695921023e-05,subsurface_runoff,0.0,0.0,2.6323802013891647e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9019,my_land,2012-04-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9020,my_groundwater,2012-04-03,14.176518743901097,tank,0.0,0.0,0.0022570252660960833,0.0,0.0,0.0,0.0,0.0,9.587093244657462,0.0,0.0,0.0 -9021,my_reservoir,2012-04-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9022,gw1,2012-04-03,262.4801755192036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9023,gw2,2012-04-03,262.5198244807964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9024,my_sewer,2012-04-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 -9025,my_land,2012-04-04,0.8923826099934101,percolation,0.0,0.0,0.0001784842048221896,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9026,my_land,2012-04-04,9.946519756736818e-06,subsurface_runoff,0.0,0.0,2.105904161111332e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470477,0.0,0.0,0.0 -9027,my_land,2012-04-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9028,my_groundwater,2012-04-04,14.159243807316209,tank,0.0,0.0,0.0022550161313861523,0.0,0.0,0.0,0.0,0.0,9.583378426792816,0.0,0.0,0.0 -9029,my_reservoir,2012-04-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9030,gw1,2012-04-04,262.4803076824089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9031,gw2,2012-04-04,262.5196923175911,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9032,my_sewer,2012-04-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 -9033,my_land,2012-04-05,0.874534957793542,percolation,0.0,0.0,0.0001749145207257458,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9034,my_land,2012-04-05,7.957215805389455e-06,subsurface_runoff,0.0,0.0,1.6847233288890655e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9035,my_land,2012-04-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9036,my_groundwater,2012-04-05,14.141648730867287,tank,0.0,0.0,0.0022529393509438896,0.0,0.0,0.0,0.0,0.0,9.579738052352548,0.0,0.0,0.0 -9037,my_reservoir,2012-04-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9038,gw1,2012-04-05,262.4804389645262,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9039,gw2,2012-04-05,262.5195610354738,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9040,my_sewer,2012-04-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 -9041,my_land,2012-04-06,0.8570442586376711,percolation,0.0,0.0,0.0001714162303112309,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9042,my_land,2012-04-06,6.365772644311564e-06,subsurface_runoff,0.0,0.0,1.3477786631112524e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9043,my_land,2012-04-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9044,my_groundwater,2012-04-06,14.123741581448101,tank,0.0,0.0,0.0022507965472550085,0.0,0.0,0.0,0.0,0.0,9.576170459101958,0.0,0.0,0.0 -9045,my_reservoir,2012-04-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9046,gw1,2012-04-06,262.48056937142934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9047,gw2,2012-04-06,262.51943062857066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9048,my_sewer,2012-04-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.19285714,0.0,0.0,0.0 -9049,my_land,2012-04-07,0.8399033734649176,percolation,0.0,0.0,0.00016798790570500628,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9050,my_land,2012-04-07,5.092618115449251e-06,subsurface_runoff,0.0,0.0,1.078222930489002e-09,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9051,my_land,2012-04-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9052,my_groundwater,2012-04-07,14.105530260454303,tank,0.0,0.0,0.00224858930968158,0.0,0.0,0.0,0.0,0.0,9.57267402826252,0.0,0.0,0.0 -9053,my_reservoir,2012-04-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9054,gw1,2012-04-07,262.4806989089532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9055,gw2,2012-04-07,262.5193010910468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9056,my_sewer,2012-04-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.864285714,0.0,0.0,0.0 -9057,my_land,2012-04-08,0.8231053059956193,percolation,0.0,0.0,0.00016462814759090615,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9058,my_land,2012-04-08,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9059,my_land,2012-04-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9060,my_groundwater,2012-04-08,14.087022507103793,tank,0.0,0.0,0.002246319195126191,0.0,0.0,0.0,0.0,0.0,9.569247183142,0.0,0.0,0.0 -9061,my_reservoir,2012-04-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9062,gw1,2012-04-08,262.4808275828935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9063,gw2,2012-04-08,262.5191724171065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9064,my_sewer,2012-04-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9065,my_land,2012-04-09,0.8066431998757069,percolation,0.0,0.0,0.00016133558463908804,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9066,my_land,2012-04-09,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9067,my_land,2012-04-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9068,my_groundwater,2012-04-09,14.068225901690646,tank,0.0,0.0,0.002243987728682814,0.0,0.0,0.0,0.0,0.0,9.565888387816337,0.0,0.0,0.0 -9069,my_reservoir,2012-04-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9070,gw1,2012-04-09,262.48095539900754,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9071,gw2,2012-04-09,262.51904460099246,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9072,my_sewer,2012-04-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9073,my_land,2012-04-10,0.7905103358781927,percolation,0.0,0.0,0.00015810887294630626,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -9074,my_land,2012-04-10,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9075,my_land,2012-04-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9076,my_groundwater,2012-04-10,14.04914786877394,tank,0.0,0.0,0.002241596404274657,0.0,0.0,0.0,0.0,0.0,9.562596145860999,0.0,0.0,0.0 -9077,my_reservoir,2012-04-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9078,gw1,2012-04-10,262.48108236301414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9079,gw2,2012-04-10,262.51891763698586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9080,my_sewer,2012-04-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9081,my_land,2012-04-11,0.7747001291606289,percolation,0.0,0.0,0.00015494669548738013,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -9082,my_land,2012-04-11,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9083,my_land,2012-04-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9084,my_groundwater,2012-04-11,14.029795680302774,tank,0.0,0.0,0.002239146685279249,0.0,0.0,0.0,0.0,0.0,9.559368999129664,0.0,0.0,0.0 -9085,my_reservoir,2012-04-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9086,gw1,2012-04-11,262.48120848059403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9087,gw2,2012-04-11,262.51879151940597,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9088,my_sewer,2012-04-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9089,my_land,2012-04-12,0.7592061265774164,percolation,0.0,0.0,0.00015184776157763254,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -9090,my_land,2012-04-12,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9091,my_land,2012-04-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9092,my_groundwater,2012-04-12,14.010176458678771,tank,0.0,0.0,0.0022366400051410246,0.0,0.0,0.0,0.0,0.0,9.556205526578118,0.0,0.0,0.0 -9093,my_reservoir,2012-04-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9094,gw1,2012-04-12,262.4813337573901,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9095,gw2,2012-04-12,262.5186662426099,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9096,my_sewer,2012-04-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9097,my_land,2012-04-13,0.744022004045868,percolation,0.0,0.0,0.0001488108063460799,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9098,my_land,2012-04-13,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9099,my_land,2012-04-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9100,my_groundwater,2012-04-13,13.990297179757293,tank,0.0,0.0,0.002234077767971646,0.0,0.0,0.0,0.0,0.0,9.553104343131475,0.0,0.0,0.0 -9101,my_reservoir,2012-04-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9102,gw1,2012-04-13,262.4814581990075,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9103,gw2,2012-04-13,262.5185418009925,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9104,my_sewer,2012-04-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9105,my_land,2012-04-14,0.7291415639649507,percolation,0.0,0.0,0.00014583459021915828,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9106,my_land,2012-04-14,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9107,my_land,2012-04-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9108,my_groundwater,2012-04-14,13.970164675788615,tank,0.0,0.0,0.0022314613491383212,0.0,0.0,0.0,0.0,0.0,9.550064098592804,0.0,0.0,0.0 -9109,my_reservoir,2012-04-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9110,gw1,2012-04-14,262.4815818110141,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9111,gw2,2012-04-14,262.5184181889859,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9112,my_sewer,2012-04-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.782142857,0.0,0.0,0.0 -9113,my_land,2012-04-15,0.7145587326856516,percolation,0.0,0.0,0.0001429178984147751,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9114,my_land,2012-04-15,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9115,my_land,2012-04-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9116,my_groundwater,2012-04-15,13.949785638300243,tank,0.0,0.0,0.0022287920958403476,0.0,0.0,0.0,0.0,0.0,9.547083476591428,0.0,0.0,0.0 -9117,my_reservoir,2012-04-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9118,gw1,2012-04-15,262.48170459894067,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9119,gw2,2012-04-15,262.51829540105933,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9120,my_sewer,2012-04-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.592857143,0.0,0.0,0.0 -9121,my_land,2012-04-16,0.7002675580319386,percolation,0.0,0.0,0.0001400595404464796,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -9122,my_land,2012-04-16,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9123,my_land,2012-04-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9124,my_groundwater,2012-04-16,13.929166620921572,tank,0.0,0.0,0.0022260713276741214,0.0,0.0,0.0,0.0,0.0,9.5441611935692,0.0,0.0,0.0 -9125,my_reservoir,2012-04-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9126,gw1,2012-04-16,262.48182656828106,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9127,gw2,2012-04-16,262.51817343171894,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9128,my_sewer,2012-04-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.575,0.0,0.0,0.0 -9129,my_land,2012-04-17,0.6862622068712999,percolation,0.0,0.0,0.00013725834963755002,0.0,0.0,0.0,0.0,0.0,6.691685961665886,0.0,0.0,0.0 -9130,my_land,2012-04-17,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9131,my_land,2012-04-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9132,my_groundwater,2012-04-17,13.908314042152005,tank,0.0,0.0,0.0022233003371868432,0.0,0.0,0.0,0.0,0.0,9.541295997803143,0.0,0.0,0.0 -9133,my_reservoir,2012-04-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9134,gw1,2012-04-17,262.4819477244925,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9135,gw2,2012-04-17,262.5180522755075,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9136,my_sewer,2012-04-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.667857143,0.0,0.0,0.0 -9137,my_land,2012-04-18,0.6725369627338739,percolation,0.0,0.0,0.00013451318264479903,0.0,0.0,0.0,0.0,0.0,6.691685961665887,0.0,0.0,0.0 -9138,my_land,2012-04-18,4.074094492359401e-06,subsurface_runoff,0.0,0.0,8.625783443912016e-10,0.0,0.0,0.0,0.0,0.0,7.160025002470476,0.0,0.0,0.0 -9139,my_land,2012-04-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.032142857,0.0,0.0,0.0 -9140,my_groundwater,2012-04-18,13.887234188073707,tank,0.0,0.0,0.0022204803904191453,0.0,0.0,0.0,0.0,0.0,9.538486668462939,0.0,0.0,0.0 -9141,my_reservoir,2012-04-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9142,gw1,2012-04-18,262.4820680729959,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9143,gw2,2012-04-18,262.5179319270041,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9144,my_sewer,2012-04-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685638298042553,0.0,0.0,0.0 -9145,my_land,2012-04-19,0.8242085637598398,percolation,0.0,0.0,0.00016945573755122338,0.0,0.0,0.0,0.0,0.0,7.2956606799455095,0.0,0.0,0.0 -9146,my_land,2012-04-19,0.04493450833155126,subsurface_runoff,0.0,0.0,1.024091279990554e-05,0.0,0.0,0.0,0.0,0.0,9.706242538769956,0.0,0.0,0.0 -9147,my_land,2012-04-19,1.77914069099026e-18,surface_runoff,0.0,0.0,2.17180260130647e-22,0.0,0.0,0.0,0.0,0.0,9.734175780969188,0.0,0.0,0.0 -9148,my_groundwater,2012-04-19,13.869294634080063,tank,0.0,0.0,0.00221837882410039,0.0,0.0,0.0,0.0,0.0,9.53577338509579,0.0,0.0,0.0 -9149,my_reservoir,2012-04-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9150,gw1,2012-04-19,262.48218761917593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9151,gw2,2012-04-19,262.51781238082407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9152,my_sewer,2012-04-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.685638298042551,0.0,0.0,0.0 -9153,my_land,2012-04-20,0.9075306575545625,percolation,0.0,0.0,0.0001887716336303516,0.0,0.0,0.0,0.0,0.0,7.569335049122665,0.0,0.0,0.0 -9154,my_land,2012-04-20,0.06310577403120553,subsurface_runoff,0.0,0.0,1.4370964479421765e-05,0.0,0.0,0.0,0.0,0.0,9.739775303693044,0.0,0.0,0.0 -9155,my_land,2012-04-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.853571428999999,0.0,0.0,0.0 -9156,my_groundwater,2012-04-20,13.853096128737938,tank,0.0,0.0,0.0022166757281533284,0.0,0.0,0.0,0.0,0.0,9.5331509085443,0.0,0.0,0.0 -9157,my_reservoir,2012-04-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9158,gw1,2012-04-20,262.48230636838144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9159,gw2,2012-04-20,262.51769363161856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9160,my_sewer,2012-04-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.946428571,0.0,0.0,0.0 -9161,my_land,2012-04-21,1.0010624057137723,percolation,0.0,0.0,0.00021030939980000283,0.0,0.0,0.0,0.0,0.0,7.825307329068979,0.0,0.0,0.0 -9162,my_land,2012-04-21,0.08087437740463814,subsurface_runoff,0.0,0.0,1.8384716846736944e-05,0.0,0.0,0.0,0.0,0.0,9.786355762656482,0.0,0.0,0.0 -9163,my_land,2012-04-21,9.833542632858547e-19,surface_runoff,0.0,0.0,2.400767244350231e-22,0.0,0.0,0.0,0.0,0.0,9.831725609983907,0.0,0.0,0.0 -9164,my_groundwater,2012-04-21,13.838842158818125,tank,0.0,0.0,0.002215415337328874,0.0,0.0,0.0,0.0,0.0,9.530635976168504,0.0,0.0,0.0 -9165,my_reservoir,2012-04-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9166,gw1,2012-04-21,262.4824243259256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9167,gw2,2012-04-21,262.5175756740744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9168,my_sewer,2012-04-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 -9169,my_land,2012-04-22,1.1242907156096504,percolation,0.0,0.0,0.00023831288092655695,0.0,0.0,0.0,0.0,0.0,8.095234728637555,0.0,0.0,0.0 -9170,my_land,2012-04-22,0.1036789734910992,subsurface_runoff,0.0,0.0,2.3472309293050557e-05,0.0,0.0,0.0,0.0,0.0,9.845558781926556,0.0,0.0,0.0 -9171,my_land,2012-04-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.03928571,0.0,0.0,0.0 -9172,my_groundwater,2012-04-22,13.827132400131704,tank,0.0,0.0,0.002214728168347271,0.0,0.0,0.0,0.0,0.0,9.528260029727086,0.0,0.0,0.0 -9173,my_reservoir,2012-04-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9174,gw1,2012-04-22,262.48254149708606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9175,gw2,2012-04-22,262.51745850291394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9176,my_sewer,2012-04-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 -9177,my_land,2012-04-23,1.3220733127543831,percolation,0.0,0.0,0.00028220350993604616,0.0,0.0,0.0,0.0,0.0,8.41669587850042,0.0,0.0,0.0 -9178,my_land,2012-04-23,0.14288016150224686,subsurface_runoff,0.0,0.0,3.201781658492216e-05,0.0,0.0,0.0,0.0,0.0,9.920697357796154,0.0,0.0,0.0 -9179,my_land,2012-04-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13214286,0.0,0.0,0.0 -9180,my_groundwater,2012-04-23,13.819478204426732,tank,0.0,0.0,0.002214936205092958,0.0,0.0,0.0,0.0,0.0,9.526095242335627,0.0,0.0,0.0 -9181,my_reservoir,2012-04-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9182,gw1,2012-04-23,262.48265788710546,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9183,gw2,2012-04-23,262.51734211289454,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9184,my_sewer,2012-04-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 -9185,my_land,2012-04-24,1.6740266553239918,percolation,0.0,0.0,0.00035722281814348794,0.0,0.0,0.0,0.0,0.0,8.798731458121146,0.0,0.0,0.0 -9186,my_land,2012-04-24,0.21726870303164683,subsurface_runoff,0.0,0.0,4.7563471881859554e-05,0.0,0.0,0.0,0.0,0.0,10.00890612499569,0.0,0.0,0.0 -9187,my_land,2012-04-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.225,0.0,0.0,0.0 -9188,my_groundwater,2012-04-24,13.81900790868476,tank,0.0,0.0,0.0022166709005210037,0.0,0.0,0.0,0.0,0.0,9.524301525016714,0.0,0.0,0.0 -9189,my_reservoir,2012-04-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9190,gw1,2012-04-24,262.48277350119145,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9191,gw2,2012-04-24,262.51722649880855,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9192,my_sewer,2012-04-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.334216591075268,0.0,0.0,0.0 -9193,my_land,2012-04-25,2.1842566636222753,percolation,0.0,0.0,0.0004603564184890959,0.0,0.0,0.0,0.0,0.0,9.145276564864984,0.0,0.0,0.0 -9194,my_land,2012-04-25,0.32176340906606943,subsurface_runoff,0.0,0.0,6.8058411983985e-05,0.0,0.0,0.0,0.0,0.0,10.09259353714362,0.0,0.0,0.0 -9195,my_land,2012-04-25,4.5262123996648e-18,surface_runoff,0.0,0.0,1.105032324136914e-21,0.0,0.0,0.0,0.0,0.0,10.17771094858147,0.0,0.0,0.0 -9196,my_groundwater,2012-04-25,13.828925613851073,tank,0.0,0.0,0.0022205007646460863,0.0,0.0,0.0,0.0,0.0,9.523082816450273,0.0,0.0,0.0 -9197,my_reservoir,2012-04-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9198,gw1,2012-04-25,262.4828883445168,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9199,gw2,2012-04-25,262.5171116554832,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9200,my_sewer,2012-04-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.401317166669994,0.0,0.0,0.0 -9201,my_land,2012-04-26,2.5141403227231733,percolation,0.0,0.0,0.0005247670336866818,0.0,0.0,0.0,0.0,0.0,9.316126670901943,0.0,0.0,0.0 -9202,my_land,2012-04-26,0.35906209932723476,subsurface_runoff,0.0,0.0,7.447876865313843e-05,0.0,0.0,0.0,0.0,0.0,10.14992588459166,0.0,0.0,0.0 -9203,my_land,2012-04-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.48214286,0.0,0.0,0.0 -9204,my_groundwater,2012-04-26,13.845534013529024,tank,0.0,0.0,0.00222563227020595,0.0,0.0,0.0,0.0,0.0,9.522317792636384,0.0,0.0,0.0 -9205,my_reservoir,2012-04-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9206,gw1,2012-04-26,262.48300242222007,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9207,gw2,2012-04-26,262.51699757777993,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9208,my_sewer,2012-04-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.517467133517107,0.0,0.0,0.0 -9209,my_land,2012-04-27,2.996266064096156,percolation,0.0,0.0,0.0006146344953862436,0.0,0.0,0.0,0.0,0.0,9.510206584540276,0.0,0.0,0.0 -9210,my_land,2012-04-27,0.4321227537005486,subsurface_runoff,0.0,0.0,8.689262101048229e-05,0.0,0.0,0.0,0.0,0.0,10.23656870653689,0.0,0.0,0.0 -9211,my_land,2012-04-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.61071429,0.0,0.0,0.0 -9212,my_groundwater,2012-04-27,13.871915594800017,tank,0.0,0.0,0.002232580391757941,0.0,0.0,0.0,0.0,0.0,9.52226453912754,0.0,0.0,0.0 -9213,my_reservoir,2012-04-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9214,gw1,2012-04-27,262.48311573940526,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9215,gw2,2012-04-27,262.51688426059474,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9216,my_sewer,2012-04-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.659612098855124,0.0,0.0,0.0 -9217,my_land,2012-04-28,3.993603360070496,percolation,0.0,0.0,0.0007840641271998121,0.0,0.0,0.0,0.0,0.0,9.780208130396774,0.0,0.0,0.0 -9218,my_land,2012-04-28,0.6333887110573813,subsurface_runoff,0.0,0.0,0.00011896234761690103,0.0,0.0,0.0,0.0,0.0,10.369886184827209,0.0,0.0,0.0 -9219,my_land,2012-04-28,8.977881510421387e-18,surface_runoff,0.0,0.0,1.0959328015651107e-21,0.0,0.0,0.0,0.0,0.0,10.489372993997897,0.0,0.0,0.0 -9220,my_groundwater,2012-04-28,13.918534159928736,tank,0.0,0.0,0.0022429602462251137,0.0,0.0,0.0,0.0,0.0,9.523771191278115,0.0,0.0,0.0 -9221,my_reservoir,2012-04-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9222,gw1,2012-04-28,262.48322830114256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9223,gw2,2012-04-28,262.51677169885744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9224,my_sewer,2012-04-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.723144484289152,0.0,0.0,0.0 -9225,my_land,2012-04-29,4.6063029045721136,percolation,0.0,0.0,0.0008811691133090976,0.0,0.0,0.0,0.0,0.0,9.908661452609529,0.0,0.0,0.0 -9226,my_land,2012-04-29,0.6951658291732595,subsurface_runoff,0.0,0.0,0.00012586001922366554,0.0,0.0,0.0,0.0,0.0,10.441635572581207,0.0,0.0,0.0 -9227,my_land,2012-04-29,6.161980007612699e-18,surface_runoff,0.0,0.0,1.5043896502960692e-21,0.0,0.0,0.0,0.0,0.0,10.53626048015362,0.0,0.0,0.0 -9228,my_groundwater,2012-04-29,13.97750899080056,tank,0.0,0.0,0.002255290931130486,0.0,0.0,0.0,0.0,0.0,9.52635331150536,0.0,0.0,0.0 -9229,my_reservoir,2012-04-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9230,gw1,2012-04-29,262.4833401124683,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9231,gw2,2012-04-29,262.5166598875317,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9232,my_sewer,2012-04-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 -9233,my_land,2012-04-30,5.4606850954166415,percolation,0.0,0.0,0.0010064123709539986,0.0,0.0,0.0,0.0,0.0,10.054599911665507,0.0,0.0,0.0 -9234,my_land,2012-04-30,0.8136859283551983,subsurface_runoff,0.0,0.0,0.0001395632915452135,0.0,0.0,0.0,0.0,0.0,10.539438461677571,0.0,0.0,0.0 -9235,my_land,2012-04-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.996428570000003,0.0,0.0,0.0 -9236,my_groundwater,2012-04-30,14.053729164908825,tank,0.0,0.0,0.0022701403842113666,0.0,0.0,0.0,0.0,0.0,9.530531702603907,0.0,0.0,0.0 -9237,my_reservoir,2012-04-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9238,gw1,2012-04-30,262.48345117838517,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9239,gw2,2012-04-30,262.51654882161483,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9240,my_sewer,2012-05-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.815422227516192,0.0,0.0,0.0 -9241,my_land,2012-05-01,5.440818009795098,percolation,0.0,0.0,0.0009997974784761692,0.0,0.0,0.0,0.0,0.0,10.067525981266865,0.0,0.0,0.0 -9242,my_land,2012-05-01,0.675260747115938,subsurface_runoff,0.0,0.0,0.00011532773662154508,0.0,0.0,0.0,0.0,0.0,10.550322524681018,0.0,0.0,0.0 -9243,my_land,2012-05-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.125,0.0,0.0,0.0 -9244,my_groundwater,2012-05-01,14.129354351481668,tank,0.0,0.0,0.0022848180533483887,0.0,0.0,0.0,0.0,0.0,9.534741181779069,0.0,0.0,0.0 -9245,my_reservoir,2012-05-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9246,gw1,2012-05-01,262.4835615038626,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9247,gw2,2012-05-01,262.5164384961374,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9248,my_sewer,2012-05-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -9249,my_land,2012-05-02,5.786963720930439,percolation,0.0,0.0,0.0010464101428791625,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -9250,my_land,2012-05-02,0.6640078007760819,subsurface_runoff,0.0,0.0,0.00011038698221492767,0.0,0.0,0.0,0.0,0.0,10.625588552261917,0.0,0.0,0.0 -9251,my_land,2012-05-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.08928571,0.0,0.0,0.0 -9252,my_groundwater,2012-05-02,14.211837012779046,tank,0.0,0.0,0.002300407928980772,0.0,0.0,0.0,0.0,0.0,9.539735309057914,0.0,0.0,0.0 -9253,my_reservoir,2012-05-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9254,gw1,2012-05-02,262.48367109383685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9255,gw2,2012-05-02,262.51632890616315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9256,my_sewer,2012-05-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -9257,my_land,2012-05-03,5.67122444651183,percolation,0.0,0.0,0.0010254819400215792,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -9258,my_land,2012-05-03,0.5312062406208655,subsurface_runoff,0.0,0.0,8.830958577194214e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261917,0.0,0.0,0.0 -9259,my_land,2012-05-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.05357143,0.0,0.0,0.0 -9260,my_groundwater,2012-05-03,14.29175734647966,tank,0.0,0.0,0.002315532791508759,0.0,0.0,0.0,0.0,0.0,9.544561841943382,0.0,0.0,0.0 -9261,my_reservoir,2012-05-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9262,gw1,2012-05-03,262.48377995321124,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9263,gw2,2012-05-03,262.51622004678876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9264,my_sewer,2012-05-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140175,0.0,0.0,0.0 -9265,my_land,2012-05-04,5.557799957581593,percolation,0.0,0.0,0.0010049723012211477,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -9266,my_land,2012-05-04,0.4249649924966924,subsurface_runoff,0.0,0.0,7.064766861755371e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261917,0.0,0.0,0.0 -9267,my_land,2012-05-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.01785714,0.0,0.0,0.0 -9268,my_groundwater,2012-05-04,14.369168880821372,tank,0.0,0.0,0.0023302023242334174,0.0,0.0,0.0,0.0,0.0,9.549228358582953,0.0,0.0,0.0 -9269,my_reservoir,2012-05-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9270,gw1,2012-05-04,262.4838880868565,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9271,gw2,2012-05-04,262.5161119131435,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9272,my_sewer,2012-05-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 -9273,my_land,2012-05-05,5.446643958429961,percolation,0.0,0.0,0.0009848728551967248,0.0,0.0,0.0,0.0,0.0,10.13722063516331,0.0,0.0,0.0 -9274,my_land,2012-05-05,0.3399719939973539,subsurface_runoff,0.0,0.0,5.6518134894042974e-05,0.0,0.0,0.0,0.0,0.0,10.625588552261918,0.0,0.0,0.0 -9275,my_land,2012-05-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.01785714,0.0,0.0,0.0 -9276,my_groundwater,2012-05-05,14.444124067773071,tank,0.0,0.0,0.002344426015832196,0.0,0.0,0.0,0.0,0.0,9.553741991359738,0.0,0.0,0.0 -9277,my_reservoir,2012-05-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9278,gw1,2012-05-05,262.4839954996108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9279,gw2,2012-05-05,262.5160045003892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9280,my_sewer,2012-05-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.856657354140173,0.0,0.0,0.0 -9281,my_land,2012-05-06,5.413056079036429,percolation,0.0,0.0,0.0009764951877243858,0.0,0.0,0.0,0.0,0.0,10.147091262597801,0.0,0.0,0.0 -9282,my_land,2012-05-06,0.2924796359530035,subsurface_runoff,0.0,0.0,4.829472278097465e-05,0.0,0.0,0.0,0.0,0.0,10.641064184470883,0.0,0.0,0.0 -9283,my_land,2012-05-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.94642857,0.0,0.0,0.0 -9284,my_groundwater,2012-05-06,14.518208113498309,tank,0.0,0.0,0.002358443602828433,0.0,0.0,0.0,0.0,0.0,9.558245559586169,0.0,0.0,0.0 -9285,my_reservoir,2012-05-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9286,gw1,2012-05-06,262.48410219628005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9287,gw2,2012-05-06,262.51589780371995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9288,my_sewer,2012-05-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.886715919371646,0.0,0.0,0.0 -9289,my_land,2012-05-07,6.104799139359195,percolation,0.0,0.0,0.0010685676011494914,0.0,0.0,0.0,0.0,0.0,10.23563764199505,0.0,0.0,0.0 -9290,my_land,2012-05-07,0.4516719215252586,subsurface_runoff,0.0,0.0,6.900375568861462e-05,0.0,0.0,0.0,0.0,0.0,10.728646542260607,0.0,0.0,0.0 -9291,my_land,2012-05-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.91071429,0.0,0.0,0.0 -9292,my_groundwater,2012-05-07,14.606188861408661,tank,0.0,0.0,0.0023743004771304764,0.0,0.0,0.0,0.0,0.0,9.564009127406955,0.0,0.0,0.0 -9293,my_reservoir,2012-05-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9294,gw1,2012-05-07,262.48420818163817,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9295,gw2,2012-05-07,262.51579181836183,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9296,my_sewer,2012-05-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.88582834972228,0.0,0.0,0.0 -9297,my_land,2012-05-08,6.195754988349437,percolation,0.0,0.0,0.00107661760171108,0.0,0.0,0.0,0.0,0.0,10.254603322429517,0.0,0.0,0.0 -9298,my_land,2012-05-08,0.4193108247786899,subsurface_runoff,0.0,0.0,6.320881477798784e-05,0.0,0.0,0.0,0.0,0.0,10.73673903067902,0.0,0.0,0.0 -9299,my_land,2012-05-08,1.7631125144035227e-18,surface_runoff,0.0,0.0,4.304473912117975e-22,0.0,0.0,0.0,0.0,0.0,10.75430448481618,0.0,0.0,0.0 -9300,my_groundwater,2012-05-08,14.695801258660824,tank,0.0,0.0,0.002390281584258197,0.0,0.0,0.0,0.0,0.0,9.569936206367062,0.0,0.0,0.0 -9301,my_reservoir,2012-05-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9302,gw1,2012-05-08,262.48431346042724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9303,gw2,2012-05-08,262.51568653957276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9304,my_sewer,2012-05-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -9305,my_land,2012-05-09,6.637881145067061,percolation,0.0,0.0,0.0011297991302467027,0.0,0.0,0.0,0.0,0.0,10.298155999720672,0.0,0.0,0.0 -9306,my_land,2012-05-09,0.4894734915194451,subsurface_runoff,0.0,0.0,7.089735946044311e-05,0.0,0.0,0.0,0.0,0.0,10.745738729137459,0.0,0.0,0.0 -9307,my_land,2012-05-09,6.9061028058076e-18,surface_runoff,0.0,0.0,8.430301276620605e-22,0.0,0.0,0.0,0.0,0.0,10.802783192127276,0.0,0.0,0.0 -9308,my_groundwater,2012-05-09,14.794190050253038,tank,0.0,0.0,0.0024073053625918595,0.0,0.0,0.0,0.0,0.0,9.576587675527367,0.0,0.0,0.0 -9309,my_reservoir,2012-05-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9310,gw1,2012-05-09,262.4844180373577,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9311,gw2,2012-05-09,262.5155819626423,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9312,my_sewer,2012-05-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -9313,my_land,2012-05-10,6.626161244448793,percolation,0.0,0.0,0.0011231638200001892,0.0,0.0,0.0,0.0,0.0,10.307840556708321,0.0,0.0,0.0 -9314,my_land,2012-05-10,0.42451422785040605,subsurface_runoff,0.0,0.0,6.106092766588389e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626424,0.0,0.0,0.0 -9315,my_land,2012-05-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.075,0.0,0.0,0.0 -9316,my_groundwater,2012-05-10,14.892094286175112,tank,0.0,0.0,0.002424151505521098,0.0,0.0,0.0,0.0,0.0,9.583211222756509,0.0,0.0,0.0 -9317,my_reservoir,2012-05-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9318,gw1,2012-05-10,262.4845219171087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9319,gw2,2012-05-10,262.5154780828913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9320,my_sewer,2012-05-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -9321,my_land,2012-05-11,6.493638019559818,percolation,0.0,0.0,0.0011007005436001855,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 -9322,my_land,2012-05-11,0.33961138228032484,subsurface_runoff,0.0,0.0,4.884874213270711e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 -9323,my_land,2012-05-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.075,0.0,0.0,0.0 -9324,my_groundwater,2012-05-11,14.987055967286429,tank,0.0,0.0,0.002440498244966299,0.0,0.0,0.0,0.0,0.0,9.589602747606557,0.0,0.0,0.0 -9325,my_reservoir,2012-05-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9326,gw1,2012-05-11,262.48462510432796,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9327,gw2,2012-05-11,262.51537489567204,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9328,my_sewer,2012-05-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -9329,my_land,2012-05-12,6.363765259168622,percolation,0.0,0.0,0.0010786865327281818,0.0,0.0,0.0,0.0,0.0,10.30784055670832,0.0,0.0,0.0 -9330,my_land,2012-05-12,0.27168910582425987,subsurface_runoff,0.0,0.0,3.907899370616569e-05,0.0,0.0,0.0,0.0,0.0,10.752146720626422,0.0,0.0,0.0 -9331,my_land,2012-05-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.075,0.0,0.0,0.0 -9332,my_groundwater,2012-05-12,15.07913640585843,tank,0.0,0.0,0.0024563559751987073,0.0,0.0,0.0,0.0,0.0,9.595773281884103,0.0,0.0,0.0 -9333,my_reservoir,2012-05-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9334,gw1,2012-05-12,262.48472760363245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9335,gw2,2012-05-12,262.51527239636755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9336,my_sewer,2012-05-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.914531670627127,0.0,0.0,0.0 -9337,my_land,2012-05-13,6.293740648377158,percolation,0.0,0.0,0.0010648656204907952,0.0,0.0,0.0,0.0,0.0,10.314871131712378,0.0,0.0,0.0 -9338,my_land,2012-05-13,0.23292970490210413,subsurface_runoff,0.0,0.0,3.337280541858617e-05,0.0,0.0,0.0,0.0,0.0,10.774122670436071,0.0,0.0,0.0 -9339,my_land,2012-05-13,4.563719363773987e-19,surface_runoff,0.0,0.0,1.1141892977963835e-22,0.0,0.0,0.0,0.0,0.0,10.813642448979444,0.0,0.0,0.0 -9340,my_groundwater,2012-05-13,15.169561142328604,tank,0.0,0.0,0.0024718927068207016,0.0,0.0,0.0,0.0,0.0,9.601846804322845,0.0,0.0,0.0 -9341,my_reservoir,2012-05-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9342,gw1,2012-05-13,262.4848294196082,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9343,gw2,2012-05-13,262.5151705803918,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9344,my_sewer,2012-05-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -9345,my_land,2012-05-14,6.294961672040866,percolation,0.0,0.0,0.001060695096593694,0.0,0.0,0.0,0.0,0.0,10.332122223644802,0.0,0.0,0.0 -9346,my_land,2012-05-14,0.22092766504583344,subsurface_runoff,0.0,0.0,3.135859495057363e-05,0.0,0.0,0.0,0.0,0.0,10.835984275024625,0.0,0.0,0.0 -9347,my_land,2012-05-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -9348,my_groundwater,2012-05-14,15.259784673510756,tank,0.0,0.0,0.0024873056966628784,0.0,0.0,0.0,0.0,0.0,9.607979454496444,0.0,0.0,0.0 -9349,my_reservoir,2012-05-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9350,gw1,2012-05-14,262.4849305568108,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9351,gw2,2012-05-14,262.5150694431892,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9352,my_sewer,2012-05-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -9353,my_land,2012-05-15,6.250354921450667,percolation,0.0,0.0,0.001050442795116105,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 -9354,my_land,2012-05-15,0.19886253553343355,subsurface_runoff,0.0,0.0,2.8069624383393643e-05,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 -9355,my_land,2012-05-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.709375000000001,0.0,0.0,0.0 -9356,my_groundwater,2012-05-15,15.348874579870795,tank,0.0,0.0,0.002502471446464656,0.0,0.0,0.0,0.0,0.0,9.614081892202526,0.0,0.0,0.0 -9357,my_reservoir,2012-05-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9358,gw1,2012-05-15,262.4850310197654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9359,gw2,2012-05-15,262.5149689802346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9360,my_sewer,2012-05-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -9361,my_land,2012-05-16,6.125347823021653,percolation,0.0,0.0,0.0010294339392137829,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 -9362,my_land,2012-05-16,0.15909002842674685,subsurface_runoff,0.0,0.0,2.2455699506714916e-05,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 -9363,my_land,2012-05-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.709375000000001,0.0,0.0,0.0 -9364,my_groundwater,2012-05-16,15.435196974104059,tank,0.0,0.0,0.002517171601611061,0.0,0.0,0.0,0.0,0.0,9.6199795363469,0.0,0.0,0.0 -9365,my_reservoir,2012-05-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9366,gw1,2012-05-16,262.485130812967,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9367,gw2,2012-05-16,262.514869187033,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9368,my_sewer,2012-05-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.475,0.0,0.0,0.0 -9369,my_land,2012-05-17,6.00284086656122,percolation,0.0,0.0,0.0010088452604295071,0.0,0.0,0.0,0.0,0.0,10.344116016805204,0.0,0.0,0.0 -9370,my_land,2012-05-17,0.12727202274139748,subsurface_runoff,0.0,0.0,1.7964559605371932e-05,0.0,0.0,0.0,0.0,0.0,10.882514577151907,0.0,0.0,0.0 -9371,my_land,2012-05-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.709375000000001,0.0,0.0,0.0 -9372,my_groundwater,2012-05-17,15.51880967073808,tank,0.0,0.0,0.002531415879694348,0.0,0.0,0.0,0.0,0.0,9.62568164744754,0.0,0.0,0.0 -9373,my_reservoir,2012-05-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9374,gw1,2012-05-17,262.4852299408805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9375,gw2,2012-05-17,262.5147700591195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9376,my_sewer,2012-05-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9377,my_land,2012-05-18,5.950241619337533,percolation,0.0,0.0,0.000997951809478351,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9378,my_land,2012-05-18,0.12017341958292421,subsurface_runoff,0.0,0.0,1.689775768632039e-05,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9379,my_land,2012-05-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9380,my_groundwater,2012-05-18,15.601142565240606,tank,0.0,0.0,0.0025454027875452074,0.0,0.0,0.0,0.0,0.0,9.631391560082655,0.0,0.0,0.0 -9381,my_reservoir,2012-05-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9382,gw1,2012-05-18,262.4853284079413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9383,gw2,2012-05-18,262.5146715920587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9384,my_sewer,2012-05-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9385,my_land,2012-05-19,5.831236786950782,percolation,0.0,0.0,0.0009779927732887841,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9386,my_land,2012-05-19,0.09613873566633938,subsurface_runoff,0.0,0.0,1.3518206149056313e-05,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9387,my_land,2012-05-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9388,my_groundwater,2012-05-19,15.680847029133288,tank,0.0,0.0,0.0025589484191754375,0.0,0.0,0.0,0.0,0.0,9.636915606662876,0.0,0.0,0.0 -9389,my_reservoir,2012-05-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9390,gw1,2012-05-19,262.48542621855506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9391,gw2,2012-05-19,262.51457378144494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9392,my_sewer,2012-05-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9393,my_land,2012-05-20,5.714612051211767,percolation,0.0,0.0,0.0009584329178230085,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9394,my_land,2012-05-20,0.0769109885330715,subsurface_runoff,0.0,0.0,1.081456491924505e-05,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9395,my_land,2012-05-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9396,my_groundwater,2012-05-20,15.757978085460124,tank,0.0,0.0,0.00257206200395461,0.0,0.0,0.0,0.0,0.0,9.64226189312741,0.0,0.0,0.0 -9397,my_reservoir,2012-05-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9398,gw1,2012-05-20,262.48552337709805,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9399,gw2,2012-05-20,262.51447662290195,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9400,my_sewer,2012-05-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9401,my_land,2012-05-21,5.600319810187532,percolation,0.0,0.0,0.0009392642594665484,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9402,my_land,2012-05-21,0.06152879082645721,subsurface_runoff,0.0,0.0,8.65165193539604e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9403,my_land,2012-05-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9404,my_groundwater,2012-05-21,15.83258965066815,tank,0.0,0.0,0.0025847525856552925,0.0,0.0,0.0,0.0,0.0,9.64743806594515,0.0,0.0,0.0 -9405,my_reservoir,2012-05-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9406,gw1,2012-05-21,262.4856198879174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9407,gw2,2012-05-21,262.5143801120826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9408,my_sewer,2012-05-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9409,my_land,2012-05-22,5.488313413983781,percolation,0.0,0.0,0.0009204789742772175,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9410,my_land,2012-05-22,0.04922303266116577,subsurface_runoff,0.0,0.0,6.921321548316833e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9411,my_land,2012-05-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9412,my_groundwater,2012-05-22,15.90473455675472,tank,0.0,0.0,0.002597029026167512,0.0,0.0,0.0,0.0,0.0,9.652451344251919,0.0,0.0,0.0 -9413,my_reservoir,2012-05-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9414,gw1,2012-05-22,262.4857157553313,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9415,gw2,2012-05-22,262.5142842446687,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9416,my_sewer,2012-05-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9417,my_land,2012-05-23,5.378547145704106,percolation,0.0,0.0,0.0009020693947916731,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9418,my_land,2012-05-23,0.039378426128932616,subsurface_runoff,0.0,0.0,5.5370572386534664e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9419,my_land,2012-05-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9420,my_groundwater,2012-05-23,15.97446457297181,tank,0.0,0.0,0.0026089000091389235,0.0,0.0,0.0,0.0,0.0,9.657308549326293,0.0,0.0,0.0 -9421,my_reservoir,2012-05-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9422,gw1,2012-05-23,262.48581098362905,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9423,gw2,2012-05-23,262.51418901637095,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9424,my_sewer,2012-05-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9425,my_land,2012-05-24,5.270976202790024,percolation,0.0,0.0,0.0008840280068958396,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9426,my_land,2012-05-24,0.031502740903146094,subsurface_runoff,0.0,0.0,4.429645790922773e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9427,my_land,2012-05-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9428,my_groundwater,2012-05-24,16.041830427096176,tank,0.0,0.0,0.00262037404354217,0.0,0.0,0.0,0.0,0.0,9.662016131657705,0.0,0.0,0.0 -9429,my_reservoir,2012-05-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9430,gw1,2012-05-24,262.48590557707155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9431,gw2,2012-05-24,262.51409442292845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9432,my_sewer,2012-05-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9433,my_land,2012-05-25,5.165556678734223,percolation,0.0,0.0,0.0008663474467579228,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9434,my_land,2012-05-25,0.025202192722516874,subsurface_runoff,0.0,0.0,3.5437166327382187e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9435,my_land,2012-05-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9436,my_groundwater,2012-05-25,16.106881826274098,tank,0.0,0.0,0.0026314594671708867,0.0,0.0,0.0,0.0,0.0,9.666580195833147,0.0,0.0,0.0 -9437,my_reservoir,2012-05-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9438,gw1,2012-05-25,262.48599953989105,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9439,gw2,2012-05-25,262.51400046010895,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9440,my_sewer,2012-05-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9441,my_land,2012-05-26,5.062245545159539,percolation,0.0,0.0,0.0008490204978227644,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9442,my_land,2012-05-26,0.0201617541780135,subsurface_runoff,0.0,0.0,2.834973306190575e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9443,my_land,2012-05-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9444,my_groundwater,2012-05-26,16.16966747744916,tank,0.0,0.0,0.00264216445006578,0.0,0.0,0.0,0.0,0.0,9.671006523444873,0.0,0.0,0.0 -9445,my_reservoir,2012-05-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9446,gw1,2012-05-26,262.48609287629176,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9447,gw2,2012-05-26,262.51390712370824,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9448,my_sewer,2012-05-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9449,my_land,2012-05-27,4.961000634256348,percolation,0.0,0.0,0.0008320400878663091,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9450,my_land,2012-05-27,0.0161294033424108,subsurface_runoff,0.0,0.0,2.26797864495246e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9451,my_land,2012-05-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9452,my_groundwater,2012-05-27,16.230235107381468,tank,0.0,0.0,0.0026524969978721797,0.0,0.0,0.0,0.0,0.0,9.675300594200312,0.0,0.0,0.0 -9453,my_reservoir,2012-05-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9454,gw1,2012-05-27,262.4861855904498,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9455,gw2,2012-05-27,262.5138144095502,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9456,my_sewer,2012-05-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9457,my_land,2012-05-28,4.861780621571222,percolation,0.0,0.0,0.0008153992861089829,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9458,my_land,2012-05-28,0.012903522673928641,subsurface_runoff,0.0,0.0,1.814382915961968e-06,0.0,0.0,0.0,0.0,0.0,11.029104407755568,0.0,0.0,0.0 -9459,my_land,2012-05-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9460,my_groundwater,2012-05-28,16.288631482266428,tank,0.0,0.0,0.0026624649551304324,0.0,0.0,0.0,0.0,0.0,9.67946760539664,0.0,0.0,0.0 -9461,my_reservoir,2012-05-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9462,gw1,2012-05-28,262.48627768651346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9463,gw2,2012-05-28,262.51372231348654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9464,my_sewer,2012-05-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9465,my_land,2012-05-29,4.764545009139797,percolation,0.0,0.0,0.0007990913003868033,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9466,my_land,2012-05-29,0.010322818139142913,subsurface_runoff,0.0,0.0,1.4515063327695744e-06,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9467,my_land,2012-05-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9468,my_groundwater,2012-05-29,16.34490242696111,tank,0.0,0.0,0.0026720760085004805,0.0,0.0,0.0,0.0,0.0,9.683512489905969,0.0,0.0,0.0 -9469,my_reservoir,2012-05-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9470,gw1,2012-05-29,262.48636916860335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9471,gw2,2012-05-29,262.51363083139665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9472,my_sewer,2012-05-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9473,my_land,2012-05-30,4.669254108957001,percolation,0.0,0.0,0.0007831094743790672,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9474,my_land,2012-05-30,0.00825825451131433,subsurface_runoff,0.0,0.0,1.1612050662156596e-06,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9475,my_land,2012-05-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9476,my_groundwater,2012-05-30,16.399092843826047,tank,0.0,0.0,0.002681337689921946,0.0,0.0,0.0,0.0,0.0,9.687439932802334,0.0,0.0,0.0 -9477,my_reservoir,2012-05-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9478,gw1,2012-05-30,262.48646004081263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9479,gw2,2012-05-30,262.51353995918737,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9480,my_sewer,2012-05-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9481,my_land,2012-05-31,4.575869026777861,percolation,0.0,0.0,0.0007674472848914858,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9482,my_land,2012-05-31,0.006606603609051465,subsurface_runoff,0.0,0.0,9.289640529725277e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9483,my_land,2012-05-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9484,my_groundwater,2012-05-31,16.451246731190174,tank,0.0,0.0,0.0026902573797110037,0.0,0.0,0.0,0.0,0.0,9.691254386748689,0.0,0.0,0.0 -9485,my_reservoir,2012-05-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9486,gw1,2012-05-31,262.4865503072072,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9487,gw2,2012-05-31,262.5134496927928,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9488,my_sewer,2012-06-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9489,my_land,2012-06-01,4.484351646242303,percolation,0.0,0.0,0.0007520983391936561,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9490,my_land,2012-06-01,0.005285282887241172,subsurface_runoff,0.0,0.0,7.431712423780221e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9491,my_land,2012-06-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9492,my_groundwater,2012-06-01,16.501407201446415,tank,0.0,0.0,0.002698842309595311,0.0,0.0,0.0,0.0,0.0,9.694960086250445,0.0,0.0,0.0 -9493,my_reservoir,2012-06-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9494,gw1,2012-06-01,262.4866399718258,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9495,gw2,2012-06-01,262.5133600281742,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9496,my_sewer,2012-06-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.925,0.0,0.0,0.0 -9497,my_land,2012-06-02,4.394664613317457,percolation,0.0,0.0,0.000737056372409783,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9498,my_land,2012-06-02,0.004228226309792938,subsurface_runoff,0.0,0.0,5.945369939024177e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9499,my_land,2012-06-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9500,my_groundwater,2012-06-02,16.549616498785333,tank,0.0,0.0,0.002707099565688236,0.0,0.0,0.0,0.0,0.0,9.698561060871814,0.0,0.0,0.0 -9501,my_reservoir,2012-06-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9502,gw1,2012-06-02,262.4867290386803,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9503,gw2,2012-06-02,262.5132709613197,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9504,my_sewer,2012-06-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 -9505,my_land,2012-06-03,4.306771321051108,percolation,0.0,0.0,0.0007223152449615873,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9506,my_land,2012-06-03,0.00338258104783435,subsurface_runoff,0.0,0.0,4.7562959512193414e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9507,my_land,2012-06-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9508,my_groundwater,2012-06-03,16.595916016574055,tank,0.0,0.0,0.0027150360914035905,0.0,0.0,0.0,0.0,0.0,9.702061147501942,0.0,0.0,0.0 -9509,my_reservoir,2012-06-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9510,gw1,2012-06-03,262.48681751175576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9511,gw2,2012-06-03,262.51318248824424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9512,my_sewer,2012-06-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529185267857143,0.0,0.0,0.0 -9513,my_land,2012-06-04,4.220635894630085,percolation,0.0,0.0,0.0007078689400623556,0.0,0.0,0.0,0.0,0.0,10.361099965454354,0.0,0.0,0.0 -9514,my_land,2012-06-04,0.00270606483826748,subsurface_runoff,0.0,0.0,3.805036760975473e-07,0.0,0.0,0.0,0.0,0.0,11.02910440775557,0.0,0.0,0.0 -9515,my_land,2012-06-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.4125,0.0,0.0,0.0 -9516,my_groundwater,2012-06-04,16.64034631438759,tank,0.0,0.0,0.002722658690312065,0.0,0.0,0.0,0.0,0.0,9.705464001749593,0.0,0.0,0.0 -9517,my_reservoir,2012-06-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9518,gw1,2012-06-04,262.4869053950107,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9519,gw2,2012-06-04,262.5130946049893,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9520,my_sewer,2012-06-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.294993418040292,0.0,0.0,0.0 -9521,my_land,2012-06-05,4.4938261371556,percolation,0.0,0.0,0.0007415251831095496,0.0,0.0,0.0,0.0,0.0,10.67184785195944,0.0,0.0,0.0 -9522,my_land,2012-06-05,0.09947177987554365,subsurface_runoff,0.0,0.0,1.331491228739262e-05,0.0,0.0,0.0,0.0,0.0,14.195671965880791,0.0,0.0,0.0 -9523,my_land,2012-06-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.3875,0.0,0.0,0.0 -9524,my_groundwater,2012-06-05,16.690226909250857,tank,0.0,0.0,0.002730947377671015,0.0,0.0,0.0,0.0,0.0,9.710760886366305,0.0,0.0,0.0 -9525,my_reservoir,2012-06-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9526,gw1,2012-06-05,262.48699269237727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9527,gw2,2012-06-05,262.51300730762273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9528,my_sewer,2012-06-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.113490499944918,0.0,0.0,0.0 -9529,my_land,2012-06-06,4.657154861495289,percolation,0.0,0.0,0.0007601943906795478,0.0,0.0,0.0,0.0,0.0,10.843262985791139,0.0,0.0,0.0 -9530,my_land,2012-06-06,0.14847681086174103,subsurface_runoff,0.0,0.0,1.976749751214246e-05,0.0,0.0,0.0,0.0,0.0,14.0235038378599,0.0,0.0,0.0 -9531,my_land,2012-06-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.875,0.0,0.0,0.0 -9532,my_groundwater,2012-06-06,16.743307708801026,tank,0.0,0.0,0.0027395953950371,0.0,0.0,0.0,0.0,0.0,9.717173502758092,0.0,0.0,0.0 -9533,my_reservoir,2012-06-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9534,gw1,2012-06-06,262.4870794077614,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9535,gw2,2012-06-06,262.5129205922386,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9536,my_sewer,2012-06-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.23010214313227,0.0,0.0,0.0 -9537,my_land,2012-06-07,5.706444944131128,percolation,0.0,0.0,0.0008842086574727118,0.0,0.0,0.0,0.0,0.0,11.356822818436166,0.0,0.0,0.0 -9538,my_land,2012-06-07,0.42964762008143237,subsurface_runoff,0.0,0.0,5.36964890591711e-05,0.0,0.0,0.0,0.0,0.0,13.578518542413738,0.0,0.0,0.0 -9539,my_land,2012-06-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.675,0.0,0.0,0.0 -9540,my_groundwater,2012-06-07,16.817616354463123,tank,0.0,0.0,0.0027507463685052013,0.0,0.0,0.0,0.0,0.0,9.728499305330915,0.0,0.0,0.0 -9541,my_reservoir,2012-06-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9542,gw1,2012-06-07,262.487165545043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9543,gw2,2012-06-07,262.512834454957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9544,my_sewer,2012-06-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 -9545,my_land,2012-06-08,5.734454274956917,percolation,0.0,0.0,0.0008838270391624222,0.0,0.0,0.0,0.0,0.0,11.402114365606245,0.0,0.0,0.0 -9546,my_land,2012-06-08,0.3823951653735572,subsurface_runoff,0.0,0.0,4.766536943486465e-05,0.0,0.0,0.0,0.0,0.0,13.53862278934258,0.0,0.0,0.0 -9547,my_land,2012-06-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.475,0.0,0.0,0.0 -9548,my_groundwater,2012-06-08,16.89230941846002,tank,0.0,0.0,0.0027618616958811734,0.0,0.0,0.0,0.0,0.0,9.740065099680603,0.0,0.0,0.0 -9549,my_reservoir,2012-06-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9550,gw1,2012-06-08,262.48725110807607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9551,gw2,2012-06-08,262.51274889192393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9552,my_sewer,2012-06-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.226364013710823,0.0,0.0,0.0 -9553,my_land,2012-06-09,5.6197651894577785,percolation,0.0,0.0,0.0008661504983791738,0.0,0.0,0.0,0.0,0.0,11.402114365606243,0.0,0.0,0.0 -9554,my_land,2012-06-09,0.3059161322988458,subsurface_runoff,0.0,0.0,3.813229554789172e-05,0.0,0.0,0.0,0.0,0.0,13.53862278934258,0.0,0.0,0.0 -9555,my_land,2012-06-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.475,0.0,0.0,0.0 -9556,my_groundwater,2012-06-09,16.96448100769926,tank,0.0,0.0,0.0027725893910727608,0.0,0.0,0.0,0.0,0.0,9.751273362580088,0.0,0.0,0.0 -9557,my_reservoir,2012-06-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9558,gw1,2012-06-09,262.4873361006889,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9559,gw2,2012-06-09,262.5126638993111,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9560,my_sewer,2012-06-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.832671802570994,0.0,0.0,0.0 -9561,my_land,2012-06-10,5.99044298182286,percolation,0.0,0.0,0.0009064782519583502,0.0,0.0,0.0,0.0,0.0,11.518095795257373,0.0,0.0,0.0 -9562,my_land,2012-06-10,0.37618136737764474,subsurface_runoff,0.0,0.0,4.6193119036071164e-05,0.0,0.0,0.0,0.0,0.0,13.294631638879832,0.0,0.0,0.0 -9563,my_land,2012-06-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.075,0.0,0.0,0.0 -9564,my_groundwater,2012-06-10,17.04401810873855,tank,0.0,0.0,0.0027841112248670878,0.0,0.0,0.0,0.0,0.0,9.763914806456736,0.0,0.0,0.0 -9565,my_reservoir,2012-06-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9566,gw1,2012-06-10,262.4874205266843,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9567,gw2,2012-06-10,262.5125794733157,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9568,my_sewer,2012-06-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -9569,my_land,2012-06-11,7.010691812037568,percolation,0.0,0.0,0.0010131177451783288,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 -9570,my_land,2012-06-11,0.6111648734534533,subsurface_runoff,0.0,0.0,7.090525938100543e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 -9571,my_land,2012-06-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.875000000000002,0.0,0.0,0.0 -9572,my_groundwater,2012-06-11,17.144125718211754,tank,0.0,0.0,0.0027977751294746217,0.0,0.0,0.0,0.0,0.0,9.780090561908207,0.0,0.0,0.0 -9573,my_reservoir,2012-06-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9574,gw1,2012-06-11,262.4875043898397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9575,gw2,2012-06-11,262.5124956101603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9576,my_sewer,2012-06-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -9577,my_land,2012-06-12,6.870477975796817,percolation,0.0,0.0,0.0009928553902747621,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 -9578,my_land,2012-06-12,0.48893189876276266,subsurface_runoff,0.0,0.0,5.672420750480434e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 -9579,my_land,2012-06-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.875000000000002,0.0,0.0,0.0 -9580,my_groundwater,2012-06-12,17.241128705566375,tank,0.0,0.0,0.002810992390667243,0.0,0.0,0.0,0.0,0.0,9.79572239271143,0.0,0.0,0.0 -9581,my_reservoir,2012-06-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9582,gw1,2012-06-12,262.48758769390747,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9583,gw2,2012-06-12,262.51241230609253,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9584,my_sewer,2012-06-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.284413595894664,0.0,0.0,0.0 -9585,my_land,2012-06-13,6.73306841628088,percolation,0.0,0.0,0.0009729982824692668,0.0,0.0,0.0,0.0,0.0,11.707046408096822,0.0,0.0,0.0 -9586,my_land,2012-06-13,0.3911455190102101,subsurface_runoff,0.0,0.0,4.537936600384347e-05,0.0,0.0,0.0,0.0,0.0,12.98266850764969,0.0,0.0,0.0 -9587,my_land,2012-06-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.06071429,0.0,0.0,0.0 -9588,my_groundwater,2012-06-13,17.335091919419607,tank,0.0,0.0,0.002823772374726556,0.0,0.0,0.0,0.0,0.0,9.810834952067127,0.0,0.0,0.0 -9589,my_reservoir,2012-06-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9590,gw1,2012-06-13,262.48767044261473,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9591,gw2,2012-06-13,262.51232955738527,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9592,my_sewer,2012-06-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 -9593,my_land,2012-06-14,7.605108052729979,percolation,0.0,0.0,0.0010576341865178678,0.0,0.0,0.0,0.0,0.0,11.832617275379805,0.0,0.0,0.0 -9594,my_land,2012-06-14,0.58684866140537,subsurface_runoff,0.0,0.0,6.462889952361528e-05,0.0,0.0,0.0,0.0,0.0,12.830030313648837,0.0,0.0,0.0 -9595,my_land,2012-06-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.44642857,0.0,0.0,0.0 -9596,my_groundwater,2012-06-14,17.44657246069449,tank,0.0,0.0,0.002838243354015282,0.0,0.0,0.0,0.0,0.0,9.828775945605386,0.0,0.0,0.0 -9597,my_reservoir,2012-06-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9598,gw1,2012-06-14,262.48775263966394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9599,gw2,2012-06-14,262.51224736033606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9600,my_sewer,2012-06-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.37514198139365,0.0,0.0,0.0 -9601,my_land,2012-06-15,7.529647973082707,percolation,0.0,0.0,0.0010444469680501633,0.0,0.0,0.0,0.0,0.0,11.843661046906638,0.0,0.0,0.0 -9602,my_land,2012-06-15,0.4903339172623442,subsurface_runoff,0.0,0.0,5.38705931597502e-05,0.0,0.0,0.0,0.0,0.0,12.833755056013961,0.0,0.0,0.0 -9603,my_land,2012-06-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.83214286,0.0,0.0,0.0 -9604,my_groundwater,2012-06-15,17.556238148994794,tank,0.0,0.0,0.002852409701765551,0.0,0.0,0.0,0.0,0.0,9.84636774722933,0.0,0.0,0.0 -9605,my_reservoir,2012-06-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9606,gw1,2012-06-15,262.48783428873287,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9607,gw2,2012-06-15,262.51216571126713,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9608,my_sewer,2012-06-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.385418995522999,0.0,0.0,0.0 -9609,my_land,2012-06-16,7.516225524284985,percolation,0.0,0.0,0.0010378019038457045,0.0,0.0,0.0,0.0,0.0,11.86924454931506,0.0,0.0,0.0 -9610,my_land,2012-06-16,0.4295924428340746,subsurface_runoff,0.0,0.0,4.697235892413878e-05,0.0,0.0,0.0,0.0,0.0,12.869529936953137,0.0,0.0,0.0 -9611,my_land,2012-06-16,1.1628836508193303e-18,surface_runoff,0.0,0.0,1.4195357065665653e-22,0.0,0.0,0.0,0.0,0.0,12.982512472937385,0.0,0.0,0.0 -9612,my_groundwater,2012-06-16,17.665356430366682,tank,0.0,0.0,0.0028664053591251387,0.0,0.0,0.0,0.0,0.0,9.863888939541493,0.0,0.0,0.0 -9613,my_reservoir,2012-06-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9614,gw1,2012-06-16,262.4879153934746,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9615,gw2,2012-06-16,262.5120846065254,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9616,my_sewer,2012-06-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 -9617,my_land,2012-06-17,7.584751424288592,percolation,0.0,0.0,0.001039563383395823,0.0,0.0,0.0,0.0,0.0,11.918742667445928,0.0,0.0,0.0 -9618,my_land,2012-06-17,0.40322508637319354,subsurface_runoff,0.0,0.0,4.3705102820136176e-05,0.0,0.0,0.0,0.0,0.0,12.975153193511476,0.0,0.0,0.0 -9619,my_land,2012-06-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.603571430000002,0.0,0.0,0.0 -9620,my_groundwater,2012-06-17,17.775596907570925,tank,0.0,0.0,0.0028804018860321694,0.0,0.0,0.0,0.0,0.0,9.881737980897917,0.0,0.0,0.0 -9621,my_reservoir,2012-06-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9622,gw1,2012-06-17,262.48799595751814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9623,gw2,2012-06-17,262.51200404248186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9624,my_sewer,2012-06-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606084,0.0,0.0,0.0 -9625,my_land,2012-06-18,7.4330563958028195,percolation,0.0,0.0,0.0010187721157279065,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 -9626,my_land,2012-06-18,0.32258006909855486,subsurface_runoff,0.0,0.0,3.496408225610894e-05,0.0,0.0,0.0,0.0,0.0,12.975153193511476,0.0,0.0,0.0 -9627,my_land,2012-06-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.603571430000002,0.0,0.0,0.0 -9628,my_groundwater,2012-06-18,17.882473706216555,tank,0.0,0.0,0.0028939401708158357,0.0,0.0,0.0,0.0,0.0,9.8989744650838,0.0,0.0,0.0 -9629,my_reservoir,2012-06-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9630,gw1,2012-06-18,262.488075984468,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9631,gw2,2012-06-18,262.511924015532,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9632,my_sewer,2012-06-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.524636416606082,0.0,0.0,0.0 -9633,my_land,2012-06-19,7.284395267886763,percolation,0.0,0.0,0.0009983966734133484,0.0,0.0,0.0,0.0,0.0,11.918742667445926,0.0,0.0,0.0 -9634,my_land,2012-06-19,0.2580640552788439,subsurface_runoff,0.0,0.0,2.797126580488715e-05,0.0,0.0,0.0,0.0,0.0,12.975153193511474,0.0,0.0,0.0 -9635,my_land,2012-06-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.603571430000002,0.0,0.0,0.0 -9636,my_groundwater,2012-06-19,17.98605699704728,tank,0.0,0.0,0.0029070298240975677,0.0,0.0,0.0,0.0,0.0,9.91562682900067,0.0,0.0,0.0 -9637,my_reservoir,2012-06-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9638,gw1,2012-06-19,262.4881554779049,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9639,gw2,2012-06-19,262.5118445220951,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9640,my_sewer,2012-06-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.345833330000003,0.0,0.0,0.0 -9641,my_land,2012-06-20,7.655824000457448,percolation,0.0,0.0,0.0010305342818346058,0.0,0.0,0.0,0.0,0.0,12.09982316852747,0.0,0.0,0.0 -9642,my_land,2012-06-20,0.34716325454373365,subsurface_runoff,0.0,0.0,3.655539138935856e-05,0.0,0.0,0.0,0.0,0.0,13.633576576597351,0.0,0.0,0.0 -9643,my_land,2012-06-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.345833330000001,0.0,0.0,0.0 -9644,my_groundwater,2012-06-20,18.09694255742112,tank,0.0,0.0,0.002920740983131814,0.0,0.0,0.0,0.0,0.0,9.934437107788563,0.0,0.0,0.0 -9645,my_reservoir,2012-06-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9646,gw1,2012-06-20,262.48823444138554,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9647,gw2,2012-06-20,262.51176555861446,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9648,my_sewer,2012-06-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 -9649,my_land,2012-06-21,7.975307379736935,percolation,0.0,0.0,0.0010558483385649223,0.0,0.0,0.0,0.0,0.0,12.248855671790007,0.0,0.0,0.0 -9650,my_land,2012-06-21,0.4063292048019626,subsurface_runoff,0.0,0.0,4.17408416467273e-05,0.0,0.0,0.0,0.0,0.0,13.944124258700176,0.0,0.0,0.0 -9651,my_land,2012-06-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.31666667,0.0,0.0,0.0 -9652,my_groundwater,2012-06-21,18.214054672686498,tank,0.0,0.0,0.0029349331861376273,0.0,0.0,0.0,0.0,0.0,9.955067121802935,0.0,0.0,0.0 -9653,my_reservoir,2012-06-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9654,gw1,2012-06-21,262.48831287844297,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9655,gw2,2012-06-21,262.51168712155703,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9656,my_sewer,2012-06-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.327567340909093,0.0,0.0,0.0 -9657,my_land,2012-06-22,7.892281344615443,percolation,0.0,0.0,0.0010422000135270953,0.0,0.0,0.0,0.0,0.0,12.271304793683495,0.0,0.0,0.0 -9658,my_land,2012-06-22,0.34587427880027677,subsurface_runoff,0.0,0.0,3.542495678227199e-05,0.0,0.0,0.0,0.0,0.0,13.981509911521737,0.0,0.0,0.0 -9659,my_land,2012-06-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.2875,0.0,0.0,0.0 -9660,my_groundwater,2012-06-22,18.32918383480588,tank,0.0,0.0,0.0029488120677333704,0.0,0.0,0.0,0.0,0.0,9.97537008263105,0.0,0.0,0.0 -9661,my_reservoir,2012-06-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9662,gw1,2012-06-22,262.4883907925867,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9663,gw2,2012-06-22,262.5116092074133,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9664,my_sewer,2012-06-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 -9665,my_land,2012-06-23,8.565519084705153,percolation,0.0,0.0,0.0010967730010207715,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 -9666,my_land,2012-06-23,0.5028445569128793,subsurface_runoff,0.0,0.0,4.8861594749414315e-05,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 -9667,my_land,2012-06-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25833333,0.0,0.0,0.0 -9668,my_groundwater,2012-06-23,18.457730370871793,tank,0.0,0.0,0.0029637672022276742,0.0,0.0,0.0,0.0,0.0,9.999186604730353,0.0,0.0,0.0 -9669,my_reservoir,2012-06-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9670,gw1,2012-06-23,262.4884681873028,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9671,gw2,2012-06-23,262.5115318126972,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9672,my_sewer,2012-06-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913014,0.0,0.0,0.0 -9673,my_land,2012-06-24,8.39420870301105,percolation,0.0,0.0,0.001074837541000356,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 -9674,my_land,2012-06-24,0.4022756455303035,subsurface_runoff,0.0,0.0,3.908927579953145e-05,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 -9675,my_land,2012-06-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.22916667,0.0,0.0,0.0 -9676,my_groundwater,2012-06-24,18.58246815068448,tank,0.0,0.0,0.002978238405592469,0.0,0.0,0.0,0.0,0.0,10.022151107804277,0.0,0.0,0.0 -9677,my_reservoir,2012-06-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9678,gw1,2012-06-24,262.4885450660541,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9679,gw2,2012-06-24,262.5114549339459,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9680,my_sewer,2012-06-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 -9681,my_land,2012-06-25,8.226324528950828,percolation,0.0,0.0,0.001053340790180349,0.0,0.0,0.0,0.0,0.0,12.4964471875155,0.0,0.0,0.0 -9682,my_land,2012-06-25,0.3218205164242428,subsurface_runoff,0.0,0.0,3.127142063962516e-05,0.0,0.0,0.0,0.0,0.0,14.255942344962994,0.0,0.0,0.0 -9683,my_land,2012-06-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.22916667,0.0,0.0,0.0 -9684,my_groundwater,2012-06-25,18.70347644393284,tank,0.0,0.0,0.002992235818521445,0.0,0.0,0.0,0.0,0.0,10.044305099714848,0.0,0.0,0.0 -9685,my_reservoir,2012-06-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9686,gw1,2012-06-25,262.4886214322804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9687,gw2,2012-06-25,262.5113785677196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9688,my_sewer,2012-06-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 -9689,my_land,2012-06-26,8.164036141313542,percolation,0.0,0.0,0.00104180292880691,0.0,0.0,0.0,0.0,0.0,12.521087887475797,0.0,0.0,0.0 -9690,my_land,2012-06-26,0.2852763050963276,subsurface_runoff,0.0,0.0,2.7610049281813915e-05,0.0,0.0,0.0,0.0,0.0,14.276240239296666,0.0,0.0,0.0 -9691,my_land,2012-06-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.171875,0.0,0.0,0.0 -9692,my_groundwater,2012-06-26,18.822914202842604,tank,0.0,0.0,0.0030059633600258533,0.0,0.0,0.0,0.0,0.0,10.06617379137224,0.0,0.0,0.0 -9693,my_reservoir,2012-06-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9694,gw1,2012-06-26,262.48869728939854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9695,gw2,2012-06-26,262.51130271060146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9696,my_sewer,2012-06-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 -9697,my_land,2012-06-27,8.000755418487271,percolation,0.0,0.0,0.0010209668702307717,0.0,0.0,0.0,0.0,0.0,12.521087887475797,0.0,0.0,0.0 -9698,my_land,2012-06-27,0.2282210440770621,subsurface_runoff,0.0,0.0,2.2088039425451133e-05,0.0,0.0,0.0,0.0,0.0,14.276240239296664,0.0,0.0,0.0 -9699,my_land,2012-06-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.143750000000002,0.0,0.0,0.0 -9700,my_groundwater,2012-06-27,18.938729438354702,tank,0.0,0.0,0.0030192324200554862,0.0,0.0,0.0,0.0,0.0,10.087285981026747,0.0,0.0,0.0 -9701,my_reservoir,2012-06-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9702,gw1,2012-06-27,262.48877264080255,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9703,gw2,2012-06-27,262.51122735919745,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9704,my_sewer,2012-06-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.264310366913012,0.0,0.0,0.0 -9705,my_land,2012-06-28,7.937510170201346,percolation,0.0,0.0,0.0010096610721326302,0.0,0.0,0.0,0.0,0.0,12.544185836885163,0.0,0.0,0.0 -9706,my_land,2012-06-28,0.20890876997833527,subsurface_runoff,0.0,0.0,2.0150306181578296e-05,0.0,0.0,0.0,0.0,0.0,14.293816978280756,0.0,0.0,0.0 -9707,my_land,2012-06-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.115625,0.0,0.0,0.0 -9708,my_groundwater,2012-06-28,19.05296764322363,tank,0.0,0.0,0.003032238153688047,0.0,0.0,0.0,0.0,0.0,10.108122537335351,0.0,0.0,0.0 -9709,my_reservoir,2012-06-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9710,gw1,2012-06-28,262.4888474898639,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9711,gw2,2012-06-28,262.5111525101361,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9712,my_sewer,2012-06-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.087500000000002,0.0,0.0,0.0 -9713,my_land,2012-06-29,7.95366492585923,percolation,0.0,0.0,0.0010058139184591025,0.0,0.0,0.0,0.0,0.0,12.58496767464177,0.0,0.0,0.0 -9714,my_land,2012-06-29,0.21472020212196377,subsurface_runoff,0.0,0.0,2.0568154542303437e-05,0.0,0.0,0.0,0.0,0.0,14.317066230777376,0.0,0.0,0.0 -9715,my_land,2012-06-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0875,0.0,0.0,0.0 -9716,my_groundwater,2012-06-29,19.167249117249135,tank,0.0,0.0,0.0030451330559296014,0.0,0.0,0.0,0.0,0.0,10.12904550006292,0.0,0.0,0.0 -9717,my_reservoir,2012-06-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9718,gw1,2012-06-29,262.48892183993144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9719,gw2,2012-06-29,262.51107816006856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9720,my_sewer,2012-06-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 -9721,my_land,2012-06-30,8.04957715198166,percolation,0.0,0.0,0.0010091184887588028,0.0,0.0,0.0,0.0,0.0,12.641892806669919,0.0,0.0,0.0 -9722,my_land,2012-06-30,0.24115997792603772,subsurface_runoff,0.0,0.0,2.2827543679797163e-05,0.0,0.0,0.0,0.0,0.0,14.335755022478725,0.0,0.0,0.0 -9723,my_land,2012-06-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.059375,0.0,0.0,0.0 -9724,my_groundwater,2012-06-30,19.283197386478495,tank,0.0,0.0,0.0030580629925252246,0.0,0.0,0.0,0.0,0.0,10.15039938726245,0.0,0.0,0.0 -9725,my_reservoir,2012-06-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9726,gw1,2012-06-30,262.4889956943319,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9727,gw2,2012-06-30,262.5110043056681,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9728,my_sewer,2012-07-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.031250000000002,0.0,0.0,0.0 -9729,my_land,2012-07-01,8.009196898433038,percolation,0.0,0.0,0.0010000056930233219,0.0,0.0,0.0,0.0,0.0,12.667579012983037,0.0,0.0,0.0 -9730,my_land,2012-07-01,0.22574738084178572,subsurface_runoff,0.0,0.0,2.1274163934230984e-05,0.0,0.0,0.0,0.0,0.0,14.33747505703958,0.0,0.0,0.0 -9731,my_land,2012-07-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.03125,0.0,0.0,0.0 -9732,my_groundwater,2012-07-01,19.398033758444686,tank,0.0,0.0,0.0030707750937947437,0.0,0.0,0.0,0.0,0.0,10.17155678702088,0.0,0.0,0.0 -9733,my_reservoir,2012-07-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9734,gw1,2012-07-01,262.48906905636966,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9735,gw2,2012-07-01,262.51093094363034,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9736,my_sewer,2012-07-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.003125,0.0,0.0,0.0 -9737,my_land,2012-07-02,8.102286428155915,percolation,0.0,0.0,0.001002853966540016,0.0,0.0,0.0,0.0,0.0,12.719647878296659,0.0,0.0,0.0 -9738,my_land,2012-07-02,0.24951585506568433,subsurface_runoff,0.0,0.0,2.3236579413278806e-05,0.0,0.0,0.0,0.0,0.0,14.336315258886348,0.0,0.0,0.0 -9739,my_land,2012-07-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.003125000000002,0.0,0.0,0.0 -9740,my_groundwater,2012-07-02,19.514478076336033,tank,0.0,0.0,0.0030835133975219645,0.0,0.0,0.0,0.0,0.0,10.193093649033024,0.0,0.0,0.0 -9741,my_reservoir,2012-07-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9742,gw1,2012-07-02,262.4891419293272,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9743,gw2,2012-07-02,262.5108580706728,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9744,my_sewer,2012-07-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 -9745,my_land,2012-07-03,8.368447154799812,percolation,0.0,0.0,0.00102005818450162,0.0,0.0,0.0,0.0,0.0,12.801677021060193,0.0,0.0,0.0 -9746,my_land,2012-07-03,0.31613144737418414,subsurface_runoff,0.0,0.0,2.872839204556306e-05,0.0,0.0,0.0,0.0,0.0,14.33131358337954,0.0,0.0,0.0 -9747,my_land,2012-07-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.975,0.0,0.0,0.0 -9748,my_groundwater,2012-07-03,19.6360495553679,tank,0.0,0.0,0.0030965700842126567,0.0,0.0,0.0,0.0,0.0,10.2157250950895,0.0,0.0,0.0 -9749,my_reservoir,2012-07-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9750,gw1,2012-07-03,262.48921431646505,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9751,gw2,2012-07-03,262.51078568353495,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9752,my_sewer,2012-07-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 -9753,my_land,2012-07-04,8.363733531992429,percolation,0.0,0.0,0.0010137544554292648,0.0,0.0,0.0,0.0,0.0,12.830458664073673,0.0,0.0,0.0 -9754,my_land,2012-07-04,0.29716510899828974,subsurface_runoff,0.0,0.0,2.6818750267110865e-05,0.0,0.0,0.0,0.0,0.0,14.323913467039946,0.0,0.0,0.0 -9755,my_land,2012-07-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.16785714,0.0,0.0,0.0 -9756,my_groundwater,2012-07-04,19.75722114980933,tank,0.0,0.0,0.0031094658032733637,0.0,0.0,0.0,0.0,0.0,10.238258073136075,0.0,0.0,0.0 -9757,my_reservoir,2012-07-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9758,gw1,2012-07-04,262.4892862210219,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9759,gw2,2012-07-04,262.5107137789781,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9760,my_sewer,2012-07-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.030990782580643,0.0,0.0,0.0 -9761,my_land,2012-07-05,8.26202077781826,percolation,0.0,0.0,0.0009991978246778723,0.0,0.0,0.0,0.0,0.0,12.843008892361265,0.0,0.0,0.0 -9762,my_land,2012-07-05,0.2555720644682045,subsurface_runoff,0.0,0.0,2.3011043304081302e-05,0.0,0.0,0.0,0.0,0.0,14.330063722269998,0.0,0.0,0.0 -9763,my_land,2012-07-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.36071429,0.0,0.0,0.0 -9764,my_groundwater,2012-07-05,19.876019234197532,tank,0.0,0.0,0.003122032951624694,0.0,0.0,0.0,0.0,0.0,10.26029950896935,0.0,0.0,0.0 -9765,my_reservoir,2012-07-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9766,gw1,2012-07-05,262.4893576462151,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9767,gw2,2012-07-05,262.5106423537849,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9768,my_sewer,2012-07-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.553571429999998,0.0,0.0,0.0 -9769,my_land,2012-07-06,8.78582587458955,percolation,0.0,0.0,0.0010355036471670525,0.0,0.0,0.0,0.0,0.0,12.984016704601535,0.0,0.0,0.0 -9770,my_land,2012-07-06,0.3919530290786875,subsurface_runoff,0.0,0.0,3.372578130523444e-05,0.0,0.0,0.0,0.0,0.0,14.478784602519319,0.0,0.0,0.0 -9771,my_land,2012-07-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.55357143,0.0,0.0,0.0 -9772,my_groundwater,2012-07-06,20.00518349855904,tank,0.0,0.0,0.003135307764920104,0.0,0.0,0.0,0.0,0.0,10.284650626086568,0.0,0.0,0.0 -9773,my_reservoir,2012-07-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9774,gw1,2012-07-06,262.4894285952404,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9775,gw2,2012-07-06,262.5105714047596,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9776,my_sewer,2012-07-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -9777,my_land,2012-07-07,8.986009752111995,percolation,0.0,0.0,0.0010447881056305478,0.0,0.0,0.0,0.0,0.0,13.058980444739438,0.0,0.0,0.0 -9778,my_land,2012-07-07,0.4158482450355314,subsurface_runoff,0.0,0.0,3.514240229774849e-05,0.0,0.0,0.0,0.0,0.0,14.551901971810251,0.0,0.0,0.0 -9779,my_land,2012-07-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.74642857,0.0,0.0,0.0 -9780,my_groundwater,2012-07-07,20.13810002405207,tank,0.0,0.0,0.0031487383962295686,0.0,0.0,0.0,0.0,0.0,10.309851947076636,0.0,0.0,0.0 -9781,my_reservoir,2012-07-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9782,gw1,2012-07-07,262.4894990712721,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9783,gw2,2012-07-07,262.5105009287279,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9784,my_sewer,2012-07-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -9785,my_land,2012-07-08,8.90737023821775,percolation,0.0,0.0,0.0010319896315810987,0.0,0.0,0.0,0.0,0.0,13.07999593597676,0.0,0.0,0.0 -9786,my_land,2012-07-08,0.36018354327958024,subsurface_runoff,0.0,0.0,3.0317265528855103e-05,0.0,0.0,0.0,0.0,0.0,14.579315989184732,0.0,0.0,0.0 -9787,my_land,2012-07-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.93928571,0.0,0.0,0.0 -9788,my_groundwater,2012-07-08,20.2690833824128,tank,0.0,0.0,0.003161874910596181,0.0,0.0,0.0,0.0,0.0,10.334633844962976,0.0,0.0,0.0 -9789,my_reservoir,2012-07-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9790,gw1,2012-07-08,262.4895690774636,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9791,gw2,2012-07-08,262.5104309225364,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9792,my_sewer,2012-07-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625061576724136,0.0,0.0,0.0 -9793,my_land,2012-07-09,8.729222833453395,percolation,0.0,0.0,0.0010113498389494767,0.0,0.0,0.0,0.0,0.0,13.07999593597676,0.0,0.0,0.0 -9794,my_land,2012-07-09,0.2881468346236642,subsurface_runoff,0.0,0.0,2.425381242308408e-05,0.0,0.0,0.0,0.0,0.0,14.579315989184732,0.0,0.0,0.0 -9795,my_land,2012-07-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.13214286,0.0,0.0,0.0 -9796,my_groundwater,2012-07-09,20.396112710209213,tank,0.0,0.0,0.0031745584164697338,0.0,0.0,0.0,0.0,0.0,10.358552933896977,0.0,0.0,0.0 -9797,my_reservoir,2012-07-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9798,gw1,2012-07-09,262.4896386169472,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9799,gw2,2012-07-09,262.5103613830528,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9800,my_sewer,2012-07-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.325,0.0,0.0,0.0 -9801,my_land,2012-07-10,8.68930890045207,percolation,0.0,0.0,0.0010020208104351118,0.0,0.0,0.0,0.0,0.0,13.113497592849635,0.0,0.0,0.0 -9802,my_land,2012-07-10,0.26716250815273873,subsurface_runoff,0.0,0.0,2.2368483479861743e-05,0.0,0.0,0.0,0.0,0.0,14.670159348550689,0.0,0.0,0.0 -9803,my_land,2012-07-10,1.7509144622347636e-18,surface_runoff,0.0,0.0,1.0686733778288352e-22,0.0,0.0,0.0,0.0,0.0,14.8789451052896,0.0,0.0,0.0 -9804,my_groundwater,2012-07-10,20.522011931050038,tank,0.0,0.0,0.003187020301212417,0.0,0.0,0.0,0.0,0.0,10.382299182173949,0.0,0.0,0.0 -9805,my_reservoir,2012-07-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9806,gw1,2012-07-10,262.48970769283426,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9807,gw2,2012-07-10,262.51029230716574,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9808,my_sewer,2012-07-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.19583333,0.0,0.0,0.0 -9809,my_land,2012-07-11,8.863092334852968,percolation,0.0,0.0,0.0010094276064963506,0.0,0.0,0.0,0.0,0.0,13.204115407814035,0.0,0.0,0.0 -9810,my_land,2012-07-11,0.3083067718038066,subsurface_runoff,0.0,0.0,2.5363415972989006e-05,0.0,0.0,0.0,0.0,0.0,14.901491566359987,0.0,0.0,0.0 -9811,my_land,2012-07-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.195833329999996,0.0,0.0,0.0 -9812,my_groundwater,2012-07-11,20.651134138039062,tank,0.0,0.0,0.003199601812448776,0.0,0.0,0.0,0.0,0.0,10.40695315521937,0.0,0.0,0.0 -9813,my_reservoir,2012-07-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9814,gw1,2012-07-11,262.48977630821537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9815,gw2,2012-07-11,262.51022369178463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9816,my_sewer,2012-07-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.070021648181815,0.0,0.0,0.0 -9817,my_land,2012-07-12,9.633842455895813,percolation,0.0,0.0,0.0010580108612908048,0.0,0.0,0.0,0.0,0.0,13.419285263648918,0.0,0.0,0.0 -9818,my_land,2012-07-12,0.5046078576443799,subsurface_runoff,0.0,0.0,3.9004149628562946e-05,0.0,0.0,0.0,0.0,0.0,15.151583837701924,0.0,0.0,0.0 -9819,my_land,2012-07-12,9.71044150303349e-18,surface_runoff,0.0,0.0,5.926783143941339e-22,0.0,0.0,0.0,0.0,0.0,15.471730623216871,0.0,0.0,0.0 -9820,my_groundwater,2012-07-12,20.795623809831845,tank,0.0,0.0,0.00321314088616536,0.0,0.0,0.0,0.0,0.0,10.435361587165387,0.0,0.0,0.0 -9821,my_reservoir,2012-07-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9822,gw1,2012-07-12,262.4898444661606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9823,gw2,2012-07-12,262.5101555338394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9824,my_sewer,2012-07-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.03689123613636,0.0,0.0,0.0 -9825,my_land,2012-07-13,9.800751183192137,percolation,0.0,0.0,0.0010624339968961078,0.0,0.0,0.0,0.0,0.0,13.486217189464094,0.0,0.0,0.0 -9826,my_land,2012-07-13,0.5015327014663173,subsurface_runoff,0.0,0.0,3.8164776255535846e-05,0.0,0.0,0.0,0.0,0.0,15.169528053140553,0.0,0.0,0.0 -9827,my_land,2012-07-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.9375,0.0,0.0,0.0 -9828,my_groundwater,2012-07-13,20.94315004225082,tank,0.0,0.0,0.003226736154601046,0.0,0.0,0.0,0.0,0.0,10.464425617406409,0.0,0.0,0.0 -9829,my_reservoir,2012-07-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9830,gw1,2012-07-13,262.48991216971956,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9831,gw2,2012-07-13,262.51008783028044,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9832,my_sewer,2012-07-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.01149591323232,0.0,0.0,0.0 -9833,my_land,2012-07-14,9.813117340321494,percolation,0.0,0.0,0.0010559334821339062,0.0,0.0,0.0,0.0,0.0,13.52087459280988,0.0,0.0,0.0 -9834,my_land,2012-07-14,0.4579285232936523,subsurface_runoff,0.0,0.0,3.45449271746928e-05,0.0,0.0,0.0,0.0,0.0,15.163185893730756,0.0,0.0,0.0 -9835,my_land,2012-07-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.808333329999998,0.0,0.0,0.0 -9836,my_groundwater,2012-07-14,21.090559198716026,tank,0.0,0.0,0.0032401651029579834,0.0,0.0,0.0,0.0,0.0,10.493375904272261,0.0,0.0,0.0 -9837,my_reservoir,2012-07-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9838,gw1,2012-07-14,262.4899794219214,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9839,gw2,2012-07-14,262.5100205780786,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9840,my_sewer,2012-07-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -9841,my_land,2012-07-15,9.742801662348878,percolation,0.0,0.0,0.0010437511521312831,0.0,0.0,0.0,0.0,0.0,13.540000029188292,0.0,0.0,0.0 -9842,my_land,2012-07-15,0.4006140210386809,subsurface_runoff,0.0,0.0,3.0067598784667156e-05,0.0,0.0,0.0,0.0,0.0,15.14925604942857,0.0,0.0,0.0 -9843,my_land,2012-07-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.67916667,0.0,0.0,0.0 -9844,my_groundwater,2012-07-15,21.23616840598848,tank,0.0,0.0,0.0032533124815118325,0.0,0.0,0.0,0.0,0.0,10.521829909170465,0.0,0.0,0.0 -9845,my_reservoir,2012-07-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9846,gw1,2012-07-15,262.4900462257753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9847,gw2,2012-07-15,262.5099537742247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9848,my_sewer,2012-07-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -9849,my_land,2012-07-16,9.664250008706945,percolation,0.0,0.0,0.0010311538681171632,0.0,0.0,0.0,0.0,0.0,13.55622558573622,0.0,0.0,0.0 -9850,my_land,2012-07-16,0.35213866706361,subsurface_runoff,0.0,0.0,2.630652502188493e-05,0.0,0.0,0.0,0.0,0.0,15.125799235557531,0.0,0.0,0.0 -9851,my_land,2012-07-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.55,0.0,0.0,0.0 -9852,my_groundwater,2012-07-16,21.3798145030079,tank,0.0,0.0,0.0032661705469090095,0.0,0.0,0.0,0.0,0.0,10.549752342251546,0.0,0.0,0.0 -9853,my_reservoir,2012-07-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9854,gw1,2012-07-16,262.49011258427015,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9855,gw2,2012-07-16,262.50988741572985,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9856,my_sewer,2012-07-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.007676036873328,0.0,0.0,0.0 -9857,my_land,2012-07-17,9.560812750487118,percolation,0.0,0.0,0.0010169607023868422,0.0,0.0,0.0,0.0,0.0,13.567699106201786,0.0,0.0,0.0 -9858,my_land,2012-07-17,0.3061592988085241,subsurface_runoff,0.0,0.0,2.2794855835745292e-05,0.0,0.0,0.0,0.0,0.0,15.097956838221593,0.0,0.0,0.0 -9859,my_land,2012-07-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.8375,0.0,0.0,0.0 -9860,my_groundwater,2012-07-17,21.52099579774244,tank,0.0,0.0,0.003278707534840326,0.0,0.0,0.0,0.0,0.0,10.57704594390817,0.0,0.0,0.0 -9861,my_reservoir,2012-07-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9862,gw1,2012-07-17,262.490178500375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9863,gw2,2012-07-17,262.509821499625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9864,my_sewer,2012-07-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9865,my_land,2012-07-18,9.541681966545823,percolation,0.0,0.0,0.001008884051061292,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9866,my_land,2012-07-18,0.29175341756884593,subsurface_runoff,0.0,0.0,2.1572636429735457e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -9867,my_land,2012-07-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9868,my_groundwater,2012-07-18,21.66143469113848,tank,0.0,0.0,0.003291048762756973,0.0,0.0,0.0,0.0,0.0,10.604093653299463,0.0,0.0,0.0 -9869,my_reservoir,2012-07-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9870,gw1,2012-07-18,262.4902439770392,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9871,gw2,2012-07-18,262.5097560229608,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9872,my_sewer,2012-07-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9873,my_land,2012-07-19,9.350848327214907,percolation,0.0,0.0,0.000988706370040066,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9874,my_land,2012-07-19,0.23340273405507675,subsurface_runoff,0.0,0.0,1.7258109143788364e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -9875,my_land,2012-07-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9876,my_groundwater,2012-07-19,21.79763765964322,tank,0.0,0.0,0.003302948377668753,0.0,0.0,0.0,0.0,0.0,10.630198575622344,0.0,0.0,0.0 -9877,my_reservoir,2012-07-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9878,gw1,2012-07-19,262.49030901719226,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9879,gw2,2012-07-19,262.50969098280774,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9880,my_sewer,2012-07-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9881,my_land,2012-07-20,9.163831360670608,percolation,0.0,0.0,0.0009689322426392647,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9882,my_land,2012-07-20,0.1867221872440614,subsurface_runoff,0.0,0.0,1.3806487315030691e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -9883,my_land,2012-07-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9884,my_groundwater,2012-07-20,21.92969298962205,tank,0.0,0.0,0.0033144156988068807,0.0,0.0,0.0,0.0,0.0,10.655405279026905,0.0,0.0,0.0 -9885,my_reservoir,2012-07-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9886,gw1,2012-07-20,262.4903736237443,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9887,gw2,2012-07-20,262.5096263762557,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9888,my_sewer,2012-07-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9889,my_land,2012-07-21,8.980554733457195,percolation,0.0,0.0,0.0009495535977864794,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9890,my_land,2012-07-21,0.14937774979524912,subsurface_runoff,0.0,0.0,1.1045189852024554e-05,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -9891,my_land,2012-07-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9892,my_groundwater,2012-07-21,22.057687192793374,tank,0.0,0.0,0.003325459857800517,0.0,0.0,0.0,0.0,0.0,10.679755588595848,0.0,0.0,0.0 -9893,my_reservoir,2012-07-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9894,gw1,2012-07-21,262.490437799586,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9895,gw2,2012-07-21,262.509562200414,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9896,my_sewer,2012-07-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9897,my_land,2012-07-22,8.800943638788052,percolation,0.0,0.0,0.0009305625258307498,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9898,my_land,2012-07-22,0.11950219983619931,subsurface_runoff,0.0,0.0,8.836151881619643e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 -9899,my_land,2012-07-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9900,my_groundwater,2012-07-22,22.18170504174386,tank,0.0,0.0,0.0033360898024318558,0.0,0.0,0.0,0.0,0.0,10.703288794384756,0.0,0.0,0.0 -9901,my_reservoir,2012-07-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9902,gw1,2012-07-22,262.4905015475888,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9903,gw2,2012-07-22,262.5094984524112,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9904,my_sewer,2012-07-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9905,my_land,2012-07-23,8.62492476601229,percolation,0.0,0.0,0.0009119512753141348,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9906,my_land,2012-07-23,0.09560175986895944,subsurface_runoff,0.0,0.0,7.068921505295714e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 -9907,my_land,2012-07-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9908,my_groundwater,2012-07-23,22.30182960473332,tank,0.0,0.0,0.0033463143003160992,0.0,0.0,0.0,0.0,0.0,10.726041840805832,0.0,0.0,0.0 -9909,my_reservoir,2012-07-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9910,gw1,2012-07-23,262.4905648706049,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9911,gw2,2012-07-23,262.5094351293951,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9912,my_sewer,2012-07-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9913,my_land,2012-07-24,8.452426270692044,percolation,0.0,0.0,0.0008937122498078521,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9914,my_land,2012-07-24,0.07648140789516755,subsurface_runoff,0.0,0.0,5.655137204236571e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732904,0.0,0.0,0.0 -9915,my_land,2012-07-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9916,my_groundwater,2012-07-24,22.41814227980343,tank,0.0,0.0,0.0033561419425078257,0.0,0.0,0.0,0.0,0.0,10.748049499278256,0.0,0.0,0.0 -9917,my_reservoir,2012-07-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9918,gw1,2012-07-24,262.49062777146753,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9919,gw2,2012-07-24,262.50937222853247,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9920,my_sewer,2012-07-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9921,my_land,2012-07-25,8.283377745278203,percolation,0.0,0.0,0.0008758380048116951,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9922,my_land,2012-07-25,0.06118512631613404,subsurface_runoff,0.0,0.0,4.524109763389257e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732902,0.0,0.0,0.0 -9923,my_land,2012-07-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9924,my_groundwater,2012-07-25,22.53072282820423,tank,0.0,0.0,0.003365581147035223,0.0,0.0,0.0,0.0,0.0,10.769344525845039,0.0,0.0,0.0 -9925,my_reservoir,2012-07-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9926,gw1,2012-07-25,262.4906902529911,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9927,gw2,2012-07-25,262.5093097470089,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9928,my_sewer,2012-07-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9929,my_land,2012-07-26,8.11771019037264,percolation,0.0,0.0,0.0008583212447154612,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9930,my_land,2012-07-26,0.048948101052907235,subsurface_runoff,0.0,0.0,3.6192878107114055e-06,0.0,0.0,0.0,0.0,0.0,15.0806768827329,0.0,0.0,0.0 -9931,my_land,2012-07-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9932,my_groundwater,2012-07-26,22.63964940715202,tank,0.0,0.0,0.003374640162363628,0.0,0.0,0.0,0.0,0.0,10.789957805261752,0.0,0.0,0.0 -9933,my_reservoir,2012-07-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9934,gw1,2012-07-26,262.49075231797116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9935,gw2,2012-07-26,262.50924768202884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9936,my_sewer,2012-07-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9937,my_land,2012-07-27,7.955355986565187,percolation,0.0,0.0,0.000841154819821152,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9938,my_land,2012-07-27,0.03915848084232579,subsurface_runoff,0.0,0.0,2.8954302485691243e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -9939,my_land,2012-07-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9940,my_groundwater,2012-07-27,22.744998601932075,tank,0.0,0.0,0.0033833270707897926,0.0,0.0,0.0,0.0,0.0,10.809918482892604,0.0,0.0,0.0 -9941,my_reservoir,2012-07-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9942,gw1,2012-07-27,262.49081396918467,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9943,gw2,2012-07-27,262.50918603081533,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9944,my_sewer,2012-07-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,0.0,0.0,0.0 -9945,my_land,2012-07-28,7.796248866833883,percolation,0.0,0.0,0.000824331723424729,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9946,my_land,2012-07-28,0.03132678467386063,subsurface_runoff,0.0,0.0,2.3163441988552993e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -9947,my_land,2012-07-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9948,my_groundwater,2012-07-28,22.84684545735922,tank,0.0,0.0,0.00339164979176825,0.0,0.0,0.0,0.0,0.0,10.829254085600855,0.0,0.0,0.0 -9949,my_reservoir,2012-07-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9950,gw1,2012-07-28,262.4908752093901,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9951,gw2,2012-07-28,262.5091247906099,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9952,my_sewer,2012-07-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.15357143,0.0,0.0,0.0 -9953,my_land,2012-07-29,7.640323889497205,percolation,0.0,0.0,0.0008078450889562344,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9954,my_land,2012-07-29,0.025061427739088503,subsurface_runoff,0.0,0.0,1.8530753590842395e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -9955,my_land,2012-07-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9956,my_groundwater,2012-07-29,22.94526350860916,tank,0.0,0.0,0.003399616085171153,0.0,0.0,0.0,0.0,0.0,10.847990632690212,0.0,0.0,0.0 -9957,my_reservoir,2012-07-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9958,gw1,2012-07-29,262.4909360413275,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9959,gw2,2012-07-29,262.5090639586725,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9960,my_sewer,2012-07-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 -9961,my_land,2012-07-30,7.487517411707261,percolation,0.0,0.0,0.0007916881871771097,0.0,0.0,0.0,0.0,0.0,13.59335576319628,0.0,0.0,0.0 -9962,my_land,2012-07-30,0.020049142191270804,subsurface_runoff,0.0,0.0,1.4824602872673916e-06,0.0,0.0,0.0,0.0,0.0,15.080676882732899,0.0,0.0,0.0 -9963,my_land,2012-07-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.7,0.0,0.0,0.0 -9964,my_groundwater,2012-07-30,23.040324811433106,tank,0.0,0.0,0.003407233554482902,0.0,0.0,0.0,0.0,0.0,10.86615273783956,0.0,0.0,0.0 -9965,my_reservoir,2012-07-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9966,gw1,2012-07-30,262.4909964677186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9967,gw2,2012-07-30,262.5090035322814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9968,my_sewer,2012-07-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 -9969,my_land,2012-07-31,7.379000460246312,percolation,0.0,0.0,0.0007792108212294476,0.0,0.0,0.0,0.0,0.0,13.601373646119358,0.0,0.0,0.0 -9970,my_land,2012-07-31,0.027259285664090506,subsurface_runoff,0.0,0.0,2.099273752502386e-06,0.0,0.0,0.0,0.0,0.0,15.059081894065006,0.0,0.0,0.0 -9971,my_land,2012-07-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.475,0.0,0.0,0.0 -9972,my_groundwater,2012-07-31,23.13293936591668,tank,0.0,0.0,0.0034145779766002944,0.0,0.0,0.0,0.0,0.0,10.883914086915428,0.0,0.0,0.0 -9973,my_reservoir,2012-07-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9974,gw1,2012-07-31,262.49105649126716,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9975,gw2,2012-07-31,262.50894350873284,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9976,my_sewer,2012-08-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.814285710000002,0.0,0.0,0.0 -9977,my_land,2012-08-01,7.264777628188283,percolation,0.0,0.0,0.0007663605977488088,0.0,0.0,0.0,0.0,0.0,13.606581847908508,0.0,0.0,0.0 -9978,my_land,2012-08-01,0.030884211428387393,subsurface_runoff,0.0,0.0,2.4233626602196336e-06,0.0,0.0,0.0,0.0,0.0,14.964027672675316,0.0,0.0,0.0 -9979,my_land,2012-08-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.496428569999999,0.0,0.0,0.0 -9980,my_groundwater,2012-08-01,23.222997133504293,tank,0.0,0.0,0.0034216424438272513,0.0,0.0,0.0,0.0,0.0,10.90125274689521,0.0,0.0,0.0 -9981,my_reservoir,2012-08-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9982,gw1,2012-08-01,262.4911161146587,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9983,gw2,2012-08-01,262.5088838853413,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9984,my_sewer,2012-08-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.517857139999998,0.0,0.0,0.0 -9985,my_land,2012-08-02,7.392463542610206,percolation,0.0,0.0,0.0007722478678740902,0.0,0.0,0.0,0.0,0.0,13.649247178604615,0.0,0.0,0.0 -9986,my_land,2012-08-02,0.0989880404313326,subsurface_runoff,0.0,0.0,7.711338313279807e-06,0.0,0.0,0.0,0.0,0.0,14.812409958919783,0.0,0.0,0.0 -9987,my_land,2012-08-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 -9988,my_groundwater,2012-08-02,23.31542907707367,tank,0.0,0.0,0.0034288090978851203,0.0,0.0,0.0,0.0,0.0,10.918989676886929,0.0,0.0,0.0 -9989,my_reservoir,2012-08-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9990,gw1,2012-08-02,262.49117534056097,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9991,gw2,2012-08-02,262.50882465943903,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9992,my_sewer,2012-08-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.51785714,0.0,0.0,0.0 -9993,my_land,2012-08-03,7.308266143573675,percolation,0.0,0.0,0.000761788099683716,0.0,0.0,0.0,0.0,0.0,13.658694192430548,0.0,0.0,0.0 -9994,my_land,2012-08-03,0.09651066957382091,subsurface_runoff,0.0,0.0,7.525584709700776e-06,0.0,0.0,0.0,0.0,0.0,14.798323336536802,0.0,0.0,0.0 -9995,my_land,2012-08-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.53928571,0.0,0.0,0.0 -9996,my_groundwater,2012-08-03,23.405915922303738,tank,0.0,0.0,0.0034357449043125403,0.0,0.0,0.0,0.0,0.0,10.936404106881374,0.0,0.0,0.0 -9997,my_reservoir,2012-08-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9998,gw1,2012-08-03,262.4912341716239,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -9999,gw2,2012-08-03,262.5087658283761,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10000,my_sewer,2012-08-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 -10001,my_land,2012-08-04,7.438785205645059,percolation,0.0,0.0,0.0007678824530348217,0.0,0.0,0.0,0.0,0.0,13.69985899499671,0.0,0.0,0.0 -10002,my_land,2012-08-04,0.15249680367071866,subsurface_runoff,0.0,0.0,1.1824580786748361e-05,0.0,0.0,0.0,0.0,0.0,14.782083068453382,0.0,0.0,0.0 -10003,my_land,2012-08-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.56071429,0.0,0.0,0.0 -10004,my_groundwater,2012-08-04,23.498833545612897,tank,0.0,0.0,0.003442787434845682,0.0,0.0,0.0,0.0,0.0,10.954212507516631,0.0,0.0,0.0 -10005,my_reservoir,2012-08-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10006,gw1,2012-08-04,262.4912926104797,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10007,gw2,2012-08-04,262.5087073895203,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10008,my_sewer,2012-08-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.582142859999998,0.0,0.0,0.0 -10009,my_land,2012-08-05,7.717077731942864,percolation,0.0,0.0,0.0007844232197457446,0.0,0.0,0.0,0.0,0.0,13.760635458556788,0.0,0.0,0.0 -10010,my_land,2012-08-05,0.23820648522520252,subsurface_runoff,0.0,0.0,1.813950565568966e-05,0.0,0.0,0.0,0.0,0.0,14.789888762601679,0.0,0.0,0.0 -10011,my_land,2012-08-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.58214286,0.0,0.0,0.0 -10012,my_groundwater,2012-08-05,23.5971841155777,tank,0.0,0.0,0.003450149081803392,0.0,0.0,0.0,0.0,0.0,10.972896197023841,0.0,0.0,0.0 -10013,my_reservoir,2012-08-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10014,gw1,2012-08-05,262.4913506597432,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10015,gw2,2012-08-05,262.5086493402568,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10016,my_sewer,2012-08-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.590079367407405,0.0,0.0,0.0 -10017,my_land,2012-08-06,7.734668569046623,percolation,0.0,0.0,0.0007815334177894195,0.0,0.0,0.0,0.0,0.0,13.783649642335789,0.0,0.0,0.0 -10018,my_land,2012-08-06,0.23734951246386707,subsurface_runoff,0.0,0.0,1.7994233759542157e-05,0.0,0.0,0.0,0.0,0.0,14.791086917158017,0.0,0.0,0.0 -10019,my_land,2012-08-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.60357143,0.0,0.0,0.0 -10020,my_groundwater,2012-08-06,23.69564690830149,tank,0.0,0.0,0.003457433496532454,0.0,0.0,0.0,0.0,0.0,10.9915734376992,0.0,0.0,0.0 -10021,my_reservoir,2012-08-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10022,gw1,2012-08-06,262.4914083220116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10023,gw2,2012-08-06,262.5085916779884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10024,my_sewer,2012-08-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10025,my_land,2012-08-07,7.719641868032565,percolation,0.0,0.0,0.0007762958421842659,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -10026,my_land,2012-08-07,0.22788414612534505,subsurface_runoff,0.0,0.0,1.722343945678603e-05,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 -10027,my_land,2012-08-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10028,my_groundwater,2012-08-07,23.793557643344258,tank,0.0,0.0,0.003464593078149874,0.0,0.0,0.0,0.0,0.0,11.010136902424243,0.0,0.0,0.0 -10029,my_reservoir,2012-08-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10030,gw1,2012-08-07,262.49146559986485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10031,gw2,2012-08-07,262.50853440013515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10032,my_sewer,2012-08-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10033,my_land,2012-08-08,7.565249030671914,percolation,0.0,0.0,0.0007607699253405805,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -10034,my_land,2012-08-08,0.18230731690027605,subsurface_runoff,0.0,0.0,1.3778751565428823e-05,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 -10035,my_land,2012-08-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10036,my_groundwater,2012-08-08,23.888080604503145,tank,0.0,0.0,0.0034714186975060755,0.0,0.0,0.0,0.0,0.0,11.028137434025322,0.0,0.0,0.0 -10037,my_reservoir,2012-08-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10038,gw1,2012-08-08,262.49152249586575,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10039,gw2,2012-08-08,262.50847750413425,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10040,my_sewer,2012-08-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10041,my_land,2012-08-09,7.4139440500584755,percolation,0.0,0.0,0.0007455545268337689,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -10042,my_land,2012-08-09,0.14584585352022084,subsurface_runoff,0.0,0.0,1.1023001252343059e-05,0.0,0.0,0.0,0.0,0.0,14.794145509309056,0.0,0.0,0.0 -10043,my_land,2012-08-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10044,my_groundwater,2012-08-09,23.979287121153792,tank,0.0,0.0,0.0034779175107728546,0.0,0.0,0.0,0.0,0.0,11.045597562157537,0.0,0.0,0.0 -10045,my_reservoir,2012-08-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10046,gw1,2012-08-09,262.49157901255995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10047,gw2,2012-08-09,262.50842098744005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10048,my_sewer,2012-08-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10049,my_land,2012-08-10,7.265665169057306,percolation,0.0,0.0,0.0007306434362970935,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -10050,my_land,2012-08-10,0.11667668281617667,subsurface_runoff,0.0,0.0,8.818401001874446e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 -10051,my_land,2012-08-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10052,my_groundwater,2012-08-10,24.067247087149575,tank,0.0,0.0,0.003484096529806256,0.0,0.0,0.0,0.0,0.0,11.062538648099945,0.0,0.0,0.0 -10053,my_reservoir,2012-08-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10054,gw1,2012-08-10,262.4916351524762,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10055,gw2,2012-08-10,262.5083648475238,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10056,my_sewer,2012-08-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.625,0.0,0.0,0.0 -10057,my_land,2012-08-11,7.12035186567616,percolation,0.0,0.0,0.0007160305675711516,0.0,0.0,0.0,0.0,0.0,13.802208392126914,0.0,0.0,0.0 -10058,my_land,2012-08-11,0.09334134625294134,subsurface_runoff,0.0,0.0,7.054720801499557e-06,0.0,0.0,0.0,0.0,0.0,14.794145509309057,0.0,0.0,0.0 -10059,my_land,2012-08-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.48214286,0.0,0.0,0.0 -10060,my_groundwater,2012-08-11,24.152028989554395,tank,0.0,0.0,0.0034899626250358673,0.0,0.0,0.0,0.0,0.0,11.078980959621598,0.0,0.0,0.0 -10061,my_reservoir,2012-08-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10062,gw1,2012-08-11,262.4916909181263,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10063,gw2,2012-08-11,262.5083090818737,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10064,my_sewer,2012-08-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 -10065,my_land,2012-08-12,7.055876391412156,percolation,0.0,0.0,0.0007078576426997847,0.0,0.0,0.0,0.0,0.0,13.821402671541934,0.0,0.0,0.0 -10066,my_land,2012-08-12,0.09587894449882055,subsurface_runoff,0.0,0.0,7.316616499718311e-06,0.0,0.0,0.0,0.0,0.0,14.959118996327847,0.0,0.0,0.0 -10067,my_land,2012-08-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.69642857,0.0,0.0,0.0 -10068,my_groundwater,2012-08-12,24.235286400762828,tank,0.0,0.0,0.003495647677628238,0.0,0.0,0.0,0.0,0.0,11.095234720661681,0.0,0.0,0.0 -10069,my_reservoir,2012-08-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10070,gw1,2012-08-12,262.4917463120055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10071,gw2,2012-08-12,262.5082536879945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10072,my_sewer,2012-08-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 -10073,my_land,2012-08-13,7.011831814781658,percolation,0.0,0.0,0.0007013352992331825,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 -10074,my_land,2012-08-13,0.10311756408823887,subsurface_runoff,0.0,0.0,7.930792352806893e-06,0.0,0.0,0.0,0.0,0.0,15.156118910764432,0.0,0.0,0.0 -10075,my_land,2012-08-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 -10076,my_groundwater,2012-08-13,24.317439046704692,tank,0.0,0.0,0.0035011857413114146,0.0,0.0,0.0,0.0,0.0,11.111391997248802,0.0,0.0,0.0 -10077,my_reservoir,2012-08-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10078,gw1,2012-08-13,262.4918013365921,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10079,gw2,2012-08-13,262.5081986634079,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10080,my_sewer,2012-08-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.91071429,0.0,0.0,0.0 -10081,my_land,2012-08-14,6.871595178486025,percolation,0.0,0.0,0.0006873085932485189,0.0,0.0,0.0,0.0,0.0,13.847800336545614,0.0,0.0,0.0 -10082,my_land,2012-08-14,0.08249405127059109,subsurface_runoff,0.0,0.0,6.344633882245515e-06,0.0,0.0,0.0,0.0,0.0,15.15611891076443,0.0,0.0,0.0 -10083,my_land,2012-08-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.125,0.0,0.0,0.0 -10084,my_groundwater,2012-08-14,24.396531493792825,tank,0.0,0.0,0.003506424416177838,0.0,0.0,0.0,0.0,0.0,11.127082151374976,0.0,0.0,0.0 -10085,my_reservoir,2012-08-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10086,gw1,2012-08-14,262.49185599434816,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10087,gw2,2012-08-14,262.50814400565184,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10088,my_sewer,2012-08-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 -10089,my_land,2012-08-15,7.220414946347113,percolation,0.0,0.0,0.0007092898903616766,0.0,0.0,0.0,0.0,0.0,14.005023368864164,0.0,0.0,0.0 -10090,my_land,2012-08-15,0.19830862099764507,subsurface_runoff,0.0,0.0,1.4797467371953734e-05,0.0,0.0,0.0,0.0,0.0,15.840880533199165,0.0,0.0,0.0 -10091,my_land,2012-08-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.25357143,0.0,0.0,0.0 -10092,my_groundwater,2012-08-15,24.48252718360898,tank,0.0,0.0,0.0035120974707626134,0.0,0.0,0.0,0.0,0.0,11.144360596363532,0.0,0.0,0.0 -10093,my_reservoir,2012-08-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10094,gw1,2012-08-15,262.4919102877192,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10095,gw2,2012-08-15,262.5080897122808,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10096,my_sewer,2012-08-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.264385849345796,0.0,0.0,0.0 -10097,my_land,2012-08-16,7.260085055473977,percolation,0.0,0.0,0.0007085953959256106,0.0,0.0,0.0,0.0,0.0,14.061328539956195,0.0,0.0,0.0 -10098,my_land,2012-08-16,0.2087362595338455,subsurface_runoff,0.0,0.0,1.5509076855703794e-05,0.0,0.0,0.0,0.0,0.0,15.933225906202166,0.0,0.0,0.0 -10099,my_land,2012-08-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.38214286,0.0,0.0,0.0 -10100,my_groundwater,2012-08-16,24.56911545427925,tank,0.0,0.0,0.003517742204788478,0.0,0.0,0.0,0.0,0.0,11.161907507161782,0.0,0.0,0.0 -10101,my_reservoir,2012-08-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10102,gw1,2012-08-16,262.4919642191344,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10103,gw2,2012-08-16,262.5080357808656,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10104,my_sewer,2012-08-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10105,my_land,2012-08-17,7.28277392935675,percolation,0.0,0.0,0.000706711959899128,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 -10106,my_land,2012-08-17,0.21267351782905003,subsurface_runoff,0.0,0.0,1.5751063359945256e-05,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 -10107,my_land,2012-08-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.51071429,0.0,0.0,0.0 -10108,my_groundwater,2012-08-17,24.655949134919744,tank,0.0,0.0,0.003523334485603025,0.0,0.0,0.0,0.0,0.0,11.179655752319375,0.0,0.0,0.0 -10109,my_reservoir,2012-08-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10110,gw1,2012-08-17,262.49201779100684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10111,gw2,2012-08-17,262.50798220899316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10112,my_sewer,2012-08-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10113,my_land,2012-08-18,7.1371184507696155,percolation,0.0,0.0,0.0006925777207011455,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 -10114,my_land,2012-08-18,0.17013881426324,subsurface_runoff,0.0,0.0,1.2600850687956206e-05,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 -10115,my_land,2012-08-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.51071429,0.0,0.0,0.0 -10116,my_groundwater,2012-08-18,24.739600601973113,tank,0.0,0.0,0.003528625052989005,0.0,0.0,0.0,0.0,0.0,11.196885988723809,0.0,0.0,0.0 -10117,my_reservoir,2012-08-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10118,gw1,2012-08-18,262.49207100573346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10119,gw2,2012-08-18,262.50792899426654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10120,my_sewer,2012-08-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10121,my_land,2012-08-19,6.994376081754223,percolation,0.0,0.0,0.0006787261662871226,0.0,0.0,0.0,0.0,0.0,14.11354821448573,0.0,0.0,0.0 -10122,my_land,2012-08-19,0.13611105141059202,subsurface_runoff,0.0,0.0,1.0080680550364965e-05,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 -10123,my_land,2012-08-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.76785714,0.0,0.0,0.0 -10124,my_groundwater,2012-08-19,24.82013711356103,tank,0.0,0.0,0.0035336204158845207,0.0,0.0,0.0,0.0,0.0,11.213617985232673,0.0,0.0,0.0 -10125,my_reservoir,2012-08-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10126,gw1,2012-08-19,262.49212386569525,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10127,gw2,2012-08-19,262.50787613430475,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10128,my_sewer,2012-08-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10129,my_land,2012-08-20,6.8544885601191385,percolation,0.0,0.0,0.0006651516429613801,0.0,0.0,0.0,0.0,0.0,14.113548214485732,0.0,0.0,0.0 -10130,my_land,2012-08-20,0.1088888411284736,subsurface_runoff,0.0,0.0,8.064544440291972e-06,0.0,0.0,0.0,0.0,0.0,16.017709345510973,0.0,0.0,0.0 -10131,my_land,2012-08-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.76785714,0.0,0.0,0.0 -10132,my_groundwater,2012-08-20,24.897624573608127,tank,0.0,0.0,0.0035383269518622375,0.0,0.0,0.0,0.0,0.0,11.229870535404952,0.0,0.0,0.0 -10133,my_reservoir,2012-08-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10134,gw1,2012-08-20,262.4921763732573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10135,gw2,2012-08-20,262.5078236267427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10136,my_sewer,2012-08-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10137,my_land,2012-08-21,6.81787107616894,percolation,0.0,0.0,0.000659541344685186,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 -10138,my_land,2012-08-21,0.11445047079452983,subsurface_runoff,0.0,0.0,8.544896663263113e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 -10139,my_land,2012-08-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.025,0.0,0.0,0.0 -10140,my_groundwater,2012-08-21,24.97417288765326,tank,0.0,0.0,0.0035429075118565303,0.0,0.0,0.0,0.0,0.0,11.24611307324296,0.0,0.0,0.0 -10141,my_reservoir,2012-08-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10142,gw1,2012-08-21,262.4922285307689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10143,gw2,2012-08-21,262.5077714692311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10144,my_sewer,2012-08-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10145,my_land,2012-08-22,6.681513654645561,percolation,0.0,0.0,0.0006463505177914823,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 -10146,my_land,2012-08-22,0.09156037663562386,subsurface_runoff,0.0,0.0,6.83591733061049e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 -10147,my_land,2012-08-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.72857143,0.0,0.0,0.0 -10148,my_groundwater,2012-08-22,25.047753983403698,tank,0.0,0.0,0.0035472080929033587,0.0,0.0,0.0,0.0,0.0,11.261895798344716,0.0,0.0,0.0 -10149,my_reservoir,2012-08-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10150,gw1,2012-08-22,262.49228034056375,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10151,gw2,2012-08-22,262.50771965943625,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10152,my_sewer,2012-08-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.287687188326597,0.0,0.0,0.0 -10153,my_land,2012-08-23,6.54788338155265,percolation,0.0,0.0,0.0006334235074356527,0.0,0.0,0.0,0.0,0.0,14.152537913207494,0.0,0.0,0.0 -10154,my_land,2012-08-23,0.07324830130849909,subsurface_runoff,0.0,0.0,5.4687338644883914e-06,0.0,0.0,0.0,0.0,0.0,16.194861851994563,0.0,0.0,0.0 -10155,my_land,2012-08-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.72857143,0.0,0.0,0.0 -10156,my_groundwater,2012-08-23,25.118430795855367,tank,0.0,0.0,0.0035512347655010405,0.0,0.0,0.0,0.0,0.0,11.277235594254597,0.0,0.0,0.0 -10157,my_reservoir,2012-08-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10158,gw1,2012-08-23,262.49233180496,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10159,gw2,2012-08-23,262.50766819504,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10160,my_sewer,2012-08-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 -10161,my_land,2012-08-24,6.610270767051015,percolation,0.0,0.0,0.00063576162287622,0.0,0.0,0.0,0.0,0.0,14.21892881986854,0.0,0.0,0.0 -10162,my_land,2012-08-24,0.11120953985752528,subsurface_runoff,0.0,0.0,8.458411741735014e-06,0.0,0.0,0.0,0.0,0.0,16.302493784608153,0.0,0.0,0.0 -10163,my_land,2012-08-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.13571429,0.0,0.0,0.0 -10164,my_groundwater,2012-08-24,25.19020094519498,tank,0.0,0.0,0.003555298968767268,0.0,0.0,0.0,0.0,0.0,11.292950139654627,0.0,0.0,0.0 -10165,my_reservoir,2012-08-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10166,gw1,2012-08-24,262.49238292626023,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10167,gw2,2012-08-24,262.50761707373977,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10168,my_sewer,2012-08-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -10169,my_land,2012-08-25,6.882346914175661,percolation,0.0,0.0,0.0006532434678404109,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 -10170,my_land,2012-08-25,0.1989762203120519,subsurface_runoff,0.0,0.0,1.4983621208820738e-05,0.0,0.0,0.0,0.0,0.0,16.237970634833662,0.0,0.0,0.0 -10171,my_land,2012-08-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -10172,my_groundwater,2012-08-25,25.267330362156283,tank,0.0,0.0,0.0035597088919406723,0.0,0.0,0.0,0.0,0.0,11.309815051431732,0.0,0.0,0.0 -10173,my_reservoir,2012-08-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10174,gw1,2012-08-25,262.49243370675185,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10175,gw2,2012-08-25,262.50756629324815,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10176,my_sewer,2012-08-26,8.673617379884035e-19,sewer_tank,0.0,0.0,2.117582368135751e-22,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -10177,my_land,2012-08-26,6.744699975892147,percolation,0.0,0.0,0.0006401785984836027,0.0,0.0,0.0,0.0,0.0,14.334465737078837,0.0,0.0,0.0 -10178,my_land,2012-08-26,0.1591809762496415,subsurface_runoff,0.0,0.0,1.198689696705659e-05,0.0,0.0,0.0,0.0,0.0,16.237970634833662,0.0,0.0,0.0 -10179,my_land,2012-08-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.83928571,0.0,0.0,0.0 -10180,my_groundwater,2012-08-26,25.341464857188697,tank,0.0,0.0,0.0035638418268942366,0.0,0.0,0.0,0.0,0.0,11.326202938786755,0.0,0.0,0.0 -10181,my_reservoir,2012-08-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10182,gw1,2012-08-26,262.49248414870686,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10183,gw2,2012-08-26,262.50751585129314,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10184,my_sewer,2012-08-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 -10185,my_land,2012-08-27,7.16862213306228,percolation,0.0,0.0,0.0006676229471852984,0.0,0.0,0.0,0.0,0.0,14.439340603064899,0.0,0.0,0.0 -10186,my_land,2012-08-27,0.2794035991461013,subsurface_runoff,0.0,0.0,2.0541332722316772e-05,0.0,0.0,0.0,0.0,0.0,15.934212837096025,0.0,0.0,0.0 -10187,my_land,2012-08-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.24642857,0.0,0.0,0.0 -10188,my_groundwater,2012-08-27,25.42404385989735,tank,0.0,0.0,0.003568523118037559,0.0,0.0,0.0,0.0,0.0,11.344072184053228,0.0,0.0,0.0 -10189,my_reservoir,2012-08-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10190,gw1,2012-08-27,262.4925342543822,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10191,gw2,2012-08-27,262.5074657456178,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10192,my_sewer,2012-08-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.189055298387093,0.0,0.0,0.0 -10193,my_land,2012-08-28,7.210471249741689,percolation,0.0,0.0,0.0006675542511169243,0.0,0.0,0.0,0.0,0.0,14.464068389091073,0.0,0.0,0.0 -10194,my_land,2012-08-28,0.2739233036272629,subsurface_runoff,0.0,0.0,2.0047695531685248e-05,0.0,0.0,0.0,0.0,0.0,15.836282275879011,0.0,0.0,0.0 -10195,my_land,2012-08-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.95,0.0,0.0,0.0 -10196,my_groundwater,2012-08-28,25.50726834354592,tank,0.0,0.0,0.0035731913074973456,0.0,0.0,0.0,0.0,0.0,11.362026571323577,0.0,0.0,0.0 -10197,my_reservoir,2012-08-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10198,gw1,2012-08-28,262.49258402601964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10199,gw2,2012-08-28,262.50741597398036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10200,my_sewer,2012-08-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 -10201,my_land,2012-08-29,7.857641736367832,percolation,0.0,0.0,0.0007072756617939458,0.0,0.0,0.0,0.0,0.0,14.537819147680773,0.0,0.0,0.0 -10202,my_land,2012-08-29,0.4344801154517359,subsurface_runoff,0.0,0.0,3.0479651853745448e-05,0.0,0.0,0.0,0.0,0.0,15.51910879891563,0.0,0.0,0.0 -10203,my_land,2012-08-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.93928571,0.0,0.0,0.0 -10204,my_groundwater,2012-08-29,25.603459308034545,tank,0.0,0.0,0.003578656440915122,0.0,0.0,0.0,0.0,0.0,11.38186752439345,0.0,0.0,0.0 -10205,my_reservoir,2012-08-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10206,gw1,2012-08-29,262.49263346584615,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10207,gw2,2012-08-29,262.50736653415385,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10208,my_sewer,2012-08-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792366,0.0,0.0,0.0 -10209,my_land,2012-08-30,7.7979653895394785,percolation,0.0,0.0,0.0006997065375288611,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10210,my_land,2012-08-30,0.37410830675567525,subsurface_runoff,0.0,0.0,2.617321508049139e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10211,my_land,2012-08-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.92857143,0.0,0.0,0.0 -10212,my_groundwater,2012-08-30,25.69819495519437,tank,0.0,0.0,0.003583953825755386,0.0,0.0,0.0,0.0,0.0,11.401406572028234,0.0,0.0,0.0 -10213,my_reservoir,2012-08-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10214,gw1,2012-08-30,262.49268257607383,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10215,gw2,2012-08-30,262.50731742392617,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10216,my_sewer,2012-08-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10217,my_land,2012-08-31,7.642006081748689,percolation,0.0,0.0,0.0006857124067782839,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10218,my_land,2012-08-31,0.2992866454045402,subsurface_runoff,0.0,0.0,2.093857206439311e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -10219,my_land,2012-08-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.92857143,0.0,0.0,0.0 -10220,my_groundwater,2012-08-31,25.789518877327698,tank,0.0,0.0,0.0035889530866146982,0.0,0.0,0.0,0.0,0.0,11.420369167432721,0.0,0.0,0.0 -10221,my_reservoir,2012-08-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10222,gw1,2012-08-31,262.4927313589,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10223,gw2,2012-08-31,262.5072686411,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10224,my_sewer,2012-09-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10225,my_land,2012-09-01,7.4891659601137155,percolation,0.0,0.0,0.0006719981586427183,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10226,my_land,2012-09-01,0.23942931632363218,subsurface_runoff,0.0,0.0,1.675085765151449e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -10227,my_land,2012-09-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.90714286,0.0,0.0,0.0 -10228,my_groundwater,2012-09-01,25.877503101465265,tank,0.0,0.0,0.0035936606664133883,0.0,0.0,0.0,0.0,0.0,11.438777608396355,0.0,0.0,0.0 -10229,my_reservoir,2012-09-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10230,gw1,2012-09-01,262.4927798165073,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10231,gw2,2012-09-01,262.5072201834927,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10232,my_sewer,2012-09-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10233,my_land,2012-09-02,7.339382640911441,percolation,0.0,0.0,0.0006585581954698639,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10234,my_land,2012-09-02,0.19154345305890574,subsurface_runoff,0.0,0.0,1.340068612121159e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -10235,my_land,2012-09-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10236,my_groundwater,2012-09-02,25.962218204615873,tank,0.0,0.0,0.0035980828780122773,0.0,0.0,0.0,0.0,0.0,11.45665307691426,0.0,0.0,0.0 -10237,my_reservoir,2012-09-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10238,gw1,2012-09-02,262.49282795106393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10239,gw2,2012-09-02,262.50717204893607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10240,my_sewer,2012-09-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10241,my_land,2012-09-03,7.192594988093212,percolation,0.0,0.0,0.0006453870315604666,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10242,my_land,2012-09-03,0.15323476244712458,subsurface_runoff,0.0,0.0,1.0720548896969273e-05,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -10243,my_land,2012-09-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10244,my_groundwater,2012-09-03,26.043733342790517,tank,0.0,0.0,0.0036022259068168704,0.0,0.0,0.0,0.0,0.0,11.47401570820889,0.0,0.0,0.0 -10245,my_reservoir,2012-09-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10246,gw1,2012-09-03,262.4928757647235,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10247,gw2,2012-09-03,262.5071242352765,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10248,my_sewer,2012-09-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10249,my_land,2012-09-04,7.048743088331348,percolation,0.0,0.0,0.0006324792909292573,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10250,my_land,2012-09-04,0.12258780995769966,subsurface_runoff,0.0,0.0,8.576439117575418e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -10251,my_land,2012-09-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10252,my_groundwater,2012-09-04,26.122116279446,tank,0.0,0.0,0.00360609581332946,0.0,0.0,0.0,0.0,0.0,11.490884654686404,0.0,0.0,0.0 -10253,my_reservoir,2012-09-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10254,gw1,2012-09-04,262.49292325962534,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10255,gw2,2012-09-04,262.50707674037466,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10256,my_sewer,2012-09-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10257,my_land,2012-09-05,6.907768226564722,percolation,0.0,0.0,0.0006198297051106721,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10258,my_land,2012-09-05,0.09807024796615973,subsurface_runoff,0.0,0.0,6.861151294060334e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -10259,my_land,2012-09-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10260,my_groundwater,2012-09-05,26.197433413359594,tank,0.0,0.0,0.003609698535650175,0.0,0.0,0.0,0.0,0.0,11.507278145256214,0.0,0.0,0.0 -10261,my_reservoir,2012-09-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10262,gw1,2012-09-05,262.4929704378945,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10263,gw2,2012-09-05,262.5070295621055,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10264,my_sewer,2012-09-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10265,my_land,2012-09-06,6.769612862033427,percolation,0.0,0.0,0.0006074331110084587,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10266,my_land,2012-09-06,0.07845619837292779,subsurface_runoff,0.0,0.0,5.488921035248267e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614374,0.0,0.0,0.0 -10267,my_land,2012-09-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10268,my_groundwater,2012-09-06,26.26974980594616,tank,0.0,0.0,0.0036130398919280078,0.0,0.0,0.0,0.0,0.0,11.523213540401246,0.0,0.0,0.0 -10269,my_reservoir,2012-09-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10270,gw1,2012-09-06,262.4930173016418,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10271,gw2,2012-09-06,262.5069826983582,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10272,my_sewer,2012-09-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10273,my_land,2012-09-07,6.634220604792759,percolation,0.0,0.0,0.0005952844487882896,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10274,my_land,2012-09-07,0.06276495869834223,subsurface_runoff,0.0,0.0,4.3911368281986135e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -10275,my_land,2012-09-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10276,my_groundwater,2012-09-07,26.339129208028858,tank,0.0,0.0,0.0036161255827628067,0.0,0.0,0.0,0.0,0.0,11.538707383349864,0.0,0.0,0.0 -10277,my_reservoir,2012-09-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10278,gw1,2012-09-07,262.4930638529642,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10279,gw2,2012-09-07,262.5069361470358,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10280,my_sewer,2012-09-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10281,my_land,2012-09-08,6.5015361926969035,percolation,0.0,0.0,0.0005833787598125238,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10282,my_land,2012-09-08,0.05021196695867378,subsurface_runoff,0.0,0.0,3.5129094625588906e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -10283,my_land,2012-09-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10284,my_groundwater,2012-09-08,26.4056340860744,tank,0.0,0.0,0.003618961193559226,0.0,0.0,0.0,0.0,0.0,11.55377544766767,0.0,0.0,0.0 -10285,my_reservoir,2012-09-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10286,gw1,2012-09-08,262.49311009394444,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10287,gw2,2012-09-08,262.50688990605556,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10288,my_sewer,2012-09-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10289,my_land,2012-09-09,6.371505468842965,percolation,0.0,0.0,0.0005717111846162734,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10290,my_land,2012-09-09,0.040169573566939024,subsurface_runoff,0.0,0.0,2.8103275700471127e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10291,my_land,2012-09-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10292,my_groundwater,2012-09-09,26.469325647903517,tank,0.0,0.0,0.0036215521968335877,0.0,0.0,0.0,0.0,0.0,11.568432781558034,0.0,0.0,0.0 -10293,my_reservoir,2012-09-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10294,gw1,2012-09-09,262.4931560266515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10295,gw2,2012-09-09,262.5068439733485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10296,my_sewer,2012-09-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10297,my_land,2012-09-10,6.244075359466106,percolation,0.0,0.0,0.0005602769609239479,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10298,my_land,2012-09-10,0.03213565885355122,subsurface_runoff,0.0,0.0,2.24826205603769e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10299,my_land,2012-09-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10300,my_groundwater,2012-09-10,26.530263867887175,tank,0.0,0.0,0.0036239039544745982,0.0,0.0,0.0,0.0,0.0,11.58269374913393,0.0,0.0,0.0 -10301,my_reservoir,2012-09-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10302,gw1,2012-09-10,262.4932016531405,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10303,gw2,2012-09-10,262.5067983468595,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10304,my_sewer,2012-09-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10305,my_land,2012-09-11,6.119193852276784,percolation,0.0,0.0,0.000549071421705469,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10306,my_land,2012-09-11,0.025708527082840976,subsurface_runoff,0.0,0.0,1.7986096448301523e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10307,my_land,2012-09-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10308,my_groundwater,2012-09-11,26.588507511638806,tank,0.0,0.0,0.003626021719958845,0.0,0.0,0.0,0.0,0.0,11.596572068899919,0.0,0.0,0.0 -10309,my_reservoir,2012-09-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10310,gw1,2012-09-11,262.4932469754529,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10311,gw2,2012-09-11,262.5067530245471,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10312,my_sewer,2012-09-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10313,my_land,2012-09-12,5.9968099752312485,percolation,0.0,0.0,0.0005380899932713596,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10314,my_land,2012-09-12,0.02056682166627278,subsurface_runoff,0.0,0.0,1.4388877158641217e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10315,my_land,2012-09-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10316,my_groundwater,2012-09-12,26.64411416021263,tank,0.0,0.0,0.003627910640521972,0.0,0.0,0.0,0.0,0.0,11.610080849661864,0.0,0.0,0.0 -10317,my_reservoir,2012-09-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10318,gw1,2012-09-12,262.4932919956166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10319,gw2,2012-09-12,262.5067080043834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10320,my_sewer,2012-09-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10321,my_land,2012-09-13,5.876873775726623,percolation,0.0,0.0,0.0005273281934059324,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10322,my_land,2012-09-13,0.016453457333018222,subsurface_runoff,0.0,0.0,1.1511101726912974e-06,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10323,my_land,2012-09-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10324,my_groundwater,2012-09-13,26.69714023381796,tank,0.0,0.0,0.0036295757592864305,0.0,0.0,0.0,0.0,0.0,11.62323262406282,0.0,0.0,0.0 -10325,my_reservoir,2012-09-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10326,gw1,2012-09-13,262.4933367156458,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10327,gw2,2012-09-13,262.5066632843542,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10328,my_sewer,2012-09-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10329,my_land,2012-09-14,5.759336300212091,percolation,0.0,0.0,0.0005167816295378138,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10330,my_land,2012-09-14,0.013162765866414577,subsurface_runoff,0.0,0.0,9.20888138153038e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10331,my_land,2012-09-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10332,my_groundwater,2012-09-14,26.747641015059163,tank,0.0,0.0,0.0036310220173466625,0.0,0.0,0.0,0.0,0.0,11.636039379926158,0.0,0.0,0.0 -10333,my_reservoir,2012-09-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10334,gw1,2012-09-14,262.4933811375415,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10335,gw2,2012-09-14,262.5066188624585,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10336,my_sewer,2012-09-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10337,my_land,2012-09-15,5.644149574207849,percolation,0.0,0.0,0.0005064459969470576,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10338,my_land,2012-09-15,0.010530212693131662,subsurface_runoff,0.0,0.0,7.367105105224304e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10339,my_land,2012-09-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10340,my_groundwater,2012-09-15,26.79567067171075,tank,0.0,0.0,0.0036322542558125752,0.0,0.0,0.0,0.0,0.0,11.648512589571437,0.0,0.0,0.0 -10341,my_reservoir,2012-09-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10342,gw1,2012-09-15,262.4934252632912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10343,gw2,2012-09-15,262.5065747367088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10344,my_sewer,2012-09-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10345,my_land,2012-09-16,5.531266582723692,percolation,0.0,0.0,0.0004963170770081164,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10346,my_land,2012-09-16,0.00842417015450533,subsurface_runoff,0.0,0.0,5.893684084179444e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10347,my_land,2012-09-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10348,my_groundwater,2012-09-16,26.841282279036918,tank,0.0,0.0,0.0036332772178121375,0.0,0.0,0.0,0.0,0.0,11.660663237254399,0.0,0.0,0.0 -10349,my_reservoir,2012-09-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10350,gw1,2012-09-16,262.4934690948693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10351,gw2,2012-09-16,262.5065309051307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10352,my_sewer,2012-09-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10353,my_land,2012-09-17,5.420641251069219,percolation,0.0,0.0,0.00048639073546795407,0.0,0.0,0.0,0.0,0.0,14.54493082690558,0.0,0.0,0.0 -10354,my_land,2012-09-17,0.006739336123604264,subsurface_runoff,0.0,0.0,4.714947267343555e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10355,my_land,2012-09-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10356,my_groundwater,2012-09-17,26.884527841664664,tank,0.0,0.0,0.0036340955504539194,0.0,0.0,0.0,0.0,0.0,11.672501844869647,0.0,0.0,0.0 -10357,my_reservoir,2012-09-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10358,gw1,2012-09-17,262.4935126342368,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10359,gw2,2012-09-17,262.5064873657632,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10360,my_sewer,2012-09-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10361,my_land,2012-09-18,5.3122284260478345,percolation,0.0,0.0,0.000476662920758595,0.0,0.0,0.0,0.0,0.0,14.544930826905581,0.0,0.0,0.0 -10362,my_land,2012-09-18,0.005391468898883411,subsurface_runoff,0.0,0.0,3.771957813874844e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10363,my_land,2012-09-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10364,my_groundwater,2012-09-18,26.925458315019334,tank,0.0,0.0,0.0036347138067503704,0.0,0.0,0.0,0.0,0.0,11.684038496043046,0.0,0.0,0.0 -10365,my_reservoir,2012-09-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10366,gw1,2012-09-18,262.4935558833419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10367,gw2,2012-09-18,262.5064441166581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10368,my_sewer,2012-09-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10369,my_land,2012-09-19,5.205983857526878,percolation,0.0,0.0,0.0004671296623434231,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -10370,my_land,2012-09-19,0.004313175119106729,subsurface_runoff,0.0,0.0,3.017566251099875e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10371,my_land,2012-09-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10372,my_groundwater,2012-09-19,26.96412362633144,tank,0.0,0.0,0.0036351364475026285,0.0,0.0,0.0,0.0,0.0,11.695282858730328,0.0,0.0,0.0 -10373,my_reservoir,2012-09-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10374,gw1,2012-09-19,262.4935988441196,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10375,gw2,2012-09-19,262.5064011558804,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10376,my_sewer,2012-09-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10377,my_land,2012-09-20,5.1018641803763405,percolation,0.0,0.0,0.0004577870690965546,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -10378,my_land,2012-09-20,0.003450540095285383,subsurface_runoff,0.0,0.0,2.4140530008799e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10379,my_land,2012-09-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10380,my_groundwater,2012-09-20,27.000572695223273,tank,0.0,0.0,0.0036353678431476234,0.0,0.0,0.0,0.0,0.0,11.706244206428902,0.0,0.0,0.0 -10381,my_reservoir,2012-09-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10382,gw1,2012-09-20,262.49364151849215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10383,gw2,2012-09-20,262.50635848150785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10384,my_sewer,2012-09-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10385,my_land,2012-09-21,4.9998268967688135,percolation,0.0,0.0,0.0004486313277146235,0.0,0.0,0.0,0.0,0.0,14.544930826905585,0.0,0.0,0.0 -10386,my_land,2012-09-21,0.0027604320762283064,subsurface_runoff,0.0,0.0,1.9312424007039198e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10387,my_land,2012-09-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10388,my_groundwater,2012-09-21,27.034853453883724,tank,0.0,0.0,0.0036354122755682303,0.0,0.0,0.0,0.0,0.0,11.716931438101154,0.0,0.0,0.0 -10389,my_reservoir,2012-09-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10390,gw1,2012-09-21,262.4936839083689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10391,gw2,2012-09-21,262.5063160916311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10392,my_sewer,2012-09-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.977982406792364,0.0,0.0,0.0 -10393,my_land,2012-09-22,4.899830358833437,percolation,0.0,0.0,0.000439658701160331,0.0,0.0,0.0,0.0,0.0,14.544930826905585,0.0,0.0,0.0 -10394,my_land,2012-09-22,0.002208345660982645,subsurface_runoff,0.0,0.0,1.544993920563136e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614378,0.0,0.0,0.0 -10395,my_land,2012-09-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10396,my_groundwater,2012-09-22,27.06701286683955,tank,0.0,0.0,0.0036352739398672162,0.0,0.0,0.0,0.0,0.0,11.727353096899677,0.0,0.0,0.0 -10397,my_reservoir,2012-09-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10398,gw1,2012-09-22,262.4937260156464,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10399,gw2,2012-09-22,262.5062739843536,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10400,my_sewer,2012-09-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.09583333,0.0,0.0,0.0 -10401,my_land,2012-09-23,4.801833751656768,percolation,0.0,0.0,0.0004308655271371244,0.0,0.0,0.0,0.0,0.0,14.544930826905583,0.0,0.0,0.0 -10402,my_land,2012-09-23,0.001766676528786116,subsurface_runoff,0.0,0.0,1.2359951364505088e-07,0.0,0.0,0.0,0.0,0.0,15.489872083614376,0.0,0.0,0.0 -10403,my_land,2012-09-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.89642857,0.0,0.0,0.0 -10404,my_groundwater,2012-09-23,27.097096950331178,tank,0.0,0.0,0.0036349569461056968,0.0,0.0,0.0,0.0,0.0,11.737517387777663,0.0,0.0,0.0 -10405,my_reservoir,2012-09-23,0.06799999999999998,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10406,gw1,2012-09-23,262.4937678422088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10407,gw2,2012-09-23,262.5062321577912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10408,my_sewer,2012-09-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.041642922165243,0.0,0.0,0.0 -10409,my_land,2012-09-24,5.229232043031802,percolation,0.0,0.0,0.00046002292728515305,0.0,0.0,0.0,0.0,0.0,14.273659488076007,0.0,0.0,0.0 -10410,my_land,2012-09-24,0.14384462459940117,subsurface_runoff,0.0,0.0,1.03777124519422e-05,0.0,0.0,0.0,0.0,0.0,11.870781778382353,0.0,0.0,0.0 -10411,my_land,2012-09-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.75,0.0,0.0,0.0 -10412,my_groundwater,2012-09-24,27.135806431688497,tank,0.0,0.0,0.0036352343061887373,0.0,0.0,0.0,0.0,0.0,11.747466528849243,0.0,0.0,0.0 -10413,my_reservoir,2012-09-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10414,gw1,2012-09-24,262.4938093899274,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10415,gw2,2012-09-24,262.5061906100726,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10416,my_sewer,2012-09-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.036747264430693,0.0,0.0,0.0 -10417,my_land,2012-09-25,5.320014085031343,percolation,0.0,0.0,0.00046489967409773635,0.0,0.0,0.0,0.0,0.0,14.173444353367161,0.0,0.0,0.0 -10418,my_land,2012-09-25,0.16823670181834477,subsurface_runoff,0.0,0.0,1.2132702031835766e-05,0.0,0.0,0.0,0.0,0.0,11.767746384183463,0.0,0.0,0.0 -10419,my_land,2012-09-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.84642857,0.0,0.0,0.0 -10420,my_groundwater,2012-09-25,27.17626720234027,tank,0.0,0.0,0.0036356102495031122,0.0,0.0,0.0,0.0,0.0,11.757134305959402,0.0,0.0,0.0 -10421,my_reservoir,2012-09-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10422,gw1,2012-09-25,262.4938506606612,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10423,gw2,2012-09-25,262.5061493393388,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10424,my_sewer,2012-09-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -10425,my_land,2012-09-26,6.00874606560487,percolation,0.0,0.0,0.0005102739624778366,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 -10426,my_land,2012-09-26,0.3509518818013842,subsurface_runoff,0.0,0.0,2.4582973016503974e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 -10427,my_land,2012-09-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.94285714,0.0,0.0,0.0 -10428,my_groundwater,2012-09-26,27.230647436384235,tank,0.0,0.0,0.0036369089438297963,0.0,0.0,0.0,0.0,0.0,11.766457146410339,0.0,0.0,0.0 -10429,my_reservoir,2012-09-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10430,gw1,2012-09-26,262.49389165625684,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10431,gw2,2012-09-26,262.50610834374316,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10432,my_sewer,2012-09-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -10433,my_land,2012-09-27,5.888571144292773,percolation,0.0,0.0,0.0005000684832282799,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 -10434,my_land,2012-09-27,0.28076150544110734,subsurface_runoff,0.0,0.0,1.966637841320318e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 -10435,my_land,2012-09-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.03928571,0.0,0.0,0.0 -10436,my_groundwater,2012-09-27,27.282445301802092,tank,0.0,0.0,0.0036379966370216547,0.0,0.0,0.0,0.0,0.0,11.775535220914595,0.0,0.0,0.0 -10437,my_reservoir,2012-09-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10438,gw1,2012-09-27,262.49393237854844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10439,gw2,2012-09-27,262.50606762145156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10440,my_sewer,2012-09-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -10441,my_land,2012-09-28,5.7707997214069175,percolation,0.0,0.0,0.0004900671135637143,0.0,0.0,0.0,0.0,0.0,13.832552138651147,0.0,0.0,0.0 -10442,my_land,2012-09-28,0.22460920435288587,subsurface_runoff,0.0,0.0,1.573310273056254e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 -10443,my_land,2012-09-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.13571429,0.0,0.0,0.0 -10444,my_groundwater,2012-09-28,27.331716182876228,tank,0.0,0.0,0.0036388780116695047,0.0,0.0,0.0,0.0,0.0,11.784376676868622,0.0,0.0,0.0 -10445,my_reservoir,2012-09-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10446,gw1,2012-09-28,262.4939728293581,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10447,gw2,2012-09-28,262.5060271706419,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10448,my_sewer,2012-09-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -10449,my_land,2012-09-29,5.655383726978779,percolation,0.0,0.0,0.00048026577129244,0.0,0.0,0.0,0.0,0.0,13.832552138651145,0.0,0.0,0.0 -10450,my_land,2012-09-29,0.17968736348230868,subsurface_runoff,0.0,0.0,1.2586482184450033e-05,0.0,0.0,0.0,0.0,0.0,11.6626974381982,0.0,0.0,0.0 -10451,my_land,2012-09-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.13571429,0.0,0.0,0.0 -10452,my_groundwater,2012-09-29,27.378514346861103,tank,0.0,0.0,0.0036395576555559267,0.0,0.0,0.0,0.0,0.0,11.792989314653797,0.0,0.0,0.0 -10453,my_reservoir,2012-09-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10454,gw1,2012-09-29,262.4940130104957,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10455,gw2,2012-09-29,262.5059869895043,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10456,my_sewer,2012-09-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -10457,my_land,2012-09-30,5.653575190955209,percolation,0.0,0.0,0.00047865300091570165,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 -10458,my_land,2012-09-30,0.1740353706541478,subsurface_runoff,0.0,0.0,1.2244027937794178e-05,0.0,0.0,0.0,0.0,0.0,11.704472371951853,0.0,0.0,0.0 -10459,my_land,2012-09-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.32857143,0.0,0.0,0.0 -10460,my_groundwater,2012-09-30,27.425158698809824,tank,0.0,0.0,0.003640202768935678,0.0,0.0,0.0,0.0,0.0,11.801388981146047,0.0,0.0,0.0 -10461,my_reservoir,2012-09-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10462,gw1,2012-09-30,262.49405292375906,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10463,gw2,2012-09-30,262.50594707624094,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10464,my_sewer,2012-10-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.013085946209554,0.0,0.0,0.0 -10465,my_land,2012-10-01,5.540503687136105,percolation,0.0,0.0,0.00046907994089738763,0.0,0.0,0.0,0.0,0.0,13.794561214321455,0.0,0.0,0.0 -10466,my_land,2012-10-01,0.13922829652331822,subsurface_runoff,0.0,0.0,9.795222350235343e-06,0.0,0.0,0.0,0.0,0.0,11.704472371951853,0.0,0.0,0.0 -10467,my_land,2012-10-01,7.118174013486916e-19,surface_runoff,0.0,0.0,4.344588631278635e-23,0.0,0.0,0.0,0.0,0.0,11.778386761031697,0.0,0.0,0.0 -10468,my_groundwater,2012-10-01,27.469384627122356,tank,0.0,0.0,0.003640651389381607,0.0,0.0,0.0,0.0,0.0,11.809572912361572,0.0,0.0,0.0 -10469,my_reservoir,2012-10-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10470,gw1,2012-10-01,262.494092570934,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10471,gw2,2012-10-01,262.505907429066,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10472,my_sewer,2012-10-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.080718091036292,0.0,0.0,0.0 -10473,my_land,2012-10-02,5.776812644452794,percolation,0.0,0.0,0.0004845212938810295,0.0,0.0,0.0,0.0,0.0,13.690947055920006,0.0,0.0,0.0 -10474,my_land,2012-10-02,0.20583679533005905,subsurface_runoff,0.0,0.0,1.4590722588103802e-05,0.0,0.0,0.0,0.0,0.0,11.87229575220988,0.0,0.0,0.0 -10475,my_land,2012-10-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.225000000000001,0.0,0.0,0.0 -10476,my_groundwater,2012-10-02,27.518310565816623,tank,0.0,0.0,0.003641413230105017,0.0,0.0,0.0,0.0,0.0,11.8176129579313,0.0,0.0,0.0 -10477,my_reservoir,2012-10-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10478,gw1,2012-10-02,262.49413195379447,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10479,gw2,2012-10-02,262.50586804620553,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10480,my_sewer,2012-10-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.069246719352348,0.0,0.0,0.0 -10481,my_land,2012-10-03,5.896802473341691,percolation,0.0,0.0,0.0004915918108332201,0.0,0.0,0.0,0.0,0.0,13.62056431542778,0.0,0.0,0.0 -10482,my_land,2012-10-03,0.22875816599954463,subsurface_runoff,0.0,0.0,1.6233378840499697e-05,0.0,0.0,0.0,0.0,0.0,11.888124127313011,0.0,0.0,0.0 -10483,my_land,2012-10-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.025,0.0,0.0,0.0 -10484,my_groundwater,2012-10-03,27.569556839752252,tank,0.0,0.0,0.003642317101750288,0.0,0.0,0.0,0.0,0.0,11.82546328279845,0.0,0.0,0.0 -10485,my_reservoir,2012-10-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10486,gw1,2012-10-03,262.4941710741025,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10487,gw2,2012-10-03,262.5058289258975,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10488,my_sewer,2012-10-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.871841836588121,0.0,0.0,0.0 -10489,my_land,2012-10-04,6.732044662046371,percolation,0.0,0.0,0.0005455622626340529,0.0,0.0,0.0,0.0,0.0,13.357728837564117,0.0,0.0,0.0 -10490,my_land,2012-10-04,0.44237476087351696,subsurface_runoff,0.0,0.0,3.0347869879881986e-05,0.0,0.0,0.0,0.0,0.0,11.815482243639705,0.0,0.0,0.0 -10491,my_land,2012-10-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.825,0.0,0.0,0.0 -10492,my_groundwater,2012-10-04,27.637678142558816,tank,0.0,0.0,0.0036443173979138197,0.0,0.0,0.0,0.0,0.0,11.833061230445043,0.0,0.0,0.0 -10493,my_reservoir,2012-10-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10494,gw1,2012-10-04,262.4942099336085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10495,gw2,2012-10-04,262.5057900663915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10496,my_sewer,2012-10-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -10497,my_land,2012-10-05,7.643815885123612,percolation,0.0,0.0,0.0006000621388419467,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 -10498,my_land,2012-10-05,0.6386377995336895,subsurface_runoff,0.0,0.0,4.207724051902798e-05,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 -10499,my_land,2012-10-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.625,0.0,0.0,0.0 -10500,my_groundwater,2012-10-05,27.724190199149575,tank,0.0,0.0,0.0036474221551026035,0.0,0.0,0.0,0.0,0.0,11.840261908122194,0.0,0.0,0.0 -10501,my_reservoir,2012-10-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10502,gw1,2012-10-05,262.4942485340511,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10503,gw2,2012-10-05,262.5057514659489,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10504,my_sewer,2012-10-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -10505,my_land,2012-10-06,7.490939567421139,percolation,0.0,0.0,0.0005880608960651077,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 -10506,my_land,2012-10-06,0.5109102396269516,subsurface_runoff,0.0,0.0,3.366179241522238e-05,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 -10507,my_land,2012-10-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.625,0.0,0.0,0.0 -10508,my_groundwater,2012-10-06,27.807373850559916,tank,0.0,0.0,0.003650274839384744,0.0,0.0,0.0,0.0,0.0,11.847257974644851,0.0,0.0,0.0 -10509,my_reservoir,2012-10-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10510,gw1,2012-10-06,262.49428687715744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10511,gw2,2012-10-06,262.50571312284256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10512,my_sewer,2012-10-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833363,0.0,0.0,0.0 -10513,my_land,2012-10-07,7.341120776072716,percolation,0.0,0.0,0.0005762996781438055,0.0,0.0,0.0,0.0,0.0,13.115997841191827,0.0,0.0,0.0 -10514,my_land,2012-10-07,0.40872819170156127,subsurface_runoff,0.0,0.0,2.6929433932177906e-05,0.0,0.0,0.0,0.0,0.0,11.715813596678114,0.0,0.0,0.0 -10515,my_land,2012-10-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.225,0.0,0.0,0.0 -10516,my_groundwater,2012-10-07,27.88729966030357,tank,0.0,0.0,0.0036528809671627807,0.0,0.0,0.0,0.0,0.0,11.85405697895749,0.0,0.0,0.0 -10517,my_reservoir,2012-10-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10518,gw1,2012-10-07,262.49432496464306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10519,gw2,2012-10-07,262.50567503535694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10520,my_sewer,2012-10-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -10521,my_land,2012-10-08,7.282864774011727,percolation,0.0,0.0,0.0005704973829964806,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 -10522,my_land,2012-10-08,0.3510822577042325,subsurface_runoff,0.0,0.0,2.3101016102354863e-05,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 -10523,my_land,2012-10-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.024999999999999,0.0,0.0,0.0 -10524,my_groundwater,2012-10-08,27.965839729766618,tank,0.0,0.0,0.003655362461470159,0.0,0.0,0.0,0.0,0.0,11.860615421700048,0.0,0.0,0.0 -10525,my_reservoir,2012-10-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10526,gw1,2012-10-08,262.4943627982121,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10527,gw2,2012-10-08,262.5056372017879,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10528,my_sewer,2012-10-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -10529,my_land,2012-10-09,7.137207478531492,percolation,0.0,0.0,0.000559087435336551,0.0,0.0,0.0,0.0,0.0,13.091170419404728,0.0,0.0,0.0 -10530,my_land,2012-10-09,0.280865806163386,subsurface_runoff,0.0,0.0,1.848081288188389e-05,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 -10531,my_land,2012-10-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.024999999999999,0.0,0.0,0.0 -10532,my_groundwater,2012-10-09,28.041218282683733,tank,0.0,0.0,0.0036576054781072634,0.0,0.0,0.0,0.0,0.0,11.866991436209144,0.0,0.0,0.0 -10533,my_reservoir,2012-10-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10534,gw1,2012-10-09,262.4944003795573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10535,gw2,2012-10-09,262.5055996204427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10536,my_sewer,2012-10-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.734937960833362,0.0,0.0,0.0 -10537,my_land,2012-10-10,6.994463328960862,percolation,0.0,0.0,0.00054790568662982,0.0,0.0,0.0,0.0,0.0,13.091170419404726,0.0,0.0,0.0 -10538,my_land,2012-10-10,0.2246926449307088,subsurface_runoff,0.0,0.0,1.4784650305507112e-05,0.0,0.0,0.0,0.0,0.0,11.671786114875735,0.0,0.0,0.0 -10539,my_land,2012-10-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.74375,0.0,0.0,0.0 -10540,my_groundwater,2012-10-10,28.113502526173725,tank,0.0,0.0,0.0036596152587469594,0.0,0.0,0.0,0.0,0.0,11.87319157177555,0.0,0.0,0.0 -10541,my_reservoir,2012-10-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10542,gw1,2012-10-10,262.4944377103603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10543,gw2,2012-10-10,262.5055622896397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10544,my_sewer,2012-10-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -10545,my_land,2012-10-11,7.456464650910729,percolation,0.0,0.0,0.0005755675273590139,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 -10546,my_land,2012-10-11,0.34353386792527035,subsurface_runoff,0.0,0.0,2.23365513904711e-05,0.0,0.0,0.0,0.0,0.0,11.18584432471923,0.0,0.0,0.0 -10547,my_land,2012-10-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -10548,my_groundwater,2012-10-11,28.195011085966115,tank,0.0,0.0,0.003662183130978472,0.0,0.0,0.0,0.0,0.0,11.878688977951288,0.0,0.0,0.0 -10549,my_reservoir,2012-10-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10550,gw1,2012-10-11,262.4944747922912,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10551,gw2,2012-10-11,262.5055252077088,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10552,my_sewer,2012-10-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -10553,my_land,2012-10-12,7.307335357892515,percolation,0.0,0.0,0.0005640561768118337,0.0,0.0,0.0,0.0,0.0,12.894319861028926,0.0,0.0,0.0 -10554,my_land,2012-10-12,0.2748270943402163,subsurface_runoff,0.0,0.0,1.786924111237688e-05,0.0,0.0,0.0,0.0,0.0,11.18584432471923,0.0,0.0,0.0 -10555,my_land,2012-10-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.4625,0.0,0.0,0.0 -10556,my_groundwater,2012-10-12,28.273280028036872,tank,0.0,0.0,0.003664510245321838,0.0,0.0,0.0,0.0,0.0,11.88403259795654,0.0,0.0,0.0 -10557,my_reservoir,2012-10-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10558,gw1,2012-10-12,262.4945116270093,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10559,gw2,2012-10-12,262.5054883729907,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10560,my_sewer,2012-10-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -10561,my_land,2012-10-13,7.2390060376796725,percolation,0.0,0.0,0.0005578790271963118,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 -10562,my_land,2012-10-13,0.24103647464088276,subsurface_runoff,0.0,0.0,1.5684229330912327e-05,0.0,0.0,0.0,0.0,0.0,11.11799746448154,0.0,0.0,0.0 -10563,my_land,2012-10-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.321875,0.0,0.0,0.0 -10564,my_groundwater,2012-10-13,28.349962308019546,tank,0.0,0.0,0.003666705792762173,0.0,0.0,0.0,0.0,0.0,11.88914553429037,0.0,0.0,0.0 -10565,my_reservoir,2012-10-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10566,gw1,2012-10-13,262.49454821616257,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10567,gw2,2012-10-13,262.50545178383743,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10568,my_sewer,2012-10-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.603125,0.0,0.0,0.0 -10569,my_land,2012-10-14,7.094225916926079,percolation,0.0,0.0,0.0005467214466523856,0.0,0.0,0.0,0.0,0.0,12.86765204733786,0.0,0.0,0.0 -10570,my_land,2012-10-14,0.19282917971270622,subsurface_runoff,0.0,0.0,1.2547383464729863e-05,0.0,0.0,0.0,0.0,0.0,11.11799746448154,0.0,0.0,0.0 -10571,my_land,2012-10-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.18125,0.0,0.0,0.0 -10572,my_groundwater,2012-10-14,28.423505572701206,tank,0.0,0.0,0.003668668714872834,0.0,0.0,0.0,0.0,0.0,11.894117268689138,0.0,0.0,0.0 -10573,my_reservoir,2012-10-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10574,gw1,2012-10-14,262.49458456138814,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10575,gw2,2012-10-14,262.50541543861186,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10576,my_sewer,2012-10-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 -10577,my_land,2012-10-15,7.189025952989506,percolation,0.0,0.0,0.0005514190594034094,0.0,0.0,0.0,0.0,0.0,12.778851645365535,0.0,0.0,0.0 -10578,my_land,2012-10-15,0.21866730415164773,subsurface_runoff,0.0,0.0,1.4291523556565278e-05,0.0,0.0,0.0,0.0,0.0,10.838913933758187,0.0,0.0,0.0 -10579,my_land,2012-10-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.040625,0.0,0.0,0.0 -10580,my_groundwater,2012-10-15,28.498794837098167,tank,0.0,0.0,0.0036707223596520785,0.0,0.0,0.0,0.0,0.0,11.898660588235153,0.0,0.0,0.0 -10581,my_reservoir,2012-10-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10582,gw1,2012-10-15,262.4946206643122,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10583,gw2,2012-10-15,262.5053793356878,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10584,my_sewer,2012-10-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 -10585,my_land,2012-10-16,7.60123650198429,percolation,0.0,0.0,0.0005757517305352672,0.0,0.0,0.0,0.0,0.0,12.578868314585371,0.0,0.0,0.0 -10586,my_land,2012-10-16,0.32622392986678034,subsurface_runoff,0.0,0.0,2.1055273898293312e-05,0.0,0.0,0.0,0.0,0.0,10.470624236064141,0.0,0.0,0.0 -10587,my_land,2012-10-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.9,0.0,0.0,0.0 -10588,my_groundwater,2012-10-16,28.582287307367245,tank,0.0,0.0,0.003673266213981702,0.0,0.0,0.0,0.0,0.0,11.902343112776903,0.0,0.0,0.0 -10589,my_reservoir,2012-10-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10590,gw1,2012-10-16,262.4946565265501,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10591,gw2,2012-10-16,262.5053434734499,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10592,my_sewer,2012-10-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -10593,my_land,2012-10-17,8.013987317187802,percolation,0.0,0.0,0.0005988204591423216,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -10594,my_land,2012-10-17,0.4146595643677634,subsurface_runoff,0.0,0.0,2.625476693299105e-05,0.0,0.0,0.0,0.0,0.0,10.27463886433559,0.0,0.0,0.0 -10595,my_land,2012-10-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.17142857,0.0,0.0,0.0 -10596,my_groundwater,2012-10-17,28.67397347377015,tank,0.0,0.0,0.0036762733220792876,0.0,0.0,0.0,0.0,0.0,11.905134872870649,0.0,0.0,0.0 -10597,my_reservoir,2012-10-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10598,gw1,2012-10-17,262.49469214970645,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10599,gw2,2012-10-17,262.50530785029355,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10600,my_sewer,2012-10-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -10601,my_land,2012-10-18,7.853707570844046,percolation,0.0,0.0,0.0005868440499594751,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -10602,my_land,2012-10-18,0.33172765149421074,subsurface_runoff,0.0,0.0,2.100381354639284e-05,0.0,0.0,0.0,0.0,0.0,10.274638864335591,0.0,0.0,0.0 -10603,my_land,2012-10-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.44285714,0.0,0.0,0.0 -10604,my_groundwater,2012-10-18,28.762167587063622,tank,0.0,0.0,0.0036790291069339785,0.0,0.0,0.0,0.0,0.0,11.907846890092454,0.0,0.0,0.0 -10605,my_reservoir,2012-10-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10606,gw1,2012-10-18,262.4947275353751,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10607,gw2,2012-10-18,262.5052724646249,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10608,my_sewer,2012-10-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -10609,my_land,2012-10-19,7.696633419427165,percolation,0.0,0.0,0.0005751071689602856,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -10610,my_land,2012-10-19,0.2653821211953686,subsurface_runoff,0.0,0.0,1.680305083711427e-05,0.0,0.0,0.0,0.0,0.0,10.274638864335591,0.0,0.0,0.0 -10611,my_land,2012-10-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71428571,0.0,0.0,0.0 -10612,my_groundwater,2012-10-19,28.846943634134302,tank,0.0,0.0,0.003681539072963335,0.0,0.0,0.0,0.0,0.0,11.91048212598038,0.0,0.0,0.0 -10613,my_reservoir,2012-10-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10614,gw1,2012-10-19,262.4947626851393,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10615,gw2,2012-10-19,262.5052373148607,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10616,my_sewer,2012-10-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.089736476116505,0.0,0.0,0.0 -10617,my_land,2012-10-20,7.542700751038622,percolation,0.0,0.0,0.0005636050255810799,0.0,0.0,0.0,0.0,0.0,12.39302553338563,0.0,0.0,0.0 -10618,my_land,2012-10-20,0.21230569695629486,subsurface_runoff,0.0,0.0,1.3442440669691417e-05,0.0,0.0,0.0,0.0,0.0,10.274638864335591,0.0,0.0,0.0 -10619,my_land,2012-10-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.98571429,0.0,0.0,0.0 -10620,my_groundwater,2012-10-20,28.928374111766537,tank,0.0,0.0,0.0036838086133016844,0.0,0.0,0.0,0.0,0.0,11.91304340011363,0.0,0.0,0.0 -10621,my_reservoir,2012-10-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10622,gw1,2012-10-20,262.4947976005717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10623,gw2,2012-10-20,262.5052023994283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10624,my_sewer,2012-10-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10625,my_land,2012-10-21,7.518442025874311,percolation,0.0,0.0,0.0005604300932245568,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -10626,my_land,2012-10-21,0.2042922554851613,subsurface_runoff,0.0,0.0,1.2957263598364947e-05,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10627,my_land,2012-10-21,1.0459624321817598e-18,surface_runoff,0.0,0.0,6.384048047984374e-23,0.0,0.0,0.0,0.0,0.0,10.50009039116509,0.0,0.0,0.0 -10628,my_groundwater,2012-10-21,29.00910717487099,tank,0.0,0.0,0.0036860078472376444,0.0,0.0,0.0,0.0,0.0,11.915435609786748,0.0,0.0,0.0 -10629,my_reservoir,2012-10-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10630,gw1,2012-10-21,262.49483228323453,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10631,gw2,2012-10-21,262.50516771676547,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10632,my_sewer,2012-10-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10633,my_land,2012-10-22,7.368073185356825,percolation,0.0,0.0,0.0005492214913600656,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -10634,my_land,2012-10-22,0.16343380438812904,subsurface_runoff,0.0,0.0,1.0365810878691958e-05,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10635,my_land,2012-10-22,3.8347162307706296e-19,surface_runoff,0.0,0.0,2.3405250431949643e-23,0.0,0.0,0.0,0.0,0.0,10.429981846726673,0.0,0.0,0.0 -10636,my_groundwater,2012-10-22,29.086577325350007,tank,0.0,0.0,0.00368797340797938,0.0,0.0,0.0,0.0,0.0,11.917761395120284,0.0,0.0,0.0 -10637,my_reservoir,2012-10-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10638,gw1,2012-10-22,262.49486673467965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10639,gw2,2012-10-22,262.50513326532035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10640,my_sewer,2012-10-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10641,my_land,2012-10-23,7.220711721649688,percolation,0.0,0.0,0.0005382370615328643,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -10642,my_land,2012-10-23,0.13074704351050323,subsurface_runoff,0.0,0.0,8.292648702953567e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10643,my_land,2012-10-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8,0.0,0.0,0.0 -10644,my_groundwater,2012-10-23,29.160853942084497,tank,0.0,0.0,0.0036897104432120653,0.0,0.0,0.0,0.0,0.0,11.920023135399736,0.0,0.0,0.0 -10645,my_reservoir,2012-10-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10646,gw1,2012-10-23,262.4949009564485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10647,gw2,2012-10-23,262.5050990435515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10648,my_sewer,2012-10-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10649,my_land,2012-10-24,7.076297487216694,percolation,0.0,0.0,0.000527472320302207,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -10650,my_land,2012-10-24,0.10459763480840259,subsurface_runoff,0.0,0.0,6.634118962362853e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10651,my_land,2012-10-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25833333,0.0,0.0,0.0 -10652,my_groundwater,2012-10-24,29.232005006076196,tank,0.0,0.0,0.003691223996481616,0.0,0.0,0.0,0.0,0.0,11.92222310017976,0.0,0.0,0.0 -10653,my_reservoir,2012-10-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10654,gw1,2012-10-24,262.49493495007215,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10655,gw2,2012-10-24,262.50506504992785,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10656,my_sewer,2012-10-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10657,my_land,2012-10-25,6.93477153747236,percolation,0.0,0.0,0.0005169228738961629,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -10658,my_land,2012-10-25,0.08367810784672207,subsurface_runoff,0.0,0.0,5.307295169890283e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10659,my_land,2012-10-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71666667,0.0,0.0,0.0 -10660,my_groundwater,2012-10-25,29.30009712843098,tank,0.0,0.0,0.0036925190092804406,0.0,0.0,0.0,0.0,0.0,11.924363455545619,0.0,0.0,0.0 -10661,my_reservoir,2012-10-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10662,gw1,2012-10-25,262.4949687170717,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10663,gw2,2012-10-25,262.5050312829283,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10664,my_sewer,2012-10-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10665,my_land,2012-10-26,6.796076106722913,percolation,0.0,0.0,0.0005065844164182395,0.0,0.0,0.0,0.0,0.0,12.366451135455685,0.0,0.0,0.0 -10666,my_land,2012-10-26,0.06694248627737766,subsurface_runoff,0.0,0.0,4.245836135912226e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10667,my_land,2012-10-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71666667,0.0,0.0,0.0 -10668,my_groundwater,2012-10-26,29.365195577782476,tank,0.0,0.0,0.0036936003230914677,0.0,0.0,0.0,0.0,0.0,11.926446269950146,0.0,0.0,0.0 -10669,my_reservoir,2012-10-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10670,gw1,2012-10-26,262.49500225895787,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10671,gw2,2012-10-26,262.50499774104213,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10672,my_sewer,2012-10-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25714286,0.0,0.0,0.0 -10673,my_land,2012-10-27,6.660154584588455,percolation,0.0,0.0,0.0004964527280898747,0.0,0.0,0.0,0.0,0.0,12.366451135455684,0.0,0.0,0.0 -10674,my_land,2012-10-27,0.05355398902190213,subsurface_runoff,0.0,0.0,3.396668908729781e-06,0.0,0.0,0.0,0.0,0.0,10.36571780506069,0.0,0.0,0.0 -10675,my_land,2012-10-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.633333333,0.0,0.0,0.0 -10676,my_groundwater,2012-10-27,29.427364307167142,tank,0.0,0.0,0.003694472681391283,0.0,0.0,0.0,0.0,0.0,11.928473519659487,0.0,0.0,0.0 -10677,my_reservoir,2012-10-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10678,gw1,2012-10-27,262.4950355772315,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10679,gw2,2012-10-27,262.5049644227685,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10680,my_sewer,2012-10-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 -10681,my_land,2012-10-28,6.62697756317632,percolation,0.0,0.0,0.0004934691681756894,0.0,0.0,0.0,0.0,0.0,12.326859058443523,0.0,0.0,0.0 -10682,my_land,2012-10-28,0.07006116952490513,subsurface_runoff,0.0,0.0,4.607265643340888e-06,0.0,0.0,0.0,0.0,0.0,10.1239453527476,0.0,0.0,0.0 -10683,my_land,2012-10-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.091666667,0.0,0.0,0.0 -10684,my_groundwater,2012-10-28,29.488702225363888,tank,0.0,0.0,0.0036952821220399526,0.0,0.0,0.0,0.0,0.0,11.930296072925454,0.0,0.0,0.0 -10685,my_reservoir,2012-10-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10686,gw1,2012-10-28,262.4950686733833,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10687,gw2,2012-10-28,262.5049313266167,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10688,my_sewer,2012-10-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 -10689,my_land,2012-10-29,6.572710742989682,percolation,0.0,0.0,0.0004890487144150779,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 -10690,my_land,2012-10-29,0.07734763795377142,subsurface_runoff,0.0,0.0,5.168514447435251e-06,0.0,0.0,0.0,0.0,0.0,9.892022276811032,0.0,0.0,0.0 -10691,my_land,2012-10-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 -10692,my_groundwater,2012-10-29,29.548782081354197,tank,0.0,0.0,0.0036959995512783027,0.0,0.0,0.0,0.0,0.0,11.931927564347495,0.0,0.0,0.0 -10693,my_reservoir,2012-10-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10694,gw1,2012-10-29,262.49510154889407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10695,gw2,2012-10-29,262.50489845110593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10696,my_sewer,2012-10-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 -10697,my_land,2012-10-30,6.441256528129888,percolation,0.0,0.0,0.0004792677401267764,0.0,0.0,0.0,0.0,0.0,12.290595055409089,0.0,0.0,0.0 -10698,my_land,2012-10-30,0.06187811036301714,subsurface_runoff,0.0,0.0,4.134811557948201e-06,0.0,0.0,0.0,0.0,0.0,9.892022276811032,0.0,0.0,0.0 -10699,my_land,2012-10-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.55,0.0,0.0,0.0 -10700,my_groundwater,2012-10-30,29.606035705473456,tank,0.0,0.0,0.0036965160742526877,0.0,0.0,0.0,0.0,0.0,11.933516108082884,0.0,0.0,0.0 -10701,my_reservoir,2012-10-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10702,gw1,2012-10-30,262.49513420523476,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10703,gw2,2012-10-30,262.50486579476524,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10704,my_sewer,2012-10-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.893749999999999,0.0,0.0,0.0 -10705,my_land,2012-10-31,6.723241165306067,percolation,0.0,0.0,0.0004967531435630436,0.0,0.0,0.0,0.0,0.0,12.057217799977936,0.0,0.0,0.0 -10706,my_land,2012-10-31,0.16128745910368633,subsurface_runoff,0.0,0.0,1.0674041964400121e-05,0.0,0.0,0.0,0.0,0.0,8.907268587938642,0.0,0.0,0.0 -10707,my_land,2012-10-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.89375,0.0,0.0,0.0 -10708,my_groundwater,2012-10-31,29.66888659707493,tank,0.0,0.0,0.0036973872587753036,0.0,0.0,0.0,0.0,0.0,11.93408675819274,0.0,0.0,0.0 -10709,my_reservoir,2012-10-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10710,gw1,2012-10-31,262.4951666438665,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10711,gw2,2012-10-31,262.5048333561335,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10712,my_sewer,2012-11-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 -10713,my_land,2012-11-01,6.780616437195739,percolation,0.0,0.0,0.0004994248037417387,0.0,0.0,0.0,0.0,0.0,11.948686352301085,0.0,0.0,0.0 -10714,my_land,2012-11-01,0.1812313537307839,subsurface_runoff,0.0,0.0,1.1969634401440077e-05,0.0,0.0,0.0,0.0,0.0,8.709643098035373,0.0,0.0,0.0 -10715,my_land,2012-11-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.565625,0.0,0.0,0.0 -10716,my_groundwater,2012-11-01,29.732748358053726,tank,0.0,0.0,0.0036983106527045365,0.0,0.0,0.0,0.0,0.0,11.934154536657749,0.0,0.0,0.0 -10717,my_reservoir,2012-11-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10718,gw1,2012-11-01,262.49519886624074,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10719,gw2,2012-11-01,262.50480113375926,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10720,my_sewer,2012-11-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.854086538461538,0.0,0.0,0.0 -10721,my_land,2012-11-02,6.711564321923619,percolation,0.0,0.0,0.0004938506728995938,0.0,0.0,0.0,0.0,0.0,11.909046559621892,0.0,0.0,0.0 -10722,my_land,2012-11-02,0.16309670569804058,subsurface_runoff,0.0,0.0,1.0776895339571085e-05,0.0,0.0,0.0,0.0,0.0,8.625466824707148,0.0,0.0,0.0 -10723,my_land,2012-11-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.2375,0.0,0.0,0.0 -10724,my_groundwater,2012-11-02,29.795044760854893,tank,0.0,0.0,0.0036991182647710882,0.0,0.0,0.0,0.0,0.0,11.934039401420128,0.0,0.0,0.0 -10725,my_reservoir,2012-11-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10726,gw1,2012-11-02,262.49523087379913,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10727,gw2,2012-11-02,262.50476912620087,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10728,my_sewer,2012-11-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.925948886639676,0.0,0.0,0.0 -10729,my_land,2012-11-03,7.347838702122822,percolation,0.0,0.0,0.0005320250090444815,0.0,0.0,0.0,0.0,0.0,11.459268856510318,0.0,0.0,0.0 -10730,my_land,2012-11-03,0.34013877044623514,subsurface_runoff,0.0,0.0,2.1696713442508454e-05,0.0,0.0,0.0,0.0,0.0,8.005569997319363,0.0,0.0,0.0 -10731,my_land,2012-11-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.909375,0.0,0.0,0.0 -10732,my_groundwater,2012-11-03,29.870138151103113,tank,0.0,0.0,0.003700700978221852,0.0,0.0,0.0,0.0,0.0,11.931661888013934,0.0,0.0,0.0 -10733,my_reservoir,2012-11-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10734,gw1,2012-11-03,262.4952626679738,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10735,gw2,2012-11-03,262.5047373320262,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10736,my_sewer,2012-11-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -10737,my_land,2012-11-04,7.874040756207047,percolation,0.0,0.0,0.0005613984253187527,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -10738,my_land,2012-11-04,0.4552834865955406,subsurface_runoff,0.0,0.0,2.8245511286023317e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -10739,my_land,2012-11-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.58125,0.0,0.0,0.0 -10740,my_groundwater,2012-11-04,29.95575577826243,tank,0.0,0.0,0.0037028776937202863,0.0,0.0,0.0,0.0,0.0,11.927249370948855,0.0,0.0,0.0 -10741,my_reservoir,2012-11-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10742,gw1,2012-11-04,262.4952942501873,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10743,gw2,2012-11-04,262.5047057498127,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10744,my_sewer,2012-11-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -10745,my_land,2012-11-05,7.716559941082906,percolation,0.0,0.0,0.0005501704568123776,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -10746,my_land,2012-11-05,0.3642267892764325,subsurface_runoff,0.0,0.0,2.2596409028818653e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -10747,my_land,2012-11-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.58125,0.0,0.0,0.0 -10748,my_groundwater,2012-11-05,30.037953501903104,tank,0.0,0.0,0.0037048203980710945,0.0,0.0,0.0,0.0,0.0,11.922960013209414,0.0,0.0,0.0 -10749,my_reservoir,2012-11-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10750,gw1,2012-11-05,262.49532562185277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10751,gw2,2012-11-05,262.50467437814723,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10752,my_sewer,2012-11-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -10753,my_land,2012-11-06,7.562228742261248,percolation,0.0,0.0,0.0005391670476761301,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -10754,my_land,2012-11-06,0.291381431421146,subsurface_runoff,0.0,0.0,1.8077127223054923e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -10755,my_land,2012-11-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.925,0.0,0.0,0.0 -10756,my_groundwater,2012-11-06,30.11680398897295,tank,0.0,0.0,0.003706534247689324,0.0,0.0,0.0,0.0,0.0,11.918789373753716,0.0,0.0,0.0 -10757,my_reservoir,2012-11-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10758,gw1,2012-11-06,262.49535678437377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10759,gw2,2012-11-06,262.50464321562623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10760,my_sewer,2012-11-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -10761,my_land,2012-11-07,7.410984167416023,percolation,0.0,0.0,0.0005283837067226075,0.0,0.0,0.0,0.0,0.0,11.107045053746093,0.0,0.0,0.0 -10762,my_land,2012-11-07,0.23310514513691677,subsurface_runoff,0.0,0.0,1.446170177844394e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -10763,my_land,2012-11-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.408333333,0.0,0.0,0.0 -10764,my_groundwater,2012-11-07,30.192378442408632,tank,0.0,0.0,0.0037080242946712395,0.0,0.0,0.0,0.0,0.0,11.914733217827319,0.0,0.0,0.0 -10765,my_reservoir,2012-11-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10766,gw1,2012-11-07,262.49538773914463,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10767,gw2,2012-11-07,262.50461226085537,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10768,my_sewer,2012-11-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.736784863483757,0.0,0.0,0.0 -10769,my_land,2012-11-08,7.262764484067703,percolation,0.0,0.0,0.0005178160325881554,0.0,0.0,0.0,0.0,0.0,11.107045053746091,0.0,0.0,0.0 -10770,my_land,2012-11-08,0.18648411610953342,subsurface_runoff,0.0,0.0,1.1569361422755152e-05,0.0,0.0,0.0,0.0,0.0,7.737493498331132,0.0,0.0,0.0 -10771,my_land,2012-11-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.408333333,0.0,0.0,0.0 -10772,my_groundwater,2012-11-08,30.26474663044256,tank,0.0,0.0,0.0037092954888836775,0.0,0.0,0.0,0.0,0.0,11.910787505108404,0.0,0.0,0.0 -10773,my_reservoir,2012-11-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10774,gw1,2012-11-08,262.49541848755035,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10775,gw2,2012-11-08,262.50458151244965,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10776,my_sewer,2012-11-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 -10777,my_land,2012-11-09,7.224910875273554,percolation,0.0,0.0,0.0005142908366333125,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 -10778,my_land,2012-11-09,0.1784122400678184,subsurface_runoff,0.0,0.0,1.1114298579542932e-05,0.0,0.0,0.0,0.0,0.0,7.6623425151472695,0.0,0.0,0.0 -10779,my_land,2012-11-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 -10780,my_groundwater,2012-11-09,30.33616330668452,tank,0.0,0.0,0.003710491742192932,0.0,0.0,0.0,0.0,0.0,11.906614811915473,0.0,0.0,0.0 -10781,my_reservoir,2012-11-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10782,gw1,2012-11-09,262.4954490309667,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10783,gw2,2012-11-09,262.5045509690333,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10784,my_sewer,2012-11-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 -10785,my_land,2012-11-10,7.080412657768083,percolation,0.0,0.0,0.0005040050199006462,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 -10786,my_land,2012-11-10,0.1427297920542547,subsurface_runoff,0.0,0.0,8.891438863634346e-06,0.0,0.0,0.0,0.0,0.0,7.6623425151472695,0.0,0.0,0.0 -10787,my_land,2012-11-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.858333333,0.0,0.0,0.0 -10788,my_groundwater,2012-11-10,30.404459870379515,tank,0.0,0.0,0.0037114756150282845,0.0,0.0,0.0,0.0,0.0,11.902554539401132,0.0,0.0,0.0 -10789,my_reservoir,2012-11-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10790,gw1,2012-11-10,262.4954793707603,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10791,gw2,2012-11-10,262.5045206292397,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10792,my_sewer,2012-11-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.375,0.0,0.0,0.0 -10793,my_land,2012-11-11,6.938804404612721,percolation,0.0,0.0,0.0004939249195026333,0.0,0.0,0.0,0.0,0.0,11.05013509651048,0.0,0.0,0.0 -10794,my_land,2012-11-11,0.11418383364340376,subsurface_runoff,0.0,0.0,7.1131510909074765e-06,0.0,0.0,0.0,0.0,0.0,7.662342515147269,0.0,0.0,0.0 -10795,my_land,2012-11-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.341666667,0.0,0.0,0.0 -10796,my_groundwater,2012-11-11,30.46970295322604,tank,0.0,0.0,0.0037122518261377318,0.0,0.0,0.0,0.0,0.0,11.89860281547466,0.0,0.0,0.0 -10797,my_reservoir,2012-11-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10798,gw1,2012-11-11,262.49550950828854,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10799,gw2,2012-11-11,262.50449049171146,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10800,my_sewer,2012-11-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10801,my_land,2012-11-12,6.9370752040423875,percolation,0.0,0.0,0.0004929875371954296,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -10802,my_land,2012-11-12,0.12863873698871522,subsurface_runoff,0.0,0.0,8.123477629963771e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 -10803,my_land,2012-11-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10804,my_groundwater,2012-11-12,30.53474772678241,tank,0.0,0.0,0.0037130070142938655,0.0,0.0,0.0,0.0,0.0,11.894447951610742,0.0,0.0,0.0 -10805,my_reservoir,2012-11-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10806,gw1,2012-11-12,262.4955394448999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10807,gw2,2012-11-12,262.5044605551001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10808,my_sewer,2012-11-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10809,my_land,2012-11-13,6.79833369996154,percolation,0.0,0.0,0.000483127786451521,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -10810,my_land,2012-11-13,0.10291098959097218,subsurface_runoff,0.0,0.0,6.498782103971017e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 -10811,my_land,2012-11-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.646428571,0.0,0.0,0.0 -10812,my_groundwater,2012-11-13,30.5968055077861,tank,0.0,0.0,0.0037135595981251796,0.0,0.0,0.0,0.0,0.0,11.89040323672826,0.0,0.0,0.0 -10813,my_reservoir,2012-11-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10814,gw1,2012-11-13,262.49556918193394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10815,gw2,2012-11-13,262.50443081806606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10816,my_sewer,2012-11-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10817,my_land,2012-11-14,6.662367025962309,percolation,0.0,0.0,0.0004734652307224906,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -10818,my_land,2012-11-14,0.08232879167277775,subsurface_runoff,0.0,0.0,5.199025683176814e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770161,0.0,0.0,0.0 -10819,my_land,2012-11-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.467857143,0.0,0.0,0.0 -10820,my_groundwater,2012-11-14,30.65594025133087,tank,0.0,0.0,0.0037139140984695745,0.0,0.0,0.0,0.0,0.0,11.886464956742444,0.0,0.0,0.0 -10821,my_reservoir,2012-11-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10822,gw1,2012-11-14,262.49559872072103,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10823,gw2,2012-11-14,262.50440127927897,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10824,my_sewer,2012-11-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10825,my_land,2012-11-15,6.529119685443063,percolation,0.0,0.0,0.00046399592610804077,0.0,0.0,0.0,0.0,0.0,11.000227298521285,0.0,0.0,0.0 -10826,my_land,2012-11-15,0.0658630333382222,subsurface_runoff,0.0,0.0,4.159220546541451e-06,0.0,0.0,0.0,0.0,0.0,7.912100189770162,0.0,0.0,0.0 -10827,my_land,2012-11-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.467857143,0.0,0.0,0.0 -10828,my_groundwater,2012-11-15,30.71221462287049,tank,0.0,0.0,0.0037140749445763142,0.0,0.0,0.0,0.0,0.0,11.882629558011194,0.0,0.0,0.0 -10829,my_reservoir,2012-11-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10830,gw1,2012-11-15,262.4956280625829,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10831,gw2,2012-11-15,262.5043719374171,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10832,my_sewer,2012-11-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10833,my_land,2012-11-16,6.4342267841873335,percolation,0.0,0.0,0.0004571706465919759,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -10834,my_land,2012-11-16,0.06240185318843676,subsurface_runoff,0.0,0.0,3.995305418483758e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -10835,my_land,2012-11-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 -10836,my_groundwater,2012-11-16,30.76641656013427,tank,0.0,0.0,0.0037140964453776385,0.0,0.0,0.0,0.0,0.0,11.878815108957399,0.0,0.0,0.0 -10837,my_reservoir,2012-11-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10838,gw1,2012-11-16,262.49565720883237,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10839,gw2,2012-11-16,262.50434279116763,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10840,my_sewer,2012-11-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10841,my_land,2012-11-17,6.305542248503587,percolation,0.0,0.0,0.00044802723366013636,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -10842,my_land,2012-11-17,0.04992148255074941,subsurface_runoff,0.0,0.0,3.1962443347870064e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -10843,my_land,2012-11-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 -10844,my_groundwater,2012-11-17,30.81786334307847,tank,0.0,0.0,0.003713931758663704,0.0,0.0,0.0,0.0,0.0,11.87509907727678,0.0,0.0,0.0 -10845,my_reservoir,2012-11-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10846,gw1,2012-11-17,262.49568616077346,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10847,gw2,2012-11-17,262.50431383922654,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10848,my_sewer,2012-11-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.825,0.0,0.0,0.0 -10849,my_land,2012-11-18,6.179431403533515,percolation,0.0,0.0,0.00043906668898693364,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -10850,my_land,2012-11-18,0.03993718604059952,subsurface_runoff,0.0,0.0,2.5569954678296053e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -10851,my_land,2012-11-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 -10852,my_groundwater,2012-11-18,30.866614252578422,tank,0.0,0.0,0.003713585072578565,0.0,0.0,0.0,0.0,0.0,11.87147826249769,0.0,0.0,0.0 -10853,my_reservoir,2012-11-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10854,gw1,2012-11-18,262.49571491970164,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10855,gw2,2012-11-18,262.50428508029836,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10856,my_sewer,2012-11-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.575,0.0,0.0,0.0 -10857,my_land,2012-11-19,6.055842775462845,percolation,0.0,0.0,0.00043028535520719496,0.0,0.0,0.0,0.0,0.0,10.986655271429207,0.0,0.0,0.0 -10858,my_land,2012-11-19,0.03194974883247962,subsurface_runoff,0.0,0.0,2.045596374263684e-06,0.0,0.0,0.0,0.0,0.0,8.011906177843972,0.0,0.0,0.0 -10859,my_land,2012-11-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.110714286,0.0,0.0,0.0 -10860,my_groundwater,2012-11-19,30.91272737344747,tank,0.0,0.0,0.0037130604903424075,0.0,0.0,0.0,0.0,0.0,11.867949597003864,0.0,0.0,0.0 -10861,my_reservoir,2012-11-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10862,gw1,2012-11-19,262.4957434869036,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10863,gw2,2012-11-19,262.5042565130964,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10864,my_sewer,2012-11-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 -10865,my_land,2012-11-20,6.705286329696699,percolation,0.0,0.0,0.0004701224809989962,0.0,0.0,0.0,0.0,0.0,10.632623365112318,0.0,0.0,0.0 -10866,my_land,2012-11-20,0.23523610103689818,subsurface_runoff,0.0,0.0,1.4818200336402806e-05,0.0,0.0,0.0,0.0,0.0,7.917444508037916,0.0,0.0,0.0 -10867,my_land,2012-11-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.614285714,0.0,0.0,0.0 -10868,my_groundwater,2012-11-20,30.971946026725536,tank,0.0,0.0,0.0037133481896226023,0.0,0.0,0.0,0.0,0.0,11.862505230891852,0.0,0.0,0.0 -10869,my_reservoir,2012-11-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10870,gw1,2012-11-20,262.4957718636576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10871,gw2,2012-11-20,262.5042281363424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10872,my_sewer,2012-11-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.634651218431439,0.0,0.0,0.0 -10873,my_land,2012-11-21,7.716801631793732,percolation,0.0,0.0,0.0005270344142012968,0.0,0.0,0.0,0.0,0.0,10.23034394828577,0.0,0.0,0.0 -10874,my_land,2012-11-21,0.4999224940787612,subsurface_runoff,0.0,0.0,2.9899290288790425e-05,0.0,0.0,0.0,0.0,0.0,7.920849408690841,0.0,0.0,0.0 -10875,my_land,2012-11-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.653571429,0.0,0.0,0.0 -10876,my_groundwater,2012-11-21,31.05160819487738,tank,0.0,0.0,0.0037147937340090724,0.0,0.0,0.0,0.0,0.0,11.8542480246043,0.0,0.0,0.0 -10877,my_reservoir,2012-11-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10878,gw1,2012-11-21,262.4958000512332,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10879,gw2,2012-11-21,262.5041999487668,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10880,my_sewer,2012-11-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 -10881,my_land,2012-11-22,8.703381606608673,percolation,0.0,0.0,0.0005773888755528423,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 -10882,my_land,2012-11-22,0.7103913306237748,subsurface_runoff,0.0,0.0,4.048954097540555e-05,0.0,0.0,0.0,0.0,0.0,7.935916269355516,0.0,0.0,0.0 -10883,my_land,2012-11-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.692857143000001,0.0,0.0,0.0 -10884,my_groundwater,2012-11-22,31.15115515709615,tank,0.0,0.0,0.0037172607374978037,0.0,0.0,0.0,0.0,0.0,11.843315656648786,0.0,0.0,0.0 -10885,my_reservoir,2012-11-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10886,gw1,2012-11-22,262.49582805089165,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10887,gw2,2012-11-22,262.50417194910835,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10888,my_sewer,2012-11-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.656355122507851,0.0,0.0,0.0 -10889,my_land,2012-11-23,8.5293139744765,percolation,0.0,0.0,0.0005658410980417855,0.0,0.0,0.0,0.0,0.0,9.932114532155346,0.0,0.0,0.0 -10890,my_land,2012-11-23,0.5683130644990199,subsurface_runoff,0.0,0.0,3.239163278032444e-05,0.0,0.0,0.0,0.0,0.0,7.935916269355516,0.0,0.0,0.0 -10891,my_land,2012-11-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.732142857,0.0,0.0,0.0 -10892,my_groundwater,2012-11-23,31.246909732255254,tank,0.0,0.0,0.0037194864937213387,0.0,0.0,0.0,0.0,0.0,11.832695516562078,0.0,0.0,0.0 -10893,my_reservoir,2012-11-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10894,gw1,2012-11-23,262.4958558638857,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10895,gw2,2012-11-23,262.5041441361143,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10896,my_sewer,2012-11-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.708278507803088,0.0,0.0,0.0 -10897,my_land,2012-11-24,10.162387603195784,percolation,0.0,0.0,0.0006399586580666357,0.0,0.0,0.0,0.0,0.0,9.591433476967335,0.0,0.0,0.0 -10898,my_land,2012-11-24,0.9454422633567159,subsurface_runoff,0.0,0.0,4.916075710471831e-05,0.0,0.0,0.0,0.0,0.0,7.975729143411609,0.0,0.0,0.0 -10899,my_land,2012-11-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.7714285709999995,0.0,0.0,0.0 -10900,my_groundwater,2012-11-24,31.37566963413253,tank,0.0,0.0,0.0037232155073119635,0.0,0.0,0.0,0.0,0.0,11.817917633976618,0.0,0.0,0.0 -10901,my_reservoir,2012-11-24,0.0295,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10902,gw1,2012-11-24,262.4958834914598,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10903,gw2,2012-11-24,262.5041165085402,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10904,my_sewer,2012-11-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.712684347725538,0.0,0.0,0.0 -10905,my_land,2012-11-25,10.249172485497798,percolation,0.0,0.0,0.0006408078995202258,0.0,0.0,0.0,0.0,0.0,9.548520006563194,0.0,0.0,0.0 -10906,my_land,2012-11-25,0.8352742554107955,subsurface_runoff,0.0,0.0,4.3042460000760436e-05,0.0,0.0,0.0,0.0,0.0,7.985104669781824,0.0,0.0,0.0 -10907,my_land,2012-11-25,2.5107801108827394e-18,surface_runoff,0.0,0.0,1.5324585637712033e-22,0.0,0.0,0.0,0.0,0.0,7.969329248180333,0.0,0.0,0.0 -10908,my_groundwater,2012-11-25,31.505874328501978,tank,0.0,0.0,0.0037269524864982024,0.0,0.0,0.0,0.0,0.0,11.802888820774717,0.0,0.0,0.0 -10909,my_reservoir,2012-11-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10910,gw1,2012-11-25,262.49591093485003,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10911,gw2,2012-11-25,262.50408906514997,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10912,my_sewer,2012-11-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -10913,my_land,2012-11-26,10.193816418437544,percolation,0.0,0.0,0.0006350732142963792,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -10914,my_land,2012-11-26,0.708934338382977,subsurface_runoff,0.0,0.0,3.63608993656581e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -10915,my_land,2012-11-26,1.5822772154752515e-18,surface_runoff,0.0,0.0,9.65745370773469e-23,0.0,0.0,0.0,0.0,0.0,7.984461710833754,0.0,0.0,0.0 -10916,my_groundwater,2012-11-26,31.634626619770344,tank,0.0,0.0,0.0037305633814301332,0.0,0.0,0.0,0.0,0.0,11.787962615877008,0.0,0.0,0.0 -10917,my_reservoir,2012-11-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10918,gw1,2012-11-26,262.49593819528434,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10919,gw2,2012-11-26,262.50406180471566,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10920,my_sewer,2012-11-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -10921,my_land,2012-11-27,9.989940090068794,percolation,0.0,0.0,0.0006223717500104517,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -10922,my_land,2012-11-27,0.5671474707063816,subsurface_runoff,0.0,0.0,2.908871949252648e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -10923,my_land,2012-11-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 -10924,my_groundwater,2012-11-27,31.758906690768747,tank,0.0,0.0,0.003733906683601771,0.0,0.0,0.0,0.0,0.0,11.773487755870393,0.0,0.0,0.0 -10925,my_reservoir,2012-11-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10926,gw1,2012-11-27,262.49596527398245,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10927,gw2,2012-11-27,262.50403472601755,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10928,my_sewer,2012-11-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -10929,my_land,2012-11-28,9.790141288267417,percolation,0.0,0.0,0.0006099243150102427,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -10930,my_land,2012-11-28,0.45371797656510526,subsurface_runoff,0.0,0.0,2.3270975594021183e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -10931,my_land,2012-11-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 -10932,my_groundwater,2012-11-28,31.878808728838695,tank,0.0,0.0,0.0037369882333054753,0.0,0.0,0.0,0.0,0.0,11.7594462404544,0.0,0.0,0.0 -10933,my_reservoir,2012-11-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10934,gw1,2012-11-28,262.4959921721559,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10935,gw2,2012-11-28,262.5040078278441,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10936,my_sewer,2012-11-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -10937,my_land,2012-11-29,9.59433846250207,percolation,0.0,0.0,0.0005977258287100378,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -10938,my_land,2012-11-29,0.3629743812520842,subsurface_runoff,0.0,0.0,1.8616780475216945e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -10939,my_land,2012-11-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 -10940,my_groundwater,2012-11-29,31.994425025717536,tank,0.0,0.0,0.0037398137528066658,0.0,0.0,0.0,0.0,0.0,11.745820999394452,0.0,0.0,0.0 -10941,my_reservoir,2012-11-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10942,gw1,2012-11-29,262.4960188910082,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10943,gw2,2012-11-29,262.5039811089918,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10944,my_sewer,2012-11-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -10945,my_land,2012-11-30,9.402451693252027,percolation,0.0,0.0,0.000585771312135837,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -10946,my_land,2012-11-30,0.29037950500166737,subsurface_runoff,0.0,0.0,1.4893424380173557e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808098,0.0,0.0,0.0 -10947,my_land,2012-11-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 -10948,my_groundwater,2012-11-30,32.10584601548016,tank,0.0,0.0,0.0037423888487074144,0.0,0.0,0.0,0.0,0.0,11.732595833141378,0.0,0.0,0.0 -10949,my_reservoir,2012-11-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10950,gw1,2012-11-30,262.4960454317348,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10951,gw2,2012-11-30,262.5039545682652,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10952,my_sewer,2012-12-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713475032863394,0.0,0.0,0.0 -10953,my_land,2012-12-01,9.214402659386987,percolation,0.0,0.0,0.0005740558858931203,0.0,0.0,0.0,0.0,0.0,9.527485018100306,0.0,0.0,0.0 -10954,my_land,2012-12-01,0.2323036040013339,subsurface_runoff,0.0,0.0,1.1914739504138845e-05,0.0,0.0,0.0,0.0,0.0,7.992590441808099,0.0,0.0,0.0 -10955,my_land,2012-12-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.515625,0.0,0.0,0.0 -10956,my_groundwater,2012-12-01,32.213160311721836,tank,0.0,0.0,0.0037447190142627556,0.0,0.0,0.0,0.0,0.0,11.719755357946292,0.0,0.0,0.0 -10957,my_reservoir,2012-12-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10958,gw1,2012-12-01,262.4960717955232,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10959,gw2,2012-12-01,262.5039282044768,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10960,my_sewer,2012-12-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -10961,my_land,2012-12-02,9.46100603938118,percolation,0.0,0.0,0.0005842539625252791,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -10962,my_land,2012-12-02,0.30309225277438245,subsurface_runoff,0.0,0.0,1.5430892106718186e-05,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 -10963,my_land,2012-12-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.84375,0.0,0.0,0.0 -10964,my_groundwater,2012-12-02,32.3252264624585,tank,0.0,0.0,0.0037472509581070778,0.0,0.0,0.0,0.0,0.0,11.705932982175138,0.0,0.0,0.0 -10965,my_reservoir,2012-12-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10966,gw1,2012-12-02,262.49609798355306,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10967,gw2,2012-12-02,262.50390201644694,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10968,my_sewer,2012-12-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -10969,my_land,2012-12-03,9.271785918593556,percolation,0.0,0.0,0.0005725688832747735,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -10970,my_land,2012-12-03,0.24247380221950599,subsurface_runoff,0.0,0.0,1.2344713685374549e-05,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 -10971,my_land,2012-12-03,1.7852336469999989e-19,surface_runoff,0.0,0.0,1.0896201458740227e-23,0.0,0.0,0.0,0.0,0.0,7.450974765096014,0.0,0.0,0.0 -10972,my_groundwater,2012-12-03,32.43316046678801,tank,0.0,0.0,0.0037495386972641893,0.0,0.0,0.0,0.0,0.0,11.69251257357751,0.0,0.0,0.0 -10973,my_reservoir,2012-12-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10974,gw1,2012-12-03,262.49612399699606,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10975,gw2,2012-12-03,262.50387600300394,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10976,my_sewer,2012-12-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -10977,my_land,2012-12-04,9.086350200221686,percolation,0.0,0.0,0.000561117505609278,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -10978,my_land,2012-12-04,0.1939790417756048,subsurface_runoff,0.0,0.0,9.875770948299638e-06,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 -10979,my_land,2012-12-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.175000000000001,0.0,0.0,0.0 -10980,my_groundwater,2012-12-04,32.53704969469698,tank,0.0,0.0,0.0037515875997423606,0.0,0.0,0.0,0.0,0.0,11.679478861464917,0.0,0.0,0.0 -10981,my_reservoir,2012-12-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10982,gw1,2012-12-04,262.4961498370161,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10983,gw2,2012-12-04,262.5038501629839,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10984,my_sewer,2012-12-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.230965346963164,0.0,0.0,0.0 -10985,my_land,2012-12-05,8.904623196217251,percolation,0.0,0.0,0.0005498951554970925,0.0,0.0,0.0,0.0,0.0,9.399850750240105,0.0,0.0,0.0 -10986,my_land,2012-12-05,0.15518323342048385,subsurface_runoff,0.0,0.0,7.90061675863971e-06,0.0,0.0,0.0,0.0,0.0,7.502247239135037,0.0,0.0,0.0 -10987,my_land,2012-12-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.175000000000001,0.0,0.0,0.0 -10988,my_groundwater,2012-12-05,32.636979756954666,tank,0.0,0.0,0.00375340292497991,0.0,0.0,0.0,0.0,0.0,11.66681732491934,0.0,0.0,0.0 -10989,my_reservoir,2012-12-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10990,gw1,2012-12-05,262.4961755047693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10991,gw2,2012-12-05,262.5038244952307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10992,my_sewer,2012-12-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -10993,my_land,2012-12-06,9.005185671331137,percolation,0.0,0.0,0.000553380548328355,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -10994,my_land,2012-12-06,0.199971059944069,subsurface_runoff,0.0,0.0,1.0261526316082992e-05,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -10995,my_land,2012-12-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.960714286,0.0,0.0,0.0 -10996,my_groundwater,2012-12-06,32.738707158728666,tank,0.0,0.0,0.0037552846645441443,0.0,0.0,0.0,0.0,0.0,11.653493714973619,0.0,0.0,0.0 -10997,my_reservoir,2012-12-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10998,gw1,2012-12-06,262.4962010014042,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -10999,gw2,2012-12-06,262.5037989985958,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11000,my_sewer,2012-12-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11001,my_land,2012-12-07,8.825081957904514,percolation,0.0,0.0,0.0005423129373617879,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11002,my_land,2012-12-07,0.15997684795525519,subsurface_runoff,0.0,0.0,8.209221052866393e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11003,my_land,2012-12-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.853571429,0.0,0.0,0.0 -11004,my_groundwater,2012-12-07,32.8365138449749,tank,0.0,0.0,0.003756936394821935,0.0,0.0,0.0,0.0,0.0,11.640548364609012,0.0,0.0,0.0 -11005,my_reservoir,2012-12-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11006,gw1,2012-12-07,262.4962263280615,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11007,gw2,2012-12-07,262.5037736719385,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11008,my_sewer,2012-12-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11009,my_land,2012-12-08,8.648580318746424,percolation,0.0,0.0,0.0005314666786145521,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11010,my_land,2012-12-08,0.12798147836420415,subsurface_runoff,0.0,0.0,6.567376842293114e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11011,my_land,2012-12-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.853571429,0.0,0.0,0.0 -11012,my_groundwater,2012-12-08,32.93048294542266,tank,0.0,0.0,0.0037583631969352474,0.0,0.0,0.0,0.0,0.0,11.627967334131487,0.0,0.0,0.0 -11013,my_reservoir,2012-12-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11014,gw1,2012-12-08,262.4962514858744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11015,gw2,2012-12-08,262.5037485141256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11016,my_sewer,2012-12-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11017,my_land,2012-12-09,8.475608712371496,percolation,0.0,0.0,0.000520837345042261,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11018,my_land,2012-12-09,0.10238518269136332,subsurface_runoff,0.0,0.0,5.253901473834491e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11019,my_land,2012-12-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639285714,0.0,0.0,0.0 -11020,my_groundwater,2012-12-09,33.020695915418095,tank,0.0,0.0,0.0037595700491812696,0.0,0.0,0.0,0.0,0.0,11.615737346557331,0.0,0.0,0.0 -11021,my_reservoir,2012-12-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11022,gw1,2012-12-09,262.49627647596856,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11023,gw2,2012-12-09,262.50372352403144,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11024,my_sewer,2012-12-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11025,my_land,2012-12-10,8.306096538124066,percolation,0.0,0.0,0.0005104205981414159,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11026,my_land,2012-12-10,0.08190814615309065,subsurface_runoff,0.0,0.0,4.203121179067593e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11027,my_land,2012-12-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639285714,0.0,0.0,0.0 -11028,my_groundwater,2012-12-10,33.10723256944136,tank,0.0,0.0,0.003760561829091909,0.0,0.0,0.0,0.0,0.0,11.603845748643195,0.0,0.0,0.0 -11029,my_reservoir,2012-12-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11030,gw1,2012-12-10,262.4963012994621,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11031,gw2,2012-12-10,262.5036987005379,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11032,my_sewer,2012-12-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11033,my_land,2012-12-11,8.139974607361586,percolation,0.0,0.0,0.0005002121861785876,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11034,my_land,2012-12-11,0.06552651692247252,subsurface_runoff,0.0,0.0,3.3624969432540743e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11035,my_land,2012-12-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.425,0.0,0.0,0.0 -11036,my_groundwater,2012-12-11,33.190171113953326,tank,0.0,0.0,0.0037613433154521005,0.0,0.0,0.0,0.0,0.0,11.592280474637073,0.0,0.0,0.0 -11037,my_reservoir,2012-12-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11038,gw1,2012-12-11,262.49632595746573,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11039,gw2,2012-12-11,262.50367404253427,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11040,my_sewer,2012-12-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11041,my_land,2012-12-12,7.9771751152143535,percolation,0.0,0.0,0.0004902079424550158,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11042,my_land,2012-12-12,0.05242121353797802,subsurface_runoff,0.0,0.0,2.6899975546032593e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11043,my_land,2012-12-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.425,0.0,0.0,0.0 -11044,my_groundwater,2012-12-12,33.269588179585305,tank,0.0,0.0,0.003761919190277733,0.0,0.0,0.0,0.0,0.0,11.581030012531118,0.0,0.0,0.0 -11045,my_reservoir,2012-12-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11046,gw1,2012-12-12,262.4963504510826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11047,gw2,2012-12-12,262.5036495489174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11048,my_sewer,2012-12-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.110581706487836,0.0,0.0,0.0 -11049,my_land,2012-12-13,7.817631612910066,percolation,0.0,0.0,0.0004804037836059155,0.0,0.0,0.0,0.0,0.0,9.287381810790773,0.0,0.0,0.0 -11050,my_land,2012-12-13,0.04193697083038241,subsurface_runoff,0.0,0.0,2.1519980436826074e-06,0.0,0.0,0.0,0.0,0.0,6.843611674121709,0.0,0.0,0.0 -11051,my_land,2012-12-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.916666667,0.0,0.0,0.0 -11052,my_groundwater,2012-12-13,33.34555885268487,tank,0.0,0.0,0.0037622940407540167,0.0,0.0,0.0,0.0,0.0,11.570083372617109,0.0,0.0,0.0 -11053,my_reservoir,2012-12-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11054,gw1,2012-12-13,262.49637478140875,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11055,gw2,2012-12-13,262.50362521859125,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11056,my_sewer,2012-12-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -11057,my_land,2012-12-14,7.725434362975496,percolation,0.0,0.0,0.00047426039313792413,0.0,0.0,0.0,0.0,0.0,9.256532837769155,0.0,0.0,0.0 -11058,my_land,2012-12-14,0.05100682355509004,subsurface_runoff,0.0,0.0,2.6643699190622583e-06,0.0,0.0,0.0,0.0,0.0,6.40861207151349,0.0,0.0,0.0 -11059,my_land,2012-12-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -11060,my_groundwater,2012-12-14,33.41946272651373,tank,0.0,0.0,0.003762542892226725,0.0,0.0,0.0,0.0,0.0,11.559196095984396,0.0,0.0,0.0 -11061,my_reservoir,2012-12-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11062,gw1,2012-12-14,262.4963989495327,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11063,gw2,2012-12-14,262.5036010504673,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11064,my_sewer,2012-12-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1625,0.0,0.0,0.0 -11065,my_land,2012-12-15,7.699121314453923,percolation,0.0,0.0,0.0004717420728969624,0.0,0.0,0.0,0.0,0.0,9.199253044001107,0.0,0.0,0.0 -11066,my_land,2012-12-15,0.07568862584759242,subsurface_runoff,0.0,0.0,4.027247669072046e-06,0.0,0.0,0.0,0.0,0.0,6.135696365005686,0.0,0.0,0.0 -11067,my_land,2012-12-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.408333333,0.0,0.0,0.0 -11068,my_groundwater,2012-12-15,33.492646182170255,tank,0.0,0.0,0.0037627398557658464,0.0,0.0,0.0,0.0,0.0,11.548152511734855,0.0,0.0,0.0 -11069,my_reservoir,2012-12-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11070,gw1,2012-12-15,262.4964229565358,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11071,gw2,2012-12-15,262.5035770434642,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11072,my_sewer,2012-12-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -11073,my_land,2012-12-16,7.912398885051923,percolation,0.0,0.0,0.00048198093582014383,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 -11074,my_land,2012-12-16,0.1604855937085715,subsurface_runoff,0.0,0.0,8.575187082501366e-06,0.0,0.0,0.0,0.0,0.0,6.065971808381955,0.0,0.0,0.0 -11075,my_land,2012-12-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.654166667,0.0,0.0,0.0 -11076,my_groundwater,2012-12-16,33.56998840116053,tank,0.0,0.0,0.0037631447608913416,0.0,0.0,0.0,0.0,0.0,11.536174919110506,0.0,0.0,0.0 -11077,my_reservoir,2012-12-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11078,gw1,2012-12-16,262.49644680349223,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11079,gw2,2012-12-16,262.50355319650777,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11080,my_sewer,2012-12-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -11081,my_land,2012-12-17,7.754150907350884,percolation,0.0,0.0,0.000472341317103741,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 -11082,my_land,2012-12-17,0.12838847496685718,subsurface_runoff,0.0,0.0,6.860149666001093e-06,0.0,0.0,0.0,0.0,0.0,6.065971808381955,0.0,0.0,0.0 -11083,my_land,2012-12-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9,0.0,0.0,0.0 -11084,my_groundwater,2012-12-17,33.643915787914416,tank,0.0,0.0,0.003763352418658725,0.0,0.0,0.0,0.0,0.0,11.524518868019431,0.0,0.0,0.0 -11085,my_reservoir,2012-12-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11086,gw1,2012-12-17,262.4964704914689,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11087,gw2,2012-12-17,262.5035295085311,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11088,my_sewer,2012-12-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.345567376010639,0.0,0.0,0.0 -11089,my_land,2012-12-18,7.599067889203867,percolation,0.0,0.0,0.00046289449076166616,0.0,0.0,0.0,0.0,0.0,9.051858518008945,0.0,0.0,0.0 -11090,my_land,2012-12-18,0.10271077997348574,subsurface_runoff,0.0,0.0,5.488119732800874e-06,0.0,0.0,0.0,0.0,0.0,6.065971808381955,0.0,0.0,0.0 -11091,my_land,2012-12-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.029761904999999,0.0,0.0,0.0 -11092,my_groundwater,2012-12-18,33.71450130904628,tank,0.0,0.0,0.003763367246888298,0.0,0.0,0.0,0.0,0.0,11.513173335800197,0.0,0.0,0.0 -11093,my_reservoir,2012-12-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11094,gw1,2012-12-18,262.4964940215258,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11095,gw2,2012-12-18,262.5035059784742,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11096,my_sewer,2012-12-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 -11097,my_land,2012-12-19,8.793095103184276,percolation,0.0,0.0,0.0005210096847848379,0.0,0.0,0.0,0.0,0.0,8.666571607648867,0.0,0.0,0.0 -11098,my_land,2012-12-19,0.44842945983307114,subsurface_runoff,0.0,0.0,2.2723307715058423e-05,0.0,0.0,0.0,0.0,0.0,6.448965124565558,0.0,0.0,0.0 -11099,my_land,2012-12-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.15952381,0.0,0.0,0.0 -11100,my_groundwater,2012-12-19,33.80921734894563,tank,0.0,0.0,0.0037645650973541973,0.0,0.0,0.0,0.0,0.0,11.498102054148587,0.0,0.0,0.0 -11101,my_reservoir,2012-12-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11102,gw1,2012-12-19,262.4965173947156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11103,gw2,2012-12-19,262.5034826052844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11104,my_sewer,2012-12-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.175459482421052,0.0,0.0,0.0 -11105,my_land,2012-12-20,8.884040592733776,percolation,0.0,0.0,0.0005238703824384695,0.0,0.0,0.0,0.0,0.0,8.60689508614274,0.0,0.0,0.0 -11106,my_land,2012-12-20,0.43134421864555506,subsurface_runoff,0.0,0.0,2.1792494158258537e-05,0.0,0.0,0.0,0.0,0.0,6.487764991928905,0.0,0.0,0.0 -11107,my_land,2012-12-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.289285714,0.0,0.0,0.0 -11108,my_groundwater,2012-12-20,33.905547989068204,tank,0.0,0.0,0.003765818188824738,0.0,0.0,0.0,0.0,0.0,11.48268022908094,0.0,0.0,0.0 -11109,my_reservoir,2012-12-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11110,gw1,2012-12-20,262.4965406120842,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11111,gw2,2012-12-20,262.5034593879158,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11112,my_sewer,2012-12-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.274658271073112,0.0,0.0,0.0 -11113,my_land,2012-12-21,9.41144468998567,percolation,0.0,0.0,0.0005469495603637041,0.0,0.0,0.0,0.0,0.0,8.470072038829677,0.0,0.0,0.0 -11114,my_land,2012-12-21,0.5369352141291163,subsurface_runoff,0.0,0.0,2.6565039020213354e-05,0.0,0.0,0.0,0.0,0.0,6.592397186124073,0.0,0.0,0.0 -11115,my_land,2012-12-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.419047619,0.0,0.0,0.0 -11116,my_groundwater,2012-12-21,34.01237424314167,tank,0.0,0.0,0.003767537973688652,0.0,0.0,0.0,0.0,0.0,11.465710347097795,0.0,0.0,0.0 -11117,my_reservoir,2012-12-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11118,gw1,2012-12-21,262.49656367467026,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11119,gw2,2012-12-21,262.50343632532974,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11120,my_sewer,2012-12-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.374699430035906,0.0,0.0,0.0 -11121,my_land,2012-12-22,10.016233338783367,percolation,0.0,0.0,0.0005718340017822268,0.0,0.0,0.0,0.0,0.0,8.344890937886982,0.0,0.0,0.0 -11122,my_land,2012-12-22,0.645335257724357,subsurface_runoff,0.0,0.0,3.0999904039516756e-05,0.0,0.0,0.0,0.0,0.0,6.691564532859045,0.0,0.0,0.0 -11123,my_land,2012-12-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.548809524,0.0,0.0,0.0 -11124,my_groundwater,2012-12-22,34.13124520050191,tank,0.0,0.0,0.003769760035219283,0.0,0.0,0.0,0.0,0.0,11.447066404240994,0.0,0.0,0.0 -11125,my_reservoir,2012-12-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11126,gw1,2012-12-22,262.4965865835058,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11127,gw2,2012-12-22,262.5034134164942,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11128,my_sewer,2012-12-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.448791676696904,0.0,0.0,0.0 -11129,my_land,2012-12-23,10.44967769266447,percolation,0.0,0.0,0.0005879739417140083,0.0,0.0,0.0,0.0,0.0,8.263661885199351,0.0,0.0,0.0 -11130,my_land,2012-12-23,0.6887223614602394,subsurface_runoff,0.0,0.0,3.230376539962048e-05,0.0,0.0,0.0,0.0,0.0,6.770191691084949,0.0,0.0,0.0 -11131,my_land,2012-12-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.678571429,0.0,0.0,0.0 -11132,my_groundwater,2012-12-23,34.25864266910132,tank,0.0,0.0,0.003772305104658984,0.0,0.0,0.0,0.0,0.0,11.427299375397377,0.0,0.0,0.0 -11133,my_reservoir,2012-12-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11134,gw1,2012-12-23,262.49660933961576,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11135,gw2,2012-12-23,262.50339066038424,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11136,my_sewer,2012-12-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.493179535499756,0.0,0.0,0.0 -11137,my_land,2012-12-24,10.623176316530415,percolation,0.0,0.0,0.0005926134312576949,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 -11138,my_land,2012-12-24,0.6550573933094803,subsurface_runoff,0.0,0.0,3.030531664023154e-05,0.0,0.0,0.0,0.0,0.0,6.826615183259081,0.0,0.0,0.0 -11139,my_land,2012-12-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.808333333,0.0,0.0,0.0 -11140,my_groundwater,2012-12-24,34.38925358030079,tank,0.0,0.0,0.003774938258176511,0.0,0.0,0.0,0.0,0.0,11.407147030406493,0.0,0.0,0.0 -11141,my_reservoir,2012-12-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11142,gw1,2012-12-24,262.4966319440183,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11143,gw2,2012-12-24,262.5033680559817,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11144,my_sewer,2012-12-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.493179535499755,0.0,0.0,0.0 -11145,my_land,2012-12-25,10.410712790199806,percolation,0.0,0.0,0.000580761162632541,0.0,0.0,0.0,0.0,0.0,8.222675050897998,0.0,0.0,0.0 -11146,my_land,2012-12-25,0.5240459146475842,subsurface_runoff,0.0,0.0,2.4244253312185234e-05,0.0,0.0,0.0,0.0,0.0,6.826615183259081,0.0,0.0,0.0 -11147,my_land,2012-12-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.938095238,0.0,0.0,0.0 -11148,my_groundwater,2012-12-25,34.51521281386482,tank,0.0,0.0,0.0037773235504846604,0.0,0.0,0.0,0.0,0.0,11.38759354569987,0.0,0.0,0.0 -11149,my_reservoir,2012-12-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11150,gw1,2012-12-25,262.49665439772485,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11151,gw2,2012-12-25,262.50334560227515,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11152,my_sewer,2012-12-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.579486428933858,0.0,0.0,0.0 -11153,my_land,2012-12-26,10.584027480252168,percolation,0.0,0.0,0.0005855109593183399,0.0,0.0,0.0,0.0,0.0,8.191249753745728,0.0,0.0,0.0 -11154,my_land,2012-12-26,0.5230541319510899,subsurface_runoff,0.0,0.0,2.384846929966647e-05,0.0,0.0,0.0,0.0,0.0,6.930677481820681,0.0,0.0,0.0 -11155,my_land,2012-12-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.067857143,0.0,0.0,0.0 -11156,my_groundwater,2012-12-26,34.644385341249574,tank,0.0,0.0,0.0037797995718517148,0.0,0.0,0.0,0.0,0.0,11.367714826111468,0.0,0.0,0.0 -11157,my_reservoir,2012-12-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11158,gw1,2012-12-26,262.49667670174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11159,gw2,2012-12-26,262.50332329826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11160,my_sewer,2012-12-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 -11161,my_land,2012-12-27,10.77439304995856,percolation,0.0,0.0,0.0005907446646483832,0.0,0.0,0.0,0.0,0.0,8.164006388702758,0.0,0.0,0.0 -11162,my_land,2012-12-27,0.527843610135412,subsurface_runoff,0.0,0.0,2.3689367144878792e-05,0.0,0.0,0.0,0.0,0.0,7.040624223243023,0.0,0.0,0.0 -11163,my_land,2012-12-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.197619048,0.0,0.0,0.0 -11164,my_groundwater,2012-12-27,34.77711023641346,tank,0.0,0.0,0.003782375946452428,0.0,0.0,0.0,0.0,0.0,11.347509347974256,0.0,0.0,0.0 -11165,my_reservoir,2012-12-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11166,gw1,2012-12-27,262.49669885706174,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11167,gw2,2012-12-27,262.50330114293826,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11168,my_sewer,2012-12-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.679543867271902,0.0,0.0,0.0 -11169,my_land,2012-12-28,10.663161779530801,percolation,0.0,0.0,0.0005833715364167759,0.0,0.0,0.0,0.0,0.0,8.15829512129369,0.0,0.0,0.0 -11170,my_land,2012-12-28,0.45064402839987067,subsurface_runoff,0.0,0.0,2.0160137270014695e-05,0.0,0.0,0.0,0.0,0.0,7.074570999208448,0.0,0.0,0.0 -11171,my_land,2012-12-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.327380952,0.0,0.0,0.0 -11172,my_groundwater,2012-12-28,34.90723896847717,tank,0.0,0.0,0.003784795784291924,0.0,0.0,0.0,0.0,0.0,11.327677142366568,0.0,0.0,0.0 -11173,my_reservoir,2012-12-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11174,gw1,2012-12-28,262.4967208646813,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11175,gw2,2012-12-28,262.5032791353187,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11176,my_sewer,2012-12-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 -11177,my_land,2012-12-29,11.283023792845789,percolation,0.0,0.0,0.0006051126282168338,0.0,0.0,0.0,0.0,0.0,8.122677163850419,0.0,0.0,0.0 -11178,my_land,2012-12-29,0.5872159707214213,subsurface_runoff,0.0,0.0,2.5218864245506586e-05,0.0,0.0,0.0,0.0,0.0,7.306728241143554,0.0,0.0,0.0 -11179,my_land,2012-12-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.457142857,0.0,0.0,0.0 -11180,my_groundwater,2012-12-29,35.04966099826748,tank,0.0,0.0,0.0037876521590484652,0.0,0.0,0.0,0.0,0.0,11.30667389064283,0.0,0.0,0.0 -11181,my_reservoir,2012-12-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11182,gw1,2012-12-29,262.49674272558343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11183,gw2,2012-12-29,262.50325727441657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11184,my_sewer,2012-12-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.975772053834987,0.0,0.0,0.0 -11185,my_land,2012-12-30,11.131628394803554,percolation,0.0,0.0,0.0005960321284270194,0.0,0.0,0.0,0.0,0.0,8.12053875107678,0.0,0.0,0.0 -11186,my_land,2012-12-30,0.48998096101650584,subsurface_runoff,0.0,0.0,2.0997337049336485e-05,0.0,0.0,0.0,0.0,0.0,7.327160796199608,0.0,0.0,0.0 -11187,my_land,2012-12-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.586904762,0.0,0.0,0.0 -11188,my_groundwater,2012-12-30,35.18864499523745,tank,0.0,0.0,0.00379031653983668,0.0,0.0,0.0,0.0,0.0,11.286155789192144,0.0,0.0,0.0 -11189,my_reservoir,2012-12-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11190,gw1,2012-12-30,262.49676444074623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11191,gw2,2012-12-30,262.50323555925377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11192,my_sewer,2012-12-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11193,my_land,2012-12-31,11.233045798494327,percolation,0.0,0.0,0.0005971583912225381,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11194,my_land,2012-12-31,0.4801616318300328,subsurface_runoff,0.0,0.0,2.0348047969825397e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 -11195,my_land,2012-12-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.716666667000001,0.0,0.0,0.0 -11196,my_groundwater,2012-12-31,35.32934610079014,tank,0.0,0.0,0.003792997187165547,0.0,0.0,0.0,0.0,0.0,11.26562677349215,0.0,0.0,0.0 -11197,my_reservoir,2012-12-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11198,gw1,2012-12-31,262.49678601114124,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11199,gw2,2012-12-31,262.50321398885876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11200,my_sewer,2013-01-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11201,my_land,2013-01-01,11.00838488252444,percolation,0.0,0.0,0.0005852152233980873,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11202,my_land,2013-01-01,0.38412930546402624,subsurface_runoff,0.0,0.0,1.6278438375860317e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 -11203,my_land,2013-01-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.846428571,0.0,0.0,0.0 -11204,my_groundwater,2013-01-01,35.46512199921813,tank,0.0,0.0,0.003795428004102523,0.0,0.0,0.0,0.0,0.0,11.245715080266583,0.0,0.0,0.0 -11205,my_reservoir,2013-01-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11206,gw1,2013-01-01,262.49680743773365,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11207,gw2,2013-01-01,262.50319256226635,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11208,my_sewer,2013-01-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11209,my_land,2013-01-02,10.788217184873952,percolation,0.0,0.0,0.0005735109189301255,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11210,my_land,2013-01-02,0.307303444371221,subsurface_runoff,0.0,0.0,1.3022750700688253e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 -11211,my_land,2013-01-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 -11212,my_groundwater,2013-01-02,35.59607647262644,tank,0.0,0.0,0.0037976144777990585,0.0,0.0,0.0,0.0,0.0,11.226396258274479,0.0,0.0,0.0 -11213,my_reservoir,2013-01-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11214,gw1,2013-01-02,262.4968287214821,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11215,gw2,2013-01-02,262.5031712785179,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11216,my_sewer,2013-01-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11217,my_land,2013-01-03,10.572452841176473,percolation,0.0,0.0,0.000562040700551523,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11218,my_land,2013-01-03,0.2458427554969768,subsurface_runoff,0.0,0.0,1.0418200560550602e-05,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 -11219,my_land,2013-01-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 -11220,my_groundwater,2013-01-03,35.72231121428311,tank,0.0,0.0,0.003799561984437217,0.0,0.0,0.0,0.0,0.0,11.207647110619703,0.0,0.0,0.0 -11221,my_reservoir,2013-01-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11222,gw1,2013-01-03,262.49684986333887,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11223,gw2,2013-01-03,262.50315013666113,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11224,my_sewer,2013-01-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11225,my_land,2013-01-04,10.361003784352944,percolation,0.0,0.0,0.0005507998865404925,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11226,my_land,2013-01-04,0.19667420439758143,subsurface_runoff,0.0,0.0,8.334560448440481e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124378,0.0,0.0,0.0 -11227,my_land,2013-01-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 -11228,my_groundwater,2013-01-04,35.843925870428876,tank,0.0,0.0,0.0038012757914521267,0.0,0.0,0.0,0.0,0.0,11.189445615231882,0.0,0.0,0.0 -11229,my_reservoir,2013-01-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11230,gw1,2013-01-04,262.49687086424996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11231,gw2,2013-01-04,262.50312913575004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11232,my_sewer,2013-01-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11233,my_land,2013-01-05,10.153783708665884,percolation,0.0,0.0,0.0005397838888096827,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11234,my_land,2013-01-05,0.15733936351806516,subsurface_runoff,0.0,0.0,6.667648358752385e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 -11235,my_land,2013-01-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.976190476,0.0,0.0,0.0 -11236,my_groundwater,2013-01-05,35.96101808125065,tank,0.0,0.0,0.003802761059709979,0.0,0.0,0.0,0.0,0.0,11.17177085132548,0.0,0.0,0.0 -11237,my_reservoir,2013-01-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11238,gw1,2013-01-05,262.49689172515497,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11239,gw2,2013-01-05,262.50310827484503,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11240,my_sewer,2013-01-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11241,my_land,2013-01-06,9.950708034492566,percolation,0.0,0.0,0.0005289882110334891,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11242,my_land,2013-01-06,0.12587149081445212,subsurface_runoff,0.0,0.0,5.334118687001908e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 -11243,my_land,2013-01-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.495238095,0.0,0.0,0.0 -11244,my_groundwater,2013-01-06,36.07368352103541,tank,0.0,0.0,0.0038040228456424573,0.0,0.0,0.0,0.0,0.0,11.154602931319172,0.0,0.0,0.0 -11245,my_reservoir,2013-01-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11246,gw1,2013-01-06,262.49691244698727,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11247,gw2,2013-01-06,262.50308755301273,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11248,my_sewer,2013-01-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.072287060913953,0.0,0.0,0.0 -11249,my_land,2013-01-07,9.751693873802715,percolation,0.0,0.0,0.0005184084468128193,0.0,0.0,0.0,0.0,0.0,8.114475726140846,0.0,0.0,0.0 -11250,my_land,2013-01-07,0.1006971926515617,subsurface_runoff,0.0,0.0,4.267294949601526e-06,0.0,0.0,0.0,0.0,0.0,7.434260711124379,0.0,0.0,0.0 -11251,my_land,2013-01-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.495238095,0.0,0.0,0.0 -11252,my_groundwater,2013-01-07,36.18201593752095,tank,0.0,0.0,0.0038050661033384695,0.0,0.0,0.0,0.0,0.0,11.137922937748312,0.0,0.0,0.0 -11253,my_reservoir,2013-01-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11254,gw1,2013-01-07,262.49693303067403,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11255,gw2,2013-01-07,262.50306696932597,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11256,my_sewer,2013-01-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 -11257,my_land,2013-01-08,9.623613653175195,percolation,0.0,0.0,0.0005111694305099313,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 -11258,my_land,2013-01-08,0.09877643625690471,subsurface_runoff,0.0,0.0,4.265306063999135e-06,0.0,0.0,0.0,0.0,0.0,7.685619357765254,0.0,0.0,0.0 -11259,my_land,2013-01-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 -11260,my_groundwater,2013-01-08,36.28747017561678,tank,0.0,0.0,0.0038059593872012184,0.0,0.0,0.0,0.0,0.0,11.121625548809932,0.0,0.0,0.0 -11261,my_reservoir,2013-01-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11262,gw1,2013-01-08,262.49695347713623,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11263,gw2,2013-01-08,262.50304652286377,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11264,my_sewer,2013-01-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 -11265,my_land,2013-01-09,9.43114138011169,percolation,0.0,0.0,0.0005009460418997327,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 -11266,my_land,2013-01-09,0.07902114900552377,subsurface_runoff,0.0,0.0,3.412244851199308e-06,0.0,0.0,0.0,0.0,0.0,7.685619357765254,0.0,0.0,0.0 -11267,my_land,2013-01-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.496428571,0.0,0.0,0.0 -11268,my_groundwater,2013-01-09,36.388742592558586,tank,0.0,0.0,0.0038066423188718884,0.0,0.0,0.0,0.0,0.0,11.10578454414291,0.0,0.0,0.0 -11269,my_reservoir,2013-01-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11270,gw1,2013-01-09,262.49697378728865,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11271,gw2,2013-01-09,262.50302621271135,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11272,my_sewer,2013-01-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.060714286,0.0,0.0,0.0 -11273,my_land,2013-01-10,9.242518552509456,percolation,0.0,0.0,0.000490927121061738,0.0,0.0,0.0,0.0,0.0,8.11922458276725,0.0,0.0,0.0 -11274,my_land,2013-01-10,0.06321691920441902,subsurface_runoff,0.0,0.0,2.7297958809594465e-06,0.0,0.0,0.0,0.0,0.0,7.685619357765254,0.0,0.0,0.0 -11275,my_land,2013-01-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.932142857,0.0,0.0,0.0 -11276,my_groundwater,2013-01-10,36.485922006610416,tank,0.0,0.0,0.003807119586610608,0.0,0.0,0.0,0.0,0.0,11.090383397060627,0.0,0.0,0.0 -11277,my_reservoir,2013-01-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11278,gw1,2013-01-10,262.49699396204005,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11279,gw2,2013-01-10,262.50300603795995,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11280,my_sewer,2013-01-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 -11281,my_land,2013-01-11,9.134445104775567,percolation,0.0,0.0,0.00048481043296763187,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 -11282,my_land,2013-01-11,0.0714652151774944,subsurface_runoff,0.0,0.0,3.1911440046664885e-06,0.0,0.0,0.0,0.0,0.0,7.608050477573436,0.0,0.0,0.0 -11283,my_land,2013-01-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 -11284,my_groundwater,2013-01-11,36.58065840551254,tank,0.0,0.0,0.0038074711428866368,0.0,0.0,0.0,0.0,0.0,11.075250181554585,0.0,0.0,0.0 -11285,my_reservoir,2013-01-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11286,gw1,2013-01-11,262.4970140022931,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11287,gw2,2013-01-11,262.5029859977069,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11288,my_sewer,2013-01-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 -11289,my_land,2013-01-12,8.951756202680055,percolation,0.0,0.0,0.0004751142243082792,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 -11290,my_land,2013-01-12,0.05717217214199553,subsurface_runoff,0.0,0.0,2.552915203733191e-06,0.0,0.0,0.0,0.0,0.0,7.608050477573436,0.0,0.0,0.0 -11291,my_land,2013-01-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.803571429,0.0,0.0,0.0 -11292,my_groundwater,2013-01-12,36.67143893933903,tank,0.0,0.0,0.0038076244331671245,0.0,0.0,0.0,0.0,0.0,11.060531545361808,0.0,0.0,0.0 -11293,my_reservoir,2013-01-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11294,gw1,2013-01-12,262.4970339089445,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11295,gw2,2013-01-12,262.5029660910555,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11296,my_sewer,2013-01-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.367857143,0.0,0.0,0.0 -11297,my_land,2013-01-13,8.772721078626454,percolation,0.0,0.0,0.00046561193982211363,0.0,0.0,0.0,0.0,0.0,8.113349770294475,0.0,0.0,0.0 -11298,my_land,2013-01-13,0.04573773771359642,subsurface_runoff,0.0,0.0,2.0423321629865527e-06,0.0,0.0,0.0,0.0,0.0,7.608050477573436,0.0,0.0,0.0 -11299,my_land,2013-01-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.239285714,0.0,0.0,0.0 -11300,my_groundwater,2013-01-13,36.75834787823415,tank,0.0,0.0,0.003807583900859157,0.0,0.0,0.0,0.0,0.0,11.046212894974843,0.0,0.0,0.0 -11301,my_reservoir,2013-01-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11302,gw1,2013-01-13,262.4970536828849,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11303,gw2,2013-01-13,262.5029463171151,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11304,my_sewer,2013-01-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -11305,my_land,2013-01-14,8.72953497409342,percolation,0.0,0.0,0.00046280897765657537,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 -11306,my_land,2013-01-14,0.07258156895713454,subsurface_runoff,0.0,0.0,3.4050974666896467e-06,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 -11307,my_land,2013-01-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -11308,my_groundwater,2013-01-14,36.844160399082604,tank,0.0,0.0,0.0038074864095807323,0.0,0.0,0.0,0.0,0.0,11.031909107983019,0.0,0.0,0.0 -11309,my_reservoir,2013-01-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11310,gw1,2013-01-14,262.497073324999,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11311,gw2,2013-01-14,262.502926675001,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11312,my_sewer,2013-01-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -11313,my_land,2013-01-15,8.554944274611552,percolation,0.0,0.0,0.00045355279810344387,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 -11314,my_land,2013-01-15,0.05806525516570763,subsurface_runoff,0.0,0.0,2.7240779733517172e-06,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 -11315,my_land,2013-01-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -11316,my_groundwater,2013-01-15,36.92620422081806,tank,0.0,0.0,0.0038072007326610292,0.0,0.0,0.0,0.0,0.0,11.017990002357728,0.0,0.0,0.0 -11317,my_reservoir,2013-01-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11318,gw1,2013-01-15,262.4970928361657,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11319,gw2,2013-01-15,262.5029071638343,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11320,my_sewer,2013-01-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -11321,my_land,2013-01-16,8.38384538911932,percolation,0.0,0.0,0.000444481742141375,0.0,0.0,0.0,0.0,0.0,8.08061841388302,0.0,0.0,0.0 -11322,my_land,2013-01-16,0.04645220413256611,subsurface_runoff,0.0,0.0,2.1792623786813738e-06,0.0,0.0,0.0,0.0,0.0,6.787413613275677,0.0,0.0,0.0 -11323,my_land,2013-01-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.0,0.0,0.0 -11324,my_groundwater,2013-01-16,37.00455984854451,tank,0.0,0.0,0.0038067311091515405,0.0,0.0,0.0,0.0,0.0,11.004442359726555,0.0,0.0,0.0 -11325,my_reservoir,2013-01-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11326,gw1,2013-01-16,262.4971122172579,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11327,gw2,2013-01-16,262.5028877827421,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11328,my_sewer,2013-01-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 -11329,my_land,2013-01-17,8.310613536666391,percolation,0.0,0.0,0.0004404160551334162,0.0,0.0,0.0,0.0,0.0,8.046385796074881,0.0,0.0,0.0 -11330,my_land,2013-01-17,0.0628610980895786,subsurface_runoff,0.0,0.0,3.056048769576043e-06,0.0,0.0,0.0,0.0,0.0,6.084612563682026,0.0,0.0,0.0 -11331,my_land,2013-01-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.010714286,0.0,0.0,0.0 -11332,my_groundwater,2013-01-17,37.08122879591957,tank,0.0,0.0,0.003806179893929592,0.0,0.0,0.0,0.0,0.0,10.990946446777501,0.0,0.0,0.0 -11333,my_reservoir,2013-01-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11334,gw1,2013-01-17,262.49713146914286,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11335,gw2,2013-01-17,262.50286853085714,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11336,my_sewer,2013-01-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -11337,my_land,2013-01-18,8.361291893550554,percolation,0.0,0.0,0.0004424838569133115,0.0,0.0,0.0,0.0,0.0,7.963675849984912,0.0,0.0,0.0 -11338,my_land,2013-01-18,0.1093067363267625,subsurface_runoff,0.0,0.0,5.4043282354060415e-06,0.0,0.0,0.0,0.0,0.0,5.422251896878544,0.0,0.0,0.0 -11339,my_land,2013-01-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -11340,my_groundwater,2013-01-18,37.15873773747705,tank,0.0,0.0,0.0038056721512819323,0.0,0.0,0.0,0.0,0.0,10.977079511160019,0.0,0.0,0.0 -11341,my_reservoir,2013-01-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11342,gw1,2013-01-18,262.4971505926819,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11343,gw2,2013-01-18,262.5028494073181,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11344,my_sewer,2013-01-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -11345,my_land,2013-01-19,8.194066055679542,percolation,0.0,0.0,0.0004336341797750453,0.0,0.0,0.0,0.0,0.0,7.963675849984912,0.0,0.0,0.0 -11346,my_land,2013-01-19,0.08744538906141,subsurface_runoff,0.0,0.0,4.323462588324833e-06,0.0,0.0,0.0,0.0,0.0,5.422251896878544,0.0,0.0,0.0 -11347,my_land,2013-01-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.567857143,0.0,0.0,0.0 -11348,my_groundwater,2013-01-19,37.23264866640969,tank,0.0,0.0,0.003804985523849148,0.0,0.0,0.0,0.0,0.0,10.963579017031682,0.0,0.0,0.0 -11349,my_reservoir,2013-01-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11350,gw1,2013-01-19,262.4971695887307,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11351,gw2,2013-01-19,262.5028304112693,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11352,my_sewer,2013-01-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -11353,my_land,2013-01-20,8.085660056226105,percolation,0.0,0.0,0.00042782659144962725,0.0,0.0,0.0,0.0,0.0,7.939989472913499,0.0,0.0,0.0 -11354,my_land,2013-01-20,0.08505163687093847,subsurface_runoff,0.0,0.0,4.2383878312266215e-06,0.0,0.0,0.0,0.0,0.0,5.260577622400816,0.0,0.0,0.0 -11355,my_land,2013-01-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.346428571,0.0,0.0,0.0 -11356,my_groundwater,2013-01-20,37.30416798160255,tank,0.0,0.0,0.00380418238707975,0.0,0.0,0.0,0.0,0.0,10.950237728415244,0.0,0.0,0.0 -11357,my_reservoir,2013-01-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11358,gw1,2013-01-20,262.49718845813914,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11359,gw2,2013-01-20,262.50281154186086,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11360,my_sewer,2013-01-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.789285714,0.0,0.0,0.0 -11361,my_land,2013-01-21,7.923946855101583,percolation,0.0,0.0,0.0004192700596206347,0.0,0.0,0.0,0.0,0.0,7.939989472913499,0.0,0.0,0.0 -11362,my_land,2013-01-21,0.06804130949675077,subsurface_runoff,0.0,0.0,3.3907102649812974e-06,0.0,0.0,0.0,0.0,0.0,5.260577622400816,0.0,0.0,0.0 -11363,my_land,2013-01-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.125,0.0,0.0,0.0 -11364,my_groundwater,2013-01-21,37.37221647977026,tank,0.0,0.0,0.0038032070716114705,0.0,0.0,0.0,0.0,0.0,10.937244656686795,0.0,0.0,0.0 -11365,my_reservoir,2013-01-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11366,gw1,2013-01-21,262.49720720175156,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11367,gw2,2013-01-21,262.50279279824844,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11368,my_sewer,2013-01-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 -11369,my_land,2013-01-22,7.915136720200032,percolation,0.0,0.0,0.0004186740972531902,0.0,0.0,0.0,0.0,0.0,7.867763581583282,0.0,0.0,0.0 -11370,my_land,2013-01-22,0.09515925227780311,subsurface_runoff,0.0,0.0,4.832143402452568e-06,0.0,0.0,0.0,0.0,0.0,4.772592379434688,0.0,0.0,0.0 -11371,my_land,2013-01-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 -11372,my_groundwater,2013-01-22,37.43991550751776,tank,0.0,0.0,0.00380222206234081,0.0,0.0,0.0,0.0,0.0,10.924034579799127,0.0,0.0,0.0 -11373,my_reservoir,2013-01-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11374,gw1,2013-01-22,262.4972258204065,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11375,gw2,2013-01-22,262.5027741795935,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11376,my_sewer,2013-01-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 -11377,my_land,2013-01-23,7.808986868745272,percolation,0.0,0.0,0.0004130457242375543,0.0,0.0,0.0,0.0,0.0,7.843673603993153,0.0,0.0,0.0 -11378,my_land,2013-01-23,0.09031866248870261,subsurface_runoff,0.0,0.0,4.612683138132894e-06,0.0,0.0,0.0,0.0,0.0,4.69216296867689,0.0,0.0,0.0 -11379,my_land,2013-01-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.532142857,0.0,0.0,0.0 -11380,my_groundwater,2013-01-23,37.50528438000556,tank,0.0,0.0,0.003801124937999794,0.0,0.0,0.0,0.0,0.0,10.910978263373167,0.0,0.0,0.0 -11381,my_reservoir,2013-01-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11382,gw1,2013-01-23,262.4972443149372,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11383,gw2,2013-01-23,262.5027556850628,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11384,my_sewer,2013-01-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328571429,0.0,0.0,0.0 -11385,my_land,2013-01-24,7.652807131370366,percolation,0.0,0.0,0.0004047848097528032,0.0,0.0,0.0,0.0,0.0,7.843673603993153,0.0,0.0,0.0 -11386,my_land,2013-01-24,0.07225492999096209,subsurface_runoff,0.0,0.0,3.6901465105063156e-06,0.0,0.0,0.0,0.0,0.0,4.69216296867689,0.0,0.0,0.0 -11387,my_land,2013-01-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.532142857,0.0,0.0,0.0 -11388,my_groundwater,2013-01-24,37.56731045708702,tank,0.0,0.0,0.0037998623878533334,0.0,0.0,0.0,0.0,0.0,10.898258342696218,0.0,0.0,0.0 -11389,my_reservoir,2013-01-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11390,gw1,2013-01-24,262.4972626861709,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11391,gw2,2013-01-24,262.5027373138291,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11392,my_sewer,2013-01-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.939285714000001,0.0,0.0,0.0 -11393,my_land,2013-01-25,7.786473514195681,percolation,0.0,0.0,0.0004115277123321216,0.0,0.0,0.0,0.0,0.0,7.7232976083887594,0.0,0.0,0.0 -11394,my_land,2013-01-25,0.1358236788098369,subsurface_runoff,0.0,0.0,6.989831160615775e-06,0.0,0.0,0.0,0.0,0.0,4.6246576559771775,0.0,0.0,0.0 -11395,my_land,2013-01-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.939285714,0.0,0.0,0.0 -11396,my_groundwater,2013-01-25,37.63190253462614,tank,0.0,0.0,0.0037987402603133183,0.0,0.0,0.0,0.0,0.0,10.884885004782783,0.0,0.0,0.0 -11397,my_reservoir,2013-01-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11398,gw1,2013-01-25,262.4972809349298,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11399,gw2,2013-01-25,262.5027190650702,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11400,my_sewer,2013-01-26,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.105719112033784,0.0,0.0,0.0 -11401,my_land,2013-01-26,8.381011853722226,percolation,0.0,0.0,0.00043968659398733865,0.0,0.0,0.0,0.0,0.0,7.455273030125969,0.0,0.0,0.0 -11402,my_land,2013-01-26,0.3128134491187426,subsurface_runoff,0.0,0.0,1.5493752248726488e-05,0.0,0.0,0.0,0.0,0.0,4.69293650513479,0.0,0.0,0.0 -11403,my_land,2013-01-26,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.142857143,0.0,0.0,0.0 -11404,my_groundwater,2013-01-26,37.708436233883205,tank,0.0,0.0,0.0037981941724687055,0.0,0.0,0.0,0.0,0.0,10.869367576621292,0.0,0.0,0.0 -11405,my_reservoir,2013-01-26,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11406,gw1,2013-01-26,262.49729906203027,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11407,gw2,2013-01-26,262.50270093796973,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11408,my_sewer,2013-01-27,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.136778397061682,0.0,0.0,0.0 -11409,my_land,2013-01-27,8.430564310800703,percolation,0.0,0.0,0.0004414011933373493,0.0,0.0,0.0,0.0,0.0,7.390458369696871,0.0,0.0,0.0 -11410,my_land,2013-01-27,0.3093453699488503,subsurface_runoff,0.0,0.0,1.525441165741857e-05,0.0,0.0,0.0,0.0,0.0,4.739978923641431,0.0,0.0,0.0 -11411,my_land,2013-01-27,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.346428571,0.0,0.0,0.0 -11412,my_groundwater,2013-01-27,37.7857873453398,tank,0.0,0.0,0.0037976843541876154,0.0,0.0,0.0,0.0,0.0,10.85356644871737,0.0,0.0,0.0 -11413,my_reservoir,2013-01-27,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11414,gw1,2013-01-27,262.4973170682834,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11415,gw2,2013-01-27,262.5026829317166,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11416,my_sewer,2013-01-28,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.195810054624299,0.0,0.0,0.0 -11417,my_land,2013-01-28,8.4628038219495,percolation,0.0,0.0,0.0004422802791208436,0.0,0.0,0.0,0.0,0.0,7.336551890999767,0.0,0.0,0.0 -11418,my_land,2013-01-28,0.3021295741535868,subsurface_runoff,0.0,0.0,1.4844919706952893e-05,0.0,0.0,0.0,0.0,0.0,4.808563234469511,0.0,0.0,0.0 -11419,my_land,2013-01-28,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.55,0.0,0.0,0.0 -11420,my_groundwater,2013-01-28,37.86360138335185,tank,0.0,0.0,0.0037971937061271064,0.0,0.0,0.0,0.0,0.0,10.83756411421227,0.0,0.0,0.0 -11421,my_reservoir,2013-01-28,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11422,gw1,2013-01-28,262.4973349544948,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11423,gw2,2013-01-28,262.5026650455052,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11424,my_sewer,2013-01-29,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.56691059060448,0.0,0.0,0.0 -11425,my_land,2013-01-29,8.859718468696194,percolation,0.0,0.0,0.0004597578229412687,0.0,0.0,0.0,0.0,0.0,7.205079967926501,0.0,0.0,0.0 -11426,my_land,2013-01-29,0.3957637200536678,subsurface_runoff,0.0,0.0,1.903869750783223e-05,0.0,0.0,0.0,0.0,0.0,4.9917749632724036,0.0,0.0,0.0 -11427,my_land,2013-01-29,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.842857143,0.0,0.0,0.0 -11428,my_groundwater,2013-01-29,37.94930093443479,tank,0.0,0.0,0.0037970600775430927,0.0,0.0,0.0,0.0,0.0,10.820300302392647,0.0,0.0,0.0 -11429,my_reservoir,2013-01-29,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11430,gw1,2013-01-29,262.49735272146484,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11431,gw2,2013-01-29,262.50264727853516,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11432,my_sewer,2013-01-30,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.600369631510098,0.0,0.0,0.0 -11433,my_land,2013-01-30,8.837532388125185,percolation,0.0,0.0,0.0004577992819373501,0.0,0.0,0.0,0.0,0.0,7.175844483017311,0.0,0.0,0.0 -11434,my_land,2013-01-30,0.3587901022478087,subsurface_runoff,0.0,0.0,1.7200105068825447e-05,0.0,0.0,0.0,0.0,0.0,5.05602041749425,0.0,0.0,0.0 -11435,my_land,2013-01-30,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.135714286,0.0,0.0,0.0 -11436,my_groundwater,2013-01-30,38.0343345914284,tank,0.0,0.0,0.0037968869127315307,0.0,0.0,0.0,0.0,0.0,10.803061594533139,0.0,0.0,0.0 -11437,my_reservoir,2013-01-30,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11438,gw1,2013-01-30,262.4973703699884,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11439,gw2,2013-01-30,262.5026296300116,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11440,my_sewer,2013-01-31,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -11441,my_land,2013-01-31,8.939070132055312,percolation,0.0,0.0,0.0004615181029144282,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -11442,my_land,2013-01-31,0.36275681423161604,subsurface_runoff,0.0,0.0,1.726343279406039e-05,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 -11443,my_land,2013-01-31,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.428571429,0.0,0.0,0.0 -11444,my_groundwater,2013-01-31,38.1212226826381,tank,0.0,0.0,0.003796789885401888,0.0,0.0,0.0,0.0,0.0,10.785540304025412,0.0,0.0,0.0 -11445,my_reservoir,2013-01-31,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11446,gw1,2013-01-31,262.49738790085513,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11447,gw2,2013-01-31,262.50261209914487,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11448,my_sewer,2013-02-01,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -11449,my_land,2013-02-01,8.760288729414205,percolation,0.0,0.0,0.0004522877408561396,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -11450,my_land,2013-02-01,0.29020545138529286,subsurface_runoff,0.0,0.0,1.3810746235248313e-05,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 -11451,my_land,2013-02-01,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.721428571,0.0,0.0,0.0 -11452,my_groundwater,2013-02-01,38.20425407506601,tank,0.0,0.0,0.003796505196841526,0.0,0.0,0.0,0.0,0.0,10.768488545710257,0.0,0.0,0.0 -11453,my_reservoir,2013-02-01,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11454,gw1,2013-02-01,262.4974053148494,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11455,gw2,2013-02-01,262.5025946851506,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11456,my_sewer,2013-02-02,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -11457,my_land,2013-02-02,8.585082954825921,percolation,0.0,0.0,0.00044324198603901686,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -11458,my_land,2013-02-02,0.2321643611082343,subsurface_runoff,0.0,0.0,1.104859698819865e-05,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 -11459,my_land,2013-02-02,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.721428571,0.0,0.0,0.0 -11460,my_groundwater,2013-02-02,38.28351120003016,tank,0.0,0.0,0.003796037074279502,0.0,0.0,0.0,0.0,0.0,10.751890261085077,0.0,0.0,0.0 -11461,my_reservoir,2013-02-02,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11462,gw1,2013-02-02,262.4974226127504,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11463,gw2,2013-02-02,262.5025773872496,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11464,my_sewer,2013-02-03,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -11465,my_land,2013-02-03,8.413381295729403,percolation,0.0,0.0,0.0004343771463182365,0.0,0.0,0.0,0.0,0.0,7.132574148241232,0.0,0.0,0.0 -11466,my_land,2013-02-03,0.18573148888658744,subsurface_runoff,0.0,0.0,8.838877590558921e-06,0.0,0.0,0.0,0.0,0.0,5.208387910357039,0.0,0.0,0.0 -11467,my_land,2013-02-03,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.721428571,0.0,0.0,0.0 -11468,my_groundwater,2013-02-03,38.35907482697886,tank,0.0,0.0,0.003795389659215282,0.0,0.0,0.0,0.0,0.0,10.735730096177223,0.0,0.0,0.0 -11469,my_reservoir,2013-02-03,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11470,gw1,2013-02-03,262.49743979533207,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11471,gw2,2013-02-03,262.50256020466793,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11472,my_sewer,2013-02-04,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.858032412951401,0.0,0.0,0.0 -11473,my_land,2013-02-04,8.329155917833562,percolation,0.0,0.0,0.0004298424646846155,0.0,0.0,0.0,0.0,0.0,7.129197127589859,0.0,0.0,0.0 -11474,my_land,2013-02-04,0.171453830025936,subsurface_runoff,0.0,0.0,8.201132356186935e-06,0.0,0.0,0.0,0.0,0.0,5.420396681322303,0.0,0.0,0.0 -11475,my_land,2013-02-04,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.6,0.0,0.0,0.0 -11476,my_groundwater,2013-02-04,38.43273495681017,tank,0.0,0.0,0.003794651549526895,0.0,0.0,0.0,0.0,0.0,10.719818768049931,0.0,0.0,0.0 -11477,my_reservoir,2013-02-04,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11478,gw1,2013-02-04,262.4974568633632,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11479,gw2,2013-02-04,262.5025431366368,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11480,my_sewer,2013-02-05,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -11481,my_land,2013-02-05,8.260512043477704,percolation,0.0,0.0,0.0004261129202096226,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 -11482,my_land,2013-02-05,0.16381319844273884,subsurface_runoff,0.0,0.0,7.885342570309933e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 -11483,my_land,2013-02-05,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -11484,my_groundwater,2013-02-05,38.50481354316037,tank,0.0,0.0,0.003793839362243059,0.0,0.0,0.0,0.0,0.0,10.704133178711828,0.0,0.0,0.0 -11485,my_reservoir,2013-02-05,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11486,gw1,2013-02-05,262.49747381760744,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11487,gw2,2013-02-05,262.50252618239256,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11488,my_sewer,2013-02-06,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -11489,my_land,2013-02-06,8.09530180260815,percolation,0.0,0.0,0.00041759066180543014,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 -11490,my_land,2013-02-06,0.13105055875419108,subsurface_runoff,0.0,0.0,6.308274056247947e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 -11491,my_land,2013-02-06,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -11492,my_groundwater,2013-02-06,38.57334872456985,tank,0.0,0.0,0.0037928557165956335,0.0,0.0,0.0,0.0,0.0,10.688855626801885,0.0,0.0,0.0 -11493,my_reservoir,2013-02-06,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11494,gw1,2013-02-06,262.4974906588234,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11495,gw2,2013-02-06,262.5025093411766,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11496,my_sewer,2013-02-07,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.232142857,0.0,0.0,0.0 -11497,my_land,2013-02-07,7.933395766555987,percolation,0.0,0.0,0.00040923884856932155,0.0,0.0,0.0,0.0,0.0,7.128184783444414,0.0,0.0,0.0 -11498,my_land,2013-02-07,0.10484044700335286,subsurface_runoff,0.0,0.0,5.046619244998358e-06,0.0,0.0,0.0,0.0,0.0,5.684503950877724,0.0,0.0,0.0 -11499,my_land,2013-02-07,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496428571,0.0,0.0,0.0 -11500,my_groundwater,2013-02-07,38.63841662372046,tank,0.0,0.0,0.0037917045110071627,0.0,0.0,0.0,0.0,0.0,10.673972696368171,0.0,0.0,0.0 -11501,my_reservoir,2013-02-07,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11502,gw1,2013-02-07,262.4975073877646,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11503,gw2,2013-02-07,262.5024926122354,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11504,my_sewer,2013-02-08,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 -11505,my_land,2013-02-08,7.8735955460531,percolation,0.0,0.0,0.0004061426214974799,0.0,0.0,0.0,0.0,0.0,7.116189371345608,0.0,0.0,0.0 -11506,my_land,2013-02-08,0.1107751317056033,subsurface_runoff,0.0,0.0,5.421934824446247e-06,0.0,0.0,0.0,0.0,0.0,5.803114949883114,0.0,0.0,0.0 -11507,my_land,2013-02-08,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.128571429,0.0,0.0,0.0 -11508,my_groundwater,2013-02-08,38.702104491491525,tank,0.0,0.0,0.0037904931530958435,0.0,0.0,0.0,0.0,0.0,10.65923821545615,0.0,0.0,0.0 -11509,my_reservoir,2013-02-08,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11510,gw1,2013-02-08,262.4975240051795,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11511,gw2,2013-02-08,262.5024759948205,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11512,my_sewer,2013-02-09,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 -11513,my_land,2013-02-09,7.982483535439127,percolation,0.0,0.0,0.00041139674030689415,0.0,0.0,0.0,0.0,0.0,7.0731961318885235,0.0,0.0,0.0 -11514,my_land,2013-02-09,0.16109898980178558,subsurface_runoff,0.0,0.0,7.977540033533552e-06,0.0,0.0,0.0,0.0,0.0,5.814191159809541,0.0,0.0,0.0 -11515,my_land,2013-02-09,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.760714286,0.0,0.0,0.0 -11516,my_groundwater,2013-02-09,38.76784978794852,tank,0.0,0.0,0.0037893917824264943,0.0,0.0,0.0,0.0,0.0,10.644206846895559,0.0,0.0,0.0 -11517,my_reservoir,2013-02-09,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11518,gw1,2013-02-09,262.4975405118117,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11519,gw2,2013-02-09,262.5024594881883,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11520,my_sewer,2013-02-10,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -11521,my_land,2013-02-10,8.63689386461298,percolation,0.0,0.0,0.0004410261244864467,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 -11522,my_land,2013-02-10,0.3503921169795604,subsurface_runoff,0.0,0.0,1.6683343315450083e-05,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 -11523,my_land,2013-02-10,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.392857143,0.0,0.0,0.0 -11524,my_groundwater,2013-02-10,38.84675264572256,tank,0.0,0.0,0.003788896334790331,0.0,0.0,0.0,0.0,0.0,10.627351782438277,0.0,0.0,0.0 -11525,my_reservoir,2013-02-10,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11526,gw1,2013-02-10,262.4975569083996,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11527,gw2,2013-02-10,262.5024430916004,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11528,my_sewer,2013-02-11,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -11529,my_land,2013-02-11,8.46415598732072,percolation,0.0,0.0,0.0004322056019967178,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 -11530,my_land,2013-02-11,0.2803136935836483,subsurface_runoff,0.0,0.0,1.3346674652360067e-05,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 -11531,my_land,2013-02-11,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.025,0.0,0.0,0.0 -11532,my_groundwater,2013-02-11,38.92194179670728,tank,0.0,0.0,0.0037882225651368596,0.0,0.0,0.0,0.0,0.0,10.61094034532514,0.0,0.0,0.0 -11533,my_reservoir,2013-02-11,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11534,gw1,2013-02-11,262.4975731956769,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11535,gw2,2013-02-11,262.5024268043231,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11536,my_sewer,2013-02-12,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417058270828947,0.0,0.0,0.0 -11537,my_land,2013-02-12,8.294872867574306,percolation,0.0,0.0,0.00042356148995678346,0.0,0.0,0.0,0.0,0.0,6.920197769993876,0.0,0.0,0.0 -11538,my_land,2013-02-12,0.22425095486691865,subsurface_runoff,0.0,0.0,1.0677339721888055e-05,0.0,0.0,0.0,0.0,0.0,5.583914626980147,0.0,0.0,0.0 -11539,my_land,2013-02-12,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.025,0.0,0.0,0.0 -11540,my_groundwater,2013-02-12,38.993496854162565,tank,0.0,0.0,0.0037873745104838523,0.0,0.0,0.0,0.0,0.0,10.59495771959089,0.0,0.0,0.0 -11541,my_reservoir,2013-02-12,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11542,gw1,2013-02-12,262.4975893743724,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11543,gw2,2013-02-12,262.5024106256276,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11544,my_sewer,2013-02-13,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11545,my_land,2013-02-13,8.647824615279912,percolation,0.0,0.0,0.0004392825129655802,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11546,my_land,2013-02-13,0.32058422105192746,subsurface_runoff,0.0,0.0,1.512479771164172e-05,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11547,my_land,2013-02-13,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11548,my_groundwater,2013-02-13,39.07205811312393,tank,0.0,0.0,0.0037868486110787278,0.0,0.0,0.0,0.0,0.0,10.577896226704054,0.0,0.0,0.0 -11549,my_reservoir,2013-02-13,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11550,gw1,2013-02-13,262.4976054452099,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11551,gw2,2013-02-13,262.5023945547901,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11552,my_sewer,2013-02-14,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11553,my_land,2013-02-14,8.474868122974314,percolation,0.0,0.0,0.0004304968627062686,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11554,my_land,2013-02-14,0.25646737684154197,subsurface_runoff,0.0,0.0,1.2099838169313376e-05,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11555,my_land,2013-02-14,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.807142857,0.0,0.0,0.0 -11556,my_groundwater,2013-02-14,39.146902068915956,tank,0.0,0.0,0.003786145175684694,0.0,0.0,0.0,0.0,0.0,10.56128312232937,0.0,0.0,0.0 -11557,my_reservoir,2013-02-14,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11558,gw1,2013-02-14,262.4976214089085,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11559,gw2,2013-02-14,262.5023785910915,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11560,my_sewer,2013-02-15,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11561,my_land,2013-02-15,8.305370760514828,percolation,0.0,0.0,0.00042188692545214326,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11562,my_land,2013-02-15,0.20517390147323358,subsurface_runoff,0.0,0.0,9.679870535450702e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11563,my_land,2013-02-15,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.807142857,0.0,0.0,0.0 -11564,my_groundwater,2013-02-15,39.218108432797,tank,0.0,0.0,0.0037852682251564725,0.0,0.0,0.0,0.0,0.0,10.545103461292857,0.0,0.0,0.0 -11565,my_reservoir,2013-02-15,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11566,gw1,2013-02-15,262.49763726618244,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11567,gw2,2013-02-15,262.50236273381756,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11568,my_sewer,2013-02-16,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11569,my_land,2013-02-16,8.139263345304531,percolation,0.0,0.0,0.0004134491869431004,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11570,my_land,2013-02-16,0.16413912117858687,subsurface_runoff,0.0,0.0,7.743896428360561e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11571,my_land,2013-02-16,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11572,my_groundwater,2013-02-16,39.28575530838728,tank,0.0,0.0,0.0037842216987563518,0.0,0.0,0.0,0.0,0.0,10.529342935899182,0.0,0.0,0.0 -11573,my_reservoir,2013-02-16,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11574,gw1,2013-02-16,262.49765301774124,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11575,gw2,2013-02-16,262.50234698225876,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11576,my_sewer,2013-02-17,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11577,my_land,2013-02-17,7.976478078398441,percolation,0.0,0.0,0.0004051802032042384,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11578,my_land,2013-02-17,0.1313112969428695,subsurface_runoff,0.0,0.0,6.195117142688449e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11579,my_land,2013-02-17,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11580,my_groundwater,2013-02-17,39.34991922385514,tank,0.0,0.0,0.003783009455788976,0.0,0.0,0.0,0.0,0.0,10.51398784227249,0.0,0.0,0.0 -11581,my_reservoir,2013-02-17,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11582,gw1,2013-02-17,262.4976686642896,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11583,gw2,2013-02-17,262.5023313357104,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11584,my_sewer,2013-02-18,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11585,my_land,2013-02-18,7.816948516830472,percolation,0.0,0.0,0.00039707659914015367,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11586,my_land,2013-02-18,0.1050490375542956,subsurface_runoff,0.0,0.0,4.956093714150759e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11587,my_land,2013-02-18,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11588,my_groundwater,2013-02-18,39.41067516345955,tank,0.0,0.0,0.0037816352772034284,0.0,0.0,0.0,0.0,0.0,10.499025048811431,0.0,0.0,0.0 -11589,my_reservoir,2013-02-18,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11590,gw1,2013-02-18,262.4976842065277,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11591,gw2,2013-02-18,262.5023157934723,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11592,my_sewer,2013-02-19,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11593,my_land,2013-02-19,7.660609546493863,percolation,0.0,0.0,0.0003891350671573506,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11594,my_land,2013-02-19,0.08403923004343647,subsurface_runoff,0.0,0.0,3.964874971320607e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11595,my_land,2013-02-19,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11596,my_groundwater,2013-02-19,39.46809659846167,tank,0.0,0.0,0.0037801028671632657,0.0,0.0,0.0,0.0,0.0,10.484441966605036,0.0,0.0,0.0 -11597,my_reservoir,2013-02-19,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11598,gw1,2013-02-19,262.4976996451509,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11599,gw2,2013-02-19,262.5023003548491,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11600,my_sewer,2013-02-20,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11601,my_land,2013-02-20,7.5073973555639855,percolation,0.0,0.0,0.0003813523658142036,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11602,my_land,2013-02-20,0.06723138403474918,subsurface_runoff,0.0,0.0,3.1718999770564855e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11603,my_land,2013-02-20,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11604,my_groundwater,2013-02-20,39.52225551741807,tank,0.0,0.0,0.003778415854585147,0.0,0.0,0.0,0.0,0.0,10.470226521668632,0.0,0.0,0.0 -11605,my_reservoir,2013-02-20,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11606,gw1,2013-02-20,262.4977149808499,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11607,gw2,2013-02-20,262.5022850191501,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11608,my_sewer,2013-02-21,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11609,my_land,2013-02-21,7.357249408452706,percolation,0.0,0.0,0.0003737253184979195,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11610,my_land,2013-02-21,0.05378510722779935,subsurface_runoff,0.0,0.0,2.5375199816451886e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11611,my_land,2013-02-21,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11612,my_groundwater,2013-02-21,39.57322245586802,tank,0.0,0.0,0.0037765777946466776,0.0,0.0,0.0,0.0,0.0,10.45636712887049,0.0,0.0,0.0 -11613,my_reservoir,2013-02-21,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11614,gw1,2013-02-21,262.4977302143109,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11615,gw2,2013-02-21,262.5022697856891,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11616,my_sewer,2013-02-22,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11617,my_land,2013-02-22,7.210104420283652,percolation,0.0,0.0,0.0003662508121279611,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11618,my_land,2013-02-22,0.043028085782239475,subsurface_runoff,0.0,0.0,2.0300159853161507e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11619,my_land,2013-02-22,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11620,my_groundwater,2013-02-22,39.62106652542698,tank,0.0,0.0,0.0037745921702640943,0.0,0.0,0.0,0.0,0.0,10.442852667430246,0.0,0.0,0.0 -11621,my_reservoir,2013-02-22,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11622,gw1,2013-02-22,262.4977453462155,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11623,gw2,2013-02-22,262.5022546537845,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11624,my_sewer,2013-02-23,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11625,my_land,2013-02-23,7.065902331877979,percolation,0.0,0.0,0.00035892579588540186,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11626,my_land,2013-02-23,0.03442246862579158,subsurface_runoff,0.0,0.0,1.6240127882529205e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11627,my_land,2013-02-23,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11628,my_groundwater,2013-02-23,39.665855442298074,tank,0.0,0.0,0.0037724623935403868,0.0,0.0,0.0,0.0,0.0,10.429672457879626,0.0,0.0,0.0 -11629,my_reservoir,2013-02-23,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11630,gw1,2013-02-23,262.4977603772407,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11631,gw2,2013-02-23,262.5022396227593,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11632,my_sewer,2013-02-24,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11633,my_land,2013-02-24,6.924584285240419,percolation,0.0,0.0,0.00035174727996769385,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11634,my_land,2013-02-24,0.027537974900633266,subsurface_runoff,0.0,0.0,1.2992102306023364e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11635,my_land,2013-02-24,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11636,my_groundwater,2013-02-24,39.70765555521329,tank,0.0,0.0,0.0037701918071844495,0.0,0.0,0.0,0.0,0.0,10.416816240384605,0.0,0.0,0.0 -11637,my_reservoir,2013-02-24,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11638,gw1,2013-02-24,262.4977753080591,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11639,gw2,2013-02-24,262.5022246919409,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11640,my_sewer,2013-02-25,0.0,sewer_tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.546428571,0.0,0.0,0.0 -11641,my_land,2013-02-25,6.7860925995356105,percolation,0.0,0.0,0.00034471233436834,0.0,0.0,0.0,0.0,0.0,6.808268876295024,0.0,0.0,0.0 -11642,my_land,2013-02-25,0.02203037992050661,subsurface_runoff,0.0,0.0,1.0393681844818692e-06,0.0,0.0,0.0,0.0,0.0,5.350826571988884,0.0,0.0,0.0 -11643,my_land,2013-02-25,0.0,surface_runoff,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.328571429,0.0,0.0,0.0 -11644,my_groundwater,2013-02-25,39.74653187281581,tank,0.0,0.0,0.003767783685901844,0.0,0.0,0.0,0.0,0.0,10.404274154336065,0.0,0.0,0.0 -11645,my_reservoir,2013-02-25,0.0,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11646,gw1,2013-02-25,262.4977901393387,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -11647,gw2,2013-02-25,262.5022098606613,tank,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/docs/demo/data/processed/timeseries_data_saved.csv b/docs/demo/data/processed/timeseries_data_saved.csv deleted file mode 100644 index 79836043..00000000 --- a/docs/demo/data/processed/timeseries_data_saved.csv +++ /dev/null @@ -1,4369 +0,0 @@ -site,time,variable,value -oxford_land,2009-03-03,precipitation,0.015 -oxford_land,2009-03-04,precipitation,0.0001 -oxford_land,2009-03-05,precipitation,0 -oxford_land,2009-03-06,precipitation,0 -oxford_land,2009-03-07,precipitation,0.0017 -oxford_land,2009-03-08,precipitation,0.0037 -oxford_land,2009-03-09,precipitation,0.0013 -oxford_land,2009-03-10,precipitation,0.0001 -oxford_land,2009-03-11,precipitation,0.0001 -oxford_land,2009-03-12,precipitation,0.0001 -oxford_land,2009-03-13,precipitation,0 -oxford_land,2009-03-14,precipitation,0 -oxford_land,2009-03-15,precipitation,0 -oxford_land,2009-03-16,precipitation,0 -oxford_land,2009-03-17,precipitation,0 -oxford_land,2009-03-18,precipitation,0 -oxford_land,2009-03-19,precipitation,0 -oxford_land,2009-03-20,precipitation,0 -oxford_land,2009-03-21,precipitation,0 -oxford_land,2009-03-22,precipitation,0 -oxford_land,2009-03-23,precipitation,0.0005 -oxford_land,2009-03-24,precipitation,0.0005 -oxford_land,2009-03-25,precipitation,0.0009 -oxford_land,2009-03-26,precipitation,0.0009 -oxford_land,2009-03-27,precipitation,0.0004 -oxford_land,2009-03-28,precipitation,0.0016 -oxford_land,2009-03-29,precipitation,0 -oxford_land,2009-03-30,precipitation,0 -oxford_land,2009-03-31,precipitation,0 -oxford_land,2009-04-01,precipitation,0 -oxford_land,2009-04-02,precipitation,0 -oxford_land,2009-04-03,precipitation,0.0002 -oxford_land,2009-04-04,precipitation,0 -oxford_land,2009-04-05,precipitation,0 -oxford_land,2009-04-06,precipitation,0.0009 -oxford_land,2009-04-07,precipitation,0.005 -oxford_land,2009-04-08,precipitation,0.0014 -oxford_land,2009-04-09,precipitation,0.0017 -oxford_land,2009-04-10,precipitation,0.0019 -oxford_land,2009-04-11,precipitation,0 -oxford_land,2009-04-12,precipitation,0 -oxford_land,2009-04-13,precipitation,0.0001 -oxford_land,2009-04-14,precipitation,0.0051 -oxford_land,2009-04-15,precipitation,0.0011 -oxford_land,2009-04-16,precipitation,0.0082 -oxford_land,2009-04-17,precipitation,0.0009 -oxford_land,2009-04-18,precipitation,0 -oxford_land,2009-04-19,precipitation,0 -oxford_land,2009-04-20,precipitation,0 -oxford_land,2009-04-21,precipitation,0 -oxford_land,2009-04-22,precipitation,0 -oxford_land,2009-04-23,precipitation,0 -oxford_land,2009-04-24,precipitation,0.0015 -oxford_land,2009-04-25,precipitation,0 -oxford_land,2009-04-26,precipitation,0.0056 -oxford_land,2009-04-27,precipitation,0.0054 -oxford_land,2009-04-28,precipitation,0.0007 -oxford_land,2009-04-29,precipitation,0.0005 -oxford_land,2009-04-30,precipitation,0.0019 -oxford_land,2009-05-01,precipitation,0.0002 -oxford_land,2009-05-02,precipitation,0 -oxford_land,2009-05-03,precipitation,0 -oxford_land,2009-05-04,precipitation,0.0001 -oxford_land,2009-05-05,precipitation,0 -oxford_land,2009-05-06,precipitation,0 -oxford_land,2009-05-07,precipitation,0.0013 -oxford_land,2009-05-08,precipitation,0.0007 -oxford_land,2009-05-09,precipitation,0 -oxford_land,2009-05-10,precipitation,0 -oxford_land,2009-05-11,precipitation,0 -oxford_land,2009-05-12,precipitation,0.0008 -oxford_land,2009-05-13,precipitation,0.0012 -oxford_land,2009-05-14,precipitation,0.0137 -oxford_land,2009-05-15,precipitation,0.0014 -oxford_land,2009-05-16,precipitation,0.0034 -oxford_land,2009-05-17,precipitation,0.0066 -oxford_land,2009-05-18,precipitation,0.0065 -oxford_land,2009-05-19,precipitation,0.0035 -oxford_land,2009-05-20,precipitation,0.0001 -oxford_land,2009-05-21,precipitation,0.0003 -oxford_land,2009-05-22,precipitation,0 -oxford_land,2009-05-23,precipitation,0 -oxford_land,2009-05-24,precipitation,0 -oxford_land,2009-05-25,precipitation,0.0024 -oxford_land,2009-05-26,precipitation,0.0008 -oxford_land,2009-05-27,precipitation,0.0013 -oxford_land,2009-05-28,precipitation,0 -oxford_land,2009-05-29,precipitation,0 -oxford_land,2009-05-30,precipitation,0 -oxford_land,2009-05-31,precipitation,0 -oxford_land,2009-06-01,precipitation,0 -oxford_land,2009-06-02,precipitation,0 -oxford_land,2009-06-03,precipitation,0 -oxford_land,2009-06-04,precipitation,0 -oxford_land,2009-06-05,precipitation,0.0084 -oxford_land,2009-06-06,precipitation,0.0154 -oxford_land,2009-06-07,precipitation,0.0049 -oxford_land,2009-06-08,precipitation,0.0002 -oxford_land,2009-06-09,precipitation,0 -oxford_land,2009-06-10,precipitation,0.0095 -oxford_land,2009-06-11,precipitation,0 -oxford_land,2009-06-12,precipitation,0 -oxford_land,2009-06-13,precipitation,0 -oxford_land,2009-06-14,precipitation,0 -oxford_land,2009-06-15,precipitation,0.0015 -oxford_land,2009-06-16,precipitation,0 -oxford_land,2009-06-17,precipitation,0.0012 -oxford_land,2009-06-18,precipitation,0 -oxford_land,2009-06-19,precipitation,0.0023 -oxford_land,2009-06-20,precipitation,0.0002 -oxford_land,2009-06-21,precipitation,0.0001 -oxford_land,2009-06-22,precipitation,0.0013 -oxford_land,2009-06-23,precipitation,0 -oxford_land,2009-06-24,precipitation,0 -oxford_land,2009-06-25,precipitation,0.0037 -oxford_land,2009-06-26,precipitation,0.005 -oxford_land,2009-06-27,precipitation,0.0004 -oxford_land,2009-06-28,precipitation,0.0001 -oxford_land,2009-06-29,precipitation,0.0003 -oxford_land,2009-06-30,precipitation,0.0001 -oxford_land,2009-07-01,precipitation,0 -oxford_land,2009-07-02,precipitation,0.0006 -oxford_land,2009-07-03,precipitation,0.0001 -oxford_land,2009-07-04,precipitation,0 -oxford_land,2009-07-05,precipitation,0.0003 -oxford_land,2009-07-06,precipitation,0.0025 -oxford_land,2009-07-07,precipitation,0.011 -oxford_land,2009-07-08,precipitation,0.0013 -oxford_land,2009-07-09,precipitation,0 -oxford_land,2009-07-10,precipitation,0.0008 -oxford_land,2009-07-11,precipitation,0.0088 -oxford_land,2009-07-12,precipitation,0.0013 -oxford_land,2009-07-13,precipitation,0.0009 -oxford_land,2009-07-14,precipitation,0.0025 -oxford_land,2009-07-15,precipitation,0.0001 -oxford_land,2009-07-16,precipitation,0.0082 -oxford_land,2009-07-17,precipitation,0.0034 -oxford_land,2009-07-18,precipitation,0.0015 -oxford_land,2009-07-19,precipitation,0.0066 -oxford_land,2009-07-20,precipitation,0.0088 -oxford_land,2009-07-21,precipitation,0.0054 -oxford_land,2009-07-22,precipitation,0.0003 -oxford_land,2009-07-23,precipitation,0.0011 -oxford_land,2009-07-24,precipitation,0.0021 -oxford_land,2009-07-25,precipitation,0.0001 -oxford_land,2009-07-26,precipitation,0.0073 -oxford_land,2009-07-27,precipitation,0.0003 -oxford_land,2009-07-28,precipitation,0.0004 -oxford_land,2009-07-29,precipitation,0.0172 -oxford_land,2009-07-30,precipitation,0.0017 -oxford_land,2009-07-31,precipitation,0.0023 -oxford_land,2009-08-01,precipitation,0.0041 -oxford_land,2009-08-02,precipitation,0 -oxford_land,2009-08-03,precipitation,0.0016 -oxford_land,2009-08-04,precipitation,0.0217 -oxford_land,2009-08-05,precipitation,0.0006 -oxford_land,2009-08-06,precipitation,0.0185 -oxford_land,2009-08-07,precipitation,0 -oxford_land,2009-08-08,precipitation,0 -oxford_land,2009-08-09,precipitation,0 -oxford_land,2009-08-10,precipitation,0.0004 -oxford_land,2009-08-11,precipitation,0 -oxford_land,2009-08-12,precipitation,0.002 -oxford_land,2009-08-13,precipitation,0 -oxford_land,2009-08-14,precipitation,0 -oxford_land,2009-08-15,precipitation,0 -oxford_land,2009-08-16,precipitation,0 -oxford_land,2009-08-17,precipitation,0 -oxford_land,2009-08-18,precipitation,0 -oxford_land,2009-08-19,precipitation,0.0001 -oxford_land,2009-08-20,precipitation,0.0003 -oxford_land,2009-08-21,precipitation,0.0047 -oxford_land,2009-08-22,precipitation,0 -oxford_land,2009-08-23,precipitation,0 -oxford_land,2009-08-24,precipitation,0.0003 -oxford_land,2009-08-25,precipitation,0.0023 -oxford_land,2009-08-26,precipitation,0.0028 -oxford_land,2009-08-27,precipitation,0.0003 -oxford_land,2009-08-28,precipitation,0.0022 -oxford_land,2009-08-29,precipitation,0 -oxford_land,2009-08-30,precipitation,0.0002 -oxford_land,2009-08-31,precipitation,0.0001 -oxford_land,2009-09-01,precipitation,0.0071 -oxford_land,2009-09-02,precipitation,0.0087 -oxford_land,2009-09-03,precipitation,0.0008 -oxford_land,2009-09-04,precipitation,0 -oxford_land,2009-09-05,precipitation,0 -oxford_land,2009-09-06,precipitation,0 -oxford_land,2009-09-07,precipitation,0.0001 -oxford_land,2009-09-08,precipitation,0.0003 -oxford_land,2009-09-09,precipitation,0 -oxford_land,2009-09-10,precipitation,0 -oxford_land,2009-09-11,precipitation,0 -oxford_land,2009-09-12,precipitation,0 -oxford_land,2009-09-13,precipitation,0 -oxford_land,2009-09-14,precipitation,0 -oxford_land,2009-09-15,precipitation,0 -oxford_land,2009-09-16,precipitation,0 -oxford_land,2009-09-17,precipitation,0 -oxford_land,2009-09-18,precipitation,0 -oxford_land,2009-09-19,precipitation,0 -oxford_land,2009-09-20,precipitation,0 -oxford_land,2009-09-21,precipitation,0 -oxford_land,2009-09-22,precipitation,0.0001 -oxford_land,2009-09-23,precipitation,0 -oxford_land,2009-09-24,precipitation,0 -oxford_land,2009-09-25,precipitation,0 -oxford_land,2009-09-26,precipitation,0 -oxford_land,2009-09-27,precipitation,0 -oxford_land,2009-09-28,precipitation,0 -oxford_land,2009-09-29,precipitation,0 -oxford_land,2009-09-30,precipitation,0.0001 -oxford_land,2009-10-01,precipitation,0 -oxford_land,2009-10-02,precipitation,0.0002 -oxford_land,2009-10-03,precipitation,0.0007 -oxford_land,2009-10-04,precipitation,0 -oxford_land,2009-10-05,precipitation,0.0043 -oxford_land,2009-10-06,precipitation,0.0059 -oxford_land,2009-10-07,precipitation,0.006 -oxford_land,2009-10-08,precipitation,0 -oxford_land,2009-10-09,precipitation,0.0009 -oxford_land,2009-10-10,precipitation,0 -oxford_land,2009-10-11,precipitation,0.004 -oxford_land,2009-10-12,precipitation,0 -oxford_land,2009-10-13,precipitation,0 -oxford_land,2009-10-14,precipitation,0 -oxford_land,2009-10-15,precipitation,0.0016 -oxford_land,2009-10-16,precipitation,0 -oxford_land,2009-10-17,precipitation,0 -oxford_land,2009-10-18,precipitation,0 -oxford_land,2009-10-19,precipitation,0.0004 -oxford_land,2009-10-20,precipitation,0.0053 -oxford_land,2009-10-21,precipitation,0.0003 -oxford_land,2009-10-22,precipitation,0.0034 -oxford_land,2009-10-23,precipitation,0.0039 -oxford_land,2009-10-24,precipitation,0.0027 -oxford_land,2009-10-25,precipitation,0.0009 -oxford_land,2009-10-26,precipitation,0.0033 -oxford_land,2009-10-27,precipitation,0 -oxford_land,2009-10-28,precipitation,0 -oxford_land,2009-10-29,precipitation,0 -oxford_land,2009-10-30,precipitation,0.0073 -oxford_land,2009-10-31,precipitation,0.0061 -oxford_land,2009-11-01,precipitation,0.0054 -oxford_land,2009-11-02,precipitation,0.0054 -oxford_land,2009-11-03,precipitation,0.0056 -oxford_land,2009-11-04,precipitation,0.0022 -oxford_land,2009-11-05,precipitation,0.0011 -oxford_land,2009-11-06,precipitation,0.0021 -oxford_land,2009-11-07,precipitation,0.0005 -oxford_land,2009-11-08,precipitation,0.0008 -oxford_land,2009-11-09,precipitation,0.0027 -oxford_land,2009-11-10,precipitation,0.0015 -oxford_land,2009-11-11,precipitation,0.0039 -oxford_land,2009-11-12,precipitation,0.0113 -oxford_land,2009-11-13,precipitation,0.0147 -oxford_land,2009-11-14,precipitation,0.0046 -oxford_land,2009-11-15,precipitation,0.0041 -oxford_land,2009-11-16,precipitation,0.0006 -oxford_land,2009-11-17,precipitation,0.0002 -oxford_land,2009-11-18,precipitation,0.0003 -oxford_land,2009-11-19,precipitation,0.0046 -oxford_land,2009-11-20,precipitation,0.0008 -oxford_land,2009-11-21,precipitation,0.0112 -oxford_land,2009-11-22,precipitation,0.0128 -oxford_land,2009-11-23,precipitation,0.0037 -oxford_land,2009-11-24,precipitation,0.0103 -oxford_land,2009-11-25,precipitation,0.0054 -oxford_land,2009-11-26,precipitation,0.0057 -oxford_land,2009-11-27,precipitation,0.0039 -oxford_land,2009-11-28,precipitation,0.0053 -oxford_land,2009-11-29,precipitation,0.013 -oxford_land,2009-11-30,precipitation,0 -oxford_land,2009-12-01,precipitation,0.0018 -oxford_land,2009-12-02,precipitation,0.0039 -oxford_land,2009-12-03,precipitation,0.0002 -oxford_land,2009-12-04,precipitation,0.0044 -oxford_land,2009-12-05,precipitation,0.0152 -oxford_land,2009-12-06,precipitation,0.0013 -oxford_land,2009-12-07,precipitation,0.006 -oxford_land,2009-12-08,precipitation,0.003 -oxford_land,2009-12-09,precipitation,0.0012 -oxford_land,2009-12-10,precipitation,0.0001 -oxford_land,2009-12-11,precipitation,0.0001 -oxford_land,2009-12-12,precipitation,0.0001 -oxford_land,2009-12-13,precipitation,0.0002 -oxford_land,2009-12-14,precipitation,0.0029 -oxford_land,2009-12-15,precipitation,0.0015 -oxford_land,2009-12-16,precipitation,0.0028 -oxford_land,2009-12-17,precipitation,0 -oxford_land,2009-12-18,precipitation,0 -oxford_land,2009-12-19,precipitation,0.0007 -oxford_land,2009-12-20,precipitation,0.0001 -oxford_land,2009-12-21,precipitation,0.0011 -oxford_land,2009-12-22,precipitation,0.0004 -oxford_land,2009-12-23,precipitation,0.0045 -oxford_land,2009-12-24,precipitation,0.001 -oxford_land,2009-12-25,precipitation,0.001 -oxford_land,2009-12-26,precipitation,0.0018 -oxford_land,2009-12-27,precipitation,0 -oxford_land,2009-12-28,precipitation,0.0013 -oxford_land,2009-12-29,precipitation,0.0169 -oxford_land,2009-12-30,precipitation,0.0048 -oxford_land,2009-12-31,precipitation,0 -oxford_land,2010-01-01,precipitation,0 -oxford_land,2010-01-02,precipitation,0.0001 -oxford_land,2010-01-03,precipitation,0 -oxford_land,2010-01-04,precipitation,0.0001 -oxford_land,2010-01-05,precipitation,0.0087 -oxford_land,2010-01-06,precipitation,0.0017 -oxford_land,2010-01-07,precipitation,0.0001 -oxford_land,2010-01-08,precipitation,0 -oxford_land,2010-01-09,precipitation,0 -oxford_land,2010-01-10,precipitation,0.0031 -oxford_land,2010-01-11,precipitation,0.0003 -oxford_land,2010-01-12,precipitation,0.0042 -oxford_land,2010-01-13,precipitation,0.0016 -oxford_land,2010-01-14,precipitation,0.0031 -oxford_land,2010-01-15,precipitation,0.0078 -oxford_land,2010-01-16,precipitation,0.0031 -oxford_land,2010-01-17,precipitation,0.0001 -oxford_land,2010-01-18,precipitation,0.0001 -oxford_land,2010-01-19,precipitation,0.0055 -oxford_land,2010-01-20,precipitation,0.0051 -oxford_land,2010-01-21,precipitation,0.0084 -oxford_land,2010-01-22,precipitation,0.0108 -oxford_land,2010-01-23,precipitation,0 -oxford_land,2010-01-24,precipitation,0.0002 -oxford_land,2010-01-25,precipitation,0 -oxford_land,2010-01-26,precipitation,0 -oxford_land,2010-01-27,precipitation,0.0003 -oxford_land,2010-01-28,precipitation,0.0081 -oxford_land,2010-01-29,precipitation,0.0004 -oxford_land,2010-01-30,precipitation,0 -oxford_land,2010-01-31,precipitation,0 -oxford_land,2010-02-01,precipitation,0.0007 -oxford_land,2010-02-02,precipitation,0.0023 -oxford_land,2010-02-03,precipitation,0.0016 -oxford_land,2010-02-04,precipitation,0.0016 -oxford_land,2010-02-05,precipitation,0.0003 -oxford_land,2010-02-06,precipitation,0.0001 -oxford_land,2010-02-07,precipitation,0.0005 -oxford_land,2010-02-08,precipitation,0.0004 -oxford_land,2010-02-09,precipitation,0.0001 -oxford_land,2010-02-10,precipitation,0.0002 -oxford_land,2010-02-11,precipitation,0 -oxford_land,2010-02-12,precipitation,0.0003 -oxford_land,2010-02-13,precipitation,0.0004 -oxford_land,2010-02-14,precipitation,0 -oxford_land,2010-02-15,precipitation,0.0015 -oxford_land,2010-02-16,precipitation,0.0025 -oxford_land,2010-02-17,precipitation,0.0022 -oxford_land,2010-02-18,precipitation,0.0075 -oxford_land,2010-02-19,precipitation,0.0006 -oxford_land,2010-02-20,precipitation,0.0008 -oxford_land,2010-02-21,precipitation,0.0037 -oxford_land,2010-02-22,precipitation,0.0018 -oxford_land,2010-02-23,precipitation,0.0027 -oxford_land,2010-02-24,precipitation,0.0018 -oxford_land,2010-02-25,precipitation,0.0051 -oxford_land,2010-02-26,precipitation,0.0061 -oxford_land,2010-02-27,precipitation,0.01 -oxford_land,2010-02-28,precipitation,0.0005 -oxford_land,2010-03-01,precipitation,0 -oxford_land,2010-03-02,precipitation,0 -oxford_land,2010-03-03,precipitation,0 -oxford_land,2010-03-04,precipitation,0 -oxford_land,2010-03-05,precipitation,0 -oxford_land,2010-03-06,precipitation,0 -oxford_land,2010-03-07,precipitation,0 -oxford_land,2010-03-08,precipitation,0 -oxford_land,2010-03-09,precipitation,0 -oxford_land,2010-03-10,precipitation,0 -oxford_land,2010-03-11,precipitation,0.0001 -oxford_land,2010-03-12,precipitation,0.0011 -oxford_land,2010-03-13,precipitation,0 -oxford_land,2010-03-14,precipitation,0 -oxford_land,2010-03-15,precipitation,0 -oxford_land,2010-03-16,precipitation,0 -oxford_land,2010-03-17,precipitation,0 -oxford_land,2010-03-18,precipitation,0.0021 -oxford_land,2010-03-19,precipitation,0.0099 -oxford_land,2010-03-20,precipitation,0.0033 -oxford_land,2010-03-21,precipitation,0 -oxford_land,2010-03-22,precipitation,0.0026 -oxford_land,2010-03-23,precipitation,0.0035 -oxford_land,2010-03-24,precipitation,0.011 -oxford_land,2010-03-25,precipitation,0.006 -oxford_land,2010-03-26,precipitation,0.0025 -oxford_land,2010-03-27,precipitation,0.0003 -oxford_land,2010-03-28,precipitation,0.0028 -oxford_land,2010-03-29,precipitation,0.0023 -oxford_land,2010-03-30,precipitation,0.0058 -oxford_land,2010-03-31,precipitation,0.0007 -oxford_land,2010-04-01,precipitation,0.0042 -oxford_land,2010-04-02,precipitation,0.0039 -oxford_land,2010-04-03,precipitation,0.0074 -oxford_land,2010-04-04,precipitation,0.0002 -oxford_land,2010-04-05,precipitation,0 -oxford_land,2010-04-06,precipitation,0.0004 -oxford_land,2010-04-07,precipitation,0.0001 -oxford_land,2010-04-08,precipitation,0 -oxford_land,2010-04-09,precipitation,0 -oxford_land,2010-04-10,precipitation,0 -oxford_land,2010-04-11,precipitation,0 -oxford_land,2010-04-12,precipitation,0 -oxford_land,2010-04-13,precipitation,0 -oxford_land,2010-04-14,precipitation,0 -oxford_land,2010-04-15,precipitation,0 -oxford_land,2010-04-16,precipitation,0 -oxford_land,2010-04-17,precipitation,0 -oxford_land,2010-04-18,precipitation,0 -oxford_land,2010-04-19,precipitation,0 -oxford_land,2010-04-20,precipitation,0 -oxford_land,2010-04-21,precipitation,0 -oxford_land,2010-04-22,precipitation,0 -oxford_land,2010-04-23,precipitation,0 -oxford_land,2010-04-24,precipitation,0.0016 -oxford_land,2010-04-25,precipitation,0.0006 -oxford_land,2010-04-26,precipitation,0 -oxford_land,2010-04-27,precipitation,0 -oxford_land,2010-04-28,precipitation,0 -oxford_land,2010-04-29,precipitation,0.0041 -oxford_land,2010-04-30,precipitation,0.0013 -oxford_land,2010-05-01,precipitation,0.0199 -oxford_land,2010-05-02,precipitation,0.0003 -oxford_land,2010-05-03,precipitation,0.0003 -oxford_land,2010-05-04,precipitation,0 -oxford_land,2010-05-05,precipitation,0.0004 -oxford_land,2010-05-06,precipitation,0 -oxford_land,2010-05-07,precipitation,0.001 -oxford_land,2010-05-08,precipitation,0.0007 -oxford_land,2010-05-09,precipitation,0 -oxford_land,2010-05-10,precipitation,0 -oxford_land,2010-05-11,precipitation,0 -oxford_land,2010-05-12,precipitation,0.0008 -oxford_land,2010-05-13,precipitation,0.0001 -oxford_land,2010-05-14,precipitation,0 -oxford_land,2010-05-15,precipitation,0.0002 -oxford_land,2010-05-16,precipitation,0.0032 -oxford_land,2010-05-17,precipitation,0 -oxford_land,2010-05-18,precipitation,0 -oxford_land,2010-05-19,precipitation,0 -oxford_land,2010-05-20,precipitation,0 -oxford_land,2010-05-21,precipitation,0 -oxford_land,2010-05-22,precipitation,0 -oxford_land,2010-05-23,precipitation,0 -oxford_land,2010-05-24,precipitation,0 -oxford_land,2010-05-25,precipitation,0 -oxford_land,2010-05-26,precipitation,0.0049 -oxford_land,2010-05-27,precipitation,0 -oxford_land,2010-05-28,precipitation,0.0005 -oxford_land,2010-05-29,precipitation,0.0065 -oxford_land,2010-05-30,precipitation,0 -oxford_land,2010-05-31,precipitation,0.0017 -oxford_land,2010-06-01,precipitation,0.0027 -oxford_land,2010-06-02,precipitation,0 -oxford_land,2010-06-03,precipitation,0 -oxford_land,2010-06-04,precipitation,0 -oxford_land,2010-06-05,precipitation,0 -oxford_land,2010-06-06,precipitation,0.0023 -oxford_land,2010-06-07,precipitation,0.0129 -oxford_land,2010-06-08,precipitation,0.0079 -oxford_land,2010-06-09,precipitation,0.0012 -oxford_land,2010-06-10,precipitation,0 -oxford_land,2010-06-11,precipitation,0 -oxford_land,2010-06-12,precipitation,0.0002 -oxford_land,2010-06-13,precipitation,0.0051 -oxford_land,2010-06-14,precipitation,0.0001 -oxford_land,2010-06-15,precipitation,0.0002 -oxford_land,2010-06-16,precipitation,0 -oxford_land,2010-06-17,precipitation,0 -oxford_land,2010-06-18,precipitation,0.0007 -oxford_land,2010-06-19,precipitation,0 -oxford_land,2010-06-20,precipitation,0 -oxford_land,2010-06-21,precipitation,0 -oxford_land,2010-06-22,precipitation,0 -oxford_land,2010-06-23,precipitation,0 -oxford_land,2010-06-24,precipitation,0 -oxford_land,2010-06-25,precipitation,0 -oxford_land,2010-06-26,precipitation,0 -oxford_land,2010-06-27,precipitation,0 -oxford_land,2010-06-28,precipitation,0.0003 -oxford_land,2010-06-29,precipitation,0.0001 -oxford_land,2010-06-30,precipitation,0 -oxford_land,2010-07-01,precipitation,0.0005 -oxford_land,2010-07-02,precipitation,0.0001 -oxford_land,2010-07-03,precipitation,0 -oxford_land,2010-07-04,precipitation,0 -oxford_land,2010-07-05,precipitation,0 -oxford_land,2010-07-06,precipitation,0 -oxford_land,2010-07-07,precipitation,0 -oxford_land,2010-07-08,precipitation,0 -oxford_land,2010-07-09,precipitation,0 -oxford_land,2010-07-10,precipitation,0.0002 -oxford_land,2010-07-11,precipitation,0.0002 -oxford_land,2010-07-12,precipitation,0.0006 -oxford_land,2010-07-13,precipitation,0.0026 -oxford_land,2010-07-14,precipitation,0.0038 -oxford_land,2010-07-15,precipitation,0.0067 -oxford_land,2010-07-16,precipitation,0.0035 -oxford_land,2010-07-17,precipitation,0 -oxford_land,2010-07-18,precipitation,0 -oxford_land,2010-07-19,precipitation,0.0003 -oxford_land,2010-07-20,precipitation,0.0006 -oxford_land,2010-07-21,precipitation,0.0001 -oxford_land,2010-07-22,precipitation,0.0061 -oxford_land,2010-07-23,precipitation,0 -oxford_land,2010-07-24,precipitation,0 -oxford_land,2010-07-25,precipitation,0.0011 -oxford_land,2010-07-26,precipitation,0.0002 -oxford_land,2010-07-27,precipitation,0.0007 -oxford_land,2010-07-28,precipitation,0 -oxford_land,2010-07-29,precipitation,0 -oxford_land,2010-07-30,precipitation,0.0011 -oxford_land,2010-07-31,precipitation,0 -oxford_land,2010-08-01,precipitation,0 -oxford_land,2010-08-02,precipitation,0 -oxford_land,2010-08-03,precipitation,0.0004 -oxford_land,2010-08-04,precipitation,0.0036 -oxford_land,2010-08-05,precipitation,0 -oxford_land,2010-08-06,precipitation,0.0009 -oxford_land,2010-08-07,precipitation,0.0015 -oxford_land,2010-08-08,precipitation,0 -oxford_land,2010-08-09,precipitation,0.0042 -oxford_land,2010-08-10,precipitation,0.0089 -oxford_land,2010-08-11,precipitation,0 -oxford_land,2010-08-12,precipitation,0.0013 -oxford_land,2010-08-13,precipitation,0.0058 -oxford_land,2010-08-14,precipitation,0.0038 -oxford_land,2010-08-15,precipitation,0 -oxford_land,2010-08-16,precipitation,0.0007 -oxford_land,2010-08-17,precipitation,0.0002 -oxford_land,2010-08-18,precipitation,0.0008 -oxford_land,2010-08-19,precipitation,0.0041 -oxford_land,2010-08-20,precipitation,0.0024 -oxford_land,2010-08-21,precipitation,0.0044 -oxford_land,2010-08-22,precipitation,0.0299 -oxford_land,2010-08-23,precipitation,0.0065 -oxford_land,2010-08-24,precipitation,0.0001 -oxford_land,2010-08-25,precipitation,0.0349 -oxford_land,2010-08-26,precipitation,0.0057 -oxford_land,2010-08-27,precipitation,0.0001 -oxford_land,2010-08-28,precipitation,0 -oxford_land,2010-08-29,precipitation,0.0011 -oxford_land,2010-08-30,precipitation,0 -oxford_land,2010-08-31,precipitation,0 -oxford_land,2010-09-01,precipitation,0 -oxford_land,2010-09-02,precipitation,0 -oxford_land,2010-09-03,precipitation,0 -oxford_land,2010-09-04,precipitation,0.0002 -oxford_land,2010-09-05,precipitation,0.0019 -oxford_land,2010-09-06,precipitation,0.0106 -oxford_land,2010-09-07,precipitation,0.0005 -oxford_land,2010-09-08,precipitation,0 -oxford_land,2010-09-09,precipitation,0.0004 -oxford_land,2010-09-10,precipitation,0.001 -oxford_land,2010-09-11,precipitation,0.0001 -oxford_land,2010-09-12,precipitation,0 -oxford_land,2010-09-13,precipitation,0.0006 -oxford_land,2010-09-14,precipitation,0.002 -oxford_land,2010-09-15,precipitation,0.0002 -oxford_land,2010-09-16,precipitation,0.0002 -oxford_land,2010-09-17,precipitation,0 -oxford_land,2010-09-18,precipitation,0.0001 -oxford_land,2010-09-19,precipitation,0.0001 -oxford_land,2010-09-20,precipitation,0 -oxford_land,2010-09-21,precipitation,0 -oxford_land,2010-09-22,precipitation,0.0053 -oxford_land,2010-09-23,precipitation,0.0032 -oxford_land,2010-09-24,precipitation,0.0001 -oxford_land,2010-09-25,precipitation,0 -oxford_land,2010-09-26,precipitation,0.0003 -oxford_land,2010-09-27,precipitation,0.0004 -oxford_land,2010-09-28,precipitation,0.0038 -oxford_land,2010-09-29,precipitation,0.0043 -oxford_land,2010-09-30,precipitation,0.0079 -oxford_land,2010-10-01,precipitation,0.0123 -oxford_land,2010-10-02,precipitation,0.0117 -oxford_land,2010-10-03,precipitation,0.0012 -oxford_land,2010-10-04,precipitation,0.0013 -oxford_land,2010-10-05,precipitation,0.0048 -oxford_land,2010-10-06,precipitation,0.0001 -oxford_land,2010-10-07,precipitation,0.0005 -oxford_land,2010-10-08,precipitation,0 -oxford_land,2010-10-09,precipitation,0 -oxford_land,2010-10-10,precipitation,0 -oxford_land,2010-10-11,precipitation,0 -oxford_land,2010-10-12,precipitation,0 -oxford_land,2010-10-13,precipitation,0 -oxford_land,2010-10-14,precipitation,0 -oxford_land,2010-10-15,precipitation,0.0007 -oxford_land,2010-10-16,precipitation,0.0001 -oxford_land,2010-10-17,precipitation,0 -oxford_land,2010-10-18,precipitation,0.001 -oxford_land,2010-10-19,precipitation,0.0031 -oxford_land,2010-10-20,precipitation,0 -oxford_land,2010-10-21,precipitation,0 -oxford_land,2010-10-22,precipitation,0.0052 -oxford_land,2010-10-23,precipitation,0.0018 -oxford_land,2010-10-24,precipitation,0.0001 -oxford_land,2010-10-25,precipitation,0.0007 -oxford_land,2010-10-26,precipitation,0.0054 -oxford_land,2010-10-27,precipitation,0.0007 -oxford_land,2010-10-28,precipitation,0.0002 -oxford_land,2010-10-29,precipitation,0.0002 -oxford_land,2010-10-30,precipitation,0.0006 -oxford_land,2010-10-31,precipitation,0.0002 -oxford_land,2010-11-01,precipitation,0.0003 -oxford_land,2010-11-02,precipitation,0.0004 -oxford_land,2010-11-03,precipitation,0.0004 -oxford_land,2010-11-04,precipitation,0.0003 -oxford_land,2010-11-05,precipitation,0.0115 -oxford_land,2010-11-06,precipitation,0.005 -oxford_land,2010-11-07,precipitation,0.0122 -oxford_land,2010-11-08,precipitation,0.0046 -oxford_land,2010-11-09,precipitation,0.0002 -oxford_land,2010-11-10,precipitation,0.0043 -oxford_land,2010-11-11,precipitation,0.0031 -oxford_land,2010-11-12,precipitation,0.0029 -oxford_land,2010-11-13,precipitation,0.001 -oxford_land,2010-11-14,precipitation,0.0004 -oxford_land,2010-11-15,precipitation,0.0002 -oxford_land,2010-11-16,precipitation,0.0012 -oxford_land,2010-11-17,precipitation,0.0044 -oxford_land,2010-11-18,precipitation,0.0005 -oxford_land,2010-11-19,precipitation,0.0009 -oxford_land,2010-11-20,precipitation,0.0003 -oxford_land,2010-11-21,precipitation,0.0001 -oxford_land,2010-11-22,precipitation,0 -oxford_land,2010-11-23,precipitation,0 -oxford_land,2010-11-24,precipitation,0 -oxford_land,2010-11-25,precipitation,0 -oxford_land,2010-11-26,precipitation,0 -oxford_land,2010-11-27,precipitation,0.0001 -oxford_land,2010-11-28,precipitation,0 -oxford_land,2010-11-29,precipitation,0.0009 -oxford_land,2010-11-30,precipitation,0.0008 -oxford_land,2010-12-01,precipitation,0.0002 -oxford_land,2010-12-02,precipitation,0 -oxford_land,2010-12-03,precipitation,0.0022 -oxford_land,2010-12-04,precipitation,0.0022 -oxford_land,2010-12-05,precipitation,0.0001 -oxford_land,2010-12-06,precipitation,0 -oxford_land,2010-12-07,precipitation,0 -oxford_land,2010-12-08,precipitation,0.0001 -oxford_land,2010-12-09,precipitation,0.0001 -oxford_land,2010-12-10,precipitation,0 -oxford_land,2010-12-11,precipitation,0 -oxford_land,2010-12-12,precipitation,0 -oxford_land,2010-12-13,precipitation,0 -oxford_land,2010-12-14,precipitation,0.0009 -oxford_land,2010-12-15,precipitation,0.0001 -oxford_land,2010-12-16,precipitation,0.0036 -oxford_land,2010-12-17,precipitation,0.0038 -oxford_land,2010-12-18,precipitation,0.0049 -oxford_land,2010-12-19,precipitation,0 -oxford_land,2010-12-20,precipitation,0.0009 -oxford_land,2010-12-21,precipitation,0.0005 -oxford_land,2010-12-22,precipitation,0.0001 -oxford_land,2010-12-23,precipitation,0 -oxford_land,2010-12-24,precipitation,0 -oxford_land,2010-12-25,precipitation,0 -oxford_land,2010-12-26,precipitation,0.0001 -oxford_land,2010-12-27,precipitation,0.0062 -oxford_land,2010-12-28,precipitation,0.0019 -oxford_land,2010-12-29,precipitation,0.0009 -oxford_land,2010-12-30,precipitation,0.0001 -oxford_land,2010-12-31,precipitation,0 -oxford_land,2011-01-01,precipitation,0.0009 -oxford_land,2011-01-02,precipitation,0 -oxford_land,2011-01-03,precipitation,0.0002 -oxford_land,2011-01-04,precipitation,0.0005 -oxford_land,2011-01-05,precipitation,0.0018 -oxford_land,2011-01-06,precipitation,0.0106 -oxford_land,2011-01-07,precipitation,0.005 -oxford_land,2011-01-08,precipitation,0 -oxford_land,2011-01-09,precipitation,0.0001 -oxford_land,2011-01-10,precipitation,0.0076 -oxford_land,2011-01-11,precipitation,0.0069 -oxford_land,2011-01-12,precipitation,0.0098 -oxford_land,2011-01-13,precipitation,0.0057 -oxford_land,2011-01-14,precipitation,0.0012 -oxford_land,2011-01-15,precipitation,0.0004 -oxford_land,2011-01-16,precipitation,0.0062 -oxford_land,2011-01-17,precipitation,0.0066 -oxford_land,2011-01-18,precipitation,0 -oxford_land,2011-01-19,precipitation,0.0001 -oxford_land,2011-01-20,precipitation,0 -oxford_land,2011-01-21,precipitation,0 -oxford_land,2011-01-22,precipitation,0.0001 -oxford_land,2011-01-23,precipitation,0 -oxford_land,2011-01-24,precipitation,0 -oxford_land,2011-01-25,precipitation,0.0017 -oxford_land,2011-01-26,precipitation,0.0003 -oxford_land,2011-01-27,precipitation,0 -oxford_land,2011-01-28,precipitation,0 -oxford_land,2011-01-29,precipitation,0 -oxford_land,2011-01-30,precipitation,0 -oxford_land,2011-01-31,precipitation,0 -oxford_land,2011-02-01,precipitation,0.0001 -oxford_land,2011-02-02,precipitation,0.001 -oxford_land,2011-02-03,precipitation,0.0003 -oxford_land,2011-02-04,precipitation,0.0005 -oxford_land,2011-02-05,precipitation,0.0002 -oxford_land,2011-02-06,precipitation,0 -oxford_land,2011-02-07,precipitation,0.0002 -oxford_land,2011-02-08,precipitation,0.0001 -oxford_land,2011-02-09,precipitation,0.0003 -oxford_land,2011-02-10,precipitation,0.005 -oxford_land,2011-02-11,precipitation,0.0008 -oxford_land,2011-02-12,precipitation,0.0014 -oxford_land,2011-02-13,precipitation,0.0109 -oxford_land,2011-02-14,precipitation,0.0011 -oxford_land,2011-02-15,precipitation,0.0046 -oxford_land,2011-02-16,precipitation,0.0001 -oxford_land,2011-02-17,precipitation,0 -oxford_land,2011-02-18,precipitation,0.0079 -oxford_land,2011-02-19,precipitation,0.0005 -oxford_land,2011-02-20,precipitation,0.0021 -oxford_land,2011-02-21,precipitation,0.002 -oxford_land,2011-02-22,precipitation,0.0026 -oxford_land,2011-02-23,precipitation,0.0006 -oxford_land,2011-02-24,precipitation,0 -oxford_land,2011-02-25,precipitation,0.0112 -oxford_land,2011-02-26,precipitation,0.0016 -oxford_land,2011-02-27,precipitation,0.004 -oxford_land,2011-02-28,precipitation,0.0001 -oxford_land,2011-03-01,precipitation,0 -oxford_land,2011-03-02,precipitation,0 -oxford_land,2011-03-03,precipitation,0 -oxford_land,2011-03-04,precipitation,0 -oxford_land,2011-03-05,precipitation,0.0002 -oxford_land,2011-03-06,precipitation,0 -oxford_land,2011-03-07,precipitation,0 -oxford_land,2011-03-08,precipitation,0.0008 -oxford_land,2011-03-09,precipitation,0.0005 -oxford_land,2011-03-10,precipitation,0 -oxford_land,2011-03-11,precipitation,0 -oxford_land,2011-03-12,precipitation,0.0013 -oxford_land,2011-03-13,precipitation,0 -oxford_land,2011-03-14,precipitation,0 -oxford_land,2011-03-15,precipitation,0 -oxford_land,2011-03-16,precipitation,0 -oxford_land,2011-03-17,precipitation,0.0004 -oxford_land,2011-03-18,precipitation,0.002 -oxford_land,2011-03-19,precipitation,0 -oxford_land,2011-03-20,precipitation,0 -oxford_land,2011-03-21,precipitation,0 -oxford_land,2011-03-22,precipitation,0 -oxford_land,2011-03-23,precipitation,0 -oxford_land,2011-03-24,precipitation,0 -oxford_land,2011-03-25,precipitation,0 -oxford_land,2011-03-26,precipitation,0 -oxford_land,2011-03-27,precipitation,0 -oxford_land,2011-03-28,precipitation,0 -oxford_land,2011-03-29,precipitation,0.0002 -oxford_land,2011-03-30,precipitation,0.0052 -oxford_land,2011-03-31,precipitation,0 -oxford_land,2011-04-01,precipitation,0.0001 -oxford_land,2011-04-02,precipitation,0 -oxford_land,2011-04-03,precipitation,0.0013 -oxford_land,2011-04-04,precipitation,0.0006 -oxford_land,2011-04-05,precipitation,0 -oxford_land,2011-04-06,precipitation,0 -oxford_land,2011-04-07,precipitation,0 -oxford_land,2011-04-08,precipitation,0 -oxford_land,2011-04-09,precipitation,0 -oxford_land,2011-04-10,precipitation,0 -oxford_land,2011-04-11,precipitation,0.0002 -oxford_land,2011-04-12,precipitation,0 -oxford_land,2011-04-13,precipitation,0.0007 -oxford_land,2011-04-14,precipitation,0 -oxford_land,2011-04-15,precipitation,0 -oxford_land,2011-04-16,precipitation,0 -oxford_land,2011-04-17,precipitation,0 -oxford_land,2011-04-18,precipitation,0 -oxford_land,2011-04-19,precipitation,0 -oxford_land,2011-04-20,precipitation,0 -oxford_land,2011-04-21,precipitation,0 -oxford_land,2011-04-22,precipitation,0 -oxford_land,2011-04-23,precipitation,0.0001 -oxford_land,2011-04-24,precipitation,0 -oxford_land,2011-04-25,precipitation,0 -oxford_land,2011-04-26,precipitation,0.0001 -oxford_land,2011-04-27,precipitation,0 -oxford_land,2011-04-28,precipitation,0.0001 -oxford_land,2011-04-29,precipitation,0.0007 -oxford_land,2011-04-30,precipitation,0.0001 -oxford_land,2011-05-01,precipitation,0 -oxford_land,2011-05-02,precipitation,0 -oxford_land,2011-05-03,precipitation,0 -oxford_land,2011-05-04,precipitation,0 -oxford_land,2011-05-05,precipitation,0 -oxford_land,2011-05-06,precipitation,0.0091 -oxford_land,2011-05-07,precipitation,0.0169 -oxford_land,2011-05-08,precipitation,0.0005 -oxford_land,2011-05-09,precipitation,0.0006 -oxford_land,2011-05-10,precipitation,0.0001 -oxford_land,2011-05-11,precipitation,0.0001 -oxford_land,2011-05-12,precipitation,0.0004 -oxford_land,2011-05-13,precipitation,0 -oxford_land,2011-05-14,precipitation,0.0002 -oxford_land,2011-05-15,precipitation,0 -oxford_land,2011-05-16,precipitation,0 -oxford_land,2011-05-17,precipitation,0.0003 -oxford_land,2011-05-18,precipitation,0.0002 -oxford_land,2011-05-19,precipitation,0 -oxford_land,2011-05-20,precipitation,0 -oxford_land,2011-05-21,precipitation,0.0016 -oxford_land,2011-05-22,precipitation,0.0004 -oxford_land,2011-05-23,precipitation,0.0005 -oxford_land,2011-05-24,precipitation,0 -oxford_land,2011-05-25,precipitation,0.0011 -oxford_land,2011-05-26,precipitation,0.0029 -oxford_land,2011-05-27,precipitation,0.0001 -oxford_land,2011-05-28,precipitation,0.0003 -oxford_land,2011-05-29,precipitation,0.0011 -oxford_land,2011-05-30,precipitation,0.005 -oxford_land,2011-05-31,precipitation,0 -oxford_land,2011-06-01,precipitation,0 -oxford_land,2011-06-02,precipitation,0 -oxford_land,2011-06-03,precipitation,0 -oxford_land,2011-06-04,precipitation,0.0006 -oxford_land,2011-06-05,precipitation,0.0014 -oxford_land,2011-06-06,precipitation,0.0003 -oxford_land,2011-06-07,precipitation,0.0021 -oxford_land,2011-06-08,precipitation,0.0006 -oxford_land,2011-06-09,precipitation,0.0001 -oxford_land,2011-06-10,precipitation,0.0037 -oxford_land,2011-06-11,precipitation,0.0039 -oxford_land,2011-06-12,precipitation,0.0173 -oxford_land,2011-06-13,precipitation,0 -oxford_land,2011-06-14,precipitation,0 -oxford_land,2011-06-15,precipitation,0.0016 -oxford_land,2011-06-16,precipitation,0.0009 -oxford_land,2011-06-17,precipitation,0.0039 -oxford_land,2011-06-18,precipitation,0.0033 -oxford_land,2011-06-19,precipitation,0 -oxford_land,2011-06-20,precipitation,0.005 -oxford_land,2011-06-21,precipitation,0.001 -oxford_land,2011-06-22,precipitation,0.0004 -oxford_land,2011-06-23,precipitation,0.0008 -oxford_land,2011-06-24,precipitation,0.0068 -oxford_land,2011-06-25,precipitation,0 -oxford_land,2011-06-26,precipitation,0 -oxford_land,2011-06-27,precipitation,0.0001 -oxford_land,2011-06-28,precipitation,0 -oxford_land,2011-06-29,precipitation,0 -oxford_land,2011-06-30,precipitation,0 -oxford_land,2011-07-01,precipitation,0 -oxford_land,2011-07-02,precipitation,0 -oxford_land,2011-07-03,precipitation,0 -oxford_land,2011-07-04,precipitation,0 -oxford_land,2011-07-05,precipitation,0.0026 -oxford_land,2011-07-06,precipitation,0.0041 -oxford_land,2011-07-07,precipitation,0.0034 -oxford_land,2011-07-08,precipitation,0.0116 -oxford_land,2011-07-09,precipitation,0.0008 -oxford_land,2011-07-10,precipitation,0 -oxford_land,2011-07-11,precipitation,0 -oxford_land,2011-07-12,precipitation,0 -oxford_land,2011-07-13,precipitation,0 -oxford_land,2011-07-14,precipitation,0 -oxford_land,2011-07-15,precipitation,0.0053 -oxford_land,2011-07-16,precipitation,0.0087 -oxford_land,2011-07-17,precipitation,0.0031 -oxford_land,2011-07-18,precipitation,0.0011 -oxford_land,2011-07-19,precipitation,0.0002 -oxford_land,2011-07-20,precipitation,0.0006 -oxford_land,2011-07-21,precipitation,0.0008 -oxford_land,2011-07-22,precipitation,0.0001 -oxford_land,2011-07-23,precipitation,0 -oxford_land,2011-07-24,precipitation,0 -oxford_land,2011-07-25,precipitation,0 -oxford_land,2011-07-26,precipitation,0 -oxford_land,2011-07-27,precipitation,0 -oxford_land,2011-07-28,precipitation,0.0002 -oxford_land,2011-07-29,precipitation,0 -oxford_land,2011-07-30,precipitation,0 -oxford_land,2011-07-31,precipitation,0.0002 -oxford_land,2011-08-01,precipitation,0 -oxford_land,2011-08-02,precipitation,0.001 -oxford_land,2011-08-03,precipitation,0.0043 -oxford_land,2011-08-04,precipitation,0.0051 -oxford_land,2011-08-05,precipitation,0 -oxford_land,2011-08-06,precipitation,0.0004 -oxford_land,2011-08-07,precipitation,0.0034 -oxford_land,2011-08-08,precipitation,0 -oxford_land,2011-08-09,precipitation,0 -oxford_land,2011-08-10,precipitation,0.0003 -oxford_land,2011-08-11,precipitation,0.0003 -oxford_land,2011-08-12,precipitation,0.002 -oxford_land,2011-08-13,precipitation,0 -oxford_land,2011-08-14,precipitation,0 -oxford_land,2011-08-15,precipitation,0.0007 -oxford_land,2011-08-16,precipitation,0.0003 -oxford_land,2011-08-17,precipitation,0.001 -oxford_land,2011-08-18,precipitation,0.0092 -oxford_land,2011-08-19,precipitation,0 -oxford_land,2011-08-20,precipitation,0.0004 -oxford_land,2011-08-21,precipitation,0 -oxford_land,2011-08-22,precipitation,0.0038 -oxford_land,2011-08-23,precipitation,0.0001 -oxford_land,2011-08-24,precipitation,0.0095 -oxford_land,2011-08-25,precipitation,0.0023 -oxford_land,2011-08-26,precipitation,0.0102 -oxford_land,2011-08-27,precipitation,0.0007 -oxford_land,2011-08-28,precipitation,0.0004 -oxford_land,2011-08-29,precipitation,0 -oxford_land,2011-08-30,precipitation,0 -oxford_land,2011-08-31,precipitation,0 -oxford_land,2011-09-01,precipitation,0 -oxford_land,2011-09-02,precipitation,0 -oxford_land,2011-09-03,precipitation,0.0018 -oxford_land,2011-09-04,precipitation,0.0029 -oxford_land,2011-09-05,precipitation,0.0035 -oxford_land,2011-09-06,precipitation,0.0022 -oxford_land,2011-09-07,precipitation,0.001 -oxford_land,2011-09-08,precipitation,0.0026 -oxford_land,2011-09-09,precipitation,0.0001 -oxford_land,2011-09-10,precipitation,0.0003 -oxford_land,2011-09-11,precipitation,0.0025 -oxford_land,2011-09-12,precipitation,0.0001 -oxford_land,2011-09-13,precipitation,0.002 -oxford_land,2011-09-14,precipitation,0 -oxford_land,2011-09-15,precipitation,0 -oxford_land,2011-09-16,precipitation,0.0008 -oxford_land,2011-09-17,precipitation,0.002 -oxford_land,2011-09-18,precipitation,0.0008 -oxford_land,2011-09-19,precipitation,0.0001 -oxford_land,2011-09-20,precipitation,0.0095 -oxford_land,2011-09-21,precipitation,0.0008 -oxford_land,2011-09-22,precipitation,0 -oxford_land,2011-09-23,precipitation,0 -oxford_land,2011-09-24,precipitation,0.0002 -oxford_land,2011-09-25,precipitation,0.0055 -oxford_land,2011-09-26,precipitation,0 -oxford_land,2011-09-27,precipitation,0.0001 -oxford_land,2011-09-28,precipitation,0 -oxford_land,2011-09-29,precipitation,0 -oxford_land,2011-09-30,precipitation,0 -oxford_land,2011-10-01,precipitation,0 -oxford_land,2011-10-02,precipitation,0 -oxford_land,2011-10-03,precipitation,0.0002 -oxford_land,2011-10-04,precipitation,0.0005 -oxford_land,2011-10-05,precipitation,0.0042 -oxford_land,2011-10-06,precipitation,0.0003 -oxford_land,2011-10-07,precipitation,0.0012 -oxford_land,2011-10-08,precipitation,0.0001 -oxford_land,2011-10-09,precipitation,0 -oxford_land,2011-10-10,precipitation,0 -oxford_land,2011-10-11,precipitation,0 -oxford_land,2011-10-12,precipitation,0 -oxford_land,2011-10-13,precipitation,0 -oxford_land,2011-10-14,precipitation,0 -oxford_land,2011-10-15,precipitation,0 -oxford_land,2011-10-16,precipitation,0 -oxford_land,2011-10-17,precipitation,0.0053 -oxford_land,2011-10-18,precipitation,0 -oxford_land,2011-10-19,precipitation,0.0009 -oxford_land,2011-10-20,precipitation,0 -oxford_land,2011-10-21,precipitation,0 -oxford_land,2011-10-22,precipitation,0 -oxford_land,2011-10-23,precipitation,0 -oxford_land,2011-10-24,precipitation,0.0023 -oxford_land,2011-10-25,precipitation,0.0047 -oxford_land,2011-10-26,precipitation,0.0085 -oxford_land,2011-10-27,precipitation,0.0056 -oxford_land,2011-10-28,precipitation,0 -oxford_land,2011-10-29,precipitation,0.0005 -oxford_land,2011-10-30,precipitation,0.0002 -oxford_land,2011-10-31,precipitation,0.0017 -oxford_land,2011-11-01,precipitation,0.0001 -oxford_land,2011-11-02,precipitation,0.0065 -oxford_land,2011-11-03,precipitation,0.004 -oxford_land,2011-11-04,precipitation,0.0041 -oxford_land,2011-11-05,precipitation,0 -oxford_land,2011-11-06,precipitation,0 -oxford_land,2011-11-07,precipitation,0.0007 -oxford_land,2011-11-08,precipitation,0.0009 -oxford_land,2011-11-09,precipitation,0.0008 -oxford_land,2011-11-10,precipitation,0.0002 -oxford_land,2011-11-11,precipitation,0.0057 -oxford_land,2011-11-12,precipitation,0 -oxford_land,2011-11-13,precipitation,0 -oxford_land,2011-11-14,precipitation,0.0001 -oxford_land,2011-11-15,precipitation,0 -oxford_land,2011-11-16,precipitation,0.0007 -oxford_land,2011-11-17,precipitation,0 -oxford_land,2011-11-18,precipitation,0 -oxford_land,2011-11-19,precipitation,0.0001 -oxford_land,2011-11-20,precipitation,0 -oxford_land,2011-11-21,precipitation,0.0037 -oxford_land,2011-11-22,precipitation,0.0001 -oxford_land,2011-11-23,precipitation,0.0001 -oxford_land,2011-11-24,precipitation,0.0006 -oxford_land,2011-11-25,precipitation,0.0001 -oxford_land,2011-11-26,precipitation,0.0004 -oxford_land,2011-11-27,precipitation,0 -oxford_land,2011-11-28,precipitation,0.0019 -oxford_land,2011-11-29,precipitation,0.0038 -oxford_land,2011-11-30,precipitation,0.0022 -oxford_land,2011-12-01,precipitation,0 -oxford_land,2011-12-02,precipitation,0.0012 -oxford_land,2011-12-03,precipitation,0 -oxford_land,2011-12-04,precipitation,0.0003 -oxford_land,2011-12-05,precipitation,0 -oxford_land,2011-12-06,precipitation,0.0012 -oxford_land,2011-12-07,precipitation,0 -oxford_land,2011-12-08,precipitation,0.0055 -oxford_land,2011-12-09,precipitation,0 -oxford_land,2011-12-10,precipitation,0.0002 -oxford_land,2011-12-11,precipitation,0.0066 -oxford_land,2011-12-12,precipitation,0.0188 -oxford_land,2011-12-13,precipitation,0.0107 -oxford_land,2011-12-14,precipitation,0.0091 -oxford_land,2011-12-15,precipitation,0.0072 -oxford_land,2011-12-16,precipitation,0.0026 -oxford_land,2011-12-17,precipitation,0.0005 -oxford_land,2011-12-18,precipitation,0.0005 -oxford_land,2011-12-19,precipitation,0.0042 -oxford_land,2011-12-20,precipitation,0.0045 -oxford_land,2011-12-21,precipitation,0.0001 -oxford_land,2011-12-22,precipitation,0 -oxford_land,2011-12-23,precipitation,0.0072 -oxford_land,2011-12-24,precipitation,0.0003 -oxford_land,2011-12-25,precipitation,0.0007 -oxford_land,2011-12-26,precipitation,0.0002 -oxford_land,2011-12-27,precipitation,0.0002 -oxford_land,2011-12-28,precipitation,0.0001 -oxford_land,2011-12-29,precipitation,0.0029 -oxford_land,2011-12-30,precipitation,0.0063 -oxford_land,2011-12-31,precipitation,0.0007 -oxford_land,2012-01-01,precipitation,0.0036 -oxford_land,2012-01-02,precipitation,0.0085 -oxford_land,2012-01-03,precipitation,0.0078 -oxford_land,2012-01-04,precipitation,0.0053 -oxford_land,2012-01-05,precipitation,0.0003 -oxford_land,2012-01-06,precipitation,0.0005 -oxford_land,2012-01-07,precipitation,0 -oxford_land,2012-01-08,precipitation,0 -oxford_land,2012-01-09,precipitation,0.0003 -oxford_land,2012-01-10,precipitation,0 -oxford_land,2012-01-11,precipitation,0 -oxford_land,2012-01-12,precipitation,0 -oxford_land,2012-01-13,precipitation,0.0001 -oxford_land,2012-01-14,precipitation,0 -oxford_land,2012-01-15,precipitation,0 -oxford_land,2012-01-16,precipitation,0 -oxford_land,2012-01-17,precipitation,0.0004 -oxford_land,2012-01-18,precipitation,0.0042 -oxford_land,2012-01-19,precipitation,0.0004 -oxford_land,2012-01-20,precipitation,0.0001 -oxford_land,2012-01-21,precipitation,0.0002 -oxford_land,2012-01-22,precipitation,0 -oxford_land,2012-01-23,precipitation,0.0087 -oxford_land,2012-01-24,precipitation,0.0017 -oxford_land,2012-01-25,precipitation,0.004 -oxford_land,2012-01-26,precipitation,0.0035 -oxford_land,2012-01-27,precipitation,0.0014 -oxford_land,2012-01-28,precipitation,0 -oxford_land,2012-01-29,precipitation,0.0002 -oxford_land,2012-01-30,precipitation,0 -oxford_land,2012-01-31,precipitation,0 -oxford_land,2012-02-01,precipitation,0 -oxford_land,2012-02-02,precipitation,0 -oxford_land,2012-02-03,precipitation,0 -oxford_land,2012-02-04,precipitation,0.0101 -oxford_land,2012-02-05,precipitation,0.0013 -oxford_land,2012-02-06,precipitation,0.0008 -oxford_land,2012-02-07,precipitation,0 -oxford_land,2012-02-08,precipitation,0 -oxford_land,2012-02-09,precipitation,0.0044 -oxford_land,2012-02-10,precipitation,0.0001 -oxford_land,2012-02-11,precipitation,0.0001 -oxford_land,2012-02-12,precipitation,0.0002 -oxford_land,2012-02-13,precipitation,0.0007 -oxford_land,2012-02-14,precipitation,0 -oxford_land,2012-02-15,precipitation,0 -oxford_land,2012-02-16,precipitation,0 -oxford_land,2012-02-17,precipitation,0.0001 -oxford_land,2012-02-18,precipitation,0.0027 -oxford_land,2012-02-19,precipitation,0 -oxford_land,2012-02-20,precipitation,0 -oxford_land,2012-02-21,precipitation,0.0002 -oxford_land,2012-02-22,precipitation,0.0009 -oxford_land,2012-02-23,precipitation,0 -oxford_land,2012-02-24,precipitation,0.0002 -oxford_land,2012-02-25,precipitation,0 -oxford_land,2012-02-26,precipitation,0.0001 -oxford_land,2012-02-27,precipitation,0.0009 -oxford_land,2012-02-28,precipitation,0 -oxford_land,2012-02-29,precipitation,0 -oxford_land,2012-03-01,precipitation,0 -oxford_land,2012-03-02,precipitation,0.0004 -oxford_land,2012-03-03,precipitation,0.0062 -oxford_land,2012-03-04,precipitation,0.0079 -oxford_land,2012-03-05,precipitation,0 -oxford_land,2012-03-06,precipitation,0.0012 -oxford_land,2012-03-07,precipitation,0.0017 -oxford_land,2012-03-08,precipitation,0 -oxford_land,2012-03-09,precipitation,0 -oxford_land,2012-03-10,precipitation,0 -oxford_land,2012-03-11,precipitation,0 -oxford_land,2012-03-12,precipitation,0.0002 -oxford_land,2012-03-13,precipitation,0 -oxford_land,2012-03-14,precipitation,0.0001 -oxford_land,2012-03-15,precipitation,0 -oxford_land,2012-03-16,precipitation,0.002 -oxford_land,2012-03-17,precipitation,0.0036 -oxford_land,2012-03-18,precipitation,0.001 -oxford_land,2012-03-19,precipitation,0 -oxford_land,2012-03-20,precipitation,0 -oxford_land,2012-03-21,precipitation,0 -oxford_land,2012-03-22,precipitation,0 -oxford_land,2012-03-23,precipitation,0 -oxford_land,2012-03-24,precipitation,0 -oxford_land,2012-03-25,precipitation,0 -oxford_land,2012-03-26,precipitation,0 -oxford_land,2012-03-27,precipitation,0 -oxford_land,2012-03-28,precipitation,0 -oxford_land,2012-03-29,precipitation,0 -oxford_land,2012-03-30,precipitation,0 -oxford_land,2012-03-31,precipitation,0 -oxford_land,2012-04-01,precipitation,0 -oxford_land,2012-04-02,precipitation,0 -oxford_land,2012-04-03,precipitation,0.0022 -oxford_land,2012-04-04,precipitation,0.0028 -oxford_land,2012-04-05,precipitation,0 -oxford_land,2012-04-06,precipitation,0.0003 -oxford_land,2012-04-07,precipitation,0.0006 -oxford_land,2012-04-08,precipitation,0.0021 -oxford_land,2012-04-09,precipitation,0.0096 -oxford_land,2012-04-10,precipitation,0.0014 -oxford_land,2012-04-11,precipitation,0.0009 -oxford_land,2012-04-12,precipitation,0.0013 -oxford_land,2012-04-13,precipitation,0.002 -oxford_land,2012-04-14,precipitation,0.0003 -oxford_land,2012-04-15,precipitation,0 -oxford_land,2012-04-16,precipitation,0.0047 -oxford_land,2012-04-17,precipitation,0.0038 -oxford_land,2012-04-18,precipitation,0.0098 -oxford_land,2012-04-19,precipitation,0.0029 -oxford_land,2012-04-20,precipitation,0.0018 -oxford_land,2012-04-21,precipitation,0.0021 -oxford_land,2012-04-22,precipitation,0.0028 -oxford_land,2012-04-23,precipitation,0.0044 -oxford_land,2012-04-24,precipitation,0.0074 -oxford_land,2012-04-25,precipitation,0.0099 -oxford_land,2012-04-26,precipitation,0.0064 -oxford_land,2012-04-27,precipitation,0.0091 -oxford_land,2012-04-28,precipitation,0.0177 -oxford_land,2012-04-29,precipitation,0.011 -oxford_land,2012-04-30,precipitation,0.015 -oxford_land,2012-05-01,precipitation,0.0014 -oxford_land,2012-05-02,precipitation,0.0073 -oxford_land,2012-05-03,precipitation,0.0008 -oxford_land,2012-05-04,precipitation,0.0006 -oxford_land,2012-05-05,precipitation,0 -oxford_land,2012-05-06,precipitation,0.0013 -oxford_land,2012-05-07,precipitation,0.0144 -oxford_land,2012-05-08,precipitation,0.0035 -oxford_land,2012-05-09,precipitation,0.0095 -oxford_land,2012-05-10,precipitation,0.002 -oxford_land,2012-05-11,precipitation,0 -oxford_land,2012-05-12,precipitation,0 -oxford_land,2012-05-13,precipitation,0.0011 -oxford_land,2012-05-14,precipitation,0.0026 -oxford_land,2012-05-15,precipitation,0.0017 -oxford_land,2012-05-16,precipitation,0 -oxford_land,2012-05-17,precipitation,0 -oxford_land,2012-05-18,precipitation,0.0021 -oxford_land,2012-05-19,precipitation,0 -oxford_land,2012-05-20,precipitation,0 -oxford_land,2012-05-21,precipitation,0 -oxford_land,2012-05-22,precipitation,0 -oxford_land,2012-05-23,precipitation,0 -oxford_land,2012-05-24,precipitation,0 -oxford_land,2012-05-25,precipitation,0 -oxford_land,2012-05-26,precipitation,0 -oxford_land,2012-05-27,precipitation,0 -oxford_land,2012-05-28,precipitation,0 -oxford_land,2012-05-29,precipitation,0 -oxford_land,2012-05-30,precipitation,0.0002 -oxford_land,2012-05-31,precipitation,0.0002 -oxford_land,2012-06-01,precipitation,0.0002 -oxford_land,2012-06-02,precipitation,0.0111 -oxford_land,2012-06-03,precipitation,0.0193 -oxford_land,2012-06-04,precipitation,0 -oxford_land,2012-06-05,precipitation,0.0052 -oxford_land,2012-06-06,precipitation,0.0037 -oxford_land,2012-06-07,precipitation,0.0168 -oxford_land,2012-06-08,precipitation,0.0021 -oxford_land,2012-06-09,precipitation,0 -oxford_land,2012-06-10,precipitation,0.0073 -oxford_land,2012-06-11,precipitation,0.0174 -oxford_land,2012-06-12,precipitation,0 -oxford_land,2012-06-13,precipitation,0.0001 -oxford_land,2012-06-14,precipitation,0.016 -oxford_land,2012-06-15,precipitation,0.0012 -oxford_land,2012-06-16,precipitation,0.0022 -oxford_land,2012-06-17,precipitation,0.0036 -oxford_land,2012-06-18,precipitation,0 -oxford_land,2012-06-19,precipitation,0 -oxford_land,2012-06-20,precipitation,0.0097 -oxford_land,2012-06-21,precipitation,0.0082 -oxford_land,2012-06-22,precipitation,0.0013 -oxford_land,2012-06-23,precipitation,0.0147 -oxford_land,2012-06-24,precipitation,0.0003 -oxford_land,2012-06-25,precipitation,0 -oxford_land,2012-06-26,precipitation,0.0018 -oxford_land,2012-06-27,precipitation,0.0008 -oxford_land,2012-06-28,precipitation,0.0018 -oxford_land,2012-06-29,precipitation,0.0034 -oxford_land,2012-06-30,precipitation,0.005 -oxford_land,2012-07-01,precipitation,0.0023 -oxford_land,2012-07-02,precipitation,0.005 -oxford_land,2012-07-03,precipitation,0.0082 -oxford_land,2012-07-04,precipitation,0.0029 -oxford_land,2012-07-05,precipitation,0.0012 -oxford_land,2012-07-06,precipitation,0.0133 -oxford_land,2012-07-07,precipitation,0.0063 -oxford_land,2012-07-08,precipitation,0.0017 -oxford_land,2012-07-09,precipitation,0.0006 -oxford_land,2012-07-10,precipitation,0.0024 -oxford_land,2012-07-11,precipitation,0.0064 -oxford_land,2012-07-12,precipitation,0.017 -oxford_land,2012-07-13,precipitation,0.0058 -oxford_land,2012-07-14,precipitation,0.0034 -oxford_land,2012-07-15,precipitation,0.0021 -oxford_land,2012-07-16,precipitation,0.002 -oxford_land,2012-07-17,precipitation,0.0016 -oxford_land,2012-07-18,precipitation,0.0032 -oxford_land,2012-07-19,precipitation,0 -oxford_land,2012-07-20,precipitation,0.0002 -oxford_land,2012-07-21,precipitation,0 -oxford_land,2012-07-22,precipitation,0 -oxford_land,2012-07-23,precipitation,0 -oxford_land,2012-07-24,precipitation,0 -oxford_land,2012-07-25,precipitation,0 -oxford_land,2012-07-26,precipitation,0 -oxford_land,2012-07-27,precipitation,0 -oxford_land,2012-07-28,precipitation,0.0001 -oxford_land,2012-07-29,precipitation,0.0023 -oxford_land,2012-07-30,precipitation,0.0055 -oxford_land,2012-07-31,precipitation,0.0014 -oxford_land,2012-08-01,precipitation,0.0012 -oxford_land,2012-08-02,precipitation,0.0108 -oxford_land,2012-08-03,precipitation,0.0011 -oxford_land,2012-08-04,precipitation,0.005 -oxford_land,2012-08-05,precipitation,0.0077 -oxford_land,2012-08-06,precipitation,0.003 -oxford_land,2012-08-07,precipitation,0.0025 -oxford_land,2012-08-08,precipitation,0 -oxford_land,2012-08-09,precipitation,0 -oxford_land,2012-08-10,precipitation,0 -oxford_land,2012-08-11,precipitation,0.0001 -oxford_land,2012-08-12,precipitation,0.0024 -oxford_land,2012-08-13,precipitation,0.0028 -oxford_land,2012-08-14,precipitation,0.0001 -oxford_land,2012-08-15,precipitation,0.0158 -oxford_land,2012-08-16,precipitation,0.0029 -oxford_land,2012-08-17,precipitation,0.0027 -oxford_land,2012-08-18,precipitation,0 -oxford_land,2012-08-19,precipitation,0.0004 -oxford_land,2012-08-20,precipitation,0 -oxford_land,2012-08-21,precipitation,0.0019 -oxford_land,2012-08-22,precipitation,0.0002 -oxford_land,2012-08-23,precipitation,0 -oxford_land,2012-08-24,precipitation,0.0047 -oxford_land,2012-08-25,precipitation,0.0087 -oxford_land,2012-08-26,precipitation,0 -oxford_land,2012-08-27,precipitation,0.011 -oxford_land,2012-08-28,precipitation,0.0032 -oxford_land,2012-08-29,precipitation,0.014 -oxford_land,2012-08-30,precipitation,0.0016 -oxford_land,2012-08-31,precipitation,0 -oxford_land,2012-09-01,precipitation,0.0001 -oxford_land,2012-09-02,precipitation,0.0001 -oxford_land,2012-09-03,precipitation,0 -oxford_land,2012-09-04,precipitation,0 -oxford_land,2012-09-05,precipitation,0 -oxford_land,2012-09-06,precipitation,0 -oxford_land,2012-09-07,precipitation,0 -oxford_land,2012-09-08,precipitation,0 -oxford_land,2012-09-09,precipitation,0.001 -oxford_land,2012-09-10,precipitation,0.0017 -oxford_land,2012-09-11,precipitation,0 -oxford_land,2012-09-12,precipitation,0.002 -oxford_land,2012-09-13,precipitation,0 -oxford_land,2012-09-14,precipitation,0 -oxford_land,2012-09-15,precipitation,0.0002 -oxford_land,2012-09-16,precipitation,0.0002 -oxford_land,2012-09-17,precipitation,0.0001 -oxford_land,2012-09-18,precipitation,0 -oxford_land,2012-09-19,precipitation,0 -oxford_land,2012-09-20,precipitation,0 -oxford_land,2012-09-21,precipitation,0.0012 -oxford_land,2012-09-22,precipitation,0 -oxford_land,2012-09-23,precipitation,0.0356 -oxford_land,2012-09-24,precipitation,0.0075 -oxford_land,2012-09-25,precipitation,0.0028 -oxford_land,2012-09-26,precipitation,0.0114 -oxford_land,2012-09-27,precipitation,0.0006 -oxford_land,2012-09-28,precipitation,0.0001 -oxford_land,2012-09-29,precipitation,0 -oxford_land,2012-09-30,precipitation,0.0016 -oxford_land,2012-10-01,precipitation,0.0008 -oxford_land,2012-10-02,precipitation,0.005 -oxford_land,2012-10-03,precipitation,0.0034 -oxford_land,2012-10-04,precipitation,0.0138 -oxford_land,2012-10-05,precipitation,0.0152 -oxford_land,2012-10-06,precipitation,0 -oxford_land,2012-10-07,precipitation,0.001 -oxford_land,2012-10-08,precipitation,0.0013 -oxford_land,2012-10-09,precipitation,0 -oxford_land,2012-10-10,precipitation,0.0002 -oxford_land,2012-10-11,precipitation,0.0091 -oxford_land,2012-10-12,precipitation,0.0004 -oxford_land,2012-10-13,precipitation,0.0012 -oxford_land,2012-10-14,precipitation,0.0003 -oxford_land,2012-10-15,precipitation,0.0038 -oxford_land,2012-10-16,precipitation,0.0091 -oxford_land,2012-10-17,precipitation,0.0092 -oxford_land,2012-10-18,precipitation,0.0003 -oxford_land,2012-10-19,precipitation,0.001 -oxford_land,2012-10-20,precipitation,0.0001 -oxford_land,2012-10-21,precipitation,0.0022 -oxford_land,2012-10-22,precipitation,0.0006 -oxford_land,2012-10-23,precipitation,0.0001 -oxford_land,2012-10-24,precipitation,0.0002 -oxford_land,2012-10-25,precipitation,0.0002 -oxford_land,2012-10-26,precipitation,0 -oxford_land,2012-10-27,precipitation,0.0006 -oxford_land,2012-10-28,precipitation,0.0031 -oxford_land,2012-10-29,precipitation,0.0021 -oxford_land,2012-10-30,precipitation,0 -oxford_land,2012-10-31,precipitation,0.014 -oxford_land,2012-11-01,precipitation,0.0031 -oxford_land,2012-11-02,precipitation,0.0011 -oxford_land,2012-11-03,precipitation,0.0132 -oxford_land,2012-11-04,precipitation,0.011 -oxford_land,2012-11-05,precipitation,0 -oxford_land,2012-11-06,precipitation,0.0003 -oxford_land,2012-11-07,precipitation,0.0001 -oxford_land,2012-11-08,precipitation,0 -oxford_land,2012-11-09,precipitation,0.0021 -oxford_land,2012-11-10,precipitation,0.0001 -oxford_land,2012-11-11,precipitation,0.0003 -oxford_land,2012-11-12,precipitation,0.0034 -oxford_land,2012-11-13,precipitation,0.0001 -oxford_land,2012-11-14,precipitation,0.0001 -oxford_land,2012-11-15,precipitation,0 -oxford_land,2012-11-16,precipitation,0.0017 -oxford_land,2012-11-17,precipitation,0 -oxford_land,2012-11-18,precipitation,0 -oxford_land,2012-11-19,precipitation,0.0048 -oxford_land,2012-11-20,precipitation,0.0204 -oxford_land,2012-11-21,precipitation,0.0175 -oxford_land,2012-11-22,precipitation,0.0174 -oxford_land,2012-11-23,precipitation,0.0002 -oxford_land,2012-11-24,precipitation,0.0279 -oxford_land,2012-11-25,precipitation,0.0044 -oxford_land,2012-11-26,precipitation,0.0023 -oxford_land,2012-11-27,precipitation,0.0003 -oxford_land,2012-11-28,precipitation,0 -oxford_land,2012-11-29,precipitation,0 -oxford_land,2012-11-30,precipitation,0 -oxford_land,2012-12-01,precipitation,0 -oxford_land,2012-12-02,precipitation,0.0084 -oxford_land,2012-12-03,precipitation,0.0004 -oxford_land,2012-12-04,precipitation,0.0007 -oxford_land,2012-12-05,precipitation,0 -oxford_land,2012-12-06,precipitation,0.0058 -oxford_land,2012-12-07,precipitation,0.0001 -oxford_land,2012-12-08,precipitation,0 -oxford_land,2012-12-09,precipitation,0.0001 -oxford_land,2012-12-10,precipitation,0 -oxford_land,2012-12-11,precipitation,0.0001 -oxford_land,2012-12-12,precipitation,0 -oxford_land,2012-12-13,precipitation,0.0007 -oxford_land,2012-12-14,precipitation,0.016 -oxford_land,2012-12-15,precipitation,0.0019 -oxford_land,2012-12-16,precipitation,0.0055 -oxford_land,2012-12-17,precipitation,0.0003 -oxford_land,2012-12-18,precipitation,0.0001 -oxford_land,2012-12-19,precipitation,0.021 -oxford_land,2012-12-20,precipitation,0.0041 -oxford_land,2012-12-21,precipitation,0.011 -oxford_land,2012-12-22,precipitation,0.0124 -oxford_land,2012-12-23,precipitation,0.0099 -oxford_land,2012-12-24,precipitation,0.006 -oxford_land,2012-12-25,precipitation,0.0008 -oxford_land,2012-12-26,precipitation,0.0061 -oxford_land,2012-12-27,precipitation,0.0065 -oxford_land,2012-12-28,precipitation,0.0017 -oxford_land,2012-12-29,precipitation,0.014 -oxford_land,2012-12-30,precipitation,0.0012 -oxford_land,2012-12-31,precipitation,0.0054 -oxford_land,2013-01-01,precipitation,0.0001 -oxford_land,2013-01-02,precipitation,0.0001 -oxford_land,2013-01-03,precipitation,0 -oxford_land,2013-01-04,precipitation,0 -oxford_land,2013-01-05,precipitation,0 -oxford_land,2013-01-06,precipitation,0.0002 -oxford_land,2013-01-07,precipitation,0 -oxford_land,2013-01-08,precipitation,0.0028 -oxford_land,2013-01-09,precipitation,0.0002 -oxford_land,2013-01-10,precipitation,0.0006 -oxford_land,2013-01-11,precipitation,0.0038 -oxford_land,2013-01-12,precipitation,0.0001 -oxford_land,2013-01-13,precipitation,0.0007 -oxford_land,2013-01-14,precipitation,0.0053 -oxford_land,2013-01-15,precipitation,0 -oxford_land,2013-01-16,precipitation,0 -oxford_land,2013-01-17,precipitation,0.0033 -oxford_land,2013-01-18,precipitation,0.006 -oxford_land,2013-01-19,precipitation,0.0001 -oxford_land,2013-01-20,precipitation,0.0013 -oxford_land,2013-01-21,precipitation,0.001 -oxford_land,2013-01-22,precipitation,0.0038 -oxford_land,2013-01-23,precipitation,0.0012 -oxford_land,2013-01-24,precipitation,0 -oxford_land,2013-01-25,precipitation,0.0087 -oxford_land,2013-01-26,precipitation,0.0141 -oxford_land,2013-01-27,precipitation,0.0036 -oxford_land,2013-01-28,precipitation,0.0034 -oxford_land,2013-01-29,precipitation,0.0098 -oxford_land,2013-01-30,precipitation,0.0026 -oxford_land,2013-01-31,precipitation,0.0048 -oxford_land,2013-02-01,precipitation,0.0003 -oxford_land,2013-02-02,precipitation,0 -oxford_land,2013-02-03,precipitation,0 -oxford_land,2013-02-04,precipitation,0.0018 -oxford_land,2013-02-05,precipitation,0.0022 -oxford_land,2013-02-06,precipitation,0 -oxford_land,2013-02-07,precipitation,0.0008 -oxford_land,2013-02-08,precipitation,0.0028 -oxford_land,2013-02-09,precipitation,0.007 -oxford_land,2013-02-10,precipitation,0.0162 -oxford_land,2013-02-11,precipitation,0.0003 -oxford_land,2013-02-12,precipitation,0 -oxford_land,2013-02-13,precipitation,0.0091 -oxford_land,2013-02-14,precipitation,0.0001 -oxford_land,2013-02-15,precipitation,0 -oxford_land,2013-02-16,precipitation,0.0001 -oxford_land,2013-02-17,precipitation,0 -oxford_land,2013-02-18,precipitation,0 -oxford_land,2013-02-19,precipitation,0 -oxford_land,2013-02-20,precipitation,0 -oxford_land,2013-02-21,precipitation,0 -oxford_land,2013-02-22,precipitation,0 -oxford_land,2013-02-23,precipitation,0 -oxford_land,2013-02-24,precipitation,0 -oxford_land,2013-02-25,precipitation,0.0001 -oxford_land,2009-03-03,et0,0.002 -oxford_land,2009-03-04,et0,0.002 -oxford_land,2009-03-05,et0,0.002 -oxford_land,2009-03-06,et0,0.002 -oxford_land,2009-03-07,et0,0.002 -oxford_land,2009-03-08,et0,0.002 -oxford_land,2009-03-09,et0,0.002 -oxford_land,2009-03-10,et0,0.002 -oxford_land,2009-03-11,et0,0.002 -oxford_land,2009-03-12,et0,0.002 -oxford_land,2009-03-13,et0,0.002 -oxford_land,2009-03-14,et0,0.002 -oxford_land,2009-03-15,et0,0.002 -oxford_land,2009-03-16,et0,0.002 -oxford_land,2009-03-17,et0,0.002 -oxford_land,2009-03-18,et0,0.002 -oxford_land,2009-03-19,et0,0.002 -oxford_land,2009-03-20,et0,0.002 -oxford_land,2009-03-21,et0,0.002 -oxford_land,2009-03-22,et0,0.002 -oxford_land,2009-03-23,et0,0.002 -oxford_land,2009-03-24,et0,0.002 -oxford_land,2009-03-25,et0,0.002 -oxford_land,2009-03-26,et0,0.002 -oxford_land,2009-03-27,et0,0.002 -oxford_land,2009-03-28,et0,0.002 -oxford_land,2009-03-29,et0,0.002 -oxford_land,2009-03-30,et0,0.002 -oxford_land,2009-03-31,et0,0.002 -oxford_land,2009-04-01,et0,0.002 -oxford_land,2009-04-02,et0,0.002 -oxford_land,2009-04-03,et0,0.002 -oxford_land,2009-04-04,et0,0.002 -oxford_land,2009-04-05,et0,0.002 -oxford_land,2009-04-06,et0,0.002 -oxford_land,2009-04-07,et0,0.002 -oxford_land,2009-04-08,et0,0.002 -oxford_land,2009-04-09,et0,0.002 -oxford_land,2009-04-10,et0,0.002 -oxford_land,2009-04-11,et0,0.002 -oxford_land,2009-04-12,et0,0.002 -oxford_land,2009-04-13,et0,0.002 -oxford_land,2009-04-14,et0,0.002 -oxford_land,2009-04-15,et0,0.002 -oxford_land,2009-04-16,et0,0.002 -oxford_land,2009-04-17,et0,0.002 -oxford_land,2009-04-18,et0,0.002 -oxford_land,2009-04-19,et0,0.002 -oxford_land,2009-04-20,et0,0.002 -oxford_land,2009-04-21,et0,0.002 -oxford_land,2009-04-22,et0,0.002 -oxford_land,2009-04-23,et0,0.002 -oxford_land,2009-04-24,et0,0.002 -oxford_land,2009-04-25,et0,0.002 -oxford_land,2009-04-26,et0,0.002 -oxford_land,2009-04-27,et0,0.002 -oxford_land,2009-04-28,et0,0.002 -oxford_land,2009-04-29,et0,0.002 -oxford_land,2009-04-30,et0,0.002 -oxford_land,2009-05-01,et0,0.002 -oxford_land,2009-05-02,et0,0.002 -oxford_land,2009-05-03,et0,0.002 -oxford_land,2009-05-04,et0,0.002 -oxford_land,2009-05-05,et0,0.002 -oxford_land,2009-05-06,et0,0.002 -oxford_land,2009-05-07,et0,0.002 -oxford_land,2009-05-08,et0,0.002 -oxford_land,2009-05-09,et0,0.002 -oxford_land,2009-05-10,et0,0.002 -oxford_land,2009-05-11,et0,0.002 -oxford_land,2009-05-12,et0,0.002 -oxford_land,2009-05-13,et0,0.002 -oxford_land,2009-05-14,et0,0.002 -oxford_land,2009-05-15,et0,0.002 -oxford_land,2009-05-16,et0,0.002 -oxford_land,2009-05-17,et0,0.002 -oxford_land,2009-05-18,et0,0.002 -oxford_land,2009-05-19,et0,0.002 -oxford_land,2009-05-20,et0,0.002 -oxford_land,2009-05-21,et0,0.002 -oxford_land,2009-05-22,et0,0.002 -oxford_land,2009-05-23,et0,0.002 -oxford_land,2009-05-24,et0,0.002 -oxford_land,2009-05-25,et0,0.002 -oxford_land,2009-05-26,et0,0.002 -oxford_land,2009-05-27,et0,0.002 -oxford_land,2009-05-28,et0,0.002 -oxford_land,2009-05-29,et0,0.002 -oxford_land,2009-05-30,et0,0.002 -oxford_land,2009-05-31,et0,0.002 -oxford_land,2009-06-01,et0,0.002 -oxford_land,2009-06-02,et0,0.002 -oxford_land,2009-06-03,et0,0.002 -oxford_land,2009-06-04,et0,0.002 -oxford_land,2009-06-05,et0,0.002 -oxford_land,2009-06-06,et0,0.002 -oxford_land,2009-06-07,et0,0.002 -oxford_land,2009-06-08,et0,0.002 -oxford_land,2009-06-09,et0,0.002 -oxford_land,2009-06-10,et0,0.002 -oxford_land,2009-06-11,et0,0.002 -oxford_land,2009-06-12,et0,0.002 -oxford_land,2009-06-13,et0,0.002 -oxford_land,2009-06-14,et0,0.002 -oxford_land,2009-06-15,et0,0.002 -oxford_land,2009-06-16,et0,0.002 -oxford_land,2009-06-17,et0,0.002 -oxford_land,2009-06-18,et0,0.002 -oxford_land,2009-06-19,et0,0.002 -oxford_land,2009-06-20,et0,0.002 -oxford_land,2009-06-21,et0,0.002 -oxford_land,2009-06-22,et0,0.002 -oxford_land,2009-06-23,et0,0.002 -oxford_land,2009-06-24,et0,0.002 -oxford_land,2009-06-25,et0,0.002 -oxford_land,2009-06-26,et0,0.002 -oxford_land,2009-06-27,et0,0.002 -oxford_land,2009-06-28,et0,0.002 -oxford_land,2009-06-29,et0,0.002 -oxford_land,2009-06-30,et0,0.002 -oxford_land,2009-07-01,et0,0.002 -oxford_land,2009-07-02,et0,0.002 -oxford_land,2009-07-03,et0,0.002 -oxford_land,2009-07-04,et0,0.002 -oxford_land,2009-07-05,et0,0.002 -oxford_land,2009-07-06,et0,0.002 -oxford_land,2009-07-07,et0,0.002 -oxford_land,2009-07-08,et0,0.002 -oxford_land,2009-07-09,et0,0.002 -oxford_land,2009-07-10,et0,0.002 -oxford_land,2009-07-11,et0,0.002 -oxford_land,2009-07-12,et0,0.002 -oxford_land,2009-07-13,et0,0.002 -oxford_land,2009-07-14,et0,0.002 -oxford_land,2009-07-15,et0,0.002 -oxford_land,2009-07-16,et0,0.002 -oxford_land,2009-07-17,et0,0.002 -oxford_land,2009-07-18,et0,0.002 -oxford_land,2009-07-19,et0,0.002 -oxford_land,2009-07-20,et0,0.002 -oxford_land,2009-07-21,et0,0.002 -oxford_land,2009-07-22,et0,0.002 -oxford_land,2009-07-23,et0,0.002 -oxford_land,2009-07-24,et0,0.002 -oxford_land,2009-07-25,et0,0.002 -oxford_land,2009-07-26,et0,0.002 -oxford_land,2009-07-27,et0,0.002 -oxford_land,2009-07-28,et0,0.002 -oxford_land,2009-07-29,et0,0.002 -oxford_land,2009-07-30,et0,0.002 -oxford_land,2009-07-31,et0,0.002 -oxford_land,2009-08-01,et0,0.002 -oxford_land,2009-08-02,et0,0.002 -oxford_land,2009-08-03,et0,0.002 -oxford_land,2009-08-04,et0,0.002 -oxford_land,2009-08-05,et0,0.002 -oxford_land,2009-08-06,et0,0.002 -oxford_land,2009-08-07,et0,0.002 -oxford_land,2009-08-08,et0,0.002 -oxford_land,2009-08-09,et0,0.002 -oxford_land,2009-08-10,et0,0.002 -oxford_land,2009-08-11,et0,0.002 -oxford_land,2009-08-12,et0,0.002 -oxford_land,2009-08-13,et0,0.002 -oxford_land,2009-08-14,et0,0.002 -oxford_land,2009-08-15,et0,0.002 -oxford_land,2009-08-16,et0,0.002 -oxford_land,2009-08-17,et0,0.002 -oxford_land,2009-08-18,et0,0.002 -oxford_land,2009-08-19,et0,0.002 -oxford_land,2009-08-20,et0,0.002 -oxford_land,2009-08-21,et0,0.002 -oxford_land,2009-08-22,et0,0.002 -oxford_land,2009-08-23,et0,0.002 -oxford_land,2009-08-24,et0,0.002 -oxford_land,2009-08-25,et0,0.002 -oxford_land,2009-08-26,et0,0.002 -oxford_land,2009-08-27,et0,0.002 -oxford_land,2009-08-28,et0,0.002 -oxford_land,2009-08-29,et0,0.002 -oxford_land,2009-08-30,et0,0.002 -oxford_land,2009-08-31,et0,0.002 -oxford_land,2009-09-01,et0,0.002 -oxford_land,2009-09-02,et0,0.002 -oxford_land,2009-09-03,et0,0.002 -oxford_land,2009-09-04,et0,0.002 -oxford_land,2009-09-05,et0,0.002 -oxford_land,2009-09-06,et0,0.002 -oxford_land,2009-09-07,et0,0.002 -oxford_land,2009-09-08,et0,0.002 -oxford_land,2009-09-09,et0,0.002 -oxford_land,2009-09-10,et0,0.002 -oxford_land,2009-09-11,et0,0.002 -oxford_land,2009-09-12,et0,0.002 -oxford_land,2009-09-13,et0,0.002 -oxford_land,2009-09-14,et0,0.002 -oxford_land,2009-09-15,et0,0.002 -oxford_land,2009-09-16,et0,0.002 -oxford_land,2009-09-17,et0,0.002 -oxford_land,2009-09-18,et0,0.002 -oxford_land,2009-09-19,et0,0.002 -oxford_land,2009-09-20,et0,0.002 -oxford_land,2009-09-21,et0,0.002 -oxford_land,2009-09-22,et0,0.002 -oxford_land,2009-09-23,et0,0.002 -oxford_land,2009-09-24,et0,0.002 -oxford_land,2009-09-25,et0,0.002 -oxford_land,2009-09-26,et0,0.002 -oxford_land,2009-09-27,et0,0.002 -oxford_land,2009-09-28,et0,0.002 -oxford_land,2009-09-29,et0,0.002 -oxford_land,2009-09-30,et0,0.002 -oxford_land,2009-10-01,et0,0.002 -oxford_land,2009-10-02,et0,0.002 -oxford_land,2009-10-03,et0,0.002 -oxford_land,2009-10-04,et0,0.002 -oxford_land,2009-10-05,et0,0.002 -oxford_land,2009-10-06,et0,0.002 -oxford_land,2009-10-07,et0,0.002 -oxford_land,2009-10-08,et0,0.002 -oxford_land,2009-10-09,et0,0.002 -oxford_land,2009-10-10,et0,0.002 -oxford_land,2009-10-11,et0,0.002 -oxford_land,2009-10-12,et0,0.002 -oxford_land,2009-10-13,et0,0.002 -oxford_land,2009-10-14,et0,0.002 -oxford_land,2009-10-15,et0,0.002 -oxford_land,2009-10-16,et0,0.002 -oxford_land,2009-10-17,et0,0.002 -oxford_land,2009-10-18,et0,0.002 -oxford_land,2009-10-19,et0,0.002 -oxford_land,2009-10-20,et0,0.002 -oxford_land,2009-10-21,et0,0.002 -oxford_land,2009-10-22,et0,0.002 -oxford_land,2009-10-23,et0,0.002 -oxford_land,2009-10-24,et0,0.002 -oxford_land,2009-10-25,et0,0.002 -oxford_land,2009-10-26,et0,0.002 -oxford_land,2009-10-27,et0,0.002 -oxford_land,2009-10-28,et0,0.002 -oxford_land,2009-10-29,et0,0.002 -oxford_land,2009-10-30,et0,0.002 -oxford_land,2009-10-31,et0,0.002 -oxford_land,2009-11-01,et0,0.002 -oxford_land,2009-11-02,et0,0.002 -oxford_land,2009-11-03,et0,0.002 -oxford_land,2009-11-04,et0,0.002 -oxford_land,2009-11-05,et0,0.002 -oxford_land,2009-11-06,et0,0.002 -oxford_land,2009-11-07,et0,0.002 -oxford_land,2009-11-08,et0,0.002 -oxford_land,2009-11-09,et0,0.002 -oxford_land,2009-11-10,et0,0.002 -oxford_land,2009-11-11,et0,0.002 -oxford_land,2009-11-12,et0,0.002 -oxford_land,2009-11-13,et0,0.002 -oxford_land,2009-11-14,et0,0.002 -oxford_land,2009-11-15,et0,0.002 -oxford_land,2009-11-16,et0,0.002 -oxford_land,2009-11-17,et0,0.002 -oxford_land,2009-11-18,et0,0.002 -oxford_land,2009-11-19,et0,0.002 -oxford_land,2009-11-20,et0,0.002 -oxford_land,2009-11-21,et0,0.002 -oxford_land,2009-11-22,et0,0.002 -oxford_land,2009-11-23,et0,0.002 -oxford_land,2009-11-24,et0,0.002 -oxford_land,2009-11-25,et0,0.002 -oxford_land,2009-11-26,et0,0.002 -oxford_land,2009-11-27,et0,0.002 -oxford_land,2009-11-28,et0,0.002 -oxford_land,2009-11-29,et0,0.002 -oxford_land,2009-11-30,et0,0.002 -oxford_land,2009-12-01,et0,0.002 -oxford_land,2009-12-02,et0,0.002 -oxford_land,2009-12-03,et0,0.002 -oxford_land,2009-12-04,et0,0.002 -oxford_land,2009-12-05,et0,0.002 -oxford_land,2009-12-06,et0,0.002 -oxford_land,2009-12-07,et0,0.002 -oxford_land,2009-12-08,et0,0.002 -oxford_land,2009-12-09,et0,0.002 -oxford_land,2009-12-10,et0,0.002 -oxford_land,2009-12-11,et0,0.002 -oxford_land,2009-12-12,et0,0.002 -oxford_land,2009-12-13,et0,0.002 -oxford_land,2009-12-14,et0,0.002 -oxford_land,2009-12-15,et0,0.002 -oxford_land,2009-12-16,et0,0.002 -oxford_land,2009-12-17,et0,0.002 -oxford_land,2009-12-18,et0,0.002 -oxford_land,2009-12-19,et0,0.002 -oxford_land,2009-12-20,et0,0.002 -oxford_land,2009-12-21,et0,0.002 -oxford_land,2009-12-22,et0,0.002 -oxford_land,2009-12-23,et0,0.002 -oxford_land,2009-12-24,et0,0.002 -oxford_land,2009-12-25,et0,0.002 -oxford_land,2009-12-26,et0,0.002 -oxford_land,2009-12-27,et0,0.002 -oxford_land,2009-12-28,et0,0.002 -oxford_land,2009-12-29,et0,0.002 -oxford_land,2009-12-30,et0,0.002 -oxford_land,2009-12-31,et0,0.002 -oxford_land,2010-01-01,et0,0.002 -oxford_land,2010-01-02,et0,0.002 -oxford_land,2010-01-03,et0,0.002 -oxford_land,2010-01-04,et0,0.002 -oxford_land,2010-01-05,et0,0.002 -oxford_land,2010-01-06,et0,0.002 -oxford_land,2010-01-07,et0,0.002 -oxford_land,2010-01-08,et0,0.002 -oxford_land,2010-01-09,et0,0.002 -oxford_land,2010-01-10,et0,0.002 -oxford_land,2010-01-11,et0,0.002 -oxford_land,2010-01-12,et0,0.002 -oxford_land,2010-01-13,et0,0.002 -oxford_land,2010-01-14,et0,0.002 -oxford_land,2010-01-15,et0,0.002 -oxford_land,2010-01-16,et0,0.002 -oxford_land,2010-01-17,et0,0.002 -oxford_land,2010-01-18,et0,0.002 -oxford_land,2010-01-19,et0,0.002 -oxford_land,2010-01-20,et0,0.002 -oxford_land,2010-01-21,et0,0.002 -oxford_land,2010-01-22,et0,0.002 -oxford_land,2010-01-23,et0,0.002 -oxford_land,2010-01-24,et0,0.002 -oxford_land,2010-01-25,et0,0.002 -oxford_land,2010-01-26,et0,0.002 -oxford_land,2010-01-27,et0,0.002 -oxford_land,2010-01-28,et0,0.002 -oxford_land,2010-01-29,et0,0.002 -oxford_land,2010-01-30,et0,0.002 -oxford_land,2010-01-31,et0,0.002 -oxford_land,2010-02-01,et0,0.002 -oxford_land,2010-02-02,et0,0.002 -oxford_land,2010-02-03,et0,0.002 -oxford_land,2010-02-04,et0,0.002 -oxford_land,2010-02-05,et0,0.002 -oxford_land,2010-02-06,et0,0.002 -oxford_land,2010-02-07,et0,0.002 -oxford_land,2010-02-08,et0,0.002 -oxford_land,2010-02-09,et0,0.002 -oxford_land,2010-02-10,et0,0.002 -oxford_land,2010-02-11,et0,0.002 -oxford_land,2010-02-12,et0,0.002 -oxford_land,2010-02-13,et0,0.002 -oxford_land,2010-02-14,et0,0.002 -oxford_land,2010-02-15,et0,0.002 -oxford_land,2010-02-16,et0,0.002 -oxford_land,2010-02-17,et0,0.002 -oxford_land,2010-02-18,et0,0.002 -oxford_land,2010-02-19,et0,0.002 -oxford_land,2010-02-20,et0,0.002 -oxford_land,2010-02-21,et0,0.002 -oxford_land,2010-02-22,et0,0.002 -oxford_land,2010-02-23,et0,0.002 -oxford_land,2010-02-24,et0,0.002 -oxford_land,2010-02-25,et0,0.002 -oxford_land,2010-02-26,et0,0.002 -oxford_land,2010-02-27,et0,0.002 -oxford_land,2010-02-28,et0,0.002 -oxford_land,2010-03-01,et0,0.002 -oxford_land,2010-03-02,et0,0.002 -oxford_land,2010-03-03,et0,0.002 -oxford_land,2010-03-04,et0,0.002 -oxford_land,2010-03-05,et0,0.002 -oxford_land,2010-03-06,et0,0.002 -oxford_land,2010-03-07,et0,0.002 -oxford_land,2010-03-08,et0,0.002 -oxford_land,2010-03-09,et0,0.002 -oxford_land,2010-03-10,et0,0.002 -oxford_land,2010-03-11,et0,0.002 -oxford_land,2010-03-12,et0,0.002 -oxford_land,2010-03-13,et0,0.002 -oxford_land,2010-03-14,et0,0.002 -oxford_land,2010-03-15,et0,0.002 -oxford_land,2010-03-16,et0,0.002 -oxford_land,2010-03-17,et0,0.002 -oxford_land,2010-03-18,et0,0.002 -oxford_land,2010-03-19,et0,0.002 -oxford_land,2010-03-20,et0,0.002 -oxford_land,2010-03-21,et0,0.002 -oxford_land,2010-03-22,et0,0.002 -oxford_land,2010-03-23,et0,0.002 -oxford_land,2010-03-24,et0,0.002 -oxford_land,2010-03-25,et0,0.002 -oxford_land,2010-03-26,et0,0.002 -oxford_land,2010-03-27,et0,0.002 -oxford_land,2010-03-28,et0,0.002 -oxford_land,2010-03-29,et0,0.002 -oxford_land,2010-03-30,et0,0.002 -oxford_land,2010-03-31,et0,0.002 -oxford_land,2010-04-01,et0,0.002 -oxford_land,2010-04-02,et0,0.002 -oxford_land,2010-04-03,et0,0.002 -oxford_land,2010-04-04,et0,0.002 -oxford_land,2010-04-05,et0,0.002 -oxford_land,2010-04-06,et0,0.002 -oxford_land,2010-04-07,et0,0.002 -oxford_land,2010-04-08,et0,0.002 -oxford_land,2010-04-09,et0,0.002 -oxford_land,2010-04-10,et0,0.002 -oxford_land,2010-04-11,et0,0.002 -oxford_land,2010-04-12,et0,0.002 -oxford_land,2010-04-13,et0,0.002 -oxford_land,2010-04-14,et0,0.002 -oxford_land,2010-04-15,et0,0.002 -oxford_land,2010-04-16,et0,0.002 -oxford_land,2010-04-17,et0,0.002 -oxford_land,2010-04-18,et0,0.002 -oxford_land,2010-04-19,et0,0.002 -oxford_land,2010-04-20,et0,0.002 -oxford_land,2010-04-21,et0,0.002 -oxford_land,2010-04-22,et0,0.002 -oxford_land,2010-04-23,et0,0.002 -oxford_land,2010-04-24,et0,0.002 -oxford_land,2010-04-25,et0,0.002 -oxford_land,2010-04-26,et0,0.002 -oxford_land,2010-04-27,et0,0.002 -oxford_land,2010-04-28,et0,0.002 -oxford_land,2010-04-29,et0,0.002 -oxford_land,2010-04-30,et0,0.002 -oxford_land,2010-05-01,et0,0.002 -oxford_land,2010-05-02,et0,0.002 -oxford_land,2010-05-03,et0,0.002 -oxford_land,2010-05-04,et0,0.002 -oxford_land,2010-05-05,et0,0.002 -oxford_land,2010-05-06,et0,0.002 -oxford_land,2010-05-07,et0,0.002 -oxford_land,2010-05-08,et0,0.002 -oxford_land,2010-05-09,et0,0.002 -oxford_land,2010-05-10,et0,0.002 -oxford_land,2010-05-11,et0,0.002 -oxford_land,2010-05-12,et0,0.002 -oxford_land,2010-05-13,et0,0.002 -oxford_land,2010-05-14,et0,0.002 -oxford_land,2010-05-15,et0,0.002 -oxford_land,2010-05-16,et0,0.002 -oxford_land,2010-05-17,et0,0.002 -oxford_land,2010-05-18,et0,0.002 -oxford_land,2010-05-19,et0,0.002 -oxford_land,2010-05-20,et0,0.002 -oxford_land,2010-05-21,et0,0.002 -oxford_land,2010-05-22,et0,0.002 -oxford_land,2010-05-23,et0,0.002 -oxford_land,2010-05-24,et0,0.002 -oxford_land,2010-05-25,et0,0.002 -oxford_land,2010-05-26,et0,0.002 -oxford_land,2010-05-27,et0,0.002 -oxford_land,2010-05-28,et0,0.002 -oxford_land,2010-05-29,et0,0.002 -oxford_land,2010-05-30,et0,0.002 -oxford_land,2010-05-31,et0,0.002 -oxford_land,2010-06-01,et0,0.002 -oxford_land,2010-06-02,et0,0.002 -oxford_land,2010-06-03,et0,0.002 -oxford_land,2010-06-04,et0,0.002 -oxford_land,2010-06-05,et0,0.002 -oxford_land,2010-06-06,et0,0.002 -oxford_land,2010-06-07,et0,0.002 -oxford_land,2010-06-08,et0,0.002 -oxford_land,2010-06-09,et0,0.002 -oxford_land,2010-06-10,et0,0.002 -oxford_land,2010-06-11,et0,0.002 -oxford_land,2010-06-12,et0,0.002 -oxford_land,2010-06-13,et0,0.002 -oxford_land,2010-06-14,et0,0.002 -oxford_land,2010-06-15,et0,0.002 -oxford_land,2010-06-16,et0,0.002 -oxford_land,2010-06-17,et0,0.002 -oxford_land,2010-06-18,et0,0.002 -oxford_land,2010-06-19,et0,0.002 -oxford_land,2010-06-20,et0,0.002 -oxford_land,2010-06-21,et0,0.002 -oxford_land,2010-06-22,et0,0.002 -oxford_land,2010-06-23,et0,0.002 -oxford_land,2010-06-24,et0,0.002 -oxford_land,2010-06-25,et0,0.002 -oxford_land,2010-06-26,et0,0.002 -oxford_land,2010-06-27,et0,0.002 -oxford_land,2010-06-28,et0,0.002 -oxford_land,2010-06-29,et0,0.002 -oxford_land,2010-06-30,et0,0.002 -oxford_land,2010-07-01,et0,0.002 -oxford_land,2010-07-02,et0,0.002 -oxford_land,2010-07-03,et0,0.002 -oxford_land,2010-07-04,et0,0.002 -oxford_land,2010-07-05,et0,0.002 -oxford_land,2010-07-06,et0,0.002 -oxford_land,2010-07-07,et0,0.002 -oxford_land,2010-07-08,et0,0.002 -oxford_land,2010-07-09,et0,0.002 -oxford_land,2010-07-10,et0,0.002 -oxford_land,2010-07-11,et0,0.002 -oxford_land,2010-07-12,et0,0.002 -oxford_land,2010-07-13,et0,0.002 -oxford_land,2010-07-14,et0,0.002 -oxford_land,2010-07-15,et0,0.002 -oxford_land,2010-07-16,et0,0.002 -oxford_land,2010-07-17,et0,0.002 -oxford_land,2010-07-18,et0,0.002 -oxford_land,2010-07-19,et0,0.002 -oxford_land,2010-07-20,et0,0.002 -oxford_land,2010-07-21,et0,0.002 -oxford_land,2010-07-22,et0,0.002 -oxford_land,2010-07-23,et0,0.002 -oxford_land,2010-07-24,et0,0.002 -oxford_land,2010-07-25,et0,0.002 -oxford_land,2010-07-26,et0,0.002 -oxford_land,2010-07-27,et0,0.002 -oxford_land,2010-07-28,et0,0.002 -oxford_land,2010-07-29,et0,0.002 -oxford_land,2010-07-30,et0,0.002 -oxford_land,2010-07-31,et0,0.002 -oxford_land,2010-08-01,et0,0.002 -oxford_land,2010-08-02,et0,0.002 -oxford_land,2010-08-03,et0,0.002 -oxford_land,2010-08-04,et0,0.002 -oxford_land,2010-08-05,et0,0.002 -oxford_land,2010-08-06,et0,0.002 -oxford_land,2010-08-07,et0,0.002 -oxford_land,2010-08-08,et0,0.002 -oxford_land,2010-08-09,et0,0.002 -oxford_land,2010-08-10,et0,0.002 -oxford_land,2010-08-11,et0,0.002 -oxford_land,2010-08-12,et0,0.002 -oxford_land,2010-08-13,et0,0.002 -oxford_land,2010-08-14,et0,0.002 -oxford_land,2010-08-15,et0,0.002 -oxford_land,2010-08-16,et0,0.002 -oxford_land,2010-08-17,et0,0.002 -oxford_land,2010-08-18,et0,0.002 -oxford_land,2010-08-19,et0,0.002 -oxford_land,2010-08-20,et0,0.002 -oxford_land,2010-08-21,et0,0.002 -oxford_land,2010-08-22,et0,0.002 -oxford_land,2010-08-23,et0,0.002 -oxford_land,2010-08-24,et0,0.002 -oxford_land,2010-08-25,et0,0.002 -oxford_land,2010-08-26,et0,0.002 -oxford_land,2010-08-27,et0,0.002 -oxford_land,2010-08-28,et0,0.002 -oxford_land,2010-08-29,et0,0.002 -oxford_land,2010-08-30,et0,0.002 -oxford_land,2010-08-31,et0,0.002 -oxford_land,2010-09-01,et0,0.002 -oxford_land,2010-09-02,et0,0.002 -oxford_land,2010-09-03,et0,0.002 -oxford_land,2010-09-04,et0,0.002 -oxford_land,2010-09-05,et0,0.002 -oxford_land,2010-09-06,et0,0.002 -oxford_land,2010-09-07,et0,0.002 -oxford_land,2010-09-08,et0,0.002 -oxford_land,2010-09-09,et0,0.002 -oxford_land,2010-09-10,et0,0.002 -oxford_land,2010-09-11,et0,0.002 -oxford_land,2010-09-12,et0,0.002 -oxford_land,2010-09-13,et0,0.002 -oxford_land,2010-09-14,et0,0.002 -oxford_land,2010-09-15,et0,0.002 -oxford_land,2010-09-16,et0,0.002 -oxford_land,2010-09-17,et0,0.002 -oxford_land,2010-09-18,et0,0.002 -oxford_land,2010-09-19,et0,0.002 -oxford_land,2010-09-20,et0,0.002 -oxford_land,2010-09-21,et0,0.002 -oxford_land,2010-09-22,et0,0.002 -oxford_land,2010-09-23,et0,0.002 -oxford_land,2010-09-24,et0,0.002 -oxford_land,2010-09-25,et0,0.002 -oxford_land,2010-09-26,et0,0.002 -oxford_land,2010-09-27,et0,0.002 -oxford_land,2010-09-28,et0,0.002 -oxford_land,2010-09-29,et0,0.002 -oxford_land,2010-09-30,et0,0.002 -oxford_land,2010-10-01,et0,0.002 -oxford_land,2010-10-02,et0,0.002 -oxford_land,2010-10-03,et0,0.002 -oxford_land,2010-10-04,et0,0.002 -oxford_land,2010-10-05,et0,0.002 -oxford_land,2010-10-06,et0,0.002 -oxford_land,2010-10-07,et0,0.002 -oxford_land,2010-10-08,et0,0.002 -oxford_land,2010-10-09,et0,0.002 -oxford_land,2010-10-10,et0,0.002 -oxford_land,2010-10-11,et0,0.002 -oxford_land,2010-10-12,et0,0.002 -oxford_land,2010-10-13,et0,0.002 -oxford_land,2010-10-14,et0,0.002 -oxford_land,2010-10-15,et0,0.002 -oxford_land,2010-10-16,et0,0.002 -oxford_land,2010-10-17,et0,0.002 -oxford_land,2010-10-18,et0,0.002 -oxford_land,2010-10-19,et0,0.002 -oxford_land,2010-10-20,et0,0.002 -oxford_land,2010-10-21,et0,0.002 -oxford_land,2010-10-22,et0,0.002 -oxford_land,2010-10-23,et0,0.002 -oxford_land,2010-10-24,et0,0.002 -oxford_land,2010-10-25,et0,0.002 -oxford_land,2010-10-26,et0,0.002 -oxford_land,2010-10-27,et0,0.002 -oxford_land,2010-10-28,et0,0.002 -oxford_land,2010-10-29,et0,0.002 -oxford_land,2010-10-30,et0,0.002 -oxford_land,2010-10-31,et0,0.002 -oxford_land,2010-11-01,et0,0.002 -oxford_land,2010-11-02,et0,0.002 -oxford_land,2010-11-03,et0,0.002 -oxford_land,2010-11-04,et0,0.002 -oxford_land,2010-11-05,et0,0.002 -oxford_land,2010-11-06,et0,0.002 -oxford_land,2010-11-07,et0,0.002 -oxford_land,2010-11-08,et0,0.002 -oxford_land,2010-11-09,et0,0.002 -oxford_land,2010-11-10,et0,0.002 -oxford_land,2010-11-11,et0,0.002 -oxford_land,2010-11-12,et0,0.002 -oxford_land,2010-11-13,et0,0.002 -oxford_land,2010-11-14,et0,0.002 -oxford_land,2010-11-15,et0,0.002 -oxford_land,2010-11-16,et0,0.002 -oxford_land,2010-11-17,et0,0.002 -oxford_land,2010-11-18,et0,0.002 -oxford_land,2010-11-19,et0,0.002 -oxford_land,2010-11-20,et0,0.002 -oxford_land,2010-11-21,et0,0.002 -oxford_land,2010-11-22,et0,0.002 -oxford_land,2010-11-23,et0,0.002 -oxford_land,2010-11-24,et0,0.002 -oxford_land,2010-11-25,et0,0.002 -oxford_land,2010-11-26,et0,0.002 -oxford_land,2010-11-27,et0,0.002 -oxford_land,2010-11-28,et0,0.002 -oxford_land,2010-11-29,et0,0.002 -oxford_land,2010-11-30,et0,0.002 -oxford_land,2010-12-01,et0,0.002 -oxford_land,2010-12-02,et0,0.002 -oxford_land,2010-12-03,et0,0.002 -oxford_land,2010-12-04,et0,0.002 -oxford_land,2010-12-05,et0,0.002 -oxford_land,2010-12-06,et0,0.002 -oxford_land,2010-12-07,et0,0.002 -oxford_land,2010-12-08,et0,0.002 -oxford_land,2010-12-09,et0,0.002 -oxford_land,2010-12-10,et0,0.002 -oxford_land,2010-12-11,et0,0.002 -oxford_land,2010-12-12,et0,0.002 -oxford_land,2010-12-13,et0,0.002 -oxford_land,2010-12-14,et0,0.002 -oxford_land,2010-12-15,et0,0.002 -oxford_land,2010-12-16,et0,0.002 -oxford_land,2010-12-17,et0,0.002 -oxford_land,2010-12-18,et0,0.002 -oxford_land,2010-12-19,et0,0.002 -oxford_land,2010-12-20,et0,0.002 -oxford_land,2010-12-21,et0,0.002 -oxford_land,2010-12-22,et0,0.002 -oxford_land,2010-12-23,et0,0.002 -oxford_land,2010-12-24,et0,0.002 -oxford_land,2010-12-25,et0,0.002 -oxford_land,2010-12-26,et0,0.002 -oxford_land,2010-12-27,et0,0.002 -oxford_land,2010-12-28,et0,0.002 -oxford_land,2010-12-29,et0,0.002 -oxford_land,2010-12-30,et0,0.002 -oxford_land,2010-12-31,et0,0.002 -oxford_land,2011-01-01,et0,0.002 -oxford_land,2011-01-02,et0,0.002 -oxford_land,2011-01-03,et0,0.002 -oxford_land,2011-01-04,et0,0.002 -oxford_land,2011-01-05,et0,0.002 -oxford_land,2011-01-06,et0,0.002 -oxford_land,2011-01-07,et0,0.002 -oxford_land,2011-01-08,et0,0.002 -oxford_land,2011-01-09,et0,0.002 -oxford_land,2011-01-10,et0,0.002 -oxford_land,2011-01-11,et0,0.002 -oxford_land,2011-01-12,et0,0.002 -oxford_land,2011-01-13,et0,0.002 -oxford_land,2011-01-14,et0,0.002 -oxford_land,2011-01-15,et0,0.002 -oxford_land,2011-01-16,et0,0.002 -oxford_land,2011-01-17,et0,0.002 -oxford_land,2011-01-18,et0,0.002 -oxford_land,2011-01-19,et0,0.002 -oxford_land,2011-01-20,et0,0.002 -oxford_land,2011-01-21,et0,0.002 -oxford_land,2011-01-22,et0,0.002 -oxford_land,2011-01-23,et0,0.002 -oxford_land,2011-01-24,et0,0.002 -oxford_land,2011-01-25,et0,0.002 -oxford_land,2011-01-26,et0,0.002 -oxford_land,2011-01-27,et0,0.002 -oxford_land,2011-01-28,et0,0.002 -oxford_land,2011-01-29,et0,0.002 -oxford_land,2011-01-30,et0,0.002 -oxford_land,2011-01-31,et0,0.002 -oxford_land,2011-02-01,et0,0.002 -oxford_land,2011-02-02,et0,0.002 -oxford_land,2011-02-03,et0,0.002 -oxford_land,2011-02-04,et0,0.002 -oxford_land,2011-02-05,et0,0.002 -oxford_land,2011-02-06,et0,0.002 -oxford_land,2011-02-07,et0,0.002 -oxford_land,2011-02-08,et0,0.002 -oxford_land,2011-02-09,et0,0.002 -oxford_land,2011-02-10,et0,0.002 -oxford_land,2011-02-11,et0,0.002 -oxford_land,2011-02-12,et0,0.002 -oxford_land,2011-02-13,et0,0.002 -oxford_land,2011-02-14,et0,0.002 -oxford_land,2011-02-15,et0,0.002 -oxford_land,2011-02-16,et0,0.002 -oxford_land,2011-02-17,et0,0.002 -oxford_land,2011-02-18,et0,0.002 -oxford_land,2011-02-19,et0,0.002 -oxford_land,2011-02-20,et0,0.002 -oxford_land,2011-02-21,et0,0.002 -oxford_land,2011-02-22,et0,0.002 -oxford_land,2011-02-23,et0,0.002 -oxford_land,2011-02-24,et0,0.002 -oxford_land,2011-02-25,et0,0.002 -oxford_land,2011-02-26,et0,0.002 -oxford_land,2011-02-27,et0,0.002 -oxford_land,2011-02-28,et0,0.002 -oxford_land,2011-03-01,et0,0.002 -oxford_land,2011-03-02,et0,0.002 -oxford_land,2011-03-03,et0,0.002 -oxford_land,2011-03-04,et0,0.002 -oxford_land,2011-03-05,et0,0.002 -oxford_land,2011-03-06,et0,0.002 -oxford_land,2011-03-07,et0,0.002 -oxford_land,2011-03-08,et0,0.002 -oxford_land,2011-03-09,et0,0.002 -oxford_land,2011-03-10,et0,0.002 -oxford_land,2011-03-11,et0,0.002 -oxford_land,2011-03-12,et0,0.002 -oxford_land,2011-03-13,et0,0.002 -oxford_land,2011-03-14,et0,0.002 -oxford_land,2011-03-15,et0,0.002 -oxford_land,2011-03-16,et0,0.002 -oxford_land,2011-03-17,et0,0.002 -oxford_land,2011-03-18,et0,0.002 -oxford_land,2011-03-19,et0,0.002 -oxford_land,2011-03-20,et0,0.002 -oxford_land,2011-03-21,et0,0.002 -oxford_land,2011-03-22,et0,0.002 -oxford_land,2011-03-23,et0,0.002 -oxford_land,2011-03-24,et0,0.002 -oxford_land,2011-03-25,et0,0.002 -oxford_land,2011-03-26,et0,0.002 -oxford_land,2011-03-27,et0,0.002 -oxford_land,2011-03-28,et0,0.002 -oxford_land,2011-03-29,et0,0.002 -oxford_land,2011-03-30,et0,0.002 -oxford_land,2011-03-31,et0,0.002 -oxford_land,2011-04-01,et0,0.002 -oxford_land,2011-04-02,et0,0.002 -oxford_land,2011-04-03,et0,0.002 -oxford_land,2011-04-04,et0,0.002 -oxford_land,2011-04-05,et0,0.002 -oxford_land,2011-04-06,et0,0.002 -oxford_land,2011-04-07,et0,0.002 -oxford_land,2011-04-08,et0,0.002 -oxford_land,2011-04-09,et0,0.002 -oxford_land,2011-04-10,et0,0.002 -oxford_land,2011-04-11,et0,0.002 -oxford_land,2011-04-12,et0,0.002 -oxford_land,2011-04-13,et0,0.002 -oxford_land,2011-04-14,et0,0.002 -oxford_land,2011-04-15,et0,0.002 -oxford_land,2011-04-16,et0,0.002 -oxford_land,2011-04-17,et0,0.002 -oxford_land,2011-04-18,et0,0.002 -oxford_land,2011-04-19,et0,0.002 -oxford_land,2011-04-20,et0,0.002 -oxford_land,2011-04-21,et0,0.002 -oxford_land,2011-04-22,et0,0.002 -oxford_land,2011-04-23,et0,0.002 -oxford_land,2011-04-24,et0,0.002 -oxford_land,2011-04-25,et0,0.002 -oxford_land,2011-04-26,et0,0.002 -oxford_land,2011-04-27,et0,0.002 -oxford_land,2011-04-28,et0,0.002 -oxford_land,2011-04-29,et0,0.002 -oxford_land,2011-04-30,et0,0.002 -oxford_land,2011-05-01,et0,0.002 -oxford_land,2011-05-02,et0,0.002 -oxford_land,2011-05-03,et0,0.002 -oxford_land,2011-05-04,et0,0.002 -oxford_land,2011-05-05,et0,0.002 -oxford_land,2011-05-06,et0,0.002 -oxford_land,2011-05-07,et0,0.002 -oxford_land,2011-05-08,et0,0.002 -oxford_land,2011-05-09,et0,0.002 -oxford_land,2011-05-10,et0,0.002 -oxford_land,2011-05-11,et0,0.002 -oxford_land,2011-05-12,et0,0.002 -oxford_land,2011-05-13,et0,0.002 -oxford_land,2011-05-14,et0,0.002 -oxford_land,2011-05-15,et0,0.002 -oxford_land,2011-05-16,et0,0.002 -oxford_land,2011-05-17,et0,0.002 -oxford_land,2011-05-18,et0,0.002 -oxford_land,2011-05-19,et0,0.002 -oxford_land,2011-05-20,et0,0.002 -oxford_land,2011-05-21,et0,0.002 -oxford_land,2011-05-22,et0,0.002 -oxford_land,2011-05-23,et0,0.002 -oxford_land,2011-05-24,et0,0.002 -oxford_land,2011-05-25,et0,0.002 -oxford_land,2011-05-26,et0,0.002 -oxford_land,2011-05-27,et0,0.002 -oxford_land,2011-05-28,et0,0.002 -oxford_land,2011-05-29,et0,0.002 -oxford_land,2011-05-30,et0,0.002 -oxford_land,2011-05-31,et0,0.002 -oxford_land,2011-06-01,et0,0.002 -oxford_land,2011-06-02,et0,0.002 -oxford_land,2011-06-03,et0,0.002 -oxford_land,2011-06-04,et0,0.002 -oxford_land,2011-06-05,et0,0.002 -oxford_land,2011-06-06,et0,0.002 -oxford_land,2011-06-07,et0,0.002 -oxford_land,2011-06-08,et0,0.002 -oxford_land,2011-06-09,et0,0.002 -oxford_land,2011-06-10,et0,0.002 -oxford_land,2011-06-11,et0,0.002 -oxford_land,2011-06-12,et0,0.002 -oxford_land,2011-06-13,et0,0.002 -oxford_land,2011-06-14,et0,0.002 -oxford_land,2011-06-15,et0,0.002 -oxford_land,2011-06-16,et0,0.002 -oxford_land,2011-06-17,et0,0.002 -oxford_land,2011-06-18,et0,0.002 -oxford_land,2011-06-19,et0,0.002 -oxford_land,2011-06-20,et0,0.002 -oxford_land,2011-06-21,et0,0.002 -oxford_land,2011-06-22,et0,0.002 -oxford_land,2011-06-23,et0,0.002 -oxford_land,2011-06-24,et0,0.002 -oxford_land,2011-06-25,et0,0.002 -oxford_land,2011-06-26,et0,0.002 -oxford_land,2011-06-27,et0,0.002 -oxford_land,2011-06-28,et0,0.002 -oxford_land,2011-06-29,et0,0.002 -oxford_land,2011-06-30,et0,0.002 -oxford_land,2011-07-01,et0,0.002 -oxford_land,2011-07-02,et0,0.002 -oxford_land,2011-07-03,et0,0.002 -oxford_land,2011-07-04,et0,0.002 -oxford_land,2011-07-05,et0,0.002 -oxford_land,2011-07-06,et0,0.002 -oxford_land,2011-07-07,et0,0.002 -oxford_land,2011-07-08,et0,0.002 -oxford_land,2011-07-09,et0,0.002 -oxford_land,2011-07-10,et0,0.002 -oxford_land,2011-07-11,et0,0.002 -oxford_land,2011-07-12,et0,0.002 -oxford_land,2011-07-13,et0,0.002 -oxford_land,2011-07-14,et0,0.002 -oxford_land,2011-07-15,et0,0.002 -oxford_land,2011-07-16,et0,0.002 -oxford_land,2011-07-17,et0,0.002 -oxford_land,2011-07-18,et0,0.002 -oxford_land,2011-07-19,et0,0.002 -oxford_land,2011-07-20,et0,0.002 -oxford_land,2011-07-21,et0,0.002 -oxford_land,2011-07-22,et0,0.002 -oxford_land,2011-07-23,et0,0.002 -oxford_land,2011-07-24,et0,0.002 -oxford_land,2011-07-25,et0,0.002 -oxford_land,2011-07-26,et0,0.002 -oxford_land,2011-07-27,et0,0.002 -oxford_land,2011-07-28,et0,0.002 -oxford_land,2011-07-29,et0,0.002 -oxford_land,2011-07-30,et0,0.002 -oxford_land,2011-07-31,et0,0.002 -oxford_land,2011-08-01,et0,0.002 -oxford_land,2011-08-02,et0,0.002 -oxford_land,2011-08-03,et0,0.002 -oxford_land,2011-08-04,et0,0.002 -oxford_land,2011-08-05,et0,0.002 -oxford_land,2011-08-06,et0,0.002 -oxford_land,2011-08-07,et0,0.002 -oxford_land,2011-08-08,et0,0.002 -oxford_land,2011-08-09,et0,0.002 -oxford_land,2011-08-10,et0,0.002 -oxford_land,2011-08-11,et0,0.002 -oxford_land,2011-08-12,et0,0.002 -oxford_land,2011-08-13,et0,0.002 -oxford_land,2011-08-14,et0,0.002 -oxford_land,2011-08-15,et0,0.002 -oxford_land,2011-08-16,et0,0.002 -oxford_land,2011-08-17,et0,0.002 -oxford_land,2011-08-18,et0,0.002 -oxford_land,2011-08-19,et0,0.002 -oxford_land,2011-08-20,et0,0.002 -oxford_land,2011-08-21,et0,0.002 -oxford_land,2011-08-22,et0,0.002 -oxford_land,2011-08-23,et0,0.002 -oxford_land,2011-08-24,et0,0.002 -oxford_land,2011-08-25,et0,0.002 -oxford_land,2011-08-26,et0,0.002 -oxford_land,2011-08-27,et0,0.002 -oxford_land,2011-08-28,et0,0.002 -oxford_land,2011-08-29,et0,0.002 -oxford_land,2011-08-30,et0,0.002 -oxford_land,2011-08-31,et0,0.002 -oxford_land,2011-09-01,et0,0.002 -oxford_land,2011-09-02,et0,0.002 -oxford_land,2011-09-03,et0,0.002 -oxford_land,2011-09-04,et0,0.002 -oxford_land,2011-09-05,et0,0.002 -oxford_land,2011-09-06,et0,0.002 -oxford_land,2011-09-07,et0,0.002 -oxford_land,2011-09-08,et0,0.002 -oxford_land,2011-09-09,et0,0.002 -oxford_land,2011-09-10,et0,0.002 -oxford_land,2011-09-11,et0,0.002 -oxford_land,2011-09-12,et0,0.002 -oxford_land,2011-09-13,et0,0.002 -oxford_land,2011-09-14,et0,0.002 -oxford_land,2011-09-15,et0,0.002 -oxford_land,2011-09-16,et0,0.002 -oxford_land,2011-09-17,et0,0.002 -oxford_land,2011-09-18,et0,0.002 -oxford_land,2011-09-19,et0,0.002 -oxford_land,2011-09-20,et0,0.002 -oxford_land,2011-09-21,et0,0.002 -oxford_land,2011-09-22,et0,0.002 -oxford_land,2011-09-23,et0,0.002 -oxford_land,2011-09-24,et0,0.002 -oxford_land,2011-09-25,et0,0.002 -oxford_land,2011-09-26,et0,0.002 -oxford_land,2011-09-27,et0,0.002 -oxford_land,2011-09-28,et0,0.002 -oxford_land,2011-09-29,et0,0.002 -oxford_land,2011-09-30,et0,0.002 -oxford_land,2011-10-01,et0,0.002 -oxford_land,2011-10-02,et0,0.002 -oxford_land,2011-10-03,et0,0.002 -oxford_land,2011-10-04,et0,0.002 -oxford_land,2011-10-05,et0,0.002 -oxford_land,2011-10-06,et0,0.002 -oxford_land,2011-10-07,et0,0.002 -oxford_land,2011-10-08,et0,0.002 -oxford_land,2011-10-09,et0,0.002 -oxford_land,2011-10-10,et0,0.002 -oxford_land,2011-10-11,et0,0.002 -oxford_land,2011-10-12,et0,0.002 -oxford_land,2011-10-13,et0,0.002 -oxford_land,2011-10-14,et0,0.002 -oxford_land,2011-10-15,et0,0.002 -oxford_land,2011-10-16,et0,0.002 -oxford_land,2011-10-17,et0,0.002 -oxford_land,2011-10-18,et0,0.002 -oxford_land,2011-10-19,et0,0.002 -oxford_land,2011-10-20,et0,0.002 -oxford_land,2011-10-21,et0,0.002 -oxford_land,2011-10-22,et0,0.002 -oxford_land,2011-10-23,et0,0.002 -oxford_land,2011-10-24,et0,0.002 -oxford_land,2011-10-25,et0,0.002 -oxford_land,2011-10-26,et0,0.002 -oxford_land,2011-10-27,et0,0.002 -oxford_land,2011-10-28,et0,0.002 -oxford_land,2011-10-29,et0,0.002 -oxford_land,2011-10-30,et0,0.002 -oxford_land,2011-10-31,et0,0.002 -oxford_land,2011-11-01,et0,0.002 -oxford_land,2011-11-02,et0,0.002 -oxford_land,2011-11-03,et0,0.002 -oxford_land,2011-11-04,et0,0.002 -oxford_land,2011-11-05,et0,0.002 -oxford_land,2011-11-06,et0,0.002 -oxford_land,2011-11-07,et0,0.002 -oxford_land,2011-11-08,et0,0.002 -oxford_land,2011-11-09,et0,0.002 -oxford_land,2011-11-10,et0,0.002 -oxford_land,2011-11-11,et0,0.002 -oxford_land,2011-11-12,et0,0.002 -oxford_land,2011-11-13,et0,0.002 -oxford_land,2011-11-14,et0,0.002 -oxford_land,2011-11-15,et0,0.002 -oxford_land,2011-11-16,et0,0.002 -oxford_land,2011-11-17,et0,0.002 -oxford_land,2011-11-18,et0,0.002 -oxford_land,2011-11-19,et0,0.002 -oxford_land,2011-11-20,et0,0.002 -oxford_land,2011-11-21,et0,0.002 -oxford_land,2011-11-22,et0,0.002 -oxford_land,2011-11-23,et0,0.002 -oxford_land,2011-11-24,et0,0.002 -oxford_land,2011-11-25,et0,0.002 -oxford_land,2011-11-26,et0,0.002 -oxford_land,2011-11-27,et0,0.002 -oxford_land,2011-11-28,et0,0.002 -oxford_land,2011-11-29,et0,0.002 -oxford_land,2011-11-30,et0,0.002 -oxford_land,2011-12-01,et0,0.002 -oxford_land,2011-12-02,et0,0.002 -oxford_land,2011-12-03,et0,0.002 -oxford_land,2011-12-04,et0,0.002 -oxford_land,2011-12-05,et0,0.002 -oxford_land,2011-12-06,et0,0.002 -oxford_land,2011-12-07,et0,0.002 -oxford_land,2011-12-08,et0,0.002 -oxford_land,2011-12-09,et0,0.002 -oxford_land,2011-12-10,et0,0.002 -oxford_land,2011-12-11,et0,0.002 -oxford_land,2011-12-12,et0,0.002 -oxford_land,2011-12-13,et0,0.002 -oxford_land,2011-12-14,et0,0.002 -oxford_land,2011-12-15,et0,0.002 -oxford_land,2011-12-16,et0,0.002 -oxford_land,2011-12-17,et0,0.002 -oxford_land,2011-12-18,et0,0.002 -oxford_land,2011-12-19,et0,0.002 -oxford_land,2011-12-20,et0,0.002 -oxford_land,2011-12-21,et0,0.002 -oxford_land,2011-12-22,et0,0.002 -oxford_land,2011-12-23,et0,0.002 -oxford_land,2011-12-24,et0,0.002 -oxford_land,2011-12-25,et0,0.002 -oxford_land,2011-12-26,et0,0.002 -oxford_land,2011-12-27,et0,0.002 -oxford_land,2011-12-28,et0,0.002 -oxford_land,2011-12-29,et0,0.002 -oxford_land,2011-12-30,et0,0.002 -oxford_land,2011-12-31,et0,0.002 -oxford_land,2012-01-01,et0,0.002 -oxford_land,2012-01-02,et0,0.002 -oxford_land,2012-01-03,et0,0.002 -oxford_land,2012-01-04,et0,0.002 -oxford_land,2012-01-05,et0,0.002 -oxford_land,2012-01-06,et0,0.002 -oxford_land,2012-01-07,et0,0.002 -oxford_land,2012-01-08,et0,0.002 -oxford_land,2012-01-09,et0,0.002 -oxford_land,2012-01-10,et0,0.002 -oxford_land,2012-01-11,et0,0.002 -oxford_land,2012-01-12,et0,0.002 -oxford_land,2012-01-13,et0,0.002 -oxford_land,2012-01-14,et0,0.002 -oxford_land,2012-01-15,et0,0.002 -oxford_land,2012-01-16,et0,0.002 -oxford_land,2012-01-17,et0,0.002 -oxford_land,2012-01-18,et0,0.002 -oxford_land,2012-01-19,et0,0.002 -oxford_land,2012-01-20,et0,0.002 -oxford_land,2012-01-21,et0,0.002 -oxford_land,2012-01-22,et0,0.002 -oxford_land,2012-01-23,et0,0.002 -oxford_land,2012-01-24,et0,0.002 -oxford_land,2012-01-25,et0,0.002 -oxford_land,2012-01-26,et0,0.002 -oxford_land,2012-01-27,et0,0.002 -oxford_land,2012-01-28,et0,0.002 -oxford_land,2012-01-29,et0,0.002 -oxford_land,2012-01-30,et0,0.002 -oxford_land,2012-01-31,et0,0.002 -oxford_land,2012-02-01,et0,0.002 -oxford_land,2012-02-02,et0,0.002 -oxford_land,2012-02-03,et0,0.002 -oxford_land,2012-02-04,et0,0.002 -oxford_land,2012-02-05,et0,0.002 -oxford_land,2012-02-06,et0,0.002 -oxford_land,2012-02-07,et0,0.002 -oxford_land,2012-02-08,et0,0.002 -oxford_land,2012-02-09,et0,0.002 -oxford_land,2012-02-10,et0,0.002 -oxford_land,2012-02-11,et0,0.002 -oxford_land,2012-02-12,et0,0.002 -oxford_land,2012-02-13,et0,0.002 -oxford_land,2012-02-14,et0,0.002 -oxford_land,2012-02-15,et0,0.002 -oxford_land,2012-02-16,et0,0.002 -oxford_land,2012-02-17,et0,0.002 -oxford_land,2012-02-18,et0,0.002 -oxford_land,2012-02-19,et0,0.002 -oxford_land,2012-02-20,et0,0.002 -oxford_land,2012-02-21,et0,0.002 -oxford_land,2012-02-22,et0,0.002 -oxford_land,2012-02-23,et0,0.002 -oxford_land,2012-02-24,et0,0.002 -oxford_land,2012-02-25,et0,0.002 -oxford_land,2012-02-26,et0,0.002 -oxford_land,2012-02-27,et0,0.002 -oxford_land,2012-02-28,et0,0.002 -oxford_land,2012-02-29,et0,0.002 -oxford_land,2012-03-01,et0,0.002 -oxford_land,2012-03-02,et0,0.002 -oxford_land,2012-03-03,et0,0.002 -oxford_land,2012-03-04,et0,0.002 -oxford_land,2012-03-05,et0,0.002 -oxford_land,2012-03-06,et0,0.002 -oxford_land,2012-03-07,et0,0.002 -oxford_land,2012-03-08,et0,0.002 -oxford_land,2012-03-09,et0,0.002 -oxford_land,2012-03-10,et0,0.002 -oxford_land,2012-03-11,et0,0.002 -oxford_land,2012-03-12,et0,0.002 -oxford_land,2012-03-13,et0,0.002 -oxford_land,2012-03-14,et0,0.002 -oxford_land,2012-03-15,et0,0.002 -oxford_land,2012-03-16,et0,0.002 -oxford_land,2012-03-17,et0,0.002 -oxford_land,2012-03-18,et0,0.002 -oxford_land,2012-03-19,et0,0.002 -oxford_land,2012-03-20,et0,0.002 -oxford_land,2012-03-21,et0,0.002 -oxford_land,2012-03-22,et0,0.002 -oxford_land,2012-03-23,et0,0.002 -oxford_land,2012-03-24,et0,0.002 -oxford_land,2012-03-25,et0,0.002 -oxford_land,2012-03-26,et0,0.002 -oxford_land,2012-03-27,et0,0.002 -oxford_land,2012-03-28,et0,0.002 -oxford_land,2012-03-29,et0,0.002 -oxford_land,2012-03-30,et0,0.002 -oxford_land,2012-03-31,et0,0.002 -oxford_land,2012-04-01,et0,0.002 -oxford_land,2012-04-02,et0,0.002 -oxford_land,2012-04-03,et0,0.002 -oxford_land,2012-04-04,et0,0.002 -oxford_land,2012-04-05,et0,0.002 -oxford_land,2012-04-06,et0,0.002 -oxford_land,2012-04-07,et0,0.002 -oxford_land,2012-04-08,et0,0.002 -oxford_land,2012-04-09,et0,0.002 -oxford_land,2012-04-10,et0,0.002 -oxford_land,2012-04-11,et0,0.002 -oxford_land,2012-04-12,et0,0.002 -oxford_land,2012-04-13,et0,0.002 -oxford_land,2012-04-14,et0,0.002 -oxford_land,2012-04-15,et0,0.002 -oxford_land,2012-04-16,et0,0.002 -oxford_land,2012-04-17,et0,0.002 -oxford_land,2012-04-18,et0,0.002 -oxford_land,2012-04-19,et0,0.002 -oxford_land,2012-04-20,et0,0.002 -oxford_land,2012-04-21,et0,0.002 -oxford_land,2012-04-22,et0,0.002 -oxford_land,2012-04-23,et0,0.002 -oxford_land,2012-04-24,et0,0.002 -oxford_land,2012-04-25,et0,0.002 -oxford_land,2012-04-26,et0,0.002 -oxford_land,2012-04-27,et0,0.002 -oxford_land,2012-04-28,et0,0.002 -oxford_land,2012-04-29,et0,0.002 -oxford_land,2012-04-30,et0,0.002 -oxford_land,2012-05-01,et0,0.002 -oxford_land,2012-05-02,et0,0.002 -oxford_land,2012-05-03,et0,0.002 -oxford_land,2012-05-04,et0,0.002 -oxford_land,2012-05-05,et0,0.002 -oxford_land,2012-05-06,et0,0.002 -oxford_land,2012-05-07,et0,0.002 -oxford_land,2012-05-08,et0,0.002 -oxford_land,2012-05-09,et0,0.002 -oxford_land,2012-05-10,et0,0.002 -oxford_land,2012-05-11,et0,0.002 -oxford_land,2012-05-12,et0,0.002 -oxford_land,2012-05-13,et0,0.002 -oxford_land,2012-05-14,et0,0.002 -oxford_land,2012-05-15,et0,0.002 -oxford_land,2012-05-16,et0,0.002 -oxford_land,2012-05-17,et0,0.002 -oxford_land,2012-05-18,et0,0.002 -oxford_land,2012-05-19,et0,0.002 -oxford_land,2012-05-20,et0,0.002 -oxford_land,2012-05-21,et0,0.002 -oxford_land,2012-05-22,et0,0.002 -oxford_land,2012-05-23,et0,0.002 -oxford_land,2012-05-24,et0,0.002 -oxford_land,2012-05-25,et0,0.002 -oxford_land,2012-05-26,et0,0.002 -oxford_land,2012-05-27,et0,0.002 -oxford_land,2012-05-28,et0,0.002 -oxford_land,2012-05-29,et0,0.002 -oxford_land,2012-05-30,et0,0.002 -oxford_land,2012-05-31,et0,0.002 -oxford_land,2012-06-01,et0,0.002 -oxford_land,2012-06-02,et0,0.002 -oxford_land,2012-06-03,et0,0.002 -oxford_land,2012-06-04,et0,0.002 -oxford_land,2012-06-05,et0,0.002 -oxford_land,2012-06-06,et0,0.002 -oxford_land,2012-06-07,et0,0.002 -oxford_land,2012-06-08,et0,0.002 -oxford_land,2012-06-09,et0,0.002 -oxford_land,2012-06-10,et0,0.002 -oxford_land,2012-06-11,et0,0.002 -oxford_land,2012-06-12,et0,0.002 -oxford_land,2012-06-13,et0,0.002 -oxford_land,2012-06-14,et0,0.002 -oxford_land,2012-06-15,et0,0.002 -oxford_land,2012-06-16,et0,0.002 -oxford_land,2012-06-17,et0,0.002 -oxford_land,2012-06-18,et0,0.002 -oxford_land,2012-06-19,et0,0.002 -oxford_land,2012-06-20,et0,0.002 -oxford_land,2012-06-21,et0,0.002 -oxford_land,2012-06-22,et0,0.002 -oxford_land,2012-06-23,et0,0.002 -oxford_land,2012-06-24,et0,0.002 -oxford_land,2012-06-25,et0,0.002 -oxford_land,2012-06-26,et0,0.002 -oxford_land,2012-06-27,et0,0.002 -oxford_land,2012-06-28,et0,0.002 -oxford_land,2012-06-29,et0,0.002 -oxford_land,2012-06-30,et0,0.002 -oxford_land,2012-07-01,et0,0.002 -oxford_land,2012-07-02,et0,0.002 -oxford_land,2012-07-03,et0,0.002 -oxford_land,2012-07-04,et0,0.002 -oxford_land,2012-07-05,et0,0.002 -oxford_land,2012-07-06,et0,0.002 -oxford_land,2012-07-07,et0,0.002 -oxford_land,2012-07-08,et0,0.002 -oxford_land,2012-07-09,et0,0.002 -oxford_land,2012-07-10,et0,0.002 -oxford_land,2012-07-11,et0,0.002 -oxford_land,2012-07-12,et0,0.002 -oxford_land,2012-07-13,et0,0.002 -oxford_land,2012-07-14,et0,0.002 -oxford_land,2012-07-15,et0,0.002 -oxford_land,2012-07-16,et0,0.002 -oxford_land,2012-07-17,et0,0.002 -oxford_land,2012-07-18,et0,0.002 -oxford_land,2012-07-19,et0,0.002 -oxford_land,2012-07-20,et0,0.002 -oxford_land,2012-07-21,et0,0.002 -oxford_land,2012-07-22,et0,0.002 -oxford_land,2012-07-23,et0,0.002 -oxford_land,2012-07-24,et0,0.002 -oxford_land,2012-07-25,et0,0.002 -oxford_land,2012-07-26,et0,0.002 -oxford_land,2012-07-27,et0,0.002 -oxford_land,2012-07-28,et0,0.002 -oxford_land,2012-07-29,et0,0.002 -oxford_land,2012-07-30,et0,0.002 -oxford_land,2012-07-31,et0,0.002 -oxford_land,2012-08-01,et0,0.002 -oxford_land,2012-08-02,et0,0.002 -oxford_land,2012-08-03,et0,0.002 -oxford_land,2012-08-04,et0,0.002 -oxford_land,2012-08-05,et0,0.002 -oxford_land,2012-08-06,et0,0.002 -oxford_land,2012-08-07,et0,0.002 -oxford_land,2012-08-08,et0,0.002 -oxford_land,2012-08-09,et0,0.002 -oxford_land,2012-08-10,et0,0.002 -oxford_land,2012-08-11,et0,0.002 -oxford_land,2012-08-12,et0,0.002 -oxford_land,2012-08-13,et0,0.002 -oxford_land,2012-08-14,et0,0.002 -oxford_land,2012-08-15,et0,0.002 -oxford_land,2012-08-16,et0,0.002 -oxford_land,2012-08-17,et0,0.002 -oxford_land,2012-08-18,et0,0.002 -oxford_land,2012-08-19,et0,0.002 -oxford_land,2012-08-20,et0,0.002 -oxford_land,2012-08-21,et0,0.002 -oxford_land,2012-08-22,et0,0.002 -oxford_land,2012-08-23,et0,0.002 -oxford_land,2012-08-24,et0,0.002 -oxford_land,2012-08-25,et0,0.002 -oxford_land,2012-08-26,et0,0.002 -oxford_land,2012-08-27,et0,0.002 -oxford_land,2012-08-28,et0,0.002 -oxford_land,2012-08-29,et0,0.002 -oxford_land,2012-08-30,et0,0.002 -oxford_land,2012-08-31,et0,0.002 -oxford_land,2012-09-01,et0,0.002 -oxford_land,2012-09-02,et0,0.002 -oxford_land,2012-09-03,et0,0.002 -oxford_land,2012-09-04,et0,0.002 -oxford_land,2012-09-05,et0,0.002 -oxford_land,2012-09-06,et0,0.002 -oxford_land,2012-09-07,et0,0.002 -oxford_land,2012-09-08,et0,0.002 -oxford_land,2012-09-09,et0,0.002 -oxford_land,2012-09-10,et0,0.002 -oxford_land,2012-09-11,et0,0.002 -oxford_land,2012-09-12,et0,0.002 -oxford_land,2012-09-13,et0,0.002 -oxford_land,2012-09-14,et0,0.002 -oxford_land,2012-09-15,et0,0.002 -oxford_land,2012-09-16,et0,0.002 -oxford_land,2012-09-17,et0,0.002 -oxford_land,2012-09-18,et0,0.002 -oxford_land,2012-09-19,et0,0.002 -oxford_land,2012-09-20,et0,0.002 -oxford_land,2012-09-21,et0,0.002 -oxford_land,2012-09-22,et0,0.002 -oxford_land,2012-09-23,et0,0.002 -oxford_land,2012-09-24,et0,0.002 -oxford_land,2012-09-25,et0,0.002 -oxford_land,2012-09-26,et0,0.002 -oxford_land,2012-09-27,et0,0.002 -oxford_land,2012-09-28,et0,0.002 -oxford_land,2012-09-29,et0,0.002 -oxford_land,2012-09-30,et0,0.002 -oxford_land,2012-10-01,et0,0.002 -oxford_land,2012-10-02,et0,0.002 -oxford_land,2012-10-03,et0,0.002 -oxford_land,2012-10-04,et0,0.002 -oxford_land,2012-10-05,et0,0.002 -oxford_land,2012-10-06,et0,0.002 -oxford_land,2012-10-07,et0,0.002 -oxford_land,2012-10-08,et0,0.002 -oxford_land,2012-10-09,et0,0.002 -oxford_land,2012-10-10,et0,0.002 -oxford_land,2012-10-11,et0,0.002 -oxford_land,2012-10-12,et0,0.002 -oxford_land,2012-10-13,et0,0.002 -oxford_land,2012-10-14,et0,0.002 -oxford_land,2012-10-15,et0,0.002 -oxford_land,2012-10-16,et0,0.002 -oxford_land,2012-10-17,et0,0.002 -oxford_land,2012-10-18,et0,0.002 -oxford_land,2012-10-19,et0,0.002 -oxford_land,2012-10-20,et0,0.002 -oxford_land,2012-10-21,et0,0.002 -oxford_land,2012-10-22,et0,0.002 -oxford_land,2012-10-23,et0,0.002 -oxford_land,2012-10-24,et0,0.002 -oxford_land,2012-10-25,et0,0.002 -oxford_land,2012-10-26,et0,0.002 -oxford_land,2012-10-27,et0,0.002 -oxford_land,2012-10-28,et0,0.002 -oxford_land,2012-10-29,et0,0.002 -oxford_land,2012-10-30,et0,0.002 -oxford_land,2012-10-31,et0,0.002 -oxford_land,2012-11-01,et0,0.002 -oxford_land,2012-11-02,et0,0.002 -oxford_land,2012-11-03,et0,0.002 -oxford_land,2012-11-04,et0,0.002 -oxford_land,2012-11-05,et0,0.002 -oxford_land,2012-11-06,et0,0.002 -oxford_land,2012-11-07,et0,0.002 -oxford_land,2012-11-08,et0,0.002 -oxford_land,2012-11-09,et0,0.002 -oxford_land,2012-11-10,et0,0.002 -oxford_land,2012-11-11,et0,0.002 -oxford_land,2012-11-12,et0,0.002 -oxford_land,2012-11-13,et0,0.002 -oxford_land,2012-11-14,et0,0.002 -oxford_land,2012-11-15,et0,0.002 -oxford_land,2012-11-16,et0,0.002 -oxford_land,2012-11-17,et0,0.002 -oxford_land,2012-11-18,et0,0.002 -oxford_land,2012-11-19,et0,0.002 -oxford_land,2012-11-20,et0,0.002 -oxford_land,2012-11-21,et0,0.002 -oxford_land,2012-11-22,et0,0.002 -oxford_land,2012-11-23,et0,0.002 -oxford_land,2012-11-24,et0,0.002 -oxford_land,2012-11-25,et0,0.002 -oxford_land,2012-11-26,et0,0.002 -oxford_land,2012-11-27,et0,0.002 -oxford_land,2012-11-28,et0,0.002 -oxford_land,2012-11-29,et0,0.002 -oxford_land,2012-11-30,et0,0.002 -oxford_land,2012-12-01,et0,0.002 -oxford_land,2012-12-02,et0,0.002 -oxford_land,2012-12-03,et0,0.002 -oxford_land,2012-12-04,et0,0.002 -oxford_land,2012-12-05,et0,0.002 -oxford_land,2012-12-06,et0,0.002 -oxford_land,2012-12-07,et0,0.002 -oxford_land,2012-12-08,et0,0.002 -oxford_land,2012-12-09,et0,0.002 -oxford_land,2012-12-10,et0,0.002 -oxford_land,2012-12-11,et0,0.002 -oxford_land,2012-12-12,et0,0.002 -oxford_land,2012-12-13,et0,0.002 -oxford_land,2012-12-14,et0,0.002 -oxford_land,2012-12-15,et0,0.002 -oxford_land,2012-12-16,et0,0.002 -oxford_land,2012-12-17,et0,0.002 -oxford_land,2012-12-18,et0,0.002 -oxford_land,2012-12-19,et0,0.002 -oxford_land,2012-12-20,et0,0.002 -oxford_land,2012-12-21,et0,0.002 -oxford_land,2012-12-22,et0,0.002 -oxford_land,2012-12-23,et0,0.002 -oxford_land,2012-12-24,et0,0.002 -oxford_land,2012-12-25,et0,0.002 -oxford_land,2012-12-26,et0,0.002 -oxford_land,2012-12-27,et0,0.002 -oxford_land,2012-12-28,et0,0.002 -oxford_land,2012-12-29,et0,0.002 -oxford_land,2012-12-30,et0,0.002 -oxford_land,2012-12-31,et0,0.002 -oxford_land,2013-01-01,et0,0.002 -oxford_land,2013-01-02,et0,0.002 -oxford_land,2013-01-03,et0,0.002 -oxford_land,2013-01-04,et0,0.002 -oxford_land,2013-01-05,et0,0.002 -oxford_land,2013-01-06,et0,0.002 -oxford_land,2013-01-07,et0,0.002 -oxford_land,2013-01-08,et0,0.002 -oxford_land,2013-01-09,et0,0.002 -oxford_land,2013-01-10,et0,0.002 -oxford_land,2013-01-11,et0,0.002 -oxford_land,2013-01-12,et0,0.002 -oxford_land,2013-01-13,et0,0.002 -oxford_land,2013-01-14,et0,0.002 -oxford_land,2013-01-15,et0,0.002 -oxford_land,2013-01-16,et0,0.002 -oxford_land,2013-01-17,et0,0.002 -oxford_land,2013-01-18,et0,0.002 -oxford_land,2013-01-19,et0,0.002 -oxford_land,2013-01-20,et0,0.002 -oxford_land,2013-01-21,et0,0.002 -oxford_land,2013-01-22,et0,0.002 -oxford_land,2013-01-23,et0,0.002 -oxford_land,2013-01-24,et0,0.002 -oxford_land,2013-01-25,et0,0.002 -oxford_land,2013-01-26,et0,0.002 -oxford_land,2013-01-27,et0,0.002 -oxford_land,2013-01-28,et0,0.002 -oxford_land,2013-01-29,et0,0.002 -oxford_land,2013-01-30,et0,0.002 -oxford_land,2013-01-31,et0,0.002 -oxford_land,2013-02-01,et0,0.002 -oxford_land,2013-02-02,et0,0.002 -oxford_land,2013-02-03,et0,0.002 -oxford_land,2013-02-04,et0,0.002 -oxford_land,2013-02-05,et0,0.002 -oxford_land,2013-02-06,et0,0.002 -oxford_land,2013-02-07,et0,0.002 -oxford_land,2013-02-08,et0,0.002 -oxford_land,2013-02-09,et0,0.002 -oxford_land,2013-02-10,et0,0.002 -oxford_land,2013-02-11,et0,0.002 -oxford_land,2013-02-12,et0,0.002 -oxford_land,2013-02-13,et0,0.002 -oxford_land,2013-02-14,et0,0.002 -oxford_land,2013-02-15,et0,0.002 -oxford_land,2013-02-16,et0,0.002 -oxford_land,2013-02-17,et0,0.002 -oxford_land,2013-02-18,et0,0.002 -oxford_land,2013-02-19,et0,0.002 -oxford_land,2013-02-20,et0,0.002 -oxford_land,2013-02-21,et0,0.002 -oxford_land,2013-02-22,et0,0.002 -oxford_land,2013-02-23,et0,0.002 -oxford_land,2013-02-24,et0,0.002 -oxford_land,2013-02-25,et0,0.002 -oxford_land,2009-03-03,temperature,7.625 -oxford_land,2009-03-04,temperature,7.495833333 -oxford_land,2009-03-05,temperature,7.366666667 -oxford_land,2009-03-06,temperature,7.2375 -oxford_land,2009-03-07,temperature,7.108333333 -oxford_land,2009-03-08,temperature,6.979166667 -oxford_land,2009-03-09,temperature,6.85 -oxford_land,2009-03-10,temperature,7.289285714 -oxford_land,2009-03-11,temperature,7.728571429 -oxford_land,2009-03-12,temperature,8.167857143 -oxford_land,2009-03-13,temperature,8.607142857 -oxford_land,2009-03-14,temperature,9.046428571 -oxford_land,2009-03-15,temperature,9.485714286 -oxford_land,2009-03-16,temperature,9.925 -oxford_land,2009-03-17,temperature,9.70625 -oxford_land,2009-03-18,temperature,9.4875 -oxford_land,2009-03-19,temperature,9.26875 -oxford_land,2009-03-20,temperature,9.05 -oxford_land,2009-03-21,temperature,8.83125 -oxford_land,2009-03-22,temperature,8.6125 -oxford_land,2009-03-23,temperature,8.39375 -oxford_land,2009-03-24,temperature,8.175 -oxford_land,2009-03-25,temperature,8.296875 -oxford_land,2009-03-26,temperature,8.41875 -oxford_land,2009-03-27,temperature,8.540625 -oxford_land,2009-03-28,temperature,8.6625 -oxford_land,2009-03-29,temperature,8.784375 -oxford_land,2009-03-30,temperature,8.90625 -oxford_land,2009-03-31,temperature,9.028125 -oxford_land,2009-04-01,temperature,9.15 -oxford_land,2009-04-02,temperature,9.55 -oxford_land,2009-04-03,temperature,9.95 -oxford_land,2009-04-04,temperature,10.35 -oxford_land,2009-04-05,temperature,10.75 -oxford_land,2009-04-06,temperature,11.15 -oxford_land,2009-04-07,temperature,11.23125 -oxford_land,2009-04-08,temperature,11.3125 -oxford_land,2009-04-09,temperature,11.39375 -oxford_land,2009-04-10,temperature,11.475 -oxford_land,2009-04-11,temperature,11.55625 -oxford_land,2009-04-12,temperature,11.6375 -oxford_land,2009-04-13,temperature,11.71875 -oxford_land,2009-04-14,temperature,11.8 -oxford_land,2009-04-15,temperature,11.85416667 -oxford_land,2009-04-16,temperature,11.90833333 -oxford_land,2009-04-17,temperature,11.9625 -oxford_land,2009-04-18,temperature,12.01666667 -oxford_land,2009-04-19,temperature,12.07083333 -oxford_land,2009-04-20,temperature,12.125 -oxford_land,2009-04-21,temperature,12.1 -oxford_land,2009-04-22,temperature,12.075 -oxford_land,2009-04-23,temperature,12.05 -oxford_land,2009-04-24,temperature,12.025 -oxford_land,2009-04-25,temperature,12 -oxford_land,2009-04-26,temperature,11.975 -oxford_land,2009-04-27,temperature,11.95 -oxford_land,2009-04-28,temperature,12.075 -oxford_land,2009-04-29,temperature,12.2 -oxford_land,2009-04-30,temperature,12.325 -oxford_land,2009-05-01,temperature,12.45 -oxford_land,2009-05-02,temperature,12.575 -oxford_land,2009-05-03,temperature,12.7 -oxford_land,2009-05-04,temperature,12.825 -oxford_land,2009-05-05,temperature,12.95 -oxford_land,2009-05-06,temperature,13.15 -oxford_land,2009-05-07,temperature,13.35 -oxford_land,2009-05-08,temperature,13.55 -oxford_land,2009-05-09,temperature,13.75 -oxford_land,2009-05-10,temperature,13.95 -oxford_land,2009-05-11,temperature,14.15 -oxford_land,2009-05-12,temperature,14 -oxford_land,2009-05-13,temperature,13.85 -oxford_land,2009-05-14,temperature,13.7 -oxford_land,2009-05-15,temperature,13.55 -oxford_land,2009-05-16,temperature,13.4 -oxford_land,2009-05-17,temperature,13.25 -oxford_land,2009-05-18,temperature,13.1 -oxford_land,2009-05-19,temperature,13.64375 -oxford_land,2009-05-20,temperature,14.1875 -oxford_land,2009-05-21,temperature,14.73125 -oxford_land,2009-05-22,temperature,15.275 -oxford_land,2009-05-23,temperature,15.81875 -oxford_land,2009-05-24,temperature,16.3625 -oxford_land,2009-05-25,temperature,16.90625 -oxford_land,2009-05-26,temperature,17.45 -oxford_land,2009-05-27,temperature,17.81666667 -oxford_land,2009-05-28,temperature,18.18333333 -oxford_land,2009-05-29,temperature,18.55 -oxford_land,2009-05-30,temperature,18.91666667 -oxford_land,2009-05-31,temperature,19.28333333 -oxford_land,2009-06-01,temperature,19.65 -oxford_land,2009-06-02,temperature,18.99285714 -oxford_land,2009-06-03,temperature,18.33571429 -oxford_land,2009-06-04,temperature,17.67857143 -oxford_land,2009-06-05,temperature,17.02142857 -oxford_land,2009-06-06,temperature,16.36428571 -oxford_land,2009-06-07,temperature,15.70714286 -oxford_land,2009-06-08,temperature,15.05 -oxford_land,2009-06-09,temperature,15.60357143 -oxford_land,2009-06-10,temperature,16.15714286 -oxford_land,2009-06-11,temperature,16.71071429 -oxford_land,2009-06-12,temperature,17.26428571 -oxford_land,2009-06-13,temperature,17.81785714 -oxford_land,2009-06-14,temperature,18.37142857 -oxford_land,2009-06-15,temperature,18.925 -oxford_land,2009-06-16,temperature,18.69285714 -oxford_land,2009-06-17,temperature,18.46071429 -oxford_land,2009-06-18,temperature,18.22857143 -oxford_land,2009-06-19,temperature,17.99642857 -oxford_land,2009-06-20,temperature,17.76428571 -oxford_land,2009-06-21,temperature,17.53214286 -oxford_land,2009-06-22,temperature,17.3 -oxford_land,2009-06-23,temperature,17.95357143 -oxford_land,2009-06-24,temperature,18.60714286 -oxford_land,2009-06-25,temperature,19.26071429 -oxford_land,2009-06-26,temperature,19.91428571 -oxford_land,2009-06-27,temperature,20.56785714 -oxford_land,2009-06-28,temperature,21.22142857 -oxford_land,2009-06-29,temperature,21.875 -oxford_land,2009-06-30,temperature,21.62857143 -oxford_land,2009-07-01,temperature,21.38214286 -oxford_land,2009-07-02,temperature,21.13571429 -oxford_land,2009-07-03,temperature,20.88928571 -oxford_land,2009-07-04,temperature,20.64285714 -oxford_land,2009-07-05,temperature,20.39642857 -oxford_land,2009-07-06,temperature,20.15 -oxford_land,2009-07-07,temperature,19.97857143 -oxford_land,2009-07-08,temperature,19.80714286 -oxford_land,2009-07-09,temperature,19.63571429 -oxford_land,2009-07-10,temperature,19.46428571 -oxford_land,2009-07-11,temperature,19.29285714 -oxford_land,2009-07-12,temperature,19.12142857 -oxford_land,2009-07-13,temperature,18.95 -oxford_land,2009-07-14,temperature,18.82142857 -oxford_land,2009-07-15,temperature,18.69285714 -oxford_land,2009-07-16,temperature,18.56428571 -oxford_land,2009-07-17,temperature,18.43571429 -oxford_land,2009-07-18,temperature,18.30714286 -oxford_land,2009-07-19,temperature,18.17857143 -oxford_land,2009-07-20,temperature,18.05 -oxford_land,2009-07-21,temperature,18.01428571 -oxford_land,2009-07-22,temperature,17.97857143 -oxford_land,2009-07-23,temperature,17.94285714 -oxford_land,2009-07-24,temperature,17.90714286 -oxford_land,2009-07-25,temperature,17.87142857 -oxford_land,2009-07-26,temperature,17.83571429 -oxford_land,2009-07-27,temperature,17.8 -oxford_land,2009-07-28,temperature,17.809375 -oxford_land,2009-07-29,temperature,17.81875 -oxford_land,2009-07-30,temperature,17.828125 -oxford_land,2009-07-31,temperature,17.8375 -oxford_land,2009-08-01,temperature,17.846875 -oxford_land,2009-08-02,temperature,17.85625 -oxford_land,2009-08-03,temperature,17.865625 -oxford_land,2009-08-04,temperature,17.875 -oxford_land,2009-08-05,temperature,17.95416667 -oxford_land,2009-08-06,temperature,18.03333333 -oxford_land,2009-08-07,temperature,18.1125 -oxford_land,2009-08-08,temperature,18.19166667 -oxford_land,2009-08-09,temperature,18.27083333 -oxford_land,2009-08-10,temperature,18.35 -oxford_land,2009-08-11,temperature,18.475 -oxford_land,2009-08-12,temperature,18.6 -oxford_land,2009-08-13,temperature,18.725 -oxford_land,2009-08-14,temperature,18.85 -oxford_land,2009-08-15,temperature,18.975 -oxford_land,2009-08-16,temperature,19.1 -oxford_land,2009-08-17,temperature,19.225 -oxford_land,2009-08-18,temperature,19.14642857 -oxford_land,2009-08-19,temperature,19.06785714 -oxford_land,2009-08-20,temperature,18.98928571 -oxford_land,2009-08-21,temperature,18.91071429 -oxford_land,2009-08-22,temperature,18.83214286 -oxford_land,2009-08-23,temperature,18.75357143 -oxford_land,2009-08-24,temperature,18.675 -oxford_land,2009-08-25,temperature,18.43611111 -oxford_land,2009-08-26,temperature,18.19722222 -oxford_land,2009-08-27,temperature,17.95833333 -oxford_land,2009-08-28,temperature,17.71944444 -oxford_land,2009-08-29,temperature,17.48055556 -oxford_land,2009-08-30,temperature,17.24166667 -oxford_land,2009-08-31,temperature,17.00277778 -oxford_land,2009-09-01,temperature,16.76388889 -oxford_land,2009-09-02,temperature,16.525 -oxford_land,2009-09-03,temperature,16.425 -oxford_land,2009-09-04,temperature,16.325 -oxford_land,2009-09-05,temperature,16.225 -oxford_land,2009-09-06,temperature,16.125 -oxford_land,2009-09-07,temperature,16.025 -oxford_land,2009-09-08,temperature,16.1 -oxford_land,2009-09-09,temperature,16.175 -oxford_land,2009-09-10,temperature,16.25 -oxford_land,2009-09-11,temperature,16.325 -oxford_land,2009-09-12,temperature,16.4 -oxford_land,2009-09-13,temperature,16.475 -oxford_land,2009-09-14,temperature,16.55 -oxford_land,2009-09-15,temperature,16.625 -oxford_land,2009-09-16,temperature,16.675 -oxford_land,2009-09-17,temperature,16.725 -oxford_land,2009-09-18,temperature,16.775 -oxford_land,2009-09-19,temperature,16.825 -oxford_land,2009-09-20,temperature,16.875 -oxford_land,2009-09-21,temperature,16.925 -oxford_land,2009-09-22,temperature,16.975 -oxford_land,2009-09-23,temperature,17.03571429 -oxford_land,2009-09-24,temperature,17.09642857 -oxford_land,2009-09-25,temperature,17.15714286 -oxford_land,2009-09-26,temperature,17.21785714 -oxford_land,2009-09-27,temperature,17.27857143 -oxford_land,2009-09-28,temperature,17.33928571 -oxford_land,2009-09-29,temperature,17.4 -oxford_land,2009-09-30,temperature,16.92916667 -oxford_land,2009-10-01,temperature,16.45833333 -oxford_land,2009-10-02,temperature,15.9875 -oxford_land,2009-10-03,temperature,15.51666667 -oxford_land,2009-10-04,temperature,15.04583333 -oxford_land,2009-10-05,temperature,14.575 -oxford_land,2009-10-06,temperature,14.478125 -oxford_land,2009-10-07,temperature,14.38125 -oxford_land,2009-10-08,temperature,14.284375 -oxford_land,2009-10-09,temperature,14.1875 -oxford_land,2009-10-10,temperature,14.090625 -oxford_land,2009-10-11,temperature,13.99375 -oxford_land,2009-10-12,temperature,13.896875 -oxford_land,2009-10-13,temperature,13.8 -oxford_land,2009-10-14,temperature,13.45357143 -oxford_land,2009-10-15,temperature,13.10714286 -oxford_land,2009-10-16,temperature,12.76071429 -oxford_land,2009-10-17,temperature,12.41428571 -oxford_land,2009-10-18,temperature,12.06785714 -oxford_land,2009-10-19,temperature,11.72142857 -oxford_land,2009-10-20,temperature,11.375 -oxford_land,2009-10-21,temperature,11.83928571 -oxford_land,2009-10-22,temperature,12.30357143 -oxford_land,2009-10-23,temperature,12.76785714 -oxford_land,2009-10-24,temperature,13.23214286 -oxford_land,2009-10-25,temperature,13.69642857 -oxford_land,2009-10-26,temperature,14.16071429 -oxford_land,2009-10-27,temperature,14.625 -oxford_land,2009-10-28,temperature,14.45714286 -oxford_land,2009-10-29,temperature,14.28928571 -oxford_land,2009-10-30,temperature,14.12142857 -oxford_land,2009-10-31,temperature,13.95357143 -oxford_land,2009-11-01,temperature,13.78571429 -oxford_land,2009-11-02,temperature,13.61785714 -oxford_land,2009-11-03,temperature,13.45 -oxford_land,2009-11-04,temperature,12.99642857 -oxford_land,2009-11-05,temperature,12.54285714 -oxford_land,2009-11-06,temperature,12.08928571 -oxford_land,2009-11-07,temperature,11.63571429 -oxford_land,2009-11-08,temperature,11.18214286 -oxford_land,2009-11-09,temperature,10.72857143 -oxford_land,2009-11-10,temperature,10.275 -oxford_land,2009-11-11,temperature,10.175 -oxford_land,2009-11-12,temperature,10.075 -oxford_land,2009-11-13,temperature,9.975 -oxford_land,2009-11-14,temperature,9.875 -oxford_land,2009-11-15,temperature,9.775 -oxford_land,2009-11-16,temperature,9.675 -oxford_land,2009-11-17,temperature,9.575 -oxford_land,2009-11-18,temperature,9.610714286 -oxford_land,2009-11-19,temperature,9.646428571 -oxford_land,2009-11-20,temperature,9.682142857 -oxford_land,2009-11-21,temperature,9.717857143 -oxford_land,2009-11-22,temperature,9.753571429 -oxford_land,2009-11-23,temperature,9.789285714 -oxford_land,2009-11-24,temperature,9.825 -oxford_land,2009-11-25,temperature,9.335714286 -oxford_land,2009-11-26,temperature,8.846428571 -oxford_land,2009-11-27,temperature,8.357142857 -oxford_land,2009-11-28,temperature,7.867857143 -oxford_land,2009-11-29,temperature,7.378571429 -oxford_land,2009-11-30,temperature,6.889285714 -oxford_land,2009-12-01,temperature,6.4 -oxford_land,2009-12-02,temperature,6.692857143 -oxford_land,2009-12-03,temperature,6.985714286 -oxford_land,2009-12-04,temperature,7.278571429 -oxford_land,2009-12-05,temperature,7.571428571 -oxford_land,2009-12-06,temperature,7.864285714 -oxford_land,2009-12-07,temperature,8.157142857 -oxford_land,2009-12-08,temperature,8.45 -oxford_land,2009-12-09,temperature,8.19375 -oxford_land,2009-12-10,temperature,7.9375 -oxford_land,2009-12-11,temperature,7.68125 -oxford_land,2009-12-12,temperature,7.425 -oxford_land,2009-12-13,temperature,7.16875 -oxford_land,2009-12-14,temperature,6.9125 -oxford_land,2009-12-15,temperature,6.65625 -oxford_land,2009-12-16,temperature,6.4 -oxford_land,2009-12-17,temperature,6.21 -oxford_land,2009-12-18,temperature,6.02 -oxford_land,2009-12-19,temperature,5.83 -oxford_land,2009-12-20,temperature,5.64 -oxford_land,2009-12-21,temperature,5.45 -oxford_land,2009-12-22,temperature,5.26 -oxford_land,2009-12-23,temperature,5.07 -oxford_land,2009-12-24,temperature,4.88 -oxford_land,2009-12-25,temperature,4.69 -oxford_land,2009-12-26,temperature,4.5 -oxford_land,2009-12-27,temperature,4.31 -oxford_land,2009-12-28,temperature,4.12 -oxford_land,2009-12-29,temperature,3.93 -oxford_land,2009-12-30,temperature,3.74 -oxford_land,2009-12-31,temperature,3.55 -oxford_land,2010-01-01,temperature,3.36 -oxford_land,2010-01-02,temperature,3.17 -oxford_land,2010-01-03,temperature,2.98 -oxford_land,2010-01-04,temperature,2.79 -oxford_land,2010-01-05,temperature,2.6 -oxford_land,2010-01-06,temperature,2.646428571 -oxford_land,2010-01-07,temperature,2.692857143 -oxford_land,2010-01-08,temperature,2.739285714 -oxford_land,2010-01-09,temperature,2.785714286 -oxford_land,2010-01-10,temperature,2.832142857 -oxford_land,2010-01-11,temperature,2.878571429 -oxford_land,2010-01-12,temperature,2.925 -oxford_land,2010-01-13,temperature,3.328571429 -oxford_land,2010-01-14,temperature,3.732142857 -oxford_land,2010-01-15,temperature,4.135714286 -oxford_land,2010-01-16,temperature,4.539285714 -oxford_land,2010-01-17,temperature,4.942857143 -oxford_land,2010-01-18,temperature,5.346428571 -oxford_land,2010-01-19,temperature,5.75 -oxford_land,2010-01-20,temperature,5.628571429 -oxford_land,2010-01-21,temperature,5.507142857 -oxford_land,2010-01-22,temperature,5.385714286 -oxford_land,2010-01-23,temperature,5.264285714 -oxford_land,2010-01-24,temperature,5.142857143 -oxford_land,2010-01-25,temperature,5.021428571 -oxford_land,2010-01-26,temperature,4.9 -oxford_land,2010-01-27,temperature,4.910714286 -oxford_land,2010-01-28,temperature,4.921428571 -oxford_land,2010-01-29,temperature,4.932142857 -oxford_land,2010-01-30,temperature,4.942857143 -oxford_land,2010-01-31,temperature,4.953571429 -oxford_land,2010-02-01,temperature,4.964285714 -oxford_land,2010-02-02,temperature,4.975 -oxford_land,2010-02-03,temperature,5.021428571 -oxford_land,2010-02-04,temperature,5.067857143 -oxford_land,2010-02-05,temperature,5.114285714 -oxford_land,2010-02-06,temperature,5.160714286 -oxford_land,2010-02-07,temperature,5.207142857 -oxford_land,2010-02-08,temperature,5.253571429 -oxford_land,2010-02-09,temperature,5.3 -oxford_land,2010-02-10,temperature,5.325 -oxford_land,2010-02-11,temperature,5.35 -oxford_land,2010-02-12,temperature,5.375 -oxford_land,2010-02-13,temperature,5.4 -oxford_land,2010-02-14,temperature,5.425 -oxford_land,2010-02-15,temperature,5.45 -oxford_land,2010-02-16,temperature,5.475 -oxford_land,2010-02-17,temperature,5.35 -oxford_land,2010-02-18,temperature,5.225 -oxford_land,2010-02-19,temperature,5.1 -oxford_land,2010-02-20,temperature,4.975 -oxford_land,2010-02-21,temperature,4.85 -oxford_land,2010-02-22,temperature,4.725 -oxford_land,2010-02-23,temperature,4.6 -oxford_land,2010-02-24,temperature,4.935714286 -oxford_land,2010-02-25,temperature,5.271428571 -oxford_land,2010-02-26,temperature,5.607142857 -oxford_land,2010-02-27,temperature,5.942857143 -oxford_land,2010-02-28,temperature,6.278571429 -oxford_land,2010-03-01,temperature,6.614285714 -oxford_land,2010-03-02,temperature,6.95 -oxford_land,2010-03-03,temperature,6.828571429 -oxford_land,2010-03-04,temperature,6.707142857 -oxford_land,2010-03-05,temperature,6.585714286 -oxford_land,2010-03-06,temperature,6.464285714 -oxford_land,2010-03-07,temperature,6.342857143 -oxford_land,2010-03-08,temperature,6.221428571 -oxford_land,2010-03-09,temperature,6.1 -oxford_land,2010-03-10,temperature,6.335714286 -oxford_land,2010-03-11,temperature,6.571428571 -oxford_land,2010-03-12,temperature,6.807142857 -oxford_land,2010-03-13,temperature,7.042857143 -oxford_land,2010-03-14,temperature,7.278571429 -oxford_land,2010-03-15,temperature,7.514285714 -oxford_land,2010-03-16,temperature,7.75 -oxford_land,2010-03-17,temperature,7.992857143 -oxford_land,2010-03-18,temperature,8.235714286 -oxford_land,2010-03-19,temperature,8.478571429 -oxford_land,2010-03-20,temperature,8.721428571 -oxford_land,2010-03-21,temperature,8.964285714 -oxford_land,2010-03-22,temperature,9.207142857 -oxford_land,2010-03-23,temperature,9.45 -oxford_land,2010-03-24,temperature,9.446428571 -oxford_land,2010-03-25,temperature,9.442857143 -oxford_land,2010-03-26,temperature,9.439285714 -oxford_land,2010-03-27,temperature,9.435714286 -oxford_land,2010-03-28,temperature,9.432142857 -oxford_land,2010-03-29,temperature,9.428571429 -oxford_land,2010-03-30,temperature,9.425 -oxford_land,2010-03-31,temperature,9.421428571 -oxford_land,2010-04-01,temperature,9.417857143 -oxford_land,2010-04-02,temperature,9.414285714 -oxford_land,2010-04-03,temperature,9.410714286 -oxford_land,2010-04-04,temperature,9.407142857 -oxford_land,2010-04-05,temperature,9.403571429 -oxford_land,2010-04-06,temperature,9.4 -oxford_land,2010-04-07,temperature,9.246428571 -oxford_land,2010-04-08,temperature,9.092857143 -oxford_land,2010-04-09,temperature,8.939285714 -oxford_land,2010-04-10,temperature,8.785714286 -oxford_land,2010-04-11,temperature,8.632142857 -oxford_land,2010-04-12,temperature,8.478571429 -oxford_land,2010-04-13,temperature,8.325 -oxford_land,2010-04-14,temperature,8.646875 -oxford_land,2010-04-15,temperature,8.96875 -oxford_land,2010-04-16,temperature,9.290625 -oxford_land,2010-04-17,temperature,9.6125 -oxford_land,2010-04-18,temperature,9.934375 -oxford_land,2010-04-19,temperature,10.25625 -oxford_land,2010-04-20,temperature,10.578125 -oxford_land,2010-04-21,temperature,10.9 -oxford_land,2010-04-22,temperature,11.39583333 -oxford_land,2010-04-23,temperature,11.89166667 -oxford_land,2010-04-24,temperature,12.3875 -oxford_land,2010-04-25,temperature,12.88333333 -oxford_land,2010-04-26,temperature,13.37916667 -oxford_land,2010-04-27,temperature,13.875 -oxford_land,2010-04-28,temperature,13.38571429 -oxford_land,2010-04-29,temperature,12.89642857 -oxford_land,2010-04-30,temperature,12.40714286 -oxford_land,2010-05-01,temperature,11.91785714 -oxford_land,2010-05-02,temperature,11.42857143 -oxford_land,2010-05-03,temperature,10.93928571 -oxford_land,2010-05-04,temperature,10.45 -oxford_land,2010-05-05,temperature,10.55 -oxford_land,2010-05-06,temperature,10.65 -oxford_land,2010-05-07,temperature,10.75 -oxford_land,2010-05-08,temperature,10.85 -oxford_land,2010-05-09,temperature,10.95 -oxford_land,2010-05-10,temperature,11.05 -oxford_land,2010-05-11,temperature,11.15 -oxford_land,2010-05-12,temperature,11.36785714 -oxford_land,2010-05-13,temperature,11.58571429 -oxford_land,2010-05-14,temperature,11.80357143 -oxford_land,2010-05-15,temperature,12.02142857 -oxford_land,2010-05-16,temperature,12.23928571 -oxford_land,2010-05-17,temperature,12.45714286 -oxford_land,2010-05-18,temperature,12.675 -oxford_land,2010-05-19,temperature,13.284375 -oxford_land,2010-05-20,temperature,13.89375 -oxford_land,2010-05-21,temperature,14.503125 -oxford_land,2010-05-22,temperature,15.1125 -oxford_land,2010-05-23,temperature,15.721875 -oxford_land,2010-05-24,temperature,16.33125 -oxford_land,2010-05-25,temperature,16.940625 -oxford_land,2010-05-26,temperature,17.55 -oxford_land,2010-05-27,temperature,17.26071429 -oxford_land,2010-05-28,temperature,16.97142857 -oxford_land,2010-05-29,temperature,16.68214286 -oxford_land,2010-05-30,temperature,16.39285714 -oxford_land,2010-05-31,temperature,16.10357143 -oxford_land,2010-06-01,temperature,15.81428571 -oxford_land,2010-06-02,temperature,15.525 -oxford_land,2010-06-03,temperature,15.7125 -oxford_land,2010-06-04,temperature,15.9 -oxford_land,2010-06-05,temperature,16.0875 -oxford_land,2010-06-06,temperature,16.275 -oxford_land,2010-06-07,temperature,16.4625 -oxford_land,2010-06-08,temperature,16.65 -oxford_land,2010-06-09,temperature,16.51071429 -oxford_land,2010-06-10,temperature,16.37142857 -oxford_land,2010-06-11,temperature,16.23214286 -oxford_land,2010-06-12,temperature,16.09285714 -oxford_land,2010-06-13,temperature,15.95357143 -oxford_land,2010-06-14,temperature,15.81428571 -oxford_land,2010-06-15,temperature,15.675 -oxford_land,2010-06-16,temperature,16.12142857 -oxford_land,2010-06-17,temperature,16.56785714 -oxford_land,2010-06-18,temperature,17.01428571 -oxford_land,2010-06-19,temperature,17.46071429 -oxford_land,2010-06-20,temperature,17.90714286 -oxford_land,2010-06-21,temperature,18.35357143 -oxford_land,2010-06-22,temperature,18.8 -oxford_land,2010-06-23,temperature,19.04642857 -oxford_land,2010-06-24,temperature,19.29285714 -oxford_land,2010-06-25,temperature,19.53928571 -oxford_land,2010-06-26,temperature,19.78571429 -oxford_land,2010-06-27,temperature,20.03214286 -oxford_land,2010-06-28,temperature,20.27857143 -oxford_land,2010-06-29,temperature,20.525 -oxford_land,2010-06-30,temperature,20.22857143 -oxford_land,2010-07-01,temperature,19.93214286 -oxford_land,2010-07-02,temperature,19.63571429 -oxford_land,2010-07-03,temperature,19.33928571 -oxford_land,2010-07-04,temperature,19.04285714 -oxford_land,2010-07-05,temperature,18.74642857 -oxford_land,2010-07-06,temperature,18.45 -oxford_land,2010-07-07,temperature,18.43571429 -oxford_land,2010-07-08,temperature,18.42142857 -oxford_land,2010-07-09,temperature,18.40714286 -oxford_land,2010-07-10,temperature,18.39285714 -oxford_land,2010-07-11,temperature,18.37857143 -oxford_land,2010-07-12,temperature,18.36428571 -oxford_land,2010-07-13,temperature,18.35 -oxford_land,2010-07-14,temperature,18.60416667 -oxford_land,2010-07-15,temperature,18.85833333 -oxford_land,2010-07-16,temperature,19.1125 -oxford_land,2010-07-17,temperature,19.36666667 -oxford_land,2010-07-18,temperature,19.62083333 -oxford_land,2010-07-19,temperature,19.875 -oxford_land,2010-07-20,temperature,19.9375 -oxford_land,2010-07-21,temperature,20 -oxford_land,2010-07-22,temperature,20.0625 -oxford_land,2010-07-23,temperature,20.125 -oxford_land,2010-07-24,temperature,20.1875 -oxford_land,2010-07-25,temperature,20.25 -oxford_land,2010-07-26,temperature,20.3125 -oxford_land,2010-07-27,temperature,20.375 -oxford_land,2010-07-28,temperature,20.28214286 -oxford_land,2010-07-29,temperature,20.18928571 -oxford_land,2010-07-30,temperature,20.09642857 -oxford_land,2010-07-31,temperature,20.00357143 -oxford_land,2010-08-01,temperature,19.91071429 -oxford_land,2010-08-02,temperature,19.81785714 -oxford_land,2010-08-03,temperature,19.725 -oxford_land,2010-08-04,temperature,19.38571429 -oxford_land,2010-08-05,temperature,19.04642857 -oxford_land,2010-08-06,temperature,18.70714286 -oxford_land,2010-08-07,temperature,18.36785714 -oxford_land,2010-08-08,temperature,18.02857143 -oxford_land,2010-08-09,temperature,17.68928571 -oxford_land,2010-08-10,temperature,17.35 -oxford_land,2010-08-11,temperature,17.25714286 -oxford_land,2010-08-12,temperature,17.16428571 -oxford_land,2010-08-13,temperature,17.07142857 -oxford_land,2010-08-14,temperature,16.97857143 -oxford_land,2010-08-15,temperature,16.88571429 -oxford_land,2010-08-16,temperature,16.79285714 -oxford_land,2010-08-17,temperature,16.7 -oxford_land,2010-08-18,temperature,16.77142857 -oxford_land,2010-08-19,temperature,16.84285714 -oxford_land,2010-08-20,temperature,16.91428571 -oxford_land,2010-08-21,temperature,16.98571429 -oxford_land,2010-08-22,temperature,17.05714286 -oxford_land,2010-08-23,temperature,17.12857143 -oxford_land,2010-08-24,temperature,17.2 -oxford_land,2010-08-25,temperature,16.85 -oxford_land,2010-08-26,temperature,16.5 -oxford_land,2010-08-27,temperature,16.15 -oxford_land,2010-08-28,temperature,15.8 -oxford_land,2010-08-29,temperature,15.45 -oxford_land,2010-08-30,temperature,15.1 -oxford_land,2010-08-31,temperature,14.75 -oxford_land,2010-09-01,temperature,14.84166667 -oxford_land,2010-09-02,temperature,14.93333333 -oxford_land,2010-09-03,temperature,15.025 -oxford_land,2010-09-04,temperature,15.11666667 -oxford_land,2010-09-05,temperature,15.20833333 -oxford_land,2010-09-06,temperature,15.3 -oxford_land,2010-09-07,temperature,15.325 -oxford_land,2010-09-08,temperature,15.35 -oxford_land,2010-09-09,temperature,15.375 -oxford_land,2010-09-10,temperature,15.4 -oxford_land,2010-09-11,temperature,15.425 -oxford_land,2010-09-12,temperature,15.45 -oxford_land,2010-09-13,temperature,15.475 -oxford_land,2010-09-14,temperature,15.5 -oxford_land,2010-09-15,temperature,15.28214286 -oxford_land,2010-09-16,temperature,15.06428571 -oxford_land,2010-09-17,temperature,14.84642857 -oxford_land,2010-09-18,temperature,14.62857143 -oxford_land,2010-09-19,temperature,14.41071429 -oxford_land,2010-09-20,temperature,14.19285714 -oxford_land,2010-09-21,temperature,13.975 -oxford_land,2010-09-22,temperature,13.75 -oxford_land,2010-09-23,temperature,13.525 -oxford_land,2010-09-24,temperature,13.3 -oxford_land,2010-09-25,temperature,13.075 -oxford_land,2010-09-26,temperature,12.85 -oxford_land,2010-09-27,temperature,12.625 -oxford_land,2010-09-28,temperature,12.4 -oxford_land,2010-09-29,temperature,12.58214286 -oxford_land,2010-09-30,temperature,12.76428571 -oxford_land,2010-10-01,temperature,12.94642857 -oxford_land,2010-10-02,temperature,13.12857143 -oxford_land,2010-10-03,temperature,13.31071429 -oxford_land,2010-10-04,temperature,13.49285714 -oxford_land,2010-10-05,temperature,13.675 -oxford_land,2010-10-06,temperature,13.51428571 -oxford_land,2010-10-07,temperature,13.35357143 -oxford_land,2010-10-08,temperature,13.19285714 -oxford_land,2010-10-09,temperature,13.03214286 -oxford_land,2010-10-10,temperature,12.87142857 -oxford_land,2010-10-11,temperature,12.71071429 -oxford_land,2010-10-12,temperature,12.55 -oxford_land,2010-10-13,temperature,12.16785714 -oxford_land,2010-10-14,temperature,11.78571429 -oxford_land,2010-10-15,temperature,11.40357143 -oxford_land,2010-10-16,temperature,11.02142857 -oxford_land,2010-10-17,temperature,10.63928571 -oxford_land,2010-10-18,temperature,10.25714286 -oxford_land,2010-10-19,temperature,9.875 -oxford_land,2010-10-20,temperature,9.496428571 -oxford_land,2010-10-21,temperature,9.117857143 -oxford_land,2010-10-22,temperature,8.739285714 -oxford_land,2010-10-23,temperature,8.360714286 -oxford_land,2010-10-24,temperature,7.982142857 -oxford_land,2010-10-25,temperature,7.603571429 -oxford_land,2010-10-26,temperature,7.225 -oxford_land,2010-10-27,temperature,7.721428571 -oxford_land,2010-10-28,temperature,8.217857143 -oxford_land,2010-10-29,temperature,8.714285714 -oxford_land,2010-10-30,temperature,9.210714286 -oxford_land,2010-10-31,temperature,9.707142857 -oxford_land,2010-11-01,temperature,10.20357143 -oxford_land,2010-11-02,temperature,10.7 -oxford_land,2010-11-03,temperature,10.325 -oxford_land,2010-11-04,temperature,9.95 -oxford_land,2010-11-05,temperature,9.575 -oxford_land,2010-11-06,temperature,9.2 -oxford_land,2010-11-07,temperature,8.825 -oxford_land,2010-11-08,temperature,8.45 -oxford_land,2010-11-09,temperature,8.075 -oxford_land,2010-11-10,temperature,7.742857143 -oxford_land,2010-11-11,temperature,7.410714286 -oxford_land,2010-11-12,temperature,7.078571429 -oxford_land,2010-11-13,temperature,6.746428571 -oxford_land,2010-11-14,temperature,6.414285714 -oxford_land,2010-11-15,temperature,6.082142857 -oxford_land,2010-11-16,temperature,5.75 -oxford_land,2010-11-17,temperature,5.878571429 -oxford_land,2010-11-18,temperature,6.007142857 -oxford_land,2010-11-19,temperature,6.135714286 -oxford_land,2010-11-20,temperature,6.264285714 -oxford_land,2010-11-21,temperature,6.392857143 -oxford_land,2010-11-22,temperature,6.521428571 -oxford_land,2010-11-23,temperature,6.65 -oxford_land,2010-11-24,temperature,5.903571429 -oxford_land,2010-11-25,temperature,5.157142857 -oxford_land,2010-11-26,temperature,4.410714286 -oxford_land,2010-11-27,temperature,3.664285714 -oxford_land,2010-11-28,temperature,2.917857143 -oxford_land,2010-11-29,temperature,2.171428571 -oxford_land,2010-11-30,temperature,1.425 -oxford_land,2010-12-01,temperature,1.453571429 -oxford_land,2010-12-02,temperature,1.482142857 -oxford_land,2010-12-03,temperature,1.510714286 -oxford_land,2010-12-04,temperature,1.539285714 -oxford_land,2010-12-05,temperature,1.567857143 -oxford_land,2010-12-06,temperature,1.596428571 -oxford_land,2010-12-07,temperature,1.625 -oxford_land,2010-12-08,temperature,1.853571429 -oxford_land,2010-12-09,temperature,2.082142857 -oxford_land,2010-12-10,temperature,2.310714286 -oxford_land,2010-12-11,temperature,2.539285714 -oxford_land,2010-12-12,temperature,2.767857143 -oxford_land,2010-12-13,temperature,2.996428571 -oxford_land,2010-12-14,temperature,3.225 -oxford_land,2010-12-15,temperature,2.807142857 -oxford_land,2010-12-16,temperature,2.389285714 -oxford_land,2010-12-17,temperature,1.971428571 -oxford_land,2010-12-18,temperature,1.553571429 -oxford_land,2010-12-19,temperature,1.135714286 -oxford_land,2010-12-20,temperature,0.717857143 -oxford_land,2010-12-21,temperature,0.3 -oxford_land,2010-12-22,temperature,0.533928571 -oxford_land,2010-12-23,temperature,0.767857143 -oxford_land,2010-12-24,temperature,1.001785714 -oxford_land,2010-12-25,temperature,1.235714286 -oxford_land,2010-12-26,temperature,1.469642857 -oxford_land,2010-12-27,temperature,1.703571429 -oxford_land,2010-12-28,temperature,1.9375 -oxford_land,2010-12-29,temperature,2.171428571 -oxford_land,2010-12-30,temperature,2.405357143 -oxford_land,2010-12-31,temperature,2.639285714 -oxford_land,2011-01-01,temperature,2.873214286 -oxford_land,2011-01-02,temperature,3.107142857 -oxford_land,2011-01-03,temperature,3.341071429 -oxford_land,2011-01-04,temperature,3.575 -oxford_land,2011-01-05,temperature,3.85 -oxford_land,2011-01-06,temperature,4.125 -oxford_land,2011-01-07,temperature,4.4 -oxford_land,2011-01-08,temperature,4.675 -oxford_land,2011-01-09,temperature,4.95 -oxford_land,2011-01-10,temperature,5.225 -oxford_land,2011-01-11,temperature,5.5 -oxford_land,2011-01-12,temperature,5.707142857 -oxford_land,2011-01-13,temperature,5.914285714 -oxford_land,2011-01-14,temperature,6.121428571 -oxford_land,2011-01-15,temperature,6.328571429 -oxford_land,2011-01-16,temperature,6.535714286 -oxford_land,2011-01-17,temperature,6.742857143 -oxford_land,2011-01-18,temperature,6.95 -oxford_land,2011-01-19,temperature,6.8 -oxford_land,2011-01-20,temperature,6.65 -oxford_land,2011-01-21,temperature,6.5 -oxford_land,2011-01-22,temperature,6.35 -oxford_land,2011-01-23,temperature,6.2 -oxford_land,2011-01-24,temperature,6.05 -oxford_land,2011-01-25,temperature,5.9 -oxford_land,2011-01-26,temperature,5.521428571 -oxford_land,2011-01-27,temperature,5.142857143 -oxford_land,2011-01-28,temperature,4.764285714 -oxford_land,2011-01-29,temperature,4.385714286 -oxford_land,2011-01-30,temperature,4.007142857 -oxford_land,2011-01-31,temperature,3.628571429 -oxford_land,2011-02-01,temperature,3.25 -oxford_land,2011-02-02,temperature,3.803571429 -oxford_land,2011-02-03,temperature,4.357142857 -oxford_land,2011-02-04,temperature,4.910714286 -oxford_land,2011-02-05,temperature,5.464285714 -oxford_land,2011-02-06,temperature,6.017857143 -oxford_land,2011-02-07,temperature,6.571428571 -oxford_land,2011-02-08,temperature,7.125 -oxford_land,2011-02-09,temperature,7.15 -oxford_land,2011-02-10,temperature,7.175 -oxford_land,2011-02-11,temperature,7.2 -oxford_land,2011-02-12,temperature,7.225 -oxford_land,2011-02-13,temperature,7.25 -oxford_land,2011-02-14,temperature,7.275 -oxford_land,2011-02-15,temperature,7.134375 -oxford_land,2011-02-16,temperature,6.99375 -oxford_land,2011-02-17,temperature,6.853125 -oxford_land,2011-02-18,temperature,6.7125 -oxford_land,2011-02-19,temperature,6.571875 -oxford_land,2011-02-20,temperature,6.43125 -oxford_land,2011-02-21,temperature,6.290625 -oxford_land,2011-02-22,temperature,6.15 -oxford_land,2011-02-23,temperature,6.035714286 -oxford_land,2011-02-24,temperature,5.921428571 -oxford_land,2011-02-25,temperature,5.807142857 -oxford_land,2011-02-26,temperature,5.692857143 -oxford_land,2011-02-27,temperature,5.578571429 -oxford_land,2011-02-28,temperature,5.464285714 -oxford_land,2011-03-01,temperature,5.35 -oxford_land,2011-03-02,temperature,5.367857143 -oxford_land,2011-03-03,temperature,5.385714286 -oxford_land,2011-03-04,temperature,5.403571429 -oxford_land,2011-03-05,temperature,5.421428571 -oxford_land,2011-03-06,temperature,5.439285714 -oxford_land,2011-03-07,temperature,5.457142857 -oxford_land,2011-03-08,temperature,5.475 -oxford_land,2011-03-09,temperature,5.921428571 -oxford_land,2011-03-10,temperature,6.367857143 -oxford_land,2011-03-11,temperature,6.814285714 -oxford_land,2011-03-12,temperature,7.260714286 -oxford_land,2011-03-13,temperature,7.707142857 -oxford_land,2011-03-14,temperature,8.153571429 -oxford_land,2011-03-15,temperature,8.6 -oxford_land,2011-03-16,temperature,8.782142857 -oxford_land,2011-03-17,temperature,8.964285714 -oxford_land,2011-03-18,temperature,9.146428571 -oxford_land,2011-03-19,temperature,9.328571429 -oxford_land,2011-03-20,temperature,9.510714286 -oxford_land,2011-03-21,temperature,9.692857143 -oxford_land,2011-03-22,temperature,9.875 -oxford_land,2011-03-23,temperature,9.925 -oxford_land,2011-03-24,temperature,9.975 -oxford_land,2011-03-25,temperature,10.025 -oxford_land,2011-03-26,temperature,10.075 -oxford_land,2011-03-27,temperature,10.125 -oxford_land,2011-03-28,temperature,10.175 -oxford_land,2011-03-29,temperature,10.225 -oxford_land,2011-03-30,temperature,10.27142857 -oxford_land,2011-03-31,temperature,10.31785714 -oxford_land,2011-04-01,temperature,10.36428571 -oxford_land,2011-04-02,temperature,10.41071429 -oxford_land,2011-04-03,temperature,10.45714286 -oxford_land,2011-04-04,temperature,10.50357143 -oxford_land,2011-04-05,temperature,10.55 -oxford_land,2011-04-06,temperature,11.0125 -oxford_land,2011-04-07,temperature,11.475 -oxford_land,2011-04-08,temperature,11.9375 -oxford_land,2011-04-09,temperature,12.4 -oxford_land,2011-04-10,temperature,12.8625 -oxford_land,2011-04-11,temperature,13.325 -oxford_land,2011-04-12,temperature,13.275 -oxford_land,2011-04-13,temperature,13.225 -oxford_land,2011-04-14,temperature,13.175 -oxford_land,2011-04-15,temperature,13.125 -oxford_land,2011-04-16,temperature,13.075 -oxford_land,2011-04-17,temperature,13.025 -oxford_land,2011-04-18,temperature,12.975 -oxford_land,2011-04-19,temperature,12.925 -oxford_land,2011-04-20,temperature,13.175 -oxford_land,2011-04-21,temperature,13.425 -oxford_land,2011-04-22,temperature,13.675 -oxford_land,2011-04-23,temperature,13.925 -oxford_land,2011-04-24,temperature,14.175 -oxford_land,2011-04-25,temperature,14.425 -oxford_land,2011-04-26,temperature,14.675 -oxford_land,2011-04-27,temperature,14.41785714 -oxford_land,2011-04-28,temperature,14.16071429 -oxford_land,2011-04-29,temperature,13.90357143 -oxford_land,2011-04-30,temperature,13.64642857 -oxford_land,2011-05-01,temperature,13.38928571 -oxford_land,2011-05-02,temperature,13.13214286 -oxford_land,2011-05-03,temperature,12.875 -oxford_land,2011-05-04,temperature,13.32916667 -oxford_land,2011-05-05,temperature,13.78333333 -oxford_land,2011-05-06,temperature,14.2375 -oxford_land,2011-05-07,temperature,14.69166667 -oxford_land,2011-05-08,temperature,15.14583333 -oxford_land,2011-05-09,temperature,15.6 -oxford_land,2011-05-10,temperature,15.32857143 -oxford_land,2011-05-11,temperature,15.05714286 -oxford_land,2011-05-12,temperature,14.78571429 -oxford_land,2011-05-13,temperature,14.51428571 -oxford_land,2011-05-14,temperature,14.24285714 -oxford_land,2011-05-15,temperature,13.97142857 -oxford_land,2011-05-16,temperature,13.7 -oxford_land,2011-05-17,temperature,13.73125 -oxford_land,2011-05-18,temperature,13.7625 -oxford_land,2011-05-19,temperature,13.79375 -oxford_land,2011-05-20,temperature,13.825 -oxford_land,2011-05-21,temperature,13.85625 -oxford_land,2011-05-22,temperature,13.8875 -oxford_land,2011-05-23,temperature,13.91875 -oxford_land,2011-05-24,temperature,13.95 -oxford_land,2011-05-25,temperature,13.91428571 -oxford_land,2011-05-26,temperature,13.87857143 -oxford_land,2011-05-27,temperature,13.84285714 -oxford_land,2011-05-28,temperature,13.80714286 -oxford_land,2011-05-29,temperature,13.77142857 -oxford_land,2011-05-30,temperature,13.73571429 -oxford_land,2011-05-31,temperature,13.7 -oxford_land,2011-06-01,temperature,13.94285714 -oxford_land,2011-06-02,temperature,14.18571429 -oxford_land,2011-06-03,temperature,14.42857143 -oxford_land,2011-06-04,temperature,14.67142857 -oxford_land,2011-06-05,temperature,14.91428571 -oxford_land,2011-06-06,temperature,15.15714286 -oxford_land,2011-06-07,temperature,15.4 -oxford_land,2011-06-08,temperature,15.36785714 -oxford_land,2011-06-09,temperature,15.33571429 -oxford_land,2011-06-10,temperature,15.30357143 -oxford_land,2011-06-11,temperature,15.27142857 -oxford_land,2011-06-12,temperature,15.23928571 -oxford_land,2011-06-13,temperature,15.20714286 -oxford_land,2011-06-14,temperature,15.175 -oxford_land,2011-06-15,temperature,15.325 -oxford_land,2011-06-16,temperature,15.475 -oxford_land,2011-06-17,temperature,15.625 -oxford_land,2011-06-18,temperature,15.775 -oxford_land,2011-06-19,temperature,15.925 -oxford_land,2011-06-20,temperature,16.075 -oxford_land,2011-06-21,temperature,16.225 -oxford_land,2011-06-22,temperature,16.51428571 -oxford_land,2011-06-23,temperature,16.80357143 -oxford_land,2011-06-24,temperature,17.09285714 -oxford_land,2011-06-25,temperature,17.38214286 -oxford_land,2011-06-26,temperature,17.67142857 -oxford_land,2011-06-27,temperature,17.96071429 -oxford_land,2011-06-28,temperature,18.25 -oxford_land,2011-06-29,temperature,18.21071429 -oxford_land,2011-06-30,temperature,18.17142857 -oxford_land,2011-07-01,temperature,18.13214286 -oxford_land,2011-07-02,temperature,18.09285714 -oxford_land,2011-07-03,temperature,18.05357143 -oxford_land,2011-07-04,temperature,18.01428571 -oxford_land,2011-07-05,temperature,17.975 -oxford_land,2011-07-06,temperature,17.85 -oxford_land,2011-07-07,temperature,17.725 -oxford_land,2011-07-08,temperature,17.6 -oxford_land,2011-07-09,temperature,17.475 -oxford_land,2011-07-10,temperature,17.35 -oxford_land,2011-07-11,temperature,17.225 -oxford_land,2011-07-12,temperature,17.1 -oxford_land,2011-07-13,temperature,16.975 -oxford_land,2011-07-14,temperature,16.85 -oxford_land,2011-07-15,temperature,16.725 -oxford_land,2011-07-16,temperature,16.6 -oxford_land,2011-07-17,temperature,16.475 -oxford_land,2011-07-18,temperature,16.35 -oxford_land,2011-07-19,temperature,16.225 -oxford_land,2011-07-20,temperature,16.28928571 -oxford_land,2011-07-21,temperature,16.35357143 -oxford_land,2011-07-22,temperature,16.41785714 -oxford_land,2011-07-23,temperature,16.48214286 -oxford_land,2011-07-24,temperature,16.54642857 -oxford_land,2011-07-25,temperature,16.61071429 -oxford_land,2011-07-26,temperature,16.675 -oxford_land,2011-07-27,temperature,17.06071429 -oxford_land,2011-07-28,temperature,17.44642857 -oxford_land,2011-07-29,temperature,17.83214286 -oxford_land,2011-07-30,temperature,18.21785714 -oxford_land,2011-07-31,temperature,18.60357143 -oxford_land,2011-08-01,temperature,18.98928571 -oxford_land,2011-08-02,temperature,19.375 -oxford_land,2011-08-03,temperature,18.90357143 -oxford_land,2011-08-04,temperature,18.43214286 -oxford_land,2011-08-05,temperature,17.96071429 -oxford_land,2011-08-06,temperature,17.48928571 -oxford_land,2011-08-07,temperature,17.01785714 -oxford_land,2011-08-08,temperature,16.54642857 -oxford_land,2011-08-09,temperature,16.075 -oxford_land,2011-08-10,temperature,16.17142857 -oxford_land,2011-08-11,temperature,16.26785714 -oxford_land,2011-08-12,temperature,16.36428571 -oxford_land,2011-08-13,temperature,16.46071429 -oxford_land,2011-08-14,temperature,16.55714286 -oxford_land,2011-08-15,temperature,16.65357143 -oxford_land,2011-08-16,temperature,16.75 -oxford_land,2011-08-17,temperature,16.57857143 -oxford_land,2011-08-18,temperature,16.40714286 -oxford_land,2011-08-19,temperature,16.23571429 -oxford_land,2011-08-20,temperature,16.06428571 -oxford_land,2011-08-21,temperature,15.89285714 -oxford_land,2011-08-22,temperature,15.72142857 -oxford_land,2011-08-23,temperature,15.55 -oxford_land,2011-08-24,temperature,15.52857143 -oxford_land,2011-08-25,temperature,15.50714286 -oxford_land,2011-08-26,temperature,15.48571429 -oxford_land,2011-08-27,temperature,15.46428571 -oxford_land,2011-08-28,temperature,15.44285714 -oxford_land,2011-08-29,temperature,15.42142857 -oxford_land,2011-08-30,temperature,15.4 -oxford_land,2011-08-31,temperature,15.39642857 -oxford_land,2011-09-01,temperature,15.39285714 -oxford_land,2011-09-02,temperature,15.38928571 -oxford_land,2011-09-03,temperature,15.38571429 -oxford_land,2011-09-04,temperature,15.38214286 -oxford_land,2011-09-05,temperature,15.37857143 -oxford_land,2011-09-06,temperature,15.375 -oxford_land,2011-09-07,temperature,15.30714286 -oxford_land,2011-09-08,temperature,15.23928571 -oxford_land,2011-09-09,temperature,15.17142857 -oxford_land,2011-09-10,temperature,15.10357143 -oxford_land,2011-09-11,temperature,15.03571429 -oxford_land,2011-09-12,temperature,14.96785714 -oxford_land,2011-09-13,temperature,14.9 -oxford_land,2011-09-14,temperature,14.83214286 -oxford_land,2011-09-15,temperature,14.76428571 -oxford_land,2011-09-16,temperature,14.69642857 -oxford_land,2011-09-17,temperature,14.62857143 -oxford_land,2011-09-18,temperature,14.56071429 -oxford_land,2011-09-19,temperature,14.49285714 -oxford_land,2011-09-20,temperature,14.425 -oxford_land,2011-09-21,temperature,14.48333333 -oxford_land,2011-09-22,temperature,14.54166667 -oxford_land,2011-09-23,temperature,14.6 -oxford_land,2011-09-24,temperature,14.65833333 -oxford_land,2011-09-25,temperature,14.71666667 -oxford_land,2011-09-26,temperature,14.775 -oxford_land,2011-09-27,temperature,14.909375 -oxford_land,2011-09-28,temperature,15.04375 -oxford_land,2011-09-29,temperature,15.178125 -oxford_land,2011-09-30,temperature,15.3125 -oxford_land,2011-10-01,temperature,15.446875 -oxford_land,2011-10-02,temperature,15.58125 -oxford_land,2011-10-03,temperature,15.715625 -oxford_land,2011-10-04,temperature,15.85 -oxford_land,2011-10-05,temperature,15.67857143 -oxford_land,2011-10-06,temperature,15.50714286 -oxford_land,2011-10-07,temperature,15.33571429 -oxford_land,2011-10-08,temperature,15.16428571 -oxford_land,2011-10-09,temperature,14.99285714 -oxford_land,2011-10-10,temperature,14.82142857 -oxford_land,2011-10-11,temperature,14.65 -oxford_land,2011-10-12,temperature,14.11785714 -oxford_land,2011-10-13,temperature,13.58571429 -oxford_land,2011-10-14,temperature,13.05357143 -oxford_land,2011-10-15,temperature,12.52142857 -oxford_land,2011-10-16,temperature,11.98928571 -oxford_land,2011-10-17,temperature,11.45714286 -oxford_land,2011-10-18,temperature,10.925 -oxford_land,2011-10-19,temperature,10.95357143 -oxford_land,2011-10-20,temperature,10.98214286 -oxford_land,2011-10-21,temperature,11.01071429 -oxford_land,2011-10-22,temperature,11.03928571 -oxford_land,2011-10-23,temperature,11.06785714 -oxford_land,2011-10-24,temperature,11.09642857 -oxford_land,2011-10-25,temperature,11.125 -oxford_land,2011-10-26,temperature,11.30357143 -oxford_land,2011-10-27,temperature,11.48214286 -oxford_land,2011-10-28,temperature,11.66071429 -oxford_land,2011-10-29,temperature,11.83928571 -oxford_land,2011-10-30,temperature,12.01785714 -oxford_land,2011-10-31,temperature,12.19642857 -oxford_land,2011-11-01,temperature,12.375 -oxford_land,2011-11-02,temperature,11.77857143 -oxford_land,2011-11-03,temperature,11.18214286 -oxford_land,2011-11-04,temperature,10.58571429 -oxford_land,2011-11-05,temperature,9.989285714 -oxford_land,2011-11-06,temperature,9.392857143 -oxford_land,2011-11-07,temperature,8.796428571 -oxford_land,2011-11-08,temperature,8.2 -oxford_land,2011-11-09,temperature,8.510714286 -oxford_land,2011-11-10,temperature,8.821428571 -oxford_land,2011-11-11,temperature,9.132142857 -oxford_land,2011-11-12,temperature,9.442857143 -oxford_land,2011-11-13,temperature,9.753571429 -oxford_land,2011-11-14,temperature,10.06428571 -oxford_land,2011-11-15,temperature,10.375 -oxford_land,2011-11-16,temperature,10.23928571 -oxford_land,2011-11-17,temperature,10.10357143 -oxford_land,2011-11-18,temperature,9.967857143 -oxford_land,2011-11-19,temperature,9.832142857 -oxford_land,2011-11-20,temperature,9.696428571 -oxford_land,2011-11-21,temperature,9.560714286 -oxford_land,2011-11-22,temperature,9.425 -oxford_land,2011-11-23,temperature,9.317857143 -oxford_land,2011-11-24,temperature,9.210714286 -oxford_land,2011-11-25,temperature,9.103571429 -oxford_land,2011-11-26,temperature,8.996428571 -oxford_land,2011-11-27,temperature,8.889285714 -oxford_land,2011-11-28,temperature,8.782142857 -oxford_land,2011-11-29,temperature,8.675 -oxford_land,2011-11-30,temperature,8.175 -oxford_land,2011-12-01,temperature,7.675 -oxford_land,2011-12-02,temperature,7.175 -oxford_land,2011-12-03,temperature,6.675 -oxford_land,2011-12-04,temperature,6.175 -oxford_land,2011-12-05,temperature,5.675 -oxford_land,2011-12-06,temperature,5.175 -oxford_land,2011-12-07,temperature,5.217857143 -oxford_land,2011-12-08,temperature,5.260714286 -oxford_land,2011-12-09,temperature,5.303571429 -oxford_land,2011-12-10,temperature,5.346428571 -oxford_land,2011-12-11,temperature,5.389285714 -oxford_land,2011-12-12,temperature,5.432142857 -oxford_land,2011-12-13,temperature,5.475 -oxford_land,2011-12-14,temperature,5.104166667 -oxford_land,2011-12-15,temperature,4.733333333 -oxford_land,2011-12-16,temperature,4.3625 -oxford_land,2011-12-17,temperature,3.991666667 -oxford_land,2011-12-18,temperature,3.620833333 -oxford_land,2011-12-19,temperature,3.25 -oxford_land,2011-12-20,temperature,3.563333333 -oxford_land,2011-12-21,temperature,3.876666667 -oxford_land,2011-12-22,temperature,4.19 -oxford_land,2011-12-23,temperature,4.503333333 -oxford_land,2011-12-24,temperature,4.816666667 -oxford_land,2011-12-25,temperature,5.13 -oxford_land,2011-12-26,temperature,5.443333333 -oxford_land,2011-12-27,temperature,5.756666667 -oxford_land,2011-12-28,temperature,6.07 -oxford_land,2011-12-29,temperature,6.383333333 -oxford_land,2011-12-30,temperature,6.696666667 -oxford_land,2011-12-31,temperature,7.01 -oxford_land,2012-01-01,temperature,7.323333333 -oxford_land,2012-01-02,temperature,7.636666667 -oxford_land,2012-01-03,temperature,7.95 -oxford_land,2012-01-04,temperature,7.985714286 -oxford_land,2012-01-05,temperature,8.021428571 -oxford_land,2012-01-06,temperature,8.057142857 -oxford_land,2012-01-07,temperature,8.092857143 -oxford_land,2012-01-08,temperature,8.128571429 -oxford_land,2012-01-09,temperature,8.164285714 -oxford_land,2012-01-10,temperature,8.2 -oxford_land,2012-01-11,temperature,7.345833333 -oxford_land,2012-01-12,temperature,6.491666667 -oxford_land,2012-01-13,temperature,5.6375 -oxford_land,2012-01-14,temperature,4.783333333 -oxford_land,2012-01-15,temperature,3.929166667 -oxford_land,2012-01-16,temperature,3.075 -oxford_land,2012-01-17,temperature,3.44375 -oxford_land,2012-01-18,temperature,3.8125 -oxford_land,2012-01-19,temperature,4.18125 -oxford_land,2012-01-20,temperature,4.55 -oxford_land,2012-01-21,temperature,4.91875 -oxford_land,2012-01-22,temperature,5.2875 -oxford_land,2012-01-23,temperature,5.65625 -oxford_land,2012-01-24,temperature,6.025 -oxford_land,2012-01-25,temperature,5.753571429 -oxford_land,2012-01-26,temperature,5.482142857 -oxford_land,2012-01-27,temperature,5.210714286 -oxford_land,2012-01-28,temperature,4.939285714 -oxford_land,2012-01-29,temperature,4.667857143 -oxford_land,2012-01-30,temperature,4.396428571 -oxford_land,2012-01-31,temperature,4.125 -oxford_land,2012-02-01,temperature,3.917857143 -oxford_land,2012-02-02,temperature,3.710714286 -oxford_land,2012-02-03,temperature,3.503571429 -oxford_land,2012-02-04,temperature,3.296428571 -oxford_land,2012-02-05,temperature,3.089285714 -oxford_land,2012-02-06,temperature,2.882142857 -oxford_land,2012-02-07,temperature,2.675 -oxford_land,2012-02-08,temperature,2.835714286 -oxford_land,2012-02-09,temperature,2.996428571 -oxford_land,2012-02-10,temperature,3.157142857 -oxford_land,2012-02-11,temperature,3.317857143 -oxford_land,2012-02-12,temperature,3.478571429 -oxford_land,2012-02-13,temperature,3.639285714 -oxford_land,2012-02-14,temperature,3.8 -oxford_land,2012-02-15,temperature,4.125 -oxford_land,2012-02-16,temperature,4.45 -oxford_land,2012-02-17,temperature,4.775 -oxford_land,2012-02-18,temperature,5.1 -oxford_land,2012-02-19,temperature,5.425 -oxford_land,2012-02-20,temperature,5.75 -oxford_land,2012-02-21,temperature,6.075 -oxford_land,2012-02-22,temperature,6.5 -oxford_land,2012-02-23,temperature,6.925 -oxford_land,2012-02-24,temperature,7.35 -oxford_land,2012-02-25,temperature,7.775 -oxford_land,2012-02-26,temperature,8.2 -oxford_land,2012-02-27,temperature,8.625 -oxford_land,2012-02-28,temperature,8.38125 -oxford_land,2012-02-29,temperature,8.1375 -oxford_land,2012-03-01,temperature,7.89375 -oxford_land,2012-03-02,temperature,7.65 -oxford_land,2012-03-03,temperature,7.40625 -oxford_land,2012-03-04,temperature,7.1625 -oxford_land,2012-03-05,temperature,6.91875 -oxford_land,2012-03-06,temperature,6.675 -oxford_land,2012-03-07,temperature,7.032142857 -oxford_land,2012-03-08,temperature,7.389285714 -oxford_land,2012-03-09,temperature,7.746428571 -oxford_land,2012-03-10,temperature,8.103571429 -oxford_land,2012-03-11,temperature,8.460714286 -oxford_land,2012-03-12,temperature,8.817857143 -oxford_land,2012-03-13,temperature,9.175 -oxford_land,2012-03-14,temperature,9.1 -oxford_land,2012-03-15,temperature,9.025 -oxford_land,2012-03-16,temperature,8.95 -oxford_land,2012-03-17,temperature,8.875 -oxford_land,2012-03-18,temperature,8.8 -oxford_land,2012-03-19,temperature,8.725 -oxford_land,2012-03-20,temperature,8.65 -oxford_land,2012-03-21,temperature,8.910714286 -oxford_land,2012-03-22,temperature,9.171428571 -oxford_land,2012-03-23,temperature,9.432142857 -oxford_land,2012-03-24,temperature,9.692857143 -oxford_land,2012-03-25,temperature,9.953571429 -oxford_land,2012-03-26,temperature,10.21428571 -oxford_land,2012-03-27,temperature,10.475 -oxford_land,2012-03-28,temperature,10.44642857 -oxford_land,2012-03-29,temperature,10.41785714 -oxford_land,2012-03-30,temperature,10.38928571 -oxford_land,2012-03-31,temperature,10.36071429 -oxford_land,2012-04-01,temperature,10.33214286 -oxford_land,2012-04-02,temperature,10.30357143 -oxford_land,2012-04-03,temperature,10.275 -oxford_land,2012-04-04,temperature,10.19285714 -oxford_land,2012-04-05,temperature,10.11071429 -oxford_land,2012-04-06,temperature,10.02857143 -oxford_land,2012-04-07,temperature,9.946428571 -oxford_land,2012-04-08,temperature,9.864285714 -oxford_land,2012-04-09,temperature,9.782142857 -oxford_land,2012-04-10,temperature,9.7 -oxford_land,2012-04-11,temperature,9.682142857 -oxford_land,2012-04-12,temperature,9.664285714 -oxford_land,2012-04-13,temperature,9.646428571 -oxford_land,2012-04-14,temperature,9.628571429 -oxford_land,2012-04-15,temperature,9.610714286 -oxford_land,2012-04-16,temperature,9.592857143 -oxford_land,2012-04-17,temperature,9.575 -oxford_land,2012-04-18,temperature,9.667857143 -oxford_land,2012-04-19,temperature,9.760714286 -oxford_land,2012-04-20,temperature,9.853571429 -oxford_land,2012-04-21,temperature,9.946428571 -oxford_land,2012-04-22,temperature,10.03928571 -oxford_land,2012-04-23,temperature,10.13214286 -oxford_land,2012-04-24,temperature,10.225 -oxford_land,2012-04-25,temperature,10.35357143 -oxford_land,2012-04-26,temperature,10.48214286 -oxford_land,2012-04-27,temperature,10.61071429 -oxford_land,2012-04-28,temperature,10.73928571 -oxford_land,2012-04-29,temperature,10.86785714 -oxford_land,2012-04-30,temperature,10.99642857 -oxford_land,2012-05-01,temperature,11.125 -oxford_land,2012-05-02,temperature,11.08928571 -oxford_land,2012-05-03,temperature,11.05357143 -oxford_land,2012-05-04,temperature,11.01785714 -oxford_land,2012-05-05,temperature,10.98214286 -oxford_land,2012-05-06,temperature,10.94642857 -oxford_land,2012-05-07,temperature,10.91071429 -oxford_land,2012-05-08,temperature,10.875 -oxford_land,2012-05-09,temperature,10.975 -oxford_land,2012-05-10,temperature,11.075 -oxford_land,2012-05-11,temperature,11.175 -oxford_land,2012-05-12,temperature,11.275 -oxford_land,2012-05-13,temperature,11.375 -oxford_land,2012-05-14,temperature,11.475 -oxford_land,2012-05-15,temperature,11.709375 -oxford_land,2012-05-16,temperature,11.94375 -oxford_land,2012-05-17,temperature,12.178125 -oxford_land,2012-05-18,temperature,12.4125 -oxford_land,2012-05-19,temperature,12.646875 -oxford_land,2012-05-20,temperature,12.88125 -oxford_land,2012-05-21,temperature,13.115625 -oxford_land,2012-05-22,temperature,13.35 -oxford_land,2012-05-23,temperature,14.01071429 -oxford_land,2012-05-24,temperature,14.67142857 -oxford_land,2012-05-25,temperature,15.33214286 -oxford_land,2012-05-26,temperature,15.99285714 -oxford_land,2012-05-27,temperature,16.65357143 -oxford_land,2012-05-28,temperature,17.31428571 -oxford_land,2012-05-29,temperature,17.975 -oxford_land,2012-05-30,temperature,17.4625 -oxford_land,2012-05-31,temperature,16.95 -oxford_land,2012-06-01,temperature,16.4375 -oxford_land,2012-06-02,temperature,15.925 -oxford_land,2012-06-03,temperature,15.4125 -oxford_land,2012-06-04,temperature,14.9 -oxford_land,2012-06-05,temperature,14.3875 -oxford_land,2012-06-06,temperature,13.875 -oxford_land,2012-06-07,temperature,13.675 -oxford_land,2012-06-08,temperature,13.475 -oxford_land,2012-06-09,temperature,13.275 -oxford_land,2012-06-10,temperature,13.075 -oxford_land,2012-06-11,temperature,12.875 -oxford_land,2012-06-12,temperature,12.675 -oxford_land,2012-06-13,temperature,13.06071429 -oxford_land,2012-06-14,temperature,13.44642857 -oxford_land,2012-06-15,temperature,13.83214286 -oxford_land,2012-06-16,temperature,14.21785714 -oxford_land,2012-06-17,temperature,14.60357143 -oxford_land,2012-06-18,temperature,14.98928571 -oxford_land,2012-06-19,temperature,15.375 -oxford_land,2012-06-20,temperature,15.34583333 -oxford_land,2012-06-21,temperature,15.31666667 -oxford_land,2012-06-22,temperature,15.2875 -oxford_land,2012-06-23,temperature,15.25833333 -oxford_land,2012-06-24,temperature,15.22916667 -oxford_land,2012-06-25,temperature,15.2 -oxford_land,2012-06-26,temperature,15.171875 -oxford_land,2012-06-27,temperature,15.14375 -oxford_land,2012-06-28,temperature,15.115625 -oxford_land,2012-06-29,temperature,15.0875 -oxford_land,2012-06-30,temperature,15.059375 -oxford_land,2012-07-01,temperature,15.03125 -oxford_land,2012-07-02,temperature,15.003125 -oxford_land,2012-07-03,temperature,14.975 -oxford_land,2012-07-04,temperature,15.16785714 -oxford_land,2012-07-05,temperature,15.36071429 -oxford_land,2012-07-06,temperature,15.55357143 -oxford_land,2012-07-07,temperature,15.74642857 -oxford_land,2012-07-08,temperature,15.93928571 -oxford_land,2012-07-09,temperature,16.13214286 -oxford_land,2012-07-10,temperature,16.325 -oxford_land,2012-07-11,temperature,16.19583333 -oxford_land,2012-07-12,temperature,16.06666667 -oxford_land,2012-07-13,temperature,15.9375 -oxford_land,2012-07-14,temperature,15.80833333 -oxford_land,2012-07-15,temperature,15.67916667 -oxford_land,2012-07-16,temperature,15.55 -oxford_land,2012-07-17,temperature,15.8375 -oxford_land,2012-07-18,temperature,16.125 -oxford_land,2012-07-19,temperature,16.4125 -oxford_land,2012-07-20,temperature,16.7 -oxford_land,2012-07-21,temperature,16.9875 -oxford_land,2012-07-22,temperature,17.275 -oxford_land,2012-07-23,temperature,17.5625 -oxford_land,2012-07-24,temperature,17.85 -oxford_land,2012-07-25,temperature,17.51071429 -oxford_land,2012-07-26,temperature,17.17142857 -oxford_land,2012-07-27,temperature,16.83214286 -oxford_land,2012-07-28,temperature,16.49285714 -oxford_land,2012-07-29,temperature,16.15357143 -oxford_land,2012-07-30,temperature,15.81428571 -oxford_land,2012-07-31,temperature,15.475 -oxford_land,2012-08-01,temperature,15.49642857 -oxford_land,2012-08-02,temperature,15.51785714 -oxford_land,2012-08-03,temperature,15.53928571 -oxford_land,2012-08-04,temperature,15.56071429 -oxford_land,2012-08-05,temperature,15.58214286 -oxford_land,2012-08-06,temperature,15.60357143 -oxford_land,2012-08-07,temperature,15.625 -oxford_land,2012-08-08,temperature,15.83928571 -oxford_land,2012-08-09,temperature,16.05357143 -oxford_land,2012-08-10,temperature,16.26785714 -oxford_land,2012-08-11,temperature,16.48214286 -oxford_land,2012-08-12,temperature,16.69642857 -oxford_land,2012-08-13,temperature,16.91071429 -oxford_land,2012-08-14,temperature,17.125 -oxford_land,2012-08-15,temperature,17.25357143 -oxford_land,2012-08-16,temperature,17.38214286 -oxford_land,2012-08-17,temperature,17.51071429 -oxford_land,2012-08-18,temperature,17.63928571 -oxford_land,2012-08-19,temperature,17.76785714 -oxford_land,2012-08-20,temperature,17.89642857 -oxford_land,2012-08-21,temperature,18.025 -oxford_land,2012-08-22,temperature,17.72857143 -oxford_land,2012-08-23,temperature,17.43214286 -oxford_land,2012-08-24,temperature,17.13571429 -oxford_land,2012-08-25,temperature,16.83928571 -oxford_land,2012-08-26,temperature,16.54285714 -oxford_land,2012-08-27,temperature,16.24642857 -oxford_land,2012-08-28,temperature,15.95 -oxford_land,2012-08-29,temperature,15.93928571 -oxford_land,2012-08-30,temperature,15.92857143 -oxford_land,2012-08-31,temperature,15.91785714 -oxford_land,2012-09-01,temperature,15.90714286 -oxford_land,2012-09-02,temperature,15.89642857 -oxford_land,2012-09-03,temperature,15.88571429 -oxford_land,2012-09-04,temperature,15.875 -oxford_land,2012-09-05,temperature,15.77857143 -oxford_land,2012-09-06,temperature,15.68214286 -oxford_land,2012-09-07,temperature,15.58571429 -oxford_land,2012-09-08,temperature,15.48928571 -oxford_land,2012-09-09,temperature,15.39285714 -oxford_land,2012-09-10,temperature,15.29642857 -oxford_land,2012-09-11,temperature,15.2 -oxford_land,2012-09-12,temperature,15.00357143 -oxford_land,2012-09-13,temperature,14.80714286 -oxford_land,2012-09-14,temperature,14.61071429 -oxford_land,2012-09-15,temperature,14.41428571 -oxford_land,2012-09-16,temperature,14.21785714 -oxford_land,2012-09-17,temperature,14.02142857 -oxford_land,2012-09-18,temperature,13.825 -oxford_land,2012-09-19,temperature,13.47916667 -oxford_land,2012-09-20,temperature,13.13333333 -oxford_land,2012-09-21,temperature,12.7875 -oxford_land,2012-09-22,temperature,12.44166667 -oxford_land,2012-09-23,temperature,12.09583333 -oxford_land,2012-09-24,temperature,11.75 -oxford_land,2012-09-25,temperature,11.84642857 -oxford_land,2012-09-26,temperature,11.94285714 -oxford_land,2012-09-27,temperature,12.03928571 -oxford_land,2012-09-28,temperature,12.13571429 -oxford_land,2012-09-29,temperature,12.23214286 -oxford_land,2012-09-30,temperature,12.32857143 -oxford_land,2012-10-01,temperature,12.425 -oxford_land,2012-10-02,temperature,12.225 -oxford_land,2012-10-03,temperature,12.025 -oxford_land,2012-10-04,temperature,11.825 -oxford_land,2012-10-05,temperature,11.625 -oxford_land,2012-10-06,temperature,11.425 -oxford_land,2012-10-07,temperature,11.225 -oxford_land,2012-10-08,temperature,11.025 -oxford_land,2012-10-09,temperature,10.884375 -oxford_land,2012-10-10,temperature,10.74375 -oxford_land,2012-10-11,temperature,10.603125 -oxford_land,2012-10-12,temperature,10.4625 -oxford_land,2012-10-13,temperature,10.321875 -oxford_land,2012-10-14,temperature,10.18125 -oxford_land,2012-10-15,temperature,10.040625 -oxford_land,2012-10-16,temperature,9.9 -oxford_land,2012-10-17,temperature,10.17142857 -oxford_land,2012-10-18,temperature,10.44285714 -oxford_land,2012-10-19,temperature,10.71428571 -oxford_land,2012-10-20,temperature,10.98571429 -oxford_land,2012-10-21,temperature,11.25714286 -oxford_land,2012-10-22,temperature,11.52857143 -oxford_land,2012-10-23,temperature,11.8 -oxford_land,2012-10-24,temperature,11.25833333 -oxford_land,2012-10-25,temperature,10.71666667 -oxford_land,2012-10-26,temperature,10.175 -oxford_land,2012-10-27,temperature,9.633333333 -oxford_land,2012-10-28,temperature,9.091666667 -oxford_land,2012-10-29,temperature,8.55 -oxford_land,2012-10-30,temperature,8.221875 -oxford_land,2012-10-31,temperature,7.89375 -oxford_land,2012-11-01,temperature,7.565625 -oxford_land,2012-11-02,temperature,7.2375 -oxford_land,2012-11-03,temperature,6.909375 -oxford_land,2012-11-04,temperature,6.58125 -oxford_land,2012-11-05,temperature,6.253125 -oxford_land,2012-11-06,temperature,5.925 -oxford_land,2012-11-07,temperature,6.408333333 -oxford_land,2012-11-08,temperature,6.891666667 -oxford_land,2012-11-09,temperature,7.375 -oxford_land,2012-11-10,temperature,7.858333333 -oxford_land,2012-11-11,temperature,8.341666667 -oxford_land,2012-11-12,temperature,8.825 -oxford_land,2012-11-13,temperature,8.646428571 -oxford_land,2012-11-14,temperature,8.467857143 -oxford_land,2012-11-15,temperature,8.289285714 -oxford_land,2012-11-16,temperature,8.110714286 -oxford_land,2012-11-17,temperature,7.932142857 -oxford_land,2012-11-18,temperature,7.753571429 -oxford_land,2012-11-19,temperature,7.575 -oxford_land,2012-11-20,temperature,7.614285714 -oxford_land,2012-11-21,temperature,7.653571429 -oxford_land,2012-11-22,temperature,7.692857143 -oxford_land,2012-11-23,temperature,7.732142857 -oxford_land,2012-11-24,temperature,7.771428571 -oxford_land,2012-11-25,temperature,7.810714286 -oxford_land,2012-11-26,temperature,7.85 -oxford_land,2012-11-27,temperature,7.515625 -oxford_land,2012-11-28,temperature,7.18125 -oxford_land,2012-11-29,temperature,6.846875 -oxford_land,2012-11-30,temperature,6.5125 -oxford_land,2012-12-01,temperature,6.178125 -oxford_land,2012-12-02,temperature,5.84375 -oxford_land,2012-12-03,temperature,5.509375 -oxford_land,2012-12-04,temperature,5.175 -oxford_land,2012-12-05,temperature,5.067857143 -oxford_land,2012-12-06,temperature,4.960714286 -oxford_land,2012-12-07,temperature,4.853571429 -oxford_land,2012-12-08,temperature,4.746428571 -oxford_land,2012-12-09,temperature,4.639285714 -oxford_land,2012-12-10,temperature,4.532142857 -oxford_land,2012-12-11,temperature,4.425 -oxford_land,2012-12-12,temperature,4.670833333 -oxford_land,2012-12-13,temperature,4.916666667 -oxford_land,2012-12-14,temperature,5.1625 -oxford_land,2012-12-15,temperature,5.408333333 -oxford_land,2012-12-16,temperature,5.654166667 -oxford_land,2012-12-17,temperature,5.9 -oxford_land,2012-12-18,temperature,6.029761905 -oxford_land,2012-12-19,temperature,6.15952381 -oxford_land,2012-12-20,temperature,6.289285714 -oxford_land,2012-12-21,temperature,6.419047619 -oxford_land,2012-12-22,temperature,6.548809524 -oxford_land,2012-12-23,temperature,6.678571429 -oxford_land,2012-12-24,temperature,6.808333333 -oxford_land,2012-12-25,temperature,6.938095238 -oxford_land,2012-12-26,temperature,7.067857143 -oxford_land,2012-12-27,temperature,7.197619048 -oxford_land,2012-12-28,temperature,7.327380952 -oxford_land,2012-12-29,temperature,7.457142857 -oxford_land,2012-12-30,temperature,7.586904762 -oxford_land,2012-12-31,temperature,7.716666667 -oxford_land,2013-01-01,temperature,7.846428571 -oxford_land,2013-01-02,temperature,7.976190476 -oxford_land,2013-01-03,temperature,8.105952381 -oxford_land,2013-01-04,temperature,8.235714286 -oxford_land,2013-01-05,temperature,8.36547619 -oxford_land,2013-01-06,temperature,8.495238095 -oxford_land,2013-01-07,temperature,8.625 -oxford_land,2013-01-08,temperature,8.060714286 -oxford_land,2013-01-09,temperature,7.496428571 -oxford_land,2013-01-10,temperature,6.932142857 -oxford_land,2013-01-11,temperature,6.367857143 -oxford_land,2013-01-12,temperature,5.803571429 -oxford_land,2013-01-13,temperature,5.239285714 -oxford_land,2013-01-14,temperature,4.675 -oxford_land,2013-01-15,temperature,4.453571429 -oxford_land,2013-01-16,temperature,4.232142857 -oxford_land,2013-01-17,temperature,4.010714286 -oxford_land,2013-01-18,temperature,3.789285714 -oxford_land,2013-01-19,temperature,3.567857143 -oxford_land,2013-01-20,temperature,3.346428571 -oxford_land,2013-01-21,temperature,3.125 -oxford_land,2013-01-22,temperature,3.328571429 -oxford_land,2013-01-23,temperature,3.532142857 -oxford_land,2013-01-24,temperature,3.735714286 -oxford_land,2013-01-25,temperature,3.939285714 -oxford_land,2013-01-26,temperature,4.142857143 -oxford_land,2013-01-27,temperature,4.346428571 -oxford_land,2013-01-28,temperature,4.55 -oxford_land,2013-01-29,temperature,4.842857143 -oxford_land,2013-01-30,temperature,5.135714286 -oxford_land,2013-01-31,temperature,5.428571429 -oxford_land,2013-02-01,temperature,5.721428571 -oxford_land,2013-02-02,temperature,6.014285714 -oxford_land,2013-02-03,temperature,6.307142857 -oxford_land,2013-02-04,temperature,6.6 -oxford_land,2013-02-05,temperature,6.232142857 -oxford_land,2013-02-06,temperature,5.864285714 -oxford_land,2013-02-07,temperature,5.496428571 -oxford_land,2013-02-08,temperature,5.128571429 -oxford_land,2013-02-09,temperature,4.760714286 -oxford_land,2013-02-10,temperature,4.392857143 -oxford_land,2013-02-11,temperature,4.025 -oxford_land,2013-02-12,temperature,4.285714286 -oxford_land,2013-02-13,temperature,4.546428571 -oxford_land,2013-02-14,temperature,4.807142857 -oxford_land,2013-02-15,temperature,5.067857143 -oxford_land,2013-02-16,temperature,5.328571429 -oxford_land,2013-02-17,temperature,5.589285714 -oxford_land,2013-02-18,temperature,5.85 -oxford_land,2013-02-19,temperature,5.635714286 -oxford_land,2013-02-20,temperature,5.421428571 -oxford_land,2013-02-21,temperature,5.207142857 -oxford_land,2013-02-22,temperature,4.992857143 -oxford_land,2013-02-23,temperature,4.778571429 -oxford_land,2013-02-24,temperature,4.564285714 -oxford_land,2013-02-25,temperature,4.35 diff --git a/docs/demo/examples/luton_scripts/CSO.py b/docs/demo/examples/luton_scripts/CSO.py deleted file mode 100644 index 24c424d1..00000000 --- a/docs/demo/examples/luton_scripts/CSO.py +++ /dev/null @@ -1,14 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 24 10:09:12 2023 - -@author: leyan -""" - -from wsimod.nodes.sewer import Sewer - -class CSO(Sewer): - def __init__(self, - **kwargs): - - super().__init__(**kwargs) diff --git a/docs/demo/examples/luton_scripts/Groundwater_h.py b/docs/demo/examples/luton_scripts/Groundwater_h.py deleted file mode 100644 index 61ca13f2..00000000 --- a/docs/demo/examples/luton_scripts/Groundwater_h.py +++ /dev/null @@ -1,228 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 24 10:09:12 2023 - -@author: leyan -""" - -from wsimod.nodes.storage import Storage -from wsimod.core import constants - -class Groundwater_h(Storage): - def __init__(self, - h_initial = 200, - z_surface = 250, - s = 0.1, - c_riverbed = 0, - c_aquifer = {}, - infiltration_threshold = 1, - infiltration_pct = 0, - data_input_dict = {}, - **kwargs): - # TODO can infiltrate to sewers? - """A head-driven storage for groundwater. Can also infiltrate to sewers. - - Args: - h_initial (float, compulsory): initial groundwater head (m asl). Defaults to 200. - z_surface (float, compulsoty): elevation of land surface (m asl), - which determines the maximum storage capacity. Default to 250. - s (float, optional): storage coefficient (-). Defaults to 0.1. - A (float, compulsory): area of the groundwater body (polygon) (m2). Defaults to 0. - c_riverbed (float, compulsory): the river bed conductance - (which could be taken from the BGWM parameterisation) (1/day). Defaults to 0. - data_input_dict (dict, optional): Dictionary of data inputs relevant for - the node (though I don't think it is used). Defaults to {}. - c_aquifer (dict, optional): aquifer conductance, which can be - calculated from parameterisation of British Groundwater Model - for any polygonal mesh (m2/day). Defaults to {}. - - Functions intended to call in orchestration: - infiltrate (before sewers are discharged) - - distribute - - Key assumptions: - - Conceptualises groundwater as a tank. The total volume of storage is controlled by a storage coefficient. - - Exchange flow between groundwater bodies is driven by head difference through an aquifer conductance. - - River-groundwater interactions are bi-directional, which is determined by the head difference. - - Infiltration to `sewer.py/Sewer` nodes occurs when the storage - in the tank is greater than a specified threshold, at a rate - proportional to the sqrt of volume above the threshold. (Note, - this behaviour is __not validated__ and a high uncertainty process - in general) - - If `decays` are provided to model water quality transformations, - see `core.py/DecayObj`. - - Input data and parameter requirements: - - Groundwater tank `capacity`, `area`, and `datum`. - _Units_: cubic metres, squared metres, metres - - Infiltration behaviour determined by an `infiltration_threshold` - and `infiltration_pct`. - _Units_: proportion of capacity - - Optional dictionary of decays with pollutants as keys and decay - parameters (a constant and a temperature sensitivity exponent) - as values. - _Units_: - - """ - self.h = h_initial - self.z_surface = z_surface - self.s = s - self.c_riverbed = c_riverbed - self.c_aquifer = c_aquifer - # - self.infiltration_threshold = infiltration_threshold - self.infiltration_pct = infiltration_pct - #TODO not used data_input - self.data_input_dict = data_input_dict - super().__init__(data_input_dict=data_input_dict, **kwargs) - - # update tank - self.tank.specific_yield = self.s - ########################################################################################### - def wrapper(self): - def get_head(#self, - datum = None, non_head_storage = 0): - """Area volume calculation for head calcuations. Datum and storage - that does not contribute to head can be specified - - Args: - datum (float, optional): Value to add to pressure head in tank. - Defaults to None. - non_head_storage (float, optional): Amount of storage that does - not contribute to generation of head. The tank must exceed - this value to generate any pressure head. Defaults to 0. - - Returns: - head (float): Total head in tank - - Examples: - >>> my_tank = Tank(datum = 10, initial_storage = 5, capacity = 10, area = 2) - >>> print(my_tank.get_head()) - 12.5 - >>> print(my_tank.get_head(non_head_storage = 1)) - 12 - >>> print(my_tank.get_head(non_head_storage = 1, datum = 0)) - 2 - - """ - #If datum not provided use object datum - if datum is None: - datum = self.datum - - #Calculate pressure head generating storage - head_storage = max(self.storage['volume'] - non_head_storage, 0) - - #Perform head calculation - head = head_storage / self.area / self.specific_yield + datum - - return head - return get_head - - self.tank.get_head = wrapper(self.tank) - ########################################################################################### - self.tank.storage['volume'] = (self.h - self.datum) * self.area * self.s # [m3] - self.tank.capacity = (self.z_surface - self.datum) * self.area * self.s # [m3] - #Update handlers - self.push_check_handler['Groundwater_h'] = self.push_check_head - self.push_check_handler[('River_h', 'head')] = self.push_check_head - self.push_check_handler[('River_h', 'c_riverbed')] = self.push_check_criverbed - - def distribute(self): - # def distribute_gw_rw(self): - ## pumping rate via pull_request through arcs - ## recharge rate via push_request through arcs - """Calculate exchange between Rivers and Groundwater_h - """ - ## river-groundwater exchange - # query river elevation - # list of arcs that connect with gw bodies - _, arcs = self.get_direction_arcs(direction='push', of_type=['River_h']) - # if there is only one river arc - if len(arcs) == 1: - arc = arcs[0] - z_river = arc.send_push_check(tag=('Groundwater_h', 'datum'))['volume'] # [m asl] - length = arc.send_push_check(tag=('Groundwater_h', 'length'))['volume'] # [m] - width = arc.send_push_check(tag=('Groundwater_h', 'width'))['volume'] # [m] - # calculate riverbed hydraulic conductance - C_riverbed = self.c_riverbed * length * width # [m2/day] - # calculate river-gw flux - flux = C_riverbed * (self.h - z_river) # [m3/day] - if flux > 0: - to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards - retained = self.push_distributed(to_send, of_type = ['River_h']) - _ = self.tank.push_storage(retained, force = True) - if retained['volume'] > constants.FLOAT_ACCURACY: - print('Groundwater to river: gw baseflow unable to push into river at '+self.name) - # else: wait river to discharge back - # TODO may need consider when one river connects to multiple gws - elif len(arcs) > 1: - print('WARNING: '+self.name+' connects with more than one river - cannot model this at this stage and please re-setup the model') - - # def distribute_gw_gw(self): - """Calculate exchange between Groundwater_h and Groundwater_h - """ - ## groundwater-groundwater exchange - # list of arcs that connect with gw bodies - _, arcs = self.get_direction_arcs(direction='push', of_type=['Groundwater_h']) - for arc in arcs: - h = arc.send_push_check(tag='Groundwater_h')['volume'] # check the head of the adjacent groundwater_h - # if h < self.h, there will be flux discharged outside - if h < self.h: - # get the c_aquifer [m2/day] - adj_node_name = arc.out_port.name # get the name of the adjacent gw_h - if adj_node_name in self.c_aquifer.keys(): - c_aquifer = self.c_aquifer[adj_node_name] - else: - print('ERROR: the name of '+adj_node_name+' is not consistent with the c_aquifer input in '+self.name+', please recheck') - # calculate the flux - flux = c_aquifer * (self.h - h) # [m3/day] - if flux > 0: - to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards - retained = arc.send_push_request(to_send) - _ = self.tank.push_storage(retained, force = True) - if retained['volume'] > constants.FLOAT_ACCURACY: - print('Groundwater to groundwater: gw baseflow unable to push from '+self.name+' into '+adj_node_name) - # if h > self.h, wait the adjacent node to push flux here - - def infiltrate(self): - # TODO could use head-drive approach here - """Calculate amount of water available for infiltration and send to sewers - """ - #Calculate infiltration - avail = self.tank.get_avail()['volume'] - avail = max(avail - self.tank.capacity * self.infiltration_threshold, 0) - avail = (avail * self.infiltration_pct) ** 0.5 - - #Push to sewers - to_send = self.tank.pull_storage({'volume' : avail}) - retained = self.push_distributed(to_send, of_type = 'Sewer') - _ = self.tank.push_storage(retained, force = True) - #Any not sent is left in tank - if retained['volume'] > constants.FLOAT_ACCURACY: - #print('unable to infiltrate') - pass - - def push_check_head(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.h - """ - reply = self.empty_vqip() - reply['volume'] = self.h - - return reply - - def push_check_criverbed(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.c_riverbed - """ - reply = self.empty_vqip() - reply['volume'] = self.c_riverbed - - return reply - - def end_timestep(self): - """Update tank states & self.h - """ - self.tank.end_timestep() - self.h = self.tank.get_head() - \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/River_h.py b/docs/demo/examples/luton_scripts/River_h.py deleted file mode 100644 index 16f06514..00000000 --- a/docs/demo/examples/luton_scripts/River_h.py +++ /dev/null @@ -1,491 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 24 10:09:12 2023 - -@author: leyan -""" - -from wsimod.nodes.storage import Storage -from wsimod.core import constants -from math import exp - -class River_h(Storage): - #TODO non-day timestep - def __init__(self, - depth = 2, - length = 200, - width = 20, - velocity = 0.2 * constants.M_S_TO_M_DT, - damp = 0.1, - mrf = 0, - denpar_w = 0.0015, - muptNpar = 0.001, - muptPpar = 0.0001, - **kwargs): - """Node that contains extensive in-river biochemical processes - - Args: - depth (float, optional): River tank depth. Defaults to 2. - length (float, optional): River tank length. Defaults to 200. - width (float, optional): River tank width. Defaults to 20. - velocity (float, optional): River velocity (if someone wants to calculate - this on the fly that would also work). Defaults to 0.2*constants.M_S_TO_M_DT. - damp (float, optional): Flow delay and attentuation parameter. Defaults - to 0.1. - mrf (float, optional): Minimum required flow in river (volume per timestep), - can limit pulls made to the river. Defaults to 0. - - Functions intended to call in orchestration: - distribute - - Key assumptions: - - River is conceptualised as a water tank that receives flows from various - sources (e.g., runoffs from urban and rural land, baseflow from groundwater), - interacts with water infrastructure (e.g., abstraction for irrigation and - domestic supply, sewage and treated effluent discharge), and discharges - flows downstream. It has length and width as shape parameters, average - velocity to indicate flow speed and capacity to indicate the maximum storage limit. - - Flows from different sources into rivers will fully mix. River tank is assumed to - have delay and attenuation effects when generate outflows. These effects are - simulated based on the average velocity. - - In-river biochemical processes are simulated as sources/sinks of nutrients - in the river tank, including - - denitrification (for nitrogen) - - phytoplankton absorption/release (for nitrogen and phosphorus) - - macrophyte uptake (for nitrogen and phosphorus) - These processes are affected by river temperature. - - Input data and parameter requirements: - - depth, length, width - _Units_: m - - velocity - _Units_: m/day - - damping coefficient - _Units_: - - - minimum required flow - _Units_: m3/day - """ - #Set parameters - self.depth = depth # [m] - self.length = length # [m] - self.width = width # [m] - self.velocity = velocity # [m/dt] - self.damp = damp # [>=0] flow delay and attenuation - self.mrf = mrf - self.denpar_w = denpar_w # [kg/m2/day] reference denitrification rate in water course - self.muptNpar = muptNpar # [kg/m2/day] nitrogen macrophyte uptake rate - self.muptPpar = muptPpar # [kg/m2/day] phosphorus macrophyte uptake rate - area = length * width # [m2] - - capacity = constants.UNBOUNDED_CAPACITY #TODO might be depth * area if flood indunation is going to be simulated - - #Required in cases where 'area' conflicts with length*width - kwargs['area'] = area - #Required in cases where 'capacity' conflicts with depth*area - kwargs['capacity'] = capacity - - super().__init__(**kwargs) - - - - #TODO check units - #TODO Will a user want to change any of these? - #Wide variety of river parameters (from HYPE) - self.uptake_PNratio = 1/7.2 # [-] P:N during crop uptake - self.bulk_density = 1300 # [kg/m3] soil density - # self.denpar_w = 0.0015#0.001, # [kg/m2/day] reference denitrification rate in water course - self.T_wdays = 5 # [days] weighting constant for river temperature calculation (similar to moving average period) - self.halfsatINwater = 1.5 * constants.MG_L_TO_KG_M3 # [kg/m3] half saturation parameter for denitrification in river - self.T_10_days = [] # [degree C] average water temperature of 10 days - self.T_20_days = [] # [degree C] average water temperature of 20 days - self.TP_365_days = [] # [degree C] average water temperature of 20 days - self.hsatTP = 0.05 * constants.MG_L_TO_KG_M3 # [kg/m3] - self.limpppar = 0.1 * constants.MG_L_TO_KG_M3 # [kg/m3] - self.prodNpar = 0.001 # [kg N/m3/day] nitrogen production/mineralisation rate - self.prodPpar = 0.0001 # [kg N/m3/day] phosphorus production/mineralisation rate - # self.muptNpar = 0.001 # [kg/m2/day] nitrogen macrophyte uptake rate - # self.muptPpar = 0.0001#0.01, # [kg/m2/day] phosphorus macrophyte uptake rate - self.qbank_365_days = [1e6, 1e6] # [m3/day] store outflow in the previous year - self.qbank = 1e6 # [m3/day] bankfull flow = second largest outflow in the previous year - self.qbankcorrpar = 0.001 # [-] correction coefficient for qbank flow - self.sedexppar = 1 # [-] - self.EPC0 = 0.05 * constants.MG_L_TO_KG_M3 # [mg/l] - self.kd_s = 0 * constants.MG_L_TO_KG_M3 #6 * 1e-6, # [kg/m3] - self.kadsdes_s = 2#0.9, # [-] - self.Dsed = 0.2 # [m] - - self.max_temp_lag = 20 - self.lagged_temperatures = [] - - self.max_phosphorus_lag = 365 - self.lagged_total_phosphorus = [] - - self.din_components = ['ammonia','nitrate'] - # TODO need a cleaner way to do this depending on whether e.g., nitrite is included - - # Initialise paramters - self.current_depth = 0 # [m] - # self.river_temperature = 0 # [degree C] - # self.river_denitrification = 0 # [kg/day] - # self.macrophyte_uptake_N = 0 # [kg/day] - # self.macrophyte_uptake_P = 0 # [kg/day] - # self.sediment_particulate_phosphorus_pool = 60000 # [kg] - # self.sediment_pool = 1000000 # [kg] - # self.benthos_source_sink = 0 # [kg/day] - # self.t_res = 0 # [day] - # self.outflow = self.empty_vqip() - - #Update end_teimstep - self.end_timestep = self.end_timestep_ - - #Update handlers - self.push_set_handler['default'] = self.push_set_river - self.push_check_handler['default'] = self.push_check_accept - self.push_check_handler[('Groundwater_h', 'datum')] = self.push_check_datum - self.push_check_handler[('Groundwater_h', 'length')] = self.push_check_length - self.push_check_handler[('Groundwater_h', 'width')] = self.push_check_width - self.pull_check_handler['default'] = self.pull_check_river - self.pull_set_handler['default'] = self.pull_set_river - - #TODO - RiparianBuffer - self.pull_check_handler[('RiparianBuffer', 'volume')] = self.pull_check_fp - - #Update mass balance - self.bio_in = self.empty_vqip() - self.bio_out = self.empty_vqip() - - self.mass_balance_in.append(lambda : self.bio_in) - self.mass_balance_out.append(lambda : self.bio_out) - - - #TODO something like this might be needed if you want sewers backing up from river height... would need to incorporate expected river outflow - # def get_dt_excess(self, vqip = None): - # reply = self.empty_vqip() - # reply['volume'] = self.tank.get_excess()['volume'] + self.tank.get_avail()['volume'] * self.get_riverrc() - # if vqip is not None: - # reply['volume'] = min(vqip['volume'], reply['volume']) - # return reply - - # def push_set_river(self, vqip): - # vqip_ = vqip.copy() - # vqip_ = self.v_change_vqip(vqip_, min(vqip_['volume'], self.get_dt_excess()['volume'])) - # _ = self.tank.push_storage(vqip_, force=True) - # return self.extract_vqip(vqip, vqip_) - - def pull_check_river(self, vqip = None): - """Check amount of water that can be pulled from river tank and upstream - - Args: - vqip (dict, optional): Maximum water required (only 'volume' is used) - - Returns: - avail (dict): A VQIP amount that can be pulled - """ - - #Get storage - avail = self.tank.get_avail() - - #Check incoming - upstream = self.get_connected(direction = 'pull', of_type =['River_h','Node']) - avail['volume'] += upstream['avail'] - - #convert mrf from volume/timestep to discrete value - mrf = self.mrf / self.get_riverrc() - - #Apply mrf - avail_vol = max(avail['volume'] - mrf, 0) - if vqip is None: - avail = self.v_change_vqip(avail, avail_vol) - else: - avail = self.v_change_vqip(avail, min(avail_vol,vqip['volume'])) - - return avail - - def pull_set_river(self, vqip): - """Pull from river tank and upstream, acknowledging MRF with pull_check - - Args: - vqip (dict): A VQIP amount to pull (only volume key used) - - Returns: - (dict): A VQIP amount that was pulled - """ - #Calculate available pull - avail = self.pull_check_river(vqip) - - #Take first from tank - pulled = self.tank.pull_storage(avail) - - #Take remaining from upstream - to_pull = {'volume' : avail['volume'] - pulled['volume']} - pulled_ = self.pull_distributed(to_pull, of_type = ['River_h', 'Node']) - - reply = self.sum_vqip(pulled, pulled_) - - return reply - - - def push_set_river(self, vqip): - """Push to river tank, currently forced. - - Args: - vqip (dict): A VQIP amount to push - - Returns: - (dict): A VQIP amount that was not successfully received - """ - _ = self.tank.push_storage(vqip, force = True) - return self.empty_vqip() - - def update_depth(self): - """Recalculate depth - """ - self.current_depth = self.tank.storage['volume'] / self.area - - def get_din_pool(self): - """Get total dissolved inorganic nitrogen from tank storage - - Returns: - (float): total din - """ - return sum([self.tank.storage[x] for x in self.din_components]) #TODO + self.tank.storage['nitrite'] but nitrite might not be modelled... need some ways to address this - - def biochemical_processes(self): - """Runs all biochemical processes and updates pollutant amounts - - Returns: - in_ (dict): A VQIP amount that represents total gain in pollutant amounts - out_ (dict): A VQIP amount that represents total loss in pollutant amounts - """ - #TODO make more modular - self.update_depth() - - self.tank.storage['temperature'] = (1 - 1 / self.T_wdays) * self.tank.storage['temperature'] + (1 / self.T_wdays) * self.get_data_input('temperature') - - #Update lagged temperatures - if len(self.lagged_temperatures) > self.max_temp_lag: - del self.lagged_temperatures[0] - self.lagged_temperatures.append(self.tank.storage['temperature']) - - #Update lagged total phosphorus - if len(self.lagged_total_phosphorus) > self.max_phosphorus_lag: - del self.lagged_total_phosphorus[0] - total_phosphorus = self.tank.storage['phosphate'] + self.tank.storage['org-phosphorus'] - self.lagged_total_phosphorus.append(total_phosphorus) - - #Check if any water - if self.tank.storage['volume'] < constants.FLOAT_ACCURACY: - #Assume these only do something when there is water - return (self.empty_vqip(), self.empty_vqip()) - - if self.tank.storage['temperature'] <= 0 : - #Seems that these things are only active when above freezing - return (self.empty_vqip(), self.empty_vqip()) - - #Denitrification - tempfcn = 2 ** ((self.tank.storage['temperature'] - 20) / 10) - if self.tank.storage['temperature'] < 5 : - tempfcn *= (self.tank.storage['temperature'] / 5) - - din = self.get_din_pool() - din_concentration = din / self.tank.storage['volume'] - confcn = din_concentration / (din_concentration + self.halfsatINwater) # [kg/m3] - denitri_water = self.denpar_w * self.area * tempfcn * confcn # [kg/day] #TODO convert to per DT - - river_denitrification = min(denitri_water, 0.5 * din) # [kg/day] max 50% kan be denitrified - din_ = (din - river_denitrification) # [kg] - - #Update mass balance - in_ = self.empty_vqip() - out_ = self.empty_vqip() - if din > 0: - for pol in self.din_components: - #denitrification - loss = (din - din_) / din * self.tank.storage[pol] - out_[pol] += loss - self.tank.storage[pol] -= loss - - din = self.get_din_pool() - - #Calculate moving averages - #TODO generalise - temp_10_day = sum(self.lagged_temperatures[-10:]) / 10 - temp_20_day = sum(self.lagged_temperatures[-20:]) / 20 - total_phos_365_day = sum(self.lagged_total_phosphorus) / self.max_phosphorus_lag - - #Calculate coefficients - tempfcn = (self.tank.storage['temperature']) / 20 * (temp_10_day - temp_20_day) / 5 - if (total_phos_365_day - self.limpppar + self.hsatTP) > 0: - totalphosfcn = (total_phos_365_day - self.limpppar) / (total_phos_365_day - self.limpppar + self.hsatTP) - else: - totalphosfcn = 0 - - #Mineralisation/production - #TODO this feels like it could be much tidier - minprodN = self.prodNpar * totalphosfcn * tempfcn * self.area * self.current_depth # [kg N/day] - minprodP = self.prodPpar * totalphosfcn * tempfcn * self.area * self.current_depth * self.uptake_PNratio # [kg N/day] - if minprodN > 0 : - #production (inorg -> org) - minprodN = min(0.5 * din, minprodN) # only half pool can be used for production - minprodP = min(0.5 * self.tank.storage['phosphate'], minprodP) # only half pool can be used for production - - #Update mass balance - out_['phosphate'] = minprodP - self.tank.storage['phosphate'] -= minprodP - in_['org-phosphorus'] = minprodP - self.tank.storage['org-phosphorus'] += minprodP - if din > 0: - for pol in self.din_components: - loss = minprodN * self.tank.storage[pol] / din - out_[pol] += loss - self.tank.storage[pol] -= loss - - in_['org-nitrogen'] = minprodN - self.tank.storage['org-nitrogen'] += minprodN - - else: - #mineralisation (org -> inorg) - minprodN = min(0.5 * self.tank.storage['org-nitrogen'], -minprodN) - minprodP = min(0.5 * self.tank.storage['org-phosphorus'], -minprodP) - - #Update mass balance - in_['phosphate'] = minprodP - self.tank.storage['phosphate'] += minprodP - out_['org-phosphorus'] = minprodP - self.tank.storage['org-phosphorus'] -= minprodP - if din > 0: - for pol in self.din_components: - gain = minprodN * self.tank.storage[pol] / din - in_[pol] += gain - self.tank.storage[pol] += gain - - out_['org-nitrogen'] = minprodN - self.tank.storage['org-nitrogen'] -= minprodN - - din = self.get_din_pool() - - # macrophyte uptake - # temperature dependence factor - tempfcn1 = (max(0, self.tank.storage['temperature']) / 20) ** 0.3 - tempfcn2 = (self.tank.storage['temperature'] - temp_20_day) / 5 - tempfcn = max(0, tempfcn1 * tempfcn2) - - macrouptN = self.muptNpar * tempfcn * self.area # [kg/day] - macrophyte_uptake_N = min(0.5 * din, macrouptN) - if din > 0: - for pol in self.din_components: - loss = macrophyte_uptake_N * self.tank.storage[pol] / din - out_[pol] += loss - self.tank.storage[pol] -= loss - - macrouptP = self.muptPpar * tempfcn * max(0, totalphosfcn) * self.area # [kg/day] - macrophyte_uptake_P = min(0.5 * self.tank.storage['phosphate'], macrouptP) - out_['phosphate'] += macrophyte_uptake_P - self.tank.storage['phosphate'] -= macrophyte_uptake_P - - #TODO - #source/sink for benthos sediment P - #suspension/resuspension - return in_, out_ - - def get_riverrc(self): - """Get river outflow coefficient (i.e., how much water leaves the tank in this - timestep) - - Returns: - riverrc (float): outflow coeffficient - """ - #Calculate travel time - total_time = self.length / self.velocity - #Apply damp - kt = self.damp * total_time # [day] - if kt != 0 : - riverrc = 1 - kt + kt * exp(-1 / kt) # [-] - else: - riverrc = 1 - return riverrc - - def calculate_discharge(self): - if 'nitrate' in constants.POLLUTANTS: - #TODO clumsy - #Run biochemical processes - in_, out_ = self.biochemical_processes() - #Mass balance - self.bio_in = in_ - self.bio_out = out_ - - def distribute(self): - """Run biochemical processes, track mass balance, and distribute water - """ - # self.calculate_discharge() - #Get outflow - outflow = self.tank.pull_storage({'volume' : self.tank.storage['volume'] * self.get_riverrc()}) - #Distribute outflow - reply = self.push_distributed(outflow, of_type = ['River_h','Node','Waste']) - _ = self.tank.push_storage(reply, force = True) - if reply['volume'] > constants.FLOAT_ACCURACY: - print('river cant push: {0}'.format(reply['volume']) + ' at '+self.name) - ## river-groundwater exchange - # query river elevation - # list of arcs that connect with gw bodies - _, arcs = self.get_direction_arcs(direction='push', of_type=['Groundwater_h']) - # if there is only one arc to gw_h - if len(arcs) == 1: - arc = arcs[0] - h = arc.send_push_check(tag=('River_h', 'head'))['volume'] # [m asl] - c_riverbed = arc.send_push_check(tag=('River_h', 'c_riverbed'))['volume'] # [m] - # calculate riverbed hydraulic conductance - C_riverbed = c_riverbed * self.length * self.width # [m2/day] - # calculate river-gw flux - flux = C_riverbed * (self.datum - h) # [m3/day] - if flux > 0: - to_send = self.tank.pull_storage({'volume' : flux}) # vqip afterwards - retained = self.push_distributed(to_send, of_type = ['Groundwater_h']) - _ = self.tank.push_storage(retained, force = True) - if retained['volume'] > constants.FLOAT_ACCURACY: - print('River to groundwater: river return flow unable to push into groundwater at '+self.name) - # else: wait gw to discharge back - # TODO may need consider when one river connects to multiple gws - elif len(arcs) > 1: - print('WARNING: '+self.name+' connects with more than one gw - cannot model this at this stage and please re-setup the model') - - - def pull_check_fp(self, vqip = None): - #TODO Pull checking for riparian buffer, needs updating - # update river depth - self.update_depth() - return self.current_depth, self.area, self.width, self.river_tank.storage - - def push_check_datum(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.datum - """ - datum = self.empty_vqip() - datum['volume'] = self.datum - - return datum - - def push_check_length(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.length - """ - length = self.empty_vqip() - length['volume'] = self.length - - return length - - def push_check_width(self, vqip = None): - # TODO should revise arc.get_excess to consider information transfer not in vqip? - """Return a pseudo vqip whose volume is self.width - """ - width = self.empty_vqip() - width['volume'] = self.width - - return width - - def end_timestep_(self): - """Update state variables - """ - self.tank.end_timestep() - self.bio_in = self.empty_vqip() - self.bio_out = self.empty_vqip() diff --git a/docs/demo/examples/luton_scripts/SewerCSO.py b/docs/demo/examples/luton_scripts/SewerCSO.py deleted file mode 100644 index 6a686206..00000000 --- a/docs/demo/examples/luton_scripts/SewerCSO.py +++ /dev/null @@ -1,80 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 24 10:09:12 2023 - -@author: leyan -""" - -from wsimod.nodes.sewer import Sewer -from wsimod.core import constants - -class SewerCSO(Sewer): - def __init__(self, - spill_capacity = 172800, - **kwargs): - self.spill_capacity = spill_capacity - super().__init__(**kwargs) - - def make_discharge(self): - """Function to trigger downstream sewer flow. - - Updates sewer tank travel time, pushes to WWTW, then sewer, then CSO. May - flood land if, after these attempts, the sewer tank storage is above - capacity. - - """ - self.sewer_tank.internal_arc.update_queue(direction="push") - # TODO... do I need to do anything with this backflow... does it ever happen? - - # Discharge to CSO first - - cso_spill = self.sewer_tank.active_storage['volume'] - self.spill_capacity # [m3/d] - if cso_spill > 0: - # cso_spill = self.v_change_vqip(self.sewer_tank.active_storage, cso_spill) # [vqip] - cso_spill = self.sewer_tank.pull_storage({'volume': cso_spill}) # [vqip] - - remaining = self.push_distributed(cso_spill, - of_type = ["CSO"] - ) - _ = self.sewer_tank.push_storage(remaining, force=True) - # # list of arcs that connect with gw bodies - # _, arcs = self.get_direction_arcs(direction='push', of_type=['CSO']) # new type - # cso_arcs = [arc for arc in arcs if 'cso' in arc.name] - # # if there is only one river arc - # if len(cso_arcs) == 1: - # arc = cso_arcs[0] - # remaining = arc.send_push_request(cso_spill) - # _ = self.sewer_tank.push_storage(remaining, force = True) - # if remaining['volume'] > constants.FLOAT_ACCURACY: - # print('Sewer unable to push from '+self.name+' into cso '+arc.name.split('-to-')[-1]) - # else: - # print("More than 1 cso corresponds with "+self.name+" - can't model it at this stage and needs further development") - # Discharge to sewer and river then (based on preferences) - to_send = self.sewer_tank.pull_storage(self.sewer_tank.active_storage) # [vqip] - remaining = self.push_distributed(to_send, - of_type = ["Sewer", "River_h"] - ) - _ = self.sewer_tank.push_storage(remaining, force=True) - # #Discharge to WWTW if possible - # remaining = self.push_distributed(remaining, - # of_type = ["WWTW"], - # tag = 'Sewer' - # ) - - # remaining = self.push_distributed(self.sewer_tank.active_storage) - - # TODO backflow can cause mass balance errors here - - # # Update tank - # sent = self.extract_vqip(self.sewer_tank.active_storage, remaining) - # reply = self.sewer_tank.pull_storage_exact(sent) - # if (reply["volume"] - sent["volume"]) > constants.FLOAT_ACCURACY: - # print("Miscalculated tank storage in discharge") - - # Flood excess - ponded = self.sewer_tank.pull_ponded() - if ponded["volume"] > constants.FLOAT_ACCURACY: - reply_ = self.push_distributed(ponded, of_type=["Land"], tag="Sewer") - reply_ = self.sewer_tank.push_storage(reply_, time=0, force=True) - if reply_["volume"]: - print("ponded water cant reenter") \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/TimevaryingDemand.py b/docs/demo/examples/luton_scripts/TimevaryingDemand.py deleted file mode 100644 index 57169f11..00000000 --- a/docs/demo/examples/luton_scripts/TimevaryingDemand.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Dec 24 10:09:12 2023 - -@author: leyan -""" - -from wsimod.nodes.demand import Demand - -class TimevaryingDemand(Demand): - def __init__(self, - **kwargs): - """Node that generates time-varying water demand specified by data input. - - Args: - data_input_dict (dict, optional): This must contains 'demand' along with the original - input vairables (e.g., 'temperature') - - Functions intended to call in orchestration: - create_demand - """ - #Update args - - super().__init__(**kwargs) - - def get_demand(self): - """Holder function to enable constant demand generation - - Returns: - (dict): A VQIP that will contain constant demand - """ - #TODO read/gen demand - self.constant_demand = self.get_data_input('demand') - pol = self.v_change_vqip(self.empty_vqip(), self.constant_demand) - for key, item in self.pollutant_load.items(): - pol[key] = item - return {'default' : pol} \ No newline at end of file diff --git a/docs/demo/examples/luton_scripts/model_extensions.py b/docs/demo/examples/luton_scripts/model_extensions.py deleted file mode 100644 index 42c61f77..00000000 --- a/docs/demo/examples/luton_scripts/model_extensions.py +++ /dev/null @@ -1,177 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Dec 19 10:50:55 2023 - -@author: bdobson -""" -from wsimod.core import constants -# import sys -# import os -# from tqdm import tqdm -# from math import log10 -# from wsimod.nodes.land import ImperviousSurface -# from wsimod.nodes.nodes import QueueTank, Tank, ResidenceTank - -def extensions(model): - - # decorate land->gw - model.nodes['1823-land'].run = wrapper_land_gw(model.nodes['1823-land']) - # model.nodes['1823-land'].surfaces[-1].push_to_sewers = wrapper_impervioussurface_sewer(model.nodes['1823-land'].surfaces[-1]) - - model.nodes['1823-land'].surfaces[-1].atmospheric_deposition = adjust_atmospheric_deposition(model.nodes['1823-land'].surfaces[-1]) - model.nodes['1823-land'].surfaces[-1].precipitation_deposition = adjust_precipitation_deposition(model.nodes['1823-land'].surfaces[-1]) - model.nodes['1823-land'].surfaces[-1].inflows[0] = model.nodes['1823-land'].surfaces[-1].atmospheric_deposition - model.nodes['1823-land'].surfaces[-1].inflows[1] = model.nodes['1823-land'].surfaces[-1].precipitation_deposition - - # Change model.run because new function has been introduced by the new node - model.river_discharge_order = ['1823-river'] - - # decorate fix head - for node in ['6aead97c-0040-4e31-889d-01f628faf990', - 'fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7', - '7e0cc125-fe7a-445b-af6b-bf55ac4065f9', - 'e07ddbc6-7158-4a47-b987-eb2b934dd257', - 'e4b324b5-60f9-48c2-9d64-d89d22a5305e', - '88c7e69b-e4b3-4483-a438-0d6f9046cdee', - 'a057761f-e18e-4cad-84d4-9458edc182ef', - '2b5397b7-a129-40a6-873d-cb2a0dd7d5b8' - ]: - model.nodes[node].end_timestep = end_timestep(model.nodes[node]) - - # wq parameters for wwtw - for wwtw, new_constants, variable, date in zip(['luton_stw-wwtw', 'luton_stw-wwtw', 'luton_stw-wwtw'], - [2.6, 1.5, 0.3], - ['phosphate', 'phosphate', 'phosphate'], - ['2000-01-01', '2001-01-01', '2005-01-01']): - node = model.nodes[wwtw] - node.end_timestep = wrapper_wwtw(node.end_timestep, node, variable, new_constants, date) - -# set fixed head for 'ex-head' node -def end_timestep(self): - self.mass_balance_in = [lambda: self.empty_vqip()] - self.mass_balance_out = [lambda: self.empty_vqip()] - self.mass_balance_ds = [lambda: self.empty_vqip()] - def inner_function(): - """Update tank states & self.h - """ - self.h = self.get_data_input('head') - self.tank.storage['volume'] = (self.h - self.datum) * self.area * self.s - self.tank.end_timestep() - self.h = self.tank.get_head() - return inner_function - - -def wrapper_land_gw(self): - def run(#self - ): - """Call the run function in all surfaces, update surface/subsurface/ - percolation tanks, discharge to rivers/groundwater. - """ - # Run all surfaces - for surface in self.surfaces: - surface.run() - - # Apply residence time to percolation - percolation = self.percolation.pull_outflow() - - # Distribute percolation - reply = self.push_distributed(percolation, of_type=["Groundwater_h"]) - - if reply["volume"] > constants.FLOAT_ACCURACY: - # Update percolation 'tank' - _ = self.percolation.push_storage(reply, force=True) - - # Apply residence time to subsurface/surface runoff - surface_runoff = self.surface_runoff.pull_outflow() - subsurface_runoff = self.subsurface_runoff.pull_outflow() - - # Total runoff - total_runoff = self.sum_vqip(surface_runoff, subsurface_runoff) - if total_runoff["volume"] > 0: - # Send to rivers (or nodes, which are assumed to be junctions) - reply = self.push_distributed(total_runoff, of_type=["River_h", "Node"]) - - # Redistribute total_runoff not sent - if reply["volume"] > 0: - reply_surface = self.v_change_vqip( - reply, - reply["volume"] * surface_runoff["volume"] / total_runoff["volume"], - ) - reply_subsurface = self.v_change_vqip( - reply, - reply["volume"] - * subsurface_runoff["volume"] - / total_runoff["volume"], - ) - - # Update surface/subsurface runoff 'tanks' - if reply_surface["volume"] > 0: - self.surface_runoff.push_storage(reply_surface, force=True) - if reply_subsurface["volume"] > 0: - self.subsurface_runoff.push_storage(reply_subsurface, force=True) - return run - -def adjust_atmospheric_deposition(surface, ratio = 0.05): - def atmospheric_deposition(): - """Inflow function to cause dry atmospheric deposition to occur, updating the - surface tank - - Returns: - (tuple): A tuple containing a VQIP amount for model inputs and outputs - for mass balance checking. - """ - #TODO double check units in preprocessing - is weight of N or weight of NHX/noy? - - #Read data and scale - nhx = surface.get_data_input_surface('nhx-dry') * surface.area * ratio - noy = surface.get_data_input_surface('noy-dry') * surface.area * ratio - srp = surface.get_data_input_surface('srp-dry') * surface.area * ratio - - #Assign pollutants - vqip = surface.empty_vqip() - vqip['ammonia'] = nhx - vqip['nitrate'] = noy - vqip['phosphate'] = srp - - #Update tank - in_ = surface.dry_deposition_to_tank(vqip) - - #Return mass balance - return (in_, surface.empty_vqip()) - return atmospheric_deposition - -def adjust_precipitation_deposition(surface, ratio = 0.05): - def precipitation_deposition(): - """Inflow function to cause wet precipitation deposition to occur, updating - the surface tank - - Returns: - (tuple): A tuple containing a VQIP amount for model inputs and outputs - for mass balance checking. - """ - #TODO double check units - is weight of N or weight of NHX/noy? - - #Read data and scale - nhx = surface.get_data_input_surface('nhx-wet') * surface.area * ratio - noy = surface.get_data_input_surface('noy-wet') * surface.area * ratio - srp = surface.get_data_input_surface('srp-wet') * surface.area * ratio - - #Assign pollutants - vqip = surface.empty_vqip() - vqip['ammonia'] = nhx - vqip['nitrate'] = noy - vqip['phosphate'] = srp - - #Update tank - in_ = surface.wet_deposition_to_tank(vqip) - - #Return mass balance - return (in_, surface.empty_vqip()) - return precipitation_deposition - -def wrapper_wwtw(f, node,variable, value, date): - def new_end_timestep(): - f() - if str(node.t) == date: - node.process_parameters[variable]['constant'] = value - return new_end_timestep diff --git a/docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml b/docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml deleted file mode 100644 index ee63276c..00000000 --- a/docs/demo/examples/luton_scripts/settings_separatesewers_2cso_generalhead.yaml +++ /dev/null @@ -1,10225 +0,0 @@ -orchestration: -- FWTW: treat_water -- Demand: create_demand -- Land: run -- Groundwater: infiltrate -- Foul: make_discharge -- Sewer: make_discharge -- WWTW: calculate_discharge -- Groundwater: distribute -- River: calculate_discharge -- Reservoir: make_abstractions -- Land: apply_irrigation -- WWTW: make_discharge -- Catchment: route -extensions: - extension_file: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton - new_classes: - Groundwater_h: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton - River_h: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton - TimevaryingDemand: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton - CSO: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton - SewerCSO: D:\Huawei\PDRA-DAFNI\scripts\dafni\luton -nodes: - chalton_stw-1823-demand: - gardening_efficiency: 0.42 - name: chalton_stw-1823-demand - constant_demand: 0 - constant_temp: 30 - per_capita: 0.12 - pollutant_load: - do: 0.005 - org-phosphorus: 0.0007 - phosphate: 7.0e-05 - ammonia: 4.0e-05 - solids: 0.0005 - bod: 0.005 - cod: 0.03 - ph: 7.5 - temperature: 13.0 - nitrate: 0.0001 - nitrite: 1.0e-05 - org-nitrogen: 1.0e-05 - constant_weighting: 0.2 - population: 63471.75333511187 - type_: Demand - node_type_override: ResidentialDemand - filename: chalton_stw-1823-demand-inputs.csv.gz - chalton_stw-1823-foul: - capacity: 11424.915600320137 - name: chalton_stw-1823-foul - pipe_time: 0 - chamber_area: 1 - pipe_timearea: &id001 - 0: 1 - chamber_floor: 10 - type_: Sewer - node_type_override: Sewer - luton_stw-1823-demand: - gardening_efficiency: 0.42 - name: luton_stw-1823-demand - constant_demand: 0 - constant_temp: 30 - per_capita: 0.12 - pollutant_load: - do: 0.005 - org-phosphorus: 0.0007 - phosphate: 7.0e-05 - ammonia: 4.0e-04 - solids: 0.0005 - bod: 0.005 - cod: 0.03 - ph: 7.5 - temperature: 13.0 - nitrate: 0.0001 - nitrite: 1.0e-05 - org-nitrogen: 1.0e-05 - constant_weighting: 0.2 - population: 112156.74238526115 - type_: Demand - node_type_override: ResidentialDemand - filename: luton_stw-1823-demand-inputs.csv.gz - 1823-gw-demand: - name: 1823-gw-demand - constant_demand: null - pollutant_load: {} - type_: Demand - node_type_override: TimevaryingDemand - filename: 1823-gw-demand-inputs.csv.gz - luton_stw-1823-foul: - capacity: 20188.213629347007 - name: luton_stw-1823-foul - pipe_time: 0 - chamber_area: 1 - pipe_timearea: *id001 - chamber_floor: 10 - type_: Sewer - node_type_override: Sewer - distribution: - name: distribution - type_: UnlimitedDistribution - node_type_override: UnlimitedDistribution - 1823-land: - subsurface_residence_time: 50.0 - name: 1823-land - surface_residence_time: 1.7 - percolation_residence_time: 1.0 - type_: Land - node_type_override: Land - surfaces: - Maize: - surface: Maize - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.3 - - 0.3 - - 1.2 - - 1.2 - - 0.325 - - 0.0 - - 0.0 - crop_factor_stage_dates: - - 0 - - 90 - - 91 - - 121 - - 161 - - 213 - - 244 - - 245 - - 366 - rooting_depth: 1.35 - harvest_day: 244 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 24.855240288041117 - phosphate: 24.855240288041117 - ammonia: 12.427620144020558 - solids: 2485.524028804112 - bod: 248.55240288041117 - cod: 4971.048057608224 - ph: 7.0 - temperature: 11.0 - nitrate: 994.2096115216447 - nitrite: 4.971048057608224 - org-nitrogen: 1242.762014402056 - volume: 248552.40288041116 - area: 736451.5640901071 - surface_coefficient: 0.01 - decays: &id002 - ammonia: - constant: 0.1 - exponent: 1.005 - nitrite: - constant: 0.05 - exponent: 1.005 - ET_depletion_factor: 0.55 - infiltration_capacity: 0.1 - sowing_day: 91 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 1242.762014402056 - phosphate: 1242.762014402056 - ammonia: 0.0 - nitrate: 248552.40288041116 - nitrite: 0.0 - org-nitrogen: 248552.40288041116 - volume: 248552.40288041116 - pollutant_load: &id003 {} - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Maize-inputs.csv.gz - total_porosity: 0.4 - Field beans: - surface: Field beans - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.5 - - 0.5 - - 1.15 - - 1.15 - - 1.1 - - 0.0 - - 0.0 - crop_factor_stage_dates: - - 0 - - 120 - - 121 - - 135 - - 161 - - 206 - - 222 - - 223 - - 366 - rooting_depth: 0.6 - harvest_day: 222 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 8.373989292279457 - phosphate: 8.373989292279457 - ammonia: 4.186994646139729 - solids: 837.3989292279458 - bod: 83.73989292279458 - cod: 1674.7978584558916 - ph: 7.0 - temperature: 11.0 - nitrate: 334.9595716911783 - nitrite: 1.6747978584558916 - org-nitrogen: 418.6994646139729 - volume: 83739.89292279458 - area: 558265.9528186305 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.45 - infiltration_capacity: 0.1 - sowing_day: 121 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 418.6994646139729 - phosphate: 418.6994646139729 - ammonia: 0.0 - nitrate: 83739.89292279458 - nitrite: 0.0 - org-nitrogen: 83739.89292279458 - volume: 83739.89292279458 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Field_beans-inputs.csv.gz - total_porosity: 0.4 - Oilseed rape: - surface: Oilseed rape - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.7124999999999999 - - 1.075 - - 1.075 - - 0.35 - - 0.0 - - 0.0 - - 0.35 - - 0.35 - - 0.7124999999999999 - crop_factor_stage_dates: - - 0 - - 60 - - 166 - - 227 - - 228 - - 257 - - 258 - - 305 - - 365 - rooting_depth: 1.25 - harvest_day: 227 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 16.8476420733389 - phosphate: 16.8476420733389 - ammonia: 8.42382103666945 - solids: 1684.7642073338898 - bod: 168.47642073338898 - cod: 3369.5284146677795 - ph: 7.0 - temperature: 11.0 - nitrate: 673.9056829335559 - nitrite: 3.36952841466778 - org-nitrogen: 842.3821036669449 - volume: 168476.42073338898 - area: 539124.5463468448 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.6 - infiltration_capacity: 0.1 - sowing_day: 258 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 842.3821036669449 - phosphate: 842.3821036669449 - ammonia: 0.0 - nitrate: 168476.42073338898 - nitrite: 0.0 - org-nitrogen: 168476.42073338898 - volume: 168476.42073338898 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Oilseed_rape-inputs.csv.gz - total_porosity: 0.4 - Spring barley: - surface: Spring barley - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.3 - - 0.3 - - 1.15 - - 1.15 - - 0.25 - - 0.0 - - 0.0 - crop_factor_stage_dates: - - 0 - - 31 - - 32 - - 79 - - 105 - - 166 - - 244 - - 245 - - 366 - rooting_depth: 1.25 - harvest_day: 244 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 41.85785493116267 - phosphate: 41.85785493116267 - ammonia: 20.928927465581335 - solids: 4185.785493116267 - bod: 418.5785493116267 - cod: 8371.570986232535 - ph: 7.0 - temperature: 11.0 - nitrate: 1674.3141972465069 - nitrite: 8.371570986232534 - org-nitrogen: 2092.8927465581337 - volume: 418578.5493116267 - area: 1339451.3577972054 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.55 - infiltration_capacity: 0.1 - sowing_day: 32 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 2092.8927465581337 - phosphate: 2092.8927465581337 - ammonia: 0.0 - nitrate: 418578.5493116267 - nitrite: 0.0 - org-nitrogen: 418578.5493116267 - volume: 418578.5493116267 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Spring_barley-inputs.csv.gz - total_porosity: 0.4 - Spring wheat: - surface: Spring wheat - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.3 - - 0.3 - - 1.15 - - 1.15 - - 0.325 - - 0.0 - - 0.0 - crop_factor_stage_dates: - - 0 - - 73 - - 74 - - 121 - - 166 - - 196 - - 274 - - 275 - - 366 - rooting_depth: 1.25 - harvest_day: 274 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 5.729782752413001 - phosphate: 5.729782752413001 - ammonia: 2.8648913762065007 - solids: 572.9782752413001 - bod: 57.297827524130014 - cod: 1145.9565504826003 - ph: 7.0 - temperature: 11.0 - nitrate: 229.19131009652006 - nitrite: 1.1459565504826004 - org-nitrogen: 286.48913762065007 - volume: 57297.827524130014 - area: 183353.04807721605 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.55 - infiltration_capacity: 0.1 - sowing_day: 74 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 286.48913762065007 - phosphate: 286.48913762065007 - ammonia: 0.0 - nitrate: 57297.827524130014 - nitrite: 0.0 - org-nitrogen: 57297.827524130014 - volume: 57297.827524130014 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Spring_wheat-inputs.csv.gz - total_porosity: 0.4 - Winter barley: - surface: Winter barley - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.817391304347826 - - 1.15 - - 1.15 - - 0.25 - - 0.0 - - 0.0 - - 0.3 - - 0.3 - - 0.817391304347826 - crop_factor_stage_dates: - - 0 - - 36 - - 105 - - 152 - - 153 - - 257 - - 258 - - 309 - - 365 - rooting_depth: 1.25 - harvest_day: 152 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 48.418117460244964 - phosphate: 48.418117460244964 - ammonia: 24.209058730122482 - solids: 4841.811746024497 - bod: 484.18117460244963 - cod: 9683.623492048993 - ph: 7.0 - temperature: 11.0 - nitrate: 1936.7246984097985 - nitrite: 9.683623492048994 - org-nitrogen: 2420.9058730122483 - volume: 484181.17460244964 - area: 1549379.7587278388 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.55 - infiltration_capacity: 0.1 - sowing_day: 258 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 2420.9058730122483 - phosphate: 2420.9058730122483 - ammonia: 0.0 - nitrate: 484181.17460244964 - nitrite: 0.0 - org-nitrogen: 484181.17460244964 - volume: 484181.17460244964 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Winter_barley-inputs.csv.gz - total_porosity: 0.4 - Winter oats: - surface: Winter oats - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 1.0114130434782607 - - 1.15 - - 1.15 - - 0.25 - - 0.0 - - 0.0 - - 0.3 - - 0.3 - - 1.0114130434782607 - crop_factor_stage_dates: - - 0 - - 15 - - 74 - - 152 - - 153 - - 243 - - 244 - - 288 - - 365 - rooting_depth: 1.25 - harvest_day: 152 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 4.797525601869322 - phosphate: 4.797525601869322 - ammonia: 2.398762800934661 - solids: 479.75256018693216 - bod: 47.975256018693216 - cod: 959.5051203738643 - ph: 7.0 - temperature: 11.0 - nitrate: 191.90102407477286 - nitrite: 0.9595051203738644 - org-nitrogen: 239.87628009346608 - volume: 47975.25601869322 - area: 153520.8192598183 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.55 - infiltration_capacity: 0.1 - sowing_day: 244 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 239.87628009346608 - phosphate: 239.87628009346608 - ammonia: 0.0 - nitrate: 47975.25601869322 - nitrite: 0.0 - org-nitrogen: 47975.25601869322 - volume: 47975.25601869322 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Winter_oats-inputs.csv.gz - total_porosity: 0.4 - Winter wheat: - surface: Winter wheat - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.8298076923076922 - - 1.15 - - 1.15 - - 0.325 - - 0.0 - - 0.0 - - 0.7 - - 0.7 - - 0.8298076923076922 - crop_factor_stage_dates: - - 0 - - 74 - - 182 - - 244 - - 245 - - 273 - - 274 - - 335 - - 365 - rooting_depth: 1.65 - harvest_day: 244 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 214.3381644847924 - phosphate: 214.3381644847924 - ammonia: 107.1690822423962 - solids: 21433.81644847924 - bod: 2143.381644847924 - cod: 42867.63289695848 - ph: 7.0 - temperature: 11.0 - nitrate: 8573.526579391695 - nitrite: 42.86763289695848 - org-nitrogen: 10716.90822423962 - volume: 2143381.644847924 - area: 5196076.714782846 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.55 - infiltration_capacity: 0.1 - sowing_day: 274 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 10716.90822423962 - phosphate: 10716.90822423962 - ammonia: 0.0 - nitrate: 2143381.644847924 - nitrite: 0.0 - org-nitrogen: 2143381.644847924 - volume: 2143381.644847924 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Winter_wheat-inputs.csv.gz - total_porosity: 0.4 - Other crops: - surface: Other crops - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0 - - 0 - - 0.46428571428571463 - - 0.46428571428571463 - - 1.0946428571428501 - - 1.0946428571428501 - - 0.573214285714282 - - 0 - - 0 - crop_factor_stage_dates: - - 0 - - 90 - - 91 - - 121 - - 152 - - 201 - - 232 - - 233 - - 366 - rooting_depth: 1.0857142857142843 - harvest_day: 232 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 24.93080463867836 - phosphate: 24.93080463867836 - ammonia: 12.46540231933918 - solids: 2493.080463867836 - bod: 249.3080463867836 - cod: 4986.160927735672 - ph: 7.0 - temperature: 11.0 - nitrate: 997.2321855471343 - nitrite: 4.986160927735672 - org-nitrogen: 1246.540231933918 - volume: 249308.0463867836 - area: 918503.3287934144 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.5071428571428571 - infiltration_capacity: 0.1 - sowing_day: 91 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 1246.540231933918 - phosphate: 1246.540231933918 - ammonia: 0.0 - nitrate: 249308.0463867836 - nitrite: 0.0 - org-nitrogen: 249308.0463867836 - volume: 249308.0463867836 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Other_crops-inputs.csv.gz - total_porosity: 0.4 - Garden: - surface: Garden - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.9 - - 0.9 - - 0.95 - - 0.95 - - 0.95 - - 0.0 - - 0.0 - irrigation_coefficient: 0.0 - crop_factor_stage_dates: - - 0 - - 0 - - 1 - - 2 - - 3 - - 5 - - 365 - - 366 - - 366 - rooting_depth: 0.75 - harvest_day: 365 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 248.19533297481044 - phosphate: 248.19533297481044 - ammonia: 124.09766648740522 - solids: 24819.533297481044 - bod: 2481.9533297481044 - cod: 49639.06659496209 - ph: 7.0 - temperature: 11.0 - nitrate: 9927.813318992417 - nitrite: 49.63906659496209 - org-nitrogen: 12409.766648740522 - volume: 2481953.3297481043 - area: 13237084.425323224 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.4 - infiltration_capacity: 0.1 - sowing_day: 1 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 12409.766648740522 - phosphate: 12409.766648740522 - ammonia: 0.0 - nitrate: 2481953.3297481043 - nitrite: 0.0 - org-nitrogen: 2481953.3297481043 - volume: 2481953.3297481043 - pollutant_load: *id003 - et0_coefficient: 1 - type_: IrrigationSurface - filename: 1823-land-Garden-inputs.csv.gz - total_porosity: 0.4 - Woodland: - surface: Woodland - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.15 - - 0.15 - - 0.9 - - 0.9 - - 0.15 - - 0.0 - - 0.0 - crop_factor_stage_dates: - - 0 - - 0 - - 1 - - 4 - - 135 - - 288 - - 365 - - 366 - - 366 - rooting_depth: 1.75 - harvest_day: 365 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 160.5087319745666 - phosphate: 160.5087319745666 - ammonia: 80.2543659872833 - solids: 16050.873197456656 - bod: 1605.0873197456656 - cod: 32101.746394913313 - ph: 7.0 - temperature: 11.0 - nitrate: 6420.349278982662 - nitrite: 32.10174639491331 - org-nitrogen: 8025.436598728328 - volume: 1605087.3197456656 - area: 3668771.0165615217 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.75 - infiltration_capacity: 0.1 - sowing_day: 1 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 8025.436598728328 - phosphate: 8025.436598728328 - ammonia: 0.0 - nitrate: 1605087.3197456656 - nitrite: 0.0 - org-nitrogen: 1605087.3197456656 - volume: 1605087.3197456656 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Woodland-inputs.csv.gz - total_porosity: 0.4 - Grass: - surface: Grass - field_capacity: 0.15 - percolation_coefficient: 0.7 - crop_factor_stages: - - 0.0 - - 0.0 - - 0.9 - - 0.9 - - 0.95 - - 0.95 - - 0.95 - - 0.0 - - 0.0 - crop_factor_stage_dates: - - 0 - - 0 - - 1 - - 2 - - 3 - - 5 - - 365 - - 366 - - 366 - rooting_depth: 0.75 - harvest_day: 365 - ihacres_p: 10.0 - initial_storage: - do: 0.01 - org-phosphorus: 383.2844684047325 - phosphate: 383.2844684047325 - ammonia: 191.64223420236624 - solids: 38328.44684047325 - bod: 3832.844684047325 - cod: 76656.8936809465 - ph: 7.0 - temperature: 11.0 - nitrate: 15331.3787361893 - nitrite: 76.6568936809465 - org-nitrogen: 19164.223420236623 - volume: 3832844.6840473246 - area: 22816424.919374123 - surface_coefficient: 0.01 - decays: *id002 - ET_depletion_factor: 0.4 - infiltration_capacity: 0.1 - sowing_day: 1 - wilting_point: 0.12 - datum: 10 - initial_soil_storage: - org-phosphorus: 19164.223420236623 - phosphate: 19164.223420236623 - ammonia: 0.0 - nitrate: 3832844.6840473246 - nitrite: 0.0 - org-nitrogen: 3832844.6840473246 - volume: 3832844.6840473246 - pollutant_load: *id003 - et0_coefficient: 1 - type_: GrowingSurface - filename: 1823-land-Grass-inputs.csv.gz - total_porosity: 0.4 - Impervious: - pore_depth: 0.001 - surface: Impervious - decays: {} - datum: 10 - et0_to_e: 1.2 - initial_storage: 0 - pollutant_load: - do: 0.005 - org-phosphorus: 1.0e-08 - phosphate: 1.0e-10 - ammonia: 1.0e-09 - solids: 1.0e-05 - bod: 1.0e-05 - cod: 1.0e-06 - ph: 7.5 - temperature: 13.0 - nitrate: 1.0e-09 - nitrite: 1.0e-09 - org-nitrogen: 1.0e-09 - area: 13835156.946402296 - type_: ImperviousSurface - filename: 1823-land-Impervious-inputs.csv.gz - filename: 1823-land-inputs.csv.gz - 1823-storm: - capacity: 324194.8710171471 - name: 1823-storm - pipe_time: 0 - chamber_area: 1 - pipe_timearea: *id001 - chamber_floor: 10 - type_: Sewer - node_type_override: Sewer - 1823-stormcso: - capacity: 324194.8710171471 - name: 1823-stormcso - pipe_time: 0 - chamber_area: 1 - pipe_timearea: *id001 - chamber_floor: 10 - type_: Sewer - node_type_override: SewerCSO - spill_capacity: 172800 - 1823-gw: - infiltration_threshold: 0.0 - decays: null - name: 1823-gw - datum: -70 - infiltration_pct: 0.0 - area: 64731564.39835509 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 108.51860639741416 - z_surface: 136.48225 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 6aead97c-0040-4e31-889d-01f628faf990: 123.6 - fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7: 123.6 - 7e0cc125-fe7a-445b-af6b-bf55ac4065f9: 123.6 - e07ddbc6-7158-4a47-b987-eb2b934dd257: 123.6 - e4b324b5-60f9-48c2-9d64-d89d22a5305e: 123.6 - 88c7e69b-e4b3-4483-a438-0d6f9046cdee: 123.6 - a057761f-e18e-4cad-84d4-9458edc182ef: 123.6 - 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8: 123.6 - 1823-river: - capacity: 1448206.7140110577 - decays: null - name: 1823-river - damp: 0.1 - width: 30 - velocity: 17280.0 - datum: 107.51860639741416 - depth: 3 - initial_storage: 0 - mrf: 0 - length: 16091.185711233973 - area: 482735.5713370192 - type_: River - node_type_override: River_h - filename: 1823-river-inputs.csv.gz - chalton_stw-wwtw: - liquor_multiplier: - do: 0.1 - org-phosphorus: 0.5 - phosphate: 0.8 - ammonia: 0.2 - solids: 0.1 - bod: 0.05 - cod: 0.1 - nitrate: 0.05 - nitrite: 0.2 - volume: 0.03 - org-nitrogen: 0.95 - name: chalton_stw-wwtw - percent_solids: 0.0002 - stormwater_storage_capacity: 31764.513449128088 - process_parameters: - ammonia: - constant: 0.01 - exponent: 1.05 - bod: - constant: 0.07 - exponent: 1.05 - cod: - constant: 0.1 - exponent: 1.05 - do: - constant: 1.2 - exponent: 1.005 - nitrate: - constant: 20.0 - exponent: 1.05 - nitrite: - constant: 5.0 - exponent: 1.05 - org-nitrogen: - constant: 0.9 - exponent: 1.05 - org-phosphorus: - constant: 0.1 - exponent: 1.05 - phosphate: - constant: 1.3 - exponent: 1.001 - solids: - constant: 0.02 - exponent: 1.05 - volume: - constant: 0.9698 - stormwater_storage_area: 1 - stormwater_storage_elevation: 10 - treatment_throughput_capacity: 190587.08069476852 - type_: WWTW - node_type_override: WWTW - luton_stw-wwtw: - liquor_multiplier: - do: 0.1 - org-phosphorus: 0.5 - phosphate: 0.8 - ammonia: 0.2 - solids: 0.1 - bod: 0.05 - cod: 0.1 - nitrate: 0.05 - nitrite: 0.2 - volume: 0.03 - org-nitrogen: 0.95 - name: luton_stw-wwtw - percent_solids: 0.0002 - stormwater_storage_capacity: 66608.41 - process_parameters: - ammonia: - constant: 0.015 - exponent: 1.05 - bod: - constant: 0.07 - exponent: 1.05 - cod: - constant: 0.1 - exponent: 1.05 - do: - constant: 1.2 - exponent: 1.005 - nitrate: - constant: 20.0 - exponent: 1.05 - nitrite: - constant: 5.0 - exponent: 1.05 - org-nitrogen: - constant: 0.9 - exponent: 1.05 - org-phosphorus: - constant: 0.1 - exponent: 1.05 - phosphate: - constant: 1.3 - exponent: 1.001 - solids: - constant: 0.02 - exponent: 1.05 - volume: - constant: 0.9698 - stormwater_storage_area: 1 - stormwater_storage_elevation: 10 - treatment_throughput_capacity: 39092.92454064619 - type_: WWTW - node_type_override: WWTW - 1823-outlet: - type_: Node - name: 1823-outlet - 1823-downstream: - type_: Waste - name: 1823-downstream - external-river: - type_: Waste - name: external-river - 6aead97c-0040-4e31-889d-01f628faf990: - infiltration_threshold: 0.0 - decays: null - name: 6aead97c-0040-4e31-889d-01f628faf990 - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 128.8920588235294 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: 6aead97c-0040-4e31-889d-01f628faf990.csv - fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7: - infiltration_threshold: 0.0 - decays: null - name: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 127.25714285714288 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7.csv - 7e0cc125-fe7a-445b-af6b-bf55ac4065f9: - infiltration_threshold: 0.0 - decays: null - name: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9 - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 119.53073170731707 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9.csv - e07ddbc6-7158-4a47-b987-eb2b934dd257: - infiltration_threshold: 0.0 - decays: null - name: e07ddbc6-7158-4a47-b987-eb2b934dd257 - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 98.70826666666667 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: e07ddbc6-7158-4a47-b987-eb2b934dd257.csv - e4b324b5-60f9-48c2-9d64-d89d22a5305e: - infiltration_threshold: 0.0 - decays: null - name: e4b324b5-60f9-48c2-9d64-d89d22a5305e - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 107.70526315789476 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: e4b324b5-60f9-48c2-9d64-d89d22a5305e.csv - 88c7e69b-e4b3-4483-a438-0d6f9046cdee: - infiltration_threshold: 0.0 - decays: null - name: 88c7e69b-e4b3-4483-a438-0d6f9046cdee - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 109.0362037037037 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: 88c7e69b-e4b3-4483-a438-0d6f9046cdee.csv - a057761f-e18e-4cad-84d4-9458edc182ef: - infiltration_threshold: 0.0 - decays: null - name: a057761f-e18e-4cad-84d4-9458edc182ef - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 106.9316129032258 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: a057761f-e18e-4cad-84d4-9458edc182ef.csv - 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8: - infiltration_threshold: 0.0 - decays: null - name: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 - datum: -70 - infiltration_pct: 0.0 - area: 1000000000000.0 - type_: Groundwater - node_type_override: Groundwater_h - h_initial: 107.65836956521738 - z_surface: 200 - s: 0.01 - c_riverbed: 1.0e-05 - c_aquifer: - 1823-gw: 123.6 - filename: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8.csv - 1823-stormcso-cso: - capacity: 1000000000000000.0 - name: 1823-stormcso-cso - pipe_time: 0 - chamber_area: 1 - pipe_timearea: *id001 - chamber_floor: 10 - type_: Sewer - node_type_override: CSO - luton_stw-1823-combined: - capacity: 324194.8710171471 - name: luton_stw-1823-combined - pipe_time: 0 - chamber_area: 1 - pipe_timearea: *id001 - chamber_floor: 10 - type_: Sewer - node_type_override: Sewer -arcs: - chalton_stw-1823-demand-to-chalton_stw-1823-foul: - capacity: 1000000000000000.0 - name: chalton_stw-1823-demand-to-chalton_stw-1823-foul - preference: 1 - type_: Arc - in_port: chalton_stw-1823-demand - out_port: chalton_stw-1823-foul - chalton_stw-1823-demand-to-1823-land: - capacity: 1000000000000000.0 - name: chalton_stw-1823-demand-to-1823-land - preference: 0.29755011992665326 - type_: Arc - in_port: chalton_stw-1823-demand - out_port: 1823-land - distribution-to-chalton_stw-1823-demand: - capacity: 1000000000000000.0 - name: distribution-to-chalton_stw-1823-demand - preference: 1 - type_: Arc - in_port: distribution - out_port: chalton_stw-1823-demand - luton_stw-1823-demand-to-luton_stw-1823-foul: - capacity: 1000000000000000.0 - name: luton_stw-1823-demand-to-luton_stw-1823-foul - preference: 1 - type_: Arc - in_port: luton_stw-1823-demand - out_port: luton_stw-1823-foul - luton_stw-1823-demand-to-1823-land: - capacity: 1000000000000000.0 - name: luton_stw-1823-demand-to-1823-land - preference: 0.45980943658684387 - type_: Arc - in_port: luton_stw-1823-demand - out_port: 1823-land - distribution-to-luton_stw-1823-demand: - capacity: 1000000000000000.0 - name: distribution-to-luton_stw-1823-demand - preference: 1 - type_: Arc - in_port: distribution - out_port: luton_stw-1823-demand - 1823-land-to-1823-storm: - capacity: 1000000000000000.0 - name: 1823-land-to-1823-storm - preference: 1 - type_: Arc - in_port: 1823-land - out_port: 1823-storm - 1823-storm-to-1823-stormcso: - capacity: 1000000000000000.0 - name: 1823-storm-to-1823-stormcso - preference: 1 - type_: Arc - in_port: 1823-storm - out_port: 1823-stormcso - 1823-land-to-1823-gw: - capacity: 1000000000000000.0 - name: 1823-land-to-1823-gw - preference: 1 - type_: Arc - in_port: 1823-land - out_port: 1823-gw - 1823-land-to-1823-river: - capacity: 1000000000000000.0 - name: 1823-land-to-1823-river - preference: 1 - type_: Arc - in_port: 1823-land - out_port: 1823-river - 1823-gw-to-1823-river: - capacity: 1000000000000000.0 - name: 1823-gw-to-1823-river - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: 1823-river - chalton_stw-1823-foul-to-chalton_stw-wwtw: - capacity: 1000000000000000.0 - name: chalton_stw-1823-foul-to-chalton_stw-wwtw - preference: 1 - type_: Arc - in_port: chalton_stw-1823-foul - out_port: chalton_stw-wwtw - chalton_stw-wwtw-to-external-river: - capacity: 1000000000000000.0 - name: chalton_stw-wwtw-to-external-river - preference: 1 - type_: Arc - in_port: chalton_stw-wwtw - out_port: external-river - luton_stw-wwtw-to-1823-outlet: - capacity: 1000000000000000.0 - name: luton_stw-wwtw-to-1823-outlet - preference: 1 - type_: Arc - in_port: luton_stw-wwtw - out_port: 1823-outlet - 1823-river-to-1823-outlet: - capacity: 1000000000000000.0 - name: 1823-river-to-1823-outlet - preference: 1 - type_: Arc - in_port: 1823-river - out_port: 1823-outlet - 1823-outlet-to-1823-downstream: - capacity: 1000000000000000.0 - name: 1823-outlet-to-1823-downstream - preference: 1 - type_: Arc - in_port: 1823-outlet - out_port: 1823-downstream - 1823-river-to-1823-gw: - capacity: 1000000000000000.0 - name: 1823-river-to-1823-gw - preference: 1 - type_: Arc - in_port: 1823-river - out_port: 1823-gw - 1823-gw-demand-to-external-river: - capacity: 1000000000000000.0 - name: 1823-gw-demand-to-external-river - preference: 1 - type_: Arc - in_port: 1823-gw-demand - out_port: external-river - 1823-gw-to-1823-gw-demand: - capacity: 1000000000000000.0 - name: 1823-gw-to-1823-gw-demand - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: 1823-gw-demand - 1823-stormcso-to-1823-river: - capacity: 324194.8710171471 - name: 1823-stormcso-to-1823-river - preference: 1 - type_: Arc - in_port: 1823-stormcso - out_port: 1823-river - 1823-stormcso-to-luton_stw-1823-combined: - capacity: 324194.8710171471 - name: 1823-stormcso-to-luton_stw-1823-combined - preference: 3.5 - type_: Arc - in_port: 1823-stormcso - out_port: luton_stw-1823-combined - 1823-stormcso-to-1823-stormcso-cso: - capacity: 1000000000000000.0 - name: 1823-stormcso-to-1823-stormcso-cso - preference: 1 - type_: Arc - in_port: 1823-stormcso - out_port: 1823-stormcso-cso - 1823-stormcso-cso-to-1823-river: - capacity: 1000000000000000.0 - name: 1823-stormcso-cso-to-1823-river - preference: 1 - type_: Arc - in_port: 1823-stormcso-cso - out_port: 1823-river - luton_stw-1823-foul-to-luton_stw-1823-combined: - capacity: 1000000000000000.0 - name: luton_stw-1823-foul-to-luton_stw-1823-combined - preference: 1 - type_: Arc - in_port: luton_stw-1823-foul - out_port: luton_stw-1823-combined - luton_stw-1823-combined-to-luton_stw-wwtw: - capacity: 1000000000000000.0 - name: luton_stw-1823-combined-to-luton_stw-wwtw - preference: 1 - type_: Arc - in_port: luton_stw-1823-combined - out_port: luton_stw-wwtw - luton_stw-1823-combined-to-1823-outlet: - capacity: 1000000000000000.0 - name: luton_stw-1823-combined-to-1823-outlet - preference: 1.0e-17 - type_: Arc - in_port: luton_stw-1823-combined - out_port: 1823-outlet - 6aead97c-0040-4e31-889d-01f628faf990-to-1823-gw: - capacity: 1000000000000000.0 - name: 6aead97c-0040-4e31-889d-01f628faf990-to-1823-gw - preference: 1 - type_: Arc - in_port: 6aead97c-0040-4e31-889d-01f628faf990 - out_port: 1823-gw - 1823-gw-to-6aead97c-0040-4e31-889d-01f628faf990: - capacity: 1000000000000000.0 - name: 1823-gw-to-6aead97c-0040-4e31-889d-01f628faf990 - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: 6aead97c-0040-4e31-889d-01f628faf990 - fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7-to-1823-gw: - capacity: 1000000000000000.0 - name: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7-to-1823-gw - preference: 1 - type_: Arc - in_port: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 - out_port: 1823-gw - 1823-gw-to-fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7: - capacity: 1000000000000000.0 - name: 1823-gw-to-fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: fb3a7adf-ae40-4a9f-ad3f-55b3e4d5c6b7 - 7e0cc125-fe7a-445b-af6b-bf55ac4065f9-to-1823-gw: - capacity: 1000000000000000.0 - name: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9-to-1823-gw - preference: 1 - type_: Arc - in_port: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9 - out_port: 1823-gw - 1823-gw-to-7e0cc125-fe7a-445b-af6b-bf55ac4065f9: - capacity: 1000000000000000.0 - name: 1823-gw-to-7e0cc125-fe7a-445b-af6b-bf55ac4065f9 - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: 7e0cc125-fe7a-445b-af6b-bf55ac4065f9 - e07ddbc6-7158-4a47-b987-eb2b934dd257-to-1823-gw: - capacity: 1000000000000000.0 - name: e07ddbc6-7158-4a47-b987-eb2b934dd257-to-1823-gw - preference: 1 - type_: Arc - in_port: e07ddbc6-7158-4a47-b987-eb2b934dd257 - out_port: 1823-gw - 1823-gw-to-e07ddbc6-7158-4a47-b987-eb2b934dd257: - capacity: 1000000000000000.0 - name: 1823-gw-to-e07ddbc6-7158-4a47-b987-eb2b934dd257 - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: e07ddbc6-7158-4a47-b987-eb2b934dd257 - e4b324b5-60f9-48c2-9d64-d89d22a5305e-to-1823-gw: - capacity: 1000000000000000.0 - name: e4b324b5-60f9-48c2-9d64-d89d22a5305e-to-1823-gw - preference: 1 - type_: Arc - in_port: e4b324b5-60f9-48c2-9d64-d89d22a5305e - out_port: 1823-gw - 1823-gw-to-e4b324b5-60f9-48c2-9d64-d89d22a5305e: - capacity: 1000000000000000.0 - name: 1823-gw-to-e4b324b5-60f9-48c2-9d64-d89d22a5305e - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: e4b324b5-60f9-48c2-9d64-d89d22a5305e - 88c7e69b-e4b3-4483-a438-0d6f9046cdee-to-1823-gw: - capacity: 1000000000000000.0 - name: 88c7e69b-e4b3-4483-a438-0d6f9046cdee-to-1823-gw - preference: 1 - type_: Arc - in_port: 88c7e69b-e4b3-4483-a438-0d6f9046cdee - out_port: 1823-gw - 1823-gw-to-88c7e69b-e4b3-4483-a438-0d6f9046cdee: - capacity: 1000000000000000.0 - name: 1823-gw-to-88c7e69b-e4b3-4483-a438-0d6f9046cdee - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: 88c7e69b-e4b3-4483-a438-0d6f9046cdee - a057761f-e18e-4cad-84d4-9458edc182ef-to-1823-gw: - capacity: 1000000000000000.0 - name: a057761f-e18e-4cad-84d4-9458edc182ef-to-1823-gw - preference: 1 - type_: Arc - in_port: a057761f-e18e-4cad-84d4-9458edc182ef - out_port: 1823-gw - 1823-gw-to-a057761f-e18e-4cad-84d4-9458edc182ef: - capacity: 1000000000000000.0 - name: 1823-gw-to-a057761f-e18e-4cad-84d4-9458edc182ef - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: a057761f-e18e-4cad-84d4-9458edc182ef - 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8-to-1823-gw: - capacity: 1000000000000000.0 - name: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8-to-1823-gw - preference: 1 - type_: Arc - in_port: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 - out_port: 1823-gw - 1823-gw-to-2b5397b7-a129-40a6-873d-cb2a0dd7d5b8: - capacity: 1000000000000000.0 - name: 1823-gw-to-2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 - preference: 1 - type_: Arc - in_port: 1823-gw - out_port: 2b5397b7-a129-40a6-873d-cb2a0dd7d5b8 -pollutants: -- org-phosphorus -- phosphate -- ammonia -- solids -- temperature -- nitrate -- nitrite -- org-nitrogen -additive_pollutants: -- org-phosphorus -- phosphate -- ammonia -- solids -- nitrate -- nitrite -- org-nitrogen -non_additive_pollutants: -- temperature -float_accuracy: 1.0e-06 -dates: -- '2000-01-01' -- '2000-01-02' -- '2000-01-03' -- '2000-01-04' -- '2000-01-05' -- '2000-01-06' -- '2000-01-07' -- '2000-01-08' -- '2000-01-09' -- '2000-01-10' -- '2000-01-11' -- '2000-01-12' -- '2000-01-13' -- '2000-01-14' -- '2000-01-15' -- '2000-01-16' -- '2000-01-17' -- '2000-01-18' -- '2000-01-19' -- '2000-01-20' -- '2000-01-21' -- '2000-01-22' -- '2000-01-23' -- '2000-01-24' -- '2000-01-25' -- '2000-01-26' -- '2000-01-27' -- '2000-01-28' -- '2000-01-29' -- '2000-01-30' -- '2000-01-31' -- '2000-02-01' -- '2000-02-02' -- '2000-02-03' -- '2000-02-04' -- '2000-02-05' -- '2000-02-06' -- '2000-02-07' -- '2000-02-08' -- '2000-02-09' -- '2000-02-10' -- '2000-02-11' -- '2000-02-12' -- '2000-02-13' -- '2000-02-14' -- '2000-02-15' -- '2000-02-16' -- '2000-02-17' -- '2000-02-18' -- '2000-02-19' -- '2000-02-20' -- '2000-02-21' -- '2000-02-22' -- '2000-02-23' -- '2000-02-24' -- '2000-02-25' -- '2000-02-26' -- '2000-02-27' -- '2000-02-28' -- '2000-02-29' -- '2000-03-01' -- '2000-03-02' -- '2000-03-03' -- '2000-03-04' -- '2000-03-05' -- '2000-03-06' -- '2000-03-07' -- '2000-03-08' -- '2000-03-09' -- '2000-03-10' -- '2000-03-11' -- '2000-03-12' -- '2000-03-13' -- '2000-03-14' -- '2000-03-15' -- '2000-03-16' -- '2000-03-17' -- '2000-03-18' -- '2000-03-19' -- '2000-03-20' -- '2000-03-21' -- '2000-03-22' -- '2000-03-23' -- '2000-03-24' -- '2000-03-25' -- '2000-03-26' -- '2000-03-27' -- '2000-03-28' -- '2000-03-29' -- '2000-03-30' -- '2000-03-31' -- '2000-04-01' -- '2000-04-02' -- '2000-04-03' -- '2000-04-04' -- '2000-04-05' -- '2000-04-06' -- '2000-04-07' -- '2000-04-08' -- '2000-04-09' -- '2000-04-10' -- '2000-04-11' -- '2000-04-12' -- '2000-04-13' -- '2000-04-14' -- '2000-04-15' -- '2000-04-16' -- '2000-04-17' -- '2000-04-18' -- '2000-04-19' -- '2000-04-20' -- '2000-04-21' -- '2000-04-22' -- '2000-04-23' -- '2000-04-24' -- '2000-04-25' -- '2000-04-26' -- '2000-04-27' -- '2000-04-28' -- '2000-04-29' -- '2000-04-30' -- '2000-05-01' -- '2000-05-02' -- '2000-05-03' -- '2000-05-04' -- '2000-05-05' -- '2000-05-06' -- '2000-05-07' -- '2000-05-08' -- '2000-05-09' -- '2000-05-10' -- '2000-05-11' -- '2000-05-12' -- '2000-05-13' -- '2000-05-14' -- '2000-05-15' -- '2000-05-16' -- '2000-05-17' -- '2000-05-18' -- '2000-05-19' -- '2000-05-20' -- '2000-05-21' -- '2000-05-22' -- '2000-05-23' -- '2000-05-24' -- '2000-05-25' -- '2000-05-26' -- '2000-05-27' -- '2000-05-28' -- '2000-05-29' -- '2000-05-30' -- '2000-05-31' -- '2000-06-01' -- '2000-06-02' -- '2000-06-03' -- '2000-06-04' -- '2000-06-05' -- '2000-06-06' -- '2000-06-07' -- '2000-06-08' -- '2000-06-09' -- '2000-06-10' -- '2000-06-11' -- '2000-06-12' -- '2000-06-13' -- '2000-06-14' -- '2000-06-15' -- '2000-06-16' -- '2000-06-17' -- '2000-06-18' -- '2000-06-19' -- '2000-06-20' -- '2000-06-21' -- '2000-06-22' -- '2000-06-23' -- '2000-06-24' -- '2000-06-25' -- '2000-06-26' -- '2000-06-27' -- '2000-06-28' -- '2000-06-29' -- '2000-06-30' -- '2000-07-01' -- '2000-07-02' -- '2000-07-03' -- '2000-07-04' -- '2000-07-05' -- '2000-07-06' -- '2000-07-07' -- '2000-07-08' -- '2000-07-09' -- '2000-07-10' -- '2000-07-11' -- '2000-07-12' -- '2000-07-13' -- '2000-07-14' -- '2000-07-15' -- '2000-07-16' -- '2000-07-17' -- '2000-07-18' -- '2000-07-19' -- '2000-07-20' -- '2000-07-21' -- '2000-07-22' -- '2000-07-23' -- '2000-07-24' -- '2000-07-25' -- '2000-07-26' -- '2000-07-27' -- '2000-07-28' -- '2000-07-29' -- '2000-07-30' -- '2000-07-31' -- '2000-08-01' -- '2000-08-02' -- '2000-08-03' -- '2000-08-04' -- '2000-08-05' -- '2000-08-06' -- '2000-08-07' -- '2000-08-08' -- '2000-08-09' -- '2000-08-10' -- '2000-08-11' -- '2000-08-12' -- '2000-08-13' -- '2000-08-14' -- '2000-08-15' -- '2000-08-16' -- '2000-08-17' -- '2000-08-18' -- '2000-08-19' -- '2000-08-20' -- '2000-08-21' -- '2000-08-22' -- '2000-08-23' -- '2000-08-24' -- '2000-08-25' -- '2000-08-26' -- '2000-08-27' -- '2000-08-28' -- '2000-08-29' -- '2000-08-30' -- '2000-08-31' -- '2000-09-01' -- '2000-09-02' -- '2000-09-03' -- '2000-09-04' -- '2000-09-05' -- '2000-09-06' -- '2000-09-07' -- '2000-09-08' -- '2000-09-09' -- '2000-09-10' -- '2000-09-11' -- '2000-09-12' -- '2000-09-13' -- '2000-09-14' -- '2000-09-15' -- '2000-09-16' -- '2000-09-17' -- '2000-09-18' -- '2000-09-19' -- '2000-09-20' -- '2000-09-21' -- '2000-09-22' -- '2000-09-23' -- '2000-09-24' -- '2000-09-25' -- '2000-09-26' -- '2000-09-27' -- '2000-09-28' -- '2000-09-29' -- '2000-09-30' -- '2000-10-01' -- '2000-10-02' -- '2000-10-03' -- '2000-10-04' -- '2000-10-05' -- '2000-10-06' -- '2000-10-07' -- '2000-10-08' -- '2000-10-09' -- '2000-10-10' -- '2000-10-11' -- '2000-10-12' -- '2000-10-13' -- '2000-10-14' -- '2000-10-15' -- '2000-10-16' -- '2000-10-17' -- '2000-10-18' -- '2000-10-19' -- '2000-10-20' -- '2000-10-21' -- '2000-10-22' -- '2000-10-23' -- '2000-10-24' -- '2000-10-25' -- '2000-10-26' -- '2000-10-27' -- '2000-10-28' -- '2000-10-29' -- '2000-10-30' -- '2000-10-31' -- '2000-11-01' -- '2000-11-02' -- '2000-11-03' -- '2000-11-04' -- '2000-11-05' -- '2000-11-06' -- '2000-11-07' -- '2000-11-08' -- '2000-11-09' -- '2000-11-10' -- '2000-11-11' -- '2000-11-12' -- '2000-11-13' -- '2000-11-14' -- '2000-11-15' -- '2000-11-16' -- '2000-11-17' -- '2000-11-18' -- '2000-11-19' -- '2000-11-20' -- '2000-11-21' -- '2000-11-22' -- '2000-11-23' -- '2000-11-24' -- '2000-11-25' -- '2000-11-26' -- '2000-11-27' -- '2000-11-28' -- '2000-11-29' -- '2000-11-30' -- '2000-12-01' -- '2000-12-02' -- '2000-12-03' -- '2000-12-04' -- '2000-12-05' -- '2000-12-06' -- '2000-12-07' -- '2000-12-08' -- '2000-12-09' -- '2000-12-10' -- '2000-12-11' -- '2000-12-12' -- '2000-12-13' -- '2000-12-14' -- '2000-12-15' -- '2000-12-16' -- '2000-12-17' -- '2000-12-18' -- '2000-12-19' -- '2000-12-20' -- '2000-12-21' -- '2000-12-22' -- '2000-12-23' -- '2000-12-24' -- '2000-12-25' -- '2000-12-26' -- '2000-12-27' -- '2000-12-28' -- '2000-12-29' -- '2000-12-30' -- '2000-12-31' -- '2001-01-01' -- '2001-01-02' -- '2001-01-03' -- '2001-01-04' -- '2001-01-05' -- '2001-01-06' -- '2001-01-07' -- '2001-01-08' -- '2001-01-09' -- '2001-01-10' -- '2001-01-11' -- '2001-01-12' -- '2001-01-13' -- '2001-01-14' -- '2001-01-15' -- '2001-01-16' -- '2001-01-17' -- '2001-01-18' -- '2001-01-19' -- '2001-01-20' -- '2001-01-21' -- '2001-01-22' -- '2001-01-23' -- '2001-01-24' -- '2001-01-25' -- '2001-01-26' -- '2001-01-27' -- '2001-01-28' -- '2001-01-29' -- '2001-01-30' -- '2001-01-31' -- '2001-02-01' -- '2001-02-02' -- '2001-02-03' -- '2001-02-04' -- '2001-02-05' -- '2001-02-06' -- '2001-02-07' -- '2001-02-08' -- '2001-02-09' -- '2001-02-10' -- '2001-02-11' -- '2001-02-12' -- '2001-02-13' -- '2001-02-14' -- '2001-02-15' -- '2001-02-16' -- '2001-02-17' -- '2001-02-18' -- '2001-02-19' -- '2001-02-20' -- '2001-02-21' -- '2001-02-22' -- '2001-02-23' -- '2001-02-24' -- '2001-02-25' -- '2001-02-26' -- '2001-02-27' -- '2001-02-28' -- '2001-03-01' -- '2001-03-02' -- '2001-03-03' -- '2001-03-04' -- '2001-03-05' -- '2001-03-06' -- '2001-03-07' -- '2001-03-08' -- '2001-03-09' -- '2001-03-10' -- '2001-03-11' -- '2001-03-12' -- '2001-03-13' -- '2001-03-14' -- '2001-03-15' -- '2001-03-16' -- '2001-03-17' -- '2001-03-18' -- '2001-03-19' -- '2001-03-20' -- '2001-03-21' -- '2001-03-22' -- '2001-03-23' -- '2001-03-24' -- '2001-03-25' -- '2001-03-26' -- '2001-03-27' -- '2001-03-28' -- '2001-03-29' -- '2001-03-30' -- '2001-03-31' -- '2001-04-01' -- '2001-04-02' -- '2001-04-03' -- '2001-04-04' -- '2001-04-05' -- '2001-04-06' -- '2001-04-07' -- '2001-04-08' -- '2001-04-09' -- '2001-04-10' -- '2001-04-11' -- '2001-04-12' -- '2001-04-13' -- '2001-04-14' -- '2001-04-15' -- '2001-04-16' -- '2001-04-17' -- '2001-04-18' -- '2001-04-19' -- '2001-04-20' -- '2001-04-21' -- '2001-04-22' -- '2001-04-23' -- '2001-04-24' -- '2001-04-25' -- '2001-04-26' -- '2001-04-27' -- '2001-04-28' -- '2001-04-29' -- '2001-04-30' -- '2001-05-01' -- '2001-05-02' -- '2001-05-03' -- '2001-05-04' -- '2001-05-05' -- '2001-05-06' -- '2001-05-07' -- '2001-05-08' -- '2001-05-09' -- '2001-05-10' -- '2001-05-11' -- '2001-05-12' -- '2001-05-13' -- '2001-05-14' -- '2001-05-15' -- '2001-05-16' -- '2001-05-17' -- '2001-05-18' -- '2001-05-19' -- '2001-05-20' -- '2001-05-21' -- '2001-05-22' -- '2001-05-23' -- '2001-05-24' -- '2001-05-25' -- '2001-05-26' -- '2001-05-27' -- '2001-05-28' -- '2001-05-29' -- '2001-05-30' -- '2001-05-31' -- '2001-06-01' -- '2001-06-02' -- '2001-06-03' -- '2001-06-04' -- '2001-06-05' -- '2001-06-06' -- '2001-06-07' -- '2001-06-08' -- '2001-06-09' -- '2001-06-10' -- '2001-06-11' -- '2001-06-12' -- '2001-06-13' -- '2001-06-14' -- '2001-06-15' -- '2001-06-16' -- '2001-06-17' -- '2001-06-18' -- '2001-06-19' -- '2001-06-20' -- '2001-06-21' -- '2001-06-22' -- '2001-06-23' -- '2001-06-24' -- '2001-06-25' -- '2001-06-26' -- '2001-06-27' -- '2001-06-28' -- '2001-06-29' -- '2001-06-30' -- '2001-07-01' -- '2001-07-02' -- '2001-07-03' -- '2001-07-04' -- '2001-07-05' -- '2001-07-06' -- '2001-07-07' -- '2001-07-08' -- '2001-07-09' -- '2001-07-10' -- '2001-07-11' -- '2001-07-12' -- '2001-07-13' -- '2001-07-14' -- '2001-07-15' -- '2001-07-16' -- '2001-07-17' -- '2001-07-18' -- '2001-07-19' -- '2001-07-20' -- '2001-07-21' -- '2001-07-22' -- '2001-07-23' -- '2001-07-24' -- '2001-07-25' -- '2001-07-26' -- '2001-07-27' -- '2001-07-28' -- '2001-07-29' -- '2001-07-30' -- '2001-07-31' -- '2001-08-01' -- '2001-08-02' -- '2001-08-03' -- '2001-08-04' -- '2001-08-05' -- '2001-08-06' -- '2001-08-07' -- '2001-08-08' -- '2001-08-09' -- '2001-08-10' -- '2001-08-11' -- '2001-08-12' -- '2001-08-13' -- '2001-08-14' -- '2001-08-15' -- '2001-08-16' -- '2001-08-17' -- '2001-08-18' -- '2001-08-19' -- '2001-08-20' -- '2001-08-21' -- '2001-08-22' -- '2001-08-23' -- '2001-08-24' -- '2001-08-25' -- '2001-08-26' -- '2001-08-27' -- '2001-08-28' -- '2001-08-29' -- '2001-08-30' -- '2001-08-31' -- '2001-09-01' -- '2001-09-02' -- '2001-09-03' -- '2001-09-04' -- '2001-09-05' -- '2001-09-06' -- '2001-09-07' -- '2001-09-08' -- '2001-09-09' -- '2001-09-10' -- '2001-09-11' -- '2001-09-12' -- '2001-09-13' -- '2001-09-14' -- '2001-09-15' -- '2001-09-16' -- '2001-09-17' -- '2001-09-18' -- '2001-09-19' -- '2001-09-20' -- '2001-09-21' -- '2001-09-22' -- '2001-09-23' -- '2001-09-24' -- '2001-09-25' -- '2001-09-26' -- '2001-09-27' -- '2001-09-28' -- '2001-09-29' -- '2001-09-30' -- '2001-10-01' -- '2001-10-02' -- '2001-10-03' -- '2001-10-04' -- '2001-10-05' -- '2001-10-06' -- '2001-10-07' -- '2001-10-08' -- '2001-10-09' -- '2001-10-10' -- '2001-10-11' -- '2001-10-12' -- '2001-10-13' -- '2001-10-14' -- '2001-10-15' -- '2001-10-16' -- '2001-10-17' -- '2001-10-18' -- '2001-10-19' -- '2001-10-20' -- '2001-10-21' -- '2001-10-22' -- '2001-10-23' -- '2001-10-24' -- '2001-10-25' -- '2001-10-26' -- '2001-10-27' -- '2001-10-28' -- '2001-10-29' -- '2001-10-30' -- '2001-10-31' -- '2001-11-01' -- '2001-11-02' -- '2001-11-03' -- '2001-11-04' -- '2001-11-05' -- '2001-11-06' -- '2001-11-07' -- '2001-11-08' -- '2001-11-09' -- '2001-11-10' -- '2001-11-11' -- '2001-11-12' -- '2001-11-13' -- '2001-11-14' -- '2001-11-15' -- '2001-11-16' -- '2001-11-17' -- '2001-11-18' -- '2001-11-19' -- '2001-11-20' -- '2001-11-21' -- '2001-11-22' -- '2001-11-23' -- '2001-11-24' -- '2001-11-25' -- '2001-11-26' -- '2001-11-27' -- '2001-11-28' -- '2001-11-29' -- '2001-11-30' -- '2001-12-01' -- '2001-12-02' -- '2001-12-03' -- '2001-12-04' -- '2001-12-05' -- '2001-12-06' -- '2001-12-07' -- '2001-12-08' -- '2001-12-09' -- '2001-12-10' -- '2001-12-11' -- '2001-12-12' -- '2001-12-13' -- '2001-12-14' -- '2001-12-15' -- '2001-12-16' -- '2001-12-17' -- '2001-12-18' -- '2001-12-19' -- '2001-12-20' -- '2001-12-21' -- '2001-12-22' -- '2001-12-23' -- '2001-12-24' -- '2001-12-25' -- '2001-12-26' -- '2001-12-27' -- '2001-12-28' -- '2001-12-29' -- '2001-12-30' -- '2001-12-31' -- '2002-01-01' -- '2002-01-02' -- '2002-01-03' -- '2002-01-04' -- '2002-01-05' -- '2002-01-06' -- '2002-01-07' -- '2002-01-08' -- '2002-01-09' -- '2002-01-10' -- '2002-01-11' -- '2002-01-12' -- '2002-01-13' -- '2002-01-14' -- '2002-01-15' -- '2002-01-16' -- '2002-01-17' -- '2002-01-18' -- '2002-01-19' -- '2002-01-20' -- '2002-01-21' -- '2002-01-22' -- '2002-01-23' -- '2002-01-24' -- '2002-01-25' -- '2002-01-26' -- '2002-01-27' -- '2002-01-28' -- '2002-01-29' -- '2002-01-30' -- '2002-01-31' -- '2002-02-01' -- '2002-02-02' -- '2002-02-03' -- '2002-02-04' -- '2002-02-05' -- '2002-02-06' -- '2002-02-07' -- '2002-02-08' -- '2002-02-09' -- '2002-02-10' -- '2002-02-11' -- '2002-02-12' -- '2002-02-13' -- '2002-02-14' -- '2002-02-15' -- '2002-02-16' -- '2002-02-17' -- '2002-02-18' -- '2002-02-19' -- '2002-02-20' -- '2002-02-21' -- '2002-02-22' -- '2002-02-23' -- '2002-02-24' -- '2002-02-25' -- '2002-02-26' -- '2002-02-27' -- '2002-02-28' -- '2002-03-01' -- '2002-03-02' -- '2002-03-03' -- '2002-03-04' -- '2002-03-05' -- '2002-03-06' -- '2002-03-07' -- '2002-03-08' -- '2002-03-09' -- '2002-03-10' -- '2002-03-11' -- '2002-03-12' -- '2002-03-13' -- '2002-03-14' -- '2002-03-15' -- '2002-03-16' -- '2002-03-17' -- '2002-03-18' -- '2002-03-19' -- '2002-03-20' -- '2002-03-21' -- '2002-03-22' -- '2002-03-23' -- '2002-03-24' -- '2002-03-25' -- '2002-03-26' -- '2002-03-27' -- '2002-03-28' -- '2002-03-29' -- '2002-03-30' -- '2002-03-31' -- '2002-04-01' -- '2002-04-02' -- '2002-04-03' -- '2002-04-04' -- '2002-04-05' -- '2002-04-06' -- '2002-04-07' -- '2002-04-08' -- '2002-04-09' -- '2002-04-10' -- '2002-04-11' -- '2002-04-12' -- '2002-04-13' -- '2002-04-14' -- '2002-04-15' -- '2002-04-16' -- '2002-04-17' -- '2002-04-18' -- '2002-04-19' -- '2002-04-20' -- '2002-04-21' -- '2002-04-22' -- '2002-04-23' -- '2002-04-24' -- '2002-04-25' -- '2002-04-26' -- '2002-04-27' -- '2002-04-28' -- '2002-04-29' -- '2002-04-30' -- '2002-05-01' -- '2002-05-02' -- '2002-05-03' -- '2002-05-04' -- '2002-05-05' -- '2002-05-06' -- '2002-05-07' -- '2002-05-08' -- '2002-05-09' -- '2002-05-10' -- '2002-05-11' -- '2002-05-12' -- '2002-05-13' -- '2002-05-14' -- '2002-05-15' -- '2002-05-16' -- '2002-05-17' -- '2002-05-18' -- '2002-05-19' -- '2002-05-20' -- '2002-05-21' -- '2002-05-22' -- '2002-05-23' -- '2002-05-24' -- '2002-05-25' -- '2002-05-26' -- '2002-05-27' -- '2002-05-28' -- '2002-05-29' -- '2002-05-30' -- '2002-05-31' -- '2002-06-01' -- '2002-06-02' -- '2002-06-03' -- '2002-06-04' -- '2002-06-05' -- '2002-06-06' -- '2002-06-07' -- '2002-06-08' -- '2002-06-09' -- '2002-06-10' -- '2002-06-11' -- '2002-06-12' -- '2002-06-13' -- '2002-06-14' -- '2002-06-15' -- '2002-06-16' -- '2002-06-17' -- '2002-06-18' -- '2002-06-19' -- '2002-06-20' -- '2002-06-21' -- '2002-06-22' -- '2002-06-23' -- '2002-06-24' -- '2002-06-25' -- '2002-06-26' -- '2002-06-27' -- '2002-06-28' -- '2002-06-29' -- '2002-06-30' -- '2002-07-01' -- '2002-07-02' -- '2002-07-03' -- '2002-07-04' -- '2002-07-05' -- '2002-07-06' -- '2002-07-07' -- '2002-07-08' -- '2002-07-09' -- '2002-07-10' -- '2002-07-11' -- '2002-07-12' -- '2002-07-13' -- '2002-07-14' -- '2002-07-15' -- '2002-07-16' -- '2002-07-17' -- '2002-07-18' -- '2002-07-19' -- '2002-07-20' -- '2002-07-21' -- '2002-07-22' -- '2002-07-23' -- '2002-07-24' -- '2002-07-25' -- '2002-07-26' -- '2002-07-27' -- '2002-07-28' -- '2002-07-29' -- '2002-07-30' -- '2002-07-31' -- '2002-08-01' -- '2002-08-02' -- '2002-08-03' -- '2002-08-04' -- '2002-08-05' -- '2002-08-06' -- '2002-08-07' -- '2002-08-08' -- '2002-08-09' -- '2002-08-10' -- '2002-08-11' -- '2002-08-12' -- '2002-08-13' -- '2002-08-14' -- '2002-08-15' -- '2002-08-16' -- '2002-08-17' -- '2002-08-18' -- '2002-08-19' -- '2002-08-20' -- '2002-08-21' -- '2002-08-22' -- '2002-08-23' -- '2002-08-24' -- '2002-08-25' -- '2002-08-26' -- '2002-08-27' -- '2002-08-28' -- '2002-08-29' -- '2002-08-30' -- '2002-08-31' -- '2002-09-01' -- '2002-09-02' -- '2002-09-03' -- '2002-09-04' -- '2002-09-05' -- '2002-09-06' -- '2002-09-07' -- '2002-09-08' -- '2002-09-09' -- '2002-09-10' -- '2002-09-11' -- '2002-09-12' -- '2002-09-13' -- '2002-09-14' -- '2002-09-15' -- '2002-09-16' -- '2002-09-17' -- '2002-09-18' -- '2002-09-19' -- '2002-09-20' -- '2002-09-21' -- '2002-09-22' -- '2002-09-23' -- '2002-09-24' -- '2002-09-25' -- '2002-09-26' -- '2002-09-27' -- '2002-09-28' -- '2002-09-29' -- '2002-09-30' -- '2002-10-01' -- '2002-10-02' -- '2002-10-03' -- '2002-10-04' -- '2002-10-05' -- '2002-10-06' -- '2002-10-07' -- '2002-10-08' -- '2002-10-09' -- '2002-10-10' -- '2002-10-11' -- '2002-10-12' -- '2002-10-13' -- '2002-10-14' -- '2002-10-15' -- '2002-10-16' -- '2002-10-17' -- '2002-10-18' -- '2002-10-19' -- '2002-10-20' -- '2002-10-21' -- '2002-10-22' -- '2002-10-23' -- '2002-10-24' -- '2002-10-25' -- '2002-10-26' -- '2002-10-27' -- '2002-10-28' -- '2002-10-29' -- '2002-10-30' -- '2002-10-31' -- '2002-11-01' -- '2002-11-02' -- '2002-11-03' -- '2002-11-04' -- '2002-11-05' -- '2002-11-06' -- '2002-11-07' -- '2002-11-08' -- '2002-11-09' -- '2002-11-10' -- '2002-11-11' -- '2002-11-12' -- '2002-11-13' -- '2002-11-14' -- '2002-11-15' -- '2002-11-16' -- '2002-11-17' -- '2002-11-18' -- '2002-11-19' -- '2002-11-20' -- '2002-11-21' -- '2002-11-22' -- '2002-11-23' -- '2002-11-24' -- '2002-11-25' -- '2002-11-26' -- '2002-11-27' -- '2002-11-28' -- '2002-11-29' -- '2002-11-30' -- '2002-12-01' -- '2002-12-02' -- '2002-12-03' -- '2002-12-04' -- '2002-12-05' -- '2002-12-06' -- '2002-12-07' -- '2002-12-08' -- '2002-12-09' -- '2002-12-10' -- '2002-12-11' -- '2002-12-12' -- '2002-12-13' -- '2002-12-14' -- '2002-12-15' -- '2002-12-16' -- '2002-12-17' -- '2002-12-18' -- '2002-12-19' -- '2002-12-20' -- '2002-12-21' -- '2002-12-22' -- '2002-12-23' -- '2002-12-24' -- '2002-12-25' -- '2002-12-26' -- '2002-12-27' -- '2002-12-28' -- '2002-12-29' -- '2002-12-30' -- '2002-12-31' -- '2003-01-01' -- '2003-01-02' -- '2003-01-03' -- '2003-01-04' -- '2003-01-05' -- '2003-01-06' -- '2003-01-07' -- '2003-01-08' -- '2003-01-09' -- '2003-01-10' -- '2003-01-11' -- '2003-01-12' -- '2003-01-13' -- '2003-01-14' -- '2003-01-15' -- '2003-01-16' -- '2003-01-17' -- '2003-01-18' -- '2003-01-19' -- '2003-01-20' -- '2003-01-21' -- '2003-01-22' -- '2003-01-23' -- '2003-01-24' -- '2003-01-25' -- '2003-01-26' -- '2003-01-27' -- '2003-01-28' -- '2003-01-29' -- '2003-01-30' -- '2003-01-31' -- '2003-02-01' -- '2003-02-02' -- '2003-02-03' -- '2003-02-04' -- '2003-02-05' -- '2003-02-06' -- '2003-02-07' -- '2003-02-08' -- '2003-02-09' -- '2003-02-10' -- '2003-02-11' -- '2003-02-12' -- '2003-02-13' -- '2003-02-14' -- '2003-02-15' -- '2003-02-16' -- '2003-02-17' -- '2003-02-18' -- '2003-02-19' -- '2003-02-20' -- '2003-02-21' -- '2003-02-22' -- '2003-02-23' -- '2003-02-24' -- '2003-02-25' -- '2003-02-26' -- '2003-02-27' -- '2003-02-28' -- '2003-03-01' -- '2003-03-02' -- '2003-03-03' -- '2003-03-04' -- '2003-03-05' -- '2003-03-06' -- '2003-03-07' -- '2003-03-08' -- '2003-03-09' -- '2003-03-10' -- '2003-03-11' -- '2003-03-12' -- '2003-03-13' -- '2003-03-14' -- '2003-03-15' -- '2003-03-16' -- '2003-03-17' -- '2003-03-18' -- '2003-03-19' -- '2003-03-20' -- '2003-03-21' -- '2003-03-22' -- '2003-03-23' -- '2003-03-24' -- '2003-03-25' -- '2003-03-26' -- '2003-03-27' -- '2003-03-28' -- '2003-03-29' -- '2003-03-30' -- '2003-03-31' -- '2003-04-01' -- '2003-04-02' -- '2003-04-03' -- '2003-04-04' -- '2003-04-05' -- '2003-04-06' -- '2003-04-07' -- '2003-04-08' -- '2003-04-09' -- '2003-04-10' -- '2003-04-11' -- '2003-04-12' -- '2003-04-13' -- '2003-04-14' -- '2003-04-15' -- '2003-04-16' -- '2003-04-17' -- '2003-04-18' -- '2003-04-19' -- '2003-04-20' -- '2003-04-21' -- '2003-04-22' -- '2003-04-23' -- '2003-04-24' -- '2003-04-25' -- '2003-04-26' -- '2003-04-27' -- '2003-04-28' -- '2003-04-29' -- '2003-04-30' -- '2003-05-01' -- '2003-05-02' -- '2003-05-03' -- '2003-05-04' -- '2003-05-05' -- '2003-05-06' -- '2003-05-07' -- '2003-05-08' -- '2003-05-09' -- '2003-05-10' -- '2003-05-11' -- '2003-05-12' -- '2003-05-13' -- '2003-05-14' -- '2003-05-15' -- '2003-05-16' -- '2003-05-17' -- '2003-05-18' -- '2003-05-19' -- '2003-05-20' -- '2003-05-21' -- '2003-05-22' -- '2003-05-23' -- '2003-05-24' -- '2003-05-25' -- '2003-05-26' -- '2003-05-27' -- '2003-05-28' -- '2003-05-29' -- '2003-05-30' -- '2003-05-31' -- '2003-06-01' -- '2003-06-02' -- '2003-06-03' -- '2003-06-04' -- '2003-06-05' -- '2003-06-06' -- '2003-06-07' -- '2003-06-08' -- '2003-06-09' -- '2003-06-10' -- '2003-06-11' -- '2003-06-12' -- '2003-06-13' -- '2003-06-14' -- '2003-06-15' -- '2003-06-16' -- '2003-06-17' -- '2003-06-18' -- '2003-06-19' -- '2003-06-20' -- '2003-06-21' -- '2003-06-22' -- '2003-06-23' -- '2003-06-24' -- '2003-06-25' -- '2003-06-26' -- '2003-06-27' -- '2003-06-28' -- '2003-06-29' -- '2003-06-30' -- '2003-07-01' -- '2003-07-02' -- '2003-07-03' -- '2003-07-04' -- '2003-07-05' -- '2003-07-06' -- '2003-07-07' -- '2003-07-08' -- '2003-07-09' -- '2003-07-10' -- '2003-07-11' -- '2003-07-12' -- '2003-07-13' -- '2003-07-14' -- '2003-07-15' -- '2003-07-16' -- '2003-07-17' -- '2003-07-18' -- '2003-07-19' -- '2003-07-20' -- '2003-07-21' -- '2003-07-22' -- '2003-07-23' -- '2003-07-24' -- '2003-07-25' -- '2003-07-26' -- '2003-07-27' -- '2003-07-28' -- '2003-07-29' -- '2003-07-30' -- '2003-07-31' -- '2003-08-01' -- '2003-08-02' -- '2003-08-03' -- '2003-08-04' -- '2003-08-05' -- '2003-08-06' -- '2003-08-07' -- '2003-08-08' -- '2003-08-09' -- '2003-08-10' -- '2003-08-11' -- '2003-08-12' -- '2003-08-13' -- '2003-08-14' -- '2003-08-15' -- '2003-08-16' -- '2003-08-17' -- '2003-08-18' -- '2003-08-19' -- '2003-08-20' -- '2003-08-21' -- '2003-08-22' -- '2003-08-23' -- '2003-08-24' -- '2003-08-25' -- '2003-08-26' -- '2003-08-27' -- '2003-08-28' -- '2003-08-29' -- '2003-08-30' -- '2003-08-31' -- '2003-09-01' -- '2003-09-02' -- '2003-09-03' -- '2003-09-04' -- '2003-09-05' -- '2003-09-06' -- '2003-09-07' -- '2003-09-08' -- '2003-09-09' -- '2003-09-10' -- '2003-09-11' -- '2003-09-12' -- '2003-09-13' -- '2003-09-14' -- '2003-09-15' -- '2003-09-16' -- '2003-09-17' -- '2003-09-18' -- '2003-09-19' -- '2003-09-20' -- '2003-09-21' -- '2003-09-22' -- '2003-09-23' -- '2003-09-24' -- '2003-09-25' -- '2003-09-26' -- '2003-09-27' -- '2003-09-28' -- '2003-09-29' -- '2003-09-30' -- '2003-10-01' -- '2003-10-02' -- '2003-10-03' -- '2003-10-04' -- '2003-10-05' -- '2003-10-06' -- '2003-10-07' -- '2003-10-08' -- '2003-10-09' -- '2003-10-10' -- '2003-10-11' -- '2003-10-12' -- '2003-10-13' -- '2003-10-14' -- '2003-10-15' -- '2003-10-16' -- '2003-10-17' -- '2003-10-18' -- '2003-10-19' -- '2003-10-20' -- '2003-10-21' -- '2003-10-22' -- '2003-10-23' -- '2003-10-24' -- '2003-10-25' -- '2003-10-26' -- '2003-10-27' -- '2003-10-28' -- '2003-10-29' -- '2003-10-30' -- '2003-10-31' -- '2003-11-01' -- '2003-11-02' -- '2003-11-03' -- '2003-11-04' -- '2003-11-05' -- '2003-11-06' -- '2003-11-07' -- '2003-11-08' -- '2003-11-09' -- '2003-11-10' -- '2003-11-11' -- '2003-11-12' -- '2003-11-13' -- '2003-11-14' -- '2003-11-15' -- '2003-11-16' -- '2003-11-17' -- '2003-11-18' -- '2003-11-19' -- '2003-11-20' -- '2003-11-21' -- '2003-11-22' -- '2003-11-23' -- '2003-11-24' -- '2003-11-25' -- '2003-11-26' -- '2003-11-27' -- '2003-11-28' -- '2003-11-29' -- '2003-11-30' -- '2003-12-01' -- '2003-12-02' -- '2003-12-03' -- '2003-12-04' -- '2003-12-05' -- '2003-12-06' -- '2003-12-07' -- '2003-12-08' -- '2003-12-09' -- '2003-12-10' -- '2003-12-11' -- '2003-12-12' -- '2003-12-13' -- '2003-12-14' -- '2003-12-15' -- '2003-12-16' -- '2003-12-17' -- '2003-12-18' -- '2003-12-19' -- '2003-12-20' -- '2003-12-21' -- '2003-12-22' -- '2003-12-23' -- '2003-12-24' -- '2003-12-25' -- '2003-12-26' -- '2003-12-27' -- '2003-12-28' -- '2003-12-29' -- '2003-12-30' -- '2003-12-31' -- '2004-01-01' -- '2004-01-02' -- '2004-01-03' -- '2004-01-04' -- '2004-01-05' -- '2004-01-06' -- '2004-01-07' -- '2004-01-08' -- '2004-01-09' -- '2004-01-10' -- '2004-01-11' -- '2004-01-12' -- '2004-01-13' -- '2004-01-14' -- '2004-01-15' -- '2004-01-16' -- '2004-01-17' -- '2004-01-18' -- '2004-01-19' -- '2004-01-20' -- '2004-01-21' -- '2004-01-22' -- '2004-01-23' -- '2004-01-24' -- '2004-01-25' -- '2004-01-26' -- '2004-01-27' -- '2004-01-28' -- '2004-01-29' -- '2004-01-30' -- '2004-01-31' -- '2004-02-01' -- '2004-02-02' -- '2004-02-03' -- '2004-02-04' -- '2004-02-05' -- '2004-02-06' -- '2004-02-07' -- '2004-02-08' -- '2004-02-09' -- '2004-02-10' -- '2004-02-11' -- '2004-02-12' -- '2004-02-13' -- '2004-02-14' -- '2004-02-15' -- '2004-02-16' -- '2004-02-17' -- '2004-02-18' -- '2004-02-19' -- '2004-02-20' -- '2004-02-21' -- '2004-02-22' -- '2004-02-23' -- '2004-02-24' -- '2004-02-25' -- '2004-02-26' -- '2004-02-27' -- '2004-02-28' -- '2004-02-29' -- '2004-03-01' -- '2004-03-02' -- '2004-03-03' -- '2004-03-04' -- '2004-03-05' -- '2004-03-06' -- '2004-03-07' -- '2004-03-08' -- '2004-03-09' -- '2004-03-10' -- '2004-03-11' -- '2004-03-12' -- '2004-03-13' -- '2004-03-14' -- '2004-03-15' -- '2004-03-16' -- '2004-03-17' -- '2004-03-18' -- '2004-03-19' -- '2004-03-20' -- '2004-03-21' -- '2004-03-22' -- '2004-03-23' -- '2004-03-24' -- '2004-03-25' -- '2004-03-26' -- '2004-03-27' -- '2004-03-28' -- '2004-03-29' -- '2004-03-30' -- '2004-03-31' -- '2004-04-01' -- '2004-04-02' -- '2004-04-03' -- '2004-04-04' -- '2004-04-05' -- '2004-04-06' -- '2004-04-07' -- '2004-04-08' -- '2004-04-09' -- '2004-04-10' -- '2004-04-11' -- '2004-04-12' -- '2004-04-13' -- '2004-04-14' -- '2004-04-15' -- '2004-04-16' -- '2004-04-17' -- '2004-04-18' -- '2004-04-19' -- '2004-04-20' -- '2004-04-21' -- '2004-04-22' -- '2004-04-23' -- '2004-04-24' -- '2004-04-25' -- '2004-04-26' -- '2004-04-27' -- '2004-04-28' -- '2004-04-29' -- '2004-04-30' -- '2004-05-01' -- '2004-05-02' -- '2004-05-03' -- '2004-05-04' -- '2004-05-05' -- '2004-05-06' -- '2004-05-07' -- '2004-05-08' -- '2004-05-09' -- '2004-05-10' -- '2004-05-11' -- '2004-05-12' -- '2004-05-13' -- '2004-05-14' -- '2004-05-15' -- '2004-05-16' -- '2004-05-17' -- '2004-05-18' -- '2004-05-19' -- '2004-05-20' -- '2004-05-21' -- '2004-05-22' -- '2004-05-23' -- '2004-05-24' -- '2004-05-25' -- '2004-05-26' -- '2004-05-27' -- '2004-05-28' -- '2004-05-29' -- '2004-05-30' -- '2004-05-31' -- '2004-06-01' -- '2004-06-02' -- '2004-06-03' -- '2004-06-04' -- '2004-06-05' -- '2004-06-06' -- '2004-06-07' -- '2004-06-08' -- '2004-06-09' -- '2004-06-10' -- '2004-06-11' -- '2004-06-12' -- '2004-06-13' -- '2004-06-14' -- '2004-06-15' -- '2004-06-16' -- '2004-06-17' -- '2004-06-18' -- '2004-06-19' -- '2004-06-20' -- '2004-06-21' -- '2004-06-22' -- '2004-06-23' -- '2004-06-24' -- '2004-06-25' -- '2004-06-26' -- '2004-06-27' -- '2004-06-28' -- '2004-06-29' -- '2004-06-30' -- '2004-07-01' -- '2004-07-02' -- '2004-07-03' -- '2004-07-04' -- '2004-07-05' -- '2004-07-06' -- '2004-07-07' -- '2004-07-08' -- '2004-07-09' -- '2004-07-10' -- '2004-07-11' -- '2004-07-12' -- '2004-07-13' -- '2004-07-14' -- '2004-07-15' -- '2004-07-16' -- '2004-07-17' -- '2004-07-18' -- '2004-07-19' -- '2004-07-20' -- '2004-07-21' -- '2004-07-22' -- '2004-07-23' -- '2004-07-24' -- '2004-07-25' -- '2004-07-26' -- '2004-07-27' -- '2004-07-28' -- '2004-07-29' -- '2004-07-30' -- '2004-07-31' -- '2004-08-01' -- '2004-08-02' -- '2004-08-03' -- '2004-08-04' -- '2004-08-05' -- '2004-08-06' -- '2004-08-07' -- '2004-08-08' -- '2004-08-09' -- '2004-08-10' -- '2004-08-11' -- '2004-08-12' -- '2004-08-13' -- '2004-08-14' -- '2004-08-15' -- '2004-08-16' -- '2004-08-17' -- '2004-08-18' -- '2004-08-19' -- '2004-08-20' -- '2004-08-21' -- '2004-08-22' -- '2004-08-23' -- '2004-08-24' -- '2004-08-25' -- '2004-08-26' -- '2004-08-27' -- '2004-08-28' -- '2004-08-29' -- '2004-08-30' -- '2004-08-31' -- '2004-09-01' -- '2004-09-02' -- '2004-09-03' -- '2004-09-04' -- '2004-09-05' -- '2004-09-06' -- '2004-09-07' -- '2004-09-08' -- '2004-09-09' -- '2004-09-10' -- '2004-09-11' -- '2004-09-12' -- '2004-09-13' -- '2004-09-14' -- '2004-09-15' -- '2004-09-16' -- '2004-09-17' -- '2004-09-18' -- '2004-09-19' -- '2004-09-20' -- '2004-09-21' -- '2004-09-22' -- '2004-09-23' -- '2004-09-24' -- '2004-09-25' -- '2004-09-26' -- '2004-09-27' -- '2004-09-28' -- '2004-09-29' -- '2004-09-30' -- '2004-10-01' -- '2004-10-02' -- '2004-10-03' -- '2004-10-04' -- '2004-10-05' -- '2004-10-06' -- '2004-10-07' -- '2004-10-08' -- '2004-10-09' -- '2004-10-10' -- '2004-10-11' -- '2004-10-12' -- '2004-10-13' -- '2004-10-14' -- '2004-10-15' -- '2004-10-16' -- '2004-10-17' -- '2004-10-18' -- '2004-10-19' -- '2004-10-20' -- '2004-10-21' -- '2004-10-22' -- '2004-10-23' -- '2004-10-24' -- '2004-10-25' -- '2004-10-26' -- '2004-10-27' -- '2004-10-28' -- '2004-10-29' -- '2004-10-30' -- '2004-10-31' -- '2004-11-01' -- '2004-11-02' -- '2004-11-03' -- '2004-11-04' -- '2004-11-05' -- '2004-11-06' -- '2004-11-07' -- '2004-11-08' -- '2004-11-09' -- '2004-11-10' -- '2004-11-11' -- '2004-11-12' -- '2004-11-13' -- '2004-11-14' -- '2004-11-15' -- '2004-11-16' -- '2004-11-17' -- '2004-11-18' -- '2004-11-19' -- '2004-11-20' -- '2004-11-21' -- '2004-11-22' -- '2004-11-23' -- '2004-11-24' -- '2004-11-25' -- '2004-11-26' -- '2004-11-27' -- '2004-11-28' -- '2004-11-29' -- '2004-11-30' -- '2004-12-01' -- '2004-12-02' -- '2004-12-03' -- '2004-12-04' -- '2004-12-05' -- '2004-12-06' -- '2004-12-07' -- '2004-12-08' -- '2004-12-09' -- '2004-12-10' -- '2004-12-11' -- '2004-12-12' -- '2004-12-13' -- '2004-12-14' -- '2004-12-15' -- '2004-12-16' -- '2004-12-17' -- '2004-12-18' -- '2004-12-19' -- '2004-12-20' -- '2004-12-21' -- '2004-12-22' -- '2004-12-23' -- '2004-12-24' -- '2004-12-25' -- '2004-12-26' -- '2004-12-27' -- '2004-12-28' -- '2004-12-29' -- '2004-12-30' -- '2004-12-31' -- '2005-01-01' -- '2005-01-02' -- '2005-01-03' -- '2005-01-04' -- '2005-01-05' -- '2005-01-06' -- '2005-01-07' -- '2005-01-08' -- '2005-01-09' -- '2005-01-10' -- '2005-01-11' -- '2005-01-12' -- '2005-01-13' -- '2005-01-14' -- '2005-01-15' -- '2005-01-16' -- '2005-01-17' -- '2005-01-18' -- '2005-01-19' -- '2005-01-20' -- '2005-01-21' -- '2005-01-22' -- '2005-01-23' -- '2005-01-24' -- '2005-01-25' -- '2005-01-26' -- '2005-01-27' -- '2005-01-28' -- '2005-01-29' -- '2005-01-30' -- '2005-01-31' -- '2005-02-01' -- '2005-02-02' -- '2005-02-03' -- '2005-02-04' -- '2005-02-05' -- '2005-02-06' -- '2005-02-07' -- '2005-02-08' -- '2005-02-09' -- '2005-02-10' -- '2005-02-11' -- '2005-02-12' -- '2005-02-13' -- '2005-02-14' -- '2005-02-15' -- '2005-02-16' -- '2005-02-17' -- '2005-02-18' -- '2005-02-19' -- '2005-02-20' -- '2005-02-21' -- '2005-02-22' -- '2005-02-23' -- '2005-02-24' -- '2005-02-25' -- '2005-02-26' -- '2005-02-27' -- '2005-02-28' -- '2005-03-01' -- '2005-03-02' -- '2005-03-03' -- '2005-03-04' -- '2005-03-05' -- '2005-03-06' -- '2005-03-07' -- '2005-03-08' -- '2005-03-09' -- '2005-03-10' -- '2005-03-11' -- '2005-03-12' -- '2005-03-13' -- '2005-03-14' -- '2005-03-15' -- '2005-03-16' -- '2005-03-17' -- '2005-03-18' -- '2005-03-19' -- '2005-03-20' -- '2005-03-21' -- '2005-03-22' -- '2005-03-23' -- '2005-03-24' -- '2005-03-25' -- '2005-03-26' -- '2005-03-27' -- '2005-03-28' -- '2005-03-29' -- '2005-03-30' -- '2005-03-31' -- '2005-04-01' -- '2005-04-02' -- '2005-04-03' -- '2005-04-04' -- '2005-04-05' -- '2005-04-06' -- '2005-04-07' -- '2005-04-08' -- '2005-04-09' -- '2005-04-10' -- '2005-04-11' -- '2005-04-12' -- '2005-04-13' -- '2005-04-14' -- '2005-04-15' -- '2005-04-16' -- '2005-04-17' -- '2005-04-18' -- '2005-04-19' -- '2005-04-20' -- '2005-04-21' -- '2005-04-22' -- '2005-04-23' -- '2005-04-24' -- '2005-04-25' -- '2005-04-26' -- '2005-04-27' -- '2005-04-28' -- '2005-04-29' -- '2005-04-30' -- '2005-05-01' -- '2005-05-02' -- '2005-05-03' -- '2005-05-04' -- '2005-05-05' -- '2005-05-06' -- '2005-05-07' -- '2005-05-08' -- '2005-05-09' -- '2005-05-10' -- '2005-05-11' -- '2005-05-12' -- '2005-05-13' -- '2005-05-14' -- '2005-05-15' -- '2005-05-16' -- '2005-05-17' -- '2005-05-18' -- '2005-05-19' -- '2005-05-20' -- '2005-05-21' -- '2005-05-22' -- '2005-05-23' -- '2005-05-24' -- '2005-05-25' -- '2005-05-26' -- '2005-05-27' -- '2005-05-28' -- '2005-05-29' -- '2005-05-30' -- '2005-05-31' -- '2005-06-01' -- '2005-06-02' -- '2005-06-03' -- '2005-06-04' -- '2005-06-05' -- '2005-06-06' -- '2005-06-07' -- '2005-06-08' -- '2005-06-09' -- '2005-06-10' -- '2005-06-11' -- '2005-06-12' -- '2005-06-13' -- '2005-06-14' -- '2005-06-15' -- '2005-06-16' -- '2005-06-17' -- '2005-06-18' -- '2005-06-19' -- '2005-06-20' -- '2005-06-21' -- '2005-06-22' -- '2005-06-23' -- '2005-06-24' -- '2005-06-25' -- '2005-06-26' -- '2005-06-27' -- '2005-06-28' -- '2005-06-29' -- '2005-06-30' -- '2005-07-01' -- '2005-07-02' -- '2005-07-03' -- '2005-07-04' -- '2005-07-05' -- '2005-07-06' -- '2005-07-07' -- '2005-07-08' -- '2005-07-09' -- '2005-07-10' -- '2005-07-11' -- '2005-07-12' -- '2005-07-13' -- '2005-07-14' -- '2005-07-15' -- '2005-07-16' -- '2005-07-17' -- '2005-07-18' -- '2005-07-19' -- '2005-07-20' -- '2005-07-21' -- '2005-07-22' -- '2005-07-23' -- '2005-07-24' -- '2005-07-25' -- '2005-07-26' -- '2005-07-27' -- '2005-07-28' -- '2005-07-29' -- '2005-07-30' -- '2005-07-31' -- '2005-08-01' -- '2005-08-02' -- '2005-08-03' -- '2005-08-04' -- '2005-08-05' -- '2005-08-06' -- '2005-08-07' -- '2005-08-08' -- '2005-08-09' -- '2005-08-10' -- '2005-08-11' -- '2005-08-12' -- '2005-08-13' -- '2005-08-14' -- '2005-08-15' -- '2005-08-16' -- '2005-08-17' -- '2005-08-18' -- '2005-08-19' -- '2005-08-20' -- '2005-08-21' -- '2005-08-22' -- '2005-08-23' -- '2005-08-24' -- '2005-08-25' -- '2005-08-26' -- '2005-08-27' -- '2005-08-28' -- '2005-08-29' -- '2005-08-30' -- '2005-08-31' -- '2005-09-01' -- '2005-09-02' -- '2005-09-03' -- '2005-09-04' -- '2005-09-05' -- '2005-09-06' -- '2005-09-07' -- '2005-09-08' -- '2005-09-09' -- '2005-09-10' -- '2005-09-11' -- '2005-09-12' -- '2005-09-13' -- '2005-09-14' -- '2005-09-15' -- '2005-09-16' -- '2005-09-17' -- '2005-09-18' -- '2005-09-19' -- '2005-09-20' -- '2005-09-21' -- '2005-09-22' -- '2005-09-23' -- '2005-09-24' -- '2005-09-25' -- '2005-09-26' -- '2005-09-27' -- '2005-09-28' -- '2005-09-29' -- '2005-09-30' -- '2005-10-01' -- '2005-10-02' -- '2005-10-03' -- '2005-10-04' -- '2005-10-05' -- '2005-10-06' -- '2005-10-07' -- '2005-10-08' -- '2005-10-09' -- '2005-10-10' -- '2005-10-11' -- '2005-10-12' -- '2005-10-13' -- '2005-10-14' -- '2005-10-15' -- '2005-10-16' -- '2005-10-17' -- '2005-10-18' -- '2005-10-19' -- '2005-10-20' -- '2005-10-21' -- '2005-10-22' -- '2005-10-23' -- '2005-10-24' -- '2005-10-25' -- '2005-10-26' -- '2005-10-27' -- '2005-10-28' -- '2005-10-29' -- '2005-10-30' -- '2005-10-31' -- '2005-11-01' -- '2005-11-02' -- '2005-11-03' -- '2005-11-04' -- '2005-11-05' -- '2005-11-06' -- '2005-11-07' -- '2005-11-08' -- '2005-11-09' -- '2005-11-10' -- '2005-11-11' -- '2005-11-12' -- '2005-11-13' -- '2005-11-14' -- '2005-11-15' -- '2005-11-16' -- '2005-11-17' -- '2005-11-18' -- '2005-11-19' -- '2005-11-20' -- '2005-11-21' -- '2005-11-22' -- '2005-11-23' -- '2005-11-24' -- '2005-11-25' -- '2005-11-26' -- '2005-11-27' -- '2005-11-28' -- '2005-11-29' -- '2005-11-30' -- '2005-12-01' -- '2005-12-02' -- '2005-12-03' -- '2005-12-04' -- '2005-12-05' -- '2005-12-06' -- '2005-12-07' -- '2005-12-08' -- '2005-12-09' -- '2005-12-10' -- '2005-12-11' -- '2005-12-12' -- '2005-12-13' -- '2005-12-14' -- '2005-12-15' -- '2005-12-16' -- '2005-12-17' -- '2005-12-18' -- '2005-12-19' -- '2005-12-20' -- '2005-12-21' -- '2005-12-22' -- '2005-12-23' -- '2005-12-24' -- '2005-12-25' -- '2005-12-26' -- '2005-12-27' -- '2005-12-28' -- '2005-12-29' -- '2005-12-30' -- '2005-12-31' -- '2006-01-01' -- '2006-01-02' -- '2006-01-03' -- '2006-01-04' -- '2006-01-05' -- '2006-01-06' -- '2006-01-07' -- '2006-01-08' -- '2006-01-09' -- '2006-01-10' -- '2006-01-11' -- '2006-01-12' -- '2006-01-13' -- '2006-01-14' -- '2006-01-15' -- '2006-01-16' -- '2006-01-17' -- '2006-01-18' -- '2006-01-19' -- '2006-01-20' -- '2006-01-21' -- '2006-01-22' -- '2006-01-23' -- '2006-01-24' -- '2006-01-25' -- '2006-01-26' -- '2006-01-27' -- '2006-01-28' -- '2006-01-29' -- '2006-01-30' -- '2006-01-31' -- '2006-02-01' -- '2006-02-02' -- '2006-02-03' -- '2006-02-04' -- '2006-02-05' -- '2006-02-06' -- '2006-02-07' -- '2006-02-08' -- '2006-02-09' -- '2006-02-10' -- '2006-02-11' -- '2006-02-12' -- '2006-02-13' -- '2006-02-14' -- '2006-02-15' -- '2006-02-16' -- '2006-02-17' -- '2006-02-18' -- '2006-02-19' -- '2006-02-20' -- '2006-02-21' -- '2006-02-22' -- '2006-02-23' -- '2006-02-24' -- '2006-02-25' -- '2006-02-26' -- '2006-02-27' -- '2006-02-28' -- '2006-03-01' -- '2006-03-02' -- '2006-03-03' -- '2006-03-04' -- '2006-03-05' -- '2006-03-06' -- '2006-03-07' -- '2006-03-08' -- '2006-03-09' -- '2006-03-10' -- '2006-03-11' -- '2006-03-12' -- '2006-03-13' -- '2006-03-14' -- '2006-03-15' -- '2006-03-16' -- '2006-03-17' -- '2006-03-18' -- '2006-03-19' -- '2006-03-20' -- '2006-03-21' -- '2006-03-22' -- '2006-03-23' -- '2006-03-24' -- '2006-03-25' -- '2006-03-26' -- '2006-03-27' -- '2006-03-28' -- '2006-03-29' -- '2006-03-30' -- '2006-03-31' -- '2006-04-01' -- '2006-04-02' -- '2006-04-03' -- '2006-04-04' -- '2006-04-05' -- '2006-04-06' -- '2006-04-07' -- '2006-04-08' -- '2006-04-09' -- '2006-04-10' -- '2006-04-11' -- '2006-04-12' -- '2006-04-13' -- '2006-04-14' -- '2006-04-15' -- '2006-04-16' -- '2006-04-17' -- '2006-04-18' -- '2006-04-19' -- '2006-04-20' -- '2006-04-21' -- '2006-04-22' -- '2006-04-23' -- '2006-04-24' -- '2006-04-25' -- '2006-04-26' -- '2006-04-27' -- '2006-04-28' -- '2006-04-29' -- '2006-04-30' -- '2006-05-01' -- '2006-05-02' -- '2006-05-03' -- '2006-05-04' -- '2006-05-05' -- '2006-05-06' -- '2006-05-07' -- '2006-05-08' -- '2006-05-09' -- '2006-05-10' -- '2006-05-11' -- '2006-05-12' -- '2006-05-13' -- '2006-05-14' -- '2006-05-15' -- '2006-05-16' -- '2006-05-17' -- '2006-05-18' -- '2006-05-19' -- '2006-05-20' -- '2006-05-21' -- '2006-05-22' -- '2006-05-23' -- '2006-05-24' -- '2006-05-25' -- '2006-05-26' -- '2006-05-27' -- '2006-05-28' -- '2006-05-29' -- '2006-05-30' -- '2006-05-31' -- '2006-06-01' -- '2006-06-02' -- '2006-06-03' -- '2006-06-04' -- '2006-06-05' -- '2006-06-06' -- '2006-06-07' -- '2006-06-08' -- '2006-06-09' -- '2006-06-10' -- '2006-06-11' -- '2006-06-12' -- '2006-06-13' -- '2006-06-14' -- '2006-06-15' -- '2006-06-16' -- '2006-06-17' -- '2006-06-18' -- '2006-06-19' -- '2006-06-20' -- '2006-06-21' -- '2006-06-22' -- '2006-06-23' -- '2006-06-24' -- '2006-06-25' -- '2006-06-26' -- '2006-06-27' -- '2006-06-28' -- '2006-06-29' -- '2006-06-30' -- '2006-07-01' -- '2006-07-02' -- '2006-07-03' -- '2006-07-04' -- '2006-07-05' -- '2006-07-06' -- '2006-07-07' -- '2006-07-08' -- '2006-07-09' -- '2006-07-10' -- '2006-07-11' -- '2006-07-12' -- '2006-07-13' -- '2006-07-14' -- '2006-07-15' -- '2006-07-16' -- '2006-07-17' -- '2006-07-18' -- '2006-07-19' -- '2006-07-20' -- '2006-07-21' -- '2006-07-22' -- '2006-07-23' -- '2006-07-24' -- '2006-07-25' -- '2006-07-26' -- '2006-07-27' -- '2006-07-28' -- '2006-07-29' -- '2006-07-30' -- '2006-07-31' -- '2006-08-01' -- '2006-08-02' -- '2006-08-03' -- '2006-08-04' -- '2006-08-05' -- '2006-08-06' -- '2006-08-07' -- '2006-08-08' -- '2006-08-09' -- '2006-08-10' -- '2006-08-11' -- '2006-08-12' -- '2006-08-13' -- '2006-08-14' -- '2006-08-15' -- '2006-08-16' -- '2006-08-17' -- '2006-08-18' -- '2006-08-19' -- '2006-08-20' -- '2006-08-21' -- '2006-08-22' -- '2006-08-23' -- '2006-08-24' -- '2006-08-25' -- '2006-08-26' -- '2006-08-27' -- '2006-08-28' -- '2006-08-29' -- '2006-08-30' -- '2006-08-31' -- '2006-09-01' -- '2006-09-02' -- '2006-09-03' -- '2006-09-04' -- '2006-09-05' -- '2006-09-06' -- '2006-09-07' -- '2006-09-08' -- '2006-09-09' -- '2006-09-10' -- '2006-09-11' -- '2006-09-12' -- '2006-09-13' -- '2006-09-14' -- '2006-09-15' -- '2006-09-16' -- '2006-09-17' -- '2006-09-18' -- '2006-09-19' -- '2006-09-20' -- '2006-09-21' -- '2006-09-22' -- '2006-09-23' -- '2006-09-24' -- '2006-09-25' -- '2006-09-26' -- '2006-09-27' -- '2006-09-28' -- '2006-09-29' -- '2006-09-30' -- '2006-10-01' -- '2006-10-02' -- '2006-10-03' -- '2006-10-04' -- '2006-10-05' -- '2006-10-06' -- '2006-10-07' -- '2006-10-08' -- '2006-10-09' -- '2006-10-10' -- '2006-10-11' -- '2006-10-12' -- '2006-10-13' -- '2006-10-14' -- '2006-10-15' -- '2006-10-16' -- '2006-10-17' -- '2006-10-18' -- '2006-10-19' -- '2006-10-20' -- '2006-10-21' -- '2006-10-22' -- '2006-10-23' -- '2006-10-24' -- '2006-10-25' -- '2006-10-26' -- '2006-10-27' -- '2006-10-28' -- '2006-10-29' -- '2006-10-30' -- '2006-10-31' -- '2006-11-01' -- '2006-11-02' -- '2006-11-03' -- '2006-11-04' -- '2006-11-05' -- '2006-11-06' -- '2006-11-07' -- '2006-11-08' -- '2006-11-09' -- '2006-11-10' -- '2006-11-11' -- '2006-11-12' -- '2006-11-13' -- '2006-11-14' -- '2006-11-15' -- '2006-11-16' -- '2006-11-17' -- '2006-11-18' -- '2006-11-19' -- '2006-11-20' -- '2006-11-21' -- '2006-11-22' -- '2006-11-23' -- '2006-11-24' -- '2006-11-25' -- '2006-11-26' -- '2006-11-27' -- '2006-11-28' -- '2006-11-29' -- '2006-11-30' -- '2006-12-01' -- '2006-12-02' -- '2006-12-03' -- '2006-12-04' -- '2006-12-05' -- '2006-12-06' -- '2006-12-07' -- '2006-12-08' -- '2006-12-09' -- '2006-12-10' -- '2006-12-11' -- '2006-12-12' -- '2006-12-13' -- '2006-12-14' -- '2006-12-15' -- '2006-12-16' -- '2006-12-17' -- '2006-12-18' -- '2006-12-19' -- '2006-12-20' -- '2006-12-21' -- '2006-12-22' -- '2006-12-23' -- '2006-12-24' -- '2006-12-25' -- '2006-12-26' -- '2006-12-27' -- '2006-12-28' -- '2006-12-29' -- '2006-12-30' -- '2006-12-31' -- '2007-01-01' -- '2007-01-02' -- '2007-01-03' -- '2007-01-04' -- '2007-01-05' -- '2007-01-06' -- '2007-01-07' -- '2007-01-08' -- '2007-01-09' -- '2007-01-10' -- '2007-01-11' -- '2007-01-12' -- '2007-01-13' -- '2007-01-14' -- '2007-01-15' -- '2007-01-16' -- '2007-01-17' -- '2007-01-18' -- '2007-01-19' -- '2007-01-20' -- '2007-01-21' -- '2007-01-22' -- '2007-01-23' -- '2007-01-24' -- '2007-01-25' -- '2007-01-26' -- '2007-01-27' -- '2007-01-28' -- '2007-01-29' -- '2007-01-30' -- '2007-01-31' -- '2007-02-01' -- '2007-02-02' -- '2007-02-03' -- '2007-02-04' -- '2007-02-05' -- '2007-02-06' -- '2007-02-07' -- '2007-02-08' -- '2007-02-09' -- '2007-02-10' -- '2007-02-11' -- '2007-02-12' -- '2007-02-13' -- '2007-02-14' -- '2007-02-15' -- '2007-02-16' -- '2007-02-17' -- '2007-02-18' -- '2007-02-19' -- '2007-02-20' -- '2007-02-21' -- '2007-02-22' -- '2007-02-23' -- '2007-02-24' -- '2007-02-25' -- '2007-02-26' -- '2007-02-27' -- '2007-02-28' -- '2007-03-01' -- '2007-03-02' -- '2007-03-03' -- '2007-03-04' -- '2007-03-05' -- '2007-03-06' -- '2007-03-07' -- '2007-03-08' -- '2007-03-09' -- '2007-03-10' -- '2007-03-11' -- '2007-03-12' -- '2007-03-13' -- '2007-03-14' -- '2007-03-15' -- '2007-03-16' -- '2007-03-17' -- '2007-03-18' -- '2007-03-19' -- '2007-03-20' -- '2007-03-21' -- '2007-03-22' -- '2007-03-23' -- '2007-03-24' -- '2007-03-25' -- '2007-03-26' -- '2007-03-27' -- '2007-03-28' -- '2007-03-29' -- '2007-03-30' -- '2007-03-31' -- '2007-04-01' -- '2007-04-02' -- '2007-04-03' -- '2007-04-04' -- '2007-04-05' -- '2007-04-06' -- '2007-04-07' -- '2007-04-08' -- '2007-04-09' -- '2007-04-10' -- '2007-04-11' -- '2007-04-12' -- '2007-04-13' -- '2007-04-14' -- '2007-04-15' -- '2007-04-16' -- '2007-04-17' -- '2007-04-18' -- '2007-04-19' -- '2007-04-20' -- '2007-04-21' -- '2007-04-22' -- '2007-04-23' -- '2007-04-24' -- '2007-04-25' -- '2007-04-26' -- '2007-04-27' -- '2007-04-28' -- '2007-04-29' -- '2007-04-30' -- '2007-05-01' -- '2007-05-02' -- '2007-05-03' -- '2007-05-04' -- '2007-05-05' -- '2007-05-06' -- '2007-05-07' -- '2007-05-08' -- '2007-05-09' -- '2007-05-10' -- '2007-05-11' -- '2007-05-12' -- '2007-05-13' -- '2007-05-14' -- '2007-05-15' -- '2007-05-16' -- '2007-05-17' -- '2007-05-18' -- '2007-05-19' -- '2007-05-20' -- '2007-05-21' -- '2007-05-22' -- '2007-05-23' -- '2007-05-24' -- '2007-05-25' -- '2007-05-26' -- '2007-05-27' -- '2007-05-28' -- '2007-05-29' -- '2007-05-30' -- '2007-05-31' -- '2007-06-01' -- '2007-06-02' -- '2007-06-03' -- '2007-06-04' -- '2007-06-05' -- '2007-06-06' -- '2007-06-07' -- '2007-06-08' -- '2007-06-09' -- '2007-06-10' -- '2007-06-11' -- '2007-06-12' -- '2007-06-13' -- '2007-06-14' -- '2007-06-15' -- '2007-06-16' -- '2007-06-17' -- '2007-06-18' -- '2007-06-19' -- '2007-06-20' -- '2007-06-21' -- '2007-06-22' -- '2007-06-23' -- '2007-06-24' -- '2007-06-25' -- '2007-06-26' -- '2007-06-27' -- '2007-06-28' -- '2007-06-29' -- '2007-06-30' -- '2007-07-01' -- '2007-07-02' -- '2007-07-03' -- '2007-07-04' -- '2007-07-05' -- '2007-07-06' -- '2007-07-07' -- '2007-07-08' -- '2007-07-09' -- '2007-07-10' -- '2007-07-11' -- '2007-07-12' -- '2007-07-13' -- '2007-07-14' -- '2007-07-15' -- '2007-07-16' -- '2007-07-17' -- '2007-07-18' -- '2007-07-19' -- '2007-07-20' -- '2007-07-21' -- '2007-07-22' -- '2007-07-23' -- '2007-07-24' -- '2007-07-25' -- '2007-07-26' -- '2007-07-27' -- '2007-07-28' -- '2007-07-29' -- '2007-07-30' -- '2007-07-31' -- '2007-08-01' -- '2007-08-02' -- '2007-08-03' -- '2007-08-04' -- '2007-08-05' -- '2007-08-06' -- '2007-08-07' -- '2007-08-08' -- '2007-08-09' -- '2007-08-10' -- '2007-08-11' -- '2007-08-12' -- '2007-08-13' -- '2007-08-14' -- '2007-08-15' -- '2007-08-16' -- '2007-08-17' -- '2007-08-18' -- '2007-08-19' -- '2007-08-20' -- '2007-08-21' -- '2007-08-22' -- '2007-08-23' -- '2007-08-24' -- '2007-08-25' -- '2007-08-26' -- '2007-08-27' -- '2007-08-28' -- '2007-08-29' -- '2007-08-30' -- '2007-08-31' -- '2007-09-01' -- '2007-09-02' -- '2007-09-03' -- '2007-09-04' -- '2007-09-05' -- '2007-09-06' -- '2007-09-07' -- '2007-09-08' -- '2007-09-09' -- '2007-09-10' -- '2007-09-11' -- '2007-09-12' -- '2007-09-13' -- '2007-09-14' -- '2007-09-15' -- '2007-09-16' -- '2007-09-17' -- '2007-09-18' -- '2007-09-19' -- '2007-09-20' -- '2007-09-21' -- '2007-09-22' -- '2007-09-23' -- '2007-09-24' -- '2007-09-25' -- '2007-09-26' -- '2007-09-27' -- '2007-09-28' -- '2007-09-29' -- '2007-09-30' -- '2007-10-01' -- '2007-10-02' -- '2007-10-03' -- '2007-10-04' -- '2007-10-05' -- '2007-10-06' -- '2007-10-07' -- '2007-10-08' -- '2007-10-09' -- '2007-10-10' -- '2007-10-11' -- '2007-10-12' -- '2007-10-13' -- '2007-10-14' -- '2007-10-15' -- '2007-10-16' -- '2007-10-17' -- '2007-10-18' -- '2007-10-19' -- '2007-10-20' -- '2007-10-21' -- '2007-10-22' -- '2007-10-23' -- '2007-10-24' -- '2007-10-25' -- '2007-10-26' -- '2007-10-27' -- '2007-10-28' -- '2007-10-29' -- '2007-10-30' -- '2007-10-31' -- '2007-11-01' -- '2007-11-02' -- '2007-11-03' -- '2007-11-04' -- '2007-11-05' -- '2007-11-06' -- '2007-11-07' -- '2007-11-08' -- '2007-11-09' -- '2007-11-10' -- '2007-11-11' -- '2007-11-12' -- '2007-11-13' -- '2007-11-14' -- '2007-11-15' -- '2007-11-16' -- '2007-11-17' -- '2007-11-18' -- '2007-11-19' -- '2007-11-20' -- '2007-11-21' -- '2007-11-22' -- '2007-11-23' -- '2007-11-24' -- '2007-11-25' -- '2007-11-26' -- '2007-11-27' -- '2007-11-28' -- '2007-11-29' -- '2007-11-30' -- '2007-12-01' -- '2007-12-02' -- '2007-12-03' -- '2007-12-04' -- '2007-12-05' -- '2007-12-06' -- '2007-12-07' -- '2007-12-08' -- '2007-12-09' -- '2007-12-10' -- '2007-12-11' -- '2007-12-12' -- '2007-12-13' -- '2007-12-14' -- '2007-12-15' -- '2007-12-16' -- '2007-12-17' -- '2007-12-18' -- '2007-12-19' -- '2007-12-20' -- '2007-12-21' -- '2007-12-22' -- '2007-12-23' -- '2007-12-24' -- '2007-12-25' -- '2007-12-26' -- '2007-12-27' -- '2007-12-28' -- '2007-12-29' -- '2007-12-30' -- '2007-12-31' -- '2008-01-01' -- '2008-01-02' -- '2008-01-03' -- '2008-01-04' -- '2008-01-05' -- '2008-01-06' -- '2008-01-07' -- '2008-01-08' -- '2008-01-09' -- '2008-01-10' -- '2008-01-11' -- '2008-01-12' -- '2008-01-13' -- '2008-01-14' -- '2008-01-15' -- '2008-01-16' -- '2008-01-17' -- '2008-01-18' -- '2008-01-19' -- '2008-01-20' -- '2008-01-21' -- '2008-01-22' -- '2008-01-23' -- '2008-01-24' -- '2008-01-25' -- '2008-01-26' -- '2008-01-27' -- '2008-01-28' -- '2008-01-29' -- '2008-01-30' -- '2008-01-31' -- '2008-02-01' -- '2008-02-02' -- '2008-02-03' -- '2008-02-04' -- '2008-02-05' -- '2008-02-06' -- '2008-02-07' -- '2008-02-08' -- '2008-02-09' -- '2008-02-10' -- '2008-02-11' -- '2008-02-12' -- '2008-02-13' -- '2008-02-14' -- '2008-02-15' -- '2008-02-16' -- '2008-02-17' -- '2008-02-18' -- '2008-02-19' -- '2008-02-20' -- '2008-02-21' -- '2008-02-22' -- '2008-02-23' -- '2008-02-24' -- '2008-02-25' -- '2008-02-26' -- '2008-02-27' -- '2008-02-28' -- '2008-02-29' -- '2008-03-01' -- '2008-03-02' -- '2008-03-03' -- '2008-03-04' -- '2008-03-05' -- '2008-03-06' -- '2008-03-07' -- '2008-03-08' -- '2008-03-09' -- '2008-03-10' -- '2008-03-11' -- '2008-03-12' -- '2008-03-13' -- '2008-03-14' -- '2008-03-15' -- '2008-03-16' -- '2008-03-17' -- '2008-03-18' -- '2008-03-19' -- '2008-03-20' -- '2008-03-21' -- '2008-03-22' -- '2008-03-23' -- '2008-03-24' -- '2008-03-25' -- '2008-03-26' -- '2008-03-27' -- '2008-03-28' -- '2008-03-29' -- '2008-03-30' -- '2008-03-31' -- '2008-04-01' -- '2008-04-02' -- '2008-04-03' -- '2008-04-04' -- '2008-04-05' -- '2008-04-06' -- '2008-04-07' -- '2008-04-08' -- '2008-04-09' -- '2008-04-10' -- '2008-04-11' -- '2008-04-12' -- '2008-04-13' -- '2008-04-14' -- '2008-04-15' -- '2008-04-16' -- '2008-04-17' -- '2008-04-18' -- '2008-04-19' -- '2008-04-20' -- '2008-04-21' -- '2008-04-22' -- '2008-04-23' -- '2008-04-24' -- '2008-04-25' -- '2008-04-26' -- '2008-04-27' -- '2008-04-28' -- '2008-04-29' -- '2008-04-30' -- '2008-05-01' -- '2008-05-02' -- '2008-05-03' -- '2008-05-04' -- '2008-05-05' -- '2008-05-06' -- '2008-05-07' -- '2008-05-08' -- '2008-05-09' -- '2008-05-10' -- '2008-05-11' -- '2008-05-12' -- '2008-05-13' -- '2008-05-14' -- '2008-05-15' -- '2008-05-16' -- '2008-05-17' -- '2008-05-18' -- '2008-05-19' -- '2008-05-20' -- '2008-05-21' -- '2008-05-22' -- '2008-05-23' -- '2008-05-24' -- '2008-05-25' -- '2008-05-26' -- '2008-05-27' -- '2008-05-28' -- '2008-05-29' -- '2008-05-30' -- '2008-05-31' -- '2008-06-01' -- '2008-06-02' -- '2008-06-03' -- '2008-06-04' -- '2008-06-05' -- '2008-06-06' -- '2008-06-07' -- '2008-06-08' -- '2008-06-09' -- '2008-06-10' -- '2008-06-11' -- '2008-06-12' -- '2008-06-13' -- '2008-06-14' -- '2008-06-15' -- '2008-06-16' -- '2008-06-17' -- '2008-06-18' -- '2008-06-19' -- '2008-06-20' -- '2008-06-21' -- '2008-06-22' -- '2008-06-23' -- '2008-06-24' -- '2008-06-25' -- '2008-06-26' -- '2008-06-27' -- '2008-06-28' -- '2008-06-29' -- '2008-06-30' -- '2008-07-01' -- '2008-07-02' -- '2008-07-03' -- '2008-07-04' -- '2008-07-05' -- '2008-07-06' -- '2008-07-07' -- '2008-07-08' -- '2008-07-09' -- '2008-07-10' -- '2008-07-11' -- '2008-07-12' -- '2008-07-13' -- '2008-07-14' -- '2008-07-15' -- '2008-07-16' -- '2008-07-17' -- '2008-07-18' -- '2008-07-19' -- '2008-07-20' -- '2008-07-21' -- '2008-07-22' -- '2008-07-23' -- '2008-07-24' -- '2008-07-25' -- '2008-07-26' -- '2008-07-27' -- '2008-07-28' -- '2008-07-29' -- '2008-07-30' -- '2008-07-31' -- '2008-08-01' -- '2008-08-02' -- '2008-08-03' -- '2008-08-04' -- '2008-08-05' -- '2008-08-06' -- '2008-08-07' -- '2008-08-08' -- '2008-08-09' -- '2008-08-10' -- '2008-08-11' -- '2008-08-12' -- '2008-08-13' -- '2008-08-14' -- '2008-08-15' -- '2008-08-16' -- '2008-08-17' -- '2008-08-18' -- '2008-08-19' -- '2008-08-20' -- '2008-08-21' -- '2008-08-22' -- '2008-08-23' -- '2008-08-24' -- '2008-08-25' -- '2008-08-26' -- '2008-08-27' -- '2008-08-28' -- '2008-08-29' -- '2008-08-30' -- '2008-08-31' -- '2008-09-01' -- '2008-09-02' -- '2008-09-03' -- '2008-09-04' -- '2008-09-05' -- '2008-09-06' -- '2008-09-07' -- '2008-09-08' -- '2008-09-09' -- '2008-09-10' -- '2008-09-11' -- '2008-09-12' -- '2008-09-13' -- '2008-09-14' -- '2008-09-15' -- '2008-09-16' -- '2008-09-17' -- '2008-09-18' -- '2008-09-19' -- '2008-09-20' -- '2008-09-21' -- '2008-09-22' -- '2008-09-23' -- '2008-09-24' -- '2008-09-25' -- '2008-09-26' -- '2008-09-27' -- '2008-09-28' -- '2008-09-29' -- '2008-09-30' -- '2008-10-01' -- '2008-10-02' -- '2008-10-03' -- '2008-10-04' -- '2008-10-05' -- '2008-10-06' -- '2008-10-07' -- '2008-10-08' -- '2008-10-09' -- '2008-10-10' -- '2008-10-11' -- '2008-10-12' -- '2008-10-13' -- '2008-10-14' -- '2008-10-15' -- '2008-10-16' -- '2008-10-17' -- '2008-10-18' -- '2008-10-19' -- '2008-10-20' -- '2008-10-21' -- '2008-10-22' -- '2008-10-23' -- '2008-10-24' -- '2008-10-25' -- '2008-10-26' -- '2008-10-27' -- '2008-10-28' -- '2008-10-29' -- '2008-10-30' -- '2008-10-31' -- '2008-11-01' -- '2008-11-02' -- '2008-11-03' -- '2008-11-04' -- '2008-11-05' -- '2008-11-06' -- '2008-11-07' -- '2008-11-08' -- '2008-11-09' -- '2008-11-10' -- '2008-11-11' -- '2008-11-12' -- '2008-11-13' -- '2008-11-14' -- '2008-11-15' -- '2008-11-16' -- '2008-11-17' -- '2008-11-18' -- '2008-11-19' -- '2008-11-20' -- '2008-11-21' -- '2008-11-22' -- '2008-11-23' -- '2008-11-24' -- '2008-11-25' -- '2008-11-26' -- '2008-11-27' -- '2008-11-28' -- '2008-11-29' -- '2008-11-30' -- '2008-12-01' -- '2008-12-02' -- '2008-12-03' -- '2008-12-04' -- '2008-12-05' -- '2008-12-06' -- '2008-12-07' -- '2008-12-08' -- '2008-12-09' -- '2008-12-10' -- '2008-12-11' -- '2008-12-12' -- '2008-12-13' -- '2008-12-14' -- '2008-12-15' -- '2008-12-16' -- '2008-12-17' -- '2008-12-18' -- '2008-12-19' -- '2008-12-20' -- '2008-12-21' -- '2008-12-22' -- '2008-12-23' -- '2008-12-24' -- '2008-12-25' -- '2008-12-26' -- '2008-12-27' -- '2008-12-28' -- '2008-12-29' -- '2008-12-30' -- '2008-12-31' -- '2009-01-01' -- '2009-01-02' -- '2009-01-03' -- '2009-01-04' -- '2009-01-05' -- '2009-01-06' -- '2009-01-07' -- '2009-01-08' -- '2009-01-09' -- '2009-01-10' -- '2009-01-11' -- '2009-01-12' -- '2009-01-13' -- '2009-01-14' -- '2009-01-15' -- '2009-01-16' -- '2009-01-17' -- '2009-01-18' -- '2009-01-19' -- '2009-01-20' -- '2009-01-21' -- '2009-01-22' -- '2009-01-23' -- '2009-01-24' -- '2009-01-25' -- '2009-01-26' -- '2009-01-27' -- '2009-01-28' -- '2009-01-29' -- '2009-01-30' -- '2009-01-31' -- '2009-02-01' -- '2009-02-02' -- '2009-02-03' -- '2009-02-04' -- '2009-02-05' -- '2009-02-06' -- '2009-02-07' -- '2009-02-08' -- '2009-02-09' -- '2009-02-10' -- '2009-02-11' -- '2009-02-12' -- '2009-02-13' -- '2009-02-14' -- '2009-02-15' -- '2009-02-16' -- '2009-02-17' -- '2009-02-18' -- '2009-02-19' -- '2009-02-20' -- '2009-02-21' -- '2009-02-22' -- '2009-02-23' -- '2009-02-24' -- '2009-02-25' -- '2009-02-26' -- '2009-02-27' -- '2009-02-28' -- '2009-03-01' -- '2009-03-02' -- '2009-03-03' -- '2009-03-04' -- '2009-03-05' -- '2009-03-06' -- '2009-03-07' -- '2009-03-08' -- '2009-03-09' -- '2009-03-10' -- '2009-03-11' -- '2009-03-12' -- '2009-03-13' -- '2009-03-14' -- '2009-03-15' -- '2009-03-16' -- '2009-03-17' -- '2009-03-18' -- '2009-03-19' -- '2009-03-20' -- '2009-03-21' -- '2009-03-22' -- '2009-03-23' -- '2009-03-24' -- '2009-03-25' -- '2009-03-26' -- '2009-03-27' -- '2009-03-28' -- '2009-03-29' -- '2009-03-30' -- '2009-03-31' -- '2009-04-01' -- '2009-04-02' -- '2009-04-03' -- '2009-04-04' -- '2009-04-05' -- '2009-04-06' -- '2009-04-07' -- '2009-04-08' -- '2009-04-09' -- '2009-04-10' -- '2009-04-11' -- '2009-04-12' -- '2009-04-13' -- '2009-04-14' -- '2009-04-15' -- '2009-04-16' -- '2009-04-17' -- '2009-04-18' -- '2009-04-19' -- '2009-04-20' -- '2009-04-21' -- '2009-04-22' -- '2009-04-23' -- '2009-04-24' -- '2009-04-25' -- '2009-04-26' -- '2009-04-27' -- '2009-04-28' -- '2009-04-29' -- '2009-04-30' -- '2009-05-01' -- '2009-05-02' -- '2009-05-03' -- '2009-05-04' -- '2009-05-05' -- '2009-05-06' -- '2009-05-07' -- '2009-05-08' -- '2009-05-09' -- '2009-05-10' -- '2009-05-11' -- '2009-05-12' -- '2009-05-13' -- '2009-05-14' -- '2009-05-15' -- '2009-05-16' -- '2009-05-17' -- '2009-05-18' -- '2009-05-19' -- '2009-05-20' -- '2009-05-21' -- '2009-05-22' -- '2009-05-23' -- '2009-05-24' -- '2009-05-25' -- '2009-05-26' -- '2009-05-27' -- '2009-05-28' -- '2009-05-29' -- '2009-05-30' -- '2009-05-31' -- '2009-06-01' -- '2009-06-02' -- '2009-06-03' -- '2009-06-04' -- '2009-06-05' -- '2009-06-06' -- '2009-06-07' -- '2009-06-08' -- '2009-06-09' -- '2009-06-10' -- '2009-06-11' -- '2009-06-12' -- '2009-06-13' -- '2009-06-14' -- '2009-06-15' -- '2009-06-16' -- '2009-06-17' -- '2009-06-18' -- '2009-06-19' -- '2009-06-20' -- '2009-06-21' -- '2009-06-22' -- '2009-06-23' -- '2009-06-24' -- '2009-06-25' -- '2009-06-26' -- '2009-06-27' -- '2009-06-28' -- '2009-06-29' -- '2009-06-30' -- '2009-07-01' -- '2009-07-02' -- '2009-07-03' -- '2009-07-04' -- '2009-07-05' -- '2009-07-06' -- '2009-07-07' -- '2009-07-08' -- '2009-07-09' -- '2009-07-10' -- '2009-07-11' -- '2009-07-12' -- '2009-07-13' -- '2009-07-14' -- '2009-07-15' -- '2009-07-16' -- '2009-07-17' -- '2009-07-18' -- '2009-07-19' -- '2009-07-20' -- '2009-07-21' -- '2009-07-22' -- '2009-07-23' -- '2009-07-24' -- '2009-07-25' -- '2009-07-26' -- '2009-07-27' -- '2009-07-28' -- '2009-07-29' -- '2009-07-30' -- '2009-07-31' -- '2009-08-01' -- '2009-08-02' -- '2009-08-03' -- '2009-08-04' -- '2009-08-05' -- '2009-08-06' -- '2009-08-07' -- '2009-08-08' -- '2009-08-09' -- '2009-08-10' -- '2009-08-11' -- '2009-08-12' -- '2009-08-13' -- '2009-08-14' -- '2009-08-15' -- '2009-08-16' -- '2009-08-17' -- '2009-08-18' -- '2009-08-19' -- '2009-08-20' -- '2009-08-21' -- '2009-08-22' -- '2009-08-23' -- '2009-08-24' -- '2009-08-25' -- '2009-08-26' -- '2009-08-27' -- '2009-08-28' -- '2009-08-29' -- '2009-08-30' -- '2009-08-31' -- '2009-09-01' -- '2009-09-02' -- '2009-09-03' -- '2009-09-04' -- '2009-09-05' -- '2009-09-06' -- '2009-09-07' -- '2009-09-08' -- '2009-09-09' -- '2009-09-10' -- '2009-09-11' -- '2009-09-12' -- '2009-09-13' -- '2009-09-14' -- '2009-09-15' -- '2009-09-16' -- '2009-09-17' -- '2009-09-18' -- '2009-09-19' -- '2009-09-20' -- '2009-09-21' -- '2009-09-22' -- '2009-09-23' -- '2009-09-24' -- '2009-09-25' -- '2009-09-26' -- '2009-09-27' -- '2009-09-28' -- '2009-09-29' -- '2009-09-30' -- '2009-10-01' -- '2009-10-02' -- '2009-10-03' -- '2009-10-04' -- '2009-10-05' -- '2009-10-06' -- '2009-10-07' -- '2009-10-08' -- '2009-10-09' -- '2009-10-10' -- '2009-10-11' -- '2009-10-12' -- '2009-10-13' -- '2009-10-14' -- '2009-10-15' -- '2009-10-16' -- '2009-10-17' -- '2009-10-18' -- '2009-10-19' -- '2009-10-20' -- '2009-10-21' -- '2009-10-22' -- '2009-10-23' -- '2009-10-24' -- '2009-10-25' -- '2009-10-26' -- '2009-10-27' -- '2009-10-28' -- '2009-10-29' -- '2009-10-30' -- '2009-10-31' -- '2009-11-01' -- '2009-11-02' -- '2009-11-03' -- '2009-11-04' -- '2009-11-05' -- '2009-11-06' -- '2009-11-07' -- '2009-11-08' -- '2009-11-09' -- '2009-11-10' -- '2009-11-11' -- '2009-11-12' -- '2009-11-13' -- '2009-11-14' -- '2009-11-15' -- '2009-11-16' -- '2009-11-17' -- '2009-11-18' -- '2009-11-19' -- '2009-11-20' -- '2009-11-21' -- '2009-11-22' -- '2009-11-23' -- '2009-11-24' -- '2009-11-25' -- '2009-11-26' -- '2009-11-27' -- '2009-11-28' -- '2009-11-29' -- '2009-11-30' -- '2009-12-01' -- '2009-12-02' -- '2009-12-03' -- '2009-12-04' -- '2009-12-05' -- '2009-12-06' -- '2009-12-07' -- '2009-12-08' -- '2009-12-09' -- '2009-12-10' -- '2009-12-11' -- '2009-12-12' -- '2009-12-13' -- '2009-12-14' -- '2009-12-15' -- '2009-12-16' -- '2009-12-17' -- '2009-12-18' -- '2009-12-19' -- '2009-12-20' -- '2009-12-21' -- '2009-12-22' -- '2009-12-23' -- '2009-12-24' -- '2009-12-25' -- '2009-12-26' -- '2009-12-27' -- '2009-12-28' -- '2009-12-29' -- '2009-12-30' -- '2009-12-31' -- '2010-01-01' -- '2010-01-02' -- '2010-01-03' -- '2010-01-04' -- '2010-01-05' -- '2010-01-06' -- '2010-01-07' -- '2010-01-08' -- '2010-01-09' -- '2010-01-10' -- '2010-01-11' -- '2010-01-12' -- '2010-01-13' -- '2010-01-14' -- '2010-01-15' -- '2010-01-16' -- '2010-01-17' -- '2010-01-18' -- '2010-01-19' -- '2010-01-20' -- '2010-01-21' -- '2010-01-22' -- '2010-01-23' -- '2010-01-24' -- '2010-01-25' -- '2010-01-26' -- '2010-01-27' -- '2010-01-28' -- '2010-01-29' -- '2010-01-30' -- '2010-01-31' -- '2010-02-01' -- '2010-02-02' -- '2010-02-03' -- '2010-02-04' -- '2010-02-05' -- '2010-02-06' -- '2010-02-07' -- '2010-02-08' -- '2010-02-09' -- '2010-02-10' -- '2010-02-11' -- '2010-02-12' -- '2010-02-13' -- '2010-02-14' -- '2010-02-15' -- '2010-02-16' -- '2010-02-17' -- '2010-02-18' -- '2010-02-19' -- '2010-02-20' -- '2010-02-21' -- '2010-02-22' -- '2010-02-23' -- '2010-02-24' -- '2010-02-25' -- '2010-02-26' -- '2010-02-27' -- '2010-02-28' -- '2010-03-01' -- '2010-03-02' -- '2010-03-03' -- '2010-03-04' -- '2010-03-05' -- '2010-03-06' -- '2010-03-07' -- '2010-03-08' -- '2010-03-09' -- '2010-03-10' -- '2010-03-11' -- '2010-03-12' -- '2010-03-13' -- '2010-03-14' -- '2010-03-15' -- '2010-03-16' -- '2010-03-17' -- '2010-03-18' -- '2010-03-19' -- '2010-03-20' -- '2010-03-21' -- '2010-03-22' -- '2010-03-23' -- '2010-03-24' -- '2010-03-25' -- '2010-03-26' -- '2010-03-27' -- '2010-03-28' -- '2010-03-29' -- '2010-03-30' -- '2010-03-31' -- '2010-04-01' -- '2010-04-02' -- '2010-04-03' -- '2010-04-04' -- '2010-04-05' -- '2010-04-06' -- '2010-04-07' -- '2010-04-08' -- '2010-04-09' -- '2010-04-10' -- '2010-04-11' -- '2010-04-12' -- '2010-04-13' -- '2010-04-14' -- '2010-04-15' -- '2010-04-16' -- '2010-04-17' -- '2010-04-18' -- '2010-04-19' -- '2010-04-20' -- '2010-04-21' -- '2010-04-22' -- '2010-04-23' -- '2010-04-24' -- '2010-04-25' -- '2010-04-26' -- '2010-04-27' -- '2010-04-28' -- '2010-04-29' -- '2010-04-30' -- '2010-05-01' -- '2010-05-02' -- '2010-05-03' -- '2010-05-04' -- '2010-05-05' -- '2010-05-06' -- '2010-05-07' -- '2010-05-08' -- '2010-05-09' -- '2010-05-10' -- '2010-05-11' -- '2010-05-12' -- '2010-05-13' -- '2010-05-14' -- '2010-05-15' -- '2010-05-16' -- '2010-05-17' -- '2010-05-18' -- '2010-05-19' -- '2010-05-20' -- '2010-05-21' -- '2010-05-22' -- '2010-05-23' -- '2010-05-24' -- '2010-05-25' -- '2010-05-26' -- '2010-05-27' -- '2010-05-28' -- '2010-05-29' -- '2010-05-30' -- '2010-05-31' -- '2010-06-01' -- '2010-06-02' -- '2010-06-03' -- '2010-06-04' -- '2010-06-05' -- '2010-06-06' -- '2010-06-07' -- '2010-06-08' -- '2010-06-09' -- '2010-06-10' -- '2010-06-11' -- '2010-06-12' -- '2010-06-13' -- '2010-06-14' -- '2010-06-15' -- '2010-06-16' -- '2010-06-17' -- '2010-06-18' -- '2010-06-19' -- '2010-06-20' -- '2010-06-21' -- '2010-06-22' -- '2010-06-23' -- '2010-06-24' -- '2010-06-25' -- '2010-06-26' -- '2010-06-27' -- '2010-06-28' -- '2010-06-29' -- '2010-06-30' -- '2010-07-01' -- '2010-07-02' -- '2010-07-03' -- '2010-07-04' -- '2010-07-05' -- '2010-07-06' -- '2010-07-07' -- '2010-07-08' -- '2010-07-09' -- '2010-07-10' -- '2010-07-11' -- '2010-07-12' -- '2010-07-13' -- '2010-07-14' -- '2010-07-15' -- '2010-07-16' -- '2010-07-17' -- '2010-07-18' -- '2010-07-19' -- '2010-07-20' -- '2010-07-21' -- '2010-07-22' -- '2010-07-23' -- '2010-07-24' -- '2010-07-25' -- '2010-07-26' -- '2010-07-27' -- '2010-07-28' -- '2010-07-29' -- '2010-07-30' -- '2010-07-31' -- '2010-08-01' -- '2010-08-02' -- '2010-08-03' -- '2010-08-04' -- '2010-08-05' -- '2010-08-06' -- '2010-08-07' -- '2010-08-08' -- '2010-08-09' -- '2010-08-10' -- '2010-08-11' -- '2010-08-12' -- '2010-08-13' -- '2010-08-14' -- '2010-08-15' -- '2010-08-16' -- '2010-08-17' -- '2010-08-18' -- '2010-08-19' -- '2010-08-20' -- '2010-08-21' -- '2010-08-22' -- '2010-08-23' -- '2010-08-24' -- '2010-08-25' -- '2010-08-26' -- '2010-08-27' -- '2010-08-28' -- '2010-08-29' -- '2010-08-30' -- '2010-08-31' -- '2010-09-01' -- '2010-09-02' -- '2010-09-03' -- '2010-09-04' -- '2010-09-05' -- '2010-09-06' -- '2010-09-07' -- '2010-09-08' -- '2010-09-09' -- '2010-09-10' -- '2010-09-11' -- '2010-09-12' -- '2010-09-13' -- '2010-09-14' -- '2010-09-15' -- '2010-09-16' -- '2010-09-17' -- '2010-09-18' -- '2010-09-19' -- '2010-09-20' -- '2010-09-21' -- '2010-09-22' -- '2010-09-23' -- '2010-09-24' -- '2010-09-25' -- '2010-09-26' -- '2010-09-27' -- '2010-09-28' -- '2010-09-29' -- '2010-09-30' -- '2010-10-01' -- '2010-10-02' -- '2010-10-03' -- '2010-10-04' -- '2010-10-05' -- '2010-10-06' -- '2010-10-07' -- '2010-10-08' -- '2010-10-09' -- '2010-10-10' -- '2010-10-11' -- '2010-10-12' -- '2010-10-13' -- '2010-10-14' -- '2010-10-15' -- '2010-10-16' -- '2010-10-17' -- '2010-10-18' -- '2010-10-19' -- '2010-10-20' -- '2010-10-21' -- '2010-10-22' -- '2010-10-23' -- '2010-10-24' -- '2010-10-25' -- '2010-10-26' -- '2010-10-27' -- '2010-10-28' -- '2010-10-29' -- '2010-10-30' -- '2010-10-31' -- '2010-11-01' -- '2010-11-02' -- '2010-11-03' -- '2010-11-04' -- '2010-11-05' -- '2010-11-06' -- '2010-11-07' -- '2010-11-08' -- '2010-11-09' -- '2010-11-10' -- '2010-11-11' -- '2010-11-12' -- '2010-11-13' -- '2010-11-14' -- '2010-11-15' -- '2010-11-16' -- '2010-11-17' -- '2010-11-18' -- '2010-11-19' -- '2010-11-20' -- '2010-11-21' -- '2010-11-22' -- '2010-11-23' -- '2010-11-24' -- '2010-11-25' -- '2010-11-26' -- '2010-11-27' -- '2010-11-28' -- '2010-11-29' -- '2010-11-30' -- '2010-12-01' -- '2010-12-02' -- '2010-12-03' -- '2010-12-04' -- '2010-12-05' -- '2010-12-06' -- '2010-12-07' -- '2010-12-08' -- '2010-12-09' -- '2010-12-10' -- '2010-12-11' -- '2010-12-12' -- '2010-12-13' -- '2010-12-14' -- '2010-12-15' -- '2010-12-16' -- '2010-12-17' -- '2010-12-18' -- '2010-12-19' -- '2010-12-20' -- '2010-12-21' -- '2010-12-22' -- '2010-12-23' -- '2010-12-24' -- '2010-12-25' -- '2010-12-26' -- '2010-12-27' -- '2010-12-28' -- '2010-12-29' -- '2010-12-30' -- '2010-12-31' -- '2011-01-01' -- '2011-01-02' -- '2011-01-03' -- '2011-01-04' -- '2011-01-05' -- '2011-01-06' -- '2011-01-07' -- '2011-01-08' -- '2011-01-09' -- '2011-01-10' -- '2011-01-11' -- '2011-01-12' -- '2011-01-13' -- '2011-01-14' -- '2011-01-15' -- '2011-01-16' -- '2011-01-17' -- '2011-01-18' -- '2011-01-19' -- '2011-01-20' -- '2011-01-21' -- '2011-01-22' -- '2011-01-23' -- '2011-01-24' -- '2011-01-25' -- '2011-01-26' -- '2011-01-27' -- '2011-01-28' -- '2011-01-29' -- '2011-01-30' -- '2011-01-31' -- '2011-02-01' -- '2011-02-02' -- '2011-02-03' -- '2011-02-04' -- '2011-02-05' -- '2011-02-06' -- '2011-02-07' -- '2011-02-08' -- '2011-02-09' -- '2011-02-10' -- '2011-02-11' -- '2011-02-12' -- '2011-02-13' -- '2011-02-14' -- '2011-02-15' -- '2011-02-16' -- '2011-02-17' -- '2011-02-18' -- '2011-02-19' -- '2011-02-20' -- '2011-02-21' -- '2011-02-22' -- '2011-02-23' -- '2011-02-24' -- '2011-02-25' -- '2011-02-26' -- '2011-02-27' -- '2011-02-28' -- '2011-03-01' -- '2011-03-02' -- '2011-03-03' -- '2011-03-04' -- '2011-03-05' -- '2011-03-06' -- '2011-03-07' -- '2011-03-08' -- '2011-03-09' -- '2011-03-10' -- '2011-03-11' -- '2011-03-12' -- '2011-03-13' -- '2011-03-14' -- '2011-03-15' -- '2011-03-16' -- '2011-03-17' -- '2011-03-18' -- '2011-03-19' -- '2011-03-20' -- '2011-03-21' -- '2011-03-22' -- '2011-03-23' -- '2011-03-24' -- '2011-03-25' -- '2011-03-26' -- '2011-03-27' -- '2011-03-28' -- '2011-03-29' -- '2011-03-30' -- '2011-03-31' -- '2011-04-01' -- '2011-04-02' -- '2011-04-03' -- '2011-04-04' -- '2011-04-05' -- '2011-04-06' -- '2011-04-07' -- '2011-04-08' -- '2011-04-09' -- '2011-04-10' -- '2011-04-11' -- '2011-04-12' -- '2011-04-13' -- '2011-04-14' -- '2011-04-15' -- '2011-04-16' -- '2011-04-17' -- '2011-04-18' -- '2011-04-19' -- '2011-04-20' -- '2011-04-21' -- '2011-04-22' -- '2011-04-23' -- '2011-04-24' -- '2011-04-25' -- '2011-04-26' -- '2011-04-27' -- '2011-04-28' -- '2011-04-29' -- '2011-04-30' -- '2011-05-01' -- '2011-05-02' -- '2011-05-03' -- '2011-05-04' -- '2011-05-05' -- '2011-05-06' -- '2011-05-07' -- '2011-05-08' -- '2011-05-09' -- '2011-05-10' -- '2011-05-11' -- '2011-05-12' -- '2011-05-13' -- '2011-05-14' -- '2011-05-15' -- '2011-05-16' -- '2011-05-17' -- '2011-05-18' -- '2011-05-19' -- '2011-05-20' -- '2011-05-21' -- '2011-05-22' -- '2011-05-23' -- '2011-05-24' -- '2011-05-25' -- '2011-05-26' -- '2011-05-27' -- '2011-05-28' -- '2011-05-29' -- '2011-05-30' -- '2011-05-31' -- '2011-06-01' -- '2011-06-02' -- '2011-06-03' -- '2011-06-04' -- '2011-06-05' -- '2011-06-06' -- '2011-06-07' -- '2011-06-08' -- '2011-06-09' -- '2011-06-10' -- '2011-06-11' -- '2011-06-12' -- '2011-06-13' -- '2011-06-14' -- '2011-06-15' -- '2011-06-16' -- '2011-06-17' -- '2011-06-18' -- '2011-06-19' -- '2011-06-20' -- '2011-06-21' -- '2011-06-22' -- '2011-06-23' -- '2011-06-24' -- '2011-06-25' -- '2011-06-26' -- '2011-06-27' -- '2011-06-28' -- '2011-06-29' -- '2011-06-30' -- '2011-07-01' -- '2011-07-02' -- '2011-07-03' -- '2011-07-04' -- '2011-07-05' -- '2011-07-06' -- '2011-07-07' -- '2011-07-08' -- '2011-07-09' -- '2011-07-10' -- '2011-07-11' -- '2011-07-12' -- '2011-07-13' -- '2011-07-14' -- '2011-07-15' -- '2011-07-16' -- '2011-07-17' -- '2011-07-18' -- '2011-07-19' -- '2011-07-20' -- '2011-07-21' -- '2011-07-22' -- '2011-07-23' -- '2011-07-24' -- '2011-07-25' -- '2011-07-26' -- '2011-07-27' -- '2011-07-28' -- '2011-07-29' -- '2011-07-30' -- '2011-07-31' -- '2011-08-01' -- '2011-08-02' -- '2011-08-03' -- '2011-08-04' -- '2011-08-05' -- '2011-08-06' -- '2011-08-07' -- '2011-08-08' -- '2011-08-09' -- '2011-08-10' -- '2011-08-11' -- '2011-08-12' -- '2011-08-13' -- '2011-08-14' -- '2011-08-15' -- '2011-08-16' -- '2011-08-17' -- '2011-08-18' -- '2011-08-19' -- '2011-08-20' -- '2011-08-21' -- '2011-08-22' -- '2011-08-23' -- '2011-08-24' -- '2011-08-25' -- '2011-08-26' -- '2011-08-27' -- '2011-08-28' -- '2011-08-29' -- '2011-08-30' -- '2011-08-31' -- '2011-09-01' -- '2011-09-02' -- '2011-09-03' -- '2011-09-04' -- '2011-09-05' -- '2011-09-06' -- '2011-09-07' -- '2011-09-08' -- '2011-09-09' -- '2011-09-10' -- '2011-09-11' -- '2011-09-12' -- '2011-09-13' -- '2011-09-14' -- '2011-09-15' -- '2011-09-16' -- '2011-09-17' -- '2011-09-18' -- '2011-09-19' -- '2011-09-20' -- '2011-09-21' -- '2011-09-22' -- '2011-09-23' -- '2011-09-24' -- '2011-09-25' -- '2011-09-26' -- '2011-09-27' -- '2011-09-28' -- '2011-09-29' -- '2011-09-30' -- '2011-10-01' -- '2011-10-02' -- '2011-10-03' -- '2011-10-04' -- '2011-10-05' -- '2011-10-06' -- '2011-10-07' -- '2011-10-08' -- '2011-10-09' -- '2011-10-10' -- '2011-10-11' -- '2011-10-12' -- '2011-10-13' -- '2011-10-14' -- '2011-10-15' -- '2011-10-16' -- '2011-10-17' -- '2011-10-18' -- '2011-10-19' -- '2011-10-20' -- '2011-10-21' -- '2011-10-22' -- '2011-10-23' -- '2011-10-24' -- '2011-10-25' -- '2011-10-26' -- '2011-10-27' -- '2011-10-28' -- '2011-10-29' -- '2011-10-30' -- '2011-10-31' -- '2011-11-01' -- '2011-11-02' -- '2011-11-03' -- '2011-11-04' -- '2011-11-05' -- '2011-11-06' -- '2011-11-07' -- '2011-11-08' -- '2011-11-09' -- '2011-11-10' -- '2011-11-11' -- '2011-11-12' -- '2011-11-13' -- '2011-11-14' -- '2011-11-15' -- '2011-11-16' -- '2011-11-17' -- '2011-11-18' -- '2011-11-19' -- '2011-11-20' -- '2011-11-21' -- '2011-11-22' -- '2011-11-23' -- '2011-11-24' -- '2011-11-25' -- '2011-11-26' -- '2011-11-27' -- '2011-11-28' -- '2011-11-29' -- '2011-11-30' -- '2011-12-01' -- '2011-12-02' -- '2011-12-03' -- '2011-12-04' -- '2011-12-05' -- '2011-12-06' -- '2011-12-07' -- '2011-12-08' -- '2011-12-09' -- '2011-12-10' -- '2011-12-11' -- '2011-12-12' -- '2011-12-13' -- '2011-12-14' -- '2011-12-15' -- '2011-12-16' -- '2011-12-17' -- '2011-12-18' -- '2011-12-19' -- '2011-12-20' -- '2011-12-21' -- '2011-12-22' -- '2011-12-23' -- '2011-12-24' -- '2011-12-25' -- '2011-12-26' -- '2011-12-27' -- '2011-12-28' -- '2011-12-29' -- '2011-12-30' -- '2011-12-31' -- '2012-01-01' -- '2012-01-02' -- '2012-01-03' -- '2012-01-04' -- '2012-01-05' -- '2012-01-06' -- '2012-01-07' -- '2012-01-08' -- '2012-01-09' -- '2012-01-10' -- '2012-01-11' -- '2012-01-12' -- '2012-01-13' -- '2012-01-14' -- '2012-01-15' -- '2012-01-16' -- '2012-01-17' -- '2012-01-18' -- '2012-01-19' -- '2012-01-20' -- '2012-01-21' -- '2012-01-22' -- '2012-01-23' -- '2012-01-24' -- '2012-01-25' -- '2012-01-26' -- '2012-01-27' -- '2012-01-28' -- '2012-01-29' -- '2012-01-30' -- '2012-01-31' -- '2012-02-01' -- '2012-02-02' -- '2012-02-03' -- '2012-02-04' -- '2012-02-05' -- '2012-02-06' -- '2012-02-07' -- '2012-02-08' -- '2012-02-09' -- '2012-02-10' -- '2012-02-11' -- '2012-02-12' -- '2012-02-13' -- '2012-02-14' -- '2012-02-15' -- '2012-02-16' -- '2012-02-17' -- '2012-02-18' -- '2012-02-19' -- '2012-02-20' -- '2012-02-21' -- '2012-02-22' -- '2012-02-23' -- '2012-02-24' -- '2012-02-25' -- '2012-02-26' -- '2012-02-27' -- '2012-02-28' -- '2012-02-29' -- '2012-03-01' -- '2012-03-02' -- '2012-03-03' -- '2012-03-04' -- '2012-03-05' -- '2012-03-06' -- '2012-03-07' -- '2012-03-08' -- '2012-03-09' -- '2012-03-10' -- '2012-03-11' -- '2012-03-12' -- '2012-03-13' -- '2012-03-14' -- '2012-03-15' -- '2012-03-16' -- '2012-03-17' -- '2012-03-18' -- '2012-03-19' -- '2012-03-20' -- '2012-03-21' -- '2012-03-22' -- '2012-03-23' -- '2012-03-24' -- '2012-03-25' -- '2012-03-26' -- '2012-03-27' -- '2012-03-28' -- '2012-03-29' -- '2012-03-30' -- '2012-03-31' -- '2012-04-01' -- '2012-04-02' -- '2012-04-03' -- '2012-04-04' -- '2012-04-05' -- '2012-04-06' -- '2012-04-07' -- '2012-04-08' -- '2012-04-09' -- '2012-04-10' -- '2012-04-11' -- '2012-04-12' -- '2012-04-13' -- '2012-04-14' -- '2012-04-15' -- '2012-04-16' -- '2012-04-17' -- '2012-04-18' -- '2012-04-19' -- '2012-04-20' -- '2012-04-21' -- '2012-04-22' -- '2012-04-23' -- '2012-04-24' -- '2012-04-25' -- '2012-04-26' -- '2012-04-27' -- '2012-04-28' -- '2012-04-29' -- '2012-04-30' -- '2012-05-01' -- '2012-05-02' -- '2012-05-03' -- '2012-05-04' -- '2012-05-05' -- '2012-05-06' -- '2012-05-07' -- '2012-05-08' -- '2012-05-09' -- '2012-05-10' -- '2012-05-11' -- '2012-05-12' -- '2012-05-13' -- '2012-05-14' -- '2012-05-15' -- '2012-05-16' -- '2012-05-17' -- '2012-05-18' -- '2012-05-19' -- '2012-05-20' -- '2012-05-21' -- '2012-05-22' -- '2012-05-23' -- '2012-05-24' -- '2012-05-25' -- '2012-05-26' -- '2012-05-27' -- '2012-05-28' -- '2012-05-29' -- '2012-05-30' -- '2012-05-31' -- '2012-06-01' -- '2012-06-02' -- '2012-06-03' -- '2012-06-04' -- '2012-06-05' -- '2012-06-06' -- '2012-06-07' -- '2012-06-08' -- '2012-06-09' -- '2012-06-10' -- '2012-06-11' -- '2012-06-12' -- '2012-06-13' -- '2012-06-14' -- '2012-06-15' -- '2012-06-16' -- '2012-06-17' -- '2012-06-18' -- '2012-06-19' -- '2012-06-20' -- '2012-06-21' -- '2012-06-22' -- '2012-06-23' -- '2012-06-24' -- '2012-06-25' -- '2012-06-26' -- '2012-06-27' -- '2012-06-28' -- '2012-06-29' -- '2012-06-30' -- '2012-07-01' -- '2012-07-02' -- '2012-07-03' -- '2012-07-04' -- '2012-07-05' -- '2012-07-06' -- '2012-07-07' -- '2012-07-08' -- '2012-07-09' -- '2012-07-10' -- '2012-07-11' -- '2012-07-12' -- '2012-07-13' -- '2012-07-14' -- '2012-07-15' -- '2012-07-16' -- '2012-07-17' -- '2012-07-18' -- '2012-07-19' -- '2012-07-20' -- '2012-07-21' -- '2012-07-22' -- '2012-07-23' -- '2012-07-24' -- '2012-07-25' -- '2012-07-26' -- '2012-07-27' -- '2012-07-28' -- '2012-07-29' -- '2012-07-30' -- '2012-07-31' -- '2012-08-01' -- '2012-08-02' -- '2012-08-03' -- '2012-08-04' -- '2012-08-05' -- '2012-08-06' -- '2012-08-07' -- '2012-08-08' -- '2012-08-09' -- '2012-08-10' -- '2012-08-11' -- '2012-08-12' -- '2012-08-13' -- '2012-08-14' -- '2012-08-15' -- '2012-08-16' -- '2012-08-17' -- '2012-08-18' -- '2012-08-19' -- '2012-08-20' -- '2012-08-21' -- '2012-08-22' -- '2012-08-23' -- '2012-08-24' -- '2012-08-25' -- '2012-08-26' -- '2012-08-27' -- '2012-08-28' -- '2012-08-29' -- '2012-08-30' -- '2012-08-31' -- '2012-09-01' -- '2012-09-02' -- '2012-09-03' -- '2012-09-04' -- '2012-09-05' -- '2012-09-06' -- '2012-09-07' -- '2012-09-08' -- '2012-09-09' -- '2012-09-10' -- '2012-09-11' -- '2012-09-12' -- '2012-09-13' -- '2012-09-14' -- '2012-09-15' -- '2012-09-16' -- '2012-09-17' -- '2012-09-18' -- '2012-09-19' -- '2012-09-20' -- '2012-09-21' -- '2012-09-22' -- '2012-09-23' -- '2012-09-24' -- '2012-09-25' -- '2012-09-26' -- '2012-09-27' -- '2012-09-28' -- '2012-09-29' -- '2012-09-30' -- '2012-10-01' -- '2012-10-02' -- '2012-10-03' -- '2012-10-04' -- '2012-10-05' -- '2012-10-06' -- '2012-10-07' -- '2012-10-08' -- '2012-10-09' -- '2012-10-10' -- '2012-10-11' -- '2012-10-12' -- '2012-10-13' -- '2012-10-14' -- '2012-10-15' -- '2012-10-16' -- '2012-10-17' -- '2012-10-18' -- '2012-10-19' -- '2012-10-20' -- '2012-10-21' -- '2012-10-22' -- '2012-10-23' -- '2012-10-24' -- '2012-10-25' -- '2012-10-26' -- '2012-10-27' -- '2012-10-28' -- '2012-10-29' -- '2012-10-30' -- '2012-10-31' -- '2012-11-01' -- '2012-11-02' -- '2012-11-03' -- '2012-11-04' -- '2012-11-05' -- '2012-11-06' -- '2012-11-07' -- '2012-11-08' -- '2012-11-09' -- '2012-11-10' -- '2012-11-11' -- '2012-11-12' -- '2012-11-13' -- '2012-11-14' -- '2012-11-15' -- '2012-11-16' -- '2012-11-17' -- '2012-11-18' -- '2012-11-19' -- '2012-11-20' -- '2012-11-21' -- '2012-11-22' -- '2012-11-23' -- '2012-11-24' -- '2012-11-25' -- '2012-11-26' -- '2012-11-27' -- '2012-11-28' -- '2012-11-29' -- '2012-11-30' -- '2012-12-01' -- '2012-12-02' -- '2012-12-03' -- '2012-12-04' -- '2012-12-05' -- '2012-12-06' -- '2012-12-07' -- '2012-12-08' -- '2012-12-09' -- '2012-12-10' -- '2012-12-11' -- '2012-12-12' -- '2012-12-13' -- '2012-12-14' -- '2012-12-15' -- '2012-12-16' -- '2012-12-17' -- '2012-12-18' -- '2012-12-19' -- '2012-12-20' -- '2012-12-21' -- '2012-12-22' -- '2012-12-23' -- '2012-12-24' -- '2012-12-25' -- '2012-12-26' -- '2012-12-27' -- '2012-12-28' -- '2012-12-29' -- '2012-12-30' -- '2012-12-31' -- '2013-01-01' -- '2013-01-02' -- '2013-01-03' -- '2013-01-04' -- '2013-01-05' -- '2013-01-06' -- '2013-01-07' -- '2013-01-08' -- '2013-01-09' -- '2013-01-10' -- '2013-01-11' -- '2013-01-12' -- '2013-01-13' -- '2013-01-14' -- '2013-01-15' -- '2013-01-16' -- '2013-01-17' -- '2013-01-18' -- '2013-01-19' -- '2013-01-20' -- '2013-01-21' -- '2013-01-22' -- '2013-01-23' -- '2013-01-24' -- '2013-01-25' -- '2013-01-26' -- '2013-01-27' -- '2013-01-28' -- '2013-01-29' -- '2013-01-30' -- '2013-01-31' -- '2013-02-01' -- '2013-02-02' -- '2013-02-03' -- '2013-02-04' -- '2013-02-05' -- '2013-02-06' -- '2013-02-07' -- '2013-02-08' -- '2013-02-09' -- '2013-02-10' -- '2013-02-11' -- '2013-02-12' -- '2013-02-13' -- '2013-02-14' -- '2013-02-15' -- '2013-02-16' -- '2013-02-17' -- '2013-02-18' -- '2013-02-19' -- '2013-02-20' -- '2013-02-21' -- '2013-02-22' -- '2013-02-23' -- '2013-02-24' -- '2013-02-25' -- '2013-02-26' -- '2013-02-27' -- '2013-02-28' -- '2013-03-01' -- '2013-03-02' -- '2013-03-03' -- '2013-03-04' -- '2013-03-05' -- '2013-03-06' -- '2013-03-07' -- '2013-03-08' -- '2013-03-09' -- '2013-03-10' -- '2013-03-11' -- '2013-03-12' -- '2013-03-13' -- '2013-03-14' -- '2013-03-15' -- '2013-03-16' -- '2013-03-17' -- '2013-03-18' -- '2013-03-19' -- '2013-03-20' -- '2013-03-21' -- '2013-03-22' -- '2013-03-23' -- '2013-03-24' -- '2013-03-25' -- '2013-03-26' -- '2013-03-27' -- '2013-03-28' -- '2013-03-29' -- '2013-03-30' -- '2013-03-31' -- '2013-04-01' -- '2013-04-02' -- '2013-04-03' -- '2013-04-04' -- '2013-04-05' -- '2013-04-06' -- '2013-04-07' -- '2013-04-08' -- '2013-04-09' -- '2013-04-10' -- '2013-04-11' -- '2013-04-12' -- '2013-04-13' -- '2013-04-14' -- '2013-04-15' -- '2013-04-16' -- '2013-04-17' -- '2013-04-18' -- '2013-04-19' -- '2013-04-20' -- '2013-04-21' -- '2013-04-22' -- '2013-04-23' -- '2013-04-24' -- '2013-04-25' -- '2013-04-26' -- '2013-04-27' -- '2013-04-28' -- '2013-04-29' -- '2013-04-30' -- '2013-05-01' -- '2013-05-02' -- '2013-05-03' -- '2013-05-04' -- '2013-05-05' -- '2013-05-06' -- '2013-05-07' -- '2013-05-08' -- '2013-05-09' -- '2013-05-10' -- '2013-05-11' -- '2013-05-12' -- '2013-05-13' -- '2013-05-14' -- '2013-05-15' -- '2013-05-16' -- '2013-05-17' -- '2013-05-18' -- '2013-05-19' -- '2013-05-20' -- '2013-05-21' -- '2013-05-22' -- '2013-05-23' -- '2013-05-24' -- '2013-05-25' -- '2013-05-26' -- '2013-05-27' -- '2013-05-28' -- '2013-05-29' -- '2013-05-30' -- '2013-05-31' -- '2013-06-01' -- '2013-06-02' -- '2013-06-03' -- '2013-06-04' -- '2013-06-05' -- '2013-06-06' -- '2013-06-07' -- '2013-06-08' -- '2013-06-09' -- '2013-06-10' -- '2013-06-11' -- '2013-06-12' -- '2013-06-13' -- '2013-06-14' -- '2013-06-15' -- '2013-06-16' -- '2013-06-17' -- '2013-06-18' -- '2013-06-19' -- '2013-06-20' -- '2013-06-21' -- '2013-06-22' -- '2013-06-23' -- '2013-06-24' -- '2013-06-25' -- '2013-06-26' -- '2013-06-27' -- '2013-06-28' -- '2013-06-29' -- '2013-06-30' -- '2013-07-01' -- '2013-07-02' -- '2013-07-03' -- '2013-07-04' -- '2013-07-05' -- '2013-07-06' -- '2013-07-07' -- '2013-07-08' -- '2013-07-09' -- '2013-07-10' -- '2013-07-11' -- '2013-07-12' -- '2013-07-13' -- '2013-07-14' -- '2013-07-15' -- '2013-07-16' -- '2013-07-17' -- '2013-07-18' -- '2013-07-19' -- '2013-07-20' -- '2013-07-21' -- '2013-07-22' -- '2013-07-23' -- '2013-07-24' -- '2013-07-25' -- '2013-07-26' -- '2013-07-27' -- '2013-07-28' -- '2013-07-29' -- '2013-07-30' -- '2013-07-31' -- '2013-08-01' -- '2013-08-02' -- '2013-08-03' -- '2013-08-04' -- '2013-08-05' -- '2013-08-06' -- '2013-08-07' -- '2013-08-08' -- '2013-08-09' -- '2013-08-10' -- '2013-08-11' -- '2013-08-12' -- '2013-08-13' -- '2013-08-14' -- '2013-08-15' -- '2013-08-16' -- '2013-08-17' -- '2013-08-18' -- '2013-08-19' -- '2013-08-20' -- '2013-08-21' -- '2013-08-22' -- '2013-08-23' -- '2013-08-24' -- '2013-08-25' -- '2013-08-26' -- '2013-08-27' -- '2013-08-28' -- '2013-08-29' -- '2013-08-30' -- '2013-08-31' -- '2013-09-01' -- '2013-09-02' -- '2013-09-03' -- '2013-09-04' -- '2013-09-05' -- '2013-09-06' -- '2013-09-07' -- '2013-09-08' -- '2013-09-09' -- '2013-09-10' -- '2013-09-11' -- '2013-09-12' -- '2013-09-13' -- '2013-09-14' -- '2013-09-15' -- '2013-09-16' -- '2013-09-17' -- '2013-09-18' -- '2013-09-19' -- '2013-09-20' -- '2013-09-21' -- '2013-09-22' -- '2013-09-23' -- '2013-09-24' -- '2013-09-25' -- '2013-09-26' -- '2013-09-27' -- '2013-09-28' -- '2013-09-29' -- '2013-09-30' -- '2013-10-01' -- '2013-10-02' -- '2013-10-03' -- '2013-10-04' -- '2013-10-05' -- '2013-10-06' -- '2013-10-07' -- '2013-10-08' -- '2013-10-09' -- '2013-10-10' -- '2013-10-11' -- '2013-10-12' -- '2013-10-13' -- '2013-10-14' -- '2013-10-15' -- '2013-10-16' -- '2013-10-17' -- '2013-10-18' -- '2013-10-19' -- '2013-10-20' -- '2013-10-21' -- '2013-10-22' -- '2013-10-23' -- '2013-10-24' -- '2013-10-25' -- '2013-10-26' -- '2013-10-27' -- '2013-10-28' -- '2013-10-29' -- '2013-10-30' -- '2013-10-31' -- '2013-11-01' -- '2013-11-02' -- '2013-11-03' -- '2013-11-04' -- '2013-11-05' -- '2013-11-06' -- '2013-11-07' -- '2013-11-08' -- '2013-11-09' -- '2013-11-10' -- '2013-11-11' -- '2013-11-12' -- '2013-11-13' -- '2013-11-14' -- '2013-11-15' -- '2013-11-16' -- '2013-11-17' -- '2013-11-18' -- '2013-11-19' -- '2013-11-20' -- '2013-11-21' -- '2013-11-22' -- '2013-11-23' -- '2013-11-24' -- '2013-11-25' -- '2013-11-26' -- '2013-11-27' -- '2013-11-28' -- '2013-11-29' -- '2013-11-30' -- '2013-12-01' -- '2013-12-02' -- '2013-12-03' -- '2013-12-04' -- '2013-12-05' -- '2013-12-06' -- '2013-12-07' -- '2013-12-08' -- '2013-12-09' -- '2013-12-10' -- '2013-12-11' -- '2013-12-12' -- '2013-12-13' -- '2013-12-14' -- '2013-12-15' -- '2013-12-16' -- '2013-12-17' -- '2013-12-18' -- '2013-12-19' -- '2013-12-20' -- '2013-12-21' -- '2013-12-22' -- '2013-12-23' -- '2013-12-24' -- '2013-12-25' -- '2013-12-26' -- '2013-12-27' -- '2013-12-28' -- '2013-12-29' -- '2013-12-30' -- '2013-12-31' -- '2014-01-01' -- '2014-01-02' -- '2014-01-03' -- '2014-01-04' -- '2014-01-05' -- '2014-01-06' -- '2014-01-07' -- '2014-01-08' -- '2014-01-09' -- '2014-01-10' -- '2014-01-11' -- '2014-01-12' -- '2014-01-13' -- '2014-01-14' -- '2014-01-15' -- '2014-01-16' -- '2014-01-17' -- '2014-01-18' -- '2014-01-19' -- '2014-01-20' -- '2014-01-21' -- '2014-01-22' -- '2014-01-23' -- '2014-01-24' -- '2014-01-25' -- '2014-01-26' -- '2014-01-27' -- '2014-01-28' -- '2014-01-29' -- '2014-01-30' -- '2014-01-31' -- '2014-02-01' -- '2014-02-02' -- '2014-02-03' -- '2014-02-04' -- '2014-02-05' -- '2014-02-06' -- '2014-02-07' -- '2014-02-08' -- '2014-02-09' -- '2014-02-10' -- '2014-02-11' -- '2014-02-12' -- '2014-02-13' -- '2014-02-14' -- '2014-02-15' -- '2014-02-16' -- '2014-02-17' -- '2014-02-18' -- '2014-02-19' -- '2014-02-20' -- '2014-02-21' -- '2014-02-22' -- '2014-02-23' -- '2014-02-24' -- '2014-02-25' -- '2014-02-26' -- '2014-02-27' -- '2014-02-28' -- '2014-03-01' -- '2014-03-02' -- '2014-03-03' -- '2014-03-04' -- '2014-03-05' -- '2014-03-06' -- '2014-03-07' -- '2014-03-08' -- '2014-03-09' -- '2014-03-10' -- '2014-03-11' -- '2014-03-12' -- '2014-03-13' -- '2014-03-14' -- '2014-03-15' -- '2014-03-16' -- '2014-03-17' -- '2014-03-18' -- '2014-03-19' -- '2014-03-20' -- '2014-03-21' -- '2014-03-22' -- '2014-03-23' -- '2014-03-24' -- '2014-03-25' -- '2014-03-26' -- '2014-03-27' -- '2014-03-28' -- '2014-03-29' -- '2014-03-30' -- '2014-03-31' -- '2014-04-01' -- '2014-04-02' -- '2014-04-03' -- '2014-04-04' -- '2014-04-05' -- '2014-04-06' -- '2014-04-07' -- '2014-04-08' -- '2014-04-09' -- '2014-04-10' -- '2014-04-11' -- '2014-04-12' -- '2014-04-13' -- '2014-04-14' -- '2014-04-15' -- '2014-04-16' -- '2014-04-17' -- '2014-04-18' -- '2014-04-19' -- '2014-04-20' -- '2014-04-21' -- '2014-04-22' -- '2014-04-23' -- '2014-04-24' -- '2014-04-25' -- '2014-04-26' -- '2014-04-27' -- '2014-04-28' -- '2014-04-29' -- '2014-04-30' -- '2014-05-01' -- '2014-05-02' -- '2014-05-03' -- '2014-05-04' -- '2014-05-05' -- '2014-05-06' -- '2014-05-07' -- '2014-05-08' -- '2014-05-09' -- '2014-05-10' -- '2014-05-11' -- '2014-05-12' -- '2014-05-13' -- '2014-05-14' -- '2014-05-15' -- '2014-05-16' -- '2014-05-17' -- '2014-05-18' -- '2014-05-19' -- '2014-05-20' -- '2014-05-21' -- '2014-05-22' -- '2014-05-23' -- '2014-05-24' -- '2014-05-25' -- '2014-05-26' -- '2014-05-27' -- '2014-05-28' -- '2014-05-29' -- '2014-05-30' -- '2014-05-31' -- '2014-06-01' -- '2014-06-02' -- '2014-06-03' -- '2014-06-04' -- '2014-06-05' -- '2014-06-06' -- '2014-06-07' -- '2014-06-08' -- '2014-06-09' -- '2014-06-10' -- '2014-06-11' -- '2014-06-12' -- '2014-06-13' -- '2014-06-14' -- '2014-06-15' -- '2014-06-16' -- '2014-06-17' -- '2014-06-18' -- '2014-06-19' -- '2014-06-20' -- '2014-06-21' -- '2014-06-22' -- '2014-06-23' -- '2014-06-24' -- '2014-06-25' -- '2014-06-26' -- '2014-06-27' -- '2014-06-28' -- '2014-06-29' -- '2014-06-30' -- '2014-07-01' -- '2014-07-02' -- '2014-07-03' -- '2014-07-04' -- '2014-07-05' -- '2014-07-06' -- '2014-07-07' -- '2014-07-08' -- '2014-07-09' -- '2014-07-10' -- '2014-07-11' -- '2014-07-12' -- '2014-07-13' -- '2014-07-14' -- '2014-07-15' -- '2014-07-16' -- '2014-07-17' -- '2014-07-18' -- '2014-07-19' -- '2014-07-20' -- '2014-07-21' -- '2014-07-22' -- '2014-07-23' -- '2014-07-24' -- '2014-07-25' -- '2014-07-26' -- '2014-07-27' -- '2014-07-28' -- '2014-07-29' -- '2014-07-30' -- '2014-07-31' -- '2014-08-01' -- '2014-08-02' -- '2014-08-03' -- '2014-08-04' -- '2014-08-05' -- '2014-08-06' -- '2014-08-07' -- '2014-08-08' -- '2014-08-09' -- '2014-08-10' -- '2014-08-11' -- '2014-08-12' -- '2014-08-13' -- '2014-08-14' -- '2014-08-15' -- '2014-08-16' -- '2014-08-17' -- '2014-08-18' -- '2014-08-19' -- '2014-08-20' -- '2014-08-21' -- '2014-08-22' -- '2014-08-23' -- '2014-08-24' -- '2014-08-25' -- '2014-08-26' -- '2014-08-27' -- '2014-08-28' -- '2014-08-29' -- '2014-08-30' -- '2014-08-31' -- '2014-09-01' -- '2014-09-02' -- '2014-09-03' -- '2014-09-04' -- '2014-09-05' -- '2014-09-06' -- '2014-09-07' -- '2014-09-08' -- '2014-09-09' -- '2014-09-10' -- '2014-09-11' -- '2014-09-12' -- '2014-09-13' -- '2014-09-14' -- '2014-09-15' -- '2014-09-16' -- '2014-09-17' -- '2014-09-18' -- '2014-09-19' -- '2014-09-20' -- '2014-09-21' -- '2014-09-22' -- '2014-09-23' -- '2014-09-24' -- '2014-09-25' -- '2014-09-26' -- '2014-09-27' -- '2014-09-28' -- '2014-09-29' -- '2014-09-30' -- '2014-10-01' -- '2014-10-02' -- '2014-10-03' -- '2014-10-04' -- '2014-10-05' -- '2014-10-06' -- '2014-10-07' -- '2014-10-08' -- '2014-10-09' -- '2014-10-10' -- '2014-10-11' -- '2014-10-12' -- '2014-10-13' -- '2014-10-14' -- '2014-10-15' -- '2014-10-16' -- '2014-10-17' -- '2014-10-18' -- '2014-10-19' -- '2014-10-20' -- '2014-10-21' -- '2014-10-22' -- '2014-10-23' -- '2014-10-24' -- '2014-10-25' -- '2014-10-26' -- '2014-10-27' -- '2014-10-28' -- '2014-10-29' -- '2014-10-30' -- '2014-10-31' -- '2014-11-01' -- '2014-11-02' -- '2014-11-03' -- '2014-11-04' -- '2014-11-05' -- '2014-11-06' -- '2014-11-07' -- '2014-11-08' -- '2014-11-09' -- '2014-11-10' -- '2014-11-11' -- '2014-11-12' -- '2014-11-13' -- '2014-11-14' -- '2014-11-15' -- '2014-11-16' -- '2014-11-17' -- '2014-11-18' -- '2014-11-19' -- '2014-11-20' -- '2014-11-21' -- '2014-11-22' -- '2014-11-23' -- '2014-11-24' -- '2014-11-25' -- '2014-11-26' -- '2014-11-27' -- '2014-11-28' -- '2014-11-29' -- '2014-11-30' -- '2014-12-01' -- '2014-12-02' -- '2014-12-03' -- '2014-12-04' -- '2014-12-05' -- '2014-12-06' -- '2014-12-07' -- '2014-12-08' -- '2014-12-09' -- '2014-12-10' -- '2014-12-11' -- '2014-12-12' -- '2014-12-13' -- '2014-12-14' -- '2014-12-15' -- '2014-12-16' -- '2014-12-17' -- '2014-12-18' -- '2014-12-19' -- '2014-12-20' -- '2014-12-21' -- '2014-12-22' -- '2014-12-23' -- '2014-12-24' -- '2014-12-25' -- '2014-12-26' -- '2014-12-27' -- '2014-12-28' -- '2014-12-29' -- '2014-12-30' -- '2014-12-31' -- '2015-01-01' -- '2015-01-02' -- '2015-01-03' -- '2015-01-04' -- '2015-01-05' -- '2015-01-06' -- '2015-01-07' -- '2015-01-08' -- '2015-01-09' -- '2015-01-10' -- '2015-01-11' -- '2015-01-12' -- '2015-01-13' -- '2015-01-14' -- '2015-01-15' -- '2015-01-16' -- '2015-01-17' -- '2015-01-18' -- '2015-01-19' -- '2015-01-20' -- '2015-01-21' -- '2015-01-22' -- '2015-01-23' -- '2015-01-24' -- '2015-01-25' -- '2015-01-26' -- '2015-01-27' -- '2015-01-28' -- '2015-01-29' -- '2015-01-30' -- '2015-01-31' -- '2015-02-01' -- '2015-02-02' -- '2015-02-03' -- '2015-02-04' -- '2015-02-05' -- '2015-02-06' -- '2015-02-07' -- '2015-02-08' -- '2015-02-09' -- '2015-02-10' -- '2015-02-11' -- '2015-02-12' -- '2015-02-13' -- '2015-02-14' -- '2015-02-15' -- '2015-02-16' -- '2015-02-17' -- '2015-02-18' -- '2015-02-19' -- '2015-02-20' -- '2015-02-21' -- '2015-02-22' -- '2015-02-23' -- '2015-02-24' -- '2015-02-25' -- '2015-02-26' -- '2015-02-27' -- '2015-02-28' -- '2015-03-01' -- '2015-03-02' -- '2015-03-03' -- '2015-03-04' -- '2015-03-05' -- '2015-03-06' -- '2015-03-07' -- '2015-03-08' -- '2015-03-09' -- '2015-03-10' -- '2015-03-11' -- '2015-03-12' -- '2015-03-13' -- '2015-03-14' -- '2015-03-15' -- '2015-03-16' -- '2015-03-17' -- '2015-03-18' -- '2015-03-19' -- '2015-03-20' -- '2015-03-21' -- '2015-03-22' -- '2015-03-23' -- '2015-03-24' -- '2015-03-25' -- '2015-03-26' -- '2015-03-27' -- '2015-03-28' -- '2015-03-29' -- '2015-03-30' -- '2015-03-31' -- '2015-04-01' -- '2015-04-02' -- '2015-04-03' -- '2015-04-04' -- '2015-04-05' -- '2015-04-06' -- '2015-04-07' -- '2015-04-08' -- '2015-04-09' -- '2015-04-10' -- '2015-04-11' -- '2015-04-12' -- '2015-04-13' -- '2015-04-14' -- '2015-04-15' -- '2015-04-16' -- '2015-04-17' -- '2015-04-18' -- '2015-04-19' -- '2015-04-20' -- '2015-04-21' -- '2015-04-22' -- '2015-04-23' -- '2015-04-24' -- '2015-04-25' -- '2015-04-26' -- '2015-04-27' -- '2015-04-28' -- '2015-04-29' -- '2015-04-30' -- '2015-05-01' -- '2015-05-02' -- '2015-05-03' -- '2015-05-04' -- '2015-05-05' -- '2015-05-06' -- '2015-05-07' -- '2015-05-08' -- '2015-05-09' -- '2015-05-10' -- '2015-05-11' -- '2015-05-12' -- '2015-05-13' -- '2015-05-14' -- '2015-05-15' -- '2015-05-16' -- '2015-05-17' -- '2015-05-18' -- '2015-05-19' -- '2015-05-20' -- '2015-05-21' -- '2015-05-22' -- '2015-05-23' -- '2015-05-24' -- '2015-05-25' -- '2015-05-26' -- '2015-05-27' -- '2015-05-28' -- '2015-05-29' -- '2015-05-30' -- '2015-05-31' -- '2015-06-01' -- '2015-06-02' -- '2015-06-03' -- '2015-06-04' -- '2015-06-05' -- '2015-06-06' -- '2015-06-07' -- '2015-06-08' -- '2015-06-09' -- '2015-06-10' -- '2015-06-11' -- '2015-06-12' -- '2015-06-13' -- '2015-06-14' -- '2015-06-15' -- '2015-06-16' -- '2015-06-17' -- '2015-06-18' -- '2015-06-19' -- '2015-06-20' -- '2015-06-21' -- '2015-06-22' -- '2015-06-23' -- '2015-06-24' -- '2015-06-25' -- '2015-06-26' -- '2015-06-27' -- '2015-06-28' -- '2015-06-29' -- '2015-06-30' -- '2015-07-01' -- '2015-07-02' -- '2015-07-03' -- '2015-07-04' -- '2015-07-05' -- '2015-07-06' -- '2015-07-07' -- '2015-07-08' -- '2015-07-09' -- '2015-07-10' -- '2015-07-11' -- '2015-07-12' -- '2015-07-13' -- '2015-07-14' -- '2015-07-15' -- '2015-07-16' -- '2015-07-17' -- '2015-07-18' -- '2015-07-19' -- '2015-07-20' -- '2015-07-21' -- '2015-07-22' -- '2015-07-23' -- '2015-07-24' -- '2015-07-25' -- '2015-07-26' -- '2015-07-27' -- '2015-07-28' -- '2015-07-29' -- '2015-07-30' -- '2015-07-31' -- '2015-08-01' -- '2015-08-02' -- '2015-08-03' -- '2015-08-04' -- '2015-08-05' -- '2015-08-06' -- '2015-08-07' -- '2015-08-08' -- '2015-08-09' -- '2015-08-10' -- '2015-08-11' -- '2015-08-12' -- '2015-08-13' -- '2015-08-14' -- '2015-08-15' -- '2015-08-16' -- '2015-08-17' -- '2015-08-18' -- '2015-08-19' -- '2015-08-20' -- '2015-08-21' -- '2015-08-22' -- '2015-08-23' -- '2015-08-24' -- '2015-08-25' -- '2015-08-26' -- '2015-08-27' -- '2015-08-28' -- '2015-08-29' -- '2015-08-30' -- '2015-08-31' -- '2015-09-01' -- '2015-09-02' -- '2015-09-03' -- '2015-09-04' -- '2015-09-05' -- '2015-09-06' -- '2015-09-07' -- '2015-09-08' -- '2015-09-09' -- '2015-09-10' -- '2015-09-11' -- '2015-09-12' -- '2015-09-13' -- '2015-09-14' -- '2015-09-15' -- '2015-09-16' -- '2015-09-17' -- '2015-09-18' -- '2015-09-19' -- '2015-09-20' -- '2015-09-21' -- '2015-09-22' -- '2015-09-23' -- '2015-09-24' -- '2015-09-25' -- '2015-09-26' -- '2015-09-27' -- '2015-09-28' -- '2015-09-29' -- '2015-09-30' -- '2015-10-01' -- '2015-10-02' -- '2015-10-03' -- '2015-10-04' -- '2015-10-05' -- '2015-10-06' -- '2015-10-07' -- '2015-10-08' -- '2015-10-09' -- '2015-10-10' -- '2015-10-11' -- '2015-10-12' -- '2015-10-13' -- '2015-10-14' -- '2015-10-15' -- '2015-10-16' -- '2015-10-17' -- '2015-10-18' -- '2015-10-19' -- '2015-10-20' -- '2015-10-21' -- '2015-10-22' -- '2015-10-23' -- '2015-10-24' -- '2015-10-25' -- '2015-10-26' -- '2015-10-27' -- '2015-10-28' -- '2015-10-29' -- '2015-10-30' -- '2015-10-31' -- '2015-11-01' -- '2015-11-02' -- '2015-11-03' -- '2015-11-04' -- '2015-11-05' -- '2015-11-06' -- '2015-11-07' -- '2015-11-08' -- '2015-11-09' -- '2015-11-10' -- '2015-11-11' -- '2015-11-12' -- '2015-11-13' -- '2015-11-14' -- '2015-11-15' -- '2015-11-16' -- '2015-11-17' -- '2015-11-18' -- '2015-11-19' -- '2015-11-20' -- '2015-11-21' -- '2015-11-22' -- '2015-11-23' -- '2015-11-24' -- '2015-11-25' -- '2015-11-26' -- '2015-11-27' -- '2015-11-28' -- '2015-11-29' -- '2015-11-30' -- '2015-12-01' -- '2015-12-02' -- '2015-12-03' -- '2015-12-04' -- '2015-12-05' -- '2015-12-06' -- '2015-12-07' -- '2015-12-08' -- '2015-12-09' -- '2015-12-10' -- '2015-12-11' -- '2015-12-12' -- '2015-12-13' -- '2015-12-14' -- '2015-12-15' -- '2015-12-16' -- '2015-12-17' -- '2015-12-18' -- '2015-12-19' -- '2015-12-20' -- '2015-12-21' -- '2015-12-22' -- '2015-12-23' -- '2015-12-24' -- '2015-12-25' -- '2015-12-26' -- '2015-12-27' -- '2015-12-28' -- '2015-12-29' -- '2015-12-30' -- '2015-12-31' -- '2016-01-01' -- '2016-01-02' -- '2016-01-03' -- '2016-01-04' -- '2016-01-05' -- '2016-01-06' -- '2016-01-07' -- '2016-01-08' -- '2016-01-09' -- '2016-01-10' -- '2016-01-11' -- '2016-01-12' -- '2016-01-13' -- '2016-01-14' -- '2016-01-15' -- '2016-01-16' -- '2016-01-17' -- '2016-01-18' -- '2016-01-19' -- '2016-01-20' -- '2016-01-21' -- '2016-01-22' -- '2016-01-23' -- '2016-01-24' -- '2016-01-25' -- '2016-01-26' -- '2016-01-27' -- '2016-01-28' -- '2016-01-29' -- '2016-01-30' -- '2016-01-31' -- '2016-02-01' -- '2016-02-02' -- '2016-02-03' -- '2016-02-04' -- '2016-02-05' -- '2016-02-06' -- '2016-02-07' -- '2016-02-08' -- '2016-02-09' -- '2016-02-10' -- '2016-02-11' -- '2016-02-12' -- '2016-02-13' -- '2016-02-14' -- '2016-02-15' -- '2016-02-16' -- '2016-02-17' -- '2016-02-18' -- '2016-02-19' -- '2016-02-20' -- '2016-02-21' -- '2016-02-22' -- '2016-02-23' -- '2016-02-24' -- '2016-02-25' -- '2016-02-26' -- '2016-02-27' -- '2016-02-28' -- '2016-02-29' -- '2016-03-01' -- '2016-03-02' -- '2016-03-03' -- '2016-03-04' -- '2016-03-05' -- '2016-03-06' -- '2016-03-07' -- '2016-03-08' -- '2016-03-09' -- '2016-03-10' -- '2016-03-11' -- '2016-03-12' -- '2016-03-13' -- '2016-03-14' -- '2016-03-15' -- '2016-03-16' -- '2016-03-17' -- '2016-03-18' -- '2016-03-19' -- '2016-03-20' -- '2016-03-21' -- '2016-03-22' -- '2016-03-23' -- '2016-03-24' -- '2016-03-25' -- '2016-03-26' -- '2016-03-27' -- '2016-03-28' -- '2016-03-29' -- '2016-03-30' -- '2016-03-31' -- '2016-04-01' -- '2016-04-02' -- '2016-04-03' -- '2016-04-04' -- '2016-04-05' -- '2016-04-06' -- '2016-04-07' -- '2016-04-08' -- '2016-04-09' -- '2016-04-10' -- '2016-04-11' -- '2016-04-12' -- '2016-04-13' -- '2016-04-14' -- '2016-04-15' -- '2016-04-16' -- '2016-04-17' -- '2016-04-18' -- '2016-04-19' -- '2016-04-20' -- '2016-04-21' -- '2016-04-22' -- '2016-04-23' -- '2016-04-24' -- '2016-04-25' -- '2016-04-26' -- '2016-04-27' -- '2016-04-28' -- '2016-04-29' -- '2016-04-30' -- '2016-05-01' -- '2016-05-02' -- '2016-05-03' -- '2016-05-04' -- '2016-05-05' -- '2016-05-06' -- '2016-05-07' -- '2016-05-08' -- '2016-05-09' -- '2016-05-10' -- '2016-05-11' -- '2016-05-12' -- '2016-05-13' -- '2016-05-14' -- '2016-05-15' -- '2016-05-16' -- '2016-05-17' -- '2016-05-18' -- '2016-05-19' -- '2016-05-20' -- '2016-05-21' -- '2016-05-22' -- '2016-05-23' -- '2016-05-24' -- '2016-05-25' -- '2016-05-26' -- '2016-05-27' -- '2016-05-28' -- '2016-05-29' -- '2016-05-30' -- '2016-05-31' -- '2016-06-01' -- '2016-06-02' -- '2016-06-03' -- '2016-06-04' -- '2016-06-05' -- '2016-06-06' -- '2016-06-07' -- '2016-06-08' -- '2016-06-09' -- '2016-06-10' -- '2016-06-11' -- '2016-06-12' -- '2016-06-13' -- '2016-06-14' -- '2016-06-15' -- '2016-06-16' -- '2016-06-17' -- '2016-06-18' -- '2016-06-19' -- '2016-06-20' -- '2016-06-21' -- '2016-06-22' -- '2016-06-23' -- '2016-06-24' -- '2016-06-25' -- '2016-06-26' -- '2016-06-27' -- '2016-06-28' -- '2016-06-29' -- '2016-06-30' -- '2016-07-01' -- '2016-07-02' -- '2016-07-03' -- '2016-07-04' -- '2016-07-05' -- '2016-07-06' -- '2016-07-07' -- '2016-07-08' -- '2016-07-09' -- '2016-07-10' -- '2016-07-11' -- '2016-07-12' -- '2016-07-13' -- '2016-07-14' -- '2016-07-15' -- '2016-07-16' -- '2016-07-17' -- '2016-07-18' -- '2016-07-19' -- '2016-07-20' -- '2016-07-21' -- '2016-07-22' -- '2016-07-23' -- '2016-07-24' -- '2016-07-25' -- '2016-07-26' -- '2016-07-27' -- '2016-07-28' -- '2016-07-29' -- '2016-07-30' -- '2016-07-31' -- '2016-08-01' -- '2016-08-02' -- '2016-08-03' -- '2016-08-04' -- '2016-08-05' -- '2016-08-06' -- '2016-08-07' -- '2016-08-08' -- '2016-08-09' -- '2016-08-10' -- '2016-08-11' -- '2016-08-12' -- '2016-08-13' -- '2016-08-14' -- '2016-08-15' -- '2016-08-16' -- '2016-08-17' -- '2016-08-18' -- '2016-08-19' -- '2016-08-20' -- '2016-08-21' -- '2016-08-22' -- '2016-08-23' -- '2016-08-24' -- '2016-08-25' -- '2016-08-26' -- '2016-08-27' -- '2016-08-28' -- '2016-08-29' -- '2016-08-30' -- '2016-08-31' -- '2016-09-01' -- '2016-09-02' -- '2016-09-03' -- '2016-09-04' -- '2016-09-05' -- '2016-09-06' -- '2016-09-07' -- '2016-09-08' -- '2016-09-09' -- '2016-09-10' -- '2016-09-11' -- '2016-09-12' -- '2016-09-13' -- '2016-09-14' -- '2016-09-15' -- '2016-09-16' -- '2016-09-17' -- '2016-09-18' -- '2016-09-19' -- '2016-09-20' -- '2016-09-21' -- '2016-09-22' -- '2016-09-23' -- '2016-09-24' -- '2016-09-25' -- '2016-09-26' -- '2016-09-27' -- '2016-09-28' -- '2016-09-29' -- '2016-09-30' -- '2016-10-01' -- '2016-10-02' -- '2016-10-03' -- '2016-10-04' -- '2016-10-05' -- '2016-10-06' -- '2016-10-07' -- '2016-10-08' -- '2016-10-09' -- '2016-10-10' -- '2016-10-11' -- '2016-10-12' -- '2016-10-13' -- '2016-10-14' -- '2016-10-15' -- '2016-10-16' -- '2016-10-17' -- '2016-10-18' -- '2016-10-19' -- '2016-10-20' -- '2016-10-21' -- '2016-10-22' -- '2016-10-23' -- '2016-10-24' -- '2016-10-25' -- '2016-10-26' -- '2016-10-27' -- '2016-10-28' -- '2016-10-29' -- '2016-10-30' -- '2016-10-31' -- '2016-11-01' -- '2016-11-02' -- '2016-11-03' -- '2016-11-04' -- '2016-11-05' -- '2016-11-06' -- '2016-11-07' -- '2016-11-08' -- '2016-11-09' -- '2016-11-10' -- '2016-11-11' -- '2016-11-12' -- '2016-11-13' -- '2016-11-14' -- '2016-11-15' -- '2016-11-16' -- '2016-11-17' -- '2016-11-18' -- '2016-11-19' -- '2016-11-20' -- '2016-11-21' -- '2016-11-22' -- '2016-11-23' -- '2016-11-24' -- '2016-11-25' -- '2016-11-26' -- '2016-11-27' -- '2016-11-28' -- '2016-11-29' -- '2016-11-30' -- '2016-12-01' -- '2016-12-02' -- '2016-12-03' -- '2016-12-04' -- '2016-12-05' -- '2016-12-06' -- '2016-12-07' -- '2016-12-08' -- '2016-12-09' -- '2016-12-10' -- '2016-12-11' -- '2016-12-12' -- '2016-12-13' -- '2016-12-14' -- '2016-12-15' -- '2016-12-16' -- '2016-12-17' -- '2016-12-18' -- '2016-12-19' -- '2016-12-20' -- '2016-12-21' -- '2016-12-22' -- '2016-12-23' -- '2016-12-24' -- '2016-12-25' -- '2016-12-26' -- '2016-12-27' -- '2016-12-28' -- '2016-12-29' -- '2016-12-30' -- '2016-12-31' -- '2017-01-01' -- '2017-01-02' -- '2017-01-03' -- '2017-01-04' -- '2017-01-05' -- '2017-01-06' -- '2017-01-07' -- '2017-01-08' -- '2017-01-09' -- '2017-01-10' -- '2017-01-11' -- '2017-01-12' -- '2017-01-13' -- '2017-01-14' -- '2017-01-15' -- '2017-01-16' -- '2017-01-17' -- '2017-01-18' -- '2017-01-19' -- '2017-01-20' -- '2017-01-21' -- '2017-01-22' -- '2017-01-23' -- '2017-01-24' -- '2017-01-25' -- '2017-01-26' -- '2017-01-27' -- '2017-01-28' -- '2017-01-29' -- '2017-01-30' -- '2017-01-31' -- '2017-02-01' -- '2017-02-02' -- '2017-02-03' -- '2017-02-04' -- '2017-02-05' -- '2017-02-06' -- '2017-02-07' -- '2017-02-08' -- '2017-02-09' -- '2017-02-10' -- '2017-02-11' -- '2017-02-12' -- '2017-02-13' -- '2017-02-14' -- '2017-02-15' -- '2017-02-16' -- '2017-02-17' -- '2017-02-18' -- '2017-02-19' -- '2017-02-20' -- '2017-02-21' -- '2017-02-22' -- '2017-02-23' -- '2017-02-24' -- '2017-02-25' -- '2017-02-26' -- '2017-02-27' -- '2017-02-28' -- '2017-03-01' -- '2017-03-02' -- '2017-03-03' -- '2017-03-04' -- '2017-03-05' -- '2017-03-06' -- '2017-03-07' -- '2017-03-08' -- '2017-03-09' -- '2017-03-10' -- '2017-03-11' -- '2017-03-12' -- '2017-03-13' -- '2017-03-14' -- '2017-03-15' -- '2017-03-16' -- '2017-03-17' -- '2017-03-18' -- '2017-03-19' -- '2017-03-20' -- '2017-03-21' -- '2017-03-22' -- '2017-03-23' -- '2017-03-24' -- '2017-03-25' -- '2017-03-26' -- '2017-03-27' -- '2017-03-28' -- '2017-03-29' -- '2017-03-30' -- '2017-03-31' -- '2017-04-01' -- '2017-04-02' -- '2017-04-03' -- '2017-04-04' -- '2017-04-05' -- '2017-04-06' -- '2017-04-07' -- '2017-04-08' -- '2017-04-09' -- '2017-04-10' -- '2017-04-11' -- '2017-04-12' -- '2017-04-13' -- '2017-04-14' -- '2017-04-15' -- '2017-04-16' -- '2017-04-17' -- '2017-04-18' -- '2017-04-19' -- '2017-04-20' -- '2017-04-21' -- '2017-04-22' -- '2017-04-23' -- '2017-04-24' -- '2017-04-25' -- '2017-04-26' -- '2017-04-27' -- '2017-04-28' -- '2017-04-29' -- '2017-04-30' -- '2017-05-01' -- '2017-05-02' -- '2017-05-03' -- '2017-05-04' -- '2017-05-05' -- '2017-05-06' -- '2017-05-07' -- '2017-05-08' -- '2017-05-09' -- '2017-05-10' -- '2017-05-11' -- '2017-05-12' -- '2017-05-13' -- '2017-05-14' -- '2017-05-15' -- '2017-05-16' -- '2017-05-17' -- '2017-05-18' -- '2017-05-19' -- '2017-05-20' -- '2017-05-21' -- '2017-05-22' -- '2017-05-23' -- '2017-05-24' -- '2017-05-25' -- '2017-05-26' -- '2017-05-27' -- '2017-05-28' -- '2017-05-29' -- '2017-05-30' -- '2017-05-31' -- '2017-06-01' -- '2017-06-02' -- '2017-06-03' -- '2017-06-04' -- '2017-06-05' -- '2017-06-06' -- '2017-06-07' -- '2017-06-08' -- '2017-06-09' -- '2017-06-10' -- '2017-06-11' -- '2017-06-12' -- '2017-06-13' -- '2017-06-14' -- '2017-06-15' -- '2017-06-16' -- '2017-06-17' -- '2017-06-18' -- '2017-06-19' -- '2017-06-20' -- '2017-06-21' -- '2017-06-22' -- '2017-06-23' -- '2017-06-24' -- '2017-06-25' -- '2017-06-26' -- '2017-06-27' -- '2017-06-28' -- '2017-06-29' -- '2017-06-30' -- '2017-07-01' -- '2017-07-02' -- '2017-07-03' -- '2017-07-04' -- '2017-07-05' -- '2017-07-06' -- '2017-07-07' -- '2017-07-08' -- '2017-07-09' -- '2017-07-10' -- '2017-07-11' -- '2017-07-12' -- '2017-07-13' -- '2017-07-14' -- '2017-07-15' -- '2017-07-16' -- '2017-07-17' -- '2017-07-18' -- '2017-07-19' -- '2017-07-20' -- '2017-07-21' -- '2017-07-22' -- '2017-07-23' -- '2017-07-24' -- '2017-07-25' -- '2017-07-26' -- '2017-07-27' -- '2017-07-28' -- '2017-07-29' -- '2017-07-30' -- '2017-07-31' -- '2017-08-01' -- '2017-08-02' -- '2017-08-03' -- '2017-08-04' -- '2017-08-05' -- '2017-08-06' -- '2017-08-07' -- '2017-08-08' -- '2017-08-09' -- '2017-08-10' -- '2017-08-11' -- '2017-08-12' -- '2017-08-13' -- '2017-08-14' -- '2017-08-15' -- '2017-08-16' -- '2017-08-17' -- '2017-08-18' -- '2017-08-19' -- '2017-08-20' -- '2017-08-21' -- '2017-08-22' -- '2017-08-23' -- '2017-08-24' -- '2017-08-25' -- '2017-08-26' -- '2017-08-27' -- '2017-08-28' -- '2017-08-29' -- '2017-08-30' -- '2017-08-31' -- '2017-09-01' -- '2017-09-02' -- '2017-09-03' -- '2017-09-04' -- '2017-09-05' -- '2017-09-06' -- '2017-09-07' -- '2017-09-08' -- '2017-09-09' -- '2017-09-10' -- '2017-09-11' -- '2017-09-12' -- '2017-09-13' -- '2017-09-14' -- '2017-09-15' -- '2017-09-16' -- '2017-09-17' -- '2017-09-18' -- '2017-09-19' -- '2017-09-20' -- '2017-09-21' -- '2017-09-22' -- '2017-09-23' -- '2017-09-24' -- '2017-09-25' -- '2017-09-26' -- '2017-09-27' -- '2017-09-28' -- '2017-09-29' -- '2017-09-30' -- '2017-10-01' -- '2017-10-02' -- '2017-10-03' -- '2017-10-04' -- '2017-10-05' -- '2017-10-06' -- '2017-10-07' -- '2017-10-08' -- '2017-10-09' -- '2017-10-10' -- '2017-10-11' -- '2017-10-12' -- '2017-10-13' -- '2017-10-14' -- '2017-10-15' -- '2017-10-16' -- '2017-10-17' -- '2017-10-18' -- '2017-10-19' -- '2017-10-20' -- '2017-10-21' -- '2017-10-22' -- '2017-10-23' -- '2017-10-24' -- '2017-10-25' -- '2017-10-26' -- '2017-10-27' -- '2017-10-28' -- '2017-10-29' -- '2017-10-30' -- '2017-10-31' -- '2017-11-01' -- '2017-11-02' -- '2017-11-03' -- '2017-11-04' -- '2017-11-05' -- '2017-11-06' -- '2017-11-07' -- '2017-11-08' -- '2017-11-09' -- '2017-11-10' -- '2017-11-11' -- '2017-11-12' -- '2017-11-13' -- '2017-11-14' -- '2017-11-15' -- '2017-11-16' -- '2017-11-17' -- '2017-11-18' -- '2017-11-19' -- '2017-11-20' -- '2017-11-21' -- '2017-11-22' -- '2017-11-23' -- '2017-11-24' -- '2017-11-25' -- '2017-11-26' -- '2017-11-27' -- '2017-11-28' -- '2017-11-29' -- '2017-11-30' -- '2017-12-01' -- '2017-12-02' -- '2017-12-03' -- '2017-12-04' -- '2017-12-05' -- '2017-12-06' -- '2017-12-07' -- '2017-12-08' -- '2017-12-09' -- '2017-12-10' -- '2017-12-11' -- '2017-12-12' -- '2017-12-13' -- '2017-12-14' -- '2017-12-15' -- '2017-12-16' -- '2017-12-17' -- '2017-12-18' -- '2017-12-19' -- '2017-12-20' -- '2017-12-21' -- '2017-12-22' -- '2017-12-23' -- '2017-12-24' -- '2017-12-25' -- '2017-12-26' -- '2017-12-27' -- '2017-12-28' -- '2017-12-29' -- '2017-12-30' -- '2017-12-31' -- '2018-01-01' -- '2018-01-02' -- '2018-01-03' -- '2018-01-04' -- '2018-01-05' -- '2018-01-06' -- '2018-01-07' -- '2018-01-08' -- '2018-01-09' -- '2018-01-10' -- '2018-01-11' -- '2018-01-12' -- '2018-01-13' -- '2018-01-14' -- '2018-01-15' -- '2018-01-16' -- '2018-01-17' -- '2018-01-18' -- '2018-01-19' -- '2018-01-20' -- '2018-01-21' -- '2018-01-22' -- '2018-01-23' -- '2018-01-24' -- '2018-01-25' -- '2018-01-26' -- '2018-01-27' -- '2018-01-28' -- '2018-01-29' -- '2018-01-30' -- '2018-01-31' -- '2018-02-01' -- '2018-02-02' -- '2018-02-03' -- '2018-02-04' -- '2018-02-05' -- '2018-02-06' -- '2018-02-07' -- '2018-02-08' -- '2018-02-09' -- '2018-02-10' -- '2018-02-11' -- '2018-02-12' -- '2018-02-13' -- '2018-02-14' -- '2018-02-15' -- '2018-02-16' -- '2018-02-17' -- '2018-02-18' -- '2018-02-19' -- '2018-02-20' -- '2018-02-21' -- '2018-02-22' -- '2018-02-23' -- '2018-02-24' -- '2018-02-25' -- '2018-02-26' -- '2018-02-27' -- '2018-02-28' -- '2018-03-01' -- '2018-03-02' -- '2018-03-03' -- '2018-03-04' -- '2018-03-05' -- '2018-03-06' -- '2018-03-07' -- '2018-03-08' -- '2018-03-09' -- '2018-03-10' -- '2018-03-11' -- '2018-03-12' -- '2018-03-13' -- '2018-03-14' -- '2018-03-15' -- '2018-03-16' -- '2018-03-17' -- '2018-03-18' -- '2018-03-19' -- '2018-03-20' -- '2018-03-21' -- '2018-03-22' -- '2018-03-23' -- '2018-03-24' -- '2018-03-25' -- '2018-03-26' -- '2018-03-27' -- '2018-03-28' -- '2018-03-29' -- '2018-03-30' -- '2018-03-31' -- '2018-04-01' -- '2018-04-02' -- '2018-04-03' -- '2018-04-04' -- '2018-04-05' -- '2018-04-06' -- '2018-04-07' -- '2018-04-08' -- '2018-04-09' -- '2018-04-10' -- '2018-04-11' -- '2018-04-12' -- '2018-04-13' -- '2018-04-14' -- '2018-04-15' -- '2018-04-16' -- '2018-04-17' -- '2018-04-18' -- '2018-04-19' -- '2018-04-20' -- '2018-04-21' -- '2018-04-22' -- '2018-04-23' -- '2018-04-24' -- '2018-04-25' -- '2018-04-26' -- '2018-04-27' -- '2018-04-28' -- '2018-04-29' -- '2018-04-30' -- '2018-05-01' -- '2018-05-02' -- '2018-05-03' -- '2018-05-04' -- '2018-05-05' -- '2018-05-06' -- '2018-05-07' -- '2018-05-08' -- '2018-05-09' -- '2018-05-10' -- '2018-05-11' -- '2018-05-12' -- '2018-05-13' -- '2018-05-14' -- '2018-05-15' -- '2018-05-16' -- '2018-05-17' -- '2018-05-18' -- '2018-05-19' -- '2018-05-20' -- '2018-05-21' -- '2018-05-22' -- '2018-05-23' -- '2018-05-24' -- '2018-05-25' -- '2018-05-26' -- '2018-05-27' -- '2018-05-28' -- '2018-05-29' -- '2018-05-30' -- '2018-05-31' -- '2018-06-01' -- '2018-06-02' -- '2018-06-03' -- '2018-06-04' -- '2018-06-05' -- '2018-06-06' -- '2018-06-07' -- '2018-06-08' -- '2018-06-09' -- '2018-06-10' -- '2018-06-11' -- '2018-06-12' -- '2018-06-13' -- '2018-06-14' -- '2018-06-15' -- '2018-06-16' -- '2018-06-17' -- '2018-06-18' -- '2018-06-19' -- '2018-06-20' -- '2018-06-21' -- '2018-06-22' -- '2018-06-23' -- '2018-06-24' -- '2018-06-25' -- '2018-06-26' -- '2018-06-27' -- '2018-06-28' -- '2018-06-29' -- '2018-06-30' -- '2018-07-01' -- '2018-07-02' -- '2018-07-03' -- '2018-07-04' -- '2018-07-05' -- '2018-07-06' -- '2018-07-07' -- '2018-07-08' -- '2018-07-09' -- '2018-07-10' -- '2018-07-11' -- '2018-07-12' -- '2018-07-13' -- '2018-07-14' -- '2018-07-15' -- '2018-07-16' -- '2018-07-17' -- '2018-07-18' -- '2018-07-19' -- '2018-07-20' -- '2018-07-21' -- '2018-07-22' -- '2018-07-23' -- '2018-07-24' -- '2018-07-25' -- '2018-07-26' -- '2018-07-27' -- '2018-07-28' -- '2018-07-29' -- '2018-07-30' -- '2018-07-31' -- '2018-08-01' -- '2018-08-02' -- '2018-08-03' -- '2018-08-04' -- '2018-08-05' -- '2018-08-06' -- '2018-08-07' -- '2018-08-08' -- '2018-08-09' -- '2018-08-10' -- '2018-08-11' -- '2018-08-12' -- '2018-08-13' -- '2018-08-14' -- '2018-08-15' -- '2018-08-16' -- '2018-08-17' -- '2018-08-18' -- '2018-08-19' -- '2018-08-20' -- '2018-08-21' -- '2018-08-22' -- '2018-08-23' -- '2018-08-24' -- '2018-08-25' -- '2018-08-26' -- '2018-08-27' -- '2018-08-28' -- '2018-08-29' -- '2018-08-30' -- '2018-08-31' -- '2018-09-01' -- '2018-09-02' -- '2018-09-03' -- '2018-09-04' -- '2018-09-05' -- '2018-09-06' -- '2018-09-07' -- '2018-09-08' -- '2018-09-09' -- '2018-09-10' -- '2018-09-11' -- '2018-09-12' -- '2018-09-13' -- '2018-09-14' -- '2018-09-15' -- '2018-09-16' -- '2018-09-17' -- '2018-09-18' -- '2018-09-19' -- '2018-09-20' -- '2018-09-21' -- '2018-09-22' -- '2018-09-23' -- '2018-09-24' -- '2018-09-25' -- '2018-09-26' -- '2018-09-27' -- '2018-09-28' -- '2018-09-29' -- '2018-09-30' -- '2018-10-01' -- '2018-10-02' -- '2018-10-03' -- '2018-10-04' -- '2018-10-05' -- '2018-10-06' -- '2018-10-07' -- '2018-10-08' -- '2018-10-09' -- '2018-10-10' -- '2018-10-11' -- '2018-10-12' -- '2018-10-13' -- '2018-10-14' -- '2018-10-15' -- '2018-10-16' -- '2018-10-17' -- '2018-10-18' -- '2018-10-19' -- '2018-10-20' -- '2018-10-21' -- '2018-10-22' -- '2018-10-23' -- '2018-10-24' -- '2018-10-25' -- '2018-10-26' -- '2018-10-27' -- '2018-10-28' -- '2018-10-29' -- '2018-10-30' -- '2018-10-31' -- '2018-11-01' -- '2018-11-02' -- '2018-11-03' -- '2018-11-04' -- '2018-11-05' -- '2018-11-06' -- '2018-11-07' -- '2018-11-08' -- '2018-11-09' -- '2018-11-10' -- '2018-11-11' -- '2018-11-12' -- '2018-11-13' -- '2018-11-14' -- '2018-11-15' -- '2018-11-16' -- '2018-11-17' -- '2018-11-18' -- '2018-11-19' -- '2018-11-20' -- '2018-11-21' -- '2018-11-22' -- '2018-11-23' -- '2018-11-24' -- '2018-11-25' -- '2018-11-26' -- '2018-11-27' -- '2018-11-28' -- '2018-11-29' -- '2018-11-30' -- '2018-12-01' -- '2018-12-02' -- '2018-12-03' -- '2018-12-04' -- '2018-12-05' -- '2018-12-06' -- '2018-12-07' -- '2018-12-08' -- '2018-12-09' -- '2018-12-10' -- '2018-12-11' -- '2018-12-12' -- '2018-12-13' -- '2018-12-14' -- '2018-12-15' -- '2018-12-16' -- '2018-12-17' -- '2018-12-18' -- '2018-12-19' -- '2018-12-20' -- '2018-12-21' -- '2018-12-22' -- '2018-12-23' -- '2018-12-24' -- '2018-12-25' -- '2018-12-26' -- '2018-12-27' -- '2018-12-28' -- '2018-12-29' -- '2018-12-30' -- '2018-12-31' -- '2019-01-01' -- '2019-01-02' -- '2019-01-03' -- '2019-01-04' -- '2019-01-05' -- '2019-01-06' -- '2019-01-07' -- '2019-01-08' -- '2019-01-09' -- '2019-01-10' -- '2019-01-11' -- '2019-01-12' -- '2019-01-13' -- '2019-01-14' -- '2019-01-15' -- '2019-01-16' -- '2019-01-17' -- '2019-01-18' -- '2019-01-19' -- '2019-01-20' -- '2019-01-21' -- '2019-01-22' -- '2019-01-23' -- '2019-01-24' -- '2019-01-25' -- '2019-01-26' -- '2019-01-27' -- '2019-01-28' -- '2019-01-29' -- '2019-01-30' -- '2019-01-31' -- '2019-02-01' -- '2019-02-02' -- '2019-02-03' -- '2019-02-04' -- '2019-02-05' -- '2019-02-06' -- '2019-02-07' -- '2019-02-08' -- '2019-02-09' -- '2019-02-10' -- '2019-02-11' -- '2019-02-12' -- '2019-02-13' -- '2019-02-14' -- '2019-02-15' -- '2019-02-16' -- '2019-02-17' -- '2019-02-18' -- '2019-02-19' -- '2019-02-20' -- '2019-02-21' -- '2019-02-22' -- '2019-02-23' -- '2019-02-24' -- '2019-02-25' -- '2019-02-26' -- '2019-02-27' -- '2019-02-28' -- '2019-03-01' -- '2019-03-02' -- '2019-03-03' -- '2019-03-04' -- '2019-03-05' -- '2019-03-06' -- '2019-03-07' -- '2019-03-08' -- '2019-03-09' -- '2019-03-10' -- '2019-03-11' -- '2019-03-12' -- '2019-03-13' -- '2019-03-14' -- '2019-03-15' -- '2019-03-16' -- '2019-03-17' -- '2019-03-18' -- '2019-03-19' -- '2019-03-20' -- '2019-03-21' -- '2019-03-22' -- '2019-03-23' -- '2019-03-24' -- '2019-03-25' -- '2019-03-26' -- '2019-03-27' -- '2019-03-28' -- '2019-03-29' -- '2019-03-30' -- '2019-03-31' -- '2019-04-01' -- '2019-04-02' -- '2019-04-03' -- '2019-04-04' -- '2019-04-05' -- '2019-04-06' -- '2019-04-07' -- '2019-04-08' -- '2019-04-09' -- '2019-04-10' -- '2019-04-11' -- '2019-04-12' -- '2019-04-13' -- '2019-04-14' -- '2019-04-15' -- '2019-04-16' -- '2019-04-17' -- '2019-04-18' -- '2019-04-19' -- '2019-04-20' -- '2019-04-21' -- '2019-04-22' -- '2019-04-23' -- '2019-04-24' -- '2019-04-25' -- '2019-04-26' -- '2019-04-27' -- '2019-04-28' -- '2019-04-29' -- '2019-04-30' -- '2019-05-01' -- '2019-05-02' -- '2019-05-03' -- '2019-05-04' -- '2019-05-05' -- '2019-05-06' -- '2019-05-07' -- '2019-05-08' -- '2019-05-09' -- '2019-05-10' -- '2019-05-11' -- '2019-05-12' -- '2019-05-13' -- '2019-05-14' -- '2019-05-15' -- '2019-05-16' -- '2019-05-17' -- '2019-05-18' -- '2019-05-19' -- '2019-05-20' -- '2019-05-21' -- '2019-05-22' -- '2019-05-23' -- '2019-05-24' -- '2019-05-25' -- '2019-05-26' -- '2019-05-27' -- '2019-05-28' -- '2019-05-29' -- '2019-05-30' -- '2019-05-31' -- '2019-06-01' -- '2019-06-02' -- '2019-06-03' -- '2019-06-04' -- '2019-06-05' -- '2019-06-06' -- '2019-06-07' -- '2019-06-08' -- '2019-06-09' -- '2019-06-10' -- '2019-06-11' -- '2019-06-12' -- '2019-06-13' -- '2019-06-14' -- '2019-06-15' -- '2019-06-16' -- '2019-06-17' -- '2019-06-18' -- '2019-06-19' -- '2019-06-20' -- '2019-06-21' -- '2019-06-22' -- '2019-06-23' -- '2019-06-24' -- '2019-06-25' -- '2019-06-26' -- '2019-06-27' -- '2019-06-28' -- '2019-06-29' -- '2019-06-30' -- '2019-07-01' -- '2019-07-02' -- '2019-07-03' -- '2019-07-04' -- '2019-07-05' -- '2019-07-06' -- '2019-07-07' -- '2019-07-08' -- '2019-07-09' -- '2019-07-10' -- '2019-07-11' -- '2019-07-12' -- '2019-07-13' -- '2019-07-14' -- '2019-07-15' -- '2019-07-16' -- '2019-07-17' -- '2019-07-18' -- '2019-07-19' -- '2019-07-20' -- '2019-07-21' -- '2019-07-22' -- '2019-07-23' -- '2019-07-24' -- '2019-07-25' -- '2019-07-26' -- '2019-07-27' -- '2019-07-28' -- '2019-07-29' -- '2019-07-30' -- '2019-07-31' -- '2019-08-01' -- '2019-08-02' -- '2019-08-03' -- '2019-08-04' -- '2019-08-05' -- '2019-08-06' -- '2019-08-07' -- '2019-08-08' -- '2019-08-09' -- '2019-08-10' -- '2019-08-11' -- '2019-08-12' -- '2019-08-13' -- '2019-08-14' -- '2019-08-15' -- '2019-08-16' -- '2019-08-17' -- '2019-08-18' -- '2019-08-19' -- '2019-08-20' -- '2019-08-21' -- '2019-08-22' -- '2019-08-23' -- '2019-08-24' -- '2019-08-25' -- '2019-08-26' -- '2019-08-27' -- '2019-08-28' -- '2019-08-29' -- '2019-08-30' -- '2019-08-31' -- '2019-09-01' -- '2019-09-02' -- '2019-09-03' -- '2019-09-04' -- '2019-09-05' -- '2019-09-06' -- '2019-09-07' -- '2019-09-08' -- '2019-09-09' -- '2019-09-10' -- '2019-09-11' -- '2019-09-12' -- '2019-09-13' -- '2019-09-14' -- '2019-09-15' -- '2019-09-16' -- '2019-09-17' -- '2019-09-18' -- '2019-09-19' -- '2019-09-20' -- '2019-09-21' -- '2019-09-22' -- '2019-09-23' -- '2019-09-24' -- '2019-09-25' -- '2019-09-26' -- '2019-09-27' -- '2019-09-28' -- '2019-09-29' -- '2019-09-30' -- '2019-10-01' -- '2019-10-02' -- '2019-10-03' -- '2019-10-04' -- '2019-10-05' -- '2019-10-06' -- '2019-10-07' -- '2019-10-08' -- '2019-10-09' -- '2019-10-10' -- '2019-10-11' -- '2019-10-12' -- '2019-10-13' -- '2019-10-14' -- '2019-10-15' -- '2019-10-16' -- '2019-10-17' -- '2019-10-18' -- '2019-10-19' -- '2019-10-20' -- '2019-10-21' -- '2019-10-22' -- '2019-10-23' -- '2019-10-24' -- '2019-10-25' -- '2019-10-26' -- '2019-10-27' -- '2019-10-28' -- '2019-10-29' -- '2019-10-30' -- '2019-10-31' -- '2019-11-01' -- '2019-11-02' -- '2019-11-03' -- '2019-11-04' -- '2019-11-05' -- '2019-11-06' -- '2019-11-07' -- '2019-11-08' -- '2019-11-09' -- '2019-11-10' -- '2019-11-11' -- '2019-11-12' -- '2019-11-13' -- '2019-11-14' -- '2019-11-15' -- '2019-11-16' -- '2019-11-17' -- '2019-11-18' -- '2019-11-19' -- '2019-11-20' -- '2019-11-21' -- '2019-11-22' -- '2019-11-23' -- '2019-11-24' -- '2019-11-25' -- '2019-11-26' -- '2019-11-27' -- '2019-11-28' -- '2019-11-29' -- '2019-11-30' -- '2019-12-01' -- '2019-12-02' -- '2019-12-03' -- '2019-12-04' -- '2019-12-05' -- '2019-12-06' -- '2019-12-07' -- '2019-12-08' -- '2019-12-09' -- '2019-12-10' -- '2019-12-11' -- '2019-12-12' -- '2019-12-13' -- '2019-12-14' -- '2019-12-15' -- '2019-12-16' -- '2019-12-17' -- '2019-12-18' -- '2019-12-19' -- '2019-12-20' -- '2019-12-21' -- '2019-12-22' -- '2019-12-23' -- '2019-12-24' -- '2019-12-25' -- '2019-12-26' -- '2019-12-27' -- '2019-12-28' -- '2019-12-29' -- '2019-12-30' -- '2019-12-31' -- '2020-01-01' -- '2020-01-02' -- '2020-01-03' -- '2020-01-04' -- '2020-01-05' -- '2020-01-06' -- '2020-01-07' -- '2020-01-08' -- '2020-01-09' -- '2020-01-10' -- '2020-01-11' -- '2020-01-12' -- '2020-01-13' -- '2020-01-14' -- '2020-01-15' -- '2020-01-16' -- '2020-01-17' -- '2020-01-18' -- '2020-01-19' -- '2020-01-20' -- '2020-01-21' -- '2020-01-22' -- '2020-01-23' -- '2020-01-24' -- '2020-01-25' -- '2020-01-26' -- '2020-01-27' -- '2020-01-28' -- '2020-01-29' -- '2020-01-30' -- '2020-01-31' -- '2020-02-01' -- '2020-02-02' -- '2020-02-03' -- '2020-02-04' -- '2020-02-05' -- '2020-02-06' -- '2020-02-07' -- '2020-02-08' -- '2020-02-09' -- '2020-02-10' -- '2020-02-11' -- '2020-02-12' -- '2020-02-13' -- '2020-02-14' -- '2020-02-15' -- '2020-02-16' -- '2020-02-17' -- '2020-02-18' -- '2020-02-19' -- '2020-02-20' -- '2020-02-21' -- '2020-02-22' -- '2020-02-23' -- '2020-02-24' -- '2020-02-25' -- '2020-02-26' -- '2020-02-27' -- '2020-02-28' -- '2020-02-29' -- '2020-03-01' -- '2020-03-02' -- '2020-03-03' -- '2020-03-04' -- '2020-03-05' -- '2020-03-06' -- '2020-03-07' -- '2020-03-08' -- '2020-03-09' -- '2020-03-10' -- '2020-03-11' -- '2020-03-12' -- '2020-03-13' -- '2020-03-14' -- '2020-03-15' -- '2020-03-16' -- '2020-03-17' -- '2020-03-18' -- '2020-03-19' -- '2020-03-20' -- '2020-03-21' -- '2020-03-22' -- '2020-03-23' -- '2020-03-24' -- '2020-03-25' -- '2020-03-26' -- '2020-03-27' -- '2020-03-28' -- '2020-03-29' -- '2020-03-30' -- '2020-03-31' -- '2020-04-01' -- '2020-04-02' -- '2020-04-03' -- '2020-04-04' -- '2020-04-05' -- '2020-04-06' -- '2020-04-07' -- '2020-04-08' -- '2020-04-09' -- '2020-04-10' -- '2020-04-11' -- '2020-04-12' -- '2020-04-13' -- '2020-04-14' -- '2020-04-15' -- '2020-04-16' -- '2020-04-17' -- '2020-04-18' -- '2020-04-19' -- '2020-04-20' -- '2020-04-21' -- '2020-04-22' -- '2020-04-23' -- '2020-04-24' -- '2020-04-25' -- '2020-04-26' -- '2020-04-27' -- '2020-04-28' -- '2020-04-29' -- '2020-04-30' -- '2020-05-01' -- '2020-05-02' -- '2020-05-03' -- '2020-05-04' -- '2020-05-05' -- '2020-05-06' -- '2020-05-07' -- '2020-05-08' -- '2020-05-09' -- '2020-05-10' -- '2020-05-11' -- '2020-05-12' -- '2020-05-13' -- '2020-05-14' -- '2020-05-15' -- '2020-05-16' -- '2020-05-17' -- '2020-05-18' -- '2020-05-19' -- '2020-05-20' -- '2020-05-21' -- '2020-05-22' -- '2020-05-23' -- '2020-05-24' -- '2020-05-25' -- '2020-05-26' -- '2020-05-27' -- '2020-05-28' -- '2020-05-29' -- '2020-05-30' -- '2020-05-31' -- '2020-06-01' -- '2020-06-02' -- '2020-06-03' -- '2020-06-04' -- '2020-06-05' -- '2020-06-06' -- '2020-06-07' -- '2020-06-08' -- '2020-06-09' -- '2020-06-10' -- '2020-06-11' -- '2020-06-12' -- '2020-06-13' -- '2020-06-14' -- '2020-06-15' -- '2020-06-16' -- '2020-06-17' -- '2020-06-18' -- '2020-06-19' -- '2020-06-20' -- '2020-06-21' -- '2020-06-22' -- '2020-06-23' -- '2020-06-24' -- '2020-06-25' -- '2020-06-26' -- '2020-06-27' -- '2020-06-28' -- '2020-06-29' -- '2020-06-30' -- '2020-07-01' -- '2020-07-02' -- '2020-07-03' -- '2020-07-04' -- '2020-07-05' -- '2020-07-06' -- '2020-07-07' -- '2020-07-08' -- '2020-07-09' -- '2020-07-10' -- '2020-07-11' -- '2020-07-12' -- '2020-07-13' -- '2020-07-14' -- '2020-07-15' -- '2020-07-16' -- '2020-07-17' -- '2020-07-18' -- '2020-07-19' -- '2020-07-20' -- '2020-07-21' -- '2020-07-22' -- '2020-07-23' -- '2020-07-24' -- '2020-07-25' -- '2020-07-26' -- '2020-07-27' -- '2020-07-28' -- '2020-07-29' -- '2020-07-30' -- '2020-07-31' -- '2020-08-01' -- '2020-08-02' -- '2020-08-03' -- '2020-08-04' -- '2020-08-05' -- '2020-08-06' -- '2020-08-07' -- '2020-08-08' -- '2020-08-09' -- '2020-08-10' -- '2020-08-11' -- '2020-08-12' -- '2020-08-13' -- '2020-08-14' -- '2020-08-15' -- '2020-08-16' -- '2020-08-17' -- '2020-08-18' -- '2020-08-19' -- '2020-08-20' -- '2020-08-21' -- '2020-08-22' -- '2020-08-23' -- '2020-08-24' -- '2020-08-25' -- '2020-08-26' -- '2020-08-27' -- '2020-08-28' -- '2020-08-29' -- '2020-08-30' -- '2020-08-31' -- '2020-09-01' -- '2020-09-02' -- '2020-09-03' -- '2020-09-04' -- '2020-09-05' -- '2020-09-06' -- '2020-09-07' -- '2020-09-08' -- '2020-09-09' -- '2020-09-10' -- '2020-09-11' -- '2020-09-12' -- '2020-09-13' -- '2020-09-14' -- '2020-09-15' -- '2020-09-16' -- '2020-09-17' -- '2020-09-18' -- '2020-09-19' -- '2020-09-20' -- '2020-09-21' -- '2020-09-22' -- '2020-09-23' -- '2020-09-24' -- '2020-09-25' -- '2020-09-26' -- '2020-09-27' -- '2020-09-28' -- '2020-09-29' -- '2020-09-30' -- '2020-10-01' -- '2020-10-02' -- '2020-10-03' -- '2020-10-04' -- '2020-10-05' -- '2020-10-06' -- '2020-10-07' -- '2020-10-08' -- '2020-10-09' -- '2020-10-10' -- '2020-10-11' -- '2020-10-12' -- '2020-10-13' -- '2020-10-14' -- '2020-10-15' -- '2020-10-16' -- '2020-10-17' -- '2020-10-18' -- '2020-10-19' -- '2020-10-20' -- '2020-10-21' -- '2020-10-22' -- '2020-10-23' -- '2020-10-24' -- '2020-10-25' -- '2020-10-26' -- '2020-10-27' -- '2020-10-28' -- '2020-10-29' -- '2020-10-30' -- '2020-10-31' -- '2020-11-01' -- '2020-11-02' -- '2020-11-03' -- '2020-11-04' -- '2020-11-05' -- '2020-11-06' -- '2020-11-07' -- '2020-11-08' -- '2020-11-09' -- '2020-11-10' -- '2020-11-11' -- '2020-11-12' -- '2020-11-13' -- '2020-11-14' -- '2020-11-15' -- '2020-11-16' -- '2020-11-17' -- '2020-11-18' -- '2020-11-19' -- '2020-11-20' -- '2020-11-21' -- '2020-11-22' -- '2020-11-23' -- '2020-11-24' -- '2020-11-25' -- '2020-11-26' -- '2020-11-27' -- '2020-11-28' -- '2020-11-29' -- '2020-11-30' -- '2020-12-01' -- '2020-12-02' -- '2020-12-03' -- '2020-12-04' -- '2020-12-05' -- '2020-12-06' -- '2020-12-07' -- '2020-12-08' -- '2020-12-09' -- '2020-12-10' -- '2020-12-11' -- '2020-12-12' -- '2020-12-13' -- '2020-12-14' -- '2020-12-15' -- '2020-12-16' -- '2020-12-17' -- '2020-12-18' -- '2020-12-19' -- '2020-12-20' -- '2020-12-21' -- '2020-12-22' -- '2020-12-23' -- '2020-12-24' -- '2020-12-25' -- '2020-12-26' -- '2020-12-27' -- '2020-12-28' -- '2020-12-29' -- '2020-12-30' -- '2020-12-31' -- '2021-01-01' -- '2021-01-02' -- '2021-01-03' -- '2021-01-04' -- '2021-01-05' -- '2021-01-06' -- '2021-01-07' -- '2021-01-08' -- '2021-01-09' -- '2021-01-10' -- '2021-01-11' -- '2021-01-12' -- '2021-01-13' -- '2021-01-14' -- '2021-01-15' -- '2021-01-16' -- '2021-01-17' -- '2021-01-18' -- '2021-01-19' -- '2021-01-20' -- '2021-01-21' -- '2021-01-22' -- '2021-01-23' -- '2021-01-24' -- '2021-01-25' -- '2021-01-26' -- '2021-01-27' -- '2021-01-28' -- '2021-01-29' -- '2021-01-30' -- '2021-01-31' -- '2021-02-01' -- '2021-02-02' -- '2021-02-03' -- '2021-02-04' -- '2021-02-05' -- '2021-02-06' -- '2021-02-07' -- '2021-02-08' -- '2021-02-09' -- '2021-02-10' -- '2021-02-11' -- '2021-02-12' -- '2021-02-13' -- '2021-02-14' -- '2021-02-15' -- '2021-02-16' -- '2021-02-17' -- '2021-02-18' -- '2021-02-19' -- '2021-02-20' -- '2021-02-21' -- '2021-02-22' -- '2021-02-23' -- '2021-02-24' -- '2021-02-25' -- '2021-02-26' -- '2021-02-27' -- '2021-02-28' -- '2021-03-01' -- '2021-03-02' -- '2021-03-03' -- '2021-03-04' -- '2021-03-05' -- '2021-03-06' -- '2021-03-07' -- '2021-03-08' -- '2021-03-09' -- '2021-03-10' -- '2021-03-11' -- '2021-03-12' -- '2021-03-13' -- '2021-03-14' -- '2021-03-15' -- '2021-03-16' -- '2021-03-17' -- '2021-03-18' -- '2021-03-19' -- '2021-03-20' -- '2021-03-21' -- '2021-03-22' -- '2021-03-23' -- '2021-03-24' -- '2021-03-25' -- '2021-03-26' -- '2021-03-27' -- '2021-03-28' -- '2021-03-29' -- '2021-03-30' -- '2021-03-31' -- '2021-04-01' -- '2021-04-02' -- '2021-04-03' -- '2021-04-04' -- '2021-04-05' -- '2021-04-06' -- '2021-04-07' -- '2021-04-08' -- '2021-04-09' -- '2021-04-10' -- '2021-04-11' -- '2021-04-12' -- '2021-04-13' -- '2021-04-14' -- '2021-04-15' -- '2021-04-16' -- '2021-04-17' -- '2021-04-18' -- '2021-04-19' -- '2021-04-20' -- '2021-04-21' -- '2021-04-22' -- '2021-04-23' -- '2021-04-24' -- '2021-04-25' -- '2021-04-26' -- '2021-04-27' -- '2021-04-28' -- '2021-04-29' -- '2021-04-30' -- '2021-05-01' -- '2021-05-02' -- '2021-05-03' -- '2021-05-04' -- '2021-05-05' -- '2021-05-06' -- '2021-05-07' -- '2021-05-08' -- '2021-05-09' -- '2021-05-10' -- '2021-05-11' -- '2021-05-12' -- '2021-05-13' -- '2021-05-14' -- '2021-05-15' -- '2021-05-16' -- '2021-05-17' -- '2021-05-18' -- '2021-05-19' -- '2021-05-20' -- '2021-05-21' -- '2021-05-22' -- '2021-05-23' -- '2021-05-24' -- '2021-05-25' -- '2021-05-26' -- '2021-05-27' -- '2021-05-28' -- '2021-05-29' -- '2021-05-30' -- '2021-05-31' -- '2021-06-01' -- '2021-06-02' -- '2021-06-03' -- '2021-06-04' -- '2021-06-05' -- '2021-06-06' -- '2021-06-07' -- '2021-06-08' -- '2021-06-09' -- '2021-06-10' -- '2021-06-11' -- '2021-06-12' -- '2021-06-13' -- '2021-06-14' -- '2021-06-15' -- '2021-06-16' -- '2021-06-17' -- '2021-06-18' -- '2021-06-19' -- '2021-06-20' -- '2021-06-21' -- '2021-06-22' -- '2021-06-23' -- '2021-06-24' -- '2021-06-25' -- '2021-06-26' -- '2021-06-27' -- '2021-06-28' -- '2021-06-29' -- '2021-06-30' -- '2021-07-01' -- '2021-07-02' -- '2021-07-03' -- '2021-07-04' -- '2021-07-05' -- '2021-07-06' -- '2021-07-07' -- '2021-07-08' -- '2021-07-09' -- '2021-07-10' -- '2021-07-11' -- '2021-07-12' -- '2021-07-13' -- '2021-07-14' -- '2021-07-15' -- '2021-07-16' -- '2021-07-17' -- '2021-07-18' -- '2021-07-19' -- '2021-07-20' -- '2021-07-21' -- '2021-07-22' -- '2021-07-23' -- '2021-07-24' -- '2021-07-25' -- '2021-07-26' -- '2021-07-27' -- '2021-07-28' -- '2021-07-29' -- '2021-07-30' -- '2021-07-31' -- '2021-08-01' -- '2021-08-02' -- '2021-08-03' -- '2021-08-04' -- '2021-08-05' -- '2021-08-06' -- '2021-08-07' -- '2021-08-08' -- '2021-08-09' -- '2021-08-10' -- '2021-08-11' -- '2021-08-12' -- '2021-08-13' -- '2021-08-14' -- '2021-08-15' -- '2021-08-16' -- '2021-08-17' -- '2021-08-18' -- '2021-08-19' -- '2021-08-20' -- '2021-08-21' -- '2021-08-22' -- '2021-08-23' -- '2021-08-24' -- '2021-08-25' -- '2021-08-26' -- '2021-08-27' -- '2021-08-28' -- '2021-08-29' -- '2021-08-30' -- '2021-08-31' -- '2021-09-01' -- '2021-09-02' -- '2021-09-03' -- '2021-09-04' -- '2021-09-05' -- '2021-09-06' -- '2021-09-07' -- '2021-09-08' -- '2021-09-09' -- '2021-09-10' -- '2021-09-11' -- '2021-09-12' -- '2021-09-13' -- '2021-09-14' -- '2021-09-15' -- '2021-09-16' -- '2021-09-17' -- '2021-09-18' -- '2021-09-19' -- '2021-09-20' -- '2021-09-21' -- '2021-09-22' -- '2021-09-23' -- '2021-09-24' -- '2021-09-25' -- '2021-09-26' -- '2021-09-27' -- '2021-09-28' -- '2021-09-29' -- '2021-09-30' -- '2021-10-01' -- '2021-10-02' -- '2021-10-03' -- '2021-10-04' -- '2021-10-05' -- '2021-10-06' -- '2021-10-07' -- '2021-10-08' -- '2021-10-09' -- '2021-10-10' -- '2021-10-11' -- '2021-10-12' -- '2021-10-13' -- '2021-10-14' -- '2021-10-15' -- '2021-10-16' -- '2021-10-17' -- '2021-10-18' -- '2021-10-19' -- '2021-10-20' -- '2021-10-21' -- '2021-10-22' -- '2021-10-23' -- '2021-10-24' -- '2021-10-25' -- '2021-10-26' -- '2021-10-27' -- '2021-10-28' -- '2021-10-29' -- '2021-10-30' -- '2021-10-31' -- '2021-11-01' -- '2021-11-02' -- '2021-11-03' -- '2021-11-04' -- '2021-11-05' -- '2021-11-06' -- '2021-11-07' -- '2021-11-08' -- '2021-11-09' -- '2021-11-10' -- '2021-11-11' -- '2021-11-12' -- '2021-11-13' -- '2021-11-14' -- '2021-11-15' -- '2021-11-16' -- '2021-11-17' -- '2021-11-18' -- '2021-11-19' -- '2021-11-20' -- '2021-11-21' -- '2021-11-22' -- '2021-11-23' -- '2021-11-24' -- '2021-11-25' -- '2021-11-26' -- '2021-11-27' -- '2021-11-28' -- '2021-11-29' -- '2021-11-30' -- '2021-12-01' -- '2021-12-02' -- '2021-12-03' -- '2021-12-04' -- '2021-12-05' -- '2021-12-06' -- '2021-12-07' -- '2021-12-08' -- '2021-12-09' -- '2021-12-10' -- '2021-12-11' -- '2021-12-12' -- '2021-12-13' -- '2021-12-14' -- '2021-12-15' -- '2021-12-16' -- '2021-12-17' -- '2021-12-18' -- '2021-12-19' -- '2021-12-20' -- '2021-12-21' -- '2021-12-22' -- '2021-12-23' -- '2021-12-24' -- '2021-12-25' -- '2021-12-26' -- '2021-12-27' -- '2021-12-28' -- '2021-12-29' -- '2021-12-30' -- '2021-12-31' -- '2022-01-01' -- '2022-01-02' -- '2022-01-03' -- '2022-01-04' -- '2022-01-05' -- '2022-01-06' -- '2022-01-07' -- '2022-01-08' -- '2022-01-09' -- '2022-01-10' -- '2022-01-11' -- '2022-01-12' -- '2022-01-13' -- '2022-01-14' -- '2022-01-15' -- '2022-01-16' -- '2022-01-17' -- '2022-01-18' -- '2022-01-19' -- '2022-01-20' -- '2022-01-21' -- '2022-01-22' -- '2022-01-23' -- '2022-01-24' -- '2022-01-25' -- '2022-01-26' -- '2022-01-27' -- '2022-01-28' -- '2022-01-29' -- '2022-01-30' -- '2022-01-31' -- '2022-02-01' -- '2022-02-02' -- '2022-02-03' -- '2022-02-04' -- '2022-02-05' -- '2022-02-06' -- '2022-02-07' -- '2022-02-08' -- '2022-02-09' -- '2022-02-10' -- '2022-02-11' -- '2022-02-12' -- '2022-02-13' -- '2022-02-14' -- '2022-02-15' -- '2022-02-16' -- '2022-02-17' -- '2022-02-18' -- '2022-02-19' -- '2022-02-20' -- '2022-02-21' -- '2022-02-22' -- '2022-02-23' -- '2022-02-24' -- '2022-02-25' -- '2022-02-26' -- '2022-02-27' -- '2022-02-28' -- '2022-03-01' -- '2022-03-02' -- '2022-03-03' -- '2022-03-04' -- '2022-03-05' -- '2022-03-06' -- '2022-03-07' -- '2022-03-08' -- '2022-03-09' -- '2022-03-10' -- '2022-03-11' -- '2022-03-12' -- '2022-03-13' -- '2022-03-14' -- '2022-03-15' -- '2022-03-16' -- '2022-03-17' -- '2022-03-18' -- '2022-03-19' -- '2022-03-20' -- '2022-03-21' -- '2022-03-22' -- '2022-03-23' -- '2022-03-24' -- '2022-03-25' -- '2022-03-26' -- '2022-03-27' -- '2022-03-28' -- '2022-03-29' -- '2022-03-30' -- '2022-03-31' -- '2022-04-01' -- '2022-04-02' -- '2022-04-03' -- '2022-04-04' -- '2022-04-05' -- '2022-04-06' -- '2022-04-07' -- '2022-04-08' -- '2022-04-09' -- '2022-04-10' -- '2022-04-11' -- '2022-04-12' -- '2022-04-13' -- '2022-04-14' -- '2022-04-15' -- '2022-04-16' -- '2022-04-17' -- '2022-04-18' -- '2022-04-19' -- '2022-04-20' -- '2022-04-21' -- '2022-04-22' -- '2022-04-23' -- '2022-04-24' -- '2022-04-25' -- '2022-04-26' -- '2022-04-27' -- '2022-04-28' -- '2022-04-29' -- '2022-04-30' -- '2022-05-01' -- '2022-05-02' -- '2022-05-03' -- '2022-05-04' -- '2022-05-05' -- '2022-05-06' -- '2022-05-07' -- '2022-05-08' -- '2022-05-09' -- '2022-05-10' -- '2022-05-11' -- '2022-05-12' -- '2022-05-13' -- '2022-05-14' -- '2022-05-15' -- '2022-05-16' -- '2022-05-17' -- '2022-05-18' -- '2022-05-19' -- '2022-05-20' -- '2022-05-21' -- '2022-05-22' -- '2022-05-23' -- '2022-05-24' -- '2022-05-25' -- '2022-05-26' -- '2022-05-27' -- '2022-05-28' -- '2022-05-29' -- '2022-05-30' -- '2022-05-31' -- '2022-06-01' -- '2022-06-02' -- '2022-06-03' -- '2022-06-04' -- '2022-06-05' -- '2022-06-06' -- '2022-06-07' -- '2022-06-08' -- '2022-06-09' -- '2022-06-10' -- '2022-06-11' -- '2022-06-12' -- '2022-06-13' -- '2022-06-14' -- '2022-06-15' -- '2022-06-16' -- '2022-06-17' -- '2022-06-18' -- '2022-06-19' -- '2022-06-20' -- '2022-06-21' -- '2022-06-22' -- '2022-06-23' -- '2022-06-24' -- '2022-06-25' -- '2022-06-26' -- '2022-06-27' -- '2022-06-28' -- '2022-06-29' -- '2022-06-30' -- '2022-07-01' -- '2022-07-02' -- '2022-07-03' -- '2022-07-04' -- '2022-07-05' -- '2022-07-06' -- '2022-07-07' -- '2022-07-08' -- '2022-07-09' -- '2022-07-10' -- '2022-07-11' -- '2022-07-12' -- '2022-07-13' -- '2022-07-14' -- '2022-07-15' -- '2022-07-16' -- '2022-07-17' -- '2022-07-18' -- '2022-07-19' -- '2022-07-20' -- '2022-07-21' -- '2022-07-22' -- '2022-07-23' -- '2022-07-24' -- '2022-07-25' -- '2022-07-26' -- '2022-07-27' -- '2022-07-28' -- '2022-07-29' -- '2022-07-30' -- '2022-07-31' -- '2022-08-01' -- '2022-08-02' -- '2022-08-03' -- '2022-08-04' -- '2022-08-05' -- '2022-08-06' -- '2022-08-07' -- '2022-08-08' -- '2022-08-09' -- '2022-08-10' -- '2022-08-11' -- '2022-08-12' -- '2022-08-13' -- '2022-08-14' -- '2022-08-15' -- '2022-08-16' -- '2022-08-17' -- '2022-08-18' -- '2022-08-19' -- '2022-08-20' -- '2022-08-21' -- '2022-08-22' -- '2022-08-23' -- '2022-08-24' -- '2022-08-25' -- '2022-08-26' -- '2022-08-27' -- '2022-08-28' -- '2022-08-29' -- '2022-08-30' -- '2022-08-31' -- '2022-09-01' -- '2022-09-02' -- '2022-09-03' -- '2022-09-04' -- '2022-09-05' -- '2022-09-06' -- '2022-09-07' -- '2022-09-08' -- '2022-09-09' -- '2022-09-10' -- '2022-09-11' -- '2022-09-12' -- '2022-09-13' -- '2022-09-14' -- '2022-09-15' -- '2022-09-16' -- '2022-09-17' -- '2022-09-18' -- '2022-09-19' -- '2022-09-20' -- '2022-09-21' -- '2022-09-22' -- '2022-09-23' -- '2022-09-24' -- '2022-09-25' -- '2022-09-26' -- '2022-09-27' -- '2022-09-28' -- '2022-09-29' -- '2022-09-30' -- '2022-10-01' -- '2022-10-02' -- '2022-10-03' -- '2022-10-04' -- '2022-10-05' -- '2022-10-06' -- '2022-10-07' -- '2022-10-08' -- '2022-10-09' -- '2022-10-10' -- '2022-10-11' -- '2022-10-12' -- '2022-10-13' -- '2022-10-14' -- '2022-10-15' -- '2022-10-16' -- '2022-10-17' -- '2022-10-18' -- '2022-10-19' -- '2022-10-20' -- '2022-10-21' -- '2022-10-22' -- '2022-10-23' -- '2022-10-24' -- '2022-10-25' -- '2022-10-26' -- '2022-10-27' -- '2022-10-28' -- '2022-10-29' -- '2022-10-30' -- '2022-10-31' -- '2022-11-01' -- '2022-11-02' -- '2022-11-03' -- '2022-11-04' -- '2022-11-05' -- '2022-11-06' -- '2022-11-07' -- '2022-11-08' -- '2022-11-09' -- '2022-11-10' -- '2022-11-11' -- '2022-11-12' -- '2022-11-13' -- '2022-11-14' -- '2022-11-15' -- '2022-11-16' -- '2022-11-17' -- '2022-11-18' -- '2022-11-19' -- '2022-11-20' -- '2022-11-21' -- '2022-11-22' -- '2022-11-23' -- '2022-11-24' -- '2022-11-25' -- '2022-11-26' -- '2022-11-27' -- '2022-11-28' -- '2022-11-29' -- '2022-11-30' -- '2022-12-01' -- '2022-12-02' -- '2022-12-03' -- '2022-12-04' -- '2022-12-05' -- '2022-12-06' -- '2022-12-07' -- '2022-12-08' -- '2022-12-09' -- '2022-12-10' -- '2022-12-11' -- '2022-12-12' -- '2022-12-13' -- '2022-12-14' -- '2022-12-15' -- '2022-12-16' -- '2022-12-17' -- '2022-12-18' -- '2022-12-19' -- '2022-12-20' -- '2022-12-21' -- '2022-12-22' -- '2022-12-23' -- '2022-12-24' -- '2022-12-25' -- '2022-12-26' -- '2022-12-27' -- '2022-12-28' -- '2022-12-29' -- '2022-12-30' -- '2022-12-31' -- '2023-01-01' -- '2023-01-02' -- '2023-01-03' -- '2023-01-04' -- '2023-01-05' -- '2023-01-06' -- '2023-01-07' -- '2023-01-08' -- '2023-01-09' -- '2023-01-10' -- '2023-01-11' -- '2023-01-12' -- '2023-01-13' -- '2023-01-14' -- '2023-01-15' -- '2023-01-16' -- '2023-01-17' -- '2023-01-18' -- '2023-01-19' -- '2023-01-20' -- '2023-01-21' -- '2023-01-22' -- '2023-01-23' -- '2023-01-24' -- '2023-01-25' -- '2023-01-26' -- '2023-01-27' -- '2023-01-28' -- '2023-01-29' -- '2023-01-30' -- '2023-01-31' -- '2023-02-01' -- '2023-02-02' -- '2023-02-03' -- '2023-02-04' -- '2023-02-05' -- '2023-02-06' -- '2023-02-07' -- '2023-02-08' -- '2023-02-09' -- '2023-02-10' -- '2023-02-11' -- '2023-02-12' -- '2023-02-13' -- '2023-02-14' -- '2023-02-15' -- '2023-02-16' -- '2023-02-17' -- '2023-02-18' -- '2023-02-19' -- '2023-02-20' -- '2023-02-21' -- '2023-02-22' -- '2023-02-23' -- '2023-02-24' -- '2023-02-25' -- '2023-02-26' -- '2023-02-27' -- '2023-02-28' -- '2023-03-01' -- '2023-03-02' -- '2023-03-03' -- '2023-03-04' -- '2023-03-05' -- '2023-03-06' -- '2023-03-07' -- '2023-03-08' -- '2023-03-09' -- '2023-03-10' -- '2023-03-11' -- '2023-03-12' -- '2023-03-13' -- '2023-03-14' -- '2023-03-15' -- '2023-03-16' -- '2023-03-17' -- '2023-03-18' -- '2023-03-19' -- '2023-03-20' -- '2023-03-21' -- '2023-03-22' -- '2023-03-23' -- '2023-03-24' -- '2023-03-25' -- '2023-03-26' -- '2023-03-27' -- '2023-03-28' -- '2023-03-29' -- '2023-03-30' -- '2023-03-31' -- '2023-04-01' -- '2023-04-02' -- '2023-04-03' -- '2023-04-04' -- '2023-04-05' -- '2023-04-06' -- '2023-04-07' -- '2023-04-08' -- '2023-04-09' -- '2023-04-10' -- '2023-04-11' -- '2023-04-12' -- '2023-04-13' -- '2023-04-14' -- '2023-04-15' -- '2023-04-16' -- '2023-04-17' -- '2023-04-18' -- '2023-04-19' -- '2023-04-20' -- '2023-04-21' -- '2023-04-22' -- '2023-04-23' -- '2023-04-24' -- '2023-04-25' -- '2023-04-26' -- '2023-04-27' -- '2023-04-28' -- '2023-04-29' -- '2023-04-30' -- '2023-05-01' -- '2023-05-02' -- '2023-05-03' -- '2023-05-04' -- '2023-05-05' -- '2023-05-06' -- '2023-05-07' -- '2023-05-08' -- '2023-05-09' -- '2023-05-10' -- '2023-05-11' -- '2023-05-12' -- '2023-05-13' -- '2023-05-14' -- '2023-05-15' -- '2023-05-16' -- '2023-05-17' -- '2023-05-18' -- '2023-05-19' -- '2023-05-20' -- '2023-05-21' -- '2023-05-22' -- '2023-05-23' -- '2023-05-24' -- '2023-05-25' -- '2023-05-26' -- '2023-05-27' -- '2023-05-28' -- '2023-05-29' -- '2023-05-30' -- '2023-05-31' -- '2023-06-01' -- '2023-06-02' -- '2023-06-03' -- '2023-06-04' -- '2023-06-05' -- '2023-06-06' -- '2023-06-07' -- '2023-06-08' -- '2023-06-09' -- '2023-06-10' -- '2023-06-11' -- '2023-06-12' -- '2023-06-13' -- '2023-06-14' -- '2023-06-15' -- '2023-06-16' -- '2023-06-17' -- '2023-06-18' -- '2023-06-19' -- '2023-06-20' -- '2023-06-21' -- '2023-06-22' -- '2023-06-23' -- '2023-06-24' -- '2023-06-25' -- '2023-06-26' -- '2023-06-27' -- '2023-06-28' -- '2023-06-29' -- '2023-06-30' -- '2023-07-01' -- '2023-07-02' -- '2023-07-03' -- '2023-07-04' -- '2023-07-05' -- '2023-07-06' -- '2023-07-07' -- '2023-07-08' -- '2023-07-09' -- '2023-07-10' -- '2023-07-11' -- '2023-07-12' -- '2023-07-13' -- '2023-07-14' -- '2023-07-15' -- '2023-07-16' -- '2023-07-17' -- '2023-07-18' -- '2023-07-19' -- '2023-07-20' -- '2023-07-21' -- '2023-07-22' -- '2023-07-23' -- '2023-07-24' -- '2023-07-25' -- '2023-07-26' -- '2023-07-27' -- '2023-07-28' -- '2023-07-29' -- '2023-07-30' -- '2023-07-31' -- '2023-08-01' -- '2023-08-02' -- '2023-08-03' -- '2023-08-04' -- '2023-08-05' -- '2023-08-06' -- '2023-08-07' -- '2023-08-08' -- '2023-08-09' -- '2023-08-10' -- '2023-08-11' -- '2023-08-12' -- '2023-08-13' -- '2023-08-14' -- '2023-08-15' -- '2023-08-16' -- '2023-08-17' -- '2023-08-18' -- '2023-08-19' -- '2023-08-20' -- '2023-08-21' -- '2023-08-22' -- '2023-08-23' -- '2023-08-24' -- '2023-08-25' -- '2023-08-26' -- '2023-08-27' -- '2023-08-28' -- '2023-08-29' -- '2023-08-30' -- '2023-08-31' -- '2023-09-01' -- '2023-09-02' -- '2023-09-03' -- '2023-09-04' -- '2023-09-05' -- '2023-09-06' -- '2023-09-07' -- '2023-09-08' -- '2023-09-09' -- '2023-09-10' -- '2023-09-11' -- '2023-09-12' -- '2023-09-13' -- '2023-09-14' -- '2023-09-15' -- '2023-09-16' -- '2023-09-17' -- '2023-09-18' -- '2023-09-19' -- '2023-09-20' -- '2023-09-21' -- '2023-09-22' -- '2023-09-23' -- '2023-09-24' -- '2023-09-25' -- '2023-09-26' -- '2023-09-27' -- '2023-09-28' -- '2023-09-29' -- '2023-09-30' -- '2023-10-01' -- '2023-10-02' -- '2023-10-03' -- '2023-10-04' -- '2023-10-05' -- '2023-10-06' -- '2023-10-07' -- '2023-10-08' -- '2023-10-09' -- '2023-10-10' -- '2023-10-11' -- '2023-10-12' -- '2023-10-13' -- '2023-10-14' -- '2023-10-15' -- '2023-10-16' -- '2023-10-17' -- '2023-10-18' -- '2023-10-19' -- '2023-10-20' -- '2023-10-21' -- '2023-10-22' -- '2023-10-23' -- '2023-10-24' -- '2023-10-25' -- '2023-10-26' -- '2023-10-27' -- '2023-10-28' -- '2023-10-29' -- '2023-10-30' -- '2023-10-31' From ca82a8e6b23469fb2a49fefbfbc85b90d74ed955 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Thu, 12 Sep 2024 19:36:41 +0100 Subject: [PATCH 47/59] Add test_customise_orchestration --- .../test_customise_orchestration_example.yaml | 138 ++++++++++++++++++ tests/test_model.py | 12 +- 2 files changed, 148 insertions(+), 2 deletions(-) create mode 100644 docs/demo/examples/test_customise_orchestration_example.yaml diff --git a/docs/demo/examples/test_customise_orchestration_example.yaml b/docs/demo/examples/test_customise_orchestration_example.yaml new file mode 100644 index 00000000..1e595191 --- /dev/null +++ b/docs/demo/examples/test_customise_orchestration_example.yaml @@ -0,0 +1,138 @@ +inputs: docs/demo/data/processed +outputs: results/quickstart_results + +orchestration: +- Land: run +- Groundwater: infiltrate +- Sewer: make_discharge +- Land: apply_irrigation + +data: + my_land_data: + filename: timeseries_data.csv + filter: + - where: site + is: oxford_land + scaling: + - where: variable + is: precipitation + variable: value + factor: "MM_TO_M" + format: dict + index: ['variable', 'date'] + output: 'value' + options: parse_dates=['date'] + + dates_data: + filename: timeseries_data.csv + options: usecols=['date'],parse_dates=['date'] + +dates: data:dates_data + +nodes: + Sewer: + type_: Sewer + name: my_sewer + capacity: 0.04 + Land: + type_: Land + name: my_land + data_input_dict: data:my_land_data + surfaces: + ImperviousSurface: + type_: ImperviousSurface + surface: urban + area: 10 + pollutant_load: + phosphate: 1.0e-07 + PerviousSurface: + type_: PerviousSurface + surface: rural + area: 100 + depth: 0.5 + pollutant_load: + phosphate: 1.0e-07 + + Groundwater: + type_: Groundwater + name: my_groundwater + capacity: 100 + area: 100 + + River: + type_: Node + name: my_river + + Waste: + type_: Waste + name: my_outlet + +arcs: + urban_drainage: + type_: Arc + name: urban_drainage + in_port: my_land + out_port: my_sewer + + percolation: + type_: Arc + name: percolation + in_port: my_land + out_port: my_groundwater + + runoff: + type_: Arc + name: runoff + in_port: my_land + out_port: my_river + + storm_outflow: + type_: Arc + name: storm_outflow + in_port: my_sewer + out_port: my_river + + baseflow: + type_: Arc + name: baseflow + in_port: my_groundwater + out_port: my_river + + catchment_outflow: + type_: Arc + name: catchment_outflow + in_port: my_river + out_port: my_outlet + +pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- temperature +- nitrate +- nitrite +- org-nitrogen +additive_pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- nitrate +- nitrite +- org-nitrogen +non_additive_pollutants: +- temperature +float_accuracy: 1.0e-06 + +dates: +- '2000-01-01' +- '2000-01-02' +- '2000-01-03' +- '2000-01-04' +- '2000-01-05' +- '2000-01-06' +- '2000-01-07' +- '2000-01-08' +- '2000-01-09' +- '2000-01-10' diff --git a/tests/test_model.py b/tests/test_model.py index a0042246..23e8ef0d 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -15,7 +15,7 @@ from wsimod.nodes.sewer import Sewer from wsimod.nodes.waste import Waste from wsimod.orchestration.model import Model, to_datetime - +import os class MyTestClass(TestCase): def assertDictAlmostEqual(self, d1, d2, accuracy=19): @@ -290,7 +290,15 @@ def test_run(self): self.assertEqual( 0.03, my_model.nodes["my_land"].get_surface("urban").storage["volume"] ) - + def test_customise_orchestration(self): + my_model = Model() + my_model.load(os.path.join(os.getcwd(), os.pardir, "docs", "demo", "examples"), + config_name='test_customise_orchestration_example.yaml') + revised_orchestration = [{'Land': 'run'}, + {'Groundwater': 'infiltrate'}, + {'Sewer': 'make_discharge'}, + {'Land': 'apply_irrigation'}] + self.assertListEqual(my_model.orchestration, revised_orchestration) if __name__ == "__main__": unittest.main() From c6d3c74cca06540878af26f8939c0fbcf9ff6af6 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 13 Sep 2024 15:04:28 +0100 Subject: [PATCH 48/59] rearrange the location of example yaml file for not conflicting with test_tutorial.py --- .../test_customise_orchestration_example.yaml | 0 tests/test_model.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/demo/examples/{ => test_examples}/test_customise_orchestration_example.yaml (100%) diff --git a/docs/demo/examples/test_customise_orchestration_example.yaml b/docs/demo/examples/test_examples/test_customise_orchestration_example.yaml similarity index 100% rename from docs/demo/examples/test_customise_orchestration_example.yaml rename to docs/demo/examples/test_examples/test_customise_orchestration_example.yaml diff --git a/tests/test_model.py b/tests/test_model.py index 23e8ef0d..391215d0 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -292,7 +292,7 @@ def test_run(self): ) def test_customise_orchestration(self): my_model = Model() - my_model.load(os.path.join(os.getcwd(), os.pardir, "docs", "demo", "examples"), + my_model.load(os.path.join(os.getcwd(), os.pardir, "docs", "demo", "examples", "test_examples"), config_name='test_customise_orchestration_example.yaml') revised_orchestration = [{'Land': 'run'}, {'Groundwater': 'infiltrate'}, From 07ff9b38c0d8eff4835fa957a88655393fb45990 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 13 Sep 2024 15:21:08 +0100 Subject: [PATCH 49/59] fix the wrong path for pytest --- tests/test_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_model.py b/tests/test_model.py index 391215d0..3248ad84 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -292,7 +292,7 @@ def test_run(self): ) def test_customise_orchestration(self): my_model = Model() - my_model.load(os.path.join(os.getcwd(), os.pardir, "docs", "demo", "examples", "test_examples"), + my_model.load(os.path.join(os.getcwd(), "docs", "demo", "examples", "test_examples"), config_name='test_customise_orchestration_example.yaml') revised_orchestration = [{'Land': 'run'}, {'Groundwater': 'infiltrate'}, From 1197e6ff6d6f9202b4be7241a77ec6bc198e3740 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Fri, 13 Sep 2024 15:21:52 +0100 Subject: [PATCH 50/59] fix the bug when a node exists in default self.orchestration but not in the yaml file --- wsimod/orchestration/model.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 1abb754e..f9ddb4fd 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -747,8 +747,9 @@ def enablePrint(stdout): # Iterate over orchestration for timestep_item in self.orchestration: for node_type, function in timestep_item.items(): - for node in self.nodes_type[node_type].values(): - getattr(node, function)() + if node_type in self.nodes_type.keys(): + for node in self.nodes_type[node_type].values(): + getattr(node, function)() # river for node_name in self.river_discharge_order: From 7f0063ddac903d26f421d6057e612ca7f998df11 Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 14 Sep 2024 09:56:55 +0100 Subject: [PATCH 51/59] revise for pass the test --- .../test_customise_orchestration_example.yaml | 75 ++++++++++ .../test_customise_orchestration_example.yaml | 138 ------------------ tests/test_model.py | 17 ++- 3 files changed, 86 insertions(+), 144 deletions(-) create mode 100644 docs/demo/examples/test_customise_orchestration_example.yaml delete mode 100644 docs/demo/examples/test_examples/test_customise_orchestration_example.yaml diff --git a/docs/demo/examples/test_customise_orchestration_example.yaml b/docs/demo/examples/test_customise_orchestration_example.yaml new file mode 100644 index 00000000..1fd9b2af --- /dev/null +++ b/docs/demo/examples/test_customise_orchestration_example.yaml @@ -0,0 +1,75 @@ +orchestration: +- Groundwater: infiltrate +- Sewer: make_discharge + +nodes: + Sewer: + type_: Sewer + name: my_sewer + capacity: 0.04 + + Groundwater: + type_: Groundwater + name: my_groundwater + capacity: 100 + area: 100 + + River: + type_: Node + name: my_river + + Waste: + type_: Waste + name: my_outlet + +arcs: + storm_outflow: + type_: Arc + name: storm_outflow + in_port: my_sewer + out_port: my_river + + baseflow: + type_: Arc + name: baseflow + in_port: my_groundwater + out_port: my_river + + catchment_outflow: + type_: Arc + name: catchment_outflow + in_port: my_river + out_port: my_outlet + +pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- temperature +- nitrate +- nitrite +- org-nitrogen +additive_pollutants: +- org-phosphorus +- phosphate +- ammonia +- solids +- nitrate +- nitrite +- org-nitrogen +non_additive_pollutants: +- temperature +float_accuracy: 1.0e-06 + +dates: +- '2000-01-01' +- '2000-01-02' +- '2000-01-03' +- '2000-01-04' +- '2000-01-05' +- '2000-01-06' +- '2000-01-07' +- '2000-01-08' +- '2000-01-09' +- '2000-01-10' \ No newline at end of file diff --git a/docs/demo/examples/test_examples/test_customise_orchestration_example.yaml b/docs/demo/examples/test_examples/test_customise_orchestration_example.yaml deleted file mode 100644 index 1e595191..00000000 --- a/docs/demo/examples/test_examples/test_customise_orchestration_example.yaml +++ /dev/null @@ -1,138 +0,0 @@ -inputs: docs/demo/data/processed -outputs: results/quickstart_results - -orchestration: -- Land: run -- Groundwater: infiltrate -- Sewer: make_discharge -- Land: apply_irrigation - -data: - my_land_data: - filename: timeseries_data.csv - filter: - - where: site - is: oxford_land - scaling: - - where: variable - is: precipitation - variable: value - factor: "MM_TO_M" - format: dict - index: ['variable', 'date'] - output: 'value' - options: parse_dates=['date'] - - dates_data: - filename: timeseries_data.csv - options: usecols=['date'],parse_dates=['date'] - -dates: data:dates_data - -nodes: - Sewer: - type_: Sewer - name: my_sewer - capacity: 0.04 - Land: - type_: Land - name: my_land - data_input_dict: data:my_land_data - surfaces: - ImperviousSurface: - type_: ImperviousSurface - surface: urban - area: 10 - pollutant_load: - phosphate: 1.0e-07 - PerviousSurface: - type_: PerviousSurface - surface: rural - area: 100 - depth: 0.5 - pollutant_load: - phosphate: 1.0e-07 - - Groundwater: - type_: Groundwater - name: my_groundwater - capacity: 100 - area: 100 - - River: - type_: Node - name: my_river - - Waste: - type_: Waste - name: my_outlet - -arcs: - urban_drainage: - type_: Arc - name: urban_drainage - in_port: my_land - out_port: my_sewer - - percolation: - type_: Arc - name: percolation - in_port: my_land - out_port: my_groundwater - - runoff: - type_: Arc - name: runoff - in_port: my_land - out_port: my_river - - storm_outflow: - type_: Arc - name: storm_outflow - in_port: my_sewer - out_port: my_river - - baseflow: - type_: Arc - name: baseflow - in_port: my_groundwater - out_port: my_river - - catchment_outflow: - type_: Arc - name: catchment_outflow - in_port: my_river - out_port: my_outlet - -pollutants: -- org-phosphorus -- phosphate -- ammonia -- solids -- temperature -- nitrate -- nitrite -- org-nitrogen -additive_pollutants: -- org-phosphorus -- phosphate -- ammonia -- solids -- nitrate -- nitrite -- org-nitrogen -non_additive_pollutants: -- temperature -float_accuracy: 1.0e-06 - -dates: -- '2000-01-01' -- '2000-01-02' -- '2000-01-03' -- '2000-01-04' -- '2000-01-05' -- '2000-01-06' -- '2000-01-07' -- '2000-01-08' -- '2000-01-09' -- '2000-01-10' diff --git a/tests/test_model.py b/tests/test_model.py index 3248ad84..e5e404ca 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -17,6 +17,7 @@ from wsimod.orchestration.model import Model, to_datetime import os + class MyTestClass(TestCase): def assertDictAlmostEqual(self, d1, d2, accuracy=19): """ @@ -290,15 +291,19 @@ def test_run(self): self.assertEqual( 0.03, my_model.nodes["my_land"].get_surface("urban").storage["volume"] ) + def test_customise_orchestration(self): my_model = Model() - my_model.load(os.path.join(os.getcwd(), "docs", "demo", "examples", "test_examples"), - config_name='test_customise_orchestration_example.yaml') - revised_orchestration = [{'Land': 'run'}, - {'Groundwater': 'infiltrate'}, - {'Sewer': 'make_discharge'}, - {'Land': 'apply_irrigation'}] + my_model.load( + os.path.join(os.getcwd(), "docs", "demo", "examples"), + config_name="test_customise_orchestration_example.yaml", + ) + revised_orchestration = [ + {"Groundwater": "infiltrate"}, + {"Sewer": "make_discharge"}, + ] self.assertListEqual(my_model.orchestration, revised_orchestration) + if __name__ == "__main__": unittest.main() From 6d90a970c2db6ef863581a966661c1a45ceb548f Mon Sep 17 00:00:00 2001 From: liuly12 Date: Sat, 14 Sep 2024 09:57:03 +0100 Subject: [PATCH 52/59] reformatted --- wsimod/orchestration/model.py | 45 ++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index f9ddb4fd..c9b10cb0 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -139,22 +139,23 @@ def __init__(self): # self.arcs_type = {} #not sure that this would be necessary self.nodes = {} self.nodes_type = {} - + # Default orchestration - self.orchestration = [{'FWTW' : 'treat_water'}, - {'Demand' : 'create_demand'}, - {'Land' : 'run'}, - {'Groundwater' : 'infiltrate'}, - {'Sewer' : 'make_discharge'}, - {'Foul' : 'make_discharge'}, - {'WWTW' : 'calculate_discharge'}, - {'Groundwater' : 'distribute'}, - {'River' : 'calculate_discharge'}, - {'Reservoir' : 'make_abstractions'}, - {'Land' : 'apply_irrigation'}, - {'WWTW' : 'make_discharge'}, - {'Catchment' : 'route'}] - + self.orchestration = [ + {"FWTW": "treat_water"}, + {"Demand": "create_demand"}, + {"Land": "run"}, + {"Groundwater": "infiltrate"}, + {"Sewer": "make_discharge"}, + {"Foul": "make_discharge"}, + {"WWTW": "calculate_discharge"}, + {"Groundwater": "distribute"}, + {"River": "calculate_discharge"}, + {"Reservoir": "make_abstractions"}, + {"Land": "apply_irrigation"}, + {"WWTW": "make_discharge"}, + {"Catchment": "route"}, + ] def get_init_args(self, cls): """Get the arguments of the __init__ method for a class and its superclasses.""" @@ -186,16 +187,16 @@ def load(self, address, config_name="config.yml", overrides={}): constants.NON_ADDITIVE_POLLUTANTS = data["non_additive_pollutants"] constants.FLOAT_ACCURACY = float(data["float_accuracy"]) self.__dict__.update(Model().__dict__) - + """ FLAG: E.G. ADDITION FOR NEW ORCHESTRATION """ - - if 'orchestration' in data.keys(): + + if "orchestration" in data.keys(): # Update orchestration - self.orchestration = data['orchestration'] - + self.orchestration = data["orchestration"] + nodes = data["nodes"] for name, node in nodes.items(): @@ -313,7 +314,7 @@ def save(self, address, config_name="config.yml", compress=False): data = { "nodes": nodes, "arcs": arcs, - "orchestration" : self.orchestration, + "orchestration": self.orchestration, "pollutants": constants.POLLUTANTS, "additive_pollutants": constants.ADDITIVE_POLLUTANTS, "non_additive_pollutants": constants.NON_ADDITIVE_POLLUTANTS, @@ -750,7 +751,7 @@ def enablePrint(stdout): if node_type in self.nodes_type.keys(): for node in self.nodes_type[node_type].values(): getattr(node, function)() - + # river for node_name in self.river_discharge_order: self.nodes[node_name].distribute() From 2e5ca8252bc8199ee7d259a993057a73826d6f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Alonso=20=C3=81lvarez?= <6095790+dalonsoa@users.noreply.github.com> Date: Mon, 16 Sep 2024 09:29:53 +0100 Subject: [PATCH 53/59] Update action versions --- .github/workflows/draft-pdf.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/draft-pdf.yml b/.github/workflows/draft-pdf.yml index a8f2aae1..60fe70ab 100644 --- a/.github/workflows/draft-pdf.yml +++ b/.github/workflows/draft-pdf.yml @@ -6,7 +6,7 @@ jobs: name: Paper Draft steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build draft PDF uses: openjournals/openjournals-draft-action@master with: @@ -14,7 +14,7 @@ jobs: # This should be the path to the paper within your repo. paper-path: docs/paper/paper.md - name: Upload - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: paper # This is the output path where Pandoc will write the compiled From 49a7f71a78cd4efb288213acaa32f8b857f34310 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Wed, 18 Sep 2024 11:56:00 +0100 Subject: [PATCH 54/59] :sparkles: Add load_extensions_files step --- tests/test_model.py | 48 ++++++++++++++++++++++++++++++++--- wsimod/orchestration/model.py | 34 ++++++++++++++++++++++++- 2 files changed, 78 insertions(+), 4 deletions(-) diff --git a/tests/test_model.py b/tests/test_model.py index a0042246..2ff53a62 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -4,10 +4,10 @@ @author: Barney """ - -# import pytest +import os +import pytest import unittest -from unittest import TestCase +from unittest import TestCase, mock from wsimod.arcs.arcs import Arc from wsimod.nodes.land import Land @@ -292,5 +292,47 @@ def test_run(self): ) +class TestLoadExtensionFiles: + def test_load_extension_files_valid(self, tmp_path_factory): + from wsimod.orchestration.model import load_extension_files + + with tmp_path_factory.mktemp("extensions") as tempdir: + valid_file = os.path.join(tempdir, "valid_extension.py") + with open(valid_file, "w") as f: + f.write("def test_func(): pass") + + load_extension_files([valid_file]) + + def test_load_extension_files_invalid_extension(self, tmp_path_factory): + from wsimod.orchestration.model import load_extension_files + + with tmp_path_factory.mktemp("extensions") as tempdir: + invalid_file = os.path.join(tempdir, "invalid_extension.txt") + with open(invalid_file, "w") as f: + f.write("This is a text file") + + with pytest.raises(ValueError, match="Only .py files are supported"): + load_extension_files([invalid_file]) + + def test_load_extension_files_nonexistent_file(self): + from wsimod.orchestration.model import load_extension_files + + with pytest.raises( + FileNotFoundError, match="File nonexistent_file.py does not exist" + ): + load_extension_files(["nonexistent_file.py"]) + + def test_load_extension_files_import_error(self, tmp_path_factory): + from wsimod.orchestration.model import load_extension_files + + with tmp_path_factory.mktemp("extensions") as tempdir: + valid_file = os.path.join(tempdir, "valid_extension.py") + with open(valid_file, "w") as f: + f.write("raise ImportError") + + with pytest.raises(ImportError): + load_extension_files([valid_file]) + + if __name__ == "__main__": unittest.main() diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 50507249..0075a291 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -160,7 +160,7 @@ def load(self, address, config_name="config.yml", overrides={}): from ..extensions import apply_patches with open(os.path.join(address, config_name), "r") as file: - data = yaml.safe_load(file) + data: dict = yaml.safe_load(file) for key, item in overrides.items(): data[key] = item @@ -193,6 +193,7 @@ def load(self, address, config_name="config.yml", overrides={}): if "dates" in data.keys(): self.dates = [to_datetime(x) for x in data["dates"]] + load_extension_files(data.get("extensions", [])) apply_patches(self) def save(self, address, config_name="config.yml", compress=False): @@ -1285,3 +1286,34 @@ def yaml2csv(address, config_name="config.yml", csv_folder_name="csv"): writer.writerow( [str(value_[x]) if x in value_.keys() else None for x in fields] ) + + +def load_extension_files(files: list[str]) -> None: + """Load extension files from a list of files. + + Args: + files (list[str]): List of file paths to load + + Raises: + ValueError: If file is not a .py file + FileNotFoundError: If file does not exist + """ + import importlib + from pathlib import Path + + invalid_files: list[str] = [] + for file in files: + if not Path(file).exists(): + raise FileNotFoundError(f"File {file} does not exist") + + if file.endswith(".py"): + spec = importlib.util.spec_from_file_location("module.name", file) + module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(module) + else: + invalid_files.append(file) + + if invalid_files: + raise ValueError( + "Only .py files are supported. Invalid files: " + ", ".join(invalid_files) + ) From 36a70318eb1118d63802864060a787a4d27b77d2 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Wed, 18 Sep 2024 12:55:19 +0100 Subject: [PATCH 55/59] :recycle: Simplify error handling. --- wsimod/orchestration/model.py | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 0075a291..7746282e 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -1301,19 +1301,12 @@ def load_extension_files(files: list[str]) -> None: import importlib from pathlib import Path - invalid_files: list[str] = [] for file in files: + if not file.endswith(".py"): + raise ValueError(f"Only .py files are supported. Invalid file: {file}") if not Path(file).exists(): raise FileNotFoundError(f"File {file} does not exist") - if file.endswith(".py"): - spec = importlib.util.spec_from_file_location("module.name", file) - module = importlib.util.module_from_spec(spec) - spec.loader.exec_module(module) - else: - invalid_files.append(file) - - if invalid_files: - raise ValueError( - "Only .py files are supported. Invalid files: " + ", ".join(invalid_files) - ) + spec = importlib.util.spec_from_file_location("module.name", file) + module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(module) From b4b1efbaaf5c7264459b843e6a962d3a26cee942 Mon Sep 17 00:00:00 2001 From: barneydobson Date: Mon, 23 Sep 2024 12:30:21 +0100 Subject: [PATCH 56/59] Update wsimod/orchestration/model.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Diego Alonso Álvarez <6095790+dalonsoa@users.noreply.github.com> --- wsimod/orchestration/model.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index c9b10cb0..8dc4e917 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -748,9 +748,8 @@ def enablePrint(stdout): # Iterate over orchestration for timestep_item in self.orchestration: for node_type, function in timestep_item.items(): - if node_type in self.nodes_type.keys(): - for node in self.nodes_type[node_type].values(): - getattr(node, function)() + for node in self.nodes_type.get(node_type, {}).values(): + getattr(node, function)() # river for node_name in self.river_discharge_order: From 336f9bceb04aa9c8107ac96cb43ff059de11194b Mon Sep 17 00:00:00 2001 From: Daniel Cummins Date: Tue, 1 Oct 2024 11:25:16 +0100 Subject: [PATCH 57/59] Moved tank class and subclasses from nodes module to their own module --- wsimod/nodes/nodes.py | 622 +---------------------------------------- wsimod/nodes/tanks.py | 624 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 625 insertions(+), 621 deletions(-) create mode 100644 wsimod/nodes/tanks.py diff --git a/wsimod/nodes/nodes.py b/wsimod/nodes/nodes.py index 2e125af9..ba7ade47 100644 --- a/wsimod/nodes/nodes.py +++ b/wsimod/nodes/nodes.py @@ -8,9 +8,8 @@ import logging from typing import Any, Dict -from wsimod.arcs.arcs import AltQueueArc, DecayArcAlt from wsimod.core import constants -from wsimod.core.core import DecayObj, WSIObj +from wsimod.core.core import WSIObj class Node(WSIObj): @@ -747,622 +746,3 @@ def general_distribute(self, vqip, of_type = None, tag = 'default', direction = NODES_REGISTRY: dict[str, type[Node]] = {Node.__name__: Node} - - -class Tank(WSIObj): - """""" - - def __init__(self, capacity=0, area=1, datum=10, initial_storage=0): - """A standard storage object. - - Args: - capacity (float, optional): Volumetric tank capacity. Defaults to 0. - area (float, optional): Area of tank. Defaults to 1. - datum (float, optional): Datum of tank base (not currently used in any - functions). Defaults to 10. - initial_storage (optional): Initial storage for tank. - float: Tank will be initialised with zero pollutants and the float - as volume - dict: Tank will be initialised with this VQIP - Defaults to 0 (i.e., no volume, no pollutants). - """ - # Set parameters - self.capacity = capacity - self.area = area - self.datum = datum - self.initial_storage = initial_storage - - WSIObj.__init__(self) # Not sure why I do this rather than super() - - # TODO I don't think the outer if statement is needed - if "initial_storage" in dir(self): - if isinstance(self.initial_storage, dict): - # Assume dict is VQIP describing storage - self.storage = self.copy_vqip(self.initial_storage) - self.storage_ = self.copy_vqip( - self.initial_storage - ) # Lagged storage for mass balance - else: - # Assume number describes initial stroage - self.storage = self.v_change_vqip( - self.empty_vqip(), self.initial_storage - ) - self.storage_ = self.v_change_vqip( - self.empty_vqip(), self.initial_storage - ) # Lagged storage for mass balance - else: - self.storage = self.empty_vqip() - self.storage_ = self.empty_vqip() # Lagged storage for mass balance - - def ds(self): - """Should be called by parent object to get change in storage. - - Returns: - (dict): Change in storage - """ - return self.ds_vqip(self.storage, self.storage_) - - def pull_ponded(self): - """Pull any volume that is above the tank's capacity. - - Returns: - ponded (vqip): Amount of ponded water that has been removed from the - tank - - Examples: - >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] - >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 10, - 'phosphate' : 0.2}) - >>> print(my_tank.storage) - {'volume' : 10, 'phosphate' : 0.2} - >>> print(my_tank.pull_ponded()) - {'volume' : 1, 'phosphate' : 0.02} - >>> print(my_tank.storage) - {'volume' : 9, 'phosphate' : 0.18} - """ - # Get amount - ponded = max(self.storage["volume"] - self.capacity, 0) - # Pull from tank - ponded = self.pull_storage({"volume": ponded}) - return ponded - - def get_avail(self, vqip=None): - """Get minimum of the amount of water in storage and vqip (if provided). - - Args: - vqip (dict, optional): Maximum water required (only 'volume' is used). - Defaults to None. - - Returns: - reply (dict): Water available - - Examples: - >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] - >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 10, - 'phosphate' : 0.2}) - >>> print(my_tank.storage) - {'volume' : 10, 'phosphate' : 0.2} - >>> print(my_tank.get_avail()) - {'volume' : 10, 'phosphate' : 0.2} - >>> print(my_tank.get_avail({'volume' : 1})) - {'volume' : 1, 'phosphate' : 0.02} - """ - reply = self.copy_vqip(self.storage) - if vqip is None: - # Return storage - return reply - else: - # Adjust storage pollutants to match volume in vqip - reply = self.v_change_vqip(reply, min(reply["volume"], vqip["volume"])) - return reply - - def get_excess(self, vqip=None): - """Get difference between current storage and tank capacity. - - Args: - vqip (dict, optional): Maximum capacity required (only 'volume' is - used). Defaults to None. - - Returns: - (dict): Difference available - - Examples: - >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] - >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, - 'phosphate' : 0.2}) - >>> print(my_tank.get_excess()) - {'volume' : 4, 'phosphate' : 0.16} - >>> print(my_tank.get_excess({'volume' : 2})) - {'volume' : 2, 'phosphate' : 0.08} - """ - vol = max(self.capacity - self.storage["volume"], 0) - if vqip is not None: - vol = min(vqip["volume"], vol) - - # Adjust storage pollutants to match volume in vqip - # TODO the v_change_vqip in the reply here is a weird default (if a VQIP is not - # provided) - return self.v_change_vqip(self.storage, vol) - - def push_storage(self, vqip, force=False): - """Push water into tank, updating the storage VQIP. Force argument can be used - to ignore tank capacity. - - Args: - vqip (dict): VQIP amount to be pushed - force (bool, optional): Argument used to cause function to ignore tank - capacity, possibly resulting in pooling. Defaults to False. - - Returns: - reply (dict): A VQIP of water not successfully pushed to the tank - - Examples: - >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] - >>> constants.POLLUTANTS = ['phosphate'] - >>> constants.NON_ADDITIVE_POLLUTANTS = [] - >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, - 'phosphate' : 0.2}) - >>> my_push = {'volume' : 10, 'phosphate' : 0.5} - >>> reply = my_tank.push_storage(my_push) - >>> print(reply) - {'volume' : 6, 'phosphate' : 0.3} - >>> print(my_tank.storage) - {'volume': 9.0, 'phosphate': 0.4} - >>> print(my_tank.push_storage(reply, force = True)) - {'phosphate': 0, 'volume': 0} - >>> print(my_tank.storage) - {'volume': 15.0, 'phosphate': 0.7} - """ - if force: - # Directly add request to storage - self.storage = self.sum_vqip(self.storage, vqip) - return self.empty_vqip() - - # Check whether request can be met - excess = self.get_excess()["volume"] - - # Adjust accordingly - reply = max(vqip["volume"] - excess, 0) - reply = self.v_change_vqip(vqip, reply) - entered = self.v_change_vqip(vqip, vqip["volume"] - reply["volume"]) - - # Update storage - self.storage = self.sum_vqip(self.storage, entered) - - return reply - - def pull_storage(self, vqip): - """Pull water from tank, updating the storage VQIP. Pollutants are removed from - tank in proportion to 'volume' in vqip (pollutant values in vqip are ignored). - - Args: - vqip (dict): VQIP amount to be pulled, (only 'volume' key is needed) - - Returns: - reply (dict): A VQIP water successfully pulled from the tank - - Examples: - >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] - >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, - 'phosphate' : 0.2}) - >>> print(my_tank.pull_storage({'volume' : 6})) - {'volume': 5.0, 'phosphate': 0.2} - >>> print(my_tank.storage) - {'volume': 0, 'phosphate': 0} - """ - # Pull from Tank by volume (taking pollutants in proportion) - if self.storage["volume"] == 0: - return self.empty_vqip() - - # Adjust based on available volume - reply = min(vqip["volume"], self.storage["volume"]) - - # Update reply to vqip (in proportion to concentration in storage) - reply = self.v_change_vqip(self.storage, reply) - - # Extract from storage - self.storage = self.extract_vqip(self.storage, reply) - - return reply - - def pull_pollutants(self, vqip): - """Pull water from tank, updating the storage VQIP. Pollutants are removed from - tank in according to their values in vqip. - - Args: - vqip (dict): VQIP amount to be pulled - - Returns: - vqip (dict): A VQIP water successfully pulled from the tank - - Examples: - >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] - >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, - 'phosphate' : 0.2}) - >>> print(my_tank.pull_pollutants({'volume' : 2, 'phosphate' : 0.15})) - {'volume': 2.0, 'phosphate': 0.15} - >>> print(my_tank.storage) - {'volume': 3, 'phosphate': 0.05} - """ - # Adjust based on available mass - for pol in constants.ADDITIVE_POLLUTANTS + ["volume"]: - vqip[pol] = min(self.storage[pol], vqip[pol]) - - # Extract from storage - self.storage = self.extract_vqip(self.storage, vqip) - return vqip - - def get_head(self, datum=None, non_head_storage=0): - """Area volume calculation for head calcuations. Datum and storage that does not - contribute to head can be specified. - - Args: - datum (float, optional): Value to add to pressure head in tank. - Defaults to None. - non_head_storage (float, optional): Amount of storage that does - not contribute to generation of head. The tank must exceed - this value to generate any pressure head. Defaults to 0. - - Returns: - head (float): Total head in tank - - Examples: - >>> my_tank = Tank(datum = 10, initial_storage = 5, capacity = 10, area = 2) - >>> print(my_tank.get_head()) - 12.5 - >>> print(my_tank.get_head(non_head_storage = 1)) - 12 - >>> print(my_tank.get_head(non_head_storage = 1, datum = 0)) - 2 - """ - # If datum not provided use object datum - if datum is None: - datum = self.datum - - # Calculate pressure head generating storage - head_storage = max(self.storage["volume"] - non_head_storage, 0) - - # Perform head calculation - head = head_storage / self.area + datum - - return head - - def evaporate(self, evap): - """Wrapper for v_distill_vqip to apply a volumetric subtraction from tank - storage. Volume removed from storage and no change in pollutant values. - - Args: - evap (float): Volume to evaporate - - Returns: - evap (float): Volumetric amount of evaporation successfully removed - """ - avail = self.get_avail()["volume"] - - evap = min(evap, avail) - self.storage = self.v_distill_vqip(self.storage, evap) - return evap - - ##Old function no longer needed (check it is not used anywhere and remove) - def push_total(self, vqip): - """ - - Args: - vqip: - - Returns: - - """ - self.storage = self.sum_vqip(self.storage, vqip) - return self.empty_vqip() - - ##Old function no longer needed (check it is not used anywhere and remove) - def push_total_c(self, vqip): - """ - - Args: - vqip: - - Returns: - - """ - # Push vqip to storage where pollutants are given as a concentration rather - # than storage - vqip = self.concentration_to_total(self.vqip) - self.storage = self.sum_vqip(self.storage, vqip) - return self.empty_vqip() - - def end_timestep(self): - """Function to be called by parent object, tracks previously timestep's - storage.""" - self.storage_ = self.copy_vqip(self.storage) - - def reinit(self): - """Set storage to an empty VQIP.""" - self.storage = self.empty_vqip() - self.storage_ = self.empty_vqip() - - -class ResidenceTank(Tank): - """""" - - def __init__(self, residence_time=2, **kwargs): - """A tank that has a residence time property that limits storage pulled from the - 'pull_outflow' function. - - Args: - residence_time (float, optional): Residence time, in theory given - in timesteps, in practice it just means that storage / - residence time can be pulled each time pull_outflow is called. - Defaults to 2. - """ - self.residence_time = residence_time - super().__init__(**kwargs) - - def pull_outflow(self): - """Pull storage by residence time from the tank, updating tank storage. - - Returns: - outflow (dict): A VQIP with volume of pulled volume and pollutants - proportionate to the tank's pollutants - """ - # Calculate outflow - outflow = self.storage["volume"] / self.residence_time - # Update pollutant amounts - outflow = self.v_change_vqip(self.storage, outflow) - # Remove from tank - outflow = self.pull_storage(outflow) - return outflow - - -class DecayTank(Tank, DecayObj): - """""" - - def __init__(self, decays={}, parent=None, **kwargs): - """A tank that has DecayObj functions. Decay occurs in end_timestep, after - updating state variables. In this sense, decay is occurring at the very - beginning of the timestep. - - Args: - decays (dict): A dict of dicts containing a key for each pollutant that - decays and, within that, a key for each parameter (a constant and - exponent) - parent (object): An object that can be used to read temperature data from - """ - # Store parameters - self.parent = parent - - # Initialise Tank - Tank.__init__(self, **kwargs) - - # Initialise decay object - DecayObj.__init__(self, decays) - - # Update timestep and ds functions - self.end_timestep = self.end_timestep_decay - self.ds = self.decay_ds - - def end_timestep_decay(self): - """Update state variables and call make_decay.""" - self.total_decayed = self.empty_vqip() - self.storage_ = self.copy_vqip(self.storage) - - self.storage = self.make_decay(self.storage) - - def decay_ds(self): - """Track storage and amount decayed. - - Returns: - ds (dict): A VQIP of change in storage and total decayed - """ - ds = self.ds_vqip(self.storage, self.storage_) - ds = self.sum_vqip(ds, self.total_decayed) - return ds - - -class QueueTank(Tank): - """""" - - def __init__(self, number_of_timesteps=0, **kwargs): - """A tank with an internal queue arc, whose queue must be completed before - storage is available for use. The storage that has completed the queue is under - the 'active_storage' property. - - Args: - number_of_timesteps (int, optional): Built in delay for the internal - queue - it is always added to the queue time, although delay can be - provided with pushes only. Defaults to 0. - """ - # Set parameters - self.number_of_timesteps = number_of_timesteps - - super().__init__(**kwargs) - self.end_timestep = self._end_timestep - self.active_storage = self.copy_vqip(self.storage) - - # TODO enable queue to be initialised not empty - self.out_arcs = {} - self.in_arcs = {} - # Create internal queue arc - self.internal_arc = AltQueueArc( - in_port=self, out_port=self, number_of_timesteps=self.number_of_timesteps - ) - # TODO should mass balance call internal arc (is this arc called in arc mass - # balance?) - - def get_avail(self): - """Return the active_storage of the tank. - - Returns: - (dict): VQIP of active_storage - """ - return self.copy_vqip(self.active_storage) - - def push_storage(self, vqip, time=0, force=False): - """Push storage into QueueTank, applying travel time, unless forced. - - Args: - vqip (dict): A VQIP of the amount to push - time (int, optional): Number of timesteps to spend in queue, in addition - to number_of_timesteps property of internal_arc. Defaults to 0. - force (bool, optional): Force property that will ignore tank capacity - and ignore travel time. Defaults to False. - - Returns: - reply (dict): A VQIP of water that could not be received by the tank - """ - if force: - # Directly add request to storage, skipping queue - self.storage = self.sum_vqip(self.storage, vqip) - self.active_storage = self.sum_vqip(self.active_storage, vqip) - return self.empty_vqip() - - # Push to QueueTank - reply = self.internal_arc.send_push_request(vqip, force=force, time=time) - # Update storage - # TODO storage won't be accurately tracking temperature.. - self.storage = self.sum_vqip( - self.storage, self.v_change_vqip(vqip, vqip["volume"] - reply["volume"]) - ) - return reply - - def pull_storage(self, vqip): - """Pull storage from the QueueTank, only water in active_storage is available. - Returning water pulled and updating tank states. Pollutants are removed from - tank in proportion to 'volume' in vqip (pollutant values in vqip are ignored). - - Args: - vqip (dict): VQIP amount to pull, only 'volume' property is used - - Returns: - reply (dict): VQIP amount that was pulled - """ - # Adjust based on available volume - reply = min(vqip["volume"], self.active_storage["volume"]) - - # Update reply to vqip - reply = self.v_change_vqip(self.active_storage, reply) - - # Extract from active_storage - self.active_storage = self.extract_vqip(self.active_storage, reply) - - # Extract from storage - self.storage = self.extract_vqip(self.storage, reply) - - return reply - - def pull_storage_exact(self, vqip): - """Pull storage from the QueueTank, only water in active_storage is available. - Pollutants are removed from tank in according to their values in vqip. - - Args: - vqip (dict): A VQIP amount to pull - - Returns: - reply (dict): A VQIP amount successfully pulled - """ - # Adjust based on available - reply = self.copy_vqip(vqip) - for pol in ["volume"] + constants.ADDITIVE_POLLUTANTS: - reply[pol] = min(reply[pol], self.active_storage[pol]) - - # Pull from QueueTank - self.active_storage = self.extract_vqip(self.active_storage, reply) - - # Extract from storage - self.storage = self.extract_vqip(self.storage, reply) - return reply - - def push_check(self, vqip=None, tag="default"): - """Wrapper for get_excess but applies comparison to volume in VQIP. - Needed to enable use of internal_arc, which assumes it is connecting nodes . - rather than tanks. - NOTE: this is intended only for use with the internal_arc. Pushing to - QueueTanks should use 'push_storage'. - - Args: - vqip (dict, optional): VQIP amount to push. Defaults to None. - tag (str, optional): Tag, see Node, don't think it should actually be - used for a QueueTank since there are no handlers. Defaults to - 'default'. - - Returns: - excess (dict): a VQIP amount of excess capacity - """ - # TODO does behaviour for volume = None need to be defined? - excess = self.get_excess() - if vqip is not None: - excess["volume"] = min(vqip["volume"], excess["volume"]) - return excess - - def push_set(self, vqip, tag="default"): - """Behaves differently from normal push setting, it assumes sufficient tank - capacity and receives VQIPs that have reached the END of the internal_arc. - NOTE: this is intended only for use with the internal_arc. Pushing to - QueueTanks should use 'push_storage'. - - Args: - vqip (dict): VQIP amount to push - tag (str, optional): Tag, see Node, don't think it should actually be - used for a QueueTank since there are no handlers. Defaults to - 'default'. - - Returns: - (dict): Returns empty VQIP, indicating all water received (since it - assumes capacity was checked before entering the internal arc) - """ - # Update active_storage (since it has reached the end of the internal_arc) - self.active_storage = self.sum_vqip(self.active_storage, vqip) - - return self.empty_vqip() - - def _end_timestep(self): - """Wrapper for end_timestep that also ends the timestep in the internal_arc.""" - self.internal_arc.end_timestep() - self.internal_arc.update_queue() - self.storage_ = self.copy_vqip(self.storage) - - def reinit(self): - """Zeros storages and arc.""" - self.internal_arc.reinit() - self.storage = self.empty_vqip() - self.storage_ = self.empty_vqip() - self.active_storage = self.empty_vqip() - - -class DecayQueueTank(QueueTank): - """""" - - def __init__(self, decays={}, parent=None, number_of_timesteps=1, **kwargs): - """Adds a DecayAltArc in QueueTank to enable decay to occur within the - internal_arc queue. - - Args: - decays (dict): A dict of dicts containing a key for each pollutant and, - within that, a key for each parameter (a constant and exponent) - parent (object): An object that can be used to read temperature data from - number_of_timesteps (int, optional): Built in delay for the internal - queue - it is always added to the queue time, although delay can be - provided with pushes only. Defaults to 0. - """ - # Initialise QueueTank - super().__init__(number_of_timesteps=number_of_timesteps, **kwargs) - # Replace internal_arc with a DecayArcAlt - self.internal_arc = DecayArcAlt( - in_port=self, - out_port=self, - number_of_timesteps=number_of_timesteps, - parent=parent, - decays=decays, - ) - - self.end_timestep = self._end_timestep - - def _end_timestep(self): - """End timestep wrapper that removes decayed pollutants and calls internal - arc.""" - # TODO Should the active storage decay if decays are given (probably.. though - # that sounds like a nightmare)? - self.storage = self.extract_vqip(self.storage, self.internal_arc.total_decayed) - self.storage_ = self.copy_vqip(self.storage) - self.internal_arc.end_timestep() diff --git a/wsimod/nodes/tanks.py b/wsimod/nodes/tanks.py new file mode 100644 index 00000000..b2036edb --- /dev/null +++ b/wsimod/nodes/tanks.py @@ -0,0 +1,624 @@ +"""Module for defining tanks.""" + +from wsimod.arcs import AltQueueArc, DecayArcAlt +from wsimod.core import constants +from wsimod.core.core import DecayObj, WSIObj + + +class Tank(WSIObj): + """""" + + def __init__(self, capacity=0, area=1, datum=10, initial_storage=0): + """A standard storage object. + + Args: + capacity (float, optional): Volumetric tank capacity. Defaults to 0. + area (float, optional): Area of tank. Defaults to 1. + datum (float, optional): Datum of tank base (not currently used in any + functions). Defaults to 10. + initial_storage (optional): Initial storage for tank. + float: Tank will be initialised with zero pollutants and the float + as volume + dict: Tank will be initialised with this VQIP + Defaults to 0 (i.e., no volume, no pollutants). + """ + # Set parameters + self.capacity = capacity + self.area = area + self.datum = datum + self.initial_storage = initial_storage + + WSIObj.__init__(self) # Not sure why I do this rather than super() + + # TODO I don't think the outer if statement is needed + if "initial_storage" in dir(self): + if isinstance(self.initial_storage, dict): + # Assume dict is VQIP describing storage + self.storage = self.copy_vqip(self.initial_storage) + self.storage_ = self.copy_vqip( + self.initial_storage + ) # Lagged storage for mass balance + else: + # Assume number describes initial stroage + self.storage = self.v_change_vqip( + self.empty_vqip(), self.initial_storage + ) + self.storage_ = self.v_change_vqip( + self.empty_vqip(), self.initial_storage + ) # Lagged storage for mass balance + else: + self.storage = self.empty_vqip() + self.storage_ = self.empty_vqip() # Lagged storage for mass balance + + def ds(self): + """Should be called by parent object to get change in storage. + + Returns: + (dict): Change in storage + """ + return self.ds_vqip(self.storage, self.storage_) + + def pull_ponded(self): + """Pull any volume that is above the tank's capacity. + + Returns: + ponded (vqip): Amount of ponded water that has been removed from the + tank + + Examples: + >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] + >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 10, + 'phosphate' : 0.2}) + >>> print(my_tank.storage) + {'volume' : 10, 'phosphate' : 0.2} + >>> print(my_tank.pull_ponded()) + {'volume' : 1, 'phosphate' : 0.02} + >>> print(my_tank.storage) + {'volume' : 9, 'phosphate' : 0.18} + """ + # Get amount + ponded = max(self.storage["volume"] - self.capacity, 0) + # Pull from tank + ponded = self.pull_storage({"volume": ponded}) + return ponded + + def get_avail(self, vqip=None): + """Get minimum of the amount of water in storage and vqip (if provided). + + Args: + vqip (dict, optional): Maximum water required (only 'volume' is used). + Defaults to None. + + Returns: + reply (dict): Water available + + Examples: + >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] + >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 10, + 'phosphate' : 0.2}) + >>> print(my_tank.storage) + {'volume' : 10, 'phosphate' : 0.2} + >>> print(my_tank.get_avail()) + {'volume' : 10, 'phosphate' : 0.2} + >>> print(my_tank.get_avail({'volume' : 1})) + {'volume' : 1, 'phosphate' : 0.02} + """ + reply = self.copy_vqip(self.storage) + if vqip is None: + # Return storage + return reply + else: + # Adjust storage pollutants to match volume in vqip + reply = self.v_change_vqip(reply, min(reply["volume"], vqip["volume"])) + return reply + + def get_excess(self, vqip=None): + """Get difference between current storage and tank capacity. + + Args: + vqip (dict, optional): Maximum capacity required (only 'volume' is + used). Defaults to None. + + Returns: + (dict): Difference available + + Examples: + >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] + >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, + 'phosphate' : 0.2}) + >>> print(my_tank.get_excess()) + {'volume' : 4, 'phosphate' : 0.16} + >>> print(my_tank.get_excess({'volume' : 2})) + {'volume' : 2, 'phosphate' : 0.08} + """ + vol = max(self.capacity - self.storage["volume"], 0) + if vqip is not None: + vol = min(vqip["volume"], vol) + + # Adjust storage pollutants to match volume in vqip + # TODO the v_change_vqip in the reply here is a weird default (if a VQIP is not + # provided) + return self.v_change_vqip(self.storage, vol) + + def push_storage(self, vqip, force=False): + """Push water into tank, updating the storage VQIP. Force argument can be used + to ignore tank capacity. + + Args: + vqip (dict): VQIP amount to be pushed + force (bool, optional): Argument used to cause function to ignore tank + capacity, possibly resulting in pooling. Defaults to False. + + Returns: + reply (dict): A VQIP of water not successfully pushed to the tank + + Examples: + >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] + >>> constants.POLLUTANTS = ['phosphate'] + >>> constants.NON_ADDITIVE_POLLUTANTS = [] + >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, + 'phosphate' : 0.2}) + >>> my_push = {'volume' : 10, 'phosphate' : 0.5} + >>> reply = my_tank.push_storage(my_push) + >>> print(reply) + {'volume' : 6, 'phosphate' : 0.3} + >>> print(my_tank.storage) + {'volume': 9.0, 'phosphate': 0.4} + >>> print(my_tank.push_storage(reply, force = True)) + {'phosphate': 0, 'volume': 0} + >>> print(my_tank.storage) + {'volume': 15.0, 'phosphate': 0.7} + """ + if force: + # Directly add request to storage + self.storage = self.sum_vqip(self.storage, vqip) + return self.empty_vqip() + + # Check whether request can be met + excess = self.get_excess()["volume"] + + # Adjust accordingly + reply = max(vqip["volume"] - excess, 0) + reply = self.v_change_vqip(vqip, reply) + entered = self.v_change_vqip(vqip, vqip["volume"] - reply["volume"]) + + # Update storage + self.storage = self.sum_vqip(self.storage, entered) + + return reply + + def pull_storage(self, vqip): + """Pull water from tank, updating the storage VQIP. Pollutants are removed from + tank in proportion to 'volume' in vqip (pollutant values in vqip are ignored). + + Args: + vqip (dict): VQIP amount to be pulled, (only 'volume' key is needed) + + Returns: + reply (dict): A VQIP water successfully pulled from the tank + + Examples: + >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] + >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, + 'phosphate' : 0.2}) + >>> print(my_tank.pull_storage({'volume' : 6})) + {'volume': 5.0, 'phosphate': 0.2} + >>> print(my_tank.storage) + {'volume': 0, 'phosphate': 0} + """ + # Pull from Tank by volume (taking pollutants in proportion) + if self.storage["volume"] == 0: + return self.empty_vqip() + + # Adjust based on available volume + reply = min(vqip["volume"], self.storage["volume"]) + + # Update reply to vqip (in proportion to concentration in storage) + reply = self.v_change_vqip(self.storage, reply) + + # Extract from storage + self.storage = self.extract_vqip(self.storage, reply) + + return reply + + def pull_pollutants(self, vqip): + """Pull water from tank, updating the storage VQIP. Pollutants are removed from + tank in according to their values in vqip. + + Args: + vqip (dict): VQIP amount to be pulled + + Returns: + vqip (dict): A VQIP water successfully pulled from the tank + + Examples: + >>> constants.ADDITIVE_POLLUTANTS = ['phosphate'] + >>> my_tank = Tank(capacity = 9, initial_storage = {'volume' : 5, + 'phosphate' : 0.2}) + >>> print(my_tank.pull_pollutants({'volume' : 2, 'phosphate' : 0.15})) + {'volume': 2.0, 'phosphate': 0.15} + >>> print(my_tank.storage) + {'volume': 3, 'phosphate': 0.05} + """ + # Adjust based on available mass + for pol in constants.ADDITIVE_POLLUTANTS + ["volume"]: + vqip[pol] = min(self.storage[pol], vqip[pol]) + + # Extract from storage + self.storage = self.extract_vqip(self.storage, vqip) + return vqip + + def get_head(self, datum=None, non_head_storage=0): + """Area volume calculation for head calcuations. Datum and storage that does not + contribute to head can be specified. + + Args: + datum (float, optional): Value to add to pressure head in tank. + Defaults to None. + non_head_storage (float, optional): Amount of storage that does + not contribute to generation of head. The tank must exceed + this value to generate any pressure head. Defaults to 0. + + Returns: + head (float): Total head in tank + + Examples: + >>> my_tank = Tank(datum = 10, initial_storage = 5, capacity = 10, area = 2) + >>> print(my_tank.get_head()) + 12.5 + >>> print(my_tank.get_head(non_head_storage = 1)) + 12 + >>> print(my_tank.get_head(non_head_storage = 1, datum = 0)) + 2 + """ + # If datum not provided use object datum + if datum is None: + datum = self.datum + + # Calculate pressure head generating storage + head_storage = max(self.storage["volume"] - non_head_storage, 0) + + # Perform head calculation + head = head_storage / self.area + datum + + return head + + def evaporate(self, evap): + """Wrapper for v_distill_vqip to apply a volumetric subtraction from tank + storage. Volume removed from storage and no change in pollutant values. + + Args: + evap (float): Volume to evaporate + + Returns: + evap (float): Volumetric amount of evaporation successfully removed + """ + avail = self.get_avail()["volume"] + + evap = min(evap, avail) + self.storage = self.v_distill_vqip(self.storage, evap) + return evap + + ##Old function no longer needed (check it is not used anywhere and remove) + def push_total(self, vqip): + """ + + Args: + vqip: + + Returns: + + """ + self.storage = self.sum_vqip(self.storage, vqip) + return self.empty_vqip() + + ##Old function no longer needed (check it is not used anywhere and remove) + def push_total_c(self, vqip): + """ + + Args: + vqip: + + Returns: + + """ + # Push vqip to storage where pollutants are given as a concentration rather + # than storage + vqip = self.concentration_to_total(self.vqip) + self.storage = self.sum_vqip(self.storage, vqip) + return self.empty_vqip() + + def end_timestep(self): + """Function to be called by parent object, tracks previously timestep's + storage.""" + self.storage_ = self.copy_vqip(self.storage) + + def reinit(self): + """Set storage to an empty VQIP.""" + self.storage = self.empty_vqip() + self.storage_ = self.empty_vqip() + + +class ResidenceTank(Tank): + """""" + + def __init__(self, residence_time=2, **kwargs): + """A tank that has a residence time property that limits storage pulled from the + 'pull_outflow' function. + + Args: + residence_time (float, optional): Residence time, in theory given + in timesteps, in practice it just means that storage / + residence time can be pulled each time pull_outflow is called. + Defaults to 2. + """ + self.residence_time = residence_time + super().__init__(**kwargs) + + def pull_outflow(self): + """Pull storage by residence time from the tank, updating tank storage. + + Returns: + outflow (dict): A VQIP with volume of pulled volume and pollutants + proportionate to the tank's pollutants + """ + # Calculate outflow + outflow = self.storage["volume"] / self.residence_time + # Update pollutant amounts + outflow = self.v_change_vqip(self.storage, outflow) + # Remove from tank + outflow = self.pull_storage(outflow) + return outflow + + +class DecayTank(Tank, DecayObj): + """""" + + def __init__(self, decays={}, parent=None, **kwargs): + """A tank that has DecayObj functions. Decay occurs in end_timestep, after + updating state variables. In this sense, decay is occurring at the very + beginning of the timestep. + + Args: + decays (dict): A dict of dicts containing a key for each pollutant that + decays and, within that, a key for each parameter (a constant and + exponent) + parent (object): An object that can be used to read temperature data from + """ + # Store parameters + self.parent = parent + + # Initialise Tank + Tank.__init__(self, **kwargs) + + # Initialise decay object + DecayObj.__init__(self, decays) + + # Update timestep and ds functions + self.end_timestep = self.end_timestep_decay + self.ds = self.decay_ds + + def end_timestep_decay(self): + """Update state variables and call make_decay.""" + self.total_decayed = self.empty_vqip() + self.storage_ = self.copy_vqip(self.storage) + + self.storage = self.make_decay(self.storage) + + def decay_ds(self): + """Track storage and amount decayed. + + Returns: + ds (dict): A VQIP of change in storage and total decayed + """ + ds = self.ds_vqip(self.storage, self.storage_) + ds = self.sum_vqip(ds, self.total_decayed) + return ds + + +class QueueTank(Tank): + """""" + + def __init__(self, number_of_timesteps=0, **kwargs): + """A tank with an internal queue arc, whose queue must be completed before + storage is available for use. The storage that has completed the queue is under + the 'active_storage' property. + + Args: + number_of_timesteps (int, optional): Built in delay for the internal + queue - it is always added to the queue time, although delay can be + provided with pushes only. Defaults to 0. + """ + # Set parameters + self.number_of_timesteps = number_of_timesteps + + super().__init__(**kwargs) + self.end_timestep = self._end_timestep + self.active_storage = self.copy_vqip(self.storage) + + # TODO enable queue to be initialised not empty + self.out_arcs = {} + self.in_arcs = {} + # Create internal queue arc + self.internal_arc = AltQueueArc( + in_port=self, out_port=self, number_of_timesteps=self.number_of_timesteps + ) + # TODO should mass balance call internal arc (is this arc called in arc mass + # balance?) + + def get_avail(self): + """Return the active_storage of the tank. + + Returns: + (dict): VQIP of active_storage + """ + return self.copy_vqip(self.active_storage) + + def push_storage(self, vqip, time=0, force=False): + """Push storage into QueueTank, applying travel time, unless forced. + + Args: + vqip (dict): A VQIP of the amount to push + time (int, optional): Number of timesteps to spend in queue, in addition + to number_of_timesteps property of internal_arc. Defaults to 0. + force (bool, optional): Force property that will ignore tank capacity + and ignore travel time. Defaults to False. + + Returns: + reply (dict): A VQIP of water that could not be received by the tank + """ + if force: + # Directly add request to storage, skipping queue + self.storage = self.sum_vqip(self.storage, vqip) + self.active_storage = self.sum_vqip(self.active_storage, vqip) + return self.empty_vqip() + + # Push to QueueTank + reply = self.internal_arc.send_push_request(vqip, force=force, time=time) + # Update storage + # TODO storage won't be accurately tracking temperature.. + self.storage = self.sum_vqip( + self.storage, self.v_change_vqip(vqip, vqip["volume"] - reply["volume"]) + ) + return reply + + def pull_storage(self, vqip): + """Pull storage from the QueueTank, only water in active_storage is available. + Returning water pulled and updating tank states. Pollutants are removed from + tank in proportion to 'volume' in vqip (pollutant values in vqip are ignored). + + Args: + vqip (dict): VQIP amount to pull, only 'volume' property is used + + Returns: + reply (dict): VQIP amount that was pulled + """ + # Adjust based on available volume + reply = min(vqip["volume"], self.active_storage["volume"]) + + # Update reply to vqip + reply = self.v_change_vqip(self.active_storage, reply) + + # Extract from active_storage + self.active_storage = self.extract_vqip(self.active_storage, reply) + + # Extract from storage + self.storage = self.extract_vqip(self.storage, reply) + + return reply + + def pull_storage_exact(self, vqip): + """Pull storage from the QueueTank, only water in active_storage is available. + Pollutants are removed from tank in according to their values in vqip. + + Args: + vqip (dict): A VQIP amount to pull + + Returns: + reply (dict): A VQIP amount successfully pulled + """ + # Adjust based on available + reply = self.copy_vqip(vqip) + for pol in ["volume"] + constants.ADDITIVE_POLLUTANTS: + reply[pol] = min(reply[pol], self.active_storage[pol]) + + # Pull from QueueTank + self.active_storage = self.extract_vqip(self.active_storage, reply) + + # Extract from storage + self.storage = self.extract_vqip(self.storage, reply) + return reply + + def push_check(self, vqip=None, tag="default"): + """Wrapper for get_excess but applies comparison to volume in VQIP. + Needed to enable use of internal_arc, which assumes it is connecting nodes . + rather than tanks. + NOTE: this is intended only for use with the internal_arc. Pushing to + QueueTanks should use 'push_storage'. + + Args: + vqip (dict, optional): VQIP amount to push. Defaults to None. + tag (str, optional): Tag, see Node, don't think it should actually be + used for a QueueTank since there are no handlers. Defaults to + 'default'. + + Returns: + excess (dict): a VQIP amount of excess capacity + """ + # TODO does behaviour for volume = None need to be defined? + excess = self.get_excess() + if vqip is not None: + excess["volume"] = min(vqip["volume"], excess["volume"]) + return excess + + def push_set(self, vqip, tag="default"): + """Behaves differently from normal push setting, it assumes sufficient tank + capacity and receives VQIPs that have reached the END of the internal_arc. + NOTE: this is intended only for use with the internal_arc. Pushing to + QueueTanks should use 'push_storage'. + + Args: + vqip (dict): VQIP amount to push + tag (str, optional): Tag, see Node, don't think it should actually be + used for a QueueTank since there are no handlers. Defaults to + 'default'. + + Returns: + (dict): Returns empty VQIP, indicating all water received (since it + assumes capacity was checked before entering the internal arc) + """ + # Update active_storage (since it has reached the end of the internal_arc) + self.active_storage = self.sum_vqip(self.active_storage, vqip) + + return self.empty_vqip() + + def _end_timestep(self): + """Wrapper for end_timestep that also ends the timestep in the internal_arc.""" + self.internal_arc.end_timestep() + self.internal_arc.update_queue() + self.storage_ = self.copy_vqip(self.storage) + + def reinit(self): + """Zeros storages and arc.""" + self.internal_arc.reinit() + self.storage = self.empty_vqip() + self.storage_ = self.empty_vqip() + self.active_storage = self.empty_vqip() + + +class DecayQueueTank(QueueTank): + """""" + + def __init__(self, decays={}, parent=None, number_of_timesteps=1, **kwargs): + """Adds a DecayAltArc in QueueTank to enable decay to occur within the + internal_arc queue. + + Args: + decays (dict): A dict of dicts containing a key for each pollutant and, + within that, a key for each parameter (a constant and exponent) + parent (object): An object that can be used to read temperature data from + number_of_timesteps (int, optional): Built in delay for the internal + queue - it is always added to the queue time, although delay can be + provided with pushes only. Defaults to 0. + """ + # Initialise QueueTank + super().__init__(number_of_timesteps=number_of_timesteps, **kwargs) + # Replace internal_arc with a DecayArcAlt + self.internal_arc = DecayArcAlt( + in_port=self, + out_port=self, + number_of_timesteps=number_of_timesteps, + parent=parent, + decays=decays, + ) + + self.end_timestep = self._end_timestep + + def _end_timestep(self): + """End timestep wrapper that removes decayed pollutants and calls internal + arc.""" + # TODO Should the active storage decay if decays are given (probably.. though + # that sounds like a nightmare)? + self.storage = self.extract_vqip(self.storage, self.internal_arc.total_decayed) + self.storage_ = self.copy_vqip(self.storage) + self.internal_arc.end_timestep() From d86ed58ccb85244a7e46c91573d92407674fc40e Mon Sep 17 00:00:00 2001 From: Daniel Cummins Date: Tue, 1 Oct 2024 11:59:22 +0100 Subject: [PATCH 58/59] Fix node and tank imports --- tests/test_nodes.py | 245 +------------------------------ tests/test_tanks.py | 268 ++++++++++++++++++++++++++++++++++ wsimod/nodes/land.py | 3 +- wsimod/nodes/sewer.py | 3 +- wsimod/nodes/storage.py | 3 +- wsimod/nodes/tanks.py | 2 +- wsimod/nodes/wtw.py | 3 +- wsimod/orchestration/model.py | 3 +- 8 files changed, 280 insertions(+), 250 deletions(-) create mode 100644 tests/test_tanks.py diff --git a/tests/test_nodes.py b/tests/test_nodes.py index b285f712..576ef7b9 100644 --- a/tests/test_nodes.py +++ b/tests/test_nodes.py @@ -11,14 +11,7 @@ from wsimod.arcs.arcs import Arc from wsimod.core import constants -from wsimod.nodes.nodes import ( - DecayQueueTank, - DecayTank, - Node, - QueueTank, - ResidenceTank, - Tank, -) +from wsimod.nodes.nodes import Node from wsimod.nodes.storage import Storage from wsimod.nodes.waste import Waste @@ -424,242 +417,6 @@ def test_data_read(self): self.assertEqual(15, node.get_data_input("temperature")) - def test_tank_ds(self): - tank = Tank( - capacity=10, - initial_storage={"volume": 5, "phosphate": 0.4, "temperature": 10}, - ) - tank.end_timestep() - - d1 = {"volume": 2, "phosphate": 0.01, "temperature": 15} - - _ = tank.push_storage(d1) - - diff = tank.ds() - - d2 = {"volume": 2, "phosphate": 0.01, "temperature": 0} - - self.assertDictAlmostEqual(d2, diff, 16) - - def test_ponded(self): - tank = Tank( - capacity=10, - initial_storage={"volume": 15, "phosphate": 0.4, "temperature": 10}, - ) - d1 = {"volume": 5, "phosphate": 0.4 / 3, "temperature": 10} - reply = tank.pull_ponded() - self.assertDictAlmostEqual(d1, reply) - - def test_tank_get_avail(self): - d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1) - - reply = tank.get_avail() - self.assertDictAlmostEqual(d1, reply) - - reply = tank.get_avail({"volume": 2.5}) - d2 = {"volume": 2.5, "phosphate": 0.2, "temperature": 10} - self.assertDictAlmostEqual(d2, reply) - - reply = tank.get_avail({"volume": 10}) - self.assertDictAlmostEqual(d1, reply) - - def test_tank_get_excess(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1) - - d2 = {"volume": 2.5, "phosphate": 0.4 / 3, "temperature": 10} - reply = tank.get_excess() - self.assertDictAlmostEqual(d2, reply) - - d2 = {"volume": 1, "phosphate": 0.4 * 1 / 7.5, "temperature": 10} - reply = tank.get_excess({"volume": 1}) - self.assertDictAlmostEqual(d2, reply) - - def test_tank_push_storage(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1) - - d2 = {"volume": 5, "phosphate": 0.4, "temperature": 15} - - d3 = {"volume": 2.5, "phosphate": 0.2, "temperature": 15} - reply = tank.push_storage(d2) - self.assertDictAlmostEqual(d3, reply) - - d4 = {"volume": 0, "phosphate": 0, "temperature": 0} - reply = tank.push_storage(d2, force=True) - self.assertDictAlmostEqual(d4, reply) - - def test_tank_pull_storage(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1) - - d2 = {"volume": 5, "phosphate": 0.4 * 5 / 7.5, "temperature": 10} - - reply = tank.pull_storage({"volume": 5}) - self.assertDictAlmostEqual(d2, reply) - - d3 = {"volume": 2.5, "phosphate": 0.4 * 2.5 / 7.5, "temperature": 10} - - reply = tank.pull_storage({"volume": 5}) - - self.assertDictAlmostEqual(d3, reply, 15) - - def test_tank_pull_pollutants(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1) - - d2 = {"volume": 5, "phosphate": 0.1, "temperature": 10} - - reply = tank.pull_pollutants(d2) - self.assertDictAlmostEqual(d2, reply) - - reply = tank.pull_pollutants(d2) - d3 = {"volume": 2.5, "phosphate": 0.1, "temperature": 10} - self.assertDictAlmostEqual(d3, reply, 15) - - def test_tank_head(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1, datum=5, area=2.5) - - reply = tank.get_head() - self.assertEqual(8, reply) - - reply = tank.get_head(datum=-1) - self.assertEqual(2, reply) - - reply = tank.get_head(non_head_storage=2) - self.assertEqual(7.2, reply) - - reply = tank.get_head(non_head_storage=10) - self.assertEqual(5, reply) - - def test_evap(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = Tank(capacity=10, initial_storage=d1) - - d2 = {"volume": 0, "phosphate": 0.4, "temperature": 10} - - reply = tank.evaporate(10) - self.assertEqual(7.5, reply) - self.assertDictAlmostEqual(d2, tank.storage) - - def test_residence_tank(self): - d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} - tank = ResidenceTank(residence_time=3, initial_storage=d1) - - d2 = {"volume": 2.5, "phosphate": 0.4 / 3, "temperature": 10} - reply = tank.pull_outflow() - self.assertDictAlmostEqual(d2, reply) - - def test_decay_tank(self): - node = Node(name="", data_input_dict={("temperature", 1): 15}) - node.t = 1 - d1 = {"volume": 8, "phosphate": 0.4, "temperature": 10} - - tank = DecayTank( - decays={"phosphate": {"constant": 0.001, "exponent": 1.005}}, - initial_storage=d1, - parent=node, - ) - _ = tank.pull_storage({"volume": 2}) - - d3 = {"volume": -2, "phosphate": -0.1, "temperature": 0} - - diff = tank.decay_ds() - self.assertDictAlmostEqual(d3, diff, 16) - - tank.end_timestep_decay() - - d2 = { - "volume": 6, - "phosphate": 0.3 - 0.3 * 0.001 * 1.005 ** (15 - 20), - "temperature": 10, - } - - self.assertDictAlmostEqual(d2, tank.storage, 16) - - self.assertAlmostEqual( - 0.3 * 0.001 * 1.005 ** (15 - 20), tank.total_decayed["phosphate"] - ) - - def test_queue_push(self): - d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} - tank = QueueTank(number_of_timesteps=1, capacity=10, initial_storage=d1) - - d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} - - tank.push_storage(d2) - - d3 = {"volume": 6, "phosphate": 0.5, "temperature": (5 * 10 + 15) / 6} - - self.assertDictAlmostEqual(d3, tank.storage) - self.assertDictAlmostEqual(d1, tank.active_storage) - self.assertDictAlmostEqual(d2, tank.internal_arc.queue[1]) - - tank.push_storage(d2, force=True) - self.assertDictAlmostEqual(d3, tank.active_storage) - - tank.end_timestep() - - d4 = {"volume": 7, "phosphate": 0.6, "temperature": ((5 * 10) + (15 * 2)) / 7} - self.assertDictAlmostEqual(d4, tank.active_storage) - - def test_queue_pull(self): - d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} - tank = QueueTank(number_of_timesteps=1, capacity=10, initial_storage=d1) - d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} - reply = tank.push_storage(d2) - - reply = tank.pull_storage({"volume": 6}) - self.assertDictAlmostEqual(d1, reply) - tank.end_timestep() - self.assertDictAlmostEqual(d2, tank.active_storage) - - def test_queue_pull_exact(self): - d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} - tank = QueueTank(number_of_timesteps=1, capacity=10, initial_storage=d1) - d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} - reply = tank.push_storage(d2) - - reply = tank.pull_storage_exact( - {"volume": 6, "phosphate": 0.1, "temperature": 10} - ) - - d3 = {"volume": 5, "phosphate": 0.1, "temperature": 10} - self.assertDictAlmostEqual(d3, reply) - - reply = tank.pull_storage_exact( - {"volume": 0, "phosphate": 0.6, "temperature": 10} - ) - d4 = {"volume": 0, "phosphate": 0.3, "temperature": 10} - self.assertDictAlmostEqual(d4, reply, 16) - - def test_decay_queue(self): - node = Node(name="", data_input_dict={("temperature", 1): 15}) - node.t = 1 - d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} - tank = DecayQueueTank( - number_of_timesteps=1, - capacity=10, - initial_storage=d1, - decays={"phosphate": {"constant": 0.001, "exponent": 1.005}}, - parent=node, - ) - - d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} - - _ = tank.push_storage(d2) - - tank.end_timestep() - - d4 = { - "volume": 6, - "phosphate": 0.4 + 0.1 * (1 - 0.001 * 1.005 ** (15 - 20)), - "temperature": ((5 * 10) + (15 * 1)) / 6, - } - self.assertDictAlmostEqual(d4, tank.storage, 15) - if __name__ == "__main__": unittest.main() diff --git a/tests/test_tanks.py b/tests/test_tanks.py new file mode 100644 index 00000000..5c6c759d --- /dev/null +++ b/tests/test_tanks.py @@ -0,0 +1,268 @@ +"""Tests for the tanks module.""" + +import unittest +from unittest import TestCase + +from wsimod.nodes.nodes import Node +from wsimod.nodes.tanks import ( + DecayQueueTank, + DecayTank, + QueueTank, + ResidenceTank, + Tank, +) + + +class MyTestClass(TestCase): + def assertDictAlmostEqual(self, d1, d2, accuracy=19): + """ + + Args: + d1: + d2: + accuracy: + """ + for d in [d1, d2]: + for key, item in d.items(): + d[key] = round(item, accuracy) + self.assertDictEqual(d1, d2) + + def test_tank_ds(self): + tank = Tank( + capacity=10, + initial_storage={"volume": 5, "phosphate": 0.4, "temperature": 10}, + ) + tank.end_timestep() + + d1 = {"volume": 2, "phosphate": 0.01, "temperature": 15} + + _ = tank.push_storage(d1) + + diff = tank.ds() + + d2 = {"volume": 2, "phosphate": 0.01, "temperature": 0} + + self.assertDictAlmostEqual(d2, diff, 16) + + def test_ponded(self): + tank = Tank( + capacity=10, + initial_storage={"volume": 15, "phosphate": 0.4, "temperature": 10}, + ) + d1 = {"volume": 5, "phosphate": 0.4 / 3, "temperature": 10} + reply = tank.pull_ponded() + self.assertDictAlmostEqual(d1, reply) + + def test_tank_get_avail(self): + d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1) + + reply = tank.get_avail() + self.assertDictAlmostEqual(d1, reply) + + reply = tank.get_avail({"volume": 2.5}) + d2 = {"volume": 2.5, "phosphate": 0.2, "temperature": 10} + self.assertDictAlmostEqual(d2, reply) + + reply = tank.get_avail({"volume": 10}) + self.assertDictAlmostEqual(d1, reply) + + def test_tank_get_excess(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1) + + d2 = {"volume": 2.5, "phosphate": 0.4 / 3, "temperature": 10} + reply = tank.get_excess() + self.assertDictAlmostEqual(d2, reply) + + d2 = {"volume": 1, "phosphate": 0.4 * 1 / 7.5, "temperature": 10} + reply = tank.get_excess({"volume": 1}) + self.assertDictAlmostEqual(d2, reply) + + def test_tank_push_storage(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1) + + d2 = {"volume": 5, "phosphate": 0.4, "temperature": 15} + + d3 = {"volume": 2.5, "phosphate": 0.2, "temperature": 15} + reply = tank.push_storage(d2) + self.assertDictAlmostEqual(d3, reply) + + d4 = {"volume": 0, "phosphate": 0, "temperature": 0} + reply = tank.push_storage(d2, force=True) + self.assertDictAlmostEqual(d4, reply) + + def test_tank_pull_storage(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1) + + d2 = {"volume": 5, "phosphate": 0.4 * 5 / 7.5, "temperature": 10} + + reply = tank.pull_storage({"volume": 5}) + self.assertDictAlmostEqual(d2, reply) + + d3 = {"volume": 2.5, "phosphate": 0.4 * 2.5 / 7.5, "temperature": 10} + + reply = tank.pull_storage({"volume": 5}) + + self.assertDictAlmostEqual(d3, reply, 15) + + def test_tank_pull_pollutants(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1) + + d2 = {"volume": 5, "phosphate": 0.1, "temperature": 10} + + reply = tank.pull_pollutants(d2) + self.assertDictAlmostEqual(d2, reply) + + reply = tank.pull_pollutants(d2) + d3 = {"volume": 2.5, "phosphate": 0.1, "temperature": 10} + self.assertDictAlmostEqual(d3, reply, 15) + + def test_tank_head(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1, datum=5, area=2.5) + + reply = tank.get_head() + self.assertEqual(8, reply) + + reply = tank.get_head(datum=-1) + self.assertEqual(2, reply) + + reply = tank.get_head(non_head_storage=2) + self.assertEqual(7.2, reply) + + reply = tank.get_head(non_head_storage=10) + self.assertEqual(5, reply) + + def test_evap(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = Tank(capacity=10, initial_storage=d1) + + d2 = {"volume": 0, "phosphate": 0.4, "temperature": 10} + + reply = tank.evaporate(10) + self.assertEqual(7.5, reply) + self.assertDictAlmostEqual(d2, tank.storage) + + def test_residence_tank(self): + d1 = {"volume": 7.5, "phosphate": 0.4, "temperature": 10} + tank = ResidenceTank(residence_time=3, initial_storage=d1) + + d2 = {"volume": 2.5, "phosphate": 0.4 / 3, "temperature": 10} + reply = tank.pull_outflow() + self.assertDictAlmostEqual(d2, reply) + + def test_decay_tank(self): + node = Node(name="", data_input_dict={("temperature", 1): 15}) + node.t = 1 + d1 = {"volume": 8, "phosphate": 0.4, "temperature": 10} + + tank = DecayTank( + decays={"phosphate": {"constant": 0.001, "exponent": 1.005}}, + initial_storage=d1, + parent=node, + ) + _ = tank.pull_storage({"volume": 2}) + + d3 = {"volume": -2, "phosphate": -0.1, "temperature": 0} + + diff = tank.decay_ds() + self.assertDictAlmostEqual(d3, diff, 16) + + tank.end_timestep_decay() + + d2 = { + "volume": 6, + "phosphate": 0.3 - 0.3 * 0.001 * 1.005 ** (15 - 20), + "temperature": 10, + } + + self.assertDictAlmostEqual(d2, tank.storage, 16) + + self.assertAlmostEqual( + 0.3 * 0.001 * 1.005 ** (15 - 20), tank.total_decayed["phosphate"] + ) + + def test_queue_push(self): + d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} + tank = QueueTank(number_of_timesteps=1, capacity=10, initial_storage=d1) + + d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} + + tank.push_storage(d2) + + d3 = {"volume": 6, "phosphate": 0.5, "temperature": (5 * 10 + 15) / 6} + + self.assertDictAlmostEqual(d3, tank.storage) + self.assertDictAlmostEqual(d1, tank.active_storage) + self.assertDictAlmostEqual(d2, tank.internal_arc.queue[1]) + + tank.push_storage(d2, force=True) + self.assertDictAlmostEqual(d3, tank.active_storage) + + tank.end_timestep() + + d4 = {"volume": 7, "phosphate": 0.6, "temperature": ((5 * 10) + (15 * 2)) / 7} + self.assertDictAlmostEqual(d4, tank.active_storage) + + def test_queue_pull(self): + d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} + tank = QueueTank(number_of_timesteps=1, capacity=10, initial_storage=d1) + d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} + reply = tank.push_storage(d2) + + reply = tank.pull_storage({"volume": 6}) + self.assertDictAlmostEqual(d1, reply) + tank.end_timestep() + self.assertDictAlmostEqual(d2, tank.active_storage) + + def test_queue_pull_exact(self): + d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} + tank = QueueTank(number_of_timesteps=1, capacity=10, initial_storage=d1) + d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} + reply = tank.push_storage(d2) + + reply = tank.pull_storage_exact( + {"volume": 6, "phosphate": 0.1, "temperature": 10} + ) + + d3 = {"volume": 5, "phosphate": 0.1, "temperature": 10} + self.assertDictAlmostEqual(d3, reply) + + reply = tank.pull_storage_exact( + {"volume": 0, "phosphate": 0.6, "temperature": 10} + ) + d4 = {"volume": 0, "phosphate": 0.3, "temperature": 10} + self.assertDictAlmostEqual(d4, reply, 16) + + def test_decay_queue(self): + node = Node(name="", data_input_dict={("temperature", 1): 15}) + node.t = 1 + d1 = {"volume": 5, "phosphate": 0.4, "temperature": 10} + tank = DecayQueueTank( + number_of_timesteps=1, + capacity=10, + initial_storage=d1, + decays={"phosphate": {"constant": 0.001, "exponent": 1.005}}, + parent=node, + ) + + d2 = {"volume": 1, "phosphate": 0.1, "temperature": 15} + + _ = tank.push_storage(d2) + + tank.end_timestep() + + d4 = { + "volume": 6, + "phosphate": 0.4 + 0.1 * (1 - 0.001 * 1.005 ** (15 - 20)), + "temperature": ((5 * 10) + (15 * 1)) / 6, + } + self.assertDictAlmostEqual(d4, tank.storage, 15) + + +if __name__ == "__main__": + unittest.main() diff --git a/wsimod/nodes/land.py b/wsimod/nodes/land.py index f34fb750..7bcaf86a 100644 --- a/wsimod/nodes/land.py +++ b/wsimod/nodes/land.py @@ -8,8 +8,9 @@ from math import exp, log, log10, sin from wsimod.core import constants -from wsimod.nodes.nodes import DecayTank, Node, ResidenceTank +from wsimod.nodes.nodes import Node from wsimod.nodes.nutrient_pool import NutrientPool +from wsimod.nodes.tanks import DecayTank, ResidenceTank class Land(Node): diff --git a/wsimod/nodes/sewer.py b/wsimod/nodes/sewer.py index af566658..545495c1 100644 --- a/wsimod/nodes/sewer.py +++ b/wsimod/nodes/sewer.py @@ -5,7 +5,8 @@ Converted to totals on 2022-05-03 """ from wsimod.core import constants -from wsimod.nodes.nodes import Node, QueueTank +from wsimod.nodes.nodes import Node +from wsimod.nodes.tanks import QueueTank class Sewer(Node): diff --git a/wsimod/nodes/storage.py b/wsimod/nodes/storage.py index eab68665..2cd75990 100644 --- a/wsimod/nodes/storage.py +++ b/wsimod/nodes/storage.py @@ -6,7 +6,8 @@ from math import exp from wsimod.core import constants -from wsimod.nodes.nodes import DecayQueueTank, DecayTank, Node, QueueTank, Tank +from wsimod.nodes.nodes import Node +from wsimod.nodes.tanks import DecayQueueTank, DecayTank, QueueTank, Tank class Storage(Node): diff --git a/wsimod/nodes/tanks.py b/wsimod/nodes/tanks.py index b2036edb..4806d6ae 100644 --- a/wsimod/nodes/tanks.py +++ b/wsimod/nodes/tanks.py @@ -1,6 +1,6 @@ """Module for defining tanks.""" -from wsimod.arcs import AltQueueArc, DecayArcAlt +from wsimod.arcs.arcs import AltQueueArc, DecayArcAlt from wsimod.core import constants from wsimod.core.core import DecayObj, WSIObj diff --git a/wsimod/nodes/wtw.py b/wsimod/nodes/wtw.py index e40f0a5d..afd6c6a5 100644 --- a/wsimod/nodes/wtw.py +++ b/wsimod/nodes/wtw.py @@ -7,7 +7,8 @@ from typing import Any, Dict from wsimod.core import constants -from wsimod.nodes.nodes import Node, Tank +from wsimod.nodes.nodes import Node +from wsimod.nodes.tanks import Tank class WTW(Node): diff --git a/wsimod/orchestration/model.py b/wsimod/orchestration/model.py index 8dc4e917..4026a325 100644 --- a/wsimod/orchestration/model.py +++ b/wsimod/orchestration/model.py @@ -19,7 +19,8 @@ from wsimod.core import constants from wsimod.core.core import WSIObj from wsimod.nodes.land import ImperviousSurface -from wsimod.nodes.nodes import NODES_REGISTRY, QueueTank, ResidenceTank, Tank +from wsimod.nodes.nodes import NODES_REGISTRY +from wsimod.nodes.tanks import QueueTank, ResidenceTank, Tank os.environ["USE_PYGEOS"] = "0" From a9660d58f4f4c3cfbf665983c88bacf612723570 Mon Sep 17 00:00:00 2001 From: barneydobson Date: Tue, 1 Oct 2024 14:25:23 +0100 Subject: [PATCH 59/59] precommit --- tests/test_tanks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tanks.py b/tests/test_tanks.py index 59eb83b1..0b1f9456 100644 --- a/tests/test_tanks.py +++ b/tests/test_tanks.py @@ -262,7 +262,7 @@ def test_decay_queue(self): "temperature": ((5 * 10) + (15 * 1)) / 6, } self.assertDictAlmostEqual(d4, tank.storage, 15) - + def test_overrides(self): # node - no need to test # tank